diff --git a/automation/Scopes/HallScope.php b/automation/Scopes/HallScope.php index 181dfa3..0d08719 100644 --- a/automation/Scopes/HallScope.php +++ b/automation/Scopes/HallScope.php @@ -27,6 +27,9 @@ ], [ "description" => "Вкл/Выкл. свет в холле 2", "author" => "Eugene Sukhodolskiy", + "state_callback" => function() { + return $this -> helper() -> make_relay_indicator("light_hub_1", 2); + }, ]); $this -> add_hatch_action("hatch_open", "Открыть люк", "hatch_motor", "open", 100, [ @@ -34,6 +37,9 @@ "description" => "Открыть люк в мансарду", "author" => "Eugene Sukhodolskiy", "danger_level" => "dangerous", + "state_callback" => function() { + return $this -> helper() -> make_hatch_indicator("hatch_motor"); + }, ]); $this -> add_hatch_action("hatch_close", "Закрыть люк", "hatch_motor", "close", 100, [ @@ -41,6 +47,9 @@ "description" => "Закрыть люк в мансарду", "author" => "Eugene Sukhodolskiy", "danger_level" => "dangerous", + "state_callback" => function() { + return $this -> helper() -> make_hatch_indicator("hatch_motor"); + }, ]); } diff --git a/automation/Scopes/KitchenScope.php b/automation/Scopes/KitchenScope.php index da32169..d6da741 100644 --- a/automation/Scopes/KitchenScope.php +++ b/automation/Scopes/KitchenScope.php @@ -25,6 +25,9 @@ ], [ "description" => "Вкл/Выкл. свет на кухне 1", "author" => "Eugene Sukhodolskiy", + "state_callback" => function() { + return $this -> helper() -> make_relay_indicator("fisrt_floor_big_relay", 0); + }, ]); $this -> add_group_toggle_action("kitchen2_toggle", "Кухня 2", [ @@ -32,6 +35,9 @@ ], [ "description" => "Вкл/Выкл. свет на кухне 2", "author" => "Eugene Sukhodolskiy", + "state_callback" => function() { + return $this -> helper() -> make_relay_indicator("fisrt_floor_big_relay", 1); + }, ]); } diff --git a/automation/Scopes/MasterBedroomScope.php b/automation/Scopes/MasterBedroomScope.php index 1015eba..0d7ff4c 100644 --- a/automation/Scopes/MasterBedroomScope.php +++ b/automation/Scopes/MasterBedroomScope.php @@ -26,6 +26,9 @@ ], [ "description" => "Вкл/Выкл. свет в спальне", "author" => "Eugene Sukhodolskiy", + "state_callback" => function() { + return $this -> helper() -> make_relay_indicator("light_hub_1", 1); + }, ]); } diff --git a/automation/Scopes/OutdoorScope.php b/automation/Scopes/OutdoorScope.php index 48b23b6..3b9f420 100644 --- a/automation/Scopes/OutdoorScope.php +++ b/automation/Scopes/OutdoorScope.php @@ -25,6 +25,13 @@ "name" => "Все прожекторы выкл", "description" => "Выключить все прожекторы", "author" => "Eugene Sukhodolskiy", + "state_callback" => function() { + return $this -> helper() -> make_group_indicators([ + "spotlight_main_back_1", + "spotlight_main_back_2", + "spotlight_main_front_1", + ]); + }, ], function($params) { return $this -> group_set_state([ "spotlight_main_back_1", @@ -36,6 +43,9 @@ $this -> add_off_action("front_spotlight_off", "Передний прожектор выкл", "spotlight_main_front_1", null, [ "description" => "Выключить передний прожектор", "author" => "Eugene Sukhodolskiy", + "state_callback" => function() { + return $this -> helper() -> make_relay_indicator("spotlight_main_front_1"); + }, ]); $this -> add_action_script([ @@ -43,6 +53,12 @@ "name" => "Задние прожекторы выкл", "description" => "Выключить задние прожекторы", "author" => "Eugene Sukhodolskiy", + "state_callback" => function() { + return $this -> helper() -> make_group_indicators([ + "spotlight_main_back_1", + "spotlight_main_back_2", + ]); + }, ], function($params) { return $this -> group_set_state([ "spotlight_main_back_1", diff --git a/server/SHServ/Helpers/DeviceScriptsHelper.php b/server/SHServ/Helpers/DeviceScriptsHelper.php index f3afd4d..57d56aa 100644 --- a/server/SHServ/Helpers/DeviceScriptsHelper.php +++ b/server/SHServ/Helpers/DeviceScriptsHelper.php @@ -267,4 +267,106 @@ } return $results; } + + /** + * Получить состояние канала реле. + * @return bool|null — true = on, false = off, null = недоступно + */ + public function get_relay_state(string $relay_alias, int $channel = 0): ?bool { + try { + $relay = $this -> devices() -> by_alias($relay_alias); + if(!$relay) { + return null; + } + $relay_api = $relay -> device_api(); + if(!($relay_api instanceof \SHServ\Tools\DeviceAPI\Relay)) { + return null; + } + $status = $relay_api -> get_status(); + if(empty($status)) { + return null; + } + $channels = $status["channels"] ?? []; + if(!isset($channels[$channel]["state"])) { + return null; + } + return $channels[$channel]["state"] == "on"; + } catch(\Throwable $e) { + return null; + } + } + + /** + * Получить состояние люка. + * @return string|null — "open", "closed" или null + */ + public function get_hatch_state(string $hatch_alias): ?string { + try { + $hatch = $this -> devices() -> by_alias($hatch_alias); + if(!$hatch) { + return null; + } + $hatch_api = $hatch -> device_api(); + if(!($hatch_api instanceof \SHServ\Tools\DeviceAPI\Hatch)) { + return null; + } + $status = $hatch_api -> get_status(); + if(empty($status)) { + return null; + } + return $status["state"] ?? null; + } catch(\Throwable $e) { + return null; + } + } + + /** + * Сформировать индикатор для одиночного реле. + * @return array — [["label" => "On|Off|?", "variant" => "success|secondary|secondary"]] + */ + public function make_relay_indicator(string $relay_alias, int $channel = 0): array { + $state = $this -> get_relay_state($relay_alias, $channel); + if($state === null) { + return [["label" => "?", "variant" => "secondary"]]; + } + return [ + ["label" => $state ? "On" : "Off", "variant" => $state ? "success" : "secondary"] + ]; + } + + /** + * Сформировать индикаторы для группы реле. + * @param array $targets — строки вида "alias:channel" или просто "alias" + * @return array — массив индикаторов + */ + public function make_group_indicators(array $targets): array { + $indicators = []; + foreach($targets as $target) { + $parts = explode(":", $target, 2); + $alias = $parts[0]; + $channel = isset($parts[1]) ? intval($parts[1]) : 0; + $state = $this -> get_relay_state($alias, $channel); + if($state === null) { + $indicators[] = ["label" => "?", "variant" => "secondary"]; + } else { + $indicators[] = ["label" => $state ? "On" : "Off", "variant" => $state ? "success" : "secondary"]; + } + } + return $indicators; + } + + /** + * Сформировать индикатор для люка. + * @return array — [["label" => "Open|Closed|?", "variant" => "warning|secondary|secondary"]] + */ + public function make_hatch_indicator(string $hatch_alias): array { + $state = $this -> get_hatch_state($hatch_alias); + if($state === null) { + return [["label" => "?", "variant" => "secondary"]]; + } + $is_open = $state == "open"; + return [ + ["label" => $is_open ? "Open" : "Closed", "variant" => $is_open ? "warning" : "secondary"] + ]; + } } diff --git a/server/SHServ/Middleware/ControlScripts.php b/server/SHServ/Middleware/ControlScripts.php index 3649019..33edd2f 100644 --- a/server/SHServ/Middleware/ControlScripts.php +++ b/server/SHServ/Middleware/ControlScripts.php @@ -172,11 +172,12 @@ $attributes["danger_level"] = $dangerLevel; $reg ->actions[$attributes["alias"]] = [ - "attributes" => $attributes, - "code" => $this -> get_source_code($script), - "script" => $script, - "params_schema" => $attributes["params_schema"] ?? null, - "danger_level" => $dangerLevel, + "attributes" => $attributes, + "code" => $this -> get_source_code($script), + "script" => $script, + "params_schema" => $attributes["params_schema"] ?? null, + "danger_level" => $dangerLevel, + "state_callback" => $attributes["state_callback"] ?? null, ]; return true; diff --git a/server/SHServ/Models/Scripts.php b/server/SHServ/Models/Scripts.php index 35d1fa9..b7d2162 100644 --- a/server/SHServ/Models/Scripts.php +++ b/server/SHServ/Models/Scripts.php @@ -165,6 +165,18 @@ "danger_level" => $script_from_control["attributes"]["danger_level"] ?? "safe", ]; + // indicators: явный state_callback из Scope + if(isset($script_from_control["state_callback"]) && is_callable($script_from_control["state_callback"])) { + try { + $indicators = ($script_from_control["state_callback"])(); + if(is_array($indicators)) { + $prepared["indicators"] = $indicators; + } + } catch(\Throwable $e) { + // Игнорируем ошибки state_callback, не ломаем ответ API + } + } + // params_schema: runtime (registry) имеет приоритет над DB if(isset($script_from_control["params_schema"])) { $prepared["params_schema"] = $script_from_control["params_schema"]; diff --git a/server/dist/assets/NotFoundPage-DL6UDBF9.js b/server/dist/assets/NotFoundPage-DL6UDBF9.js new file mode 100644 index 0000000..6b12d23 --- /dev/null +++ b/server/dist/assets/NotFoundPage-DL6UDBF9.js @@ -0,0 +1 @@ +import{c as e,a as t,u as o,G as a,o as n}from"./index-DfAh0Xkk.js";const s={class:"page"},u={__name:"NotFoundPage",setup(c){return(r,_)=>(n(),e("section",s,[t(o(a),{title:"Not Found",text:"The page you are looking for does not exist.",icon:"ph-warning"})]))}};export{u as default}; diff --git a/server/dist/assets/NotFoundPage-DXlEoTtL.js b/server/dist/assets/NotFoundPage-DXlEoTtL.js deleted file mode 100644 index b8323f8..0000000 --- a/server/dist/assets/NotFoundPage-DXlEoTtL.js +++ /dev/null @@ -1 +0,0 @@ -import{c as e,a as t,u as o,G as a,o as n}from"./index-D3igGjjx.js";const s={class:"page"},u={__name:"NotFoundPage",setup(c){return(r,_)=>(n(),e("section",s,[t(o(a),{title:"Not Found",text:"The page you are looking for does not exist.",icon:"ph-warning"})]))}};export{u as default}; diff --git a/server/dist/assets/index-D3igGjjx.js b/server/dist/assets/index-D3igGjjx.js deleted file mode 100644 index d1f3563..0000000 --- a/server/dist/assets/index-D3igGjjx.js +++ /dev/null @@ -1,37 +0,0 @@ -(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))a(s);new MutationObserver(s=>{for(const r of s)if(r.type==="childList")for(const o of r.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&a(o)}).observe(document,{childList:!0,subtree:!0});function n(s){const r={};return s.integrity&&(r.integrity=s.integrity),s.referrerPolicy&&(r.referrerPolicy=s.referrerPolicy),s.crossOrigin==="use-credentials"?r.credentials="include":s.crossOrigin==="anonymous"?r.credentials="omit":r.credentials="same-origin",r}function a(s){if(s.ep)return;s.ep=!0;const r=n(s);fetch(s.href,r)}})();/** -* @vue/shared v3.5.33 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function Xs(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const Me={},Rn=[],Nt=()=>{},Ki=()=>!1,Ma=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Ua=e=>e.startsWith("onUpdate:"),nt=Object.assign,Zs=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Gl=Object.prototype.hasOwnProperty,Ce=(e,t)=>Gl.call(e,t),ye=Array.isArray,$n=e=>va(e)==="[object Map]",Wi=e=>va(e)==="[object Set]",Ir=e=>va(e)==="[object Date]",we=e=>typeof e=="function",He=e=>typeof e=="string",_t=e=>typeof e=="symbol",Te=e=>e!==null&&typeof e=="object",Ji=e=>(Te(e)||we(e))&&we(e.then)&&we(e.catch),Yi=Object.prototype.toString,va=e=>Yi.call(e),ql=e=>va(e).slice(8,-1),Xi=e=>va(e)==="[object Object]",Va=e=>He(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Zn=Xs(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),ja=e=>{const t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},zl=/-\w/g,ft=ja(e=>e.replace(zl,t=>t.slice(1).toUpperCase())),Kl=/\B([A-Z])/g,un=ja(e=>e.replace(Kl,"-$1").toLowerCase()),Ba=ja(e=>e.charAt(0).toUpperCase()+e.slice(1)),ls=ja(e=>e?`on${Ba(e)}`:""),Ft=(e,t)=>!Object.is(e,t),us=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:a,value:n})},Wl=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Lr;const Ha=()=>Lr||(Lr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Qs(e){if(ye(e)){const t={};for(let n=0;n{if(n){const a=n.split(Yl);a.length>1&&(t[a[0].trim()]=a[1].trim())}}),t}function Ct(e){let t="";if(He(e))t=e;else if(ye(e))for(let n=0;n!!(e&&e.__v_isRef===!0),O=e=>He(e)?e:e==null?"":ye(e)||Te(e)&&(e.toString===Yi||!we(e.toString))?eo(e)?O(e.value):JSON.stringify(e,to,2):String(e),to=(e,t)=>eo(t)?to(e,t.value):$n(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[a,s],r)=>(n[cs(a,r)+" =>"]=s,n),{})}:Wi(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>cs(n))}:_t(t)?cs(t):Te(t)&&!ye(t)&&!Xi(t)?String(t):t,cs=(e,t="")=>{var n;return _t(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** -* @vue/reactivity v3.5.33 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let Xe;class no{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.__v_skip=!0,this.parent=Xe,!t&&Xe&&(this.index=(Xe.scopes||(Xe.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t0&&--this._on===0){if(Xe===this)Xe=this.prevScope;else{let t=Xe;for(;t;){if(t.prevScope===this){t.prevScope=this.prevScope;break}t=t.prevScope}}this.prevScope=void 0}}stop(t){if(this._active){this._active=!1;let n,a;for(n=0,a=this.effects.length;n0)return;if(ea){let t=ea;for(ea=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Qn;){let t=Qn;for(Qn=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(a){e||(e=a)}t=n}}if(e)throw e}function lo(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function uo(e){let t,n=e.depsTail,a=n;for(;a;){const s=a.prevDep;a.version===-1?(a===n&&(n=s),ar(a),au(a)):t=a,a.dep.activeLink=a.prevActiveLink,a.prevActiveLink=void 0,a=s}e.deps=t,e.depsTail=n}function $s(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(co(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function co(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===oa)||(e.globalVersion=oa,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!$s(e))))return;e.flags|=2;const t=e.dep,n=Ne,a=xt;Ne=e,xt=!0;try{lo(e);const s=e.fn(e._value);(t.version===0||Ft(s,e._value))&&(e.flags|=128,e._value=s,t.version++)}catch(s){throw t.version++,s}finally{Ne=n,xt=a,uo(e),e.flags&=-3}}function ar(e,t=!1){const{dep:n,prevSub:a,nextSub:s}=e;if(a&&(a.nextSub=s,e.prevSub=void 0),s&&(s.prevSub=a,e.nextSub=void 0),n.subs===e&&(n.subs=a,!a&&n.computed)){n.computed.flags&=-5;for(let r=n.computed.deps;r;r=r.nextDep)ar(r,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function au(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let xt=!0;const fo=[];function Wt(){fo.push(xt),xt=!1}function Jt(){const e=fo.pop();xt=e===void 0?!0:e}function Dr(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=Ne;Ne=void 0;try{t()}finally{Ne=n}}}let oa=0;class su{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class sr{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!Ne||!xt||Ne===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==Ne)n=this.activeLink=new su(Ne,this),Ne.deps?(n.prevDep=Ne.depsTail,Ne.depsTail.nextDep=n,Ne.depsTail=n):Ne.deps=Ne.depsTail=n,po(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const a=n.nextDep;a.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=a),n.prevDep=Ne.depsTail,n.nextDep=void 0,Ne.depsTail.nextDep=n,Ne.depsTail=n,Ne.deps===n&&(Ne.deps=a)}return n}trigger(t){this.version++,oa++,this.notify(t)}notify(t){tr();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{nr()}}}function po(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let a=t.deps;a;a=a.nextDep)po(a)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Ca=new WeakMap,hn=Symbol(""),Ts=Symbol(""),la=Symbol("");function st(e,t,n){if(xt&&Ne){let a=Ca.get(e);a||Ca.set(e,a=new Map);let s=a.get(n);s||(a.set(n,s=new sr),s.map=a,s.key=n),s.track()}}function zt(e,t,n,a,s,r){const o=Ca.get(e);if(!o){oa++;return}const i=l=>{l&&l.trigger()};if(tr(),t==="clear")o.forEach(i);else{const l=ye(e),u=l&&Va(n);if(l&&n==="length"){const c=Number(a);o.forEach((d,f)=>{(f==="length"||f===la||!_t(f)&&f>=c)&&i(d)})}else switch((n!==void 0||o.has(void 0))&&i(o.get(n)),u&&i(o.get(la)),t){case"add":l?u&&i(o.get("length")):(i(o.get(hn)),$n(e)&&i(o.get(Ts)));break;case"delete":l||(i(o.get(hn)),$n(e)&&i(o.get(Ts)));break;case"set":$n(e)&&i(o.get(hn));break}}nr()}function ru(e,t){const n=Ca.get(e);return n&&n.get(t)}function kn(e){const t=Ae(e);return t===e?t:(st(t,"iterate",la),ht(e)?t:t.map(Et))}function Ga(e){return st(e=Ae(e),"iterate",la),e}function Dt(e,t){return Yt(e)?In(Kt(e)?Et(t):t):Et(t)}const iu={__proto__:null,[Symbol.iterator](){return fs(this,Symbol.iterator,e=>Dt(this,e))},concat(...e){return kn(this).concat(...e.map(t=>ye(t)?kn(t):t))},entries(){return fs(this,"entries",e=>(e[1]=Dt(this,e[1]),e))},every(e,t){return Bt(this,"every",e,t,void 0,arguments)},filter(e,t){return Bt(this,"filter",e,t,n=>n.map(a=>Dt(this,a)),arguments)},find(e,t){return Bt(this,"find",e,t,n=>Dt(this,n),arguments)},findIndex(e,t){return Bt(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Bt(this,"findLast",e,t,n=>Dt(this,n),arguments)},findLastIndex(e,t){return Bt(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Bt(this,"forEach",e,t,void 0,arguments)},includes(...e){return ps(this,"includes",e)},indexOf(...e){return ps(this,"indexOf",e)},join(e){return kn(this).join(e)},lastIndexOf(...e){return ps(this,"lastIndexOf",e)},map(e,t){return Bt(this,"map",e,t,void 0,arguments)},pop(){return jn(this,"pop")},push(...e){return jn(this,"push",e)},reduce(e,...t){return Or(this,"reduce",e,t)},reduceRight(e,...t){return Or(this,"reduceRight",e,t)},shift(){return jn(this,"shift")},some(e,t){return Bt(this,"some",e,t,void 0,arguments)},splice(...e){return jn(this,"splice",e)},toReversed(){return kn(this).toReversed()},toSorted(e){return kn(this).toSorted(e)},toSpliced(...e){return kn(this).toSpliced(...e)},unshift(...e){return jn(this,"unshift",e)},values(){return fs(this,"values",e=>Dt(this,e))}};function fs(e,t,n){const a=Ga(e),s=a[t]();return a!==e&&!ht(e)&&(s._next=s.next,s.next=()=>{const r=s._next();return r.done||(r.value=n(r.value)),r}),s}const ou=Array.prototype;function Bt(e,t,n,a,s,r){const o=Ga(e),i=o!==e&&!ht(e),l=o[t];if(l!==ou[t]){const d=l.apply(e,r);return i?Et(d):d}let u=n;o!==e&&(i?u=function(d,f){return n.call(this,Dt(e,d),f,e)}:n.length>2&&(u=function(d,f){return n.call(this,d,f,e)}));const c=l.call(o,u,a);return i&&s?s(c):c}function Or(e,t,n,a){const s=Ga(e),r=s!==e&&!ht(e);let o=n,i=!1;s!==e&&(r?(i=a.length===0,o=function(u,c,d){return i&&(i=!1,u=Dt(e,u)),n.call(this,u,Dt(e,c),d,e)}):n.length>3&&(o=function(u,c,d){return n.call(this,u,c,d,e)}));const l=s[t](o,...a);return i?Dt(e,l):l}function ps(e,t,n){const a=Ae(e);st(a,"iterate",la);const s=a[t](...n);return(s===-1||s===!1)&&qa(n[0])?(n[0]=Ae(n[0]),a[t](...n)):s}function jn(e,t,n=[]){Wt(),tr();const a=Ae(e)[t].apply(e,n);return nr(),Jt(),a}const lu=Xs("__proto__,__v_isRef,__isVue"),vo=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(_t));function uu(e){_t(e)||(e=String(e));const t=Ae(this);return st(t,"has",e),t.hasOwnProperty(e)}class go{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,a){if(n==="__v_skip")return t.__v_skip;const s=this._isReadonly,r=this._isShallow;if(n==="__v_isReactive")return!s;if(n==="__v_isReadonly")return s;if(n==="__v_isShallow")return r;if(n==="__v_raw")return a===(s?r?_u:_o:r?yo:mo).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(a)?t:void 0;const o=ye(t);if(!s){let l;if(o&&(l=iu[n]))return l;if(n==="hasOwnProperty")return uu}const i=Reflect.get(t,n,Ve(t)?t:a);if((_t(n)?vo.has(n):lu(n))||(s||st(t,"get",n),r))return i;if(Ve(i)){const l=o&&Va(n)?i:i.value;return s&&Te(l)?Is(l):l}return Te(i)?s?Is(i):Zt(i):i}}class ho extends go{constructor(t=!1){super(!1,t)}set(t,n,a,s){let r=t[n];const o=ye(t)&&Va(n);if(!this._isShallow){const u=Yt(r);if(!ht(a)&&!Yt(a)&&(r=Ae(r),a=Ae(a)),!o&&Ve(r)&&!Ve(a))return u||(r.value=a),!0}const i=o?Number(n)e,_a=e=>Reflect.getPrototypeOf(e);function vu(e,t,n){return function(...a){const s=this.__v_raw,r=Ae(s),o=$n(r),i=e==="entries"||e===Symbol.iterator&&o,l=e==="keys"&&o,u=s[e](...a),c=n?Ps:t?In:Et;return!t&&st(r,"iterate",l?Ts:hn),nt(Object.create(u),{next(){const{value:d,done:f}=u.next();return f?{value:d,done:f}:{value:i?[c(d[0]),c(d[1])]:c(d),done:f}}})}}function ba(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function gu(e,t){const n={get(s){const r=this.__v_raw,o=Ae(r),i=Ae(s);e||(Ft(s,i)&&st(o,"get",s),st(o,"get",i));const{has:l}=_a(o),u=t?Ps:e?In:Et;if(l.call(o,s))return u(r.get(s));if(l.call(o,i))return u(r.get(i));r!==o&&r.get(s)},get size(){const s=this.__v_raw;return!e&&st(Ae(s),"iterate",hn),s.size},has(s){const r=this.__v_raw,o=Ae(r),i=Ae(s);return e||(Ft(s,i)&&st(o,"has",s),st(o,"has",i)),s===i?r.has(s):r.has(s)||r.has(i)},forEach(s,r){const o=this,i=o.__v_raw,l=Ae(i),u=t?Ps:e?In:Et;return!e&&st(l,"iterate",hn),i.forEach((c,d)=>s.call(r,u(c),u(d),o))}};return nt(n,e?{add:ba("add"),set:ba("set"),delete:ba("delete"),clear:ba("clear")}:{add(s){const r=Ae(this),o=_a(r),i=Ae(s),l=!t&&!ht(s)&&!Yt(s)?i:s;return o.has.call(r,l)||Ft(s,l)&&o.has.call(r,s)||Ft(i,l)&&o.has.call(r,i)||(r.add(l),zt(r,"add",l,l)),this},set(s,r){!t&&!ht(r)&&!Yt(r)&&(r=Ae(r));const o=Ae(this),{has:i,get:l}=_a(o);let u=i.call(o,s);u||(s=Ae(s),u=i.call(o,s));const c=l.call(o,s);return o.set(s,r),u?Ft(r,c)&&zt(o,"set",s,r):zt(o,"add",s,r),this},delete(s){const r=Ae(this),{has:o,get:i}=_a(r);let l=o.call(r,s);l||(s=Ae(s),l=o.call(r,s)),i&&i.call(r,s);const u=r.delete(s);return l&&zt(r,"delete",s,void 0),u},clear(){const s=Ae(this),r=s.size!==0,o=s.clear();return r&&zt(s,"clear",void 0,void 0),o}}),["keys","values","entries",Symbol.iterator].forEach(s=>{n[s]=vu(s,e,t)}),n}function rr(e,t){const n=gu(e,t);return(a,s,r)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?a:Reflect.get(Ce(n,s)&&s in a?n:a,s,r)}const hu={get:rr(!1,!1)},mu={get:rr(!1,!0)},yu={get:rr(!0,!1)};const mo=new WeakMap,yo=new WeakMap,_o=new WeakMap,_u=new WeakMap;function bu(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function wu(e){return e.__v_skip||!Object.isExtensible(e)?0:bu(ql(e))}function Zt(e){return Yt(e)?e:ir(e,!1,du,hu,mo)}function bo(e){return ir(e,!1,pu,mu,yo)}function Is(e){return ir(e,!0,fu,yu,_o)}function ir(e,t,n,a,s){if(!Te(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const r=wu(e);if(r===0)return e;const o=s.get(e);if(o)return o;const i=new Proxy(e,r===2?a:n);return s.set(e,i),i}function Kt(e){return Yt(e)?Kt(e.__v_raw):!!(e&&e.__v_isReactive)}function Yt(e){return!!(e&&e.__v_isReadonly)}function ht(e){return!!(e&&e.__v_isShallow)}function qa(e){return e?!!e.__v_raw:!1}function Ae(e){const t=e&&e.__v_raw;return t?Ae(t):e}function or(e){return!Ce(e,"__v_skip")&&Object.isExtensible(e)&&Zi(e,"__v_skip",!0),e}const Et=e=>Te(e)?Zt(e):e,In=e=>Te(e)?Is(e):e;function Ve(e){return e?e.__v_isRef===!0:!1}function z(e){return wo(e,!1)}function Su(e){return wo(e,!0)}function wo(e,t){return Ve(e)?e:new ku(e,t)}class ku{constructor(t,n){this.dep=new sr,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:Ae(t),this._value=n?t:Et(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,a=this.__v_isShallow||ht(t)||Yt(t);t=a?t:Ae(t),Ft(t,n)&&(this._rawValue=t,this._value=a?t:Et(t),this.dep.trigger())}}function v(e){return Ve(e)?e.value:e}const Au={get:(e,t,n)=>t==="__v_raw"?e:v(Reflect.get(e,t,n)),set:(e,t,n,a)=>{const s=e[t];return Ve(s)&&!Ve(n)?(s.value=n,!0):Reflect.set(e,t,n,a)}};function So(e){return Kt(e)?e:new Proxy(e,Au)}function xu(e){const t=ye(e)?new Array(e.length):{};for(const n in e)t[n]=Eu(e,n);return t}class Cu{constructor(t,n,a){this._object=t,this._defaultValue=a,this.__v_isRef=!0,this._value=void 0,this._key=_t(n)?n:String(n),this._raw=Ae(t);let s=!0,r=t;if(!ye(t)||_t(this._key)||!Va(this._key))do s=!qa(r)||ht(r);while(s&&(r=r.__v_raw));this._shallow=s}get value(){let t=this._object[this._key];return this._shallow&&(t=v(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&Ve(this._raw[this._key])){const n=this._object[this._key];if(Ve(n)){n.value=t;return}}this._object[this._key]=t}get dep(){return ru(this._raw,this._key)}}function Eu(e,t,n){return new Cu(e,t,n)}class Ru{constructor(t,n,a){this.fn=t,this.setter=n,this._value=void 0,this.dep=new sr(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=oa-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=a}notify(){if(this.flags|=16,!(this.flags&8)&&Ne!==this)return oo(this,!0),!0}get value(){const t=this.dep.track();return co(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function $u(e,t,n=!1){let a,s;return we(e)?a=e:(a=e.get,s=e.set),new Ru(a,s,n)}const wa={},Ea=new WeakMap;let pn;function Tu(e,t=!1,n=pn){if(n){let a=Ea.get(n);a||Ea.set(n,a=[]),a.push(e)}}function Pu(e,t,n=Me){const{immediate:a,deep:s,once:r,scheduler:o,augmentJob:i,call:l}=n,u=C=>s?C:ht(C)||s===!1||s===0?on(C,1):on(C);let c,d,f,_,g=!1,m=!1;if(Ve(e)?(d=()=>e.value,g=ht(e)):Kt(e)?(d=()=>u(e),g=!0):ye(e)?(m=!0,g=e.some(C=>Kt(C)||ht(C)),d=()=>e.map(C=>{if(Ve(C))return C.value;if(Kt(C))return u(C);if(we(C))return l?l(C,2):C()})):we(e)?t?d=l?()=>l(e,2):e:d=()=>{if(f){Wt();try{f()}finally{Jt()}}const C=pn;pn=c;try{return l?l(e,3,[_]):e(_)}finally{pn=C}}:d=Nt,t&&s){const C=d,L=s===!0?1/0:s;d=()=>on(C(),L)}const h=so(),$=()=>{c.stop(),h&&h.active&&Zs(h.effects,c)};if(r&&t){const C=t;t=(...L)=>{C(...L),$()}}let y=m?new Array(e.length).fill(wa):wa;const S=C=>{if(!(!(c.flags&1)||!c.dirty&&!C))if(t){const L=c.run();if(s||g||(m?L.some((P,E)=>Ft(P,y[E])):Ft(L,y))){f&&f();const P=pn;pn=c;try{const E=[L,y===wa?void 0:m&&y[0]===wa?[]:y,_];y=L,l?l(t,3,E):t(...E)}finally{pn=P}}}else c.run()};return i&&i(S),c=new ro(d),c.scheduler=o?()=>o(S,!1):S,_=C=>Tu(C,!1,c),f=c.onStop=()=>{const C=Ea.get(c);if(C){if(l)l(C,4);else for(const L of C)L();Ea.delete(c)}},t?a?S(!0):y=c.run():o?o(S.bind(null,!0),!0):c.run(),$.pause=c.pause.bind(c),$.resume=c.resume.bind(c),$.stop=$,$}function on(e,t=1/0,n){if(t<=0||!Te(e)||e.__v_skip||(n=n||new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,Ve(e))on(e.value,t,n);else if(ye(e))for(let a=0;a{on(a,t,n)});else if(Xi(e)){for(const a in e)on(e[a],t,n);for(const a of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,a)&&on(e[a],t,n)}return e}/** -* @vue/runtime-core v3.5.33 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function ga(e,t,n,a){try{return a?e(...a):e()}catch(s){za(s,t,n)}}function Ut(e,t,n,a){if(we(e)){const s=ga(e,t,n,a);return s&&Ji(s)&&s.catch(r=>{za(r,t,n)}),s}if(ye(e)){const s=[];for(let r=0;r>>1,s=ct[a],r=ua(s);r=ua(n)?ct.push(e):ct.splice(Lu(t),0,e),e.flags|=1,Ao()}}function Ao(){Ra||(Ra=ko.then(Co))}function Du(e){ye(e)?Tn.push(...e):sn&&e.id===-1?sn.splice(xn+1,0,e):e.flags&1||(Tn.push(e),e.flags|=1),Ao()}function Fr(e,t,n=Lt+1){for(;nua(n)-ua(a));if(Tn.length=0,sn){sn.push(...t);return}for(sn=t,xn=0;xne.id==null?e.flags&2?-1:1/0:e.id;function Co(e){try{for(Lt=0;Lt{a._d&&Ia(-1);const r=$a(t);let o;try{o=e(...s)}finally{$a(r),a._d&&Ia(1)}return o};return a._n=!0,a._c=!0,a._d=!0,a}function dn(e,t,n,a){const s=e.dirs,r=t&&t.dirs;for(let o=0;o1)return n&&we(t)?t.call(a&&a.proxy):t}}function Ou(){return!!(Za()||mn)}const Fu=Symbol.for("v-scx"),Nu=()=>mt(Fu);function wt(e,t,n){return Ro(e,t,n)}function Ro(e,t,n=Me){const{immediate:a,deep:s,flush:r,once:o}=n,i=nt({},n),l=t&&a||!t&&r!=="post";let u;if(fa){if(r==="sync"){const _=Nu();u=_.__watcherHandles||(_.__watcherHandles=[])}else if(!l){const _=()=>{};return _.stop=Nt,_.resume=Nt,_.pause=Nt,_}}const c=rt;i.call=(_,g,m)=>Ut(_,c,g,m);let d=!1;r==="post"?i.scheduler=_=>{lt(_,c&&c.suspense)}:r!=="sync"&&(d=!0,i.scheduler=(_,g)=>{g?_():lr(_)}),i.augmentJob=_=>{t&&(_.flags|=4),d&&(_.flags|=2,c&&(_.id=c.uid,_.i=c))};const f=Pu(e,t,i);return fa&&(u?u.push(f):l&&f()),f}function Mu(e,t,n){const a=this.proxy,s=He(e)?e.includes(".")?$o(a,e):()=>a[e]:e.bind(a,a);let r;we(t)?r=t:(r=t.handler,n=t);const o=ma(this),i=Ro(s,r.bind(a),n);return o(),i}function $o(e,t){const n=t.split(".");return()=>{let a=e;for(let s=0;se.__isTeleport,vn=e=>e&&(e.disabled||e.disabled===""),Vu=e=>e&&(e.defer||e.defer===""),Nr=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Mr=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Ls=(e,t)=>{const n=e&&e.to;return He(n)?t?t(n):null:n},ju={name:"Teleport",__isTeleport:!0,process(e,t,n,a,s,r,o,i,l,u){const{mc:c,pc:d,pbc:f,o:{insert:_,querySelector:g,createText:m,createComment:h,parentNode:$}}=u,y=vn(t.props);let{dynamicChildren:S}=t;const C=(E,T,w)=>{E.shapeFlag&16&&c(E.children,T,w,s,r,o,i,l)},L=(E=t)=>{const T=vn(E.props),w=E.target=Ls(E.props,g),Z=Ds(w,E,m,_);w&&(o!=="svg"&&Nr(w)?o="svg":o!=="mathml"&&Mr(w)&&(o="mathml"),s&&s.isCE&&(s.ce._teleportTargets||(s.ce._teleportTargets=new Set)).add(w),T||(C(E,w,Z),Jn(E,!1)))},P=E=>{const T=()=>{if(nn.get(E)===T){if(nn.delete(E),vn(E.props)){const w=$(E.el)||n;C(E,w,E.anchor),Jn(E,!0)}L(E)}};nn.set(E,T),lt(T,r)};if(e==null){const E=t.el=m(""),T=t.anchor=m("");if(_(E,n,a),_(T,n,a),Vu(t.props)||r&&r.pendingBranch){P(t);return}y&&(C(t,n,T),Jn(t,!0)),L()}else{t.el=e.el;const E=t.anchor=e.anchor,T=nn.get(e);if(T){T.flags|=8,nn.delete(e),P(t);return}t.targetStart=e.targetStart;const w=t.target=e.target,Z=t.targetAnchor=e.targetAnchor,oe=vn(e.props),fe=oe?n:w,ge=oe?E:Z;if(o==="svg"||Nr(w)?o="svg":(o==="mathml"||Mr(w))&&(o="mathml"),S?(f(e.dynamicChildren,S,fe,s,r,o,i),fr(e,t,!0)):l||d(e,t,fe,ge,s,r,o,i,!1),y)oe?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):Sa(t,n,E,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const B=t.target=Ls(t.props,g);B&&Sa(t,B,null,u,0)}else oe&&Sa(t,w,Z,u,1);Jn(t,y)}},remove(e,t,n,{um:a,o:{remove:s}},r){const{shapeFlag:o,children:i,anchor:l,targetStart:u,targetAnchor:c,target:d,props:f}=e;let _=r||!vn(f);const g=nn.get(e);if(g&&(g.flags|=8,nn.delete(e),_=!1),d&&(s(u),s(c)),r&&s(l),o&16)for(let m=0;mna(m,t&&(ye(t)?t[h]:t),n,a,s));return}if(Pn(a)&&!s){a.shapeFlag&512&&a.type.__asyncResolved&&a.component.subTree.component&&na(e,t,n,a.component.subTree);return}const r=a.shapeFlag&4?vr(a.component):a.el,o=s?null:r,{i,r:l}=e,u=t&&t.r,c=i.refs===Me?i.refs={}:i.refs,d=i.setupState,f=Ae(d),_=d===Me?Ki:m=>Ur(c,m)?!1:Ce(f,m),g=(m,h)=>!(h&&Ur(c,h));if(u!=null&&u!==l){if(Vr(t),He(u))c[u]=null,_(u)&&(d[u]=null);else if(Ve(u)){const m=t;g(u,m.k)&&(u.value=null),m.k&&(c[m.k]=null)}}if(we(l))ga(l,i,12,[o,c]);else{const m=He(l),h=Ve(l);if(m||h){const $=()=>{if(e.f){const y=m?_(l)?d[l]:c[l]:g()||!e.k?l.value:c[e.k];if(s)ye(y)&&Zs(y,r);else if(ye(y))y.includes(r)||y.push(r);else if(m)c[l]=[r],_(l)&&(d[l]=c[l]);else{const S=[r];g(l,e.k)&&(l.value=S),e.k&&(c[e.k]=S)}}else m?(c[l]=o,_(l)&&(d[l]=o)):h&&(g(l,e.k)&&(l.value=o),e.k&&(c[e.k]=o))};if(o){const y=()=>{$(),Ta.delete(e)};y.id=-1,Ta.set(e,y),lt(y,n)}else Vr(e),$()}}}function Vr(e){const t=Ta.get(e);t&&(t.flags|=8,Ta.delete(e))}Ha().requestIdleCallback;Ha().cancelIdleCallback;const Pn=e=>!!e.type.__asyncLoader,Io=e=>e.type.__isKeepAlive;function qu(e,t){Lo(e,"a",t)}function zu(e,t){Lo(e,"da",t)}function Lo(e,t,n=rt){const a=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Ka(t,a,n),n){let s=n.parent;for(;s&&s.parent;)Io(s.parent.vnode)&&Ku(a,t,n,s),s=s.parent}}function Ku(e,t,n,a){const s=Ka(t,e,a,!0);ha(()=>{Zs(a[t],s)},n)}function Ka(e,t,n=rt,a=!1){if(n){const s=n[e]||(n[e]=[]),r=t.__weh||(t.__weh=(...o)=>{Wt();const i=ma(n),l=Ut(t,n,e,o);return i(),Jt(),l});return a?s.unshift(r):s.push(r),r}}const Qt=e=>(t,n=rt)=>{(!fa||e==="sp")&&Ka(e,(...a)=>t(...a),n)},Wu=Qt("bm"),bt=Qt("m"),Ju=Qt("bu"),Yu=Qt("u"),Wa=Qt("bum"),ha=Qt("um"),Xu=Qt("sp"),Zu=Qt("rtg"),Qu=Qt("rtc");function Do(e,t=rt){Ka("ec",e,t)}const ec="components";function cn(e,t){return nc(ec,e,!0,t)||e}const tc=Symbol.for("v-ndc");function nc(e,t,n=!0,a=!1){const s=dt||rt;if(s){const r=s.type;{const i=Vc(r,!1);if(i&&(i===t||i===ft(t)||i===Ba(ft(t))))return r}const o=jr(s[e]||r[e],t)||jr(s.appContext[e],t);return!o&&a?r:o}}function jr(e,t){return e&&(e[t]||e[ft(t)]||e[Ba(ft(t))])}function Vt(e,t,n,a){let s;const r=n,o=ye(e);if(o||He(e)){const i=o&&Kt(e);let l=!1,u=!1;i&&(l=!ht(e),u=Yt(e),e=Ga(e)),s=new Array(e.length);for(let c=0,d=e.length;ct(i,l,void 0,r));else{const i=Object.keys(e);s=new Array(i.length);for(let l=0,u=i.length;l{const r=a.fn(...s);return r&&(r.key=a.key),r}:a.fn)}return e}function Ja(e,t,n={},a,s){if(dt.ce||dt.parent&&Pn(dt.parent)&&dt.parent.ce){const u=Object.keys(n).length>0;return t!=="default"&&(n.name=t),k(),K(Ee,null,[R("slot",n,a&&a())],u?-2:64)}let r=e[t];r&&r._c&&(r._d=!1),k();const o=r&&Fo(r(n)),i=n.key||o&&o.key,l=K(Ee,{key:(i&&!_t(i)?i:`_${t}`)+(!o&&a?"_fb":"")},o||(a?a():[]),o&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),r&&r._c&&(r._d=!0),l}function Fo(e){return e.some(t=>da(t)?!(t.type===Xt||t.type===Ee&&!Fo(t.children)):!0)?e:null}const Os=e=>e?nl(e)?vr(e):Os(e.parent):null,aa=nt(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Os(e.parent),$root:e=>Os(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>Mo(e),$forceUpdate:e=>e.f||(e.f=()=>{lr(e.update)}),$nextTick:e=>e.n||(e.n=_n.bind(e.proxy)),$watch:e=>Mu.bind(e)}),vs=(e,t)=>e!==Me&&!e.__isScriptSetup&&Ce(e,t),ac={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:a,data:s,props:r,accessCache:o,type:i,appContext:l}=e;if(t[0]!=="$"){const f=o[t];if(f!==void 0)switch(f){case 1:return a[t];case 2:return s[t];case 4:return n[t];case 3:return r[t]}else{if(vs(a,t))return o[t]=1,a[t];if(s!==Me&&Ce(s,t))return o[t]=2,s[t];if(Ce(r,t))return o[t]=3,r[t];if(n!==Me&&Ce(n,t))return o[t]=4,n[t];Fs&&(o[t]=0)}}const u=aa[t];let c,d;if(u)return t==="$attrs"&&st(e.attrs,"get",""),u(e);if((c=i.__cssModules)&&(c=c[t]))return c;if(n!==Me&&Ce(n,t))return o[t]=4,n[t];if(d=l.config.globalProperties,Ce(d,t))return d[t]},set({_:e},t,n){const{data:a,setupState:s,ctx:r}=e;return vs(s,t)?(s[t]=n,!0):a!==Me&&Ce(a,t)?(a[t]=n,!0):Ce(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(r[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:a,appContext:s,props:r,type:o}},i){let l;return!!(n[i]||e!==Me&&i[0]!=="$"&&Ce(e,i)||vs(t,i)||Ce(r,i)||Ce(a,i)||Ce(aa,i)||Ce(s.config.globalProperties,i)||(l=o.__cssModules)&&l[i])},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:Ce(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Br(e){return ye(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Fs=!0;function sc(e){const t=Mo(e),n=e.proxy,a=e.ctx;Fs=!1,t.beforeCreate&&Hr(t.beforeCreate,e,"bc");const{data:s,computed:r,methods:o,watch:i,provide:l,inject:u,created:c,beforeMount:d,mounted:f,beforeUpdate:_,updated:g,activated:m,deactivated:h,beforeDestroy:$,beforeUnmount:y,destroyed:S,unmounted:C,render:L,renderTracked:P,renderTriggered:E,errorCaptured:T,serverPrefetch:w,expose:Z,inheritAttrs:oe,components:fe,directives:ge,filters:B}=t;if(u&&rc(u,a,null),o)for(const Y in o){const te=o[Y];we(te)&&(a[Y]=te.bind(n))}if(s){const Y=s.call(n,n);Te(Y)&&(e.data=Zt(Y))}if(Fs=!0,r)for(const Y in r){const te=r[Y],ve=we(te)?te.bind(n,n):we(te.get)?te.get.bind(n,n):Nt,ke=!we(te)&&we(te.set)?te.set.bind(n):Nt,Pe=ee({get:ve,set:ke});Object.defineProperty(a,Y,{enumerable:!0,configurable:!0,get:()=>Pe.value,set:be=>Pe.value=be})}if(i)for(const Y in i)No(i[Y],a,n,Y);if(l){const Y=we(l)?l.call(n):l;Reflect.ownKeys(Y).forEach(te=>{ta(te,Y[te])})}c&&Hr(c,e,"c");function Q(Y,te){ye(te)?te.forEach(ve=>Y(ve.bind(n))):te&&Y(te.bind(n))}if(Q(Wu,d),Q(bt,f),Q(Ju,_),Q(Yu,g),Q(qu,m),Q(zu,h),Q(Do,T),Q(Qu,P),Q(Zu,E),Q(Wa,y),Q(ha,C),Q(Xu,w),ye(Z))if(Z.length){const Y=e.exposed||(e.exposed={});Z.forEach(te=>{Object.defineProperty(Y,te,{get:()=>n[te],set:ve=>n[te]=ve,enumerable:!0})})}else e.exposed||(e.exposed={});L&&e.render===Nt&&(e.render=L),oe!=null&&(e.inheritAttrs=oe),fe&&(e.components=fe),ge&&(e.directives=ge),w&&Po(e)}function rc(e,t,n=Nt){ye(e)&&(e=Ns(e));for(const a in e){const s=e[a];let r;Te(s)?"default"in s?r=mt(s.from||a,s.default,!0):r=mt(s.from||a):r=mt(s),Ve(r)?Object.defineProperty(t,a,{enumerable:!0,configurable:!0,get:()=>r.value,set:o=>r.value=o}):t[a]=r}}function Hr(e,t,n){Ut(ye(e)?e.map(a=>a.bind(t.proxy)):e.bind(t.proxy),t,n)}function No(e,t,n,a){let s=a.includes(".")?$o(n,a):()=>n[a];if(He(e)){const r=t[e];we(r)&&wt(s,r)}else if(we(e))wt(s,e.bind(n));else if(Te(e))if(ye(e))e.forEach(r=>No(r,t,n,a));else{const r=we(e.handler)?e.handler.bind(n):t[e.handler];we(r)&&wt(s,r,e)}}function Mo(e){const t=e.type,{mixins:n,extends:a}=t,{mixins:s,optionsCache:r,config:{optionMergeStrategies:o}}=e.appContext,i=r.get(t);let l;return i?l=i:!s.length&&!n&&!a?l=t:(l={},s.length&&s.forEach(u=>Pa(l,u,o,!0)),Pa(l,t,o)),Te(t)&&r.set(t,l),l}function Pa(e,t,n,a=!1){const{mixins:s,extends:r}=t;r&&Pa(e,r,n,!0),s&&s.forEach(o=>Pa(e,o,n,!0));for(const o in t)if(!(a&&o==="expose")){const i=ic[o]||n&&n[o];e[o]=i?i(e[o],t[o]):t[o]}return e}const ic={data:Gr,props:qr,emits:qr,methods:Yn,computed:Yn,beforeCreate:ot,created:ot,beforeMount:ot,mounted:ot,beforeUpdate:ot,updated:ot,beforeDestroy:ot,beforeUnmount:ot,destroyed:ot,unmounted:ot,activated:ot,deactivated:ot,errorCaptured:ot,serverPrefetch:ot,components:Yn,directives:Yn,watch:lc,provide:Gr,inject:oc};function Gr(e,t){return t?e?function(){return nt(we(e)?e.call(this,this):e,we(t)?t.call(this,this):t)}:t:e}function oc(e,t){return Yn(Ns(e),Ns(t))}function Ns(e){if(ye(e)){const t={};for(let n=0;nt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${ft(t)}Modifiers`]||e[`${un(t)}Modifiers`];function fc(e,t,...n){if(e.isUnmounted)return;const a=e.vnode.props||Me;let s=n;const r=t.startsWith("update:"),o=r&&dc(a,t.slice(7));o&&(o.trim&&(s=n.map(c=>He(c)?c.trim():c)),o.number&&(s=n.map(Wl)));let i,l=a[i=ls(t)]||a[i=ls(ft(t))];!l&&r&&(l=a[i=ls(un(t))]),l&&Ut(l,e,6,s);const u=a[i+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[i])return;e.emitted[i]=!0,Ut(u,e,6,s)}}const pc=new WeakMap;function Vo(e,t,n=!1){const a=n?pc:t.emitsCache,s=a.get(e);if(s!==void 0)return s;const r=e.emits;let o={},i=!1;if(!we(e)){const l=u=>{const c=Vo(u,t,!0);c&&(i=!0,nt(o,c))};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}return!r&&!i?(Te(e)&&a.set(e,null),null):(ye(r)?r.forEach(l=>o[l]=null):nt(o,r),Te(e)&&a.set(e,o),o)}function Ya(e,t){return!e||!Ma(t)?!1:(t=t.slice(2).replace(/Once$/,""),Ce(e,t[0].toLowerCase()+t.slice(1))||Ce(e,un(t))||Ce(e,t))}function zr(e){const{type:t,vnode:n,proxy:a,withProxy:s,propsOptions:[r],slots:o,attrs:i,emit:l,render:u,renderCache:c,props:d,data:f,setupState:_,ctx:g,inheritAttrs:m}=e,h=$a(e);let $,y;try{if(n.shapeFlag&4){const C=s||a,L=C;$=Ot(u.call(L,C,c,d,_,f,g)),y=i}else{const C=t;$=Ot(C.length>1?C(d,{attrs:i,slots:o,emit:l}):C(d,null)),y=t.props?i:vc(i)}}catch(C){sa.length=0,za(C,e,1),$=R(Xt)}let S=$;if(y&&m!==!1){const C=Object.keys(y),{shapeFlag:L}=S;C.length&&L&7&&(r&&C.some(Ua)&&(y=gc(y,r)),S=Ln(S,y,!1,!0))}return n.dirs&&(S=Ln(S,null,!1,!0),S.dirs=S.dirs?S.dirs.concat(n.dirs):n.dirs),n.transition&&ur(S,n.transition),$=S,$a(h),$}const vc=e=>{let t;for(const n in e)(n==="class"||n==="style"||Ma(n))&&((t||(t={}))[n]=e[n]);return t},gc=(e,t)=>{const n={};for(const a in e)(!Ua(a)||!(a.slice(9)in t))&&(n[a]=e[a]);return n};function hc(e,t,n){const{props:a,children:s,component:r}=e,{props:o,children:i,patchFlag:l}=t,u=r.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&l>=0){if(l&1024)return!0;if(l&16)return a?Kr(a,o,u):!!o;if(l&8){const c=t.dynamicProps;for(let d=0;dObject.create(Bo),Go=e=>Object.getPrototypeOf(e)===Bo;function yc(e,t,n,a=!1){const s={},r=Ho();e.propsDefaults=Object.create(null),qo(e,t,s,r);for(const o in e.propsOptions[0])o in s||(s[o]=void 0);n?e.props=a?s:bo(s):e.type.props?e.props=s:e.props=r,e.attrs=r}function _c(e,t,n,a){const{props:s,attrs:r,vnode:{patchFlag:o}}=e,i=Ae(s),[l]=e.propsOptions;let u=!1;if((a||o>0)&&!(o&16)){if(o&8){const c=e.vnode.dynamicProps;for(let d=0;d{l=!0;const[f,_]=zo(d,t,!0);nt(o,f),_&&i.push(..._)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!r&&!l)return Te(e)&&a.set(e,Rn),Rn;if(ye(r))for(let c=0;ce==="_"||e==="_ctx"||e==="$stable",dr=e=>ye(e)?e.map(Ot):[Ot(e)],wc=(e,t,n)=>{if(t._n)return t;const a=x((...s)=>dr(t(...s)),n);return a._c=!1,a},Ko=(e,t,n)=>{const a=e._ctx;for(const s in e){if(cr(s))continue;const r=e[s];if(we(r))t[s]=wc(s,r,a);else if(r!=null){const o=dr(r);t[s]=()=>o}}},Wo=(e,t)=>{const n=dr(t);e.slots.default=()=>n},Jo=(e,t,n)=>{for(const a in t)(n||!cr(a))&&(e[a]=t[a])},Sc=(e,t,n)=>{const a=e.slots=Ho();if(e.vnode.shapeFlag&32){const s=t._;s?(Jo(a,t,n),n&&Zi(a,"_",s,!0)):Ko(t,a)}else t&&Wo(e,t)},kc=(e,t,n)=>{const{vnode:a,slots:s}=e;let r=!0,o=Me;if(a.shapeFlag&32){const i=t._;i?n&&i===1?r=!1:Jo(s,t,n):(r=!t.$stable,Ko(t,s)),o=t}else t&&(Wo(e,t),o={default:1});if(r)for(const i in s)!cr(i)&&o[i]==null&&delete s[i]},lt=Rc;function Ac(e){return xc(e)}function xc(e,t){const n=Ha();n.__VUE__=!0;const{insert:a,remove:s,patchProp:r,createElement:o,createText:i,createComment:l,setText:u,setElementText:c,parentNode:d,nextSibling:f,setScopeId:_=Nt,insertStaticContent:g}=e,m=(p,b,A,j=null,W=null,q=null,le=void 0,re=null,ae=!!b.dynamicChildren)=>{if(p===b)return;p&&!Bn(p,b)&&(j=M(p),be(p,W,q,!0),p=null),b.patchFlag===-2&&(ae=!1,b.dynamicChildren=null);const{type:X,ref:pe,shapeFlag:ue}=b;switch(X){case Xa:h(p,b,A,j);break;case Xt:$(p,b,A,j);break;case ka:p==null&&y(b,A,j,le);break;case Ee:fe(p,b,A,j,W,q,le,re,ae);break;default:ue&1?L(p,b,A,j,W,q,le,re,ae):ue&6?ge(p,b,A,j,W,q,le,re,ae):(ue&64||ue&128)&&X.process(p,b,A,j,W,q,le,re,ae,F)}pe!=null&&W?na(pe,p&&p.ref,q,b||p,!b):pe==null&&p&&p.ref!=null&&na(p.ref,null,q,p,!0)},h=(p,b,A,j)=>{if(p==null)a(b.el=i(b.children),A,j);else{const W=b.el=p.el;b.children!==p.children&&u(W,b.children)}},$=(p,b,A,j)=>{p==null?a(b.el=l(b.children||""),A,j):b.el=p.el},y=(p,b,A,j)=>{[p.el,p.anchor]=g(p.children,b,A,j,p.el,p.anchor)},S=({el:p,anchor:b},A,j)=>{let W;for(;p&&p!==b;)W=f(p),a(p,A,j),p=W;a(b,A,j)},C=({el:p,anchor:b})=>{let A;for(;p&&p!==b;)A=f(p),s(p),p=A;s(b)},L=(p,b,A,j,W,q,le,re,ae)=>{if(b.type==="svg"?le="svg":b.type==="math"&&(le="mathml"),p==null)P(b,A,j,W,q,le,re,ae);else{const X=p.el&&p.el._isVueCE?p.el:null;try{X&&X._beginPatch(),w(p,b,W,q,le,re,ae)}finally{X&&X._endPatch()}}},P=(p,b,A,j,W,q,le,re)=>{let ae,X;const{props:pe,shapeFlag:ue,transition:ce,dirs:me}=p;if(ae=p.el=o(p.type,q,pe&&pe.is,pe),ue&8?c(ae,p.children):ue&16&&T(p.children,ae,null,j,W,gs(p,q),le,re),me&&dn(p,null,j,"created"),E(ae,p,p.scopeId,le,j),pe){for(const $e in pe)$e!=="value"&&!Zn($e)&&r(ae,$e,null,pe[$e],q,j);"value"in pe&&r(ae,"value",null,pe.value,q),(X=pe.onVnodeBeforeMount)&&Tt(X,j,p)}me&&dn(p,null,j,"beforeMount");const Se=Cc(W,ce);Se&&ce.beforeEnter(ae),a(ae,b,A),((X=pe&&pe.onVnodeMounted)||Se||me)&<(()=>{try{X&&Tt(X,j,p),Se&&ce.enter(ae),me&&dn(p,null,j,"mounted")}finally{}},W)},E=(p,b,A,j,W)=>{if(A&&_(p,A),j)for(let q=0;q{for(let X=ae;X{const re=b.el=p.el;let{patchFlag:ae,dynamicChildren:X,dirs:pe}=b;ae|=p.patchFlag&16;const ue=p.props||Me,ce=b.props||Me;let me;if(A&&fn(A,!1),(me=ce.onVnodeBeforeUpdate)&&Tt(me,A,b,p),pe&&dn(b,p,A,"beforeUpdate"),A&&fn(A,!0),(ue.innerHTML&&ce.innerHTML==null||ue.textContent&&ce.textContent==null)&&c(re,""),X?Z(p.dynamicChildren,X,re,A,j,gs(b,W),q):le||te(p,b,re,null,A,j,gs(b,W),q,!1),ae>0){if(ae&16)oe(re,ue,ce,A,W);else if(ae&2&&ue.class!==ce.class&&r(re,"class",null,ce.class,W),ae&4&&r(re,"style",ue.style,ce.style,W),ae&8){const Se=b.dynamicProps;for(let $e=0;$e{me&&Tt(me,A,b,p),pe&&dn(b,p,A,"updated")},j)},Z=(p,b,A,j,W,q,le)=>{for(let re=0;re{if(b!==A){if(b!==Me)for(const q in b)!Zn(q)&&!(q in A)&&r(p,q,b[q],null,W,j);for(const q in A){if(Zn(q))continue;const le=A[q],re=b[q];le!==re&&q!=="value"&&r(p,q,re,le,W,j)}"value"in A&&r(p,"value",b.value,A.value,W)}},fe=(p,b,A,j,W,q,le,re,ae)=>{const X=b.el=p?p.el:i(""),pe=b.anchor=p?p.anchor:i("");let{patchFlag:ue,dynamicChildren:ce,slotScopeIds:me}=b;me&&(re=re?re.concat(me):me),p==null?(a(X,A,j),a(pe,A,j),T(b.children||[],A,pe,W,q,le,re,ae)):ue>0&&ue&64&&ce&&p.dynamicChildren&&p.dynamicChildren.length===ce.length?(Z(p.dynamicChildren,ce,A,W,q,le,re),(b.key!=null||W&&b===W.subTree)&&fr(p,b,!0)):te(p,b,A,pe,W,q,le,re,ae)},ge=(p,b,A,j,W,q,le,re,ae)=>{b.slotScopeIds=re,p==null?b.shapeFlag&512?W.ctx.activate(b,A,j,le,ae):B(b,A,j,W,q,le,ae):J(p,b,ae)},B=(p,b,A,j,W,q,le)=>{const re=p.component=Oc(p,j,W);if(Io(p)&&(re.ctx.renderer=F),Fc(re,!1,le),re.asyncDep){if(W&&W.registerDep(re,Q,le),!p.el){const ae=re.subTree=R(Xt);$(null,ae,b,A),p.placeholder=ae.el}}else Q(re,p,b,A,W,q,le)},J=(p,b,A)=>{const j=b.component=p.component;if(hc(p,b,A))if(j.asyncDep&&!j.asyncResolved){Y(j,b,A);return}else j.next=b,j.update();else b.el=p.el,j.vnode=b},Q=(p,b,A,j,W,q,le)=>{const re=()=>{if(p.isMounted){let{next:ue,bu:ce,u:me,parent:Se,vnode:$e}=p;{const Le=Yo(p);if(Le){ue&&(ue.el=$e.el,Y(p,ue,le)),Le.asyncDep.then(()=>{lt(()=>{p.isUnmounted||X()},W)});return}}let Ie=ue,Be;fn(p,!1),ue?(ue.el=$e.el,Y(p,ue,le)):ue=$e,ce&&us(ce),(Be=ue.props&&ue.props.onVnodeBeforeUpdate)&&Tt(Be,Se,ue,$e),fn(p,!0);const ie=zr(p),D=p.subTree;p.subTree=ie,m(D,ie,d(D.el),M(D),p,W,q),ue.el=ie.el,Ie===null&&mc(p,ie.el),me&<(me,W),(Be=ue.props&&ue.props.onVnodeUpdated)&<(()=>Tt(Be,Se,ue,$e),W)}else{let ue;const{el:ce,props:me}=b,{bm:Se,m:$e,parent:Ie,root:Be,type:ie}=p,D=Pn(b);fn(p,!1),Se&&us(Se),!D&&(ue=me&&me.onVnodeBeforeMount)&&Tt(ue,Ie,b),fn(p,!0);{Be.ce&&Be.ce._hasShadowRoot()&&Be.ce._injectChildStyle(ie,p.parent?p.parent.type:void 0);const Le=p.subTree=zr(p);m(null,Le,A,j,p,W,q),b.el=Le.el}if($e&<($e,W),!D&&(ue=me&&me.onVnodeMounted)){const Le=b;lt(()=>Tt(ue,Ie,Le),W)}(b.shapeFlag&256||Ie&&Pn(Ie.vnode)&&Ie.vnode.shapeFlag&256)&&p.a&<(p.a,W),p.isMounted=!0,b=A=j=null}};p.scope.on();const ae=p.effect=new ro(re);p.scope.off();const X=p.update=ae.run.bind(ae),pe=p.job=ae.runIfDirty.bind(ae);pe.i=p,pe.id=p.uid,ae.scheduler=()=>lr(pe),fn(p,!0),X()},Y=(p,b,A)=>{b.component=p;const j=p.vnode.props;p.vnode=b,p.next=null,_c(p,b.props,j,A),kc(p,b.children,A),Wt(),Fr(p),Jt()},te=(p,b,A,j,W,q,le,re,ae=!1)=>{const X=p&&p.children,pe=p?p.shapeFlag:0,ue=b.children,{patchFlag:ce,shapeFlag:me}=b;if(ce>0){if(ce&128){ke(X,ue,A,j,W,q,le,re,ae);return}else if(ce&256){ve(X,ue,A,j,W,q,le,re,ae);return}}me&8?(pe&16&&Oe(X,W,q),ue!==X&&c(A,ue)):pe&16?me&16?ke(X,ue,A,j,W,q,le,re,ae):Oe(X,W,q,!0):(pe&8&&c(A,""),me&16&&T(ue,A,j,W,q,le,re,ae))},ve=(p,b,A,j,W,q,le,re,ae)=>{p=p||Rn,b=b||Rn;const X=p.length,pe=b.length,ue=Math.min(X,pe);let ce;for(ce=0;cepe?Oe(p,W,q,!0,!1,ue):T(b,A,j,W,q,le,re,ae,ue)},ke=(p,b,A,j,W,q,le,re,ae)=>{let X=0;const pe=b.length;let ue=p.length-1,ce=pe-1;for(;X<=ue&&X<=ce;){const me=p[X],Se=b[X]=ae?qt(b[X]):Ot(b[X]);if(Bn(me,Se))m(me,Se,A,null,W,q,le,re,ae);else break;X++}for(;X<=ue&&X<=ce;){const me=p[ue],Se=b[ce]=ae?qt(b[ce]):Ot(b[ce]);if(Bn(me,Se))m(me,Se,A,null,W,q,le,re,ae);else break;ue--,ce--}if(X>ue){if(X<=ce){const me=ce+1,Se=mece)for(;X<=ue;)be(p[X],W,q,!0),X++;else{const me=X,Se=X,$e=new Map;for(X=Se;X<=ce;X++){const Je=b[X]=ae?qt(b[X]):Ot(b[X]);Je.key!=null&&$e.set(Je.key,X)}let Ie,Be=0;const ie=ce-Se+1;let D=!1,Le=0;const et=new Array(ie);for(X=0;X=ie){be(Je,W,q,!0);continue}let Ke;if(Je.key!=null)Ke=$e.get(Je.key);else for(Ie=Se;Ie<=ce;Ie++)if(et[Ie-Se]===0&&Bn(Je,b[Ie])){Ke=Ie;break}Ke===void 0?be(Je,W,q,!0):(et[Ke-Se]=X+1,Ke>=Le?Le=Ke:D=!0,m(Je,b[Ke],A,null,W,q,le,re,ae),Be++)}const he=D?Ec(et):Rn;for(Ie=he.length-1,X=ie-1;X>=0;X--){const Je=Se+X,Ke=b[Je],Vn=b[Je+1],Pr=Je+1{const{el:q,type:le,transition:re,children:ae,shapeFlag:X}=p;if(X&6){Pe(p.component.subTree,b,A,j);return}if(X&128){p.suspense.move(b,A,j);return}if(X&64){le.move(p,b,A,F);return}if(le===Ee){a(q,b,A);for(let ue=0;uere.enter(q),W);else{const{leave:ue,delayLeave:ce,afterLeave:me}=re,Se=()=>{p.ctx.isUnmounted?s(q):a(q,b,A)},$e=()=>{q._isLeaving&&q[Gu](!0),ue(q,()=>{Se(),me&&me()})};ce?ce(q,Se,$e):$e()}else a(q,b,A)},be=(p,b,A,j=!1,W=!1)=>{const{type:q,props:le,ref:re,children:ae,dynamicChildren:X,shapeFlag:pe,patchFlag:ue,dirs:ce,cacheIndex:me,memo:Se}=p;if(ue===-2&&(W=!1),re!=null&&(Wt(),na(re,null,A,p,!0),Jt()),me!=null&&(b.renderCache[me]=void 0),pe&256){b.ctx.deactivate(p);return}const $e=pe&1&&ce,Ie=!Pn(p);let Be;if(Ie&&(Be=le&&le.onVnodeBeforeUnmount)&&Tt(Be,b,p),pe&6)De(p.component,A,j);else{if(pe&128){p.suspense.unmount(A,j);return}$e&&dn(p,null,b,"beforeUnmount"),pe&64?p.type.remove(p,b,A,F,j):X&&!X.hasOnce&&(q!==Ee||ue>0&&ue&64)?Oe(X,b,A,!1,!0):(q===Ee&&ue&384||!W&&pe&16)&&Oe(ae,b,A),j&&Ge(p)}const ie=Se!=null&&me==null;(Ie&&(Be=le&&le.onVnodeUnmounted)||$e||ie)&<(()=>{Be&&Tt(Be,b,p),$e&&dn(p,null,b,"unmounted"),ie&&(p.el=null)},A)},Ge=p=>{const{type:b,el:A,anchor:j,transition:W}=p;if(b===Ee){Ue(A,j);return}if(b===ka){C(p);return}const q=()=>{s(A),W&&!W.persisted&&W.afterLeave&&W.afterLeave()};if(p.shapeFlag&1&&W&&!W.persisted){const{leave:le,delayLeave:re}=W,ae=()=>le(A,q);re?re(p.el,q,ae):ae()}else q()},Ue=(p,b)=>{let A;for(;p!==b;)A=f(p),s(p),p=A;s(b)},De=(p,b,A)=>{const{bum:j,scope:W,job:q,subTree:le,um:re,m:ae,a:X}=p;Jr(ae),Jr(X),j&&us(j),W.stop(),q&&(q.flags|=8,be(le,p,b,A)),re&<(re,b),lt(()=>{p.isUnmounted=!0},b)},Oe=(p,b,A,j=!1,W=!1,q=0)=>{for(let le=q;le{if(p.shapeFlag&6)return M(p.component.subTree);if(p.shapeFlag&128)return p.suspense.next();const b=f(p.anchor||p.el),A=b&&b[To];return A?f(A):b};let se=!1;const H=(p,b,A)=>{let j;p==null?b._vnode&&(be(b._vnode,null,null,!0),j=b._vnode.component):m(b._vnode||null,p,b,null,null,null,A),b._vnode=p,se||(se=!0,Fr(j),xo(),se=!1)},F={p:m,um:be,m:Pe,r:Ge,mt:B,mc:T,pc:te,pbc:Z,n:M,o:e};return{render:H,hydrate:void 0,createApp:cc(H)}}function gs({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function fn({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Cc(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function fr(e,t,n=!1){const a=e.children,s=t.children;if(ye(a)&&ye(s))for(let r=0;r>1,e[n[i]]0&&(t[a]=n[r-1]),n[r]=a)}}for(r=n.length,o=n[r-1];r-- >0;)n[r]=o,o=t[o];return n}function Yo(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Yo(t)}function Jr(e){if(e)for(let t=0;te.__isSuspense;function Rc(e,t){t&&t.pendingBranch?ye(e)?t.effects.push(...e):t.effects.push(e):Du(e)}const Ee=Symbol.for("v-fgt"),Xa=Symbol.for("v-txt"),Xt=Symbol.for("v-cmt"),ka=Symbol.for("v-stc"),sa=[];let vt=null;function k(e=!1){sa.push(vt=e?null:[])}function $c(){sa.pop(),vt=sa[sa.length-1]||null}let ca=1;function Ia(e,t=!1){ca+=e,e<0&&vt&&t&&(vt.hasOnce=!0)}function Qo(e){return e.dynamicChildren=ca>0?vt||Rn:null,$c(),ca>0&&vt&&vt.push(e),e}function G(e,t,n,a,s,r){return Qo(I(e,t,n,a,s,r,!0))}function K(e,t,n,a,s){return Qo(R(e,t,n,a,s,!0))}function da(e){return e?e.__v_isVNode===!0:!1}function Bn(e,t){return e.type===t.type&&e.key===t.key}const el=({key:e})=>e??null,Aa=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?He(e)||Ve(e)||we(e)?{i:dt,r:e,k:t,f:!!n}:e:null);function I(e,t=null,n=null,a=0,s=null,r=e===Ee?0:1,o=!1,i=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&el(t),ref:t&&Aa(t),scopeId:Eo,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:r,patchFlag:a,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:dt};return i?(pr(l,n),r&128&&e.normalize(l)):n&&(l.shapeFlag|=He(n)?8:16),ca>0&&!o&&vt&&(l.patchFlag>0||r&6)&&l.patchFlag!==32&&vt.push(l),l}const R=Tc;function Tc(e,t=null,n=null,a=0,s=null,r=!1){if((!e||e===tc)&&(e=Xt),da(e)){const i=Ln(e,t,!0);return n&&pr(i,n),ca>0&&!r&&vt&&(i.shapeFlag&6?vt[vt.indexOf(e)]=i:vt.push(i)),i.patchFlag=-2,i}if(jc(e)&&(e=e.__vccOpts),t){t=Pc(t);let{class:i,style:l}=t;i&&!He(i)&&(t.class=Ct(i)),Te(l)&&(qa(l)&&!ye(l)&&(l=nt({},l)),t.style=Qs(l))}const o=He(e)?1:Zo(e)?128:Uu(e)?64:Te(e)?4:we(e)?2:0;return I(e,t,n,a,s,o,r,!0)}function Pc(e){return e?qa(e)||Go(e)?nt({},e):e:null}function Ln(e,t,n=!1,a=!1){const{props:s,ref:r,patchFlag:o,children:i,transition:l}=e,u=t?tl(s||{},t):s,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&el(u),ref:t&&t.ref?n&&r?ye(r)?r.concat(Aa(t)):[r,Aa(t)]:Aa(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ee?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:l,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ln(e.ssContent),ssFallback:e.ssFallback&&Ln(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return l&&a&&ur(c,l.clone(c)),c}function N(e=" ",t=0){return R(Xa,null,e,t)}function Ic(e,t){const n=R(ka,null,e);return n.staticCount=t,n}function ne(e="",t=!1){return t?(k(),K(Xt,null,e)):R(Xt,null,e)}function Ot(e){return e==null||typeof e=="boolean"?R(Xt):ye(e)?R(Ee,null,e.slice()):da(e)?qt(e):R(Xa,null,String(e))}function qt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ln(e)}function pr(e,t){let n=0;const{shapeFlag:a}=e;if(t==null)t=null;else if(ye(t))n=16;else if(typeof t=="object")if(a&65){const s=t.default;s&&(s._c&&(s._d=!1),pr(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!Go(t)?t._ctx=dt:s===3&&dt&&(dt.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else we(t)?(t={default:t,_ctx:dt},n=32):(t=String(t),a&64?(n=16,t=[N(t)]):n=8);e.children=t,e.shapeFlag|=n}function tl(...e){const t={};for(let n=0;nrt||dt;let La,Us;{const e=Ha(),t=(n,a)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(a),r=>{s.length>1?s.forEach(o=>o(r)):s[0](r)}};La=t("__VUE_INSTANCE_SETTERS__",n=>rt=n),Us=t("__VUE_SSR_SETTERS__",n=>fa=n)}const ma=e=>{const t=rt;return La(e),e.scope.on(),()=>{e.scope.off(),La(t)}},Yr=()=>{rt&&rt.scope.off(),La(null)};function nl(e){return e.vnode.shapeFlag&4}let fa=!1;function Fc(e,t=!1,n=!1){t&&Us(t);const{props:a,children:s}=e.vnode,r=nl(e);yc(e,a,r,t),Sc(e,s,n||t);const o=r?Nc(e,t):void 0;return t&&Us(!1),o}function Nc(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,ac);const{setup:a}=n;if(a){Wt();const s=e.setupContext=a.length>1?Uc(e):null,r=ma(e),o=ga(a,e,0,[e.props,s]),i=Ji(o);if(Jt(),r(),(i||e.sp)&&!Pn(e)&&Po(e),i){if(o.then(Yr,Yr),t)return o.then(l=>{Xr(e,l)}).catch(l=>{za(l,e,0)});e.asyncDep=o}else Xr(e,o)}else al(e)}function Xr(e,t,n){we(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Te(t)&&(e.setupState=So(t)),al(e)}function al(e,t,n){const a=e.type;e.render||(e.render=a.render||Nt);{const s=ma(e);Wt();try{sc(e)}finally{Jt(),s()}}}const Mc={get(e,t){return st(e,"get",""),e[t]}};function Uc(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Mc),slots:e.slots,emit:e.emit,expose:t}}function vr(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(So(or(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in aa)return aa[n](e)},has(t,n){return n in t||n in aa}})):e.proxy}function Vc(e,t=!0){return we(e)?e.displayName||e.name:e.name||t&&e.__name}function jc(e){return we(e)&&"__vccOpts"in e}const ee=(e,t)=>$u(e,t,fa);function U(e,t,n){try{Ia(-1);const a=arguments.length;return a===2?Te(t)&&!ye(t)?da(t)?R(e,null,[t]):R(e,t):R(e,null,t):(a>3?n=Array.prototype.slice.call(arguments,2):a===3&&da(n)&&(n=[n]),R(e,t,n))}finally{Ia(1)}}const Bc="3.5.33";/** -* @vue/runtime-dom v3.5.33 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let Vs;const Zr=typeof window<"u"&&window.trustedTypes;if(Zr)try{Vs=Zr.createPolicy("vue",{createHTML:e=>e})}catch{}const sl=Vs?e=>Vs.createHTML(e):e=>e,Hc="http://www.w3.org/2000/svg",Gc="http://www.w3.org/1998/Math/MathML",Gt=typeof document<"u"?document:null,Qr=Gt&&Gt.createElement("template"),qc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,a)=>{const s=t==="svg"?Gt.createElementNS(Hc,e):t==="mathml"?Gt.createElementNS(Gc,e):n?Gt.createElement(e,{is:n}):Gt.createElement(e);return e==="select"&&a&&a.multiple!=null&&s.setAttribute("multiple",a.multiple),s},createText:e=>Gt.createTextNode(e),createComment:e=>Gt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Gt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,a,s,r){const o=n?n.previousSibling:t.lastChild;if(s&&(s===r||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===r||!(s=s.nextSibling)););else{Qr.innerHTML=sl(a==="svg"?`${e}`:a==="mathml"?`${e}`:e);const i=Qr.content;if(a==="svg"||a==="mathml"){const l=i.firstChild;for(;l.firstChild;)i.appendChild(l.firstChild);i.removeChild(l)}t.insertBefore(i,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},zc=Symbol("_vtc");function Kc(e,t,n){const a=e[zc];a&&(t=(t?[t,...a]:[...a]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const ei=Symbol("_vod"),Wc=Symbol("_vsh"),Jc=Symbol(""),Yc=/(?:^|;)\s*display\s*:/;function Xc(e,t,n){const a=e.style,s=He(n);let r=!1;if(n&&!s){if(t)if(He(t))for(const o of t.split(";")){const i=o.slice(0,o.indexOf(":")).trim();n[i]==null&&Xn(a,i,"")}else for(const o in t)n[o]==null&&Xn(a,o,"");for(const o in n){o==="display"&&(r=!0);const i=n[o];i!=null?Qc(e,o,!He(t)&&t?t[o]:void 0,i)||Xn(a,o,i):Xn(a,o,"")}}else if(s){if(t!==n){const o=a[Jc];o&&(n+=";"+o),a.cssText=n,r=Yc.test(n)}}else t&&e.removeAttribute("style");ei in e&&(e[ei]=r?a.display:"",e[Wc]&&(a.display="none"))}const ti=/\s*!important$/;function Xn(e,t,n){if(ye(n))n.forEach(a=>Xn(e,t,a));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const a=Zc(e,t);ti.test(n)?e.setProperty(un(a),n.replace(ti,""),"important"):e[a]=n}}const ni=["Webkit","Moz","ms"],hs={};function Zc(e,t){const n=hs[t];if(n)return n;let a=ft(t);if(a!=="filter"&&a in e)return hs[t]=a;a=Ba(a);for(let s=0;sms||(sd.then(()=>ms=0),ms=Date.now());function id(e,t){const n=a=>{if(!a._vts)a._vts=Date.now();else if(a._vts<=n.attached)return;Ut(od(a,n.value),t,5,[a])};return n.value=e,n.attached=rd(),n}function od(e,t){if(ye(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(a=>s=>!s._stopped&&a&&a(s))}else return t}const li=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ld=(e,t,n,a,s,r)=>{const o=s==="svg";t==="class"?Kc(e,a,o):t==="style"?Xc(e,n,a):Ma(t)?Ua(t)||nd(e,t,n,a,r):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):ud(e,t,a,o))?(ri(e,t,a),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&si(e,t,a,o,r,t!=="value")):e._isVueCE&&(cd(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!He(a)))?ri(e,ft(t),a,r,t):(t==="true-value"?e._trueValue=a:t==="false-value"&&(e._falseValue=a),si(e,t,a,o))};function ud(e,t,n,a){if(a)return!!(t==="innerHTML"||t==="textContent"||t in e&&li(t)&&we(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="sandbox"&&e.tagName==="IFRAME"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const s=e.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return li(t)&&He(n)?!1:t in e}function cd(e,t){const n=e._def.props;if(!n)return!1;const a=ft(t);return Array.isArray(n)?n.some(s=>ft(s)===a):Object.keys(n).some(s=>ft(s)===a)}const dd=["ctrl","shift","alt","meta"],fd={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>dd.some(n=>e[`${n}Key`]&&!t.includes(n))},Qa=(e,t)=>{if(!e)return e;const n=e._withMods||(e._withMods={}),a=t.join(".");return n[a]||(n[a]=((s,...r)=>{for(let o=0;o{const n=e._withKeys||(e._withKeys={}),a=t.join(".");return n[a]||(n[a]=(s=>{if(!("key"in s))return;const r=un(s.key);if(t.some(o=>o===r||pd[o]===r))return e(s)}))},gd=nt({patchProp:ld},qc);let ui;function hd(){return ui||(ui=Ac(gd))}const md=((...e)=>{const t=hd().createApp(...e),{mount:n}=t;return t.mount=a=>{const s=_d(a);if(!s)return;const r=t._component;!we(r)&&!r.render&&!r.template&&(r.template=s.innerHTML),s.nodeType===1&&(s.textContent="");const o=n(s,!1,yd(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),o},t});function yd(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function _d(e){return He(e)?document.querySelector(e):e}/*! - * pinia v2.3.1 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */let rl;const es=e=>rl=e,il=Symbol();function js(e){return e&&typeof e=="object"&&Object.prototype.toString.call(e)==="[object Object]"&&typeof e.toJSON!="function"}var ra;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(ra||(ra={}));function bd(){const e=ao(!0),t=e.run(()=>z({}));let n=[],a=[];const s=or({install(r){es(s),s._a=r,r.provide(il,s),r.config.globalProperties.$pinia=s,a.forEach(o=>n.push(o)),a=[]},use(r){return this._a?n.push(r):a.push(r),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return s}const ol=()=>{};function ci(e,t,n,a=ol){e.push(t);const s=()=>{const r=e.indexOf(t);r>-1&&(e.splice(r,1),a())};return!n&&so()&&nu(s),s}function An(e,...t){e.slice().forEach(n=>{n(...t)})}const wd=e=>e(),di=Symbol(),ys=Symbol();function Bs(e,t){e instanceof Map&&t instanceof Map?t.forEach((n,a)=>e.set(a,n)):e instanceof Set&&t instanceof Set&&t.forEach(e.add,e);for(const n in t){if(!t.hasOwnProperty(n))continue;const a=t[n],s=e[n];js(s)&&js(a)&&e.hasOwnProperty(n)&&!Ve(a)&&!Kt(a)?e[n]=Bs(s,a):e[n]=a}return e}const Sd=Symbol();function kd(e){return!js(e)||!e.hasOwnProperty(Sd)}const{assign:an}=Object;function Ad(e){return!!(Ve(e)&&e.effect)}function xd(e,t,n,a){const{state:s,actions:r,getters:o}=t,i=n.state.value[e];let l;function u(){i||(n.state.value[e]=s?s():{});const c=xu(n.state.value[e]);return an(c,r,Object.keys(o||{}).reduce((d,f)=>(d[f]=or(ee(()=>{es(n);const _=n._s.get(e);return o[f].call(_,_)})),d),{}))}return l=ll(e,u,t,n,a,!0),l}function ll(e,t,n={},a,s,r){let o;const i=an({actions:{}},n),l={deep:!0};let u,c,d=[],f=[],_;const g=a.state.value[e];!r&&!g&&(a.state.value[e]={});let m;function h(T){let w;u=c=!1,typeof T=="function"?(T(a.state.value[e]),w={type:ra.patchFunction,storeId:e,events:_}):(Bs(a.state.value[e],T),w={type:ra.patchObject,payload:T,storeId:e,events:_});const Z=m=Symbol();_n().then(()=>{m===Z&&(u=!0)}),c=!0,An(d,w,a.state.value[e])}const $=r?function(){const{state:w}=n,Z=w?w():{};this.$patch(oe=>{an(oe,Z)})}:ol;function y(){o.stop(),d=[],f=[],a._s.delete(e)}const S=(T,w="")=>{if(di in T)return T[ys]=w,T;const Z=function(){es(a);const oe=Array.from(arguments),fe=[],ge=[];function B(Y){fe.push(Y)}function J(Y){ge.push(Y)}An(f,{args:oe,name:Z[ys],store:L,after:B,onError:J});let Q;try{Q=T.apply(this&&this.$id===e?this:L,oe)}catch(Y){throw An(ge,Y),Y}return Q instanceof Promise?Q.then(Y=>(An(fe,Y),Y)).catch(Y=>(An(ge,Y),Promise.reject(Y))):(An(fe,Q),Q)};return Z[di]=!0,Z[ys]=w,Z},C={_p:a,$id:e,$onAction:ci.bind(null,f),$patch:h,$reset:$,$subscribe(T,w={}){const Z=ci(d,T,w.detached,()=>oe()),oe=o.run(()=>wt(()=>a.state.value[e],fe=>{(w.flush==="sync"?c:u)&&T({storeId:e,type:ra.direct,events:_},fe)},an({},l,w)));return Z},$dispose:y},L=Zt(C);a._s.set(e,L);const E=(a._a&&a._a.runWithContext||wd)(()=>a._e.run(()=>(o=ao()).run(()=>t({action:S}))));for(const T in E){const w=E[T];if(Ve(w)&&!Ad(w)||Kt(w))r||(g&&kd(w)&&(Ve(w)?w.value=g[T]:Bs(w,g[T])),a.state.value[e][T]=w);else if(typeof w=="function"){const Z=S(w,T);E[T]=Z,i.actions[T]=w}}return an(L,E),an(Ae(L),E),Object.defineProperty(L,"$state",{get:()=>a.state.value[e],set:T=>{h(w=>{an(w,T)})}}),a._p.forEach(T=>{an(L,o.run(()=>T({store:L,app:a._a,pinia:a,options:i})))}),g&&r&&n.hydrate&&n.hydrate(L.$state,g),u=!0,c=!0,L}/*! #__NO_SIDE_EFFECTS__ */function bn(e,t,n){let a,s;const r=typeof t=="function";typeof e=="string"?(a=e,s=r?n:t):(s=e,a=e.id);function o(i,l){const u=Ou();return i=i||(u?mt(il,null):null),i&&es(i),i=rl,i._s.has(a)||(r?ll(a,t,s,i):xd(a,s,i)),i._s.get(a)}return o.$id=a,o}const Cd="modulepreload",Ed=function(e){return"/"+e},fi={},gr=function(t,n,a){let s=Promise.resolve();if(n&&n.length>0){let o=function(u){return Promise.all(u.map(c=>Promise.resolve(c).then(d=>({status:"fulfilled",value:d}),d=>({status:"rejected",reason:d}))))};document.getElementsByTagName("link");const i=document.querySelector("meta[property=csp-nonce]"),l=(i==null?void 0:i.nonce)||(i==null?void 0:i.getAttribute("nonce"));s=o(n.map(u=>{if(u=Ed(u),u in fi)return;fi[u]=!0;const c=u.endsWith(".css"),d=c?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${u}"]${d}`))return;const f=document.createElement("link");if(f.rel=c?"stylesheet":Cd,c||(f.as="script"),f.crossOrigin="",f.href=u,l&&f.setAttribute("nonce",l),document.head.appendChild(f),c)return new Promise((_,g)=>{f.addEventListener("load",_),f.addEventListener("error",()=>g(new Error(`Unable to preload CSS for ${u}`)))})}))}function r(o){const i=new Event("vite:preloadError",{cancelable:!0});if(i.payload=o,window.dispatchEvent(i),!i.defaultPrevented)throw o}return s.then(o=>{for(const i of o||[])i.status==="rejected"&&r(i.reason);return t().catch(r)})};/*! Capacitor: https://capacitorjs.com/ - MIT License */var Dn;(function(e){e.Unimplemented="UNIMPLEMENTED",e.Unavailable="UNAVAILABLE"})(Dn||(Dn={}));class _s extends Error{constructor(t,n,a){super(t),this.message=t,this.code=n,this.data=a}}const Rd=e=>{var t,n;return e!=null&&e.androidBridge?"android":!((n=(t=e==null?void 0:e.webkit)===null||t===void 0?void 0:t.messageHandlers)===null||n===void 0)&&n.bridge?"ios":"web"},$d=e=>{const t=e.CapacitorCustomPlatform||null,n=e.Capacitor||{},a=n.Plugins=n.Plugins||{},s=()=>t!==null?t.name:Rd(e),r=()=>s()!=="web",o=d=>{const f=u.get(d);return!!(f!=null&&f.platforms.has(s())||i(d))},i=d=>{var f;return(f=n.PluginHeaders)===null||f===void 0?void 0:f.find(_=>_.name===d)},l=d=>e.console.error(d),u=new Map,c=(d,f={})=>{const _=u.get(d);if(_)return console.warn(`Capacitor plugin "${d}" already registered. Cannot register plugins twice.`),_.proxy;const g=s(),m=i(d);let h;const $=async()=>(!h&&g in f?h=typeof f[g]=="function"?h=await f[g]():h=f[g]:t!==null&&!h&&"web"in f&&(h=typeof f.web=="function"?h=await f.web():h=f.web),h),y=(T,w)=>{var Z,oe;if(m){const fe=m==null?void 0:m.methods.find(ge=>w===ge.name);if(fe)return fe.rtype==="promise"?ge=>n.nativePromise(d,w.toString(),ge):(ge,B)=>n.nativeCallback(d,w.toString(),ge,B);if(T)return(Z=T[w])===null||Z===void 0?void 0:Z.bind(T)}else{if(T)return(oe=T[w])===null||oe===void 0?void 0:oe.bind(T);throw new _s(`"${d}" plugin is not implemented on ${g}`,Dn.Unimplemented)}},S=T=>{let w;const Z=(...oe)=>{const fe=$().then(ge=>{const B=y(ge,T);if(B){const J=B(...oe);return w=J==null?void 0:J.remove,J}else throw new _s(`"${d}.${T}()" is not implemented on ${g}`,Dn.Unimplemented)});return T==="addListener"&&(fe.remove=async()=>w()),fe};return Z.toString=()=>`${T.toString()}() { [capacitor code] }`,Object.defineProperty(Z,"name",{value:T,writable:!1,configurable:!1}),Z},C=S("addListener"),L=S("removeListener"),P=(T,w)=>{const Z=C({eventName:T},w),oe=async()=>{const ge=await Z;L({eventName:T,callbackId:ge},w)},fe=new Promise(ge=>Z.then(()=>ge({remove:oe})));return fe.remove=async()=>{console.warn("Using addListener() without 'await' is deprecated."),await oe()},fe},E=new Proxy({},{get(T,w){switch(w){case"$$typeof":return;case"toJSON":return()=>({});case"addListener":return m?P:C;case"removeListener":return L;default:return S(w)}}});return a[d]=E,u.set(d,{name:d,proxy:E,platforms:new Set([...Object.keys(f),...m?[g]:[]])}),E};return n.convertFileSrc||(n.convertFileSrc=d=>d),n.getPlatform=s,n.handleError=l,n.isNativePlatform=r,n.isPluginAvailable=o,n.registerPlugin=c,n.Exception=_s,n.DEBUG=!!n.DEBUG,n.isLoggingEnabled=!!n.isLoggingEnabled,n},Td=e=>e.Capacitor=$d(e),Da=Td(typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),ya=Da.registerPlugin;class hr{constructor(){this.listeners={},this.retainedEventArguments={},this.windowListeners={}}addListener(t,n){let a=!1;this.listeners[t]||(this.listeners[t]=[],a=!0),this.listeners[t].push(n);const r=this.windowListeners[t];r&&!r.registered&&this.addWindowListener(r),a&&this.sendRetainedArgumentsForEvent(t);const o=async()=>this.removeListener(t,n);return Promise.resolve({remove:o})}async removeAllListeners(){this.listeners={};for(const t in this.windowListeners)this.removeWindowListener(this.windowListeners[t]);this.windowListeners={}}notifyListeners(t,n,a){const s=this.listeners[t];if(!s){if(a){let r=this.retainedEventArguments[t];r||(r=[]),r.push(n),this.retainedEventArguments[t]=r}return}s.forEach(r=>r(n))}hasListeners(t){var n;return!!(!((n=this.listeners[t])===null||n===void 0)&&n.length)}registerWindowListener(t,n){this.windowListeners[n]={registered:!1,windowEventName:t,pluginEventName:n,handler:a=>{this.notifyListeners(n,a)}}}unimplemented(t="not implemented"){return new Da.Exception(t,Dn.Unimplemented)}unavailable(t="not available"){return new Da.Exception(t,Dn.Unavailable)}async removeListener(t,n){const a=this.listeners[t];if(!a)return;const s=a.indexOf(n);this.listeners[t].splice(s,1),this.listeners[t].length||this.removeWindowListener(this.windowListeners[t])}addWindowListener(t){window.addEventListener(t.windowEventName,t.handler),t.registered=!0}removeWindowListener(t){t&&(window.removeEventListener(t.windowEventName,t.handler),t.registered=!1)}sendRetainedArgumentsForEvent(t){const n=this.retainedEventArguments[t];n&&(delete this.retainedEventArguments[t],n.forEach(a=>{this.notifyListeners(t,a)}))}}const pi=e=>encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape),vi=e=>e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent);class Pd extends hr{async getCookies(){const t=document.cookie,n={};return t.split(";").forEach(a=>{if(a.length<=0)return;let[s,r]=a.replace(/=/,"CAP_COOKIE").split("CAP_COOKIE");s=vi(s).trim(),r=vi(r).trim(),n[s]=r}),n}async setCookie(t){try{const n=pi(t.key),a=pi(t.value),s=t.expires?`; expires=${t.expires.replace("expires=","")}`:"",r=(t.path||"/").replace("path=",""),o=t.url!=null&&t.url.length>0?`domain=${t.url}`:"";document.cookie=`${n}=${a||""}${s}; path=${r}; ${o};`}catch(n){return Promise.reject(n)}}async deleteCookie(t){try{document.cookie=`${t.key}=; Max-Age=0`}catch(n){return Promise.reject(n)}}async clearCookies(){try{const t=document.cookie.split(";")||[];for(const n of t)document.cookie=n.replace(/^ +/,"").replace(/=.*/,`=;expires=${new Date().toUTCString()};path=/`)}catch(t){return Promise.reject(t)}}async clearAllCookies(){try{await this.clearCookies()}catch(t){return Promise.reject(t)}}}ya("CapacitorCookies",{web:()=>new Pd});const Id=async e=>new Promise((t,n)=>{const a=new FileReader;a.onload=()=>{const s=a.result;t(s.indexOf(",")>=0?s.split(",")[1]:s)},a.onerror=s=>n(s),a.readAsDataURL(e)}),Ld=(e={})=>{const t=Object.keys(e);return Object.keys(e).map(s=>s.toLocaleLowerCase()).reduce((s,r,o)=>(s[r]=e[t[o]],s),{})},Dd=(e,t=!0)=>e?Object.entries(e).reduce((a,s)=>{const[r,o]=s;let i,l;return Array.isArray(o)?(l="",o.forEach(u=>{i=t?encodeURIComponent(u):u,l+=`${r}=${i}&`}),l.slice(0,-1)):(i=t?encodeURIComponent(o):o,l=`${r}=${i}`),`${a}&${l}`},"").substr(1):null,Od=(e,t={})=>{const n=Object.assign({method:e.method||"GET",headers:e.headers},t),s=Ld(e.headers)["content-type"]||"";if(typeof e.data=="string")n.body=e.data;else if(s.includes("application/x-www-form-urlencoded")){const r=new URLSearchParams;for(const[o,i]of Object.entries(e.data||{}))r.set(o,i);n.body=r.toString()}else if(s.includes("multipart/form-data")||e.data instanceof FormData){const r=new FormData;if(e.data instanceof FormData)e.data.forEach((i,l)=>{r.append(l,i)});else for(const i of Object.keys(e.data))r.append(i,e.data[i]);n.body=r;const o=new Headers(n.headers);o.delete("content-type"),n.headers=o}else(s.includes("application/json")||typeof e.data=="object")&&(n.body=JSON.stringify(e.data));return n};class Fd extends hr{async request(t){const n=Od(t,t.webFetchExtra),a=Dd(t.params,t.shouldEncodeUrlParams),s=a?`${t.url}?${a}`:t.url,r=await fetch(s,n),o=r.headers.get("content-type")||"";let{responseType:i="text"}=r.ok?t:{};o.includes("application/json")&&(i="json");let l,u;switch(i){case"arraybuffer":case"blob":u=await r.blob(),l=await Id(u);break;case"json":l=await r.json();break;case"document":case"text":default:l=await r.text()}const c={};return r.headers.forEach((d,f)=>{c[f]=d}),{data:l,headers:c,status:r.status,url:r.url}}async get(t){return this.request(Object.assign(Object.assign({},t),{method:"GET"}))}async post(t){return this.request(Object.assign(Object.assign({},t),{method:"POST"}))}async put(t){return this.request(Object.assign(Object.assign({},t),{method:"PUT"}))}async patch(t){return this.request(Object.assign(Object.assign({},t),{method:"PATCH"}))}async delete(t){return this.request(Object.assign(Object.assign({},t),{method:"DELETE"}))}}ya("CapacitorHttp",{web:()=>new Fd});var gi;(function(e){e.Dark="DARK",e.Light="LIGHT",e.Default="DEFAULT"})(gi||(gi={}));var hi;(function(e){e.StatusBar="StatusBar",e.NavigationBar="NavigationBar"})(hi||(hi={}));class Nd extends hr{async setStyle(){this.unavailable("not available for web")}async setAnimation(){this.unavailable("not available for web")}async show(){this.unavailable("not available for web")}async hide(){this.unavailable("not available for web")}}ya("SystemBars",{web:()=>new Nd});const Hs=ya("App",{web:()=>gr(()=>import("./web-C628H54O.js"),[]).then(e=>new e.AppWeb)});/*! - * vue-router v4.6.4 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */const Cn=typeof document<"u";function ul(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Md(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&ul(e.default)}const xe=Object.assign;function bs(e,t){const n={};for(const a in t){const s=t[a];n[a]=Rt(s)?s.map(e):e(s)}return n}const ia=()=>{},Rt=Array.isArray;function mi(e,t){const n={};for(const a in e)n[a]=a in t?t[a]:e[a];return n}const cl=/#/g,Ud=/&/g,Vd=/\//g,jd=/=/g,Bd=/\?/g,dl=/\+/g,Hd=/%5B/g,Gd=/%5D/g,fl=/%5E/g,qd=/%60/g,pl=/%7B/g,zd=/%7C/g,vl=/%7D/g,Kd=/%20/g;function mr(e){return e==null?"":encodeURI(""+e).replace(zd,"|").replace(Hd,"[").replace(Gd,"]")}function Wd(e){return mr(e).replace(pl,"{").replace(vl,"}").replace(fl,"^")}function Gs(e){return mr(e).replace(dl,"%2B").replace(Kd,"+").replace(cl,"%23").replace(Ud,"%26").replace(qd,"`").replace(pl,"{").replace(vl,"}").replace(fl,"^")}function Jd(e){return Gs(e).replace(jd,"%3D")}function Yd(e){return mr(e).replace(cl,"%23").replace(Bd,"%3F")}function Xd(e){return Yd(e).replace(Vd,"%2F")}function pa(e){if(e==null)return null;try{return decodeURIComponent(""+e)}catch{}return""+e}const Zd=/\/$/,Qd=e=>e.replace(Zd,"");function ws(e,t,n="/"){let a,s={},r="",o="";const i=t.indexOf("#");let l=t.indexOf("?");return l=i>=0&&l>i?-1:l,l>=0&&(a=t.slice(0,l),r=t.slice(l,i>0?i:t.length),s=e(r.slice(1))),i>=0&&(a=a||t.slice(0,i),o=t.slice(i,t.length)),a=af(a??t,n),{fullPath:a+r+o,path:a,query:s,hash:pa(o)}}function ef(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function yi(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function tf(e,t,n){const a=t.matched.length-1,s=n.matched.length-1;return a>-1&&a===s&&On(t.matched[a],n.matched[s])&&gl(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function On(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function gl(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!nf(e[n],t[n]))return!1;return!0}function nf(e,t){return Rt(e)?_i(e,t):Rt(t)?_i(t,e):(e==null?void 0:e.valueOf())===(t==null?void 0:t.valueOf())}function _i(e,t){return Rt(t)?e.length===t.length&&e.every((n,a)=>n===t[a]):e.length===1&&e[0]===t}function af(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),a=e.split("/"),s=a[a.length-1];(s===".."||s===".")&&a.push("");let r=n.length-1,o,i;for(o=0;o1&&r--;else break;return n.slice(0,r).join("/")+"/"+a.slice(o).join("/")}const tn={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};let qs=(function(e){return e.pop="pop",e.push="push",e})({}),Ss=(function(e){return e.back="back",e.forward="forward",e.unknown="",e})({});function sf(e){if(!e)if(Cn){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Qd(e)}const rf=/^[^#]+#/;function of(e,t){return e.replace(rf,"#")+t}function lf(e,t){const n=document.documentElement.getBoundingClientRect(),a=e.getBoundingClientRect();return{behavior:t.behavior,left:a.left-n.left-(t.left||0),top:a.top-n.top-(t.top||0)}}const ts=()=>({left:window.scrollX,top:window.scrollY});function uf(e){let t;if("el"in e){const n=e.el,a=typeof n=="string"&&n.startsWith("#"),s=typeof n=="string"?a?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!s)return;t=lf(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function bi(e,t){return(history.state?history.state.position-t:-1)+e}const zs=new Map;function cf(e,t){zs.set(e,t)}function df(e){const t=zs.get(e);return zs.delete(e),t}function ff(e){return typeof e=="string"||e&&typeof e=="object"}function hl(e){return typeof e=="string"||typeof e=="symbol"}let qe=(function(e){return e[e.MATCHER_NOT_FOUND=1]="MATCHER_NOT_FOUND",e[e.NAVIGATION_GUARD_REDIRECT=2]="NAVIGATION_GUARD_REDIRECT",e[e.NAVIGATION_ABORTED=4]="NAVIGATION_ABORTED",e[e.NAVIGATION_CANCELLED=8]="NAVIGATION_CANCELLED",e[e.NAVIGATION_DUPLICATED=16]="NAVIGATION_DUPLICATED",e})({});const ml=Symbol("");qe.MATCHER_NOT_FOUND+"",qe.NAVIGATION_GUARD_REDIRECT+"",qe.NAVIGATION_ABORTED+"",qe.NAVIGATION_CANCELLED+"",qe.NAVIGATION_DUPLICATED+"";function Fn(e,t){return xe(new Error,{type:e,[ml]:!0},t)}function Ht(e,t){return e instanceof Error&&ml in e&&(t==null||!!(e.type&t))}const pf=["params","query","hash"];function vf(e){if(typeof e=="string")return e;if(e.path!=null)return e.path;const t={};for(const n of pf)n in e&&(t[n]=e[n]);return JSON.stringify(t,null,2)}function gf(e){const t={};if(e===""||e==="?")return t;const n=(e[0]==="?"?e.slice(1):e).split("&");for(let a=0;as&&Gs(s)):[a&&Gs(a)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function hf(e){const t={};for(const n in e){const a=e[n];a!==void 0&&(t[n]=Rt(a)?a.map(s=>s==null?null:""+s):a==null?a:""+a)}return t}const mf=Symbol(""),Si=Symbol(""),ns=Symbol(""),yr=Symbol(""),Ks=Symbol("");function Hn(){let e=[];function t(a){return e.push(a),()=>{const s=e.indexOf(a);s>-1&&e.splice(s,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function rn(e,t,n,a,s,r=o=>o()){const o=a&&(a.enterCallbacks[s]=a.enterCallbacks[s]||[]);return()=>new Promise((i,l)=>{const u=f=>{f===!1?l(Fn(qe.NAVIGATION_ABORTED,{from:n,to:t})):f instanceof Error?l(f):ff(f)?l(Fn(qe.NAVIGATION_GUARD_REDIRECT,{from:t,to:f})):(o&&a.enterCallbacks[s]===o&&typeof f=="function"&&o.push(f),i())},c=r(()=>e.call(a&&a.instances[s],t,n,u));let d=Promise.resolve(c);e.length<3&&(d=d.then(u)),d.catch(f=>l(f))})}function ks(e,t,n,a,s=r=>r()){const r=[];for(const o of e)for(const i in o.components){let l=o.components[i];if(!(t!=="beforeRouteEnter"&&!o.instances[i]))if(ul(l)){const u=(l.__vccOpts||l)[t];u&&r.push(rn(u,n,a,o,i,s))}else{let u=l();r.push(()=>u.then(c=>{if(!c)throw new Error(`Couldn't resolve component "${i}" at "${o.path}"`);const d=Md(c)?c.default:c;o.mods[i]=c,o.components[i]=d;const f=(d.__vccOpts||d)[t];return f&&rn(f,n,a,o,i,s)()}))}}return r}function yf(e,t){const n=[],a=[],s=[],r=Math.max(t.matched.length,e.matched.length);for(let o=0;oOn(u,i))?a.push(i):n.push(i));const l=e.matched[o];l&&(t.matched.find(u=>On(u,l))||s.push(l))}return[n,a,s]}/*! - * vue-router v4.6.4 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */let _f=()=>location.protocol+"//"+location.host;function yl(e,t){const{pathname:n,search:a,hash:s}=t,r=e.indexOf("#");if(r>-1){let o=s.includes(e.slice(r))?e.slice(r).length:1,i=s.slice(o);return i[0]!=="/"&&(i="/"+i),yi(i,"")}return yi(n,e)+a+s}function bf(e,t,n,a){let s=[],r=[],o=null;const i=({state:f})=>{const _=yl(e,location),g=n.value,m=t.value;let h=0;if(f){if(n.value=_,t.value=f,o&&o===g){o=null;return}h=m?f.position-m.position:0}else a(_);s.forEach($=>{$(n.value,g,{delta:h,type:qs.pop,direction:h?h>0?Ss.forward:Ss.back:Ss.unknown})})};function l(){o=n.value}function u(f){s.push(f);const _=()=>{const g=s.indexOf(f);g>-1&&s.splice(g,1)};return r.push(_),_}function c(){if(document.visibilityState==="hidden"){const{history:f}=window;if(!f.state)return;f.replaceState(xe({},f.state,{scroll:ts()}),"")}}function d(){for(const f of r)f();r=[],window.removeEventListener("popstate",i),window.removeEventListener("pagehide",c),document.removeEventListener("visibilitychange",c)}return window.addEventListener("popstate",i),window.addEventListener("pagehide",c),document.addEventListener("visibilitychange",c),{pauseListeners:l,listen:u,destroy:d}}function ki(e,t,n,a=!1,s=!1){return{back:e,current:t,forward:n,replaced:a,position:window.history.length,scroll:s?ts():null}}function wf(e){const{history:t,location:n}=window,a={value:yl(e,n)},s={value:t.state};s.value||r(a.value,{back:null,current:a.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function r(l,u,c){const d=e.indexOf("#"),f=d>-1?(n.host&&document.querySelector("base")?e:e.slice(d))+l:_f()+e+l;try{t[c?"replaceState":"pushState"](u,"",f),s.value=u}catch(_){console.error(_),n[c?"replace":"assign"](f)}}function o(l,u){r(l,xe({},t.state,ki(s.value.back,l,s.value.forward,!0),u,{position:s.value.position}),!0),a.value=l}function i(l,u){const c=xe({},s.value,t.state,{forward:l,scroll:ts()});r(c.current,c,!0),r(l,xe({},ki(a.value,l,null),{position:c.position+1},u),!1),a.value=l}return{location:a,state:s,push:i,replace:o}}function Sf(e){e=sf(e);const t=wf(e),n=bf(e,t.state,t.location,t.replace);function a(r,o=!0){o||n.pauseListeners(),history.go(r)}const s=xe({location:"",base:e,go:a,createHref:of.bind(null,e)},t,n);return Object.defineProperty(s,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(s,"state",{enumerable:!0,get:()=>t.state.value}),s}function kf(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Sf(e)}let gn=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.Group=2]="Group",e})({});var Ye=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.ParamRegExp=2]="ParamRegExp",e[e.ParamRegExpEnd=3]="ParamRegExpEnd",e[e.EscapeNext=4]="EscapeNext",e})(Ye||{});const Af={type:gn.Static,value:""},xf=/[a-zA-Z0-9_]/;function Cf(e){if(!e)return[[]];if(e==="/")return[[Af]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(_){throw new Error(`ERR (${n})/"${u}": ${_}`)}let n=Ye.Static,a=n;const s=[];let r;function o(){r&&s.push(r),r=[]}let i=0,l,u="",c="";function d(){u&&(n===Ye.Static?r.push({type:gn.Static,value:u}):n===Ye.Param||n===Ye.ParamRegExp||n===Ye.ParamRegExpEnd?(r.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),r.push({type:gn.Param,value:u,regexp:c,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),u="")}function f(){u+=l}for(;it.length?t.length===1&&t[0]===ut.Static+ut.Segment?1:-1:0}function _l(e,t){let n=0;const a=e.score,s=t.score;for(;n0&&t[t.length-1]<0}const Pf={strict:!1,end:!0,sensitive:!1};function If(e,t,n){const a=$f(Cf(e.path),n),s=xe(a,{record:e,parent:t,children:[],alias:[]});return t&&!s.record.aliasOf==!t.record.aliasOf&&t.children.push(s),s}function Lf(e,t){const n=[],a=new Map;t=mi(Pf,t);function s(d){return a.get(d)}function r(d,f,_){const g=!_,m=Ei(d);m.aliasOf=_&&_.record;const h=mi(t,d),$=[m];if("alias"in d){const C=typeof d.alias=="string"?[d.alias]:d.alias;for(const L of C)$.push(Ei(xe({},m,{components:_?_.record.components:m.components,path:L,aliasOf:_?_.record:m})))}let y,S;for(const C of $){const{path:L}=C;if(f&&L[0]!=="/"){const P=f.record.path,E=P[P.length-1]==="/"?"":"/";C.path=f.record.path+(L&&E+L)}if(y=If(C,f,h),_?_.alias.push(y):(S=S||y,S!==y&&S.alias.push(y),g&&d.name&&!Ri(y)&&o(d.name)),bl(y)&&l(y),m.children){const P=m.children;for(let E=0;E{o(S)}:ia}function o(d){if(hl(d)){const f=a.get(d);f&&(a.delete(d),n.splice(n.indexOf(f),1),f.children.forEach(o),f.alias.forEach(o))}else{const f=n.indexOf(d);f>-1&&(n.splice(f,1),d.record.name&&a.delete(d.record.name),d.children.forEach(o),d.alias.forEach(o))}}function i(){return n}function l(d){const f=Ff(d,n);n.splice(f,0,d),d.record.name&&!Ri(d)&&a.set(d.record.name,d)}function u(d,f){let _,g={},m,h;if("name"in d&&d.name){if(_=a.get(d.name),!_)throw Fn(qe.MATCHER_NOT_FOUND,{location:d});h=_.record.name,g=xe(Ci(f.params,_.keys.filter(S=>!S.optional).concat(_.parent?_.parent.keys.filter(S=>S.optional):[]).map(S=>S.name)),d.params&&Ci(d.params,_.keys.map(S=>S.name))),m=_.stringify(g)}else if(d.path!=null)m=d.path,_=n.find(S=>S.re.test(m)),_&&(g=_.parse(m),h=_.record.name);else{if(_=f.name?a.get(f.name):n.find(S=>S.re.test(f.path)),!_)throw Fn(qe.MATCHER_NOT_FOUND,{location:d,currentLocation:f});h=_.record.name,g=xe({},f.params,d.params),m=_.stringify(g)}const $=[];let y=_;for(;y;)$.unshift(y.record),y=y.parent;return{name:h,path:m,params:g,matched:$,meta:Of($)}}e.forEach(d=>r(d));function c(){n.length=0,a.clear()}return{addRoute:r,resolve:u,removeRoute:o,clearRoutes:c,getRoutes:i,getRecordMatcher:s}}function Ci(e,t){const n={};for(const a of t)a in e&&(n[a]=e[a]);return n}function Ei(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:Df(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function Df(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const a in e.components)t[a]=typeof n=="object"?n[a]:n;return t}function Ri(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Of(e){return e.reduce((t,n)=>xe(t,n.meta),{})}function Ff(e,t){let n=0,a=t.length;for(;n!==a;){const r=n+a>>1;_l(e,t[r])<0?a=r:n=r+1}const s=Nf(e);return s&&(a=t.lastIndexOf(s,a-1)),a}function Nf(e){let t=e;for(;t=t.parent;)if(bl(t)&&_l(e,t)===0)return t}function bl({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function $i(e){const t=mt(ns),n=mt(yr),a=ee(()=>{const l=v(e.to);return t.resolve(l)}),s=ee(()=>{const{matched:l}=a.value,{length:u}=l,c=l[u-1],d=n.matched;if(!c||!d.length)return-1;const f=d.findIndex(On.bind(null,c));if(f>-1)return f;const _=Ti(l[u-2]);return u>1&&Ti(c)===_&&d[d.length-1].path!==_?d.findIndex(On.bind(null,l[u-2])):f}),r=ee(()=>s.value>-1&&Bf(n.params,a.value.params)),o=ee(()=>s.value>-1&&s.value===n.matched.length-1&&gl(n.params,a.value.params));function i(l={}){if(jf(l)){const u=t[v(e.replace)?"replace":"push"](v(e.to)).catch(ia);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>u),u}return Promise.resolve()}return{route:a,href:ee(()=>a.value.href),isActive:r,isExactActive:o,navigate:i}}function Mf(e){return e.length===1?e[0]:e}const Uf=je({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:$i,setup(e,{slots:t}){const n=Zt($i(e)),{options:a}=mt(ns),s=ee(()=>({[Pi(e.activeClass,a.linkActiveClass,"router-link-active")]:n.isActive,[Pi(e.exactActiveClass,a.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const r=t.default&&Mf(t.default(n));return e.custom?r:U("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},r)}}}),Vf=Uf;function jf(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function Bf(e,t){for(const n in t){const a=t[n],s=e[n];if(typeof a=="string"){if(a!==s)return!1}else if(!Rt(s)||s.length!==a.length||a.some((r,o)=>r.valueOf()!==s[o].valueOf()))return!1}return!0}function Ti(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Pi=(e,t,n)=>e??t??n,Hf=je({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const a=mt(Ks),s=ee(()=>e.route||a.value),r=mt(Si,0),o=ee(()=>{let u=v(r);const{matched:c}=s.value;let d;for(;(d=c[u])&&!d.components;)u++;return u}),i=ee(()=>s.value.matched[o.value]);ta(Si,ee(()=>o.value+1)),ta(mf,i),ta(Ks,s);const l=z();return wt(()=>[l.value,i.value,e.name],([u,c,d],[f,_,g])=>{c&&(c.instances[d]=u,_&&_!==c&&u&&u===f&&(c.leaveGuards.size||(c.leaveGuards=_.leaveGuards),c.updateGuards.size||(c.updateGuards=_.updateGuards))),u&&c&&(!_||!On(c,_)||!f)&&(c.enterCallbacks[d]||[]).forEach(m=>m(u))},{flush:"post"}),()=>{const u=s.value,c=e.name,d=i.value,f=d&&d.components[c];if(!f)return Ii(n.default,{Component:f,route:u});const _=d.props[c],g=_?_===!0?u.params:typeof _=="function"?_(u):_:null,h=U(f,xe({},g,t,{onVnodeUnmounted:$=>{$.component.isUnmounted&&(d.instances[c]=null)},ref:l}));return Ii(n.default,{Component:h,route:u})||h}}});function Ii(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const wl=Hf;function Gf(e){const t=Lf(e.routes,e),n=e.parseQuery||gf,a=e.stringifyQuery||wi,s=e.history,r=Hn(),o=Hn(),i=Hn(),l=Su(tn);let u=tn;Cn&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=bs.bind(null,M=>""+M),d=bs.bind(null,Xd),f=bs.bind(null,pa);function _(M,se){let H,F;return hl(M)?(H=t.getRecordMatcher(M),F=se):F=M,t.addRoute(F,H)}function g(M){const se=t.getRecordMatcher(M);se&&t.removeRoute(se)}function m(){return t.getRoutes().map(M=>M.record)}function h(M){return!!t.getRecordMatcher(M)}function $(M,se){if(se=xe({},se||l.value),typeof M=="string"){const A=ws(n,M,se.path),j=t.resolve({path:A.path},se),W=s.createHref(A.fullPath);return xe(A,j,{params:f(j.params),hash:pa(A.hash),redirectedFrom:void 0,href:W})}let H;if(M.path!=null)H=xe({},M,{path:ws(n,M.path,se.path).path});else{const A=xe({},M.params);for(const j in A)A[j]==null&&delete A[j];H=xe({},M,{params:d(A)}),se.params=d(se.params)}const F=t.resolve(H,se),V=M.hash||"";F.params=c(f(F.params));const p=ef(a,xe({},M,{hash:Wd(V),path:F.path})),b=s.createHref(p);return xe({fullPath:p,hash:V,query:a===wi?hf(M.query):M.query||{}},F,{redirectedFrom:void 0,href:b})}function y(M){return typeof M=="string"?ws(n,M,l.value.path):xe({},M)}function S(M,se){if(u!==M)return Fn(qe.NAVIGATION_CANCELLED,{from:se,to:M})}function C(M){return E(M)}function L(M){return C(xe(y(M),{replace:!0}))}function P(M,se){const H=M.matched[M.matched.length-1];if(H&&H.redirect){const{redirect:F}=H;let V=typeof F=="function"?F(M,se):F;return typeof V=="string"&&(V=V.includes("?")||V.includes("#")?V=y(V):{path:V},V.params={}),xe({query:M.query,hash:M.hash,params:V.path!=null?{}:M.params},V)}}function E(M,se){const H=u=$(M),F=l.value,V=M.state,p=M.force,b=M.replace===!0,A=P(H,F);if(A)return E(xe(y(A),{state:typeof A=="object"?xe({},V,A.state):V,force:p,replace:b}),se||H);const j=H;j.redirectedFrom=se;let W;return!p&&tf(a,F,H)&&(W=Fn(qe.NAVIGATION_DUPLICATED,{to:j,from:F}),Pe(F,F,!0,!1)),(W?Promise.resolve(W):Z(j,F)).catch(q=>Ht(q)?Ht(q,qe.NAVIGATION_GUARD_REDIRECT)?q:ke(q):te(q,j,F)).then(q=>{if(q){if(Ht(q,qe.NAVIGATION_GUARD_REDIRECT))return E(xe({replace:b},y(q.to),{state:typeof q.to=="object"?xe({},V,q.to.state):V,force:p}),se||j)}else q=fe(j,F,!0,b,V);return oe(j,F,q),q})}function T(M,se){const H=S(M,se);return H?Promise.reject(H):Promise.resolve()}function w(M){const se=Ue.values().next().value;return se&&typeof se.runWithContext=="function"?se.runWithContext(M):M()}function Z(M,se){let H;const[F,V,p]=yf(M,se);H=ks(F.reverse(),"beforeRouteLeave",M,se);for(const A of F)A.leaveGuards.forEach(j=>{H.push(rn(j,M,se))});const b=T.bind(null,M,se);return H.push(b),Oe(H).then(()=>{H=[];for(const A of r.list())H.push(rn(A,M,se));return H.push(b),Oe(H)}).then(()=>{H=ks(V,"beforeRouteUpdate",M,se);for(const A of V)A.updateGuards.forEach(j=>{H.push(rn(j,M,se))});return H.push(b),Oe(H)}).then(()=>{H=[];for(const A of p)if(A.beforeEnter)if(Rt(A.beforeEnter))for(const j of A.beforeEnter)H.push(rn(j,M,se));else H.push(rn(A.beforeEnter,M,se));return H.push(b),Oe(H)}).then(()=>(M.matched.forEach(A=>A.enterCallbacks={}),H=ks(p,"beforeRouteEnter",M,se,w),H.push(b),Oe(H))).then(()=>{H=[];for(const A of o.list())H.push(rn(A,M,se));return H.push(b),Oe(H)}).catch(A=>Ht(A,qe.NAVIGATION_CANCELLED)?A:Promise.reject(A))}function oe(M,se,H){i.list().forEach(F=>w(()=>F(M,se,H)))}function fe(M,se,H,F,V){const p=S(M,se);if(p)return p;const b=se===tn,A=Cn?history.state:{};H&&(F||b?s.replace(M.fullPath,xe({scroll:b&&A&&A.scroll},V)):s.push(M.fullPath,V)),l.value=M,Pe(M,se,H,b),ke()}let ge;function B(){ge||(ge=s.listen((M,se,H)=>{if(!De.listening)return;const F=$(M),V=P(F,De.currentRoute.value);if(V){E(xe(V,{replace:!0,force:!0}),F).catch(ia);return}u=F;const p=l.value;Cn&&cf(bi(p.fullPath,H.delta),ts()),Z(F,p).catch(b=>Ht(b,qe.NAVIGATION_ABORTED|qe.NAVIGATION_CANCELLED)?b:Ht(b,qe.NAVIGATION_GUARD_REDIRECT)?(E(xe(y(b.to),{force:!0}),F).then(A=>{Ht(A,qe.NAVIGATION_ABORTED|qe.NAVIGATION_DUPLICATED)&&!H.delta&&H.type===qs.pop&&s.go(-1,!1)}).catch(ia),Promise.reject()):(H.delta&&s.go(-H.delta,!1),te(b,F,p))).then(b=>{b=b||fe(F,p,!1),b&&(H.delta&&!Ht(b,qe.NAVIGATION_CANCELLED)?s.go(-H.delta,!1):H.type===qs.pop&&Ht(b,qe.NAVIGATION_ABORTED|qe.NAVIGATION_DUPLICATED)&&s.go(-1,!1)),oe(F,p,b)}).catch(ia)}))}let J=Hn(),Q=Hn(),Y;function te(M,se,H){ke(M);const F=Q.list();return F.length?F.forEach(V=>V(M,se,H)):console.error(M),Promise.reject(M)}function ve(){return Y&&l.value!==tn?Promise.resolve():new Promise((M,se)=>{J.add([M,se])})}function ke(M){return Y||(Y=!M,B(),J.list().forEach(([se,H])=>M?H(M):se()),J.reset()),M}function Pe(M,se,H,F){const{scrollBehavior:V}=e;if(!Cn||!V)return Promise.resolve();const p=!H&&df(bi(M.fullPath,0))||(F||!H)&&history.state&&history.state.scroll||null;return _n().then(()=>V(M,se,p)).then(b=>b&&uf(b)).catch(b=>te(b,M,se))}const be=M=>s.go(M);let Ge;const Ue=new Set,De={currentRoute:l,listening:!0,addRoute:_,removeRoute:g,clearRoutes:t.clearRoutes,hasRoute:h,getRoutes:m,resolve:$,options:e,push:C,replace:L,go:be,back:()=>be(-1),forward:()=>be(1),beforeEach:r.add,beforeResolve:o.add,afterEach:i.add,onError:Q.add,isReady:ve,install(M){M.component("RouterLink",Vf),M.component("RouterView",wl),M.config.globalProperties.$router=De,Object.defineProperty(M.config.globalProperties,"$route",{enumerable:!0,get:()=>v(l)}),Cn&&!Ge&&l.value===tn&&(Ge=!0,C(s.location).catch(F=>{}));const se={};for(const F in tn)Object.defineProperty(se,F,{get:()=>l.value[F],enumerable:!0});M.provide(ns,De),M.provide(yr,bo(se)),M.provide(Ks,l);const H=M.unmount;Ue.add(M),M.unmount=function(){Ue.delete(M),Ue.size<1&&(u=tn,ge&&ge(),ge=null,l.value=tn,Ge=!1,Y=!1),H()}}};function Oe(M){return M.reduce((se,H)=>se.then(()=>w(H)),Promise.resolve())}return De}function en(){return mt(ns)}function as(e){return mt(yr)}var qf={},zf=new Set(["primary","secondary","accent","success","warning","danger","error","info"]);function Re(...e){return e.flatMap(t=>t?Array.isArray(t)?t:typeof t=="object"?Object.entries(t).filter(([,n])=>n).map(([n])=>n):[t]:[]).filter(Boolean).join(" ")}function Mn(e,t="primary"){return zf.has(e)?e:t}function We(e,t=""){if(!e)return null;const n=e.includes("ph ")||e.startsWith("ph-");n||typeof process<"u"&&qf&&console.warn(`[gnexus-ui-kit] Icon "${e}" is missing the required "ph-" prefix. Use "ph-${e}" instead.`);const a=n?e:`ph-${e}`;return U("i",{class:Re("ph",a,t),"aria-hidden":"true"})}function ss(e){const t=e.target;return t.type==="checkbox"?t.checked:t.value}var Kf=["a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","[tabindex]:not([tabindex='-1'])"].join(",");function Wf(e,t){if(e.key!=="Tab"||!t)return;const n=[...t.querySelectorAll(Kf)].filter(r=>!r.hasAttribute("disabled")&&r.offsetParent!==null);if(!n.length){e.preventDefault(),t.focus();return}const a=n[0],s=n[n.length-1];e.shiftKey&&document.activeElement===a?(e.preventDefault(),s.focus()):!e.shiftKey&&document.activeElement===s&&(e.preventDefault(),a.focus())}var Jf=je({name:"GnActionCard",props:{kicker:{type:String,default:""},title:{type:String,required:!0},text:{type:String,default:""}},setup(e,{slots:t}){return()=>{var n,a,s;return U("article",{class:"card action-card"},[U("div",{class:"card-content"},[(e.kicker||t.kicker)&&U("span",{class:"action-card-kicker"},((n=t.kicker)==null?void 0:n.call(t))||e.kicker),U("h3",{class:"action-card-title"},((a=t.title)==null?void 0:a.call(t))||e.title),(e.text||t.default)&&U("p",{class:"action-card-text"},((s=t.default)==null?void 0:s.call(t))||e.text),t.actions&&U("div",{class:"action-card-actions"},t.actions())])])}}}),Ze=je({name:"GnAlert",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},role:{type:String,default:"status"}},setup(e,{attrs:t,slots:n}){return()=>{var a;const s=Mn(e.variant);return U("div",{...t,role:e.role,class:Re("alert",`alert-${s}`,t.class)},(a=n.default)==null?void 0:a.call(n))}}}),Yf=je({name:"GnAvatar",inheritAttrs:!1,props:{src:{type:String,default:""},alt:{type:String,default:""},initials:{type:String,default:""},icon:{type:String,default:""},size:{type:String,default:"md"},variant:{type:String,default:"primary"},outline:{type:Boolean,default:!1},status:{type:String,default:""}},setup(e,{attrs:t}){return()=>{const n=Mn(e.variant);return U("span",{...t,class:Re("avatar",`avatar-${n}`,{"avatar-sm":e.size==="sm","avatar-lg":e.size==="lg","avatar-outline":e.outline,"is-online":e.status==="online","is-busy":e.status==="busy","is-offline":e.status==="offline"},t.class)},[e.src?U("img",{src:e.src,alt:e.alt}):We(e.icon)||e.initials,e.status&&U("span",{class:"avatar-status","aria-hidden":"true"})])}}}),_e=je({name:"GnBadge",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},outline:{type:Boolean,default:!1}},setup(e,{attrs:t,slots:n}){return()=>{var a;const s=Mn(e.variant);return U("span",{...t,class:Re("badge",e.outline&&s==="primary"?"badge-primary-outline":`badge-${s}`,t.class)},(a=n.default)==null?void 0:a.call(n))}}}),de=je({name:"GnButton",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},size:{type:String,default:"md"},icon:{type:String,default:""},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},type:{type:String,default:"button"}},setup(e,{attrs:t,slots:n}){return()=>{var a;const s=!!(e.icon||e.loading),r=Mn(e.variant);return U("button",{...t,type:e.type,disabled:e.disabled||e.loading,class:Re("btn",`btn-${r}`,{"btn-small":e.size==="sm","btn-large":e.size==="lg","with-icon":s,"loading-state":e.loading},t.class)},[e.loading?We("ph-bold ph-spinner"):We(e.icon),(a=n.default)==null?void 0:a.call(n)])}}}),Li=je({name:"GnChip",inheritAttrs:!1,props:{variant:{type:String,default:""},icon:{type:String,default:""},selected:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},removable:{type:Boolean,default:!1},clickable:{type:Boolean,default:!1}},emits:["remove"],setup(e,{attrs:t,emit:n,slots:a}){return()=>{var s,r,o,i;const l=e.clickable?"button":"span",u=e.variant?Mn(e.variant):"",c=(o=(r=(s=a.default)==null?void 0:s.call(a))==null?void 0:r[0])==null?void 0:o.children;return U(l,{...t,type:l==="button"?"button":void 0,disabled:l==="button"?e.disabled:void 0,"aria-pressed":l==="button"?String(e.selected):void 0,class:Re("chip",u&&`chip-${u}`,{"chip-selected":e.selected,"chip-disabled":e.disabled},t.class)},[We(e.icon),(i=a.default)==null?void 0:i.call(a),e.removable&&U("button",{class:"chip-remove",type:"button","aria-label":c?`Remove ${c}`:"Remove",onClick:d=>{d.stopPropagation(),n("remove")}},[We("ph-x")])])}}}),Xf=0,tt=je({name:"GnModal",props:{open:{type:Boolean,default:!1},title:{type:String,default:""},closeOnBackdrop:{type:Boolean,default:!0}},emits:["update:open","close"],setup(e,{emit:t,slots:n}){const a=`gn-modal-title-${++Xf}`,s=z(null),r=z(!1),o=z(!1);let i=null,l=null;const u=()=>{t("update:open",!1),t("close")},c=f=>{f.key==="Escape"?(f.preventDefault(),u()):Wf(f,s.value)},d=()=>{_n(()=>{var f;(f=s.value)==null||f.focus()})};return wt(()=>e.open,f=>{var _;f?(o.value=!0,r.value=!0,_n(()=>{requestAnimationFrame(()=>{o.value=!1})}),i=document.activeElement,document.addEventListener("keydown",c),d()):(o.value=!0,document.removeEventListener("keydown",c),(_=i==null?void 0:i.focus)==null||_.call(i),i=null,l=window.setTimeout(()=>{r.value=!1,o.value=!1},300))},{flush:"post"}),Wa(()=>{document.removeEventListener("keydown",c),window.clearTimeout(l)}),()=>{var f,_,g;return r.value?U(Hu,{to:"body"},[U("div",{class:Re("modal",o.value?"a-hide":"a-show"),"aria-hidden":"false"},[U("div",{class:"modal-backdrop",onClick:()=>e.closeOnBackdrop&&u()}),U("div",{ref:s,class:"modal-dialog",role:"dialog","aria-modal":"true","aria-labelledby":a,tabindex:"-1"},[U("header",{class:"modal-header"},[U("h4",{class:"modal-title",id:a},((f=n.title)==null?void 0:f.call(n))||e.title),U("button",{class:"btn-icon modal-close",type:"button","aria-label":"Close",onClick:u},[We("ph-x")])]),U("div",{class:"modal-panel"},[U("div",{class:"modal-body"},(_=n.default)==null?void 0:_.call(n)),(n.footer||n.actions)&&U("footer",{class:"modal-footer"},[(g=n.footer)==null?void 0:g.call(n),n.actions&&U("div",{class:"actions"},n.actions({close:u}))])])])])]):null}}}),Zf=je({name:"GnConfirmDialog",props:{open:{type:Boolean,default:!1},title:{type:String,default:"Requires confirmation"},message:{type:String,default:""},confirmText:{type:String,default:"YES"},cancelText:{type:String,default:"NO"},confirmVariant:{type:String,default:"warning"}},emits:["update:open","confirm","cancel"],setup(e,{emit:t,slots:n}){const a=()=>t("update:open",!1),s=()=>{t("cancel"),a()},r=()=>{t("confirm"),a()};return()=>U(tt,{open:e.open,title:e.title,"onUpdate:open":o=>t("update:open",o)},{default:()=>{var o;return((o=n.default)==null?void 0:o.call(n))||U("p",{},e.message)},actions:()=>[U(de,{variant:"primary",onClick:s},()=>e.cancelText),U(de,{variant:e.confirmVariant,onClick:r},()=>e.confirmText)]})}}),Qf=je({name:"GnCopyButton",props:{text:{type:String,required:!0},icon:{type:String,default:"ph-copy"},successIcon:{type:String,default:"ph-check"},duration:{type:Number,default:3e3},label:{type:String,default:"Copy"},size:{type:String,default:null}},emits:["copy"],setup(e,{emit:t}){const n=z(!1);let a=null;const s=async()=>{try{await navigator.clipboard.writeText(e.text)}catch{const o=document.createElement("textarea");o.value=e.text,o.style.position="fixed",o.style.opacity="0",document.body.appendChild(o),o.select(),document.execCommand("copy"),document.body.removeChild(o)}n.value=!0,window.clearTimeout(a),a=window.setTimeout(()=>{n.value=!1},e.duration),t("copy",e.text)};return()=>U("button",{class:Re("btn-icon",{"btn-icon-sm":e.size==="sm"}),type:"button","aria-label":e.label,onClick:s},[We(n.value?e.successIcon:e.icon)])}}),ep=je({name:"GnDropdown",props:{label:{type:String,default:"Actions"},icon:{type:String,default:"ph-dots-three-outline"},variant:{type:String,default:"secondary"},items:{type:Array,default:()=>[]}},emits:["select"],setup(e,{emit:t,slots:n}){const a=z(!1),s=z(null),r=()=>{a.value=!1,document.removeEventListener("click",o),document.removeEventListener("keydown",i)},o=c=>{s.value&&!s.value.contains(c.target)&&r()},i=c=>{c.key==="Escape"&&(c.preventDefault(),r())},l=()=>{a.value=!a.value,a.value?(setTimeout(()=>document.addEventListener("click",o),0),document.addEventListener("keydown",i)):r()},u=c=>{var d;c.disabled||((d=c.onSelect)==null||d.call(c,c),t("select",c),r())};return Wa(r),()=>{var c,d;return U("div",{ref:s,class:Re("dropdown",{"is-open":a.value})},[((c=n.trigger)==null?void 0:c.call(n,{open:a.value,toggle:l}))||U(de,{variant:e.variant,icon:e.icon,"aria-expanded":a.value?"true":"false",onClick:l},()=>e.label),U("div",{class:"dropdown-menu",role:"menu"},((d=n.default)==null?void 0:d.call(n,{close:r}))||e.items.map(f=>U("button",{class:Re("dropdown-item",f.danger&&"dropdown-item-danger"),type:"button",role:"menuitem",disabled:f.disabled,onClick:()=>u(f)},[We(f.icon),f.label])))])}}}),tp=je({name:"GnEmptyState",inheritAttrs:!1,props:{title:{type:String,required:!0},text:{type:String,default:""},icon:{type:String,default:"ph-package"},variant:{type:String,default:""}},setup(e,{attrs:t,slots:n}){return()=>{var a,s;return U("div",{...t,class:Re("empty-state",e.variant&&`empty-state-${e.variant}`,t.class)},[U("div",{class:"empty-state-icon"},[We(e.icon)]),U("h3",{class:"empty-state-title"},((a=n.title)==null?void 0:a.call(n))||e.title),(e.text||n.default)&&U("p",{class:"empty-state-text"},((s=n.default)==null?void 0:s.call(n))||e.text),n.actions&&U("div",{class:"empty-state-actions"},n.actions())])}}}),yt=je({name:"GnInput",inheritAttrs:!1,props:{modelValue:{type:[String,Number],default:""},label:{type:String,default:""},type:{type:String,default:"text"},icon:{type:String,default:""},state:{type:String,default:""},help:{type:String,default:""},bare:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n}){return()=>{const a=U("input",{...t,type:e.type,value:e.modelValue,class:Re(e.bare?"":"input",t.class),onInput:s=>n("update:modelValue",ss(s))});return e.bare?a:U("div",{class:"form-group"},[U("label",{class:Re("label",e.state)},[e.label,We(e.icon),a]),e.help&&U("div",{class:Re("input-info",e.state==="error"&&"error")},e.help)])}}}),Sl=je({name:"GnLoader",inheritAttrs:!1,props:{circle:{type:Boolean,default:!1},label:{type:String,default:"Loading"}},setup(e,{attrs:t}){return()=>e.circle?U("div",{...t,class:Re("circle-loader",t.class)},[We("ph-bold ph-spinner normalize"),e.label]):U("div",{...t,class:Re("loader",t.class),role:"status","aria-label":e.label})}});function np(){var e;const t=Za();return((e=t==null?void 0:t.proxy)==null?void 0:e.$router)||null}function ap(){var e;const t=Za();return((e=t==null?void 0:t.proxy)==null?void 0:e.$route)||null}function sp(e,t,n="prefix"){if(!e)return!1;const a=e.value||e;return typeof t=="string"?n==="exact"?a.path===t:a.path===t||a.path.startsWith(t+"/"):t.path?n==="exact"?a.path===t.path:a.path===t.path||a.path.startsWith(t.path+"/"):t.name?a.name===t.name:!1}var rp=je({name:"GnNavList",inheritAttrs:!1,props:{items:{type:Array,default:()=>[]},activeMatch:{type:String,default:"prefix"}},emits:["select"],setup(e,{attrs:t,emit:n,slots:a}){const s=np(),r=ap(),o=!!(s&&r),i=u=>{if(u){if(typeof u=="string")return u;if(u.path)return u.path}},l=ee(()=>e.items.map(u=>{const c=!!u.to,d=c?o?s.resolve(u.to).href:i(u.to):u.href,f=c&&o?sp(r,u.to,e.activeMatch):!!u.active;return{...u,resolvedHref:d,isActive:f,hasTo:c}}));return()=>U("ul",{...t,class:Re("list list-nav",t.class)},l.value.map(u=>{var c,d;return U("li",{class:Re("list-item",{"list-item-active":u.isActive})},[U(u.resolvedHref?"a":"button",{class:"list-action",href:u.resolvedHref,type:u.resolvedHref?void 0:"button",onClick:f=>{var _;u.hasTo&&o&&(f.preventDefault(),s.push(u.to)),(_=u.onSelect)==null||_.call(u,u,f),n("select",u)}},[U("span",{class:"list-label"},[We(u.icon),((c=a.label)==null?void 0:c.call(a,{item:u}))||u.label]),(u.meta||a.meta)&&U("span",{class:"list-meta"},((d=a.meta)==null?void 0:d.call(a,{item:u}))||u.meta)])])}))}}),ip=0,op=je({name:"GnNavigationShell",props:{brand:{type:String,default:"GNexus UI Kit"},logoSrc:{type:String,default:"/assets/imgs/gnexus-mark.svg"},current:{type:String,default:""},title:{type:String,default:"Sections"},subtitle:{type:String,default:"Navigation"},footerLeft:{type:String,default:""},footerRight:{type:String,default:""},items:{type:Array,default:()=>[]},activeMatch:{type:String,default:"prefix"}},emits:["select"],setup(e,{emit:t,slots:n}){const a=z(!1),s=`gn-nav-drawer-${++ip}`,r=z(null);let o=null;const i=()=>{a.value=!1},l=()=>{a.value=!a.value},u=c=>{c.key==="Escape"&&(c.preventDefault(),i())};return wt(a,c=>{var d;c?(o=document.activeElement,document.body.classList.add("nav-drawer-open"),document.addEventListener("keydown",u),_n(()=>{var f;return(f=r.value)==null?void 0:f.focus()})):(document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u),(d=o==null?void 0:o.focus)==null||d.call(o),o=null)}),Wa(()=>{document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u)}),()=>{var c,d,f,_,g,m,h;return[U("header",{class:"nav-topbar"},[U("button",{class:"nav-topbar-toggle",type:"button","aria-controls":s,"aria-expanded":a.value?"true":"false",onClick:l},[We("ph-sidebar-simple"),U("span",{},"Menu")]),U("div",{class:"nav-topbar-brand"},[e.logoSrc&&U("img",{src:e.logoSrc,alt:"","aria-hidden":"true"}),U("span",{},((c=n.brand)==null?void 0:c.call(n))||e.brand)]),U("div",{class:"nav-topbar-current"},((d=n.current)==null?void 0:d.call(n))||e.current)]),U("div",{class:"nav-drawer-backdrop",onClick:i}),U("aside",{ref:r,class:["nav-drawer",{"is-open":a.value}],id:s,"aria-label":"Navigation","aria-hidden":a.value?"false":"true",tabindex:"-1"},[U("header",{class:"nav-drawer-header"},[U("div",{},[U("div",{class:"nav-drawer-title"},((f=n.title)==null?void 0:f.call(n))||e.title),U("div",{class:"nav-drawer-subtitle"},((_=n.subtitle)==null?void 0:_.call(n))||e.subtitle)]),U("button",{class:"nav-drawer-close",type:"button","aria-label":"Close navigation",onClick:i},[We("ph-x")])]),U("nav",{class:"nav-drawer-body"},[((g=n.default)==null?void 0:g.call(n,{close:i}))||U(rp,{items:e.items,activeMatch:e.activeMatch,onSelect:$=>{t("select",$),i()}})]),(n.footer||e.footerLeft||e.footerRight)&&U("footer",{class:"nav-drawer-footer"},((m=n.footer)==null?void 0:m.call(n))||[U("span",{},e.footerLeft),U("span",{},e.footerRight)])]),(h=n.content)==null?void 0:h.call(n)]}}}),$t=je({name:"GnPageHeader",inheritAttrs:!1,props:{title:{type:String,required:!0},subtitle:{type:String,default:""},kicker:{type:String,default:""},compact:{type:Boolean,default:!1},accent:{type:Boolean,default:!1}},setup(e,{attrs:t,slots:n}){return()=>{var a,s,r;return U("header",{...t,class:Re("page-header",{"page-header-compact":e.compact,"page-header-accent":e.accent},t.class)},[U("div",{class:"page-header-content"},[(e.kicker||n.kicker)&&U("div",{class:"page-header-kicker"},((a=n.kicker)==null?void 0:a.call(n))||e.kicker),U("h1",{class:"page-header-title"},((s=n.title)==null?void 0:s.call(n))||e.title),(e.subtitle||n.subtitle)&&U("p",{class:"page-header-subtitle"},((r=n.subtitle)==null?void 0:r.call(n))||e.subtitle),n.meta&&U("div",{class:"page-header-meta"},n.meta())]),n.actions&&U("div",{class:"page-header-actions"},n.actions())])}}}),lp=je({name:"GnRange",inheritAttrs:!1,props:{modelValue:{type:[Number,String],default:0},label:{type:String,default:""},min:{type:[Number,String],default:0},max:{type:[Number,String],default:100},step:{type:[Number,String],default:1}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n}){return()=>U("div",{class:"range"},[U("label",{class:"label"},[e.label,U("input",{...t,type:"range",value:e.modelValue,min:e.min,max:e.max,step:e.step,onInput:a=>n("update:modelValue",ss(a))})])])}}),rs=je({name:"GnSelect",inheritAttrs:!1,props:{modelValue:{type:[String,Number],default:""},label:{type:String,default:""},icon:{type:String,default:""},state:{type:String,default:""},help:{type:String,default:""},options:{type:Array,default:()=>[]}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n,slots:a}){const s=()=>e.options.map(r=>{const o=typeof r=="object"?r.value:r,i=typeof r=="object"?r.label:r;return U("option",{value:o},i)});return()=>{var r;return U("div",{class:"form-group"},[U("label",{class:Re("label",e.state)},[e.label,We(e.icon),U("div",{class:"select-wrap"},[U("select",{...t,value:e.modelValue,class:Re("input select",t.class),onChange:o=>n("update:modelValue",ss(o))},((r=a.default)==null?void 0:r.call(a))||s())])]),e.help&&U("div",{class:Re("input-info",e.state==="error"&&"error")},e.help)])}}}),kl=je({name:"GnSwitch",inheritAttrs:!1,props:{modelValue:{type:Boolean,default:!1},label:{type:String,default:""},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n,slots:a}){return()=>{var s;return U("label",{class:Re("switch",t.class)},[U("input",{...t,type:"checkbox",checked:e.modelValue,disabled:e.disabled,onChange:r=>n("update:modelValue",r.target.checked)}),U("span",{class:"switch-control","aria-hidden":"true"}),U("span",{class:"switch-label"},((s=a.default)==null?void 0:s.call(a))||e.label)])}}}),Nn=je({name:"GnTable",props:{columns:{type:Array,required:!0},rows:{type:Array,default:()=>[]},caption:{type:String,default:""},emptyText:{type:String,default:"Empty"}},setup(e,{attrs:t,slots:n}){return()=>{var a;return U("div",{class:"table-wrapper"},[U("table",{class:Re("table data-list",{"table-empty":!e.rows.length},t.class)},[e.caption&&U("caption",{class:"table-caption"},e.caption),U("thead",{class:"table-head"},[U("tr",{class:"table-row"},e.columns.map(s=>U("th",{scope:"col"},s.label)))]),U("tbody",{class:"table-body"},e.rows.length?e.rows.map(s=>U("tr",{class:"table-row"},e.columns.map(r=>{var o;const i=`cell-${r.key}`;return U("td",{},((o=n[i])==null?void 0:o.call(n,{row:s,column:r,value:s[r.key]}))||s[r.key])}))):U("tr",{},[U("td",{class:"is-empty",colspan:e.columns.length},((a=n.empty)==null?void 0:a.call(n))||e.emptyText)]))])])}}}),up=je({name:"GnTextarea",inheritAttrs:!1,props:{modelValue:{type:String,default:""},label:{type:String,default:""},icon:{type:String,default:""},state:{type:String,default:""},help:{type:String,default:""}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n}){return()=>U("div",{class:"form-group"},[U("label",{class:Re("label",e.state)},[e.label,We(e.icon),U("textarea",{...t,value:e.modelValue,class:Re("input",t.class),onInput:a=>n("update:modelValue",ss(a))})]),e.help&&U("div",{class:Re("input-info",e.state==="error"&&"error")},e.help)])}}),Al=Symbol("gnexus-ui-kit-toast"),Di={info:"ph-info",success:"ph-check-circle",warning:"ph-warning",danger:"ph-warning-octagon",error:"ph-warning-octagon",primary:"ph-info",secondary:"ph-info"},cp=je({name:"GnToastProvider",props:{lifetime:{type:Number,default:4e3}},setup(e,{slots:t,expose:n}){const a=z(null),s=z(!1),r=z(!1);let o=null,i=null,l=null;const u=z(100),c=()=>{window.clearTimeout(i),window.clearInterval(l),s.value=!0,r.value=!1,i=window.setTimeout(()=>{a.value=null,s.value=!1,u.value=100,window.clearTimeout(o),o=null},300)},d=()=>{window.clearTimeout(i),window.clearTimeout(o),window.clearInterval(l),s.value=!1,r.value=!1,u.value=100,a.value=null},f=m=>{window.clearTimeout(i),window.clearInterval(l),s.value=!1,r.value=!1,u.value=100;const h=Mn(m.variant||m.type||"info","info"),$=m.lifetime!==void 0?m.lifetime:e.lifetime;if(a.value={id:Date.now(),variant:h==="error"?"danger":h,title:m.title||"",text:m.text||m.message||"",icon:m.icon||Di[h]||Di.info,lifetime:$},window.clearTimeout(o),$!==0){const S=$/100;u.value=100,l=window.setInterval(()=>{u.value-=100/S,u.value<=0&&window.clearInterval(l)},100),o=window.setTimeout(c,$)}_n(()=>{requestAnimationFrame(()=>{r.value=!0})})},_={show:f,close:d,info:m=>f({...m,variant:"info"}),success:m=>f({...m,variant:"success"}),warning:m=>f({...m,variant:"warning"}),danger:m=>f({...m,variant:"danger"}),error:m=>f({...m,variant:"danger"})};ta(Al,_),n(_);const g=()=>s.value?"a-hide":r.value?"a-show":"";return()=>{var m;return[(m=t.default)==null?void 0:m.call(t),a.value&&U("div",{class:Re("toast",g(),`toast-${a.value.variant}`),role:"alert"},[U("div",{class:"toast-content"},[U("div",{class:"toast-header"},[We(a.value.icon),a.value.title]),a.value.text&&U("p",{class:"toast-text"},a.value.text)]),U("button",{class:"btn-icon toast-close",type:"button","aria-label":"Close",onClick:c},[We("ph-x")]),a.value.lifetime!==0&&U("div",{class:"toast-progress"},[U("div",{class:"toast-progress-bar",style:{transform:`scaleX(${Math.max(0,u.value/100)})`}})])])]}}}),dp=je({name:"GnUserCard",props:{name:{type:String,required:!0},email:{type:String,default:""},role:{type:String,default:""},avatar:{type:Object,default:()=>({})},href:{type:String,default:""},compact:{type:Boolean,default:!1},actions:{type:Array,default:()=>[]}},setup(e,{slots:t}){const n=()=>{var r;return((r=t.avatar)==null?void 0:r.call(t))||U(Yf,{...e.avatar,size:e.compact?"sm":"md"})},a=()=>U("span",{class:"identity"},[n(),U("span",{class:"identity-content"},[U("span",{class:"identity-title"},e.name),e.email&&U("span",{class:"identity-meta"},e.email)])]),s=()=>t.actions?t.actions():e.actions.length?U("div",{class:"user-card-actions"},e.actions.map(r=>{if(e.compact)return U("button",{class:"btn-icon",type:"button","aria-label":r.label,onClick:r.onClick},[We(r.icon)]);const o=!!r.icon,i=Re("btn","btn-small",{[`btn-${r.variant}`]:r.variant,"btn-secondary":!r.variant,"with-icon":o});return U("button",{class:i,type:"button",onClick:r.onClick},[o&&We(r.icon),r.label])})):null;return()=>{const r=Re("card","user-card",{"user-card-compact":e.compact}),o=[];e.href?o.push(U("a",{class:"profile-identity",href:e.href,target:"_blank",rel:"noopener noreferrer"},[a()])):o.push(a()),!e.compact&&e.role&&o.push(U("span",{class:"user-card-role"},e.role)),t.default&&!e.compact&&o.push(U("div",{class:"user-card-extra"},t.default()));const i=s();return i&&o.push(i),U("article",{class:r},[U("div",{class:"user-card-body"},o)])}}});function wn(){const e=mt(Al,null);if(e)return e;const t=()=>{throw new Error("GNexus UI Kit: useToast() requires near the app root.")};return{show:t,info:t,success:t,warning:t,danger:t,error:t,close:t}}const As=ya("Preferences",{web:()=>gr(()=>import("./web-CFVOcvs6.js"),[]).then(e=>new e.PreferencesWeb)}),_r="shserv_server_url";let br="";function Mt(){return Da.isNativePlatform()}function xl(){return br}function xa(e){br=String(e||"").replace(/\/+$/,"")}async function fp(){if(!Mt()){xa("");return}try{const e=await At.get(_r);xa(e||"")}catch{xa("")}}async function pp(e){const t=String(e||"").replace(/\/+$/,"");if(xa(t),!!Mt())try{await At.set(_r,t)}catch{}}function vp(e){const t=xl();if(!t)return e;const n=String(e||"").replace(/^\/+/,"");return n?`${t}/${n}`:t}async function gp(){return!Mt()||br?!0:!!await At.get(_r)}const At={async get(e){if(Mt())try{const{value:t}=await As.get({key:e});return t}catch{return null}try{return localStorage.getItem(e)}catch{return null}},async set(e,t){if(Mt()){try{await As.set({key:e,value:t})}catch{}return}try{localStorage.setItem(e,t)}catch{}},async remove(e){if(Mt()){try{await As.remove({key:e})}catch{}return}try{localStorage.removeItem(e)}catch{}}},Oa="shserv_access_token",Fa="shserv_expires_at";let yn=null,ln=null;async function hp(){try{yn=await At.get(Oa)||null;const t=await At.get(Fa);ln=t?Number(t):null}catch{yn=null,ln=null}}function is(e,t=null){yn=e||null,t!=null&&t>0?ln=Date.now()+t*1e3:ln=null,yn?(At.set(Oa,yn),ln&&At.set(Fa,String(ln))):(At.remove(Oa),At.remove(Fa))}function Cl(){return yn}function mp(){return ln}function En(){yn=null,ln=null,At.remove(Oa),At.remove(Fa)}const Na={DEBUG:0,INFO:1,WARN:2,ERROR:3};function El(){return Na[void 0]??Na.INFO}function wr(){return El()<=Na.DEBUG}function Oi(e){return Na[e]>=El()}function Fi(e){return e<10?`${e.toFixed(1)}ms`:`${Math.round(e)}ms`}function Rl(e,t=500){if(!e)return"";const n=String(e);return n.length>t?n.slice(0,t)+"…":n}function $l(e,t){try{const n=JSON.stringify(e);return t?Rl(n,t):n}catch{return"[Circular]"}}const yp=1e4,xs="[vue:http]";function _p(e){const t=new URLSearchParams;for(const[a,s]of Object.entries(e||{}))s!=null&&t.append(a,String(s));const n=t.toString();return n?`?${n}`:""}function bp(e,t){const n=String(e||"").replace(/\/+$/,""),a=String(t||"").replace(/^\/+/,"");return n?`${n}/${a}`:`/${a}`}function wp(e,t){return`${e}${_p(t)}`}async function Ni(e,t,n,a={}){const s=Number(a.timeoutMs||yp),r=new AbortController,o=setTimeout(()=>r.abort(),s),i=xl(),l=bp(i,wp(t,a.query)),u={Accept:"application/json",...a.headers||{}},c=Cl();c&&(u.Authorization=`Bearer ${c}`);const d={method:e,headers:u,signal:r.signal,credentials:"include"};a.signal&&a.signal.addEventListener("abort",()=>r.abort(),{once:!0}),n!=null&&(u["Content-Type"]="application/json",d.body=JSON.stringify(n)),wr()&&console.debug(xs,e,l,n?$l(n,500):"");const f=performance.now();try{const _=await fetch(l,d),g=await _.text();let m=g;if(g)try{m=JSON.parse(g)}catch{m=g}const h=performance.now()-f,$=_.status>=500?"ERROR":_.status>=400?"WARN":"INFO";return Oi($)&&console[$.toLowerCase()](xs,`${e} ${l} — ${_.status} in ${Fi(h)}`,Rl(g||"",200)),{response:_,data:m,meta:{url:l,method:e,statusCode:_.status,headers:_.headers}}}catch(_){const g=performance.now()-f;throw Oi("ERROR")&&console.error(xs,`${e} ${l} — FAILED in ${Fi(g)}`,(_==null?void 0:_.message)||_),_}finally{clearTimeout(o)}}function Sr(e){const t=vp(`/auth/login?return_to=${encodeURIComponent(e)}`);window.location.href=t}function Tl(){window.location.href="/#/login"}function kr(){return Mt()?"/auth/mobile-bridge":window.location.href}let Cs=!1,Ws=[];function Sp(e){Ws.push(e)}function Mi(e){Ws.forEach(t=>t(e)),Ws=[]}function Gn(e,t,n={}){return{type:e,message:t,...n}}async function Ar(e,t,n,a){var s,r;try{const{response:o,data:i,meta:l}=await Ni(e,t,n,a);if(!o.ok){if(o.status===401&&!(a!=null&&a._retryOnce)){if(Cs)await new Promise(c=>{Sp(d=>c(d))});else{Cs=!0;try{const c=await Ni("POST","/auth/refresh",null);if(c.response.ok){const d=(r=(s=c.data)==null?void 0:s.data)==null?void 0:r.access_token;if(d)is(d),Mi(d);else throw new Error("No token in refresh response")}else throw new Error("Refresh failed")}catch{return Mi(null),En(),window.location.hash.includes("/login")||Tl(),{ok:!1,error:Gn("http_error","HTTP 401",{statusCode:401,raw:i}),meta:l}}finally{Cs=!1}}return Cl()?Ar(e,t,n,{...a,_retryOnce:!0}):{ok:!1,error:Gn("http_error","HTTP 401",{statusCode:401,raw:i}),meta:l}}return{ok:!1,error:Gn("http_error",`HTTP ${o.status}`,{statusCode:o.status,raw:i}),meta:l}}return i&&typeof i=="object"&&(i.status===!1||i.status==="error")?{ok:!1,error:Gn("api_error",i.msg||i.message||"API error",{errorAlias:i.error_alias,failedFields:i.failed_fields||[],raw:i}),meta:l}:{ok:!0,data:i,meta:l}}catch(o){const i=(o==null?void 0:o.name)==="AbortError";return{ok:!1,error:Gn(i?"timeout":"network_error",(o==null?void 0:o.message)||"Network error",{details:o}),meta:{url:t,method:e,statusCode:0,headers:null}}}}function Fe(e,t){return Ar("GET",e,null,t)}function Qe(e,t,n){return Ar("POST",e,t,n)}const Un=bn("auth",()=>{const e=z(null),t=z([]),n=z(!1),a=z(null),s=ee(()=>!!e.value),r=ee(()=>new Set(t.value));function o(m){return r.value.has(m)}function i(m){return Array.isArray(m)?m.some(h=>r.value.has(h)):!1}function l(){a.value&&(clearTimeout(a.value),a.value=null);const m=mp();if(!m)return;const h=m-Date.now()-6e4;h>0?a.value=setTimeout(()=>{f().then(()=>{l()})},h):f().then(()=>{l()})}function u(){a.value&&(clearTimeout(a.value),a.value=null)}let c=null;async function d(){return c||(n.value=!0,c=Fe("/auth/me").then(async m=>{var h,$,y;if(m.ok){const S=((h=m.data)==null?void 0:h.data)||{};e.value=S.user||null,t.value=S.permissions||[],l()}else if((($=m.error)==null?void 0:$.statusCode)===401){await f();const S=await Fe("/auth/me");if(S.ok){const C=((y=S.data)==null?void 0:y.data)||{};e.value=C.user||null,t.value=C.permissions||[],l()}else e.value=null,t.value=[],En(),u()}else e.value=null,t.value=[],En(),u()}).catch(()=>{e.value=null,t.value=[],En(),u()}).finally(()=>{n.value=!1}),c)}async function f(){var h,$,y,S;const m=await Qe("/auth/refresh");if(m.ok){const C=(($=(h=m.data)==null?void 0:h.data)==null?void 0:$.access_token)||null,L=((S=(y=m.data)==null?void 0:y.data)==null?void 0:S.expires_in)||null;is(C,L),l()}else En(),u()}async function _(){try{await Qe("/auth/logout")}catch{}e.value=null,t.value=[],En(),u(),window.location.href="/#/login"}function g(){if(Mt()){Tl();return}Sr(kr())}return{user:e,permissions:t,isLoading:n,isAuthenticated:s,hasPermission:o,hasAnyPermission:i,init:d,refreshToken:f,logout:_,redirectToLogin:g}}),kp={__name:"AppShell",setup(e){const t=as(),n=Un(),a={login:"Login","areas-favorites":"Favorites","areas-tree":"Areas","area-detail":"Area",devices:"Devices","device-detail":"Device","devices-scanning":"Scanning","scripts-actions":"Actions","scripts-regular":"Regular","scripts-scopes":"Scopes","script-detail":"Script",firmwares:"Firmwares"},s=ee(()=>{const f=t==null?void 0:t.name;return f&&a[f]?a[f]:""}),r=[{label:"Favorites",to:"/areas/favorites",icon:"ph-bookmarks",permission:"areas.view"},{label:"Areas",to:"/areas/tree",icon:"ph-map-trifold",permission:"areas.view"},{label:"Devices",to:"/devices",icon:"ph-cpu",permission:"devices.view"},{label:"Scanning",to:"/devices/scanning",icon:"ph-magnifying-glass",permission:"devices.scan"},{label:"Actions",to:"/scripts/actions",icon:"ph-play",permission:"scripts.run"},{label:"Regular",to:"/scripts/regular",icon:"ph-clock",permission:"scripts.view"},{label:"Scopes",to:"/scripts/scopes",icon:"ph-brackets-curly",permission:"scripts.view"},{label:"Firmwares",to:"/firmwares",icon:"ph-cloud-arrow-down",permission:"firmware.view"}],o=ee(()=>r.filter(f=>f.permission?n.hasPermission(f.permission):!0));function i(f){return f?f.split(/\s+/).slice(0,2).map(_=>{var g;return(g=_[0])==null?void 0:g.toUpperCase()}).join(""):""}function l(f){return f?f.charAt(0).toUpperCase()+f.slice(1):""}function u(){Sr(kr())}function c(){const f=document.querySelector(".nav-drawer-backdrop");f&&f.click()}function d(){c(),n.logout()}return(f,_)=>(k(),K(v(op),{brand:"SHSERV","logo-src":"/logo-cube-square.svg",title:"Navigation",subtitle:"Smart Home",items:o.value,"active-match":"prefix",current:s.value},{content:x(()=>[Ja(f.$slots,"default")]),footer:x(()=>{var g,m,h,$,y,S;return[v(n).isAuthenticated?(k(),K(v(dp),{key:0,name:((g=v(n).user)==null?void 0:g.display_name)||"User",email:((m=v(n).user)==null?void 0:m.email)||"",role:l((h=v(n).user)==null?void 0:h.system_role),avatar:{src:(($=v(n).user)==null?void 0:$.avatar_url)||"",initials:i((y=v(n).user)==null?void 0:y.display_name),size:"sm"},href:((S=v(n).user)==null?void 0:S.gauth_profile_url)||"",compact:"",actions:[{label:"Logout",icon:"ph-sign-out",variant:"ghost",onClick:d}]},null,8,["name","email","role","avatar","href","actions"])):(k(),K(v(de),{key:1,variant:"primary",size:"sm",onClick:u},{icon:x(()=>[..._[0]||(_[0]=[I("i",{class:"ph ph-sign-in"},null,-1)])]),default:x(()=>[_[1]||(_[1]=N(" Sign in ",-1))]),_:1}))]}),_:3},8,["items","current"]))}},ze=(e,t)=>{const n=e.__vccOpts||e;for(const[a,s]of t)n[a]=s;return n},Ap={key:0},xp={key:1,class:"error-meta"},Cp={class:"error-actions"},Ep={__name:"AppErrorState",props:{title:{type:String,default:"Request failed"},message:{type:String,default:""},retry:{type:Function,default:null},error:{type:Object,default:null}},setup(e){const t=e,n=ee(()=>{var s;return t.message||((s=t.error)==null?void 0:s.message)||""}),a=ee(()=>{if(!t.error)return"";try{return JSON.stringify(t.error,null,2)}catch{return String(t.error)}});return(s,r)=>(k(),K(v(Ze),{variant:"danger",role:"alert"},{default:x(()=>[I("strong",null,O(e.title),1),n.value?(k(),G("p",Ap,O(n.value),1)):ne("",!0),e.error?(k(),G("div",xp,[e.error.type?(k(),K(v(_e),{key:0,variant:"secondary"},{default:x(()=>[N(O(e.error.type),1)]),_:1})):ne("",!0),e.error.statusCode?(k(),K(v(_e),{key:1,variant:"secondary"},{default:x(()=>[N("HTTP "+O(e.error.statusCode),1)]),_:1})):ne("",!0),e.error.errorAlias?(k(),K(v(_e),{key:2,variant:"warning"},{default:x(()=>[N(O(e.error.errorAlias),1)]),_:1})):ne("",!0)])):ne("",!0),I("div",Cp,[e.error?(k(),K(v(Qf),{key:0,text:a.value,label:"Copy error details",size:"sm"},null,8,["text"])):ne("",!0),e.retry?(k(),K(v(de),{key:1,variant:"danger",onClick:e.retry},{default:x(()=>[...r[0]||(r[0]=[N("Retry",-1)])]),_:1},8,["onClick"])):ne("",!0)])]),_:1}))}},pt=ze(Ep,[["__scopeId","data-v-f1e6bcb8"]]),Rp={key:0,class:"error-boundary",role:"alert"},$p={__name:"AppErrorBoundary",setup(e){const t=z(!1),n=z("");Do((s,r,o)=>{const i=(s==null?void 0:s.message)||String(s);return console.error("[AppErrorBoundary] Caught Vue error:",i,"| info:",o,s),t.value=!0,n.value=i,!1});function a(){t.value=!1,n.value=""}return(s,r)=>t.value?(k(),G("div",Rp,[R(pt,{title:"Something went wrong",message:n.value,retry:a},null,8,["message"])])):Ja(s.$slots,"default",{key:1},void 0,!0)}},Tp=ze($p,[["__scopeId","data-v-1e10ea7f"]]),Pp={__name:"App",setup(e){return(t,n)=>(k(),K(kp,null,{default:x(()=>[R(v(cp),null,{default:x(()=>[R(Tp,null,{default:x(()=>[R(v(wl))]),_:1})]),_:1})]),_:1}))}},Pt={list(e){return Fe("/api/v1/areas/list",e)},innerList(e,t){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/list`,t)},newArea(e){return Qe("/api/v1/areas/new-area",e)},remove(e){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/remove`)},devices(e,t){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/devices`,t)},scripts(e,t){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/scripts`,t)},updateDisplayName(e){return Qe("/api/v1/areas/update-display-name",e)},updateAlias(e){return Qe("/api/v1/areas/update-alias",e)},placeInArea(e){return Qe("/api/v1/areas/place-in-area",e)},unassign(e){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/unassign-from-area`)}};function gt(e={}){const t=z(null),n=z(!1),a=z(null);async function s(i){var u,c;(u=t.value)==null||u.abort();const l=new AbortController;t.value=l,n.value=!0,a.value=null;try{const d=await i(l.signal);return t.value=null,n.value=!1,d.ok||e.ignoreTimeout!==!1&&((c=d.error)==null?void 0:c.type)==="timeout"||(a.value=d.error),d}catch(d){return t.value=null,n.value=!1,a.value={type:"network_error",message:(d==null?void 0:d.message)||"Network error"},{ok:!1,error:a.value}}}function r(){var i;(i=t.value)==null||i.abort(),t.value=null}function o(){a.value=null,r()}return{abortController:t,isLoading:n,error:a,execute:s,abort:r,clear:o}}const Pl="sh:areas:expandedNodes";function Ip(){try{const e=localStorage.getItem(Pl);if(e){const t=JSON.parse(e);if(Array.isArray(t))return new Set(t)}}catch{}return new Set}function Lp(e){try{localStorage.setItem(Pl,JSON.stringify([...e]))}catch{}}function Dp(e){const t={},n=[];for(const a of e)t[a.id]={...a,children:[]};for(const a of e){const s=t[a.id],r=a.parent_id&&a.parent_id==a.id,o=a.parent_id&&t[a.parent_id];!r&&o?t[a.parent_id].children.push(s):n.push(s)}return n.length===0&&e.length>0?Object.values(t):n}const kt=bn("areas",()=>{const e=z([]),t=z(null),n=z([]),a=z([]),s=gt(),r=gt(),o=ee(()=>Object.fromEntries(e.value.map(P=>[String(P.id),P]))),i=ee(()=>Dp(e.value)),l=z(Ip());wt(l,P=>{Lp(P)},{deep:!0});function u(P){const E=new Set(l.value);E.has(P)?E.delete(P):E.add(P),l.value=E}function c(P){return l.value.has(P)}async function d(){return s.execute(async P=>{var T,w;const E=await Pt.list({signal:P});return E.ok&&(e.value=((w=(T=E.data)==null?void 0:T.data)==null?void 0:w.areas)||[]),E})}async function f(P){var T,w,Z,oe,fe,ge;r.abort();const E=new AbortController;r.abortController.value=E,r.isLoading.value=!0,r.error.value=null,t.value=o.value[String(P)]||null,n.value=[],a.value=[];try{const[B,J]=await Promise.all([Pt.devices(P,{signal:E.signal}),Pt.scripts(P,{signal:E.signal})]);return r.abortController.value=null,r.isLoading.value=!1,B.ok?J.ok?(n.value=((oe=(Z=B.data)==null?void 0:Z.data)==null?void 0:oe.devices)||[],a.value=((ge=(fe=J.data)==null?void 0:fe.data)==null?void 0:ge.scripts)||[],{ok:!0}):(((w=J.error)==null?void 0:w.type)!=="timeout"&&(r.error.value=J.error),{ok:!1,error:r.error.value}):(((T=B.error)==null?void 0:T.type)!=="timeout"&&(r.error.value=B.error),{ok:!1,error:r.error.value})}catch(B){return r.abortController.value=null,r.isLoading.value=!1,r.error.value={type:"network_error",message:(B==null?void 0:B.message)||"Network error"},{ok:!1,error:r.error.value}}}function _(){t.value=null,n.value=[],a.value=[],r.clear()}async function g(P){var T,w;const E=await Pt.devices(P);return E.ok&&(n.value=((w=(T=E.data)==null?void 0:T.data)==null?void 0:w.devices)||[]),E}async function m(P){var T,w;const E=await Pt.scripts(P);return E.ok&&(a.value=((w=(T=E.data)==null?void 0:T.data)==null?void 0:w.scripts)||[]),E}async function h(P){var T,w;const E=await Pt.newArea(P);if(E.ok){const Z=(w=(T=E.data)==null?void 0:T.data)==null?void 0:w.area;Z&&e.value.push(Z)}return E}async function $(P,E){const T=await Pt.updateDisplayName({area_id:P,display_name:E});if(T.ok){const w=e.value.findIndex(Z=>Z.id===P);w!==-1&&(e.value[w]={...e.value[w],display_name:E})}return T}async function y(P){const E=await Pt.remove(P);return E.ok&&(e.value=e.value.filter(T=>T.id!==P)),E}function S(P){return!(P!=null&&P.parent_id)||P.parent_id<=0}async function C(P,E){const T=e.value.find(oe=>oe.id===P),w=e.value.filter(S).length;if(T&&S(T)&&w===1)return{ok:!1,error:{message:"Cannot assign the last root area as a child."}};const Z=await Pt.placeInArea({target_id:P,place_in_area_id:E});if(Z.ok){const oe=e.value.findIndex(fe=>fe.id===P);oe!==-1&&e.value.splice(oe,1,{...e.value[oe],parent_id:Number(E)})}return Z}async function L(P){const E=await Pt.unassign(P);if(E.ok){const T=e.value.findIndex(w=>w.id===P);T!==-1&&e.value.splice(T,1,{...e.value[T],parent_id:0})}return E}return{areas:e,isLoading:s.isLoading,error:s.error,currentArea:t,currentAreaDevices:n,currentAreaScripts:a,isLoadingAreaDetail:r.isLoading,errorAreaDetail:r.error,areasById:o,areaTree:i,expandedNodeIds:l,toggleNode:u,isNodeExpanded:c,loadAreas:d,loadAreaDetail:f,clearAreaDetail:_,loadAreaDevices:g,loadAreaScripts:m,createArea:h,renameArea:$,removeArea:y,assignToArea:C,unassignArea:L}}),Il="sh_fav_areas";function Op(){try{return JSON.parse(localStorage.getItem(Il)||"[]").map(String)}catch{return[]}}function Ui(e){localStorage.setItem(Il,JSON.stringify(e.map(String)))}const xr=bn("favorites",()=>{const e=z(Op());function t(r){return e.value.includes(String(r))}function n(r){const o=String(r);e.value.includes(o)||(e.value.push(o),Ui(e.value))}function a(r){e.value=e.value.filter(o=>o!==String(r)),Ui(e.value)}function s(r){return t(r)?(a(r),!1):(n(r),!0)}return{ids:e,has:t,add:n,remove:a,toggle:s}}),Fp=["aria-label"],Ll={__name:"AreaFavoriteButton",props:{areaId:{type:[String,Number],required:!0}},setup(e){const t=e,n=xr(),a=ee(()=>n.has(t.areaId));return(s,r)=>(k(),G("button",{class:Ct(["btn-icon area-favorite-btn",{"is-active":a.value,"text-muted":!a.value,"text-warning":a.value}]),type:"button","aria-label":a.value?"Remove bookmark":"Bookmark",onClick:r[0]||(r[0]=Qa(o=>v(n).toggle(e.areaId),["stop"]))},[I("i",{class:Ct(["ph",a.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple"])},null,2)],10,Fp))}},St={__name:"AppLoadingState",props:{text:{type:String,default:"Loading"}},setup(e){return(t,n)=>(k(),K(v(Sl),{circle:"",label:e.text},null,8,["label"]))}},it={__name:"AppEmptyState",props:{title:{type:String,default:"Nothing here"},message:{type:String,default:""}},setup(e){return(t,n)=>(k(),K(v(tp),{title:e.title,text:e.message,icon:"ph-package"},{actions:x(()=>[Ja(t.$slots,"action")]),_:3},8,["title","text"]))}},Np={class:"page"},Mp={key:3,class:"area-favorites-list"},Up=["onClick"],Vp={class:"area-favorite-info"},jp={class:"area-favorite-title"},Bp={class:"area-favorite-meta"},Hp={key:0,class:"area-favorite-parent"},Gp={class:"area-favorite-actions"},qp={__name:"AreaFavoritesPage",setup(e){const t=kt(),n=xr(),a=en(),s=ee(()=>{const i=new Set(n.ids.map(String));return t.areas.filter(l=>i.has(String(l.id)))});function r(i){if(!i.parent_id)return null;const l=t.areasById[String(i.parent_id)];return(l==null?void 0:l.display_name)||null}function o(i){a.push({name:"area-detail",params:{id:String(i.id)}})}return bt(()=>{t.areas.length===0&&t.loadAreas()}),(i,l)=>{const u=cn("router-link");return k(),G("section",Np,[R(v($t),{title:"Favorites",kicker:"Areas"},{actions:x(()=>[R(v(_e),{variant:"primary"},{default:x(()=>[N(O(s.value.length)+" favorite areas",1)]),_:1})]),_:1}),v(t).isLoading?(k(),K(St,{key:0,text:"Loading areas"})):v(t).error?(k(),K(pt,{key:1,title:"Areas loading failed",error:v(t).error,retry:v(t).loadAreas},null,8,["error","retry"])):s.value.length===0?(k(),K(it,{key:2,title:"No favorite areas",message:"Favorite areas from the current client are preserved through localStorage."})):(k(),G("ul",Mp,[(k(!0),G(Ee,null,Vt(s.value,c=>(k(),G("li",{key:c.id,class:"area-favorite-item"},[I("article",{class:"area-favorite-card",onClick:d=>o(c)},[l[2]||(l[2]=I("div",{class:"area-favorite-icon"},[I("i",{class:"ph ph-fill ph-bookmark-simple"})],-1)),I("div",Vp,[I("h2",jp,O(c.display_name),1),I("p",Bp,[R(v(_e),{variant:"secondary"},{default:x(()=>[N(O(c.type),1)]),_:2},1024),I("code",null,O(c.alias),1),r(c)?(k(),G("span",Hp,[l[1]||(l[1]=N(" in ",-1)),R(u,{to:{name:"area-detail",params:{id:String(c.parent_id)}},class:"parent-link",onClick:l[0]||(l[0]=Qa(()=>{},["stop"]))},{default:x(()=>[N(O(r(c)),1)]),_:2},1032,["to"])])):ne("",!0)])]),I("div",Gp,[R(Ll,{"area-id":c.id},null,8,["area-id"])])],8,Up)]))),128))]))])}}},zp=ze(qp,[["__scopeId","data-v-f8795944"]]);function jt(){const e=Un();return{has:t=>e.hasPermission(t),hasAny:t=>e.hasAnyPermission(t),permissions:e.permissions}}const Kp=["disabled","aria-expanded"],Wp={class:"area-tree-info"},Jp={class:"text-muted"},Yp={class:"area-tree-actions"},Xp={key:0,class:"area-tree-children"},Zp={key:1,class:"area-tree-node"},Qp={class:"area-tree-card area-tree-cycle text-danger"},ev={__name:"AreaTreeNode",props:{area:{type:Object,required:!0},ancestors:{type:Array,default:()=>[]}},setup(e){const t=e,n=en(),a=kt(),s=ee(()=>a.isNodeExpanded(t.area.id)),r=ee(()=>{var c;return!((c=t.area.children)!=null&&c.length)}),o=ee(()=>t.ancestors.includes(String(t.area.id))),i=ee(()=>[...t.ancestors,String(t.area.id)]);function l(){a.toggleNode(t.area.id)}function u(){n.push({name:"area-detail",params:{id:String(t.area.id)}})}return(c,d)=>{var _;const f=cn("AreaTreeNode",!0);return o.value?(k(),G("li",Zp,[I("article",Qp," Cycle skipped for area ID "+O(e.area.id),1)])):(k(),G("li",{key:0,class:Ct(["area-tree-node",{"is-open":s.value,"is-leaf":r.value}])},[I("article",{class:"area-tree-card",onClick:u},[I("button",{class:Ct(["tree-toggle",{"text-primary":!r.value,"text-muted":r.value}]),type:"button",disabled:r.value,"aria-expanded":s.value,onClick:Qa(l,["stop"])},O(r.value?"·":s.value?"−":"+"),11,Kp),I("div",Wp,[I("h2",null,O(e.area.display_name),1),I("p",Jp,[R(v(_e),{variant:"secondary"},{default:x(()=>[N(O(e.area.type),1)]),_:1}),I("code",null,O(e.area.alias),1)])]),I("div",Yp,[R(Ll,{"area-id":e.area.id},null,8,["area-id"])])]),(_=e.area.children)!=null&&_.length&&s.value?(k(),G("ul",Xp,[(k(!0),G(Ee,null,Vt(e.area.children,g=>(k(),K(f,{key:g.id,area:g,ancestors:i.value},null,8,["area","ancestors"]))),128))])):ne("",!0)],2))}}},tv={class:"page"},nv={key:3,class:"area-tree"},av={class:"form-group"},sv={class:"form-group"},rv={class:"form-group"},iv={key:0,class:"form-group"},ov={__name:"AreaTreePage",setup(e){const t=kt(),n=wn(),a=jt(),s=z(!1),r=z(!1),o=z(""),i=Zt({type:"",alias:"",display_name:""});function l(){i.type="",i.alias="",i.display_name="",o.value="",s.value=!0}async function u(){var d;r.value=!0,o.value="";const c=await t.createArea({...i});if(r.value=!1,!c.ok){o.value=((d=c.error)==null?void 0:d.message)||"Failed to create area";return}s.value=!1,n.success({title:"Created",text:"Area created successfully"})}return bt(()=>{t.loadAreas()}),(c,d)=>(k(),G("section",tv,[R(v($t),{title:"Tree",kicker:"Areas"},{actions:x(()=>[v(a).has("areas.manage")?(k(),K(v(de),{key:0,variant:"primary",icon:"ph-plus",onClick:l},{default:x(()=>[...d[5]||(d[5]=[N("Create area",-1)])]),_:1})):ne("",!0)]),_:1}),v(t).isLoading?(k(),K(St,{key:0,text:"Loading areas tree"})):v(t).error?(k(),K(pt,{key:1,title:"Areas loading failed",error:v(t).error,retry:v(t).loadAreas},null,8,["error","retry"])):v(t).areaTree.length===0?(k(),K(it,{key:2,title:"No areas",message:"No areas found. Create one to get started."})):(k(),G("ul",nv,[(k(!0),G(Ee,null,Vt(v(t).areaTree,f=>(k(),K(ev,{key:f.id,area:f},null,8,["area"]))),128))])),R(v(tt),{open:s.value,title:"Create area","onUpdate:open":d[4]||(d[4]=f=>s.value=f)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:d[3]||(d[3]=f=>s.value=!1)},{default:x(()=>[...d[6]||(d[6]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:u},{default:x(()=>[...d[7]||(d[7]=[N("Create",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",av,[R(v(yt),{modelValue:i.type,"onUpdate:modelValue":d[0]||(d[0]=f=>i.type=f),label:"Type",placeholder:"room"},null,8,["modelValue"])]),I("div",sv,[R(v(yt),{modelValue:i.alias,"onUpdate:modelValue":d[1]||(d[1]=f=>i.alias=f),label:"Alias",placeholder:"kitchen"},null,8,["modelValue"])]),I("div",rv,[R(v(yt),{modelValue:i.display_name,"onUpdate:modelValue":d[2]||(d[2]=f=>i.display_name=f),label:"Display name",placeholder:"Kitchen"},null,8,["modelValue"])]),o.value?(k(),G("div",iv,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(o.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"])]))}},lv=ze(ov,[["__scopeId","data-v-5f02f384"]]),uv={device_name:"name",device_hard_id:"device_id",device_ip:"ip",ip_address:"ip",mac_address:"mac",device_mac:"mac",core_version:"firmware_core_version",type:"device_type"};function cv(e){const t={};for(const[n,a]of Object.entries(e||{}))t[uv[n]||n]=a;return t}function qn(e){return encodeURIComponent(String(e))}function dv(e){var n,a,s;if(!e.ok)return e;const t=((a=(n=e.data)==null?void 0:n.data)==null?void 0:a.devices)||[];return{...e,data:{...e.data,data:{...(s=e.data)==null?void 0:s.data,devices:t.map(cv)}}}}const at={async list(){return dv(await Fe("/api/v1/devices/list"))},status(e,t){return Fe(`/api/v1/devices/id/${qn(e)}/status`,t)},reboot(e){return Fe(`/api/v1/devices/id/${qn(e)}/reboot`)},action(e){return Qe("/api/v1/devices/action",e)},scanningSetup(e){return Fe("/api/v1/devices/scanning/setup",{timeoutMs:12e4,...e})},scanningAll(e){return Fe("/api/v1/devices/scanning/all",{timeoutMs:12e4,...e})},setupNewDevice(e){return Qe("/api/v1/devices/setup/new-device",e)},detail(e,t){return Fe(`/api/v1/devices/id/${qn(e)}`,t)},updateName(e,t){return Qe("/api/v1/devices/update-name",{device_id:e,name:t})},updateDescription(e,t){return Qe("/api/v1/devices/update-description",{device_id:e,description:t})},updateAlias(e,t){return Qe("/api/v1/devices/update-alias",{device_id:e,new_alias:t})},remove(e){return Fe(`/api/v1/devices/id/${qn(e)}/remove`)},resetup(e){return Qe("/api/v1/devices/resetup",{device_id:e})},reset(e){return Qe("/api/v1/devices/reset",{device_id:e})},unassign(e){return Fe(`/api/v1/devices/id/${qn(e)}/unassign-from-area`)},placeInArea(e){return Qe("/api/v1/devices/place-in-area",e)}},fv=4;function Js(e){return String((e==null?void 0:e.id)||"")}function Cr(e,t){return{deviceId:Js(e),status:"idle",message:"",response:null,connectionStatus:(e==null?void 0:e.connection_status)||"unknown",updatedAt:null,...t}}function pv(e,t){var s,r;const a=(((r=(s=t.data)==null?void 0:s.data)==null?void 0:r.device)||{}).device_response||{};return Cr(e,{status:"ready",message:a.status||"ok",response:a,connectionStatus:"active",updatedAt:new Date().toISOString()})}function vv(e,t){var s,r,o;const n=((s=t.error)==null?void 0:s.raw)||{},a=((r=n==null?void 0:n.data)==null?void 0:r.connection_status)||(e==null?void 0:e.connection_status)||"unknown";return Cr(e,{status:"error",message:((o=t.error)==null?void 0:o.message)||"Device state is unavailable",response:n,connectionStatus:a,updatedAt:new Date().toISOString()})}async function gv(e,t,n){let a=0;const s=Math.max(1,Math.min(t,e.length));async function r(){for(;a{const e=z([]),t=z({}),n=z(0),a=z(new Set),s=z(null),r=z(null),o=z(null),i=z(!1),l=z(null),u=gt(),c=gt(),d=ee(()=>e.value.length),f=ee(()=>B=>a.value.has(String(B)));async function _(){return u.execute(async B=>{var Q,Y;const J=await at.list({signal:B});return J.ok&&(e.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.devices)||[],o.value=new Date().toISOString()),J})}function g(B,J){const Q=Js(B);Q&&(t.value={...t.value,[Q]:Cr(B,J)})}async function m(B,J,Q){const Y=n.value+1;n.value=Y,i.value=!0,l.value=null,Q&&(t.value={});const te=[];for(const ve of B)ve.connection_status==="lost"?g(ve,{status:"skipped",message:"Connection lost",connectionStatus:"lost"}):(g(ve,{status:"loading",message:"Loading"}),te.push(ve));try{await gv(te,J.concurrency||fv,async ve=>{const ke=await at.status(ve.id);n.value===Y&&(t.value={...t.value,[Js(ve)]:ke.ok?pv(ve,ke):vv(ve,ke)})})}catch(ve){n.value===Y&&(l.value={type:"state_loader_error",message:(ve==null?void 0:ve.message)||"Device states loader failed"})}finally{n.value===Y&&(i.value=!1)}}async function h(B,J={}){return m(B,J,!1)}async function $(B={}){return m(e.value,B,!0)}async function y(B){const J=String(B);a.value=new Set(a.value).add(J);const Q=await at.reboot(B),Y=new Set(a.value);return Y.delete(J),a.value=Y,Q}async function S(B){return c.execute(async J=>{var Y,te;const Q=await at.detail(B,{signal:J});return Q.ok&&(s.value=((te=(Y=Q.data)==null?void 0:Y.data)==null?void 0:te.device)||null),Q})}async function C(B){var te,ve;const J=await at.status(B);if(!J.ok)return r.value={ok:!1,error:J.error,channels:[]},J;const Y=(((ve=(te=J.data)==null?void 0:te.data)==null?void 0:ve.device)||{}).device_response||{};return r.value={ok:!0,channels:Y.channels||[],raw:Y},J}async function L(B,J){const Q=await at.updateName(B,J);return Q.ok&&s.value&&(s.value={...s.value,name:J}),Q}async function P(B,J){const Q=await at.updateDescription(B,J);return Q.ok&&s.value&&(s.value={...s.value,description:J}),Q}async function E(B,J){const Q=await at.updateAlias(B,J);return Q.ok&&s.value&&(s.value={...s.value,alias:J}),Q}async function T(B){return at.remove(B)}async function w(B){return at.resetup(B)}async function Z(B){return at.reset(B)}async function oe(B){const J=await at.unassign(B);return J.ok&&s.value&&(s.value={...s.value,area_id:null}),J}async function fe(B,J){const Q=await at.placeInArea({target_id:B,place_in_area_id:J});return Q.ok&&s.value&&(s.value={...s.value,area_id:J}),Q}function ge(){s.value=null,r.value=null,c.clear()}return{devices:e,isLoading:u.isLoading,error:u.error,isLoadingStates:i,stateError:l,stateByDeviceId:t,stateRunId:n,rebootingIds:a,lastLoadedAt:o,currentDevice:s,currentDeviceStatus:r,isLoadingDetail:c.isLoading,errorDetail:c.error,total:d,isRebooting:f,loadDevices:_,setDeviceState:g,loadDeviceStates:$,loadStatesFor:h,rebootDevice:y,loadDeviceDetail:S,loadDeviceStatus:C,updateDeviceName:L,updateDeviceDescription:P,updateDeviceAlias:E,removeDevice:T,unassignDevice:oe,assignToArea:fe,resetupDevice:w,resetDevice:Z,clearDeviceDetail:ge}}),It={actionsList(e){return Fe("/api/v1/scripts/actions/list",e)},regularList(e){return Fe("/api/v1/scripts/regular/list",e)},scopesList(e){return Fe("/api/v1/scripts/scopes/list",e)},runAction(e,t={}){return Qe("/api/v1/scripts/actions/run",{alias:e,params:t})},setActionState(e,t){return Fe(`/api/v1/scripts/actions/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setRegularState(e,t){return Fe(`/api/v1/scripts/regular/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setScopeState(e,t){return Fe(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},scopeCode(e,t){return Fe(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}`,t)},placeInArea(e){return Qe("/api/v1/scripts/place-in-area",e)},unassign(e){return Fe(`/api/v1/scripts/id/${encodeURIComponent(String(e))}/unassign-from-area`)}},Sn=bn("scripts",()=>{const e=z([]),t=z([]),n=z([]),a=z(new Set),s=z(null),r=z(""),o=gt(),i=gt(),l=gt(),u=gt(),c=ee(()=>e.value.length),d=ee(()=>t.value.length),f=ee(()=>n.value.length),_=ee(()=>B=>a.value.has(B)),g=ee(()=>B=>e.value.find(J=>J.alias===B)||null),m=ee(()=>B=>t.value.find(J=>J.alias===B)||null),h=ee(()=>B=>n.value.find(J=>J.name===B)||null),$=ee(()=>B=>e.value.filter(J=>J.scope===B)),y=ee(()=>B=>t.value.filter(J=>J.scope===B));async function S(){return o.execute(async B=>{var Q,Y;const J=await It.actionsList({signal:B});return J.ok&&(e.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.scripts)||[]),J})}async function C(){return i.execute(async B=>{var Q,Y;const J=await It.regularList({signal:B});return J.ok&&(t.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.scripts)||[]),J})}async function L(){return l.execute(async B=>{var Q,Y;const J=await It.scopesList({signal:B});return J.ok&&(n.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.scopes)||[]),J})}async function P(B,J={}){var te,ve,ke,Pe,be,Ge;a.value=new Set(a.value).add(B),s.value=null;const Q=await It.runAction(B,J),Y=new Set(a.value);return Y.delete(B),a.value=Y,Q.ok?(s.value={alias:B,ok:!0,data:(ke=(ve=(te=Q.data)==null?void 0:te.data)==null?void 0:ve.return)==null?void 0:ke.result,execTime:(Ge=(be=(Pe=Q.data)==null?void 0:Pe.data)==null?void 0:be.return)==null?void 0:Ge.exec_time},Q):(s.value={alias:B,ok:!1,error:Q.error},Q)}async function E(B,J){const Q=await It.setActionState(B,J);if(Q.ok){const Y=e.value.findIndex(te=>te.alias===B);Y!==-1&&(e.value[Y]={...e.value[Y],state:J?"enabled":"disabled"})}return Q}async function T(B,J){const Q=await It.setRegularState(B,J);if(Q.ok){const Y=t.value.findIndex(te=>te.alias===B);Y!==-1&&(t.value[Y]={...t.value[Y],state:J?"enabled":"disabled"})}return Q}async function w(B,J){const Q=await It.setScopeState(B,J);if(Q.ok){const Y=n.value.findIndex(te=>te.name===B);Y!==-1&&(n.value[Y]={...n.value[Y],state:J?"enabled":"disabled"})}return Q}async function Z(B,J){const Q=await It.placeInArea({target_id:B,place_in_area_id:J});if(Q.ok){const Y=e.value.findIndex(ve=>ve.id===B);Y!==-1&&e.value.splice(Y,1,{...e.value[Y],area_id:J});const te=t.value.findIndex(ve=>ve.id===B);te!==-1&&t.value.splice(te,1,{...t.value[te],area_id:J})}return Q}async function oe(B){const J=await It.unassign(B);if(J.ok){const Q=e.value.findIndex(te=>te.id===B);Q!==-1&&e.value.splice(Q,1,{...e.value[Q],area_id:null});const Y=t.value.findIndex(te=>te.id===B);Y!==-1&&t.value.splice(Y,1,{...t.value[Y],area_id:null})}return J}async function fe(B){return u.execute(async J=>{const Q=await It.scopeCode(B,{signal:J});return Q.ok&&(r.value=typeof Q.data=="string"?Q.data:""),Q})}function ge(){r.value="",u.clear()}return{actions:e,regular:t,scopes:n,isLoadingActions:o.isLoading,isLoadingRegular:i.isLoading,isLoadingScopes:l.isLoading,errorActions:o.error,errorRegular:i.error,errorScopes:l.error,runningAliases:a,lastRunResult:s,currentScopeCode:r,isLoadingScopeCode:u.isLoading,errorScopeCode:u.error,totalActions:c,totalRegular:d,totalScopes:f,isRunning:_,actionByAlias:g,regularByAlias:m,scopeByName:h,actionsByScope:$,regularByScope:y,loadActions:S,loadRegular:C,loadScopes:L,runScript:P,setActionState:E,setRegularState:T,setScopeState:w,assignToArea:Z,unassignFromArea:oe,loadScopeCode:fe,clearScopeCode:ge}});function Er(){const e=kt(),t=z(""),n=ee(()=>e.areas.filter(u=>String(u.id)!==String(t.value)).map(u=>({value:String(u.id),label:`${u.display_name} (${u.type})`}))),a=z(!1),s=z(""),r=z(!1),o=z("");function i(u){s.value=u?String(u):"",t.value=u?String(u):"",o.value="",a.value=!0}async function l(u,c){var f;if(!u||!c)return;r.value=!0,o.value="";const d=await c(u,s.value);return r.value=!1,d.ok?(a.value=!1,d):(o.value=((f=d.error)==null?void 0:f.message)||"Failed to assign area",d)}return{areaOptions:n,showAssignModal:a,selectedAreaId:s,assignLoading:r,assignError:o,openAssign:i,submitAssignCore:l}}const hv={key:1,class:"text-muted",style:{"font-size":"13px"}},mv={__name:"AreaBadgeLink",props:{area:{type:Object,default:null},areaId:{type:[Number,String],default:null}},setup(e){return(t,n)=>{const a=cn("router-link");return e.area?(k(),K(a,{key:0,to:{name:"area-detail",params:{id:e.area.id}},class:"area-link"},{default:x(()=>[R(v(_e),{variant:"info"},{default:x(()=>[N(O(e.area.display_name),1)]),_:1})]),_:1},8,["to"])):e.areaId?(k(),G("span",hv,"Area ID: "+O(e.areaId),1)):ne("",!0)}}},Rr=ze(mv,[["__scopeId","data-v-91230b95"]]),yv={class:"devices-panel"},_v={class:"block-title"},bv={key:0,class:"area-assigned"},wv={class:"area-card-info"},Sv={class:"text-muted"},kv={__name:"AreaAssignSection",props:{item:{type:Object,default:null},areaId:{type:[Number,String],default:null},title:{type:String,default:"Area"},emptyMessage:{type:String,default:"This item is not assigned to any area."}},emits:["assign"],setup(e,{emit:t}){const n=e,a=t,s=kt(),r=ee(()=>{var i;const o=n.areaId!=null?n.areaId:(i=n.item)==null?void 0:i.area_id;return o&&s.areasById[String(o)]||null});return(o,i)=>{const l=cn("router-link");return k(),G("div",yv,[I("div",_v,O(e.title),1),r.value?(k(),G("div",bv,[R(l,{to:{name:"area-detail",params:{id:r.value.id}},class:"area-card"},{default:x(()=>[i[1]||(i[1]=I("div",{class:"area-card-icon text-primary"},[I("i",{class:"ph ph-map-trifold"})],-1)),I("div",wv,[I("strong",null,O(r.value.display_name),1),I("small",Sv,O(r.value.type)+" — "+O(r.value.alias),1)])]),_:1},8,["to"])])):(k(),K(it,{key:1,title:"Not assigned",message:e.emptyMessage},{action:x(()=>[Ja(o.$slots,"action",{},()=>[R(v(de),{variant:"primary",icon:"ph-map-pin",onClick:i[0]||(i[0]=u=>a("assign"))},{default:x(()=>[...i[2]||(i[2]=[N("Assign to area",-1)])]),_:1})],!0)]),_:3},8,["message"]))])}}},$r=ze(kv,[["__scopeId","data-v-92cae82c"]]);function Dl(e){if(!e)return"";const t=Ol(e);if(!t)return e;const a=new Date-t,s=Math.floor(a/1e3),r=Math.floor(s/60),o=Math.floor(r/60),i=Math.floor(o/24),l=Math.floor(i/7),u=Math.floor(i/30);if(s<10)return"just now";if(s<60)return`${s} sec ago`;if(r<60)return`${r} min ago`;if(o<24){const d=r%60;return d>0?`${o} hour${o>1?"s":""} ${d} min ago`:`${o} hour${o>1?"s":""} ago`}if(i<7)return`${i} day${i>1?"s":""} ago`;if(l<4)return`${l} week${l>1?"s":""} ago`;if(u<12)return`${u} month${u>1?"s":""} ago`;const c=Math.floor(i/365);return`${c} year${c>1?"s":""} ago`}function Ys(e){if(!e)return"";const t=Ol(e);if(!t)return e;const a=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"][t.getMonth()],s=t.getDate(),r=t.getFullYear(),o=String(t.getHours()).padStart(2,"0"),i=String(t.getMinutes()).padStart(2,"0");return`${a} ${s}, ${r} ${o}:${i}`}function Ol(e){if(!e)return null;const t=/^(\d{4})-(\d{2})-(\d{2})\s+(\d{2}):(\d{2}):(\d{2})$/,n=e.match(t);if(n){const[,s,r,o,i,l,u]=n;return new Date(s,parseInt(r)-1,o,i,l,u)}const a=new Date(e);return isNaN(a.getTime())?null:a}const Av={class:"device-channels-state"},xv={key:3,class:"channels-grid"},Cv={key:0,class:"ph ph-caret-up"},Ev={key:1,class:"ph ph-caret-down"},Rv={key:0,class:"ph ph-caret-up"},$v={key:1,class:"ph ph-caret-down"},Tv={key:0,class:"ph ph-caret-up"},Pv={key:1,class:"ph ph-caret-down"},Iv={key:0,class:"ph ph-caret-up"},Lv={key:1,class:"ph ph-caret-down"},Dv={key:0,class:"ph ph-caret-up"},Ov={key:1,class:"ph ph-caret-down"},Fv={key:0,class:"raw-json text-muted"},Nv={__name:"DeviceChannelsState",props:{deviceType:{type:String,default:""},response:{type:Object,default:null},loading:{type:Boolean,default:!1},error:{type:[String,Object],default:null},connectionStatus:{type:String,default:"unknown"}},setup(e){const t=e,n=ee(()=>t.connectionStatus==="lost"),a=ee(()=>{var g;return((g=t.response)==null?void 0:g.channels)||[]}),s=ee(()=>{var g;return((g=t.response)==null?void 0:g.sensors)||{}}),r=ee(()=>{var g,m;return((m=(g=t.response)==null?void 0:g.hatch)==null?void 0:m.state)||"—"}),o=ee(()=>{var g,m;return((m=(g=t.response)==null?void 0:g.hatch)==null?void 0:m.position_pct)??"—"}),i=ee(()=>String(r.value).includes("open")?"warning":"primary"),l=ee(()=>String(r.value).includes("open")),u=ee(()=>{var g;return((g=t.response)==null?void 0:g.status)==="ok"}),c=ee(()=>{if(!t.response)return"";try{return JSON.stringify(t.response).slice(0,200)}catch{return""}}),d=ee(()=>{var g;return u.value?t.deviceType==="relay"||t.deviceType==="button"?a.value.length>0:t.deviceType==="sensor"?Object.keys(s.value).length>0:t.deviceType==="hatch"?!!((g=t.response)!=null&&g.hatch):!1:!1});function f(g){return g.id??g.channel}function _(g){return{enabled:"success",disabled:"secondary",mute:"primary",waiting:"warning",error:"danger"}[g]||"secondary"}return(g,m)=>(k(),G("div",Av,[e.loading?(k(),K(v(Sl),{key:0,circle:"",size:"sm",label:"Loading state"})):n.value?(k(),K(v(_e),{key:1,variant:"danger",size:"sm"},{default:x(()=>[...m[0]||(m[0]=[I("i",{class:"ph ph-wifi-slash"},null,-1),N(" Offline ",-1)])]),_:1})):e.error||!u.value?(k(),K(v(_e),{key:2,variant:"danger",size:"sm"},{default:x(()=>[m[1]||(m[1]=I("i",{class:"ph ph-warning-octagon"},null,-1)),typeof e.error=="string"?(k(),G(Ee,{key:0},[N(O(e.error),1)],64)):(k(),G(Ee,{key:1},[N("Error")],64))]),_:1})):d.value?(k(),G("div",xv,[e.deviceType==="relay"?(k(!0),G(Ee,{key:0},Vt(a.value,h=>(k(),K(v(_e),{key:f(h),variant:h.state==="on"||h.state===!0?"success":"secondary",size:"sm"},{default:x(()=>[a.value.length>1?(k(),G(Ee,{key:0},[N(O(f(h))+": ",1)],64)):ne("",!0),I("b",null,O(h.state=="off"?"OFF":"ON"),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="button"?(k(!0),G(Ee,{key:1},Vt(a.value,h=>(k(),K(v(_e),{key:f(h),variant:_(h.indicator),size:"sm"},{default:x(()=>[N(O(f(h))+": ",1),I("b",null,O(h.indicator),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="sensor"?(k(),G(Ee,{key:2},[s.value.radar?(k(),K(v(_e),{key:0,variant:"primary",size:"sm"},{default:x(()=>[I("i",{class:Ct(["ph",s.value.radar.presence?"ph-user-square":"ph-square"])},null,2),s.value.radar.presence?(k(),G(Ee,{key:0},[N(O(s.value.radar.activity_score)+" ",1),s.value.radar.activity_score_dynamics==="increasing"?(k(),G("i",Cv)):s.value.radar.activity_score_dynamics==="decreasing"?(k(),G("i",Ev)):ne("",!0)],64)):ne("",!0)]),_:1})):ne("",!0),s.value.temperature?(k(),K(v(_e),{key:1,variant:"primary",size:"sm"},{default:x(()=>[m[2]||(m[2]=I("i",{class:"ph ph-thermometer"},null,-1)),N(" "+O(s.value.temperature.current)+"°C ",1),s.value.temperature.dynamics==="increasing"?(k(),G("i",Rv)):s.value.temperature.dynamics==="decreasing"?(k(),G("i",$v)):ne("",!0)]),_:1})):ne("",!0),s.value.humidity?(k(),K(v(_e),{key:2,variant:"primary",size:"sm"},{default:x(()=>[m[3]||(m[3]=I("i",{class:"ph ph-drop-half-bottom"},null,-1)),N(" "+O(s.value.humidity.current)+"% ",1),s.value.humidity.dynamics==="increasing"?(k(),G("i",Tv)):s.value.humidity.dynamics==="decreasing"?(k(),G("i",Pv)):ne("",!0)]),_:1})):ne("",!0),s.value.pressure?(k(),K(v(_e),{key:3,variant:"primary",size:"sm"},{default:x(()=>[N(O(s.value.pressure.current)+"hpa ",1),s.value.pressure.dynamics==="increasing"?(k(),G("i",Iv)):s.value.pressure.dynamics==="decreasing"?(k(),G("i",Lv)):ne("",!0)]),_:1})):ne("",!0),s.value.light?(k(),K(v(_e),{key:4,variant:"primary",size:"sm"},{default:x(()=>[m[4]||(m[4]=I("i",{class:"ph ph-lightbulb"},null,-1)),N(" "+O(s.value.light.percent)+"% ",1)]),_:1})):ne("",!0),s.value.microphone?(k(),K(v(_e),{key:5,variant:"primary",size:"sm"},{default:x(()=>[m[5]||(m[5]=I("i",{class:"ph ph-ear"},null,-1)),N(" "+O(s.value.microphone.current_noise)+"dBi ",1),s.value.microphone.noise_dynamics==="increasing"?(k(),G("i",Dv)):s.value.microphone.noise_dynamics==="decreasing"?(k(),G("i",Ov)):ne("",!0)]),_:1})):ne("",!0)],64)):e.deviceType==="hatch"?(k(),K(v(_e),{key:3,variant:i.value,size:"sm"},{default:x(()=>[N(O(r.value)+" ",1),l.value?(k(),G(Ee,{key:0},[N(" - "+O(o.value)+"%",1)],64)):ne("",!0)]),_:1},8,["variant"])):(k(),G(Ee,{key:4},[m[6]||(m[6]=I("span",{class:"unknown-type text-muted"},"Unknown type",-1)),c.value?(k(),G("pre",Fv,O(c.value),1)):ne("",!0)],64))])):(k(),K(v(_e),{key:4,variant:"secondary",size:"sm"},{default:x(()=>[...m[7]||(m[7]=[N("No data",-1)])]),_:1}))]))}},Fl=ze(Nv,[["__scopeId","data-v-08541c71"]]),Mv={class:"device-cell"},Uv=["innerHTML"],Vv={class:"device-info"},jv={class:"device-name-row"},Bv=["title"],Hv={class:"text-muted"},Gv=["title"],qv={key:1,class:"text-muted"},zv={__name:"DeviceTable",props:{devices:{type:Array,required:!0},showActions:{type:Boolean,default:!0},showLastContact:{type:Boolean,default:!0},caption:{type:String,default:"Devices"}},setup(e){const t=e,n=os(),a=wn(),s=jt(),r={relay:'',button:'',sensor:''},o=ee(()=>{const d=[{key:"device",label:"Device"},{key:"state",label:"State"}];return t.showLastContact&&d.push({key:"lastContact",label:"Last Contact"}),t.showActions&&d.push({key:"actions",label:"Actions"}),d});function i(d){return r[d]||r.relay}function l(d){return{active:"success",removed:"danger",freezed:"warning",setup:"primary"}[d]||"secondary"}function u(d){return n.stateByDeviceId[String(d.id)]||{status:"idle",message:"Not loaded",connectionStatus:d.connection_status||"unknown"}}async function c(d){var g;const f=t.devices.find(m=>String(m.id)===String(d)),_=await n.rebootDevice(d);_.ok?a.success({title:"Rebooting",text:`Device ${(f==null?void 0:f.name)||(f==null?void 0:f.alias)||"#"+d} is rebooting`}):a.error({title:"Reboot failed",text:((g=_.error)==null?void 0:g.message)||"Failed to reboot device"})}return(d,f)=>{const _=cn("router-link");return k(),K(v(Nn),{columns:o.value,rows:e.devices,caption:e.caption},Oo({"cell-device":x(({row:g})=>[R(_,{to:{name:"device-detail",params:{id:String(g.id)}},class:"device-link"},{default:x(()=>[I("div",Mv,[I("div",{class:"device-icon text-primary",innerHTML:i(g.device_type)},null,8,Uv),I("div",Vv,[I("div",jv,[I("strong",null,O(g.name||g.alias||`Device #${g.id}`),1),g.status&&g.status!=="active"?(k(),K(v(_e),{key:0,variant:l(g.status),size:"sm"},{default:x(()=>[N(O(g.status),1)]),_:2},1032,["variant"])):ne("",!0),I("span",{class:Ct(["status-dot",{"text-success":g.connection_status==="active","text-danger":g.connection_status!=="active"}]),"aria-hidden":"true",title:g.connection_status==="active"?"Online":"Offline"},null,10,Bv)]),I("small",Hv,O(g.alias)+" — "+O(g.device_ip||"—"),1)])])]),_:2},1032,["to"])]),"cell-state":x(({row:g})=>[R(Fl,{"device-type":g.device_type,response:u(g).response,loading:u(g).status==="loading",error:u(g).status==="error"?u(g).message:null,"connection-status":g.connection_status||"unknown"},null,8,["device-type","response","loading","error","connection-status"])]),"cell-lastContact":x(({row:g})=>[g.last_contact?(k(),G("span",{key:0,title:v(Ys)(g.last_contact)},O(v(Dl)(g.last_contact)),9,Gv)):(k(),G("span",qv,"—"))]),_:2},[e.showActions&&v(s).has("devices.control")?{name:"cell-actions",fn:x(({row:g})=>[R(v(de),{variant:"warning",icon:"ph-arrow-clockwise",size:"sm",loading:v(n).isRebooting(g.id),onClick:m=>c(g.id)},{default:x(()=>[...f[0]||(f[0]=[N(" Reboot ",-1)])]),_:1},8,["loading","onClick"])]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Nl=ze(zv,[["__scopeId","data-v-32549911"]]),Kv={class:"scope-name"},Wv={key:1,class:"muted"},Jv={key:1,class:"muted"},Yv={__name:"ScriptTable",props:{scripts:{type:Array,required:!0},scriptType:{type:String,default:"regular"},showArea:{type:Boolean,default:!1},showScope:{type:Boolean,default:!0},showFilename:{type:Boolean,default:!0},showActions:{type:Boolean,default:!0},caption:{type:String,default:"Scripts"}},setup(e){const t=e,n=Sn(),a=kt(),s=jt(),r=ee(()=>{const c={};for(const d of a.areas)c[d.id]=d;return c});function o(c){var d;return c.area_id?((d=r.value[c.area_id])==null?void 0:d.display_name)||`Area ${c.area_id}`:null}function i(c){const d=c.type||t.scriptType;return d==="action"?"actions":d==="scope"?"scopes":d}const l=ee(()=>{const c=[{key:"alias",label:"Alias"},{key:"name",label:"Name"}];return t.showScope&&c.push({key:"scope",label:"Scope"}),t.showArea&&c.push({key:"area",label:"Area"}),c.push({key:"state",label:"State"}),t.showFilename&&c.push({key:"filename",label:"File"}),t.showActions&&c.push({key:"actions",label:"Actions"}),c});function u(c,d,f){const _=f.type||t.scriptType;_==="action"?n.setActionState(c,d):_==="regular"&&n.setRegularState(c,d)}return(c,d)=>{const f=cn("router-link");return k(),K(v(Nn),{columns:l.value,rows:e.scripts,caption:e.caption},Oo({"cell-alias":x(({row:_})=>[R(f,{to:{name:"script-detail",params:{type:i(_),id:_.alias}},class:"script-link"},{default:x(()=>[N(O(_.alias),1)]),_:2},1032,["to"])]),"cell-scope":x(({row:_})=>[_.scope?(k(),K(f,{key:0,to:{name:"script-detail",params:{type:"scopes",id:_.scope}},class:"scope-link"},{default:x(()=>[d[0]||(d[0]=I("span",{class:"scope-label"},"Scope",-1)),I("span",Kv,O(_.scope),1),d[1]||(d[1]=I("i",{class:"ph ph-arrow-right"},null,-1))]),_:2},1032,["to"])):(k(),G("span",Wv,"—"))]),"cell-area":x(({row:_})=>[_.area_id?(k(),K(v(_e),{key:0,variant:"primary"},{default:x(()=>[N(O(o(_)),1)]),_:2},1024)):(k(),G("span",Jv,"—"))]),"cell-state":x(({row:_})=>[R(v(_e),{variant:_.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(_.state),1)]),_:2},1032,["variant"])]),_:2},[e.showActions&&v(s).has("scripts.edit")?{name:"cell-actions",fn:x(({row:_})=>[_.state==="enabled"?(k(),K(v(de),{key:0,variant:"secondary",icon:"ph-pause",onClick:g=>u(_.alias,!1,_)},{default:x(()=>[...d[2]||(d[2]=[N(" Disable ",-1)])]),_:1},8,["onClick"])):(k(),K(v(de),{key:1,variant:"primary",icon:"ph-play",onClick:g=>u(_.alias,!0,_)},{default:x(()=>[...d[3]||(d[3]=[N(" Enable ",-1)])]),_:1},8,["onClick"]))]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Ml=ze(Yv,[["__scopeId","data-v-1ead75a7"]]),Xv={class:"page-actions-dropdown"},Zv=["aria-expanded","onClick"],Tr={__name:"PageActionsDropdown",props:{items:{type:Array,required:!0}},setup(e){return(t,n)=>(k(),G("div",Xv,[R(v(ep),tl({items:e.items},t.$attrs),{trigger:x(({toggle:a,open:s})=>[I("button",{class:"btn-icon",type:"button","aria-label":"Actions","aria-expanded":s?"true":"false",onClick:a},[...n[0]||(n[0]=[I("i",{class:"ph ph-dots-three-vertical"},null,-1)])],8,Zv)]),_:1},16,["items"])]))}},Qv={key:0,class:"script-run-form"},eg={key:6,class:"field-error"},tg={__name:"ScriptRunModal",props:{open:{type:Boolean,default:!1},script:{type:Object,default:null}},emits:["update:open","run"],setup(e,{emit:t}){const n=e,a=t,s=z({}),r=z(new Set);function o(g,m){switch(g){case"text":case"textarea":return"";case"number":return 0;case"range":return m.min??0;case"select":{const h=Object.keys(m.options||{});return h.length?h[0]:""}case"toggle":return!1;default:return""}}function i(){var m;if(r.value=new Set,!((m=n.script)!=null&&m.params_schema)){s.value={};return}const g={};for(const[h,$]of Object.entries(n.script.params_schema))g[h]=$.default!==void 0?$.default:o($.type,$);s.value=g}wt(()=>n.open,g=>{g&&i()},{immediate:!0});function l(g){return g?Object.entries(g).map(([m,h])=>({value:m,label:h})):[]}function u(g,m){const h=s.value[g];return h==null?!0:m.type==="text"||m.type==="textarea"?String(h).trim()==="":!1}function c(g,m){return r.value.has(g)&&m.required&&u(g,m)?"error":null}function d(g,m){return r.value.has(g)&&m.required&&u(g,m)?`${m.label||g} is required`:null}const f=ee(()=>{var g;if(!((g=n.script)!=null&&g.params_schema))return!0;for(const[m,h]of Object.entries(n.script.params_schema))if(h.required&&u(m,h))return!1;return!0});function _(){var g;for(const m of Object.keys(((g=n.script)==null?void 0:g.params_schema)||{}))r.value.add(m);f.value&&(a("run",{alias:n.script.alias,params:{...s.value}}),a("update:open",!1))}return(g,m)=>{var h,$;return k(),K(v(tt),{open:e.open,title:`Run: ${((h=e.script)==null?void 0:h.name)??(($=e.script)==null?void 0:$.alias)??""}`,"onUpdate:open":m[1]||(m[1]=y=>g.$emit("update:open",y))},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:m[0]||(m[0]=y=>g.$emit("update:open",!1))},{default:x(()=>[...m[2]||(m[2]=[N(" Cancel ",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-play",disabled:!f.value,onClick:_},{default:x(()=>[...m[3]||(m[3]=[N(" Run ",-1)])]),_:1},8,["disabled"])]),default:x(()=>{var y;return[(y=e.script)!=null&&y.params_schema?(k(),G("div",Qv,[(k(!0),G(Ee,null,Vt(e.script.params_schema,(S,C)=>(k(),G("div",{key:C,class:"form-field"},[S.type==="text"?(k(),K(v(yt),{key:0,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C,placeholder:S.placeholder||"",state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","placeholder","state"])):S.type==="number"?(k(),K(v(yt),{key:1,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,modelModifiers:{number:!0},type:"number",label:S.label||C,placeholder:S.placeholder||"",state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","placeholder","state"])):S.type==="range"?(k(),K(v(lp),{key:2,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,modelModifiers:{number:!0},label:S.label||C,min:S.min??0,max:S.max??100,step:S.step??1,state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","min","max","step","state"])):S.type==="select"?(k(),K(v(rs),{key:3,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C,options:l(S.options),state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","options","state"])):S.type==="toggle"?(k(),K(v(kl),{key:4,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C},null,8,["modelValue","onUpdate:modelValue","label"])):S.type==="textarea"?(k(),K(v(up),{key:5,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C,placeholder:S.placeholder||"",state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","placeholder","state"])):ne("",!0),d(C,S)?(k(),G("p",eg,O(d(C,S)),1)):ne("",!0)]))),128))])):ne("",!0)]}),_:1},8,["open","title"])}}},Ul=ze(tg,[["__scopeId","data-v-c51fae66"]]),ng={class:"area-grid"},ag=["onClick"],sg=["innerHTML"],rg={key:1},ig={class:"script-meta"},og={key:2},lg={__name:"ActionScriptsGrid",props:{scripts:{type:Array,required:!0},showAreaBadge:{type:Boolean,default:!1}},emits:["run-success"],setup(e,{emit:t}){const n=e,a=t,s=en(),r=Sn(),o=kt(),i=wn(),l=jt(),u=z(!1),c=z(null),d=z(!1),f=z(null),_=z(""),g=z(""),m=z("warning");function h(E){return!E.area_id||!n.showAreaBadge?null:o.areas.find(T=>T.id===E.area_id)||null}function $(E){return E.danger_level==="dangerous"?"card-dangerous":E.danger_level==="cautious"?"card-cautious":""}function y(E){if(E.danger_level==="cautious"||E.danger_level==="dangerous"){f.value=E,_.value=`Run: ${E.name||E.alias}`,g.value=E.danger_level==="dangerous"?"This action is marked as dangerous. Are you sure you want to proceed?":"This action requires caution. Proceed?",m.value=E.danger_level==="dangerous"?"danger":"warning",d.value=!0;return}const T=E.params_schema;if(T&&Object.keys(T).length>0){c.value=E,u.value=!0;return}L(E.alias,{})}function S(){if(f.value){const E=f.value.params_schema;E&&Object.keys(E).length>0?(c.value=f.value,u.value=!0):L(f.value.alias,{}),f.value=null}}function C(){f.value=null}async function L(E,T){var Z,oe;const w=await r.runScript(E,T);w!=null&&w.ok?(i.success({title:`Ran ${E}`,text:(Z=r.lastRunResult)!=null&&Z.execTime?`Exec time: ${r.lastRunResult.execTime}`:void 0}),a("run-success",{alias:E})):i.error({title:`Failed ${E}`,text:((oe=w==null?void 0:w.error)==null?void 0:oe.message)||"Unknown error"})}function P(E){s.push({name:"script-detail",params:{type:"actions",id:E}})}return(E,T)=>(k(),G(Ee,null,[I("div",ng,[(k(!0),G(Ee,null,Vt(e.scripts,w=>(k(),G("div",{key:w.alias,class:Ct(["action-card-item",$(w)]),onClick:Z=>P(w.alias)},[R(v(Jf),{title:w.name},{default:x(()=>[w.icon?(k(),G("div",{key:0,innerHTML:w.icon,class:"script-icon"},null,8,sg)):ne("",!0),w.description?(k(),G("p",rg,O(w.description),1)):ne("",!0),I("div",ig,[R(v(_e),{variant:w.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(w.state),1)]),_:2},1032,["variant"]),w.scope?(k(),K(v(_e),{key:0,variant:"primary"},{default:x(()=>[N(O(w.scope),1)]),_:2},1024)):ne("",!0),e.showAreaBadge&&h(w)?(k(),K(v(_e),{key:1,variant:"primary"},{default:x(()=>[N(O(h(w).display_name),1)]),_:2},1024)):ne("",!0)]),w.created_by||w.author?(k(),G("small",og,O(w.created_by||w.author),1)):ne("",!0)]),actions:x(()=>[v(l).has("scripts.run")?(k(),K(v(de),{key:0,variant:"primary",icon:"ph-play",loading:v(r).isRunning(w.alias),disabled:w.state!=="enabled",onClick:Qa(Z=>y(w),["stop"])},{default:x(()=>[...T[3]||(T[3]=[N(" Run ",-1)])]),_:1},8,["loading","disabled","onClick"])):ne("",!0)]),_:2},1032,["title"])],10,ag))),128))]),c.value?(k(),K(Ul,{key:0,open:u.value,script:c.value,"onUpdate:open":T[0]||(T[0]=w=>u.value=w),onRun:T[1]||(T[1]=w=>L(w.alias,w.params))},null,8,["open","script"])):ne("",!0),R(v(Zf),{open:d.value,title:_.value,message:g.value,"confirm-variant":m.value,"onUpdate:open":T[2]||(T[2]=w=>d.value=w),onConfirm:S,onCancel:C},null,8,["open","title","message","confirm-variant"])],64))}},Vl=ze(lg,[["__scopeId","data-v-af9af307"]]),ug={class:"page"},cg={key:3},dg={class:"area-meta"},fg={class:"actions-panel"},pg={class:"block-title"},vg={class:"devices-panel"},gg={class:"block-title"},hg={class:"scripts-panel"},mg={class:"block-title"},yg={class:"form-group"},_g={key:0,class:"form-group"},bg={key:1,class:"form-group"},wg={key:2,class:"form-group"},Sg={key:0,class:"form-group"},kg={key:0,class:"form-group"},Ag={__name:"AreaDetailPage",setup(e){const t=as(),n=en(),a=kt(),s=os(),r=xr();Sn();const o=wn(),i=jt(),{showAssignModal:l,selectedAreaId:u,assignLoading:c,assignError:d,openAssign:f,submitAssignCore:_}=Er(),g=ee(()=>a.areasById[String(t.params.id)]||null),m=ee(()=>g.value?r.has(g.value.id):!1),h=ee(()=>{var F;const H=[];return i.has("areas.manage")&&(H.push({label:"Rename",icon:"ph-pencil",onSelect:ve}),((F=g.value)==null?void 0:F.parent_id)>0?H.push({label:"Change parent area",icon:"ph-map-pin",onSelect:Ge},{label:"Unassign from parent",icon:"ph-x-circle",onSelect:De}):H.push({label:"Assign to area",icon:"ph-map-pin",onSelect:Ge})),H.push({label:m.value?"Remove bookmark":"Bookmark",icon:m.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple",onSelect:()=>{var V;return r.toggle((V=g.value)==null?void 0:V.id)}}),i.has("areas.manage")&&H.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:Pe}),H}),$=ee(()=>!g.value||g.value.parent_id<=0?null:a.areasById[String(g.value.parent_id)]||null),y=ee(()=>a.currentAreaScripts.filter(H=>H.type==="action")),S=ee(()=>a.currentAreaScripts.filter(H=>H.type!=="action")),C=ee(()=>{if(!g.value)return!1;const H=!g.value.parent_id||g.value.parent_id<=0,F=a.areas.filter(V=>!V.parent_id||V.parent_id<=0).length;return H&&F===1});function L(H){const F=new Set,V=[H];for(;V.length;){const p=V.shift(),b=a.areas.filter(A=>A.parent_id===p);for(const A of b)F.add(A.id),V.push(A.id)}return F}const P=ee(()=>{if(!g.value)return[];const H=new Set([g.value.id,...L(g.value.id)]);return a.areas.filter(F=>!H.has(F.id)).map(F=>({value:String(F.id),label:`${F.display_name} (${F.type})`}))}),E=z(!1),T=z(!1),w=z(""),Z=Zt({areaId:null,display_name:""}),oe=z(!1),fe=z(""),ge=z(!1),B=z(""),J=z(!1),Q=z(""),Y=z(!1),te=z("");function ve(){g.value&&(Z.areaId=g.value.id,Z.display_name=g.value.display_name,w.value="",E.value=!0)}async function ke(){var F;T.value=!0,w.value="";const H=await a.renameArea(Z.areaId,Z.display_name);if(T.value=!1,!H.ok){w.value=((F=H.error)==null?void 0:F.message)||"Failed to rename area";return}E.value=!1,o.success({title:"Renamed",text:"Area renamed successfully"})}function Pe(){g.value&&(fe.value=`Are you sure you want to remove area "${g.value.display_name}"?`,B.value="",oe.value=!0)}async function be(){var F;if(!g.value)return;ge.value=!0,B.value="";const H=await a.removeArea(g.value.id);if(ge.value=!1,!H.ok){B.value=((F=H.error)==null?void 0:F.message)||"Failed to remove area";return}oe.value=!1,o.success({title:"Removed",text:"Area removed successfully"}),n.push({name:"areas-tree"})}function Ge(){var H;f(((H=g.value)==null?void 0:H.parent_id)>0?g.value.parent_id:"")}async function Ue(){var V;const H=(V=g.value)==null?void 0:V.id,F=await _(H,(p,b)=>a.assignToArea(p,b));F!=null&&F.ok&&o.success({title:"Assigned",text:"Area assigned successfully"})}function De(){g.value&&(Q.value=`Are you sure you want to unassign area "${g.value.display_name}" from its parent?`,te.value="",J.value=!0)}async function Oe(){var F;if(!g.value)return;Y.value=!0,te.value="";const H=await a.unassignArea(g.value.id);if(Y.value=!1,!H.ok){te.value=((F=H.error)==null?void 0:F.message)||"Failed to unassign area";return}J.value=!1,o.success({title:"Unassigned",text:"Area unassigned from parent successfully"})}async function M(){a.currentAreaDevices.length>0&&await s.loadStatesFor(a.currentAreaDevices)}async function se(){const H=t.params.id;H&&(a.areas.length===0&&await a.loadAreas(),a.areasById[String(H)]&&(await a.loadAreaDetail(H),await M()))}return wt(()=>t.params.id,async(H,F)=>{H&&H!==F&&await se()},{immediate:!1}),bt(()=>{se()}),ha(()=>{a.clearAreaDetail()}),(H,F)=>(k(),G("section",ug,[v(a).isLoading||v(a).isLoadingAreaDetail?(k(),K(St,{key:0,text:"Loading area"})):v(a).error&&!v(a).areas.length?(k(),K(pt,{key:1,title:"Areas loading failed",error:v(a).error,retry:se},null,8,["error"])):v(a).errorAreaDetail?(k(),K(pt,{key:2,title:"Area loading failed",error:v(a).errorAreaDetail,retry:se},null,8,["error"])):g.value?(k(),G("div",cg,[R(v($t),{title:g.value.display_name,kicker:"Area"},{actions:x(()=>[R(Tr,{items:h.value},null,8,["items"])]),_:1},8,["title"]),I("div",dg,[R(v(_e),{variant:"secondary"},{default:x(()=>[N(O(g.value.type),1)]),_:1}),I("code",null,O(g.value.alias),1),R(Rr,{area:$.value,areaId:g.value.parent_id},null,8,["area","areaId"])]),I("div",fg,[I("div",pg,"Actions ("+O(y.value.length)+")",1),y.value.length===0?(k(),K(it,{key:0,title:"No actions",message:"No action scripts assigned to this area."})):(k(),K(Vl,{key:1,scripts:y.value,onRunSuccess:M},null,8,["scripts"]))]),I("div",vg,[I("div",gg,"Devices ("+O(v(a).currentAreaDevices.length)+")",1),v(a).currentAreaDevices.length===0?(k(),K(it,{key:0,title:"No devices",message:"No devices assigned to this area."})):(k(),K(Nl,{key:1,devices:v(a).currentAreaDevices,caption:"Area devices"},null,8,["devices"]))]),R($r,{areaId:g.value.parent_id>0?g.value.parent_id:null,title:"Parent area",emptyMessage:"This area is not assigned to any parent area.",onAssign:Ge},{action:x(()=>[v(i).has("areas.manage")?(k(),K(v(de),{key:0,variant:"primary",icon:"ph-map-pin",onClick:Ge},{default:x(()=>[N(O(g.value.parent_id>0?"Change parent area":"Assign to area"),1)]),_:1})):ne("",!0)]),_:1},8,["areaId"]),I("div",hg,[I("div",mg,"Regular scripts ("+O(S.value.length)+")",1),S.value.length===0?(k(),K(it,{key:0,title:"No regular scripts",message:"No regular scripts assigned to this area."})):(k(),K(Ml,{key:1,scripts:S.value,scriptType:"regular",showArea:!1,showActions:!1,showFilename:!1,caption:"Area regular scripts"},null,8,["scripts"]))])])):(k(),K(it,{key:4,title:"Area not found",message:"The requested area does not exist."})),R(v(tt),{open:E.value,title:"Rename area","onUpdate:open":F[2]||(F[2]=V=>E.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[1]||(F[1]=V=>E.value=!1)},{default:x(()=>[...F[10]||(F[10]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:T.value,onClick:ke},{default:x(()=>[...F[11]||(F[11]=[N("Rename",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",yg,[R(v(yt),{modelValue:Z.display_name,"onUpdate:modelValue":F[0]||(F[0]=V=>Z.display_name=V),label:"Display name"},null,8,["modelValue"])]),w.value?(k(),G("div",_g,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(w.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:v(l),title:"Assign to parent area","onUpdate:open":F[5]||(F[5]=V=>l.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[4]||(F[4]=V=>l.value=!1)},{default:x(()=>[...F[13]||(F[13]=[N("Cancel",-1)])]),_:1}),C.value?ne("",!0):(k(),K(v(de),{key:0,variant:"primary",icon:"ph-check",loading:v(c),onClick:Ue},{default:x(()=>[...F[14]||(F[14]=[N(" Assign ",-1)])]),_:1},8,["loading"]))]),default:x(()=>[C.value?ne("",!0):(k(),K(v(rs),{key:0,modelValue:v(u),"onUpdate:modelValue":F[3]||(F[3]=V=>Ve(u)?u.value=V:null),label:"Parent area",options:P.value,icon:"ph-map-trifold"},null,8,["modelValue","options"])),C.value?(k(),G("div",bg,[R(v(Ze),{variant:"warning"},{default:x(()=>[...F[12]||(F[12]=[N(" This is the last root area and cannot be assigned as a child. At least one root area must remain. ",-1)])]),_:1})])):ne("",!0),v(d)?(k(),G("div",wg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(v(d)),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:J.value,title:"Unassign from parent","onUpdate:open":F[7]||(F[7]=V=>J.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[6]||(F[6]=V=>J.value=!1)},{default:x(()=>[...F[15]||(F[15]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"warning",icon:"ph-x-circle",loading:Y.value,onClick:Oe},{default:x(()=>[...F[16]||(F[16]=[N(" Unassign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(Q.value),1),te.value?(k(),G("div",Sg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(te.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:oe.value,title:"Remove area","onUpdate:open":F[9]||(F[9]=V=>oe.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[8]||(F[8]=V=>oe.value=!1)},{default:x(()=>[...F[17]||(F[17]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"danger",icon:"ph-trash",loading:ge.value,onClick:be},{default:x(()=>[...F[18]||(F[18]=[N(" Remove ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(fe.value),1),B.value?(k(),G("div",kg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(B.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"])]))}},xg=ze(Ag,[["__scopeId","data-v-757a0469"]]),Cg={class:"page"},Eg={key:3,class:"devices-panel"},Rg={class:"devices-summary"},$g=300*1e3,Tg={__name:"DevicesListPage",setup(e){const t=os(),n=ee(()=>{if(!t.lastLoadedAt)return!1;const s=new Date(t.lastLoadedAt).getTime();return Date.now()-s>$g});async function a(){(await t.loadDevices()).ok&&await t.loadDeviceStates()}return bt(a),(s,r)=>(k(),G("section",Cg,[R(v($t),{title:"Device Matrix",kicker:"Devices"},{actions:x(()=>[R(v(de),{loading:v(t).isLoading||v(t).isLoadingStates,icon:"ph-arrow-clockwise",onClick:a},{default:x(()=>[...r[0]||(r[0]=[N(" Refresh ",-1)])]),_:1},8,["loading"])]),_:1}),v(t).isLoading?(k(),K(St,{key:0,text:"Loading devices"})):v(t).error?(k(),K(pt,{key:1,title:"Devices loading failed",error:v(t).error,retry:a},null,8,["error"])):v(t).devices.length===0?(k(),K(it,{key:2,title:"No active devices",message:"No active devices found."})):(k(),G("div",Eg,[I("div",Rg,[R(v(_e),{variant:"primary"},{default:x(()=>[N("Total: "+O(v(t).total),1)]),_:1}),v(t).isLoadingStates?(k(),K(v(_e),{key:0,variant:"secondary"},{default:x(()=>[...r[1]||(r[1]=[N("States loading",-1)])]),_:1})):(k(),K(v(_e),{key:1,variant:"success"},{default:x(()=>[...r[2]||(r[2]=[N("States settled",-1)])]),_:1})),n.value?(k(),K(v(_e),{key:2,variant:"warning"},{default:x(()=>[...r[3]||(r[3]=[N("Stale data",-1)])]),_:1})):ne("",!0)]),v(t).stateError?(k(),K(pt,{key:0,title:"Device states loading failed",error:v(t).stateError},null,8,["error"])):ne("",!0),R(Nl,{devices:v(t).devices,caption:"Registered devices"},null,8,["devices"])]))]))}},Pg=ze(Tg,[["__scopeId","data-v-635f3900"]]),Ig=bn("scanning",()=>{const e=z("setup"),t=z([]),n=gt(),a=ee(()=>t.value.length);async function s(){return n.execute(async i=>{var u,c;const l=e.value==="setup"?await at.scanningSetup({signal:i}):await at.scanningAll({signal:i});return l.ok&&(t.value=((c=(u=l.data)==null?void 0:u.data)==null?void 0:c.devices)||[]),l})}function r(i){e.value=i,t.value=[],n.clear()}async function o(i){return at.setupNewDevice(i)}return{mode:e,devices:t,isLoading:n.isLoading,error:n.error,total:a,scan:s,setMode:r,setupDevice:o}}),Lg={class:"page"},Dg={class:"scan-filters"},Og={key:3,class:"devices-panel"},Fg={class:"devices-summary"},Ng={class:"device-cell"},Mg=["innerHTML"],Ug={class:"device-info"},Vg={class:"firmware"},jg={key:1,class:"muted"},Bg={class:"form-group"},Hg={class:"form-group"},Gg={class:"form-group"},qg={key:0,class:"form-group"},zg={__name:"DevicesScanningPage",setup(e){const t=Ig(),n=wn(),a=jt(),s=z(!1),r=z(!1),o=z(""),i=Zt({device_ip:"",alias:"",name:"",description:""}),l={relay:'',button:'',sensor:''},u=[{key:"device",label:"Device"},{key:"status",label:"Status"},{key:"firmware",label:"Firmware"},{key:"actions",label:"Actions"}];function c(m){return l[m]||l.relay}function d(m){t.setMode(m)}function f(){t.scan()}function _(m){i.device_ip=m.ip_address,i.alias="",i.name="",i.description="",o.value="",s.value=!0}async function g(){var h;r.value=!0,o.value="";const m=await t.setupDevice({...i});if(r.value=!1,!m.ok){o.value=((h=m.error)==null?void 0:h.message)||"Failed to setup device";return}s.value=!1,n.success({title:"Device added",text:`Device ${i.alias||i.name||""} added successfully`})}return(m,h)=>(k(),G("section",Lg,[R(v($t),{title:"Scanning",kicker:"Devices"},{actions:x(()=>[R(v(de),{loading:v(t).isLoading,icon:"ph-magnifying-glass",onClick:f},{default:x(()=>[...h[7]||(h[7]=[N(" Scan ",-1)])]),_:1},8,["loading"])]),_:1}),I("div",Dg,[h[10]||(h[10]=I("span",{class:"filter-label text-muted"},"Mode:",-1)),R(v(Li),{selected:v(t).mode==="setup",clickable:"",icon:"ph-plug",onClick:h[0]||(h[0]=$=>d("setup"))},{default:x(()=>[...h[8]||(h[8]=[N(" Setup ",-1)])]),_:1},8,["selected"]),R(v(Li),{selected:v(t).mode==="all",clickable:"",icon:"ph-scan",onClick:h[1]||(h[1]=$=>d("all"))},{default:x(()=>[...h[9]||(h[9]=[N(" All ",-1)])]),_:1},8,["selected"])]),v(t).isLoading?(k(),K(St,{key:0,text:"Scanning network"})):v(t).error?(k(),K(pt,{key:1,title:"Scan failed",error:v(t).error,retry:f},null,8,["error"])):v(t).devices.length===0?(k(),K(it,{key:2,title:"No devices found",message:"Choose scan mode and click Scan to discover devices."})):(k(),G("div",Og,[I("div",Fg,[R(v(_e),{variant:"primary"},{default:x(()=>[N(O(v(t).total)+" found",1)]),_:1})]),R(v(Nn),{columns:u,rows:v(t).devices,caption:"Discovered devices"},{"cell-device":x(({row:$})=>[I("div",Ng,[I("div",{class:"device-icon",innerHTML:c($.device_type)},null,8,Mg),I("div",Ug,[I("strong",null,O($.device_name||"Unknown"),1),I("small",null,O($.device_type||"unknown")+" — "+O($.ip_address||"—"),1)])])]),"cell-status":x(({row:$})=>[R(v(_e),{variant:$.status==="setup"?"warning":"success"},{default:x(()=>[N(O($.status||"unknown"),1)]),_:2},1032,["variant"])]),"cell-firmware":x(({row:$})=>[I("span",Vg,O($.firmware_version||"—"),1)]),"cell-actions":x(({row:$})=>[$.status==="setup"&&v(a).has("devices.setup")?(k(),K(v(de),{key:0,variant:"primary",icon:"ph-plus",size:"sm",onClick:y=>_($)},{default:x(()=>[...h[11]||(h[11]=[N(" Add ",-1)])]),_:1},8,["onClick"])):(k(),G("span",jg,"—"))]),_:1},8,["rows"])])),R(v(tt),{open:s.value,title:"Setup new device","onUpdate:open":h[6]||(h[6]=$=>s.value=$)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:h[5]||(h[5]=$=>s.value=!1)},{default:x(()=>[...h[12]||(h[12]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:g},{default:x(()=>[...h[13]||(h[13]=[N(" Add device ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",Bg,[R(v(yt),{modelValue:i.alias,"onUpdate:modelValue":h[2]||(h[2]=$=>i.alias=$),label:"Alias",placeholder:"kitchen_relay"},null,8,["modelValue"])]),I("div",Hg,[R(v(yt),{modelValue:i.name,"onUpdate:modelValue":h[3]||(h[3]=$=>i.name=$),label:"Name",placeholder:"Kitchen Relay"},null,8,["modelValue"])]),I("div",Gg,[R(v(yt),{modelValue:i.description,"onUpdate:modelValue":h[4]||(h[4]=$=>i.description=$),label:"Description"},null,8,["modelValue"])]),o.value?(k(),G("div",qg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(o.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"])]))}},Kg=ze(zg,[["__scopeId","data-v-1a01bb19"]]);function Vi(e){return encodeURIComponent(String(e))}const zn={async list(){return Fe("/api/v1/firmwares")},async detail(e){return Fe(`/api/v1/firmwares/id/${Vi(e)}`)},async refresh(){return Qe("/api/v1/firmwares/refresh")},async deviceCompatibility(e){return Fe(`/api/v1/devices/id/${Vi(e)}/firmware-compatibility`)},async updateDeviceFirmware(e,t){return Qe("/api/v1/devices/update-firmware",{device_id:e,firmware_id:t})}},jl=bn("firmwares",()=>{const e=z([]),t=z(null),n=z(null),a=gt(),s=gt(),r=gt(),o=gt(),i=ee(()=>a.isLoading.value),l=ee(()=>s.isLoading.value),u=ee(()=>r.isLoading.value),c=ee(()=>o.isLoading.value);async function d(){return a.execute(async $=>{var S,C;const y=await zn.list({signal:$});return y.ok&&(e.value=((C=(S=y.data)==null?void 0:S.data)==null?void 0:C.firmwares)||[]),y})}async function f(){return r.execute(async()=>{const $=await zn.refresh();return $.ok&&await d(),$})}async function _($){return s.execute(async y=>{var C,L;const S=await zn.detail($,{signal:y});return S.ok&&(t.value=((L=(C=S.data)==null?void 0:C.data)==null?void 0:L.firmware)||null),S})}async function g($){return o.execute(async y=>{var C,L,P,E;const S=await zn.deviceCompatibility($,{signal:y});return S.ok&&(n.value={compatible:((L=(C=S.data)==null?void 0:C.data)==null?void 0:L.compatible)||[],currentVersion:((E=(P=S.data)==null?void 0:P.data)==null?void 0:E.current_version)||"unknown"}),S})}async function m($,y){return r.execute(async()=>zn.updateDeviceFirmware($,y))}function h(){n.value=null}return{firmwares:e,current:t,compatibility:n,isLoadingList:i,isLoadingDetail:l,isUpdating:u,isLoadingCompatibility:c,loadFirmwares:d,refreshFirmwares:f,loadFirmwareDetail:_,loadDeviceCompatibility:g,updateDeviceFirmware:m,clearCompatibility:h}}),Wg={class:"page"},Jg={key:2},Yg={class:"device-meta"},Xg={class:"script-info-panel"},Zg={class:"info-row"},Qg={class:"info-value"},eh={class:"info-row"},th={class:"info-value"},nh={class:"info-row"},ah={class:"info-value"},sh={class:"info-row"},rh={class:"info-value"},ih={class:"info-row"},oh={class:"info-value"},lh={class:"info-row"},uh={class:"info-value"},ch={class:"info-row"},dh={class:"info-value"},fh={key:0,class:"info-row"},ph=["title"],vh={key:1,class:"info-row"},gh={class:"info-value"},hh={key:0,class:"devices-panel"},mh={key:1,class:"devices-panel"},yh={class:"form-group"},_h={class:"form-group"},bh={class:"form-group"},wh={key:0,class:"form-group"},Sh={key:0,class:"form-group"},kh={key:0,class:"form-group"},Ah={key:0,class:"form-group"},xh={key:0,class:"form-group"},Ch={key:0,class:"form-group"},Eh={class:"firmware-options"},Rh=["onClick"],$h={class:"fw-version"},Th={key:0,class:"fw-desc"},Ph={key:0,class:"form-group"},Ih={__name:"DeviceDetailPage",setup(e){const t=as(),n=en(),a=os(),s=kt(),r=jl(),o=wn(),i=jt(),{areaOptions:l,showAssignModal:u,selectedAreaId:c,assignLoading:d,assignError:f,openAssign:_,submitAssignCore:g}=Er(),m=ee(()=>t.params.id),h=ee(()=>a.currentDevice),$=ee(()=>a.isLoadingDetail),y=ee(()=>a.errorDetail),S=z(!1),C=z(null),L=ee(()=>{var D;const ie=(D=h.value)==null?void 0:D.area_id;return ie&&s.areasById[String(ie)]||null}),P=z(!1),E=z(!1),T=z(""),w=Zt({name:"",description:"",alias:""}),Z=z(!1),oe=z(""),fe=z(!1),ge=z(""),B=z(!1),J=z(""),Q=z(!1),Y=z(""),te=z(!1),ve=z(""),ke=z(!1),Pe=z(""),be=z(!1),Ge=z(""),Ue=z(!1),De=z(""),Oe=z(!1),M=z(null),se=z(""),H=ee(()=>{var ie,D;return(((D=(ie=r.compatibility)==null?void 0:ie.compatible)==null?void 0:D.length)||0)>0}),F=ee(()=>{var ie;return((ie=r.compatibility)==null?void 0:ie.compatible)||[]}),V=ee(()=>{var D,Le;const ie=[];return i.has("devices.edit")&&(ie.push({label:"Edit",icon:"ph-pencil",onSelect:p}),(D=h.value)!=null&&D.area_id?ie.push({label:"Change area",icon:"ph-map-pin",onSelect:A},{label:"Unassign from area",icon:"ph-x-circle",onSelect:W}):ie.push({label:"Assign to area",icon:"ph-map-pin",onSelect:A})),i.has("devices.setup")&&ie.push({label:"ReSetup",icon:"ph-gear",onSelect:X}),i.has("devices.control")&&ie.push({label:"Reboot",icon:"ph-arrow-clockwise",disabled:a.isRebooting((Le=h.value)==null?void 0:Le.id),onSelect:ae}),i.has("devices.edit")&&ie.push({label:"Reset",icon:"ph-x",danger:!0,onSelect:ue}),i.has("devices.delete")&&ie.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:le}),ie});function p(){h.value&&(w.name=h.value.name||"",w.description=h.value.description||"",w.alias=h.value.alias||"",T.value="",P.value=!0)}async function b(){var et,he,Je,Ke;E.value=!0,T.value="";const ie=m.value,D=await Promise.all([w.name!==((et=h.value)==null?void 0:et.name)?a.updateDeviceName(ie,w.name):{ok:!0},w.description!==((he=h.value)==null?void 0:he.description)?a.updateDeviceDescription(ie,w.description):{ok:!0},w.alias!==((Je=h.value)==null?void 0:Je.alias)?a.updateDeviceAlias(ie,w.alias):{ok:!0}]);E.value=!1;const Le=D.find(Vn=>!Vn.ok);if(Le){T.value=((Ke=Le.error)==null?void 0:Ke.message)||"Failed to update device";return}P.value=!1,o.success({title:"Updated",text:"Device updated successfully"})}function A(){var ie;_((ie=h.value)==null?void 0:ie.area_id)}async function j(){const ie=await g(m.value,a.assignToArea.bind(a));ie!=null&&ie.ok&&o.success({title:"Assigned",text:"Device assigned to area successfully"})}function W(){h.value&&(J.value=`Are you sure you want to unassign device "${h.value.name||h.value.alias}" from its area?`,Y.value="",B.value=!0)}async function q(){var D;if(!h.value)return;Q.value=!0,Y.value="";const ie=await a.unassignDevice(m.value);if(Q.value=!1,!ie.ok){Y.value=((D=ie.error)==null?void 0:D.message)||"Failed to unassign device";return}B.value=!1,o.success({title:"Unassigned",text:"Device unassigned from area successfully"})}function le(){h.value&&(oe.value=`Are you sure you want to remove device "${h.value.name||h.value.alias}"?`,ge.value="",Z.value=!0)}async function re(){var Le;const ie=m.value;fe.value=!0,ge.value="";const D=await a.removeDevice(ie);if(fe.value=!1,!D.ok){ge.value=((Le=D.error)==null?void 0:Le.message)||"Failed to remove device";return}Z.value=!1,o.success({title:"Removed",text:"Device removed successfully"}),n.push({name:"devices"})}async function ae(){var D;if(!h.value)return;const ie=await a.rebootDevice(h.value.id);ie.ok?o.success({title:"Rebooting",text:`Device ${h.value.name||h.value.alias||"#"+h.value.id} is rebooting`}):o.error({title:"Reboot failed",text:((D=ie.error)==null?void 0:D.message)||"Failed to reboot device"})}function X(){h.value&&(ve.value=`Are you sure you want to repeat setup for device "${h.value.name||h.value.alias}"?`,Pe.value="",te.value=!0)}async function pe(){var Le,et,he;const ie=m.value;ke.value=!0,Pe.value="";const D=await a.resetupDevice(ie);if(ke.value=!1,!D.ok){Pe.value=((Le=D.error)==null?void 0:Le.message)||"Failed to repeat device setup";return}te.value=!1,o.success({title:"Success",text:`Device ${((et=h.value)==null?void 0:et.name)||((he=h.value)==null?void 0:he.alias)||"#"+ie} setup repeated`}),n.push({name:"devices"})}function ue(){h.value&&(Ge.value=`Are you sure you want to reset device "${h.value.name||h.value.alias}"?`,De.value="",be.value=!0)}async function ce(){var Le,et,he;const ie=m.value;Ue.value=!0,De.value="";const D=await a.resetDevice(ie);if(Ue.value=!1,!D.ok){De.value=((Le=D.error)==null?void 0:Le.message)||"Failed to reset device";return}be.value=!1,o.success({title:"Success",text:`Device ${((et=h.value)==null?void 0:et.name)||((he=h.value)==null?void 0:he.alias)||"#"+ie} reset`}),n.push({name:"devices"})}function me(){var ie;M.value=((ie=F.value[0])==null?void 0:ie.id)||null,se.value="",Oe.value=!0}async function Se(){var D;if(!M.value||!h.value)return;const ie=await r.updateDeviceFirmware(h.value.id,M.value);if(!ie.ok){se.value=((D=ie.error)==null?void 0:D.message)||"Firmware update failed";return}Oe.value=!1,o.success({title:"Updated",text:"Firmware update pushed successfully"}),await a.loadDeviceDetail(m.value)}function $e(ie){return{active:"success",removed:"danger",freezed:"warning",setup:"primary"}[ie]||"secondary"}async function Ie(){const ie=m.value;if(!ie||!h.value||h.value.connection_status!=="active")return;S.value=!0,C.value=null;const D=await a.loadDeviceStatus(ie);S.value=!1,D.ok||(C.value=D.error)}async function Be(){var D;const ie=m.value;ie&&(s.areas.length===0&&await s.loadAreas(),await a.loadDeviceDetail(ie),((D=h.value)==null?void 0:D.connection_status)==="active"&&(await Ie(),await r.loadDeviceCompatibility(ie)))}return bt(()=>{Be()}),ha(()=>{a.clearDeviceDetail(),r.clearCompatibility()}),wt(()=>t.params.id,(ie,D)=>{ie!==D&&(a.clearDeviceDetail(),Be())}),(ie,D)=>{var Le,et;return k(),G("section",Wg,[$.value?(k(),K(St,{key:0,text:"Loading device details"})):y.value?(k(),K(pt,{key:1,title:"Device loading failed",error:y.value,retry:Be},null,8,["error"])):h.value?(k(),G("div",Jg,[R(v($t),{title:h.value.name||h.value.alias||`Device #${h.value.id}`,kicker:"Device"},{actions:x(()=>[R(Tr,{items:V.value},null,8,["items"])]),_:1},8,["title"]),I("div",Yg,[R(v(_e),{variant:h.value.connection_status==="active"?"success":"danger"},{default:x(()=>[N(O(h.value.connection_status==="active"?"Online":"Offline"),1)]),_:1},8,["variant"]),I("code",null,O(h.value.alias),1),R(Rr,{area:L.value,areaId:h.value.area_id},null,8,["area","areaId"])]),I("div",Xg,[I("div",Zg,[D[18]||(D[18]=I("span",{class:"info-label text-muted"},"System status:",-1)),I("span",Qg,[R(v(_e),{variant:$e(h.value.status)},{default:x(()=>[N(O(h.value.status),1)]),_:1},8,["variant"])])]),I("div",eh,[D[19]||(D[19]=I("span",{class:"info-label text-muted"},"Type:",-1)),I("span",th,O(h.value.device_type),1)]),I("div",nh,[D[20]||(D[20]=I("span",{class:"info-label text-muted"},"State:",-1)),I("span",ah,[R(Fl,{"device-type":h.value.device_type,response:(Le=v(a).currentDeviceStatus)==null?void 0:Le.raw,loading:S.value,error:(et=C.value)==null?void 0:et.message,"connection-status":h.value.connection_status},null,8,["device-type","response","loading","error","connection-status"])])]),I("div",sh,[D[21]||(D[21]=I("span",{class:"info-label text-muted"},"IP:",-1)),I("span",rh,O(h.value.device_ip),1)]),I("div",ih,[D[22]||(D[22]=I("span",{class:"info-label text-muted"},"MAC:",-1)),I("span",oh,O(h.value.device_mac),1)]),I("div",lh,[D[23]||(D[23]=I("span",{class:"info-label text-muted"},"Hard ID:",-1)),I("span",uh,O(h.value.device_hard_id),1)]),I("div",ch,[D[24]||(D[24]=I("span",{class:"info-label text-muted"},"Firmware:",-1)),I("span",dh,O(h.value.firmware_version),1)]),h.value.last_contact?(k(),G("div",fh,[D[25]||(D[25]=I("span",{class:"info-label text-muted"},"Last contact:",-1)),I("span",{class:"info-value",title:v(Ys)(h.value.last_contact)},O(v(Dl)(h.value.last_contact)),9,ph)])):ne("",!0),h.value.create_at?(k(),G("div",vh,[D[26]||(D[26]=I("span",{class:"info-label text-muted"},"Created:",-1)),I("span",gh,O(v(Ys)(h.value.create_at)),1)])):ne("",!0)]),R($r,{item:h.value,emptyMessage:"This device is not assigned to any area.",onAssign:A},{action:x(()=>[v(i).has("devices.edit")?(k(),K(v(de),{key:0,variant:"primary",icon:"ph-map-pin",onClick:A},{default:x(()=>{var he;return[N(O((he=h.value)!=null&&he.area_id?"Change area":"Assign to area"),1)]}),_:1})):ne("",!0)]),_:1},8,["item"]),H.value&&v(i).has("firmware.upload")?(k(),G("div",hh,[D[29]||(D[29]=I("div",{class:"block-title"},"Firmware Update",-1)),R(v(Ze),{variant:"info"},{default:x(()=>[D[27]||(D[27]=N(" New firmware available: ",-1)),(k(!0),G(Ee,null,Vt(F.value,he=>(k(),K(v(_e),{key:he.id,variant:"success"},{default:x(()=>[N(O(he.version),1)]),_:2},1024))),128))]),_:1}),R(v(de),{variant:"primary",icon:"ph-cloud-arrow-down",onClick:me},{default:x(()=>[...D[28]||(D[28]=[N(" Update Firmware ",-1)])]),_:1})])):ne("",!0),h.value.description?(k(),G("div",mh,[D[30]||(D[30]=I("div",{class:"block-title"},"Description",-1)),I("p",null,O(h.value.description),1)])):ne("",!0)])):(k(),K(it,{key:3,title:"Device not found",message:"The requested device does not exist."})),R(v(tt),{open:P.value,title:"Edit device","onUpdate:open":D[4]||(D[4]=he=>P.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[3]||(D[3]=he=>P.value=!1)},{default:x(()=>[...D[31]||(D[31]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:E.value,onClick:b},{default:x(()=>[...D[32]||(D[32]=[N(" Save ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",yh,[R(v(yt),{modelValue:w.name,"onUpdate:modelValue":D[0]||(D[0]=he=>w.name=he),label:"Name"},null,8,["modelValue"])]),I("div",_h,[R(v(yt),{modelValue:w.description,"onUpdate:modelValue":D[1]||(D[1]=he=>w.description=he),label:"Description"},null,8,["modelValue"])]),I("div",bh,[R(v(yt),{modelValue:w.alias,"onUpdate:modelValue":D[2]||(D[2]=he=>w.alias=he),label:"Alias"},null,8,["modelValue"])]),T.value?(k(),G("div",wh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(T.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:v(u),title:"Assign to area","onUpdate:open":D[7]||(D[7]=he=>u.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[6]||(D[6]=he=>u.value=!1)},{default:x(()=>[...D[33]||(D[33]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:v(d),onClick:j},{default:x(()=>[...D[34]||(D[34]=[N(" Assign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[R(v(rs),{modelValue:v(c),"onUpdate:modelValue":D[5]||(D[5]=he=>Ve(c)?c.value=he:null),label:"Area",options:v(l),icon:"ph-map-trifold"},null,8,["modelValue","options"]),v(f)?(k(),G("div",Sh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(v(f)),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:B.value,title:"Unassign from area","onUpdate:open":D[9]||(D[9]=he=>B.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[8]||(D[8]=he=>B.value=!1)},{default:x(()=>[...D[35]||(D[35]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"warning",icon:"ph-x-circle",loading:Q.value,onClick:q},{default:x(()=>[...D[36]||(D[36]=[N(" Unassign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(J.value),1),Y.value?(k(),G("div",kh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(Y.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:Z.value,title:"Remove device","onUpdate:open":D[11]||(D[11]=he=>Z.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[10]||(D[10]=he=>Z.value=!1)},{default:x(()=>[...D[37]||(D[37]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"danger",icon:"ph-trash",loading:fe.value,onClick:re},{default:x(()=>[...D[38]||(D[38]=[N(" Remove ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(oe.value),1),ge.value?(k(),G("div",Ah,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(ge.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:te.value,title:"Repeat device setup","onUpdate:open":D[13]||(D[13]=he=>te.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[12]||(D[12]=he=>te.value=!1)},{default:x(()=>[...D[39]||(D[39]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-gear",loading:ke.value,onClick:pe},{default:x(()=>[...D[40]||(D[40]=[N(" ReSetup ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(ve.value),1),Pe.value?(k(),G("div",xh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(Pe.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:be.value,title:"Reset device","onUpdate:open":D[15]||(D[15]=he=>be.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[14]||(D[14]=he=>be.value=!1)},{default:x(()=>[...D[41]||(D[41]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"danger",icon:"ph-x",loading:Ue.value,onClick:ce},{default:x(()=>[...D[42]||(D[42]=[N(" Reset ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(Ge.value),1),De.value?(k(),G("div",Ch,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(De.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:Oe.value,title:"Update Firmware","onUpdate:open":D[17]||(D[17]=he=>Oe.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[16]||(D[16]=he=>Oe.value=!1)},{default:x(()=>[...D[45]||(D[45]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:v(r).isUpdating,disabled:!M.value,onClick:Se},{default:x(()=>[...D[46]||(D[46]=[N(" Update ",-1)])]),_:1},8,["loading","disabled"])]),default:x(()=>{var he,Je;return[I("p",null,[D[43]||(D[43]=N("Select firmware to install on ",-1)),I("strong",null,O(((he=h.value)==null?void 0:he.name)||((Je=h.value)==null?void 0:Je.alias)),1),D[44]||(D[44]=N(":",-1))]),I("div",Eh,[(k(!0),G(Ee,null,Vt(F.value,Ke=>(k(),G("div",{key:Ke.id,class:Ct(["firmware-option",{active:M.value===Ke.id}]),onClick:Vn=>M.value=Ke.id},[I("div",$h,O(Ke.version),1),Ke.description?(k(),G("div",Th,O(Ke.description),1)):ne("",!0)],10,Rh))),128))]),se.value?(k(),G("div",Ph,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(se.value),1)]),_:1})])):ne("",!0)]}),_:1},8,["open"])])}}},Lh=ze(Ih,[["__scopeId","data-v-a9f83185"]]),Dh={class:"page"},Oh={__name:"ScriptsActionsPage",setup(e){const t=Sn(),n=kt();return bt(()=>{t.loadActions(),n.areas.length===0&&n.loadAreas()}),(a,s)=>(k(),G("section",Dh,[R(v($t),{title:"Actions",kicker:"Scripts"},{actions:x(()=>[R(v(_e),{variant:"primary"},{default:x(()=>[N(O(v(t).totalActions)+" scripts",1)]),_:1})]),_:1}),v(t).isLoadingActions?(k(),K(St,{key:0,text:"Loading actions"})):v(t).errorActions?(k(),K(pt,{key:1,title:"Actions loading failed",error:v(t).errorActions,retry:v(t).loadActions},null,8,["error","retry"])):v(t).actions.length===0?(k(),K(it,{key:2,title:"No action scripts",message:"No action scripts registered."})):(k(),K(Vl,{key:3,scripts:v(t).actions,"show-area-badge":""},null,8,["scripts"]))]))}},Fh=ze(Oh,[["__scopeId","data-v-f336617a"]]),Nh={class:"page"},Mh={key:3,class:"devices-panel"},Uh={__name:"ScriptsRegularPage",setup(e){const t=Sn(),n=kt();return bt(()=>{t.loadRegular(),n.areas.length===0&&n.loadAreas()}),(a,s)=>(k(),G("section",Nh,[R(v($t),{title:"Regular",kicker:"Scripts"},{actions:x(()=>[R(v(_e),{variant:"primary"},{default:x(()=>[N(O(v(t).totalRegular)+" scripts",1)]),_:1})]),_:1}),v(t).isLoadingRegular?(k(),K(St,{key:0,text:"Loading regular scripts"})):v(t).errorRegular?(k(),K(pt,{key:1,title:"Regular scripts loading failed",error:v(t).errorRegular,retry:v(t).loadRegular},null,8,["error","retry"])):v(t).regular.length===0?(k(),K(it,{key:2,title:"No regular scripts",message:"No regular scripts registered."})):(k(),G("div",Mh,[R(Ml,{scripts:v(t).regular,scriptType:"regular",showArea:!0,showScope:!0,showFilename:!0,showActions:!0,caption:"Regular scripts"},null,8,["scripts"])]))]))}},Vh={class:"page"},jh={key:3,class:"devices-panel"},Bh={__name:"ScriptsScopesPage",setup(e){en();const t=Sn(),n=jt(),a=[{key:"name",label:"Name"},{key:"filename",label:"File"},{key:"state",label:"State"},{key:"path",label:"Path"},{key:"actions",label:"Actions"}];function s(r,o){t.setScopeState(r,o)}return bt(()=>{t.loadScopes()}),(r,o)=>{const i=cn("router-link");return k(),G("section",Vh,[R(v($t),{title:"Scopes",kicker:"Scripts"},{actions:x(()=>[R(v(_e),{variant:"primary"},{default:x(()=>[N(O(v(t).totalScopes)+" scopes",1)]),_:1})]),_:1}),v(t).isLoadingScopes?(k(),K(St,{key:0,text:"Loading scopes"})):v(t).errorScopes?(k(),K(pt,{key:1,title:"Scopes loading failed",error:v(t).errorScopes,retry:v(t).loadScopes},null,8,["error","retry"])):v(t).scopes.length===0?(k(),K(it,{key:2,title:"No scopes",message:"No script scopes registered."})):(k(),G("div",jh,[R(v(Nn),{columns:a,rows:v(t).scopes,caption:"Script scopes"},{"cell-name":x(({row:l})=>[R(i,{to:{name:"script-detail",params:{type:"scopes",id:l.name}},class:"script-link"},{default:x(()=>[N(O(l.name),1)]),_:2},1032,["to"])]),"cell-state":x(({row:l})=>[R(v(_e),{variant:l.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(l.state),1)]),_:2},1032,["variant"])]),"cell-actions":x(({row:l})=>[l.state==="enabled"&&v(n).has("scripts.edit")?(k(),K(v(de),{key:0,variant:"secondary",icon:"ph-pause",onClick:u=>s(l.name,!1)},{default:x(()=>[...o[0]||(o[0]=[N(" Disable ",-1)])]),_:1},8,["onClick"])):v(n).has("scripts.edit")?(k(),K(v(de),{key:1,variant:"primary",icon:"ph-play",onClick:u=>s(l.name,!0)},{default:x(()=>[...o[1]||(o[1]=[N(" Enable ",-1)])]),_:1},8,["onClick"])):ne("",!0)]),_:1},8,["rows"])]))])}}},Hh=ze(Bh,[["__scopeId","data-v-c8486788"]]);var ji=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Gh(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Es={exports:{}},Bi;function qh(){return Bi||(Bi=1,(function(e){var t=typeof window<"u"?window:typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope?self:{};/** - * Prism: Lightweight, robust, elegant syntax highlighting - * - * @license MIT - * @author Lea Verou - * @namespace - * @public - */var n=(function(a){var s=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,r=0,o={},i={manual:a.Prism&&a.Prism.manual,disableWorkerMessageHandler:a.Prism&&a.Prism.disableWorkerMessageHandler,util:{encode:function y(S){return S instanceof l?new l(S.type,y(S.content),S.alias):Array.isArray(S)?S.map(y):S.replace(/&/g,"&").replace(/"u")return null;if(document.currentScript&&document.currentScript.tagName==="SCRIPT")return document.currentScript;try{throw new Error}catch(L){var y=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(L.stack)||[])[1];if(y){var S=document.getElementsByTagName("script");for(var C in S)if(S[C].src==y)return S[C]}return null}},isActive:function(y,S,C){for(var L="no-"+S;y;){var P=y.classList;if(P.contains(S))return!0;if(P.contains(L))return!1;y=y.parentElement}return!!C}},languages:{plain:o,plaintext:o,text:o,txt:o,extend:function(y,S){var C=i.util.clone(i.languages[y]);for(var L in S)C[L]=S[L];return C},insertBefore:function(y,S,C,L){L=L||i.languages;var P=L[y],E={};for(var T in P)if(P.hasOwnProperty(T)){if(T==S)for(var w in C)C.hasOwnProperty(w)&&(E[w]=C[w]);C.hasOwnProperty(T)||(E[T]=P[T])}var Z=L[y];return L[y]=E,i.languages.DFS(i.languages,function(oe,fe){fe===Z&&oe!=y&&(this[oe]=E)}),E},DFS:function y(S,C,L,P){P=P||{};var E=i.util.objId;for(var T in S)if(S.hasOwnProperty(T)){C.call(S,T,S[T],L||T);var w=S[T],Z=i.util.type(w);Z==="Object"&&!P[E(w)]?(P[E(w)]=!0,y(w,C,null,P)):Z==="Array"&&!P[E(w)]&&(P[E(w)]=!0,y(w,C,T,P))}}},plugins:{},highlightAll:function(y,S){i.highlightAllUnder(document,y,S)},highlightAllUnder:function(y,S,C){var L={callback:C,container:y,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};i.hooks.run("before-highlightall",L),L.elements=Array.prototype.slice.apply(L.container.querySelectorAll(L.selector)),i.hooks.run("before-all-elements-highlight",L);for(var P=0,E;E=L.elements[P++];)i.highlightElement(E,S===!0,L.callback)},highlightElement:function(y,S,C){var L=i.util.getLanguage(y),P=i.languages[L];i.util.setLanguage(y,L);var E=y.parentElement;E&&E.nodeName.toLowerCase()==="pre"&&i.util.setLanguage(E,L);var T=y.textContent,w={element:y,language:L,grammar:P,code:T};function Z(fe){w.highlightedCode=fe,i.hooks.run("before-insert",w),w.element.innerHTML=w.highlightedCode,i.hooks.run("after-highlight",w),i.hooks.run("complete",w),C&&C.call(w.element)}if(i.hooks.run("before-sanity-check",w),E=w.element.parentElement,E&&E.nodeName.toLowerCase()==="pre"&&!E.hasAttribute("tabindex")&&E.setAttribute("tabindex","0"),!w.code){i.hooks.run("complete",w),C&&C.call(w.element);return}if(i.hooks.run("before-highlight",w),!w.grammar){Z(i.util.encode(w.code));return}if(S&&a.Worker){var oe=new Worker(i.filename);oe.onmessage=function(fe){Z(fe.data)},oe.postMessage(JSON.stringify({language:w.language,code:w.code,immediateClose:!0}))}else Z(i.highlight(w.code,w.grammar,w.language))},highlight:function(y,S,C){var L={code:y,grammar:S,language:C};if(i.hooks.run("before-tokenize",L),!L.grammar)throw new Error('The language "'+L.language+'" has no grammar.');return L.tokens=i.tokenize(L.code,L.grammar),i.hooks.run("after-tokenize",L),l.stringify(i.util.encode(L.tokens),L.language)},tokenize:function(y,S){var C=S.rest;if(C){for(var L in C)S[L]=C[L];delete S.rest}var P=new d;return f(P,P.head,y),c(y,P,S,P.head,0),g(P)},hooks:{all:{},add:function(y,S){var C=i.hooks.all;C[y]=C[y]||[],C[y].push(S)},run:function(y,S){var C=i.hooks.all[y];if(!(!C||!C.length))for(var L=0,P;P=C[L++];)P(S)}},Token:l};a.Prism=i;function l(y,S,C,L){this.type=y,this.content=S,this.alias=C,this.length=(L||"").length|0}l.stringify=function y(S,C){if(typeof S=="string")return S;if(Array.isArray(S)){var L="";return S.forEach(function(Z){L+=y(Z,C)}),L}var P={type:S.type,content:y(S.content,C),tag:"span",classes:["token",S.type],attributes:{},language:C},E=S.alias;E&&(Array.isArray(E)?Array.prototype.push.apply(P.classes,E):P.classes.push(E)),i.hooks.run("wrap",P);var T="";for(var w in P.attributes)T+=" "+w+'="'+(P.attributes[w]||"").replace(/"/g,""")+'"';return"<"+P.tag+' class="'+P.classes.join(" ")+'"'+T+">"+P.content+""};function u(y,S,C,L){y.lastIndex=S;var P=y.exec(C);if(P&&L&&P[1]){var E=P[1].length;P.index+=E,P[0]=P[0].slice(E)}return P}function c(y,S,C,L,P,E){for(var T in C)if(!(!C.hasOwnProperty(T)||!C[T])){var w=C[T];w=Array.isArray(w)?w:[w];for(var Z=0;Z=E.reach);ve+=te.value.length,te=te.next){var ke=te.value;if(S.length>y.length)return;if(!(ke instanceof l)){var Pe=1,be;if(B){if(be=u(Y,ve,y,ge),!be||be.index>=y.length)break;var Oe=be.index,Ge=be.index+be[0].length,Ue=ve;for(Ue+=te.value.length;Oe>=Ue;)te=te.next,Ue+=te.value.length;if(Ue-=te.value.length,ve=Ue,te.value instanceof l)continue;for(var De=te;De!==S.tail&&(UeE.reach&&(E.reach=F);var V=te.prev;se&&(V=f(S,V,se),ve+=se.length),_(S,V,Pe);var p=new l(T,fe?i.tokenize(M,fe):M,J,M);if(te=f(S,V,p),H&&f(S,te,H),Pe>1){var b={cause:T+","+Z,reach:F};c(y,S,C,te.prev,ve,b),E&&b.reach>E.reach&&(E.reach=b.reach)}}}}}}function d(){var y={value:null,prev:null,next:null},S={value:null,prev:y,next:null};y.next=S,this.head=y,this.tail=S,this.length=0}function f(y,S,C){var L=S.next,P={value:C,prev:S,next:L};return S.next=P,L.prev=P,y.length++,P}function _(y,S,C){for(var L=S.next,P=0;P/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern://i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},n.languages.markup.tag.inside["attr-value"].inside.entity=n.languages.markup.entity,n.languages.markup.doctype.inside["internal-subset"].inside=n.languages.markup,n.hooks.add("wrap",function(a){a.type==="entity"&&(a.attributes.title=a.content.replace(/&/,"&"))}),Object.defineProperty(n.languages.markup.tag,"addInlined",{value:function(s,r){var o={};o["language-"+r]={pattern:/(^$)/i,lookbehind:!0,inside:n.languages[r]},o.cdata=/^$/i;var i={"included-cdata":{pattern://i,inside:o}};i["language-"+r]={pattern:/[\s\S]+/,inside:n.languages[r]};var l={};l[s]={pattern:RegExp(/(<__[^>]*>)(?:))*\]\]>|(?!)/.source.replace(/__/g,function(){return s}),"i"),lookbehind:!0,greedy:!0,inside:i},n.languages.insertBefore("markup","cdata",l)}}),Object.defineProperty(n.languages.markup.tag,"addAttribute",{value:function(a,s){n.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+a+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[s,"language-"+s],inside:n.languages[s]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),n.languages.html=n.languages.markup,n.languages.mathml=n.languages.markup,n.languages.svg=n.languages.markup,n.languages.xml=n.languages.extend("markup",{}),n.languages.ssml=n.languages.xml,n.languages.atom=n.languages.xml,n.languages.rss=n.languages.xml,(function(a){var s=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;a.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:RegExp("@[\\w-](?:"+/[^;{\s"']|\s+(?!\s)/.source+"|"+s.source+")*?"+/(?:;|(?=\s*\{))/.source),inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+s.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+s.source+"$"),alias:"url"}}},selector:{pattern:RegExp(`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|`+s.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:s,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},a.languages.css.atrule.inside.rest=a.languages.css;var r=a.languages.markup;r&&(r.tag.addInlined("style","css"),r.tag.addAttribute("style","css"))})(n),n.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},n.languages.javascript=n.languages.extend("clike",{"class-name":[n.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+(/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|"+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source)+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),n.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,n.languages.insertBefore("javascript","keyword",{regex:{pattern:RegExp(/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)/.source+/\//.source+"(?:"+/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}/.source+"|"+/(?:\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.)*\])*\])*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}v[dgimyus]{0,7}/.source+")"+/(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/.source),lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:n.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:n.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:n.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:n.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:n.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),n.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:n.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),n.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),n.languages.markup&&(n.languages.markup.tag.addInlined("script","javascript"),n.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),n.languages.js=n.languages.javascript,(function(){if(typeof n>"u"||typeof document>"u")return;Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector);var a="Loading…",s=function(m,h){return"✖ Error "+m+" while fetching file: "+h},r="✖ Error: File does not exist or is empty",o={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"},i="data-src-status",l="loading",u="loaded",c="failed",d="pre[data-src]:not(["+i+'="'+u+'"]):not(['+i+'="'+l+'"])';function f(m,h,$){var y=new XMLHttpRequest;y.open("GET",m,!0),y.onreadystatechange=function(){y.readyState==4&&(y.status<400&&y.responseText?h(y.responseText):y.status>=400?$(s(y.status,y.statusText)):$(r))},y.send(null)}function _(m){var h=/^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(m||"");if(h){var $=Number(h[1]),y=h[2],S=h[3];return y?S?[$,Number(S)]:[$,void 0]:[$,$]}}n.hooks.add("before-highlightall",function(m){m.selector+=", "+d}),n.hooks.add("before-sanity-check",function(m){var h=m.element;if(h.matches(d)){m.code="",h.setAttribute(i,l);var $=h.appendChild(document.createElement("CODE"));$.textContent=a;var y=h.getAttribute("data-src"),S=m.language;if(S==="none"){var C=(/\.(\w+)$/.exec(y)||[,"none"])[1];S=o[C]||C}n.util.setLanguage($,S),n.util.setLanguage(h,S);var L=n.plugins.autoloader;L&&L.loadLanguages(S),f(y,function(P){h.setAttribute(i,u);var E=_(h.getAttribute("data-range"));if(E){var T=P.split(/\r\n?|\n/g),w=E[0],Z=E[1]==null?T.length:E[1];w<0&&(w+=T.length),w=Math.max(0,Math.min(w-1,T.length)),Z<0&&(Z+=T.length),Z=Math.max(0,Math.min(Z,T.length)),P=T.slice(w,Z).join(` -`),h.hasAttribute("data-start")||h.setAttribute("data-start",String(w+1))}$.textContent=P,n.highlightElement($)},function(P){h.setAttribute(i,c),$.textContent=P})}}),n.plugins.fileHighlight={highlight:function(h){for(var $=(h||document).querySelectorAll(d),y=0,S;S=$[y++];)n.highlightElement(S)}};var g=!1;n.fileHighlight=function(){g||(console.warn("Prism.fileHighlight is deprecated. Use `Prism.plugins.fileHighlight.highlight` instead."),g=!0),n.plugins.fileHighlight.highlight.apply(this,arguments)}})()})(Es)),Es.exports}var zh=qh();const Hi=Gh(zh);(function(e){function t(n,a){return"___"+n.toUpperCase()+a+"___"}Object.defineProperties(e.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,a,s,r){if(n.language===a){var o=n.tokenStack=[];n.code=n.code.replace(s,function(i){if(typeof r=="function"&&!r(i))return i;for(var l=o.length,u;n.code.indexOf(u=t(a,l))!==-1;)++l;return o[l]=i,u}),n.grammar=e.languages.markup}}},tokenizePlaceholders:{value:function(n,a){if(n.language!==a||!n.tokenStack)return;n.grammar=e.languages[a];var s=0,r=Object.keys(n.tokenStack);function o(i){for(var l=0;l=r.length);l++){var u=i[l];if(typeof u=="string"||u.content&&typeof u.content=="string"){var c=r[s],d=n.tokenStack[c],f=typeof u=="string"?u:u.content,_=t(a,c),g=f.indexOf(_);if(g>-1){++s;var m=f.substring(0,g),h=new e.Token(a,e.tokenize(d,n.grammar),"language-"+a,d),$=f.substring(g+_.length),y=[];m&&y.push.apply(y,o([m])),y.push(h),$&&y.push.apply(y,o([$])),typeof u=="string"?i.splice.apply(i,[l,1].concat(y)):u.content=y}}else u.content&&o(u.content)}return i}o(n.tokens)}}})})(Prism);var Gi={},qi;function Kh(){return qi||(qi=1,(function(e){var t=/\/\*[\s\S]*?\*\/|\/\/.*|#(?!\[).*/,n=[{pattern:/\b(?:false|true)\b/i,alias:"boolean"},{pattern:/(::\s*)\b[a-z_]\w*\b(?!\s*\()/i,greedy:!0,lookbehind:!0},{pattern:/(\b(?:case|const)\s+)\b[a-z_]\w*(?=\s*[;=])/i,greedy:!0,lookbehind:!0},/\b(?:null)\b/i,/\b[A-Z_][A-Z0-9_]*\b(?!\s*\()/],a=/\b0b[01]+(?:_[01]+)*\b|\b0o[0-7]+(?:_[0-7]+)*\b|\b0x[\da-f]+(?:_[\da-f]+)*\b|(?:\b\d+(?:_\d+)*\.?(?:\d+(?:_\d+)*)?|\B\.\d+)(?:e[+-]?\d+)?/i,s=/|\?\?=?|\.{3}|\??->|[!=]=?=?|::|\*\*=?|--|\+\+|&&|\|\||<<|>>|[?~]|[/^|%*&<>.+-]=?/,r=/[{}\[\](),:;]/;e.languages.php={delimiter:{pattern:/\?>$|^<\?(?:php(?=\s)|=)?/i,alias:"important"},comment:t,variable:/\$+(?:\w+\b|(?=\{))/,package:{pattern:/(namespace\s+|use\s+(?:function\s+)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,lookbehind:!0,inside:{punctuation:/\\/}},"class-name-definition":{pattern:/(\b(?:class|enum|interface|trait)\s+)\b[a-z_]\w*(?!\\)\b/i,lookbehind:!0,alias:"class-name"},"function-definition":{pattern:/(\bfunction\s+)[a-z_]\w*(?=\s*\()/i,lookbehind:!0,alias:"function"},keyword:[{pattern:/(\(\s*)\b(?:array|bool|boolean|float|int|integer|object|string)\b(?=\s*\))/i,alias:"type-casting",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|object|self|static|string)\b(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|never|object|self|static|string|void)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/\b(?:array(?!\s*\()|bool|float|int|iterable|mixed|object|string|void)\b/i,alias:"type-declaration",greedy:!0},{pattern:/(\|\s*)(?:false|null)\b|\b(?:false|null)(?=\s*\|)/i,alias:"type-declaration",greedy:!0,lookbehind:!0},{pattern:/\b(?:parent|self|static)(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(\byield\s+)from\b/i,lookbehind:!0},/\bclass\b/i,{pattern:/((?:^|[^\s>:]|(?:^|[^-])>|(?:^|[^:]):)\s*)\b(?:abstract|and|array|as|break|callable|case|catch|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|enum|eval|exit|extends|final|finally|fn|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|match|namespace|never|new|or|parent|print|private|protected|public|readonly|require|require_once|return|self|static|switch|throw|trait|try|unset|use|var|while|xor|yield|__halt_compiler)\b/i,lookbehind:!0}],"argument-name":{pattern:/([(,]\s*)\b[a-z_]\w*(?=\s*:(?!:))/i,lookbehind:!0},"class-name":[{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self|\s+static))\s+|\bcatch\s*\()\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/(\|\s*)\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/\b[a-z_]\w*(?!\\)\b(?=\s*\|)/i,greedy:!0},{pattern:/(\|\s*)(?:\\?\b[a-z_]\w*)+\b/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(?:\\?\b[a-z_]\w*)+\b(?=\s*\|)/i,alias:"class-name-fully-qualified",greedy:!0,inside:{punctuation:/\\/}},{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self\b|\s+static\b))\s+|\bcatch\s*\()(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*\$)/i,alias:"type-declaration",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-declaration"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*::)/i,alias:["class-name-fully-qualified","static-context"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/([(,?]\s*)[a-z_]\w*(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-hint"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b[a-z_]\w*(?!\\)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:["class-name-fully-qualified","return-type"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,function:{pattern:/(^|[^\\\w])\\?[a-z_](?:[\w\\]*\w)?(?=\s*\()/i,lookbehind:!0,inside:{punctuation:/\\/}},property:{pattern:/(->\s*)\w+/,lookbehind:!0},number:a,operator:s,punctuation:r};var o={pattern:/\{\$(?:\{(?:\{[^{}]+\}|[^{}]+)\}|[^{}])+\}|(^|[^\\{])\$+(?:\w+(?:\[[^\r\n\[\]]+\]|->\w+)?)/,lookbehind:!0,inside:e.languages.php},i=[{pattern:/<<<'([^']+)'[\r\n](?:.*[\r\n])*?\1;/,alias:"nowdoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},{pattern:/<<<(?:"([^"]+)"[\r\n](?:.*[\r\n])*?\1;|([a-z_]\w*)[\r\n](?:.*[\r\n])*?\2;)/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:o}},{pattern:/`(?:\\[\s\S]|[^\\`])*`/,alias:"backtick-quoted-string",greedy:!0},{pattern:/'(?:\\[\s\S]|[^\\'])*'/,alias:"single-quoted-string",greedy:!0},{pattern:/"(?:\\[\s\S]|[^\\"])*"/,alias:"double-quoted-string",greedy:!0,inside:{interpolation:o}}];e.languages.insertBefore("php","variable",{string:i,attribute:{pattern:/#\[(?:[^"'\/#]|\/(?![*/])|\/\/.*$|#(?!\[).*$|\/\*(?:[^*]|\*(?!\/))*\*\/|"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*')+\](?=\s*[a-z$#])/im,greedy:!0,inside:{"attribute-content":{pattern:/^(#\[)[\s\S]+(?=\]$)/,lookbehind:!0,inside:{comment:t,string:i,"attribute-class-name":[{pattern:/([^:]|^)\b[a-z_]\w*(?!\\)\b/i,alias:"class-name",greedy:!0,lookbehind:!0},{pattern:/([^:]|^)(?:\\?\b[a-z_]\w*)+/i,alias:["class-name","class-name-fully-qualified"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,number:a,operator:s,punctuation:r}},delimiter:{pattern:/^#\[|\]$/,alias:"punctuation"}}}}),e.hooks.add("before-tokenize",function(l){if(/<\?/.test(l.code)){var u=/<\?(?:[^"'/#]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|(?:\/\/|#(?!\[))(?:[^?\n\r]|\?(?!>))*(?=$|\?>|[\r\n])|#\[|\/\*(?:[^*]|\*(?!\/))*(?:\*\/|$))*?(?:\?>|$)/g;e.languages["markup-templating"].buildPlaceholders(l,"php",u)}}),e.hooks.add("after-tokenize",function(l){e.languages["markup-templating"].tokenizePlaceholders(l,"php")})})(Prism)),Gi}Kh();const Wh={class:"page"},Jh={key:2},Yh={class:"script-detail-meta"},Xh=["innerHTML"],Zh={key:1},Qh={class:"script-meta"},em={key:0},tm={class:"scope-name"},nm={class:"script-info-panel"},am={key:0,class:"info-row"},sm={class:"info-value"},rm={key:1,class:"info-row"},im={class:"info-value"},om={key:2,class:"info-row"},lm={class:"info-value"},um={key:1,class:"devices-panel"},cm={class:"block-title"},dm={key:2,class:"devices-panel"},fm={class:"block-title"},pm={key:3,class:"devices-panel"},vm={key:2,class:"code-block"},gm=["innerHTML"],hm={key:0,class:"form-group"},mm={key:0,class:"form-group"},ym={__name:"ScriptDetailPage",setup(e){const t=as(),n=Sn(),a=kt(),s=wn(),r=jt(),{areaOptions:o,showAssignModal:i,selectedAreaId:l,assignLoading:u,assignError:c,openAssign:d,submitAssignCore:f}=Er(),_=ee(()=>t.params.type),g=ee(()=>t.params.id),m=z(!1),h=ee(()=>_.value==="actions"),$=ee(()=>_.value==="regular"),y=ee(()=>_.value==="scopes"),S=ee(()=>{var p,b,A;const V=[];return!y.value&&r.has("scripts.edit")&&((p=w.value)!=null&&p.area_id?V.push({label:"Change area",icon:"ph-map-pin",onSelect:ke},{label:"Unassign from area",icon:"ph-x-circle",onSelect:Oe}):V.push({label:"Assign to area",icon:"ph-map-pin",onSelect:ke})),h.value&&r.has("scripts.run")&&V.push({label:"Run",icon:"ph-play",disabled:((b=w.value)==null?void 0:b.state)!=="enabled"||n.isRunning((A=w.value)==null?void 0:A.alias),onSelect:Y}),V}),C=ee(()=>h.value?"Actions":$.value?"Regular":y.value?"Scope":"Script"),L=ee(()=>`Loading ${C.value.toLowerCase()} details`),P=ee(()=>h.value?n.isLoadingActions:$.value?n.isLoadingRegular:y.value?n.isLoadingScopes||n.isLoadingActions||n.isLoadingRegular:!1),E=ee(()=>h.value?n.errorActions:$.value?n.errorRegular:y.value?n.errorScopes:null),T=ee(()=>h.value?n.actions.length>0:$.value?n.regular.length>0:y.value?n.scopes.length>0:!1),w=ee(()=>{const V=g.value;return V?h.value?n.actionByAlias(V):$.value?n.regularByAlias(V):y.value?n.scopeByName(V):null:null}),Z=ee(()=>{const V=g.value;return!V||!y.value?[]:n.actionsByScope(V)}),oe=ee(()=>{const V=g.value;return!V||!y.value?[]:n.regularByScope(V)}),fe=ee(()=>{var p;const V=(p=w.value)==null?void 0:p.area_id;return V&&a.areasById[String(V)]||null}),ge=ee(()=>y.value?n.isLoadingScopeCode:!1),B=ee(()=>y.value?n.errorScopeCode:null),J=ee(()=>{var V;return h.value||$.value?((V=w.value)==null?void 0:V.code)||"":y.value?n.currentScopeCode:""}),Q=ee(()=>{const V=J.value;return V?Hi.highlight(V,Hi.languages.php,"php"):""});function Y(){var p;if(!((p=w.value)!=null&&p.alias))return;const V=w.value.params_schema;if(V&&Object.keys(V).length>0){m.value=!0;return}te(w.value.alias,{})}async function te(V,p){var A,j;const b=await n.runScript(V,p);b!=null&&b.ok?s.success({title:`Ran ${V}`,text:(A=n.lastRunResult)!=null&&A.execTime?`Exec time: ${n.lastRunResult.execTime}`:void 0}):s.error({title:`Failed ${V}`,text:((j=b==null?void 0:b.error)==null?void 0:j.message)||"Unknown error"})}async function ve(V){var j,W;const p=g.value;if(!p)return;let b;h.value?b=await n.setActionState(p,V):$.value?b=await n.setRegularState(p,V):y.value&&(b=await n.setScopeState(p,V));const A=((j=w.value)==null?void 0:j.alias)||p;b&&!b.ok?s.error({title:`Failed to ${V?"enable":"disable"} ${A}`,text:((W=b.error)==null?void 0:W.message)||"Unknown error"}):b&&s.success({title:`${V?"Enabled":"Disabled"} ${A}`})}function ke(){var V;d((V=w.value)==null?void 0:V.area_id)}async function Pe(){var b;const V=(b=w.value)==null?void 0:b.id,p=await f(V,n.assignToArea.bind(n));p!=null&&p.ok&&s.success({title:"Assigned",text:"Script assigned to area successfully"})}const be=z(!1),Ge=z(""),Ue=z(!1),De=z("");function Oe(){w.value&&(Ge.value=`Are you sure you want to unassign script "${w.value.name||w.value.alias}" from its area?`,De.value="",be.value=!0)}async function M(){var p;if(!w.value)return;Ue.value=!0,De.value="";const V=await n.unassignFromArea(w.value.id);if(Ue.value=!1,!V.ok){De.value=((p=V.error)==null?void 0:p.message)||"Failed to unassign script";return}be.value=!1,s.success({title:"Unassigned",text:"Script unassigned from area successfully"})}async function se(){const V=g.value;!V||!y.value||await n.loadScopeCode(V)}async function H(){g.value&&(h.value&&n.actions.length===0?await n.loadActions():$.value&&n.regular.length===0?await n.loadRegular():y.value&&n.scopes.length===0&&await n.loadScopes(),y.value&&(n.actions.length===0&&await n.loadActions(),n.regular.length===0&&await n.loadRegular(),await se()),a.areas.length===0&&await a.loadAreas())}const F=[{key:"alias",label:"Alias"},{key:"name",label:"Name"},{key:"state",label:"State"}];return bt(()=>{H()}),ha(()=>{n.clearScopeCode()}),wt(()=>[t.params.type,t.params.id],([V,p],[b,A])=>{(V!==b||p!==A)&&(n.clearScopeCode(),H())}),(V,p)=>{const b=cn("router-link");return k(),G("section",Wh,[P.value?(k(),K(St,{key:0,text:L.value},null,8,["text"])):E.value&&!T.value?(k(),K(pt,{key:1,title:`${C.value} loading failed`,error:E.value,retry:H},null,8,["title","error"])):w.value?(k(),G("div",Jh,[R(v($t),{title:w.value.name||w.value.alias||w.value.name,kicker:C.value},{actions:x(()=>[v(r).has("scripts.edit")?(k(),K(v(kl),{key:0,"model-value":w.value.state==="enabled",label:"Enabled","onUpdate:modelValue":p[0]||(p[0]=A=>ve(A))},null,8,["model-value"])):ne("",!0),R(Tr,{items:S.value},null,8,["items"])]),_:1},8,["title","kicker"]),I("div",Yh,[w.value.icon?(k(),G("div",{key:0,innerHTML:w.value.icon,class:"script-icon"},null,8,Xh)):ne("",!0),w.value.description?(k(),G("p",Zh,O(w.value.description),1)):ne("",!0),I("div",Qh,[R(v(_e),{variant:w.value.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(w.value.state),1)]),_:1},8,["variant"]),I("code",null,O(w.value.alias||w.value.name),1),w.value.author?(k(),G("small",em,O(w.value.author),1)):ne("",!0),R(Rr,{area:fe.value,areaId:w.value.area_id},null,8,["area","areaId"]),w.value.scope?(k(),K(b,{key:1,to:{name:"script-detail",params:{type:"scopes",id:w.value.scope}},class:"scope-link"},{default:x(()=>[p[8]||(p[8]=I("span",{class:"scope-label"},"Scope",-1)),I("span",tm,O(w.value.scope),1),p[9]||(p[9]=I("i",{class:"ph ph-arrow-right"},null,-1))]),_:1},8,["to"])):ne("",!0)]),I("div",nm,[w.value.filename?(k(),G("div",am,[p[10]||(p[10]=I("span",{class:"info-label text-muted"},"File:",-1)),I("span",sm,O(w.value.filename),1)])):ne("",!0),w.value.path?(k(),G("div",rm,[p[11]||(p[11]=I("span",{class:"info-label text-muted"},"Path:",-1)),I("span",im,O(w.value.path),1)])):ne("",!0),w.value.created_by?(k(),G("div",om,[p[12]||(p[12]=I("span",{class:"info-label text-muted"},"Author:",-1)),I("span",lm,O(w.value.created_by),1)])):ne("",!0)])]),y.value?ne("",!0):(k(),K($r,{key:0,item:w.value,emptyMessage:"This script is not assigned to any area.",onAssign:ke},{action:x(()=>[v(r).has("scripts.edit")?(k(),K(v(de),{key:0,variant:"primary",icon:"ph-map-pin",onClick:ke},{default:x(()=>{var A;return[N(O((A=w.value)!=null&&A.area_id?"Change area":"Assign to area"),1)]}),_:1})):ne("",!0)]),_:1},8,["item"])),y.value&&Z.value.length>0?(k(),G("div",um,[I("div",cm,"Action scripts ("+O(Z.value.length)+")",1),R(v(Nn),{rows:Z.value,columns:F},{"cell-state":x(({row:A})=>[R(v(_e),{variant:A.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(A.state),1)]),_:2},1032,["variant"])]),"cell-alias":x(({row:A})=>[R(b,{to:{name:"script-detail",params:{type:"actions",id:A.alias}},class:"script-link"},{default:x(()=>[N(O(A.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):ne("",!0),y.value&&oe.value.length>0?(k(),G("div",dm,[I("div",fm,"Regular scripts ("+O(oe.value.length)+")",1),R(v(Nn),{rows:oe.value,columns:F},{"cell-state":x(({row:A})=>[R(v(_e),{variant:A.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(A.state),1)]),_:2},1032,["variant"])]),"cell-alias":x(({row:A})=>[R(b,{to:{name:"script-detail",params:{type:"regular",id:A.alias}},class:"script-link"},{default:x(()=>[N(O(A.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):ne("",!0),w.value.code||y.value?(k(),G("div",pm,[p[13]||(p[13]=I("div",{class:"block-title"},"Source code",-1)),ge.value?(k(),K(St,{key:0,text:"Loading source code"})):B.value?(k(),K(pt,{key:1,title:"Code loading failed",error:B.value,retry:se},null,8,["error"])):J.value?(k(),G("pre",vm,[I("code",{class:"language-php",innerHTML:Q.value},null,8,gm)])):(k(),K(it,{key:3,title:"No code",message:"Source code is not available."}))])):ne("",!0)])):(k(),K(it,{key:3,title:"Not found",message:"The requested script does not exist."})),R(v(tt),{open:v(i),title:"Assign to area","onUpdate:open":p[3]||(p[3]=A=>i.value=A)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:p[2]||(p[2]=A=>i.value=!1)},{default:x(()=>[...p[14]||(p[14]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:v(u),onClick:Pe},{default:x(()=>[...p[15]||(p[15]=[N(" Assign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[R(v(rs),{modelValue:v(l),"onUpdate:modelValue":p[1]||(p[1]=A=>Ve(l)?l.value=A:null),label:"Area",options:v(o),icon:"ph-map-trifold"},null,8,["modelValue","options"]),v(c)?(k(),G("div",hm,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(v(c)),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:be.value,title:"Unassign from area","onUpdate:open":p[5]||(p[5]=A=>be.value=A)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:p[4]||(p[4]=A=>be.value=!1)},{default:x(()=>[...p[16]||(p[16]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"warning",icon:"ph-x-circle",loading:Ue.value,onClick:M},{default:x(()=>[...p[17]||(p[17]=[N(" Unassign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(Ge.value),1),De.value?(k(),G("div",mm,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(De.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),h.value&&w.value?(k(),K(Ul,{key:4,open:m.value,script:w.value,"onUpdate:open":p[6]||(p[6]=A=>m.value=A),onRun:p[7]||(p[7]=A=>te(A.alias,A.params))},null,8,["open","script"])):ne("",!0)])}}},_m=ze(ym,[["__scopeId","data-v-c052dd3b"]]),bm={class:"page"},wm={key:3,class:"firmwares-panel"},Sm={class:"firmwares-summary"},km={class:"firmwares-list"},Am={class:"firmware-header"},xm={class:"firmware-id"},Cm={class:"firmware-meta"},Em={key:0,class:"firmware-desc"},Rm={key:1,class:"firmware-changelog"},$m={__name:"FirmwaresListPage",setup(e){const t=jl(),n=jt(),a=z(null);async function s(){var i;a.value=null;const o=await t.loadFirmwares();o.ok||(a.value=((i=o.error)==null?void 0:i.message)||"Failed to load catalog")}async function r(){var i;a.value=null;const o=await t.refreshFirmwares();o.ok||(a.value=((i=o.error)==null?void 0:i.message)||"Failed to refresh catalog")}return bt(s),(o,i)=>(k(),G("section",bm,[R(v($t),{title:"Firmware Catalog",kicker:"Firmwares"},{actions:x(()=>[v(n).has("firmware.upload")?(k(),K(v(de),{key:0,loading:v(t).isUpdating,icon:"ph-arrow-clockwise",onClick:r},{default:x(()=>[...i[0]||(i[0]=[N(" Refresh Catalog ",-1)])]),_:1},8,["loading"])):ne("",!0)]),_:1}),v(t).isLoadingList?(k(),K(St,{key:0,text:"Loading firmware catalog"})):a.value?(k(),K(pt,{key:1,title:"Catalog loading failed",error:a.value,retry:s},null,8,["error"])):v(t).firmwares.length===0?(k(),K(it,{key:2,title:"No firmwares found",message:"No firmware packages detected in the firmwares directory."})):(k(),G("div",wm,[I("div",Sm,[R(v(_e),{variant:"primary"},{default:x(()=>[N("Total: "+O(v(t).firmwares.length),1)]),_:1})]),I("div",km,[(k(!0),G(Ee,null,Vt(v(t).firmwares,l=>(k(),G("div",{key:l.id,class:"firmware-card"},[I("div",Am,[I("span",xm,O(l.id),1),R(v(_e),{variant:"success"},{default:x(()=>[N(O(l.version),1)]),_:2},1024)]),I("div",Cm,[R(v(_e),{variant:"secondary"},{default:x(()=>[N(O(l.device_type),1)]),_:2},1024),l.platform?(k(),K(v(_e),{key:0,variant:"info"},{default:x(()=>[N(O(l.platform),1)]),_:2},1024)):ne("",!0),l.channels?(k(),K(v(_e),{key:1,variant:"warning"},{default:x(()=>[N(O(l.channels)+" ch",1)]),_:2},1024)):ne("",!0)]),l.description?(k(),G("p",Em,O(l.description),1)):ne("",!0),l.changelog?(k(),G("pre",Rm,O(l.changelog),1)):ne("",!0)]))),128))])]))]))}},Tm=ze($m,[["__scopeId","data-v-c0c73f70"]]),Bl="/logo-cube-square.svg",Pm={class:"login-page"},Im={class:"login-card"},Lm={key:0,class:"login-loading text-muted"},Dm={__name:"LoginPage",setup(e){const t=en(),n=Un();bt(()=>{n.isAuthenticated&&t.replace({name:"areas-favorites"})});function a(){Sr(kr())}return(s,r)=>(k(),G("div",Pm,[I("div",Im,[r[2]||(r[2]=I("div",{class:"login-brand"},[I("img",{src:Bl,alt:"Smart Home",class:"brand-logo"}),I("h1",{class:"brand-title"},"Smart Home Server")],-1)),r[3]||(r[3]=I("p",{class:"login-hint text-muted"}," You need to sign in to access the smart home dashboard. ",-1)),R(v(de),{variant:"primary",class:"login-btn",icon:"ph-sign-in",onClick:a},{default:x(()=>[...r[0]||(r[0]=[N(" LOGIN WITH GNEXUS ",-1)])]),_:1}),v(n).isLoading?(k(),G("p",Lm,[...r[1]||(r[1]=[I("i",{class:"ph ph-spinner ph-spin"},null,-1),N(" Checking session… ",-1)])])):ne("",!0)])]))}},Om=ze(Dm,[["__scopeId","data-v-7f18a357"]]),Fm={class:"setup-page"},Nm={class:"setup-card"},Mm={class:"setup-form"},Um={key:0,class:"setup-error text-danger"},Vm={__name:"MobileSetupPage",setup(e){en();const t=z(""),n=z(""),a=z(!1),s=z("");async function r(){n.value="",s.value="";const o=t.value.trim();if(!o){n.value="Server URL is required";return}let i=o;/^https?:\/\//i.test(i)||(i="http://"+i);try{new URL(i)}catch{n.value="Invalid URL format";return}a.value=!0;try{const l=[`${i}/api/v1/about`,`${i}/about`];let u=!1;for(const c of l)try{const d=new AbortController,f=setTimeout(()=>d.abort(),5e3),_=await fetch(c,{method:"GET",signal:d.signal});if(clearTimeout(f),_.ok||_.status===401){u=!0;break}}catch{}if(!u){s.value="Could not connect to server. Please check the address.",a.value=!1;return}await pp(i),alert("Server address saved. Please restart the app to continue."),Hs.exitApp();return}catch{s.value="Connection check failed. Please try again.",a.value=!1}}return(o,i)=>(k(),G("div",Fm,[I("div",Nm,[i[3]||(i[3]=Ic('

Smart Home

Mobile App Setup

Enter the address of your Smart Home server. Example: https://shserv.home or http://192.168.1.10

',3)),I("div",Mm,[R(v(yt),{modelValue:t.value,"onUpdate:modelValue":i[0]||(i[0]=l=>t.value=l),label:"Server URL",placeholder:"https://your-server.com",error:n.value,onKeyup:vd(r,["enter"])},null,8,["modelValue","error"]),R(v(de),{variant:"primary",size:"lg",class:"setup-btn",loading:a.value,onClick:r},{icon:x(()=>[...i[1]||(i[1]=[I("i",{class:"ph ph-check"},null,-1)])]),default:x(()=>[N(" "+O(a.value?"Checking connection…":"Save and continue"),1)]),_:1},8,["loading"])]),s.value?(k(),G("p",Um,[i[2]||(i[2]=I("i",{class:"ph ph-warning-circle"},null,-1)),N(" "+O(s.value),1)])):ne("",!0)])]))}},jm=ze(Vm,[["__scopeId","data-v-a50065c7"]]),Bm={class:"mobile-auth-page"},Hm={class:"mobile-auth-card"},Gm={class:"text-muted"},qm={__name:"MobileAuthPage",setup(e){const t=en(),n=Un(),a=z("Authenticating…");return bt(async()=>{const s=window.location.hash,r=s.indexOf("?");if(r===-1){a.value="Invalid login link. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500);return}const o=new URLSearchParams(s.slice(r+1)),i=o.get("token"),l=o.get("expires_in");if(!i){a.value="No token received. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500);return}is(i,l?parseInt(l,10):null);const u=s.slice(0,r);window.history.replaceState(null,"",u||"#/"),a.value="Loading profile…";try{await n.init(),n.isAuthenticated?t.replace({name:"areas-favorites"}):(a.value="Session invalid. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500))}catch{a.value="Failed to load profile. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500)}}),(s,r)=>(k(),G("div",Bm,[I("div",Hm,[r[0]||(r[0]=I("div",{class:"spinner"},null,-1)),I("p",Gm,O(a.value),1)])]))}},zm=ze(qm,[["__scopeId","data-v-9c0afc74"]]),Km=[{path:"/",redirect:"/areas/favorites"},{path:"/login",name:"login",component:Om,meta:{public:!0}},{path:"/mobile-setup",name:"mobile-setup",component:jm,meta:{public:!0}},{path:"/mobile-auth",name:"mobile-auth",component:zm,meta:{public:!0}},{path:"/areas/favorites",name:"areas-favorites",component:zp,meta:{permission:"areas.view"}},{path:"/areas/tree",name:"areas-tree",component:lv,meta:{permission:"areas.view"}},{path:"/areas/:id",name:"area-detail",component:xg,meta:{permission:"areas.view"}},{path:"/devices",name:"devices",component:Pg,meta:{permission:"devices.view"}},{path:"/devices/scanning",name:"devices-scanning",component:Kg,meta:{permission:"devices.scan"}},{path:"/devices/:id",name:"device-detail",component:Lh,meta:{permission:"devices.view"}},{path:"/scripts/actions",name:"scripts-actions",component:Fh,meta:{permission:"scripts.run"}},{path:"/scripts/regular",name:"scripts-regular",component:Uh,meta:{permission:"scripts.view"}},{path:"/scripts/scopes",name:"scripts-scopes",component:Hh,meta:{permission:"scripts.view"}},{path:"/scripts/:type(actions|regular|scopes)/:id",name:"script-detail",component:_m,meta:{permission:"scripts.view"}},{path:"/firmwares",name:"firmwares",component:Tm,meta:{permission:"firmware.view"}},{path:"/:pathMatch(.*)*",name:"not-found",component:()=>gr(()=>import("./NotFoundPage-DXlEoTtL.js"),[])}],Kn="[vue:router]",Wn=wr(),Hl=Gf({history:kf(),routes:Km});Hl.beforeEach(async(e,t,n)=>{var r,o;if(Mt()&&e.name!=="mobile-setup")try{if(!await gp()){Wn&&console.debug(Kn,"Redirect: native app missing server URL → mobile-setup"),n({name:"mobile-setup"});return}}catch{if(e.name!=="mobile-setup"){n({name:"mobile-setup"});return}}const a=Un();if(Wn&&console.debug(Kn,`Navigate: ${t.fullPath||"init"} → ${e.fullPath}`),await a.init(),(r=e.meta)!=null&&r.public){if(e.name==="login"&&a.isAuthenticated){Wn&&console.debug(Kn,"Redirect: authenticated user at login → areas-favorites"),n({name:"areas-favorites"});return}n();return}if(!a.isAuthenticated){Wn&&console.debug(Kn,"Redirect: unauthenticated → login"),n({name:"login"});return}const s=(o=e.meta)==null?void 0:o.permission;if(s&&!a.hasPermission(s)){Wn&&console.warn(Kn,`Forbidden: ${e.fullPath} requires ${s}`),n({name:"areas-favorites"});return}n()});function Wm(e){const t="[vue:error]";e.config.errorHandler=(n,a,s)=>{const r=(n==null?void 0:n.message)||String(n);console.error(t,`Vue ${s}`,r,(n==null?void 0:n.stack)||"")},window.addEventListener("unhandledrejection",n=>{var r;const a=n.reason,s=(a==null?void 0:a.message)||((r=a==null?void 0:a.error)==null?void 0:r.message)||String(a);console.error(t,"Unhandled rejection:",s,(a==null?void 0:a.stack)||""),n.preventDefault()}),window.addEventListener("error",n=>{const a=n.error,s=(a==null?void 0:a.message)||n.message||"Unknown error";console.error(t,`Global error: ${s}`,`at ${n.filename}:${n.lineno}:${n.colno}`,(a==null?void 0:a.stack)||"")})}const Rs="[vue:pinia]",Jm=e=>{if(!wr())return;const{store:t,options:n}=e,a=n.id,s=Object.keys(n.actions||{});for(const r of s){const o=t[r];t[r]=async function(...i){console.debug(Rs,`${a}.${r}(${i.map(u=>$l(u)).join(", ")})`);const l=performance.now();try{const u=await o.apply(this,i);return console.debug(Rs,`${a}.${r} completed in ${(performance.now()-l).toFixed(1)}ms`),u}catch(u){throw console.error(Rs,`${a}.${r} failed: ${(u==null?void 0:u.message)||u}`),u}}}};function zi(e){try{const t=new URL(e);if(t.host==="auth"&&t.pathname==="/callback"){const n=t.searchParams.get("token"),a=t.searchParams.get("expires_in");n&&(is(n,a?parseInt(a,10):null),window.location.reload())}}catch{}}async function Ym(){if(await fp(),await hp(),Mt()){try{const a=await Hs.getLaunchUrl();if(a!=null&&a.url){zi(a.url);return}}catch{}Hs.addListener("appUrlOpen",a=>{zi(a.url)})}const e=md(Pp);Wm(e);const t=bd();t.use(Jm),e.use(t).use(Hl),await Un().init(),e.mount("#app")}Ym();export{tp as G,hr as W,R as a,G as c,k as o,v as u}; diff --git a/server/dist/assets/index-DfAh0Xkk.js b/server/dist/assets/index-DfAh0Xkk.js new file mode 100644 index 0000000..72e9581 --- /dev/null +++ b/server/dist/assets/index-DfAh0Xkk.js @@ -0,0 +1,37 @@ +(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))a(s);new MutationObserver(s=>{for(const r of s)if(r.type==="childList")for(const o of r.addedNodes)o.tagName==="LINK"&&o.rel==="modulepreload"&&a(o)}).observe(document,{childList:!0,subtree:!0});function n(s){const r={};return s.integrity&&(r.integrity=s.integrity),s.referrerPolicy&&(r.referrerPolicy=s.referrerPolicy),s.crossOrigin==="use-credentials"?r.credentials="include":s.crossOrigin==="anonymous"?r.credentials="omit":r.credentials="same-origin",r}function a(s){if(s.ep)return;s.ep=!0;const r=n(s);fetch(s.href,r)}})();/** +* @vue/shared v3.5.33 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Xs(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const Me={},Rn=[],Mt=()=>{},Ki=()=>!1,Ma=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Ua=e=>e.startsWith("onUpdate:"),nt=Object.assign,Zs=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Gl=Object.prototype.hasOwnProperty,Ee=(e,t)=>Gl.call(e,t),_e=Array.isArray,$n=e=>va(e)==="[object Map]",Wi=e=>va(e)==="[object Set]",Ir=e=>va(e)==="[object Date]",we=e=>typeof e=="function",He=e=>typeof e=="string",_t=e=>typeof e=="symbol",Te=e=>e!==null&&typeof e=="object",Ji=e=>(Te(e)||we(e))&&we(e.then)&&we(e.catch),Yi=Object.prototype.toString,va=e=>Yi.call(e),ql=e=>va(e).slice(8,-1),Xi=e=>va(e)==="[object Object]",Va=e=>He(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Zn=Xs(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),ja=e=>{const t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},zl=/-\w/g,ft=ja(e=>e.replace(zl,t=>t.slice(1).toUpperCase())),Kl=/\B([A-Z])/g,un=ja(e=>e.replace(Kl,"-$1").toLowerCase()),Ba=ja(e=>e.charAt(0).toUpperCase()+e.slice(1)),ls=ja(e=>e?`on${Ba(e)}`:""),Nt=(e,t)=>!Object.is(e,t),us=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:a,value:n})},Wl=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Lr;const Ha=()=>Lr||(Lr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Qs(e){if(_e(e)){const t={};for(let n=0;n{if(n){const a=n.split(Yl);a.length>1&&(t[a[0].trim()]=a[1].trim())}}),t}function Ct(e){let t="";if(He(e))t=e;else if(_e(e))for(let n=0;n!!(e&&e.__v_isRef===!0),O=e=>He(e)?e:e==null?"":_e(e)||Te(e)&&(e.toString===Yi||!we(e.toString))?eo(e)?O(e.value):JSON.stringify(e,to,2):String(e),to=(e,t)=>eo(t)?to(e,t.value):$n(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[a,s],r)=>(n[cs(a,r)+" =>"]=s,n),{})}:Wi(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>cs(n))}:_t(t)?cs(t):Te(t)&&!_e(t)&&!Xi(t)?String(t):t,cs=(e,t="")=>{var n;return _t(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +* @vue/reactivity v3.5.33 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Xe;class no{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.__v_skip=!0,this.parent=Xe,!t&&Xe&&(this.index=(Xe.scopes||(Xe.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t0&&--this._on===0){if(Xe===this)Xe=this.prevScope;else{let t=Xe;for(;t;){if(t.prevScope===this){t.prevScope=this.prevScope;break}t=t.prevScope}}this.prevScope=void 0}}stop(t){if(this._active){this._active=!1;let n,a;for(n=0,a=this.effects.length;n0)return;if(ea){let t=ea;for(ea=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Qn;){let t=Qn;for(Qn=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(a){e||(e=a)}t=n}}if(e)throw e}function lo(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function uo(e){let t,n=e.depsTail,a=n;for(;a;){const s=a.prevDep;a.version===-1?(a===n&&(n=s),ar(a),au(a)):t=a,a.dep.activeLink=a.prevActiveLink,a.prevActiveLink=void 0,a=s}e.deps=t,e.depsTail=n}function $s(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(co(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function co(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===oa)||(e.globalVersion=oa,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!$s(e))))return;e.flags|=2;const t=e.dep,n=Ne,a=xt;Ne=e,xt=!0;try{lo(e);const s=e.fn(e._value);(t.version===0||Nt(s,e._value))&&(e.flags|=128,e._value=s,t.version++)}catch(s){throw t.version++,s}finally{Ne=n,xt=a,uo(e),e.flags&=-3}}function ar(e,t=!1){const{dep:n,prevSub:a,nextSub:s}=e;if(a&&(a.nextSub=s,e.prevSub=void 0),s&&(s.prevSub=a,e.nextSub=void 0),n.subs===e&&(n.subs=a,!a&&n.computed)){n.computed.flags&=-5;for(let r=n.computed.deps;r;r=r.nextDep)ar(r,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function au(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let xt=!0;const fo=[];function Wt(){fo.push(xt),xt=!1}function Jt(){const e=fo.pop();xt=e===void 0?!0:e}function Dr(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=Ne;Ne=void 0;try{t()}finally{Ne=n}}}let oa=0;class su{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class sr{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!Ne||!xt||Ne===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==Ne)n=this.activeLink=new su(Ne,this),Ne.deps?(n.prevDep=Ne.depsTail,Ne.depsTail.nextDep=n,Ne.depsTail=n):Ne.deps=Ne.depsTail=n,po(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const a=n.nextDep;a.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=a),n.prevDep=Ne.depsTail,n.nextDep=void 0,Ne.depsTail.nextDep=n,Ne.depsTail=n,Ne.deps===n&&(Ne.deps=a)}return n}trigger(t){this.version++,oa++,this.notify(t)}notify(t){tr();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{nr()}}}function po(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let a=t.deps;a;a=a.nextDep)po(a)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Ca=new WeakMap,hn=Symbol(""),Ts=Symbol(""),la=Symbol("");function st(e,t,n){if(xt&&Ne){let a=Ca.get(e);a||Ca.set(e,a=new Map);let s=a.get(n);s||(a.set(n,s=new sr),s.map=a,s.key=n),s.track()}}function zt(e,t,n,a,s,r){const o=Ca.get(e);if(!o){oa++;return}const i=l=>{l&&l.trigger()};if(tr(),t==="clear")o.forEach(i);else{const l=_e(e),u=l&&Va(n);if(l&&n==="length"){const c=Number(a);o.forEach((d,f)=>{(f==="length"||f===la||!_t(f)&&f>=c)&&i(d)})}else switch((n!==void 0||o.has(void 0))&&i(o.get(n)),u&&i(o.get(la)),t){case"add":l?u&&i(o.get("length")):(i(o.get(hn)),$n(e)&&i(o.get(Ts)));break;case"delete":l||(i(o.get(hn)),$n(e)&&i(o.get(Ts)));break;case"set":$n(e)&&i(o.get(hn));break}}nr()}function ru(e,t){const n=Ca.get(e);return n&&n.get(t)}function kn(e){const t=Ae(e);return t===e?t:(st(t,"iterate",la),ht(e)?t:t.map(Et))}function Ga(e){return st(e=Ae(e),"iterate",la),e}function Ot(e,t){return Yt(e)?In(Kt(e)?Et(t):t):Et(t)}const iu={__proto__:null,[Symbol.iterator](){return fs(this,Symbol.iterator,e=>Ot(this,e))},concat(...e){return kn(this).concat(...e.map(t=>_e(t)?kn(t):t))},entries(){return fs(this,"entries",e=>(e[1]=Ot(this,e[1]),e))},every(e,t){return Bt(this,"every",e,t,void 0,arguments)},filter(e,t){return Bt(this,"filter",e,t,n=>n.map(a=>Ot(this,a)),arguments)},find(e,t){return Bt(this,"find",e,t,n=>Ot(this,n),arguments)},findIndex(e,t){return Bt(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Bt(this,"findLast",e,t,n=>Ot(this,n),arguments)},findLastIndex(e,t){return Bt(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Bt(this,"forEach",e,t,void 0,arguments)},includes(...e){return ps(this,"includes",e)},indexOf(...e){return ps(this,"indexOf",e)},join(e){return kn(this).join(e)},lastIndexOf(...e){return ps(this,"lastIndexOf",e)},map(e,t){return Bt(this,"map",e,t,void 0,arguments)},pop(){return jn(this,"pop")},push(...e){return jn(this,"push",e)},reduce(e,...t){return Or(this,"reduce",e,t)},reduceRight(e,...t){return Or(this,"reduceRight",e,t)},shift(){return jn(this,"shift")},some(e,t){return Bt(this,"some",e,t,void 0,arguments)},splice(...e){return jn(this,"splice",e)},toReversed(){return kn(this).toReversed()},toSorted(e){return kn(this).toSorted(e)},toSpliced(...e){return kn(this).toSpliced(...e)},unshift(...e){return jn(this,"unshift",e)},values(){return fs(this,"values",e=>Ot(this,e))}};function fs(e,t,n){const a=Ga(e),s=a[t]();return a!==e&&!ht(e)&&(s._next=s.next,s.next=()=>{const r=s._next();return r.done||(r.value=n(r.value)),r}),s}const ou=Array.prototype;function Bt(e,t,n,a,s,r){const o=Ga(e),i=o!==e&&!ht(e),l=o[t];if(l!==ou[t]){const d=l.apply(e,r);return i?Et(d):d}let u=n;o!==e&&(i?u=function(d,f){return n.call(this,Ot(e,d),f,e)}:n.length>2&&(u=function(d,f){return n.call(this,d,f,e)}));const c=l.call(o,u,a);return i&&s?s(c):c}function Or(e,t,n,a){const s=Ga(e),r=s!==e&&!ht(e);let o=n,i=!1;s!==e&&(r?(i=a.length===0,o=function(u,c,d){return i&&(i=!1,u=Ot(e,u)),n.call(this,u,Ot(e,c),d,e)}):n.length>3&&(o=function(u,c,d){return n.call(this,u,c,d,e)}));const l=s[t](o,...a);return i?Ot(e,l):l}function ps(e,t,n){const a=Ae(e);st(a,"iterate",la);const s=a[t](...n);return(s===-1||s===!1)&&qa(n[0])?(n[0]=Ae(n[0]),a[t](...n)):s}function jn(e,t,n=[]){Wt(),tr();const a=Ae(e)[t].apply(e,n);return nr(),Jt(),a}const lu=Xs("__proto__,__v_isRef,__isVue"),vo=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(_t));function uu(e){_t(e)||(e=String(e));const t=Ae(this);return st(t,"has",e),t.hasOwnProperty(e)}class go{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,a){if(n==="__v_skip")return t.__v_skip;const s=this._isReadonly,r=this._isShallow;if(n==="__v_isReactive")return!s;if(n==="__v_isReadonly")return s;if(n==="__v_isShallow")return r;if(n==="__v_raw")return a===(s?r?_u:_o:r?yo:mo).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(a)?t:void 0;const o=_e(t);if(!s){let l;if(o&&(l=iu[n]))return l;if(n==="hasOwnProperty")return uu}const i=Reflect.get(t,n,Ve(t)?t:a);if((_t(n)?vo.has(n):lu(n))||(s||st(t,"get",n),r))return i;if(Ve(i)){const l=o&&Va(n)?i:i.value;return s&&Te(l)?Is(l):l}return Te(i)?s?Is(i):Zt(i):i}}class ho extends go{constructor(t=!1){super(!1,t)}set(t,n,a,s){let r=t[n];const o=_e(t)&&Va(n);if(!this._isShallow){const u=Yt(r);if(!ht(a)&&!Yt(a)&&(r=Ae(r),a=Ae(a)),!o&&Ve(r)&&!Ve(a))return u||(r.value=a),!0}const i=o?Number(n)e,_a=e=>Reflect.getPrototypeOf(e);function vu(e,t,n){return function(...a){const s=this.__v_raw,r=Ae(s),o=$n(r),i=e==="entries"||e===Symbol.iterator&&o,l=e==="keys"&&o,u=s[e](...a),c=n?Ps:t?In:Et;return!t&&st(r,"iterate",l?Ts:hn),nt(Object.create(u),{next(){const{value:d,done:f}=u.next();return f?{value:d,done:f}:{value:i?[c(d[0]),c(d[1])]:c(d),done:f}}})}}function ba(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function gu(e,t){const n={get(s){const r=this.__v_raw,o=Ae(r),i=Ae(s);e||(Nt(s,i)&&st(o,"get",s),st(o,"get",i));const{has:l}=_a(o),u=t?Ps:e?In:Et;if(l.call(o,s))return u(r.get(s));if(l.call(o,i))return u(r.get(i));r!==o&&r.get(s)},get size(){const s=this.__v_raw;return!e&&st(Ae(s),"iterate",hn),s.size},has(s){const r=this.__v_raw,o=Ae(r),i=Ae(s);return e||(Nt(s,i)&&st(o,"has",s),st(o,"has",i)),s===i?r.has(s):r.has(s)||r.has(i)},forEach(s,r){const o=this,i=o.__v_raw,l=Ae(i),u=t?Ps:e?In:Et;return!e&&st(l,"iterate",hn),i.forEach((c,d)=>s.call(r,u(c),u(d),o))}};return nt(n,e?{add:ba("add"),set:ba("set"),delete:ba("delete"),clear:ba("clear")}:{add(s){const r=Ae(this),o=_a(r),i=Ae(s),l=!t&&!ht(s)&&!Yt(s)?i:s;return o.has.call(r,l)||Nt(s,l)&&o.has.call(r,s)||Nt(i,l)&&o.has.call(r,i)||(r.add(l),zt(r,"add",l,l)),this},set(s,r){!t&&!ht(r)&&!Yt(r)&&(r=Ae(r));const o=Ae(this),{has:i,get:l}=_a(o);let u=i.call(o,s);u||(s=Ae(s),u=i.call(o,s));const c=l.call(o,s);return o.set(s,r),u?Nt(r,c)&&zt(o,"set",s,r):zt(o,"add",s,r),this},delete(s){const r=Ae(this),{has:o,get:i}=_a(r);let l=o.call(r,s);l||(s=Ae(s),l=o.call(r,s)),i&&i.call(r,s);const u=r.delete(s);return l&&zt(r,"delete",s,void 0),u},clear(){const s=Ae(this),r=s.size!==0,o=s.clear();return r&&zt(s,"clear",void 0,void 0),o}}),["keys","values","entries",Symbol.iterator].forEach(s=>{n[s]=vu(s,e,t)}),n}function rr(e,t){const n=gu(e,t);return(a,s,r)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?a:Reflect.get(Ee(n,s)&&s in a?n:a,s,r)}const hu={get:rr(!1,!1)},mu={get:rr(!1,!0)},yu={get:rr(!0,!1)};const mo=new WeakMap,yo=new WeakMap,_o=new WeakMap,_u=new WeakMap;function bu(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function wu(e){return e.__v_skip||!Object.isExtensible(e)?0:bu(ql(e))}function Zt(e){return Yt(e)?e:ir(e,!1,du,hu,mo)}function bo(e){return ir(e,!1,pu,mu,yo)}function Is(e){return ir(e,!0,fu,yu,_o)}function ir(e,t,n,a,s){if(!Te(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const r=wu(e);if(r===0)return e;const o=s.get(e);if(o)return o;const i=new Proxy(e,r===2?a:n);return s.set(e,i),i}function Kt(e){return Yt(e)?Kt(e.__v_raw):!!(e&&e.__v_isReactive)}function Yt(e){return!!(e&&e.__v_isReadonly)}function ht(e){return!!(e&&e.__v_isShallow)}function qa(e){return e?!!e.__v_raw:!1}function Ae(e){const t=e&&e.__v_raw;return t?Ae(t):e}function or(e){return!Ee(e,"__v_skip")&&Object.isExtensible(e)&&Zi(e,"__v_skip",!0),e}const Et=e=>Te(e)?Zt(e):e,In=e=>Te(e)?Is(e):e;function Ve(e){return e?e.__v_isRef===!0:!1}function K(e){return wo(e,!1)}function Su(e){return wo(e,!0)}function wo(e,t){return Ve(e)?e:new ku(e,t)}class ku{constructor(t,n){this.dep=new sr,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:Ae(t),this._value=n?t:Et(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,a=this.__v_isShallow||ht(t)||Yt(t);t=a?t:Ae(t),Nt(t,n)&&(this._rawValue=t,this._value=a?t:Et(t),this.dep.trigger())}}function v(e){return Ve(e)?e.value:e}const Au={get:(e,t,n)=>t==="__v_raw"?e:v(Reflect.get(e,t,n)),set:(e,t,n,a)=>{const s=e[t];return Ve(s)&&!Ve(n)?(s.value=n,!0):Reflect.set(e,t,n,a)}};function So(e){return Kt(e)?e:new Proxy(e,Au)}function xu(e){const t=_e(e)?new Array(e.length):{};for(const n in e)t[n]=Eu(e,n);return t}class Cu{constructor(t,n,a){this._object=t,this._defaultValue=a,this.__v_isRef=!0,this._value=void 0,this._key=_t(n)?n:String(n),this._raw=Ae(t);let s=!0,r=t;if(!_e(t)||_t(this._key)||!Va(this._key))do s=!qa(r)||ht(r);while(s&&(r=r.__v_raw));this._shallow=s}get value(){let t=this._object[this._key];return this._shallow&&(t=v(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&Ve(this._raw[this._key])){const n=this._object[this._key];if(Ve(n)){n.value=t;return}}this._object[this._key]=t}get dep(){return ru(this._raw,this._key)}}function Eu(e,t,n){return new Cu(e,t,n)}class Ru{constructor(t,n,a){this.fn=t,this.setter=n,this._value=void 0,this.dep=new sr(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=oa-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=a}notify(){if(this.flags|=16,!(this.flags&8)&&Ne!==this)return oo(this,!0),!0}get value(){const t=this.dep.track();return co(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function $u(e,t,n=!1){let a,s;return we(e)?a=e:(a=e.get,s=e.set),new Ru(a,s,n)}const wa={},Ea=new WeakMap;let pn;function Tu(e,t=!1,n=pn){if(n){let a=Ea.get(n);a||Ea.set(n,a=[]),a.push(e)}}function Pu(e,t,n=Me){const{immediate:a,deep:s,once:r,scheduler:o,augmentJob:i,call:l}=n,u=C=>s?C:ht(C)||s===!1||s===0?on(C,1):on(C);let c,d,f,_,g=!1,m=!1;if(Ve(e)?(d=()=>e.value,g=ht(e)):Kt(e)?(d=()=>u(e),g=!0):_e(e)?(m=!0,g=e.some(C=>Kt(C)||ht(C)),d=()=>e.map(C=>{if(Ve(C))return C.value;if(Kt(C))return u(C);if(we(C))return l?l(C,2):C()})):we(e)?t?d=l?()=>l(e,2):e:d=()=>{if(f){Wt();try{f()}finally{Jt()}}const C=pn;pn=c;try{return l?l(e,3,[_]):e(_)}finally{pn=C}}:d=Mt,t&&s){const C=d,L=s===!0?1/0:s;d=()=>on(C(),L)}const h=so(),$=()=>{c.stop(),h&&h.active&&Zs(h.effects,c)};if(r&&t){const C=t;t=(...L)=>{C(...L),$()}}let y=m?new Array(e.length).fill(wa):wa;const S=C=>{if(!(!(c.flags&1)||!c.dirty&&!C))if(t){const L=c.run();if(s||g||(m?L.some((P,E)=>Nt(P,y[E])):Nt(L,y))){f&&f();const P=pn;pn=c;try{const E=[L,y===wa?void 0:m&&y[0]===wa?[]:y,_];y=L,l?l(t,3,E):t(...E)}finally{pn=P}}}else c.run()};return i&&i(S),c=new ro(d),c.scheduler=o?()=>o(S,!1):S,_=C=>Tu(C,!1,c),f=c.onStop=()=>{const C=Ea.get(c);if(C){if(l)l(C,4);else for(const L of C)L();Ea.delete(c)}},t?a?S(!0):y=c.run():o?o(S.bind(null,!0),!0):c.run(),$.pause=c.pause.bind(c),$.resume=c.resume.bind(c),$.stop=$,$}function on(e,t=1/0,n){if(t<=0||!Te(e)||e.__v_skip||(n=n||new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,Ve(e))on(e.value,t,n);else if(_e(e))for(let a=0;a{on(a,t,n)});else if(Xi(e)){for(const a in e)on(e[a],t,n);for(const a of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,a)&&on(e[a],t,n)}return e}/** +* @vue/runtime-core v3.5.33 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function ga(e,t,n,a){try{return a?e(...a):e()}catch(s){za(s,t,n)}}function Vt(e,t,n,a){if(we(e)){const s=ga(e,t,n,a);return s&&Ji(s)&&s.catch(r=>{za(r,t,n)}),s}if(_e(e)){const s=[];for(let r=0;r>>1,s=ct[a],r=ua(s);r=ua(n)?ct.push(e):ct.splice(Lu(t),0,e),e.flags|=1,Ao()}}function Ao(){Ra||(Ra=ko.then(Co))}function Du(e){_e(e)?Tn.push(...e):sn&&e.id===-1?sn.splice(xn+1,0,e):e.flags&1||(Tn.push(e),e.flags|=1),Ao()}function Fr(e,t,n=Dt+1){for(;nua(n)-ua(a));if(Tn.length=0,sn){sn.push(...t);return}for(sn=t,xn=0;xne.id==null?e.flags&2?-1:1/0:e.id;function Co(e){try{for(Dt=0;Dt{a._d&&Ia(-1);const r=$a(t);let o;try{o=e(...s)}finally{$a(r),a._d&&Ia(1)}return o};return a._n=!0,a._c=!0,a._d=!0,a}function dn(e,t,n,a){const s=e.dirs,r=t&&t.dirs;for(let o=0;o1)return n&&we(t)?t.call(a&&a.proxy):t}}function Ou(){return!!(Za()||mn)}const Fu=Symbol.for("v-scx"),Nu=()=>mt(Fu);function wt(e,t,n){return Ro(e,t,n)}function Ro(e,t,n=Me){const{immediate:a,deep:s,flush:r,once:o}=n,i=nt({},n),l=t&&a||!t&&r!=="post";let u;if(fa){if(r==="sync"){const _=Nu();u=_.__watcherHandles||(_.__watcherHandles=[])}else if(!l){const _=()=>{};return _.stop=Mt,_.resume=Mt,_.pause=Mt,_}}const c=rt;i.call=(_,g,m)=>Vt(_,c,g,m);let d=!1;r==="post"?i.scheduler=_=>{lt(_,c&&c.suspense)}:r!=="sync"&&(d=!0,i.scheduler=(_,g)=>{g?_():lr(_)}),i.augmentJob=_=>{t&&(_.flags|=4),d&&(_.flags|=2,c&&(_.id=c.uid,_.i=c))};const f=Pu(e,t,i);return fa&&(u?u.push(f):l&&f()),f}function Mu(e,t,n){const a=this.proxy,s=He(e)?e.includes(".")?$o(a,e):()=>a[e]:e.bind(a,a);let r;we(t)?r=t:(r=t.handler,n=t);const o=ma(this),i=Ro(s,r.bind(a),n);return o(),i}function $o(e,t){const n=t.split(".");return()=>{let a=e;for(let s=0;se.__isTeleport,vn=e=>e&&(e.disabled||e.disabled===""),Vu=e=>e&&(e.defer||e.defer===""),Nr=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Mr=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Ls=(e,t)=>{const n=e&&e.to;return He(n)?t?t(n):null:n},ju={name:"Teleport",__isTeleport:!0,process(e,t,n,a,s,r,o,i,l,u){const{mc:c,pc:d,pbc:f,o:{insert:_,querySelector:g,createText:m,createComment:h,parentNode:$}}=u,y=vn(t.props);let{dynamicChildren:S}=t;const C=(E,T,w)=>{E.shapeFlag&16&&c(E.children,T,w,s,r,o,i,l)},L=(E=t)=>{const T=vn(E.props),w=E.target=Ls(E.props,g),X=Ds(w,E,m,_);w&&(o!=="svg"&&Nr(w)?o="svg":o!=="mathml"&&Mr(w)&&(o="mathml"),s&&s.isCE&&(s.ce._teleportTargets||(s.ce._teleportTargets=new Set)).add(w),T||(C(E,w,X),Jn(E,!1)))},P=E=>{const T=()=>{if(nn.get(E)===T){if(nn.delete(E),vn(E.props)){const w=$(E.el)||n;C(E,w,E.anchor),Jn(E,!0)}L(E)}};nn.set(E,T),lt(T,r)};if(e==null){const E=t.el=m(""),T=t.anchor=m("");if(_(E,n,a),_(T,n,a),Vu(t.props)||r&&r.pendingBranch){P(t);return}y&&(C(t,n,T),Jn(t,!0)),L()}else{t.el=e.el;const E=t.anchor=e.anchor,T=nn.get(e);if(T){T.flags|=8,nn.delete(e),P(t);return}t.targetStart=e.targetStart;const w=t.target=e.target,X=t.targetAnchor=e.targetAnchor,oe=vn(e.props),fe=oe?n:w,ge=oe?E:X;if(o==="svg"||Nr(w)?o="svg":(o==="mathml"||Mr(w))&&(o="mathml"),S?(f(e.dynamicChildren,S,fe,s,r,o,i),fr(e,t,!0)):l||d(e,t,fe,ge,s,r,o,i,!1),y)oe?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):Sa(t,n,E,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const B=t.target=Ls(t.props,g);B&&Sa(t,B,null,u,0)}else oe&&Sa(t,w,X,u,1);Jn(t,y)}},remove(e,t,n,{um:a,o:{remove:s}},r){const{shapeFlag:o,children:i,anchor:l,targetStart:u,targetAnchor:c,target:d,props:f}=e;let _=r||!vn(f);const g=nn.get(e);if(g&&(g.flags|=8,nn.delete(e),_=!1),d&&(s(u),s(c)),r&&s(l),o&16)for(let m=0;mna(m,t&&(_e(t)?t[h]:t),n,a,s));return}if(Pn(a)&&!s){a.shapeFlag&512&&a.type.__asyncResolved&&a.component.subTree.component&&na(e,t,n,a.component.subTree);return}const r=a.shapeFlag&4?vr(a.component):a.el,o=s?null:r,{i,r:l}=e,u=t&&t.r,c=i.refs===Me?i.refs={}:i.refs,d=i.setupState,f=Ae(d),_=d===Me?Ki:m=>Ur(c,m)?!1:Ee(f,m),g=(m,h)=>!(h&&Ur(c,h));if(u!=null&&u!==l){if(Vr(t),He(u))c[u]=null,_(u)&&(d[u]=null);else if(Ve(u)){const m=t;g(u,m.k)&&(u.value=null),m.k&&(c[m.k]=null)}}if(we(l))ga(l,i,12,[o,c]);else{const m=He(l),h=Ve(l);if(m||h){const $=()=>{if(e.f){const y=m?_(l)?d[l]:c[l]:g()||!e.k?l.value:c[e.k];if(s)_e(y)&&Zs(y,r);else if(_e(y))y.includes(r)||y.push(r);else if(m)c[l]=[r],_(l)&&(d[l]=c[l]);else{const S=[r];g(l,e.k)&&(l.value=S),e.k&&(c[e.k]=S)}}else m?(c[l]=o,_(l)&&(d[l]=o)):h&&(g(l,e.k)&&(l.value=o),e.k&&(c[e.k]=o))};if(o){const y=()=>{$(),Ta.delete(e)};y.id=-1,Ta.set(e,y),lt(y,n)}else Vr(e),$()}}}function Vr(e){const t=Ta.get(e);t&&(t.flags|=8,Ta.delete(e))}Ha().requestIdleCallback;Ha().cancelIdleCallback;const Pn=e=>!!e.type.__asyncLoader,Io=e=>e.type.__isKeepAlive;function qu(e,t){Lo(e,"a",t)}function zu(e,t){Lo(e,"da",t)}function Lo(e,t,n=rt){const a=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Ka(t,a,n),n){let s=n.parent;for(;s&&s.parent;)Io(s.parent.vnode)&&Ku(a,t,n,s),s=s.parent}}function Ku(e,t,n,a){const s=Ka(t,e,a,!0);ha(()=>{Zs(a[t],s)},n)}function Ka(e,t,n=rt,a=!1){if(n){const s=n[e]||(n[e]=[]),r=t.__weh||(t.__weh=(...o)=>{Wt();const i=ma(n),l=Vt(t,n,e,o);return i(),Jt(),l});return a?s.unshift(r):s.push(r),r}}const Qt=e=>(t,n=rt)=>{(!fa||e==="sp")&&Ka(e,(...a)=>t(...a),n)},Wu=Qt("bm"),bt=Qt("m"),Ju=Qt("bu"),Yu=Qt("u"),Wa=Qt("bum"),ha=Qt("um"),Xu=Qt("sp"),Zu=Qt("rtg"),Qu=Qt("rtc");function Do(e,t=rt){Ka("ec",e,t)}const ec="components";function cn(e,t){return nc(ec,e,!0,t)||e}const tc=Symbol.for("v-ndc");function nc(e,t,n=!0,a=!1){const s=dt||rt;if(s){const r=s.type;{const i=Vc(r,!1);if(i&&(i===t||i===ft(t)||i===Ba(ft(t))))return r}const o=jr(s[e]||r[e],t)||jr(s.appContext[e],t);return!o&&a?r:o}}function jr(e,t){return e&&(e[t]||e[ft(t)]||e[Ba(ft(t))])}function Rt(e,t,n,a){let s;const r=n,o=_e(e);if(o||He(e)){const i=o&&Kt(e);let l=!1,u=!1;i&&(l=!ht(e),u=Yt(e),e=Ga(e)),s=new Array(e.length);for(let c=0,d=e.length;ct(i,l,void 0,r));else{const i=Object.keys(e);s=new Array(i.length);for(let l=0,u=i.length;l{const r=a.fn(...s);return r&&(r.key=a.key),r}:a.fn)}return e}function Ja(e,t,n={},a,s){if(dt.ce||dt.parent&&Pn(dt.parent)&&dt.parent.ce){const u=Object.keys(n).length>0;return t!=="default"&&(n.name=t),k(),q(xe,null,[R("slot",n,a&&a())],u?-2:64)}let r=e[t];r&&r._c&&(r._d=!1),k();const o=r&&Fo(r(n)),i=n.key||o&&o.key,l=q(xe,{key:(i&&!_t(i)?i:`_${t}`)+(!o&&a?"_fb":"")},o||(a?a():[]),o&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),r&&r._c&&(r._d=!0),l}function Fo(e){return e.some(t=>da(t)?!(t.type===Xt||t.type===xe&&!Fo(t.children)):!0)?e:null}const Os=e=>e?nl(e)?vr(e):Os(e.parent):null,aa=nt(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Os(e.parent),$root:e=>Os(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>Mo(e),$forceUpdate:e=>e.f||(e.f=()=>{lr(e.update)}),$nextTick:e=>e.n||(e.n=_n.bind(e.proxy)),$watch:e=>Mu.bind(e)}),vs=(e,t)=>e!==Me&&!e.__isScriptSetup&&Ee(e,t),ac={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:a,data:s,props:r,accessCache:o,type:i,appContext:l}=e;if(t[0]!=="$"){const f=o[t];if(f!==void 0)switch(f){case 1:return a[t];case 2:return s[t];case 4:return n[t];case 3:return r[t]}else{if(vs(a,t))return o[t]=1,a[t];if(s!==Me&&Ee(s,t))return o[t]=2,s[t];if(Ee(r,t))return o[t]=3,r[t];if(n!==Me&&Ee(n,t))return o[t]=4,n[t];Fs&&(o[t]=0)}}const u=aa[t];let c,d;if(u)return t==="$attrs"&&st(e.attrs,"get",""),u(e);if((c=i.__cssModules)&&(c=c[t]))return c;if(n!==Me&&Ee(n,t))return o[t]=4,n[t];if(d=l.config.globalProperties,Ee(d,t))return d[t]},set({_:e},t,n){const{data:a,setupState:s,ctx:r}=e;return vs(s,t)?(s[t]=n,!0):a!==Me&&Ee(a,t)?(a[t]=n,!0):Ee(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(r[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:a,appContext:s,props:r,type:o}},i){let l;return!!(n[i]||e!==Me&&i[0]!=="$"&&Ee(e,i)||vs(t,i)||Ee(r,i)||Ee(a,i)||Ee(aa,i)||Ee(s.config.globalProperties,i)||(l=o.__cssModules)&&l[i])},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:Ee(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Br(e){return _e(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Fs=!0;function sc(e){const t=Mo(e),n=e.proxy,a=e.ctx;Fs=!1,t.beforeCreate&&Hr(t.beforeCreate,e,"bc");const{data:s,computed:r,methods:o,watch:i,provide:l,inject:u,created:c,beforeMount:d,mounted:f,beforeUpdate:_,updated:g,activated:m,deactivated:h,beforeDestroy:$,beforeUnmount:y,destroyed:S,unmounted:C,render:L,renderTracked:P,renderTriggered:E,errorCaptured:T,serverPrefetch:w,expose:X,inheritAttrs:oe,components:fe,directives:ge,filters:B}=t;if(u&&rc(u,a,null),o)for(const Y in o){const te=o[Y];we(te)&&(a[Y]=te.bind(n))}if(s){const Y=s.call(n,n);Te(Y)&&(e.data=Zt(Y))}if(Fs=!0,r)for(const Y in r){const te=r[Y],ve=we(te)?te.bind(n,n):we(te.get)?te.get.bind(n,n):Mt,ke=!we(te)&&we(te.set)?te.set.bind(n):Mt,Pe=ee({get:ve,set:ke});Object.defineProperty(a,Y,{enumerable:!0,configurable:!0,get:()=>Pe.value,set:be=>Pe.value=be})}if(i)for(const Y in i)No(i[Y],a,n,Y);if(l){const Y=we(l)?l.call(n):l;Reflect.ownKeys(Y).forEach(te=>{ta(te,Y[te])})}c&&Hr(c,e,"c");function Q(Y,te){_e(te)?te.forEach(ve=>Y(ve.bind(n))):te&&Y(te.bind(n))}if(Q(Wu,d),Q(bt,f),Q(Ju,_),Q(Yu,g),Q(qu,m),Q(zu,h),Q(Do,T),Q(Qu,P),Q(Zu,E),Q(Wa,y),Q(ha,C),Q(Xu,w),_e(X))if(X.length){const Y=e.exposed||(e.exposed={});X.forEach(te=>{Object.defineProperty(Y,te,{get:()=>n[te],set:ve=>n[te]=ve,enumerable:!0})})}else e.exposed||(e.exposed={});L&&e.render===Mt&&(e.render=L),oe!=null&&(e.inheritAttrs=oe),fe&&(e.components=fe),ge&&(e.directives=ge),w&&Po(e)}function rc(e,t,n=Mt){_e(e)&&(e=Ns(e));for(const a in e){const s=e[a];let r;Te(s)?"default"in s?r=mt(s.from||a,s.default,!0):r=mt(s.from||a):r=mt(s),Ve(r)?Object.defineProperty(t,a,{enumerable:!0,configurable:!0,get:()=>r.value,set:o=>r.value=o}):t[a]=r}}function Hr(e,t,n){Vt(_e(e)?e.map(a=>a.bind(t.proxy)):e.bind(t.proxy),t,n)}function No(e,t,n,a){let s=a.includes(".")?$o(n,a):()=>n[a];if(He(e)){const r=t[e];we(r)&&wt(s,r)}else if(we(e))wt(s,e.bind(n));else if(Te(e))if(_e(e))e.forEach(r=>No(r,t,n,a));else{const r=we(e.handler)?e.handler.bind(n):t[e.handler];we(r)&&wt(s,r,e)}}function Mo(e){const t=e.type,{mixins:n,extends:a}=t,{mixins:s,optionsCache:r,config:{optionMergeStrategies:o}}=e.appContext,i=r.get(t);let l;return i?l=i:!s.length&&!n&&!a?l=t:(l={},s.length&&s.forEach(u=>Pa(l,u,o,!0)),Pa(l,t,o)),Te(t)&&r.set(t,l),l}function Pa(e,t,n,a=!1){const{mixins:s,extends:r}=t;r&&Pa(e,r,n,!0),s&&s.forEach(o=>Pa(e,o,n,!0));for(const o in t)if(!(a&&o==="expose")){const i=ic[o]||n&&n[o];e[o]=i?i(e[o],t[o]):t[o]}return e}const ic={data:Gr,props:qr,emits:qr,methods:Yn,computed:Yn,beforeCreate:ot,created:ot,beforeMount:ot,mounted:ot,beforeUpdate:ot,updated:ot,beforeDestroy:ot,beforeUnmount:ot,destroyed:ot,unmounted:ot,activated:ot,deactivated:ot,errorCaptured:ot,serverPrefetch:ot,components:Yn,directives:Yn,watch:lc,provide:Gr,inject:oc};function Gr(e,t){return t?e?function(){return nt(we(e)?e.call(this,this):e,we(t)?t.call(this,this):t)}:t:e}function oc(e,t){return Yn(Ns(e),Ns(t))}function Ns(e){if(_e(e)){const t={};for(let n=0;nt==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${ft(t)}Modifiers`]||e[`${un(t)}Modifiers`];function fc(e,t,...n){if(e.isUnmounted)return;const a=e.vnode.props||Me;let s=n;const r=t.startsWith("update:"),o=r&&dc(a,t.slice(7));o&&(o.trim&&(s=n.map(c=>He(c)?c.trim():c)),o.number&&(s=n.map(Wl)));let i,l=a[i=ls(t)]||a[i=ls(ft(t))];!l&&r&&(l=a[i=ls(un(t))]),l&&Vt(l,e,6,s);const u=a[i+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[i])return;e.emitted[i]=!0,Vt(u,e,6,s)}}const pc=new WeakMap;function Vo(e,t,n=!1){const a=n?pc:t.emitsCache,s=a.get(e);if(s!==void 0)return s;const r=e.emits;let o={},i=!1;if(!we(e)){const l=u=>{const c=Vo(u,t,!0);c&&(i=!0,nt(o,c))};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}return!r&&!i?(Te(e)&&a.set(e,null),null):(_e(r)?r.forEach(l=>o[l]=null):nt(o,r),Te(e)&&a.set(e,o),o)}function Ya(e,t){return!e||!Ma(t)?!1:(t=t.slice(2).replace(/Once$/,""),Ee(e,t[0].toLowerCase()+t.slice(1))||Ee(e,un(t))||Ee(e,t))}function zr(e){const{type:t,vnode:n,proxy:a,withProxy:s,propsOptions:[r],slots:o,attrs:i,emit:l,render:u,renderCache:c,props:d,data:f,setupState:_,ctx:g,inheritAttrs:m}=e,h=$a(e);let $,y;try{if(n.shapeFlag&4){const C=s||a,L=C;$=Ft(u.call(L,C,c,d,_,f,g)),y=i}else{const C=t;$=Ft(C.length>1?C(d,{attrs:i,slots:o,emit:l}):C(d,null)),y=t.props?i:vc(i)}}catch(C){sa.length=0,za(C,e,1),$=R(Xt)}let S=$;if(y&&m!==!1){const C=Object.keys(y),{shapeFlag:L}=S;C.length&&L&7&&(r&&C.some(Ua)&&(y=gc(y,r)),S=Ln(S,y,!1,!0))}return n.dirs&&(S=Ln(S,null,!1,!0),S.dirs=S.dirs?S.dirs.concat(n.dirs):n.dirs),n.transition&&ur(S,n.transition),$=S,$a(h),$}const vc=e=>{let t;for(const n in e)(n==="class"||n==="style"||Ma(n))&&((t||(t={}))[n]=e[n]);return t},gc=(e,t)=>{const n={};for(const a in e)(!Ua(a)||!(a.slice(9)in t))&&(n[a]=e[a]);return n};function hc(e,t,n){const{props:a,children:s,component:r}=e,{props:o,children:i,patchFlag:l}=t,u=r.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&l>=0){if(l&1024)return!0;if(l&16)return a?Kr(a,o,u):!!o;if(l&8){const c=t.dynamicProps;for(let d=0;dObject.create(Bo),Go=e=>Object.getPrototypeOf(e)===Bo;function yc(e,t,n,a=!1){const s={},r=Ho();e.propsDefaults=Object.create(null),qo(e,t,s,r);for(const o in e.propsOptions[0])o in s||(s[o]=void 0);n?e.props=a?s:bo(s):e.type.props?e.props=s:e.props=r,e.attrs=r}function _c(e,t,n,a){const{props:s,attrs:r,vnode:{patchFlag:o}}=e,i=Ae(s),[l]=e.propsOptions;let u=!1;if((a||o>0)&&!(o&16)){if(o&8){const c=e.vnode.dynamicProps;for(let d=0;d{l=!0;const[f,_]=zo(d,t,!0);nt(o,f),_&&i.push(..._)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!r&&!l)return Te(e)&&a.set(e,Rn),Rn;if(_e(r))for(let c=0;ce==="_"||e==="_ctx"||e==="$stable",dr=e=>_e(e)?e.map(Ft):[Ft(e)],wc=(e,t,n)=>{if(t._n)return t;const a=x((...s)=>dr(t(...s)),n);return a._c=!1,a},Ko=(e,t,n)=>{const a=e._ctx;for(const s in e){if(cr(s))continue;const r=e[s];if(we(r))t[s]=wc(s,r,a);else if(r!=null){const o=dr(r);t[s]=()=>o}}},Wo=(e,t)=>{const n=dr(t);e.slots.default=()=>n},Jo=(e,t,n)=>{for(const a in t)(n||!cr(a))&&(e[a]=t[a])},Sc=(e,t,n)=>{const a=e.slots=Ho();if(e.vnode.shapeFlag&32){const s=t._;s?(Jo(a,t,n),n&&Zi(a,"_",s,!0)):Ko(t,a)}else t&&Wo(e,t)},kc=(e,t,n)=>{const{vnode:a,slots:s}=e;let r=!0,o=Me;if(a.shapeFlag&32){const i=t._;i?n&&i===1?r=!1:Jo(s,t,n):(r=!t.$stable,Ko(t,s)),o=t}else t&&(Wo(e,t),o={default:1});if(r)for(const i in s)!cr(i)&&o[i]==null&&delete s[i]},lt=Rc;function Ac(e){return xc(e)}function xc(e,t){const n=Ha();n.__VUE__=!0;const{insert:a,remove:s,patchProp:r,createElement:o,createText:i,createComment:l,setText:u,setElementText:c,parentNode:d,nextSibling:f,setScopeId:_=Mt,insertStaticContent:g}=e,m=(p,b,A,j=null,W=null,z=null,le=void 0,re=null,ae=!!b.dynamicChildren)=>{if(p===b)return;p&&!Bn(p,b)&&(j=M(p),be(p,W,z,!0),p=null),b.patchFlag===-2&&(ae=!1,b.dynamicChildren=null);const{type:Z,ref:pe,shapeFlag:ue}=b;switch(Z){case Xa:h(p,b,A,j);break;case Xt:$(p,b,A,j);break;case ka:p==null&&y(b,A,j,le);break;case xe:fe(p,b,A,j,W,z,le,re,ae);break;default:ue&1?L(p,b,A,j,W,z,le,re,ae):ue&6?ge(p,b,A,j,W,z,le,re,ae):(ue&64||ue&128)&&Z.process(p,b,A,j,W,z,le,re,ae,F)}pe!=null&&W?na(pe,p&&p.ref,z,b||p,!b):pe==null&&p&&p.ref!=null&&na(p.ref,null,z,p,!0)},h=(p,b,A,j)=>{if(p==null)a(b.el=i(b.children),A,j);else{const W=b.el=p.el;b.children!==p.children&&u(W,b.children)}},$=(p,b,A,j)=>{p==null?a(b.el=l(b.children||""),A,j):b.el=p.el},y=(p,b,A,j)=>{[p.el,p.anchor]=g(p.children,b,A,j,p.el,p.anchor)},S=({el:p,anchor:b},A,j)=>{let W;for(;p&&p!==b;)W=f(p),a(p,A,j),p=W;a(b,A,j)},C=({el:p,anchor:b})=>{let A;for(;p&&p!==b;)A=f(p),s(p),p=A;s(b)},L=(p,b,A,j,W,z,le,re,ae)=>{if(b.type==="svg"?le="svg":b.type==="math"&&(le="mathml"),p==null)P(b,A,j,W,z,le,re,ae);else{const Z=p.el&&p.el._isVueCE?p.el:null;try{Z&&Z._beginPatch(),w(p,b,W,z,le,re,ae)}finally{Z&&Z._endPatch()}}},P=(p,b,A,j,W,z,le,re)=>{let ae,Z;const{props:pe,shapeFlag:ue,transition:ce,dirs:me}=p;if(ae=p.el=o(p.type,z,pe&&pe.is,pe),ue&8?c(ae,p.children):ue&16&&T(p.children,ae,null,j,W,gs(p,z),le,re),me&&dn(p,null,j,"created"),E(ae,p,p.scopeId,le,j),pe){for(const $e in pe)$e!=="value"&&!Zn($e)&&r(ae,$e,null,pe[$e],z,j);"value"in pe&&r(ae,"value",null,pe.value,z),(Z=pe.onVnodeBeforeMount)&&Pt(Z,j,p)}me&&dn(p,null,j,"beforeMount");const Se=Cc(W,ce);Se&&ce.beforeEnter(ae),a(ae,b,A),((Z=pe&&pe.onVnodeMounted)||Se||me)&<(()=>{try{Z&&Pt(Z,j,p),Se&&ce.enter(ae),me&&dn(p,null,j,"mounted")}finally{}},W)},E=(p,b,A,j,W)=>{if(A&&_(p,A),j)for(let z=0;z{for(let Z=ae;Z{const re=b.el=p.el;let{patchFlag:ae,dynamicChildren:Z,dirs:pe}=b;ae|=p.patchFlag&16;const ue=p.props||Me,ce=b.props||Me;let me;if(A&&fn(A,!1),(me=ce.onVnodeBeforeUpdate)&&Pt(me,A,b,p),pe&&dn(b,p,A,"beforeUpdate"),A&&fn(A,!0),(ue.innerHTML&&ce.innerHTML==null||ue.textContent&&ce.textContent==null)&&c(re,""),Z?X(p.dynamicChildren,Z,re,A,j,gs(b,W),z):le||te(p,b,re,null,A,j,gs(b,W),z,!1),ae>0){if(ae&16)oe(re,ue,ce,A,W);else if(ae&2&&ue.class!==ce.class&&r(re,"class",null,ce.class,W),ae&4&&r(re,"style",ue.style,ce.style,W),ae&8){const Se=b.dynamicProps;for(let $e=0;$e{me&&Pt(me,A,b,p),pe&&dn(b,p,A,"updated")},j)},X=(p,b,A,j,W,z,le)=>{for(let re=0;re{if(b!==A){if(b!==Me)for(const z in b)!Zn(z)&&!(z in A)&&r(p,z,b[z],null,W,j);for(const z in A){if(Zn(z))continue;const le=A[z],re=b[z];le!==re&&z!=="value"&&r(p,z,re,le,W,j)}"value"in A&&r(p,"value",b.value,A.value,W)}},fe=(p,b,A,j,W,z,le,re,ae)=>{const Z=b.el=p?p.el:i(""),pe=b.anchor=p?p.anchor:i("");let{patchFlag:ue,dynamicChildren:ce,slotScopeIds:me}=b;me&&(re=re?re.concat(me):me),p==null?(a(Z,A,j),a(pe,A,j),T(b.children||[],A,pe,W,z,le,re,ae)):ue>0&&ue&64&&ce&&p.dynamicChildren&&p.dynamicChildren.length===ce.length?(X(p.dynamicChildren,ce,A,W,z,le,re),(b.key!=null||W&&b===W.subTree)&&fr(p,b,!0)):te(p,b,A,pe,W,z,le,re,ae)},ge=(p,b,A,j,W,z,le,re,ae)=>{b.slotScopeIds=re,p==null?b.shapeFlag&512?W.ctx.activate(b,A,j,le,ae):B(b,A,j,W,z,le,ae):J(p,b,ae)},B=(p,b,A,j,W,z,le)=>{const re=p.component=Oc(p,j,W);if(Io(p)&&(re.ctx.renderer=F),Fc(re,!1,le),re.asyncDep){if(W&&W.registerDep(re,Q,le),!p.el){const ae=re.subTree=R(Xt);$(null,ae,b,A),p.placeholder=ae.el}}else Q(re,p,b,A,W,z,le)},J=(p,b,A)=>{const j=b.component=p.component;if(hc(p,b,A))if(j.asyncDep&&!j.asyncResolved){Y(j,b,A);return}else j.next=b,j.update();else b.el=p.el,j.vnode=b},Q=(p,b,A,j,W,z,le)=>{const re=()=>{if(p.isMounted){let{next:ue,bu:ce,u:me,parent:Se,vnode:$e}=p;{const Le=Yo(p);if(Le){ue&&(ue.el=$e.el,Y(p,ue,le)),Le.asyncDep.then(()=>{lt(()=>{p.isUnmounted||Z()},W)});return}}let Ie=ue,Be;fn(p,!1),ue?(ue.el=$e.el,Y(p,ue,le)):ue=$e,ce&&us(ce),(Be=ue.props&&ue.props.onVnodeBeforeUpdate)&&Pt(Be,Se,ue,$e),fn(p,!0);const ie=zr(p),D=p.subTree;p.subTree=ie,m(D,ie,d(D.el),M(D),p,W,z),ue.el=ie.el,Ie===null&&mc(p,ie.el),me&<(me,W),(Be=ue.props&&ue.props.onVnodeUpdated)&<(()=>Pt(Be,Se,ue,$e),W)}else{let ue;const{el:ce,props:me}=b,{bm:Se,m:$e,parent:Ie,root:Be,type:ie}=p,D=Pn(b);fn(p,!1),Se&&us(Se),!D&&(ue=me&&me.onVnodeBeforeMount)&&Pt(ue,Ie,b),fn(p,!0);{Be.ce&&Be.ce._hasShadowRoot()&&Be.ce._injectChildStyle(ie,p.parent?p.parent.type:void 0);const Le=p.subTree=zr(p);m(null,Le,A,j,p,W,z),b.el=Le.el}if($e&<($e,W),!D&&(ue=me&&me.onVnodeMounted)){const Le=b;lt(()=>Pt(ue,Ie,Le),W)}(b.shapeFlag&256||Ie&&Pn(Ie.vnode)&&Ie.vnode.shapeFlag&256)&&p.a&<(p.a,W),p.isMounted=!0,b=A=j=null}};p.scope.on();const ae=p.effect=new ro(re);p.scope.off();const Z=p.update=ae.run.bind(ae),pe=p.job=ae.runIfDirty.bind(ae);pe.i=p,pe.id=p.uid,ae.scheduler=()=>lr(pe),fn(p,!0),Z()},Y=(p,b,A)=>{b.component=p;const j=p.vnode.props;p.vnode=b,p.next=null,_c(p,b.props,j,A),kc(p,b.children,A),Wt(),Fr(p),Jt()},te=(p,b,A,j,W,z,le,re,ae=!1)=>{const Z=p&&p.children,pe=p?p.shapeFlag:0,ue=b.children,{patchFlag:ce,shapeFlag:me}=b;if(ce>0){if(ce&128){ke(Z,ue,A,j,W,z,le,re,ae);return}else if(ce&256){ve(Z,ue,A,j,W,z,le,re,ae);return}}me&8?(pe&16&&Oe(Z,W,z),ue!==Z&&c(A,ue)):pe&16?me&16?ke(Z,ue,A,j,W,z,le,re,ae):Oe(Z,W,z,!0):(pe&8&&c(A,""),me&16&&T(ue,A,j,W,z,le,re,ae))},ve=(p,b,A,j,W,z,le,re,ae)=>{p=p||Rn,b=b||Rn;const Z=p.length,pe=b.length,ue=Math.min(Z,pe);let ce;for(ce=0;cepe?Oe(p,W,z,!0,!1,ue):T(b,A,j,W,z,le,re,ae,ue)},ke=(p,b,A,j,W,z,le,re,ae)=>{let Z=0;const pe=b.length;let ue=p.length-1,ce=pe-1;for(;Z<=ue&&Z<=ce;){const me=p[Z],Se=b[Z]=ae?qt(b[Z]):Ft(b[Z]);if(Bn(me,Se))m(me,Se,A,null,W,z,le,re,ae);else break;Z++}for(;Z<=ue&&Z<=ce;){const me=p[ue],Se=b[ce]=ae?qt(b[ce]):Ft(b[ce]);if(Bn(me,Se))m(me,Se,A,null,W,z,le,re,ae);else break;ue--,ce--}if(Z>ue){if(Z<=ce){const me=ce+1,Se=mece)for(;Z<=ue;)be(p[Z],W,z,!0),Z++;else{const me=Z,Se=Z,$e=new Map;for(Z=Se;Z<=ce;Z++){const Je=b[Z]=ae?qt(b[Z]):Ft(b[Z]);Je.key!=null&&$e.set(Je.key,Z)}let Ie,Be=0;const ie=ce-Se+1;let D=!1,Le=0;const et=new Array(ie);for(Z=0;Z=ie){be(Je,W,z,!0);continue}let Ke;if(Je.key!=null)Ke=$e.get(Je.key);else for(Ie=Se;Ie<=ce;Ie++)if(et[Ie-Se]===0&&Bn(Je,b[Ie])){Ke=Ie;break}Ke===void 0?be(Je,W,z,!0):(et[Ke-Se]=Z+1,Ke>=Le?Le=Ke:D=!0,m(Je,b[Ke],A,null,W,z,le,re,ae),Be++)}const he=D?Ec(et):Rn;for(Ie=he.length-1,Z=ie-1;Z>=0;Z--){const Je=Se+Z,Ke=b[Je],Vn=b[Je+1],Pr=Je+1{const{el:z,type:le,transition:re,children:ae,shapeFlag:Z}=p;if(Z&6){Pe(p.component.subTree,b,A,j);return}if(Z&128){p.suspense.move(b,A,j);return}if(Z&64){le.move(p,b,A,F);return}if(le===xe){a(z,b,A);for(let ue=0;uere.enter(z),W);else{const{leave:ue,delayLeave:ce,afterLeave:me}=re,Se=()=>{p.ctx.isUnmounted?s(z):a(z,b,A)},$e=()=>{z._isLeaving&&z[Gu](!0),ue(z,()=>{Se(),me&&me()})};ce?ce(z,Se,$e):$e()}else a(z,b,A)},be=(p,b,A,j=!1,W=!1)=>{const{type:z,props:le,ref:re,children:ae,dynamicChildren:Z,shapeFlag:pe,patchFlag:ue,dirs:ce,cacheIndex:me,memo:Se}=p;if(ue===-2&&(W=!1),re!=null&&(Wt(),na(re,null,A,p,!0),Jt()),me!=null&&(b.renderCache[me]=void 0),pe&256){b.ctx.deactivate(p);return}const $e=pe&1&&ce,Ie=!Pn(p);let Be;if(Ie&&(Be=le&&le.onVnodeBeforeUnmount)&&Pt(Be,b,p),pe&6)De(p.component,A,j);else{if(pe&128){p.suspense.unmount(A,j);return}$e&&dn(p,null,b,"beforeUnmount"),pe&64?p.type.remove(p,b,A,F,j):Z&&!Z.hasOnce&&(z!==xe||ue>0&&ue&64)?Oe(Z,b,A,!1,!0):(z===xe&&ue&384||!W&&pe&16)&&Oe(ae,b,A),j&&Ge(p)}const ie=Se!=null&&me==null;(Ie&&(Be=le&&le.onVnodeUnmounted)||$e||ie)&<(()=>{Be&&Pt(Be,b,p),$e&&dn(p,null,b,"unmounted"),ie&&(p.el=null)},A)},Ge=p=>{const{type:b,el:A,anchor:j,transition:W}=p;if(b===xe){Ue(A,j);return}if(b===ka){C(p);return}const z=()=>{s(A),W&&!W.persisted&&W.afterLeave&&W.afterLeave()};if(p.shapeFlag&1&&W&&!W.persisted){const{leave:le,delayLeave:re}=W,ae=()=>le(A,z);re?re(p.el,z,ae):ae()}else z()},Ue=(p,b)=>{let A;for(;p!==b;)A=f(p),s(p),p=A;s(b)},De=(p,b,A)=>{const{bum:j,scope:W,job:z,subTree:le,um:re,m:ae,a:Z}=p;Jr(ae),Jr(Z),j&&us(j),W.stop(),z&&(z.flags|=8,be(le,p,b,A)),re&<(re,b),lt(()=>{p.isUnmounted=!0},b)},Oe=(p,b,A,j=!1,W=!1,z=0)=>{for(let le=z;le{if(p.shapeFlag&6)return M(p.component.subTree);if(p.shapeFlag&128)return p.suspense.next();const b=f(p.anchor||p.el),A=b&&b[To];return A?f(A):b};let se=!1;const H=(p,b,A)=>{let j;p==null?b._vnode&&(be(b._vnode,null,null,!0),j=b._vnode.component):m(b._vnode||null,p,b,null,null,null,A),b._vnode=p,se||(se=!0,Fr(j),xo(),se=!1)},F={p:m,um:be,m:Pe,r:Ge,mt:B,mc:T,pc:te,pbc:X,n:M,o:e};return{render:H,hydrate:void 0,createApp:cc(H)}}function gs({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function fn({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function Cc(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function fr(e,t,n=!1){const a=e.children,s=t.children;if(_e(a)&&_e(s))for(let r=0;r>1,e[n[i]]0&&(t[a]=n[r-1]),n[r]=a)}}for(r=n.length,o=n[r-1];r-- >0;)n[r]=o,o=t[o];return n}function Yo(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Yo(t)}function Jr(e){if(e)for(let t=0;te.__isSuspense;function Rc(e,t){t&&t.pendingBranch?_e(e)?t.effects.push(...e):t.effects.push(e):Du(e)}const xe=Symbol.for("v-fgt"),Xa=Symbol.for("v-txt"),Xt=Symbol.for("v-cmt"),ka=Symbol.for("v-stc"),sa=[];let vt=null;function k(e=!1){sa.push(vt=e?null:[])}function $c(){sa.pop(),vt=sa[sa.length-1]||null}let ca=1;function Ia(e,t=!1){ca+=e,e<0&&vt&&t&&(vt.hasOnce=!0)}function Qo(e){return e.dynamicChildren=ca>0?vt||Rn:null,$c(),ca>0&&vt&&vt.push(e),e}function G(e,t,n,a,s,r){return Qo(I(e,t,n,a,s,r,!0))}function q(e,t,n,a,s){return Qo(R(e,t,n,a,s,!0))}function da(e){return e?e.__v_isVNode===!0:!1}function Bn(e,t){return e.type===t.type&&e.key===t.key}const el=({key:e})=>e??null,Aa=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?He(e)||Ve(e)||we(e)?{i:dt,r:e,k:t,f:!!n}:e:null);function I(e,t=null,n=null,a=0,s=null,r=e===xe?0:1,o=!1,i=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&el(t),ref:t&&Aa(t),scopeId:Eo,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:r,patchFlag:a,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:dt};return i?(pr(l,n),r&128&&e.normalize(l)):n&&(l.shapeFlag|=He(n)?8:16),ca>0&&!o&&vt&&(l.patchFlag>0||r&6)&&l.patchFlag!==32&&vt.push(l),l}const R=Tc;function Tc(e,t=null,n=null,a=0,s=null,r=!1){if((!e||e===tc)&&(e=Xt),da(e)){const i=Ln(e,t,!0);return n&&pr(i,n),ca>0&&!r&&vt&&(i.shapeFlag&6?vt[vt.indexOf(e)]=i:vt.push(i)),i.patchFlag=-2,i}if(jc(e)&&(e=e.__vccOpts),t){t=Pc(t);let{class:i,style:l}=t;i&&!He(i)&&(t.class=Ct(i)),Te(l)&&(qa(l)&&!_e(l)&&(l=nt({},l)),t.style=Qs(l))}const o=He(e)?1:Zo(e)?128:Uu(e)?64:Te(e)?4:we(e)?2:0;return I(e,t,n,a,s,o,r,!0)}function Pc(e){return e?qa(e)||Go(e)?nt({},e):e:null}function Ln(e,t,n=!1,a=!1){const{props:s,ref:r,patchFlag:o,children:i,transition:l}=e,u=t?tl(s||{},t):s,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&el(u),ref:t&&t.ref?n&&r?_e(r)?r.concat(Aa(t)):[r,Aa(t)]:Aa(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==xe?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:l,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ln(e.ssContent),ssFallback:e.ssFallback&&Ln(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return l&&a&&ur(c,l.clone(c)),c}function N(e=" ",t=0){return R(Xa,null,e,t)}function Ic(e,t){const n=R(ka,null,e);return n.staticCount=t,n}function ne(e="",t=!1){return t?(k(),q(Xt,null,e)):R(Xt,null,e)}function Ft(e){return e==null||typeof e=="boolean"?R(Xt):_e(e)?R(xe,null,e.slice()):da(e)?qt(e):R(Xa,null,String(e))}function qt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ln(e)}function pr(e,t){let n=0;const{shapeFlag:a}=e;if(t==null)t=null;else if(_e(t))n=16;else if(typeof t=="object")if(a&65){const s=t.default;s&&(s._c&&(s._d=!1),pr(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!Go(t)?t._ctx=dt:s===3&&dt&&(dt.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else we(t)?(t={default:t,_ctx:dt},n=32):(t=String(t),a&64?(n=16,t=[N(t)]):n=8);e.children=t,e.shapeFlag|=n}function tl(...e){const t={};for(let n=0;nrt||dt;let La,Us;{const e=Ha(),t=(n,a)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(a),r=>{s.length>1?s.forEach(o=>o(r)):s[0](r)}};La=t("__VUE_INSTANCE_SETTERS__",n=>rt=n),Us=t("__VUE_SSR_SETTERS__",n=>fa=n)}const ma=e=>{const t=rt;return La(e),e.scope.on(),()=>{e.scope.off(),La(t)}},Yr=()=>{rt&&rt.scope.off(),La(null)};function nl(e){return e.vnode.shapeFlag&4}let fa=!1;function Fc(e,t=!1,n=!1){t&&Us(t);const{props:a,children:s}=e.vnode,r=nl(e);yc(e,a,r,t),Sc(e,s,n||t);const o=r?Nc(e,t):void 0;return t&&Us(!1),o}function Nc(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,ac);const{setup:a}=n;if(a){Wt();const s=e.setupContext=a.length>1?Uc(e):null,r=ma(e),o=ga(a,e,0,[e.props,s]),i=Ji(o);if(Jt(),r(),(i||e.sp)&&!Pn(e)&&Po(e),i){if(o.then(Yr,Yr),t)return o.then(l=>{Xr(e,l)}).catch(l=>{za(l,e,0)});e.asyncDep=o}else Xr(e,o)}else al(e)}function Xr(e,t,n){we(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Te(t)&&(e.setupState=So(t)),al(e)}function al(e,t,n){const a=e.type;e.render||(e.render=a.render||Mt);{const s=ma(e);Wt();try{sc(e)}finally{Jt(),s()}}}const Mc={get(e,t){return st(e,"get",""),e[t]}};function Uc(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Mc),slots:e.slots,emit:e.emit,expose:t}}function vr(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(So(or(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in aa)return aa[n](e)},has(t,n){return n in t||n in aa}})):e.proxy}function Vc(e,t=!0){return we(e)?e.displayName||e.name:e.name||t&&e.__name}function jc(e){return we(e)&&"__vccOpts"in e}const ee=(e,t)=>$u(e,t,fa);function U(e,t,n){try{Ia(-1);const a=arguments.length;return a===2?Te(t)&&!_e(t)?da(t)?R(e,null,[t]):R(e,t):R(e,null,t):(a>3?n=Array.prototype.slice.call(arguments,2):a===3&&da(n)&&(n=[n]),R(e,t,n))}finally{Ia(1)}}const Bc="3.5.33";/** +* @vue/runtime-dom v3.5.33 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Vs;const Zr=typeof window<"u"&&window.trustedTypes;if(Zr)try{Vs=Zr.createPolicy("vue",{createHTML:e=>e})}catch{}const sl=Vs?e=>Vs.createHTML(e):e=>e,Hc="http://www.w3.org/2000/svg",Gc="http://www.w3.org/1998/Math/MathML",Gt=typeof document<"u"?document:null,Qr=Gt&&Gt.createElement("template"),qc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,a)=>{const s=t==="svg"?Gt.createElementNS(Hc,e):t==="mathml"?Gt.createElementNS(Gc,e):n?Gt.createElement(e,{is:n}):Gt.createElement(e);return e==="select"&&a&&a.multiple!=null&&s.setAttribute("multiple",a.multiple),s},createText:e=>Gt.createTextNode(e),createComment:e=>Gt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Gt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,a,s,r){const o=n?n.previousSibling:t.lastChild;if(s&&(s===r||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===r||!(s=s.nextSibling)););else{Qr.innerHTML=sl(a==="svg"?`${e}`:a==="mathml"?`${e}`:e);const i=Qr.content;if(a==="svg"||a==="mathml"){const l=i.firstChild;for(;l.firstChild;)i.appendChild(l.firstChild);i.removeChild(l)}t.insertBefore(i,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},zc=Symbol("_vtc");function Kc(e,t,n){const a=e[zc];a&&(t=(t?[t,...a]:[...a]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const ei=Symbol("_vod"),Wc=Symbol("_vsh"),Jc=Symbol(""),Yc=/(?:^|;)\s*display\s*:/;function Xc(e,t,n){const a=e.style,s=He(n);let r=!1;if(n&&!s){if(t)if(He(t))for(const o of t.split(";")){const i=o.slice(0,o.indexOf(":")).trim();n[i]==null&&Xn(a,i,"")}else for(const o in t)n[o]==null&&Xn(a,o,"");for(const o in n){o==="display"&&(r=!0);const i=n[o];i!=null?Qc(e,o,!He(t)&&t?t[o]:void 0,i)||Xn(a,o,i):Xn(a,o,"")}}else if(s){if(t!==n){const o=a[Jc];o&&(n+=";"+o),a.cssText=n,r=Yc.test(n)}}else t&&e.removeAttribute("style");ei in e&&(e[ei]=r?a.display:"",e[Wc]&&(a.display="none"))}const ti=/\s*!important$/;function Xn(e,t,n){if(_e(n))n.forEach(a=>Xn(e,t,a));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const a=Zc(e,t);ti.test(n)?e.setProperty(un(a),n.replace(ti,""),"important"):e[a]=n}}const ni=["Webkit","Moz","ms"],hs={};function Zc(e,t){const n=hs[t];if(n)return n;let a=ft(t);if(a!=="filter"&&a in e)return hs[t]=a;a=Ba(a);for(let s=0;sms||(sd.then(()=>ms=0),ms=Date.now());function id(e,t){const n=a=>{if(!a._vts)a._vts=Date.now();else if(a._vts<=n.attached)return;Vt(od(a,n.value),t,5,[a])};return n.value=e,n.attached=rd(),n}function od(e,t){if(_e(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(a=>s=>!s._stopped&&a&&a(s))}else return t}const li=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ld=(e,t,n,a,s,r)=>{const o=s==="svg";t==="class"?Kc(e,a,o):t==="style"?Xc(e,n,a):Ma(t)?Ua(t)||nd(e,t,n,a,r):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):ud(e,t,a,o))?(ri(e,t,a),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&si(e,t,a,o,r,t!=="value")):e._isVueCE&&(cd(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!He(a)))?ri(e,ft(t),a,r,t):(t==="true-value"?e._trueValue=a:t==="false-value"&&(e._falseValue=a),si(e,t,a,o))};function ud(e,t,n,a){if(a)return!!(t==="innerHTML"||t==="textContent"||t in e&&li(t)&&we(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="sandbox"&&e.tagName==="IFRAME"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const s=e.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return li(t)&&He(n)?!1:t in e}function cd(e,t){const n=e._def.props;if(!n)return!1;const a=ft(t);return Array.isArray(n)?n.some(s=>ft(s)===a):Object.keys(n).some(s=>ft(s)===a)}const dd=["ctrl","shift","alt","meta"],fd={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>dd.some(n=>e[`${n}Key`]&&!t.includes(n))},Qa=(e,t)=>{if(!e)return e;const n=e._withMods||(e._withMods={}),a=t.join(".");return n[a]||(n[a]=((s,...r)=>{for(let o=0;o{const n=e._withKeys||(e._withKeys={}),a=t.join(".");return n[a]||(n[a]=(s=>{if(!("key"in s))return;const r=un(s.key);if(t.some(o=>o===r||pd[o]===r))return e(s)}))},gd=nt({patchProp:ld},qc);let ui;function hd(){return ui||(ui=Ac(gd))}const md=((...e)=>{const t=hd().createApp(...e),{mount:n}=t;return t.mount=a=>{const s=_d(a);if(!s)return;const r=t._component;!we(r)&&!r.render&&!r.template&&(r.template=s.innerHTML),s.nodeType===1&&(s.textContent="");const o=n(s,!1,yd(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),o},t});function yd(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function _d(e){return He(e)?document.querySelector(e):e}/*! + * pinia v2.3.1 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */let rl;const es=e=>rl=e,il=Symbol();function js(e){return e&&typeof e=="object"&&Object.prototype.toString.call(e)==="[object Object]"&&typeof e.toJSON!="function"}var ra;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(ra||(ra={}));function bd(){const e=ao(!0),t=e.run(()=>K({}));let n=[],a=[];const s=or({install(r){es(s),s._a=r,r.provide(il,s),r.config.globalProperties.$pinia=s,a.forEach(o=>n.push(o)),a=[]},use(r){return this._a?n.push(r):a.push(r),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return s}const ol=()=>{};function ci(e,t,n,a=ol){e.push(t);const s=()=>{const r=e.indexOf(t);r>-1&&(e.splice(r,1),a())};return!n&&so()&&nu(s),s}function An(e,...t){e.slice().forEach(n=>{n(...t)})}const wd=e=>e(),di=Symbol(),ys=Symbol();function Bs(e,t){e instanceof Map&&t instanceof Map?t.forEach((n,a)=>e.set(a,n)):e instanceof Set&&t instanceof Set&&t.forEach(e.add,e);for(const n in t){if(!t.hasOwnProperty(n))continue;const a=t[n],s=e[n];js(s)&&js(a)&&e.hasOwnProperty(n)&&!Ve(a)&&!Kt(a)?e[n]=Bs(s,a):e[n]=a}return e}const Sd=Symbol();function kd(e){return!js(e)||!e.hasOwnProperty(Sd)}const{assign:an}=Object;function Ad(e){return!!(Ve(e)&&e.effect)}function xd(e,t,n,a){const{state:s,actions:r,getters:o}=t,i=n.state.value[e];let l;function u(){i||(n.state.value[e]=s?s():{});const c=xu(n.state.value[e]);return an(c,r,Object.keys(o||{}).reduce((d,f)=>(d[f]=or(ee(()=>{es(n);const _=n._s.get(e);return o[f].call(_,_)})),d),{}))}return l=ll(e,u,t,n,a,!0),l}function ll(e,t,n={},a,s,r){let o;const i=an({actions:{}},n),l={deep:!0};let u,c,d=[],f=[],_;const g=a.state.value[e];!r&&!g&&(a.state.value[e]={});let m;function h(T){let w;u=c=!1,typeof T=="function"?(T(a.state.value[e]),w={type:ra.patchFunction,storeId:e,events:_}):(Bs(a.state.value[e],T),w={type:ra.patchObject,payload:T,storeId:e,events:_});const X=m=Symbol();_n().then(()=>{m===X&&(u=!0)}),c=!0,An(d,w,a.state.value[e])}const $=r?function(){const{state:w}=n,X=w?w():{};this.$patch(oe=>{an(oe,X)})}:ol;function y(){o.stop(),d=[],f=[],a._s.delete(e)}const S=(T,w="")=>{if(di in T)return T[ys]=w,T;const X=function(){es(a);const oe=Array.from(arguments),fe=[],ge=[];function B(Y){fe.push(Y)}function J(Y){ge.push(Y)}An(f,{args:oe,name:X[ys],store:L,after:B,onError:J});let Q;try{Q=T.apply(this&&this.$id===e?this:L,oe)}catch(Y){throw An(ge,Y),Y}return Q instanceof Promise?Q.then(Y=>(An(fe,Y),Y)).catch(Y=>(An(ge,Y),Promise.reject(Y))):(An(fe,Q),Q)};return X[di]=!0,X[ys]=w,X},C={_p:a,$id:e,$onAction:ci.bind(null,f),$patch:h,$reset:$,$subscribe(T,w={}){const X=ci(d,T,w.detached,()=>oe()),oe=o.run(()=>wt(()=>a.state.value[e],fe=>{(w.flush==="sync"?c:u)&&T({storeId:e,type:ra.direct,events:_},fe)},an({},l,w)));return X},$dispose:y},L=Zt(C);a._s.set(e,L);const E=(a._a&&a._a.runWithContext||wd)(()=>a._e.run(()=>(o=ao()).run(()=>t({action:S}))));for(const T in E){const w=E[T];if(Ve(w)&&!Ad(w)||Kt(w))r||(g&&kd(w)&&(Ve(w)?w.value=g[T]:Bs(w,g[T])),a.state.value[e][T]=w);else if(typeof w=="function"){const X=S(w,T);E[T]=X,i.actions[T]=w}}return an(L,E),an(Ae(L),E),Object.defineProperty(L,"$state",{get:()=>a.state.value[e],set:T=>{h(w=>{an(w,T)})}}),a._p.forEach(T=>{an(L,o.run(()=>T({store:L,app:a._a,pinia:a,options:i})))}),g&&r&&n.hydrate&&n.hydrate(L.$state,g),u=!0,c=!0,L}/*! #__NO_SIDE_EFFECTS__ */function bn(e,t,n){let a,s;const r=typeof t=="function";typeof e=="string"?(a=e,s=r?n:t):(s=e,a=e.id);function o(i,l){const u=Ou();return i=i||(u?mt(il,null):null),i&&es(i),i=rl,i._s.has(a)||(r?ll(a,t,s,i):xd(a,s,i)),i._s.get(a)}return o.$id=a,o}const Cd="modulepreload",Ed=function(e){return"/"+e},fi={},gr=function(t,n,a){let s=Promise.resolve();if(n&&n.length>0){let o=function(u){return Promise.all(u.map(c=>Promise.resolve(c).then(d=>({status:"fulfilled",value:d}),d=>({status:"rejected",reason:d}))))};document.getElementsByTagName("link");const i=document.querySelector("meta[property=csp-nonce]"),l=(i==null?void 0:i.nonce)||(i==null?void 0:i.getAttribute("nonce"));s=o(n.map(u=>{if(u=Ed(u),u in fi)return;fi[u]=!0;const c=u.endsWith(".css"),d=c?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${u}"]${d}`))return;const f=document.createElement("link");if(f.rel=c?"stylesheet":Cd,c||(f.as="script"),f.crossOrigin="",f.href=u,l&&f.setAttribute("nonce",l),document.head.appendChild(f),c)return new Promise((_,g)=>{f.addEventListener("load",_),f.addEventListener("error",()=>g(new Error(`Unable to preload CSS for ${u}`)))})}))}function r(o){const i=new Event("vite:preloadError",{cancelable:!0});if(i.payload=o,window.dispatchEvent(i),!i.defaultPrevented)throw o}return s.then(o=>{for(const i of o||[])i.status==="rejected"&&r(i.reason);return t().catch(r)})};/*! Capacitor: https://capacitorjs.com/ - MIT License */var Dn;(function(e){e.Unimplemented="UNIMPLEMENTED",e.Unavailable="UNAVAILABLE"})(Dn||(Dn={}));class _s extends Error{constructor(t,n,a){super(t),this.message=t,this.code=n,this.data=a}}const Rd=e=>{var t,n;return e!=null&&e.androidBridge?"android":!((n=(t=e==null?void 0:e.webkit)===null||t===void 0?void 0:t.messageHandlers)===null||n===void 0)&&n.bridge?"ios":"web"},$d=e=>{const t=e.CapacitorCustomPlatform||null,n=e.Capacitor||{},a=n.Plugins=n.Plugins||{},s=()=>t!==null?t.name:Rd(e),r=()=>s()!=="web",o=d=>{const f=u.get(d);return!!(f!=null&&f.platforms.has(s())||i(d))},i=d=>{var f;return(f=n.PluginHeaders)===null||f===void 0?void 0:f.find(_=>_.name===d)},l=d=>e.console.error(d),u=new Map,c=(d,f={})=>{const _=u.get(d);if(_)return console.warn(`Capacitor plugin "${d}" already registered. Cannot register plugins twice.`),_.proxy;const g=s(),m=i(d);let h;const $=async()=>(!h&&g in f?h=typeof f[g]=="function"?h=await f[g]():h=f[g]:t!==null&&!h&&"web"in f&&(h=typeof f.web=="function"?h=await f.web():h=f.web),h),y=(T,w)=>{var X,oe;if(m){const fe=m==null?void 0:m.methods.find(ge=>w===ge.name);if(fe)return fe.rtype==="promise"?ge=>n.nativePromise(d,w.toString(),ge):(ge,B)=>n.nativeCallback(d,w.toString(),ge,B);if(T)return(X=T[w])===null||X===void 0?void 0:X.bind(T)}else{if(T)return(oe=T[w])===null||oe===void 0?void 0:oe.bind(T);throw new _s(`"${d}" plugin is not implemented on ${g}`,Dn.Unimplemented)}},S=T=>{let w;const X=(...oe)=>{const fe=$().then(ge=>{const B=y(ge,T);if(B){const J=B(...oe);return w=J==null?void 0:J.remove,J}else throw new _s(`"${d}.${T}()" is not implemented on ${g}`,Dn.Unimplemented)});return T==="addListener"&&(fe.remove=async()=>w()),fe};return X.toString=()=>`${T.toString()}() { [capacitor code] }`,Object.defineProperty(X,"name",{value:T,writable:!1,configurable:!1}),X},C=S("addListener"),L=S("removeListener"),P=(T,w)=>{const X=C({eventName:T},w),oe=async()=>{const ge=await X;L({eventName:T,callbackId:ge},w)},fe=new Promise(ge=>X.then(()=>ge({remove:oe})));return fe.remove=async()=>{console.warn("Using addListener() without 'await' is deprecated."),await oe()},fe},E=new Proxy({},{get(T,w){switch(w){case"$$typeof":return;case"toJSON":return()=>({});case"addListener":return m?P:C;case"removeListener":return L;default:return S(w)}}});return a[d]=E,u.set(d,{name:d,proxy:E,platforms:new Set([...Object.keys(f),...m?[g]:[]])}),E};return n.convertFileSrc||(n.convertFileSrc=d=>d),n.getPlatform=s,n.handleError=l,n.isNativePlatform=r,n.isPluginAvailable=o,n.registerPlugin=c,n.Exception=_s,n.DEBUG=!!n.DEBUG,n.isLoggingEnabled=!!n.isLoggingEnabled,n},Td=e=>e.Capacitor=$d(e),Da=Td(typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),ya=Da.registerPlugin;class hr{constructor(){this.listeners={},this.retainedEventArguments={},this.windowListeners={}}addListener(t,n){let a=!1;this.listeners[t]||(this.listeners[t]=[],a=!0),this.listeners[t].push(n);const r=this.windowListeners[t];r&&!r.registered&&this.addWindowListener(r),a&&this.sendRetainedArgumentsForEvent(t);const o=async()=>this.removeListener(t,n);return Promise.resolve({remove:o})}async removeAllListeners(){this.listeners={};for(const t in this.windowListeners)this.removeWindowListener(this.windowListeners[t]);this.windowListeners={}}notifyListeners(t,n,a){const s=this.listeners[t];if(!s){if(a){let r=this.retainedEventArguments[t];r||(r=[]),r.push(n),this.retainedEventArguments[t]=r}return}s.forEach(r=>r(n))}hasListeners(t){var n;return!!(!((n=this.listeners[t])===null||n===void 0)&&n.length)}registerWindowListener(t,n){this.windowListeners[n]={registered:!1,windowEventName:t,pluginEventName:n,handler:a=>{this.notifyListeners(n,a)}}}unimplemented(t="not implemented"){return new Da.Exception(t,Dn.Unimplemented)}unavailable(t="not available"){return new Da.Exception(t,Dn.Unavailable)}async removeListener(t,n){const a=this.listeners[t];if(!a)return;const s=a.indexOf(n);this.listeners[t].splice(s,1),this.listeners[t].length||this.removeWindowListener(this.windowListeners[t])}addWindowListener(t){window.addEventListener(t.windowEventName,t.handler),t.registered=!0}removeWindowListener(t){t&&(window.removeEventListener(t.windowEventName,t.handler),t.registered=!1)}sendRetainedArgumentsForEvent(t){const n=this.retainedEventArguments[t];n&&(delete this.retainedEventArguments[t],n.forEach(a=>{this.notifyListeners(t,a)}))}}const pi=e=>encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape),vi=e=>e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent);class Pd extends hr{async getCookies(){const t=document.cookie,n={};return t.split(";").forEach(a=>{if(a.length<=0)return;let[s,r]=a.replace(/=/,"CAP_COOKIE").split("CAP_COOKIE");s=vi(s).trim(),r=vi(r).trim(),n[s]=r}),n}async setCookie(t){try{const n=pi(t.key),a=pi(t.value),s=t.expires?`; expires=${t.expires.replace("expires=","")}`:"",r=(t.path||"/").replace("path=",""),o=t.url!=null&&t.url.length>0?`domain=${t.url}`:"";document.cookie=`${n}=${a||""}${s}; path=${r}; ${o};`}catch(n){return Promise.reject(n)}}async deleteCookie(t){try{document.cookie=`${t.key}=; Max-Age=0`}catch(n){return Promise.reject(n)}}async clearCookies(){try{const t=document.cookie.split(";")||[];for(const n of t)document.cookie=n.replace(/^ +/,"").replace(/=.*/,`=;expires=${new Date().toUTCString()};path=/`)}catch(t){return Promise.reject(t)}}async clearAllCookies(){try{await this.clearCookies()}catch(t){return Promise.reject(t)}}}ya("CapacitorCookies",{web:()=>new Pd});const Id=async e=>new Promise((t,n)=>{const a=new FileReader;a.onload=()=>{const s=a.result;t(s.indexOf(",")>=0?s.split(",")[1]:s)},a.onerror=s=>n(s),a.readAsDataURL(e)}),Ld=(e={})=>{const t=Object.keys(e);return Object.keys(e).map(s=>s.toLocaleLowerCase()).reduce((s,r,o)=>(s[r]=e[t[o]],s),{})},Dd=(e,t=!0)=>e?Object.entries(e).reduce((a,s)=>{const[r,o]=s;let i,l;return Array.isArray(o)?(l="",o.forEach(u=>{i=t?encodeURIComponent(u):u,l+=`${r}=${i}&`}),l.slice(0,-1)):(i=t?encodeURIComponent(o):o,l=`${r}=${i}`),`${a}&${l}`},"").substr(1):null,Od=(e,t={})=>{const n=Object.assign({method:e.method||"GET",headers:e.headers},t),s=Ld(e.headers)["content-type"]||"";if(typeof e.data=="string")n.body=e.data;else if(s.includes("application/x-www-form-urlencoded")){const r=new URLSearchParams;for(const[o,i]of Object.entries(e.data||{}))r.set(o,i);n.body=r.toString()}else if(s.includes("multipart/form-data")||e.data instanceof FormData){const r=new FormData;if(e.data instanceof FormData)e.data.forEach((i,l)=>{r.append(l,i)});else for(const i of Object.keys(e.data))r.append(i,e.data[i]);n.body=r;const o=new Headers(n.headers);o.delete("content-type"),n.headers=o}else(s.includes("application/json")||typeof e.data=="object")&&(n.body=JSON.stringify(e.data));return n};class Fd extends hr{async request(t){const n=Od(t,t.webFetchExtra),a=Dd(t.params,t.shouldEncodeUrlParams),s=a?`${t.url}?${a}`:t.url,r=await fetch(s,n),o=r.headers.get("content-type")||"";let{responseType:i="text"}=r.ok?t:{};o.includes("application/json")&&(i="json");let l,u;switch(i){case"arraybuffer":case"blob":u=await r.blob(),l=await Id(u);break;case"json":l=await r.json();break;case"document":case"text":default:l=await r.text()}const c={};return r.headers.forEach((d,f)=>{c[f]=d}),{data:l,headers:c,status:r.status,url:r.url}}async get(t){return this.request(Object.assign(Object.assign({},t),{method:"GET"}))}async post(t){return this.request(Object.assign(Object.assign({},t),{method:"POST"}))}async put(t){return this.request(Object.assign(Object.assign({},t),{method:"PUT"}))}async patch(t){return this.request(Object.assign(Object.assign({},t),{method:"PATCH"}))}async delete(t){return this.request(Object.assign(Object.assign({},t),{method:"DELETE"}))}}ya("CapacitorHttp",{web:()=>new Fd});var gi;(function(e){e.Dark="DARK",e.Light="LIGHT",e.Default="DEFAULT"})(gi||(gi={}));var hi;(function(e){e.StatusBar="StatusBar",e.NavigationBar="NavigationBar"})(hi||(hi={}));class Nd extends hr{async setStyle(){this.unavailable("not available for web")}async setAnimation(){this.unavailable("not available for web")}async show(){this.unavailable("not available for web")}async hide(){this.unavailable("not available for web")}}ya("SystemBars",{web:()=>new Nd});const Hs=ya("App",{web:()=>gr(()=>import("./web-CuF7_hD9.js"),[]).then(e=>new e.AppWeb)});/*! + * vue-router v4.6.4 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */const Cn=typeof document<"u";function ul(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Md(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&ul(e.default)}const Ce=Object.assign;function bs(e,t){const n={};for(const a in t){const s=t[a];n[a]=$t(s)?s.map(e):e(s)}return n}const ia=()=>{},$t=Array.isArray;function mi(e,t){const n={};for(const a in e)n[a]=a in t?t[a]:e[a];return n}const cl=/#/g,Ud=/&/g,Vd=/\//g,jd=/=/g,Bd=/\?/g,dl=/\+/g,Hd=/%5B/g,Gd=/%5D/g,fl=/%5E/g,qd=/%60/g,pl=/%7B/g,zd=/%7C/g,vl=/%7D/g,Kd=/%20/g;function mr(e){return e==null?"":encodeURI(""+e).replace(zd,"|").replace(Hd,"[").replace(Gd,"]")}function Wd(e){return mr(e).replace(pl,"{").replace(vl,"}").replace(fl,"^")}function Gs(e){return mr(e).replace(dl,"%2B").replace(Kd,"+").replace(cl,"%23").replace(Ud,"%26").replace(qd,"`").replace(pl,"{").replace(vl,"}").replace(fl,"^")}function Jd(e){return Gs(e).replace(jd,"%3D")}function Yd(e){return mr(e).replace(cl,"%23").replace(Bd,"%3F")}function Xd(e){return Yd(e).replace(Vd,"%2F")}function pa(e){if(e==null)return null;try{return decodeURIComponent(""+e)}catch{}return""+e}const Zd=/\/$/,Qd=e=>e.replace(Zd,"");function ws(e,t,n="/"){let a,s={},r="",o="";const i=t.indexOf("#");let l=t.indexOf("?");return l=i>=0&&l>i?-1:l,l>=0&&(a=t.slice(0,l),r=t.slice(l,i>0?i:t.length),s=e(r.slice(1))),i>=0&&(a=a||t.slice(0,i),o=t.slice(i,t.length)),a=af(a??t,n),{fullPath:a+r+o,path:a,query:s,hash:pa(o)}}function ef(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function yi(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function tf(e,t,n){const a=t.matched.length-1,s=n.matched.length-1;return a>-1&&a===s&&On(t.matched[a],n.matched[s])&&gl(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function On(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function gl(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!nf(e[n],t[n]))return!1;return!0}function nf(e,t){return $t(e)?_i(e,t):$t(t)?_i(t,e):(e==null?void 0:e.valueOf())===(t==null?void 0:t.valueOf())}function _i(e,t){return $t(t)?e.length===t.length&&e.every((n,a)=>n===t[a]):e.length===1&&e[0]===t}function af(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),a=e.split("/"),s=a[a.length-1];(s===".."||s===".")&&a.push("");let r=n.length-1,o,i;for(o=0;o1&&r--;else break;return n.slice(0,r).join("/")+"/"+a.slice(o).join("/")}const tn={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};let qs=(function(e){return e.pop="pop",e.push="push",e})({}),Ss=(function(e){return e.back="back",e.forward="forward",e.unknown="",e})({});function sf(e){if(!e)if(Cn){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Qd(e)}const rf=/^[^#]+#/;function of(e,t){return e.replace(rf,"#")+t}function lf(e,t){const n=document.documentElement.getBoundingClientRect(),a=e.getBoundingClientRect();return{behavior:t.behavior,left:a.left-n.left-(t.left||0),top:a.top-n.top-(t.top||0)}}const ts=()=>({left:window.scrollX,top:window.scrollY});function uf(e){let t;if("el"in e){const n=e.el,a=typeof n=="string"&&n.startsWith("#"),s=typeof n=="string"?a?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!s)return;t=lf(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function bi(e,t){return(history.state?history.state.position-t:-1)+e}const zs=new Map;function cf(e,t){zs.set(e,t)}function df(e){const t=zs.get(e);return zs.delete(e),t}function ff(e){return typeof e=="string"||e&&typeof e=="object"}function hl(e){return typeof e=="string"||typeof e=="symbol"}let qe=(function(e){return e[e.MATCHER_NOT_FOUND=1]="MATCHER_NOT_FOUND",e[e.NAVIGATION_GUARD_REDIRECT=2]="NAVIGATION_GUARD_REDIRECT",e[e.NAVIGATION_ABORTED=4]="NAVIGATION_ABORTED",e[e.NAVIGATION_CANCELLED=8]="NAVIGATION_CANCELLED",e[e.NAVIGATION_DUPLICATED=16]="NAVIGATION_DUPLICATED",e})({});const ml=Symbol("");qe.MATCHER_NOT_FOUND+"",qe.NAVIGATION_GUARD_REDIRECT+"",qe.NAVIGATION_ABORTED+"",qe.NAVIGATION_CANCELLED+"",qe.NAVIGATION_DUPLICATED+"";function Fn(e,t){return Ce(new Error,{type:e,[ml]:!0},t)}function Ht(e,t){return e instanceof Error&&ml in e&&(t==null||!!(e.type&t))}const pf=["params","query","hash"];function vf(e){if(typeof e=="string")return e;if(e.path!=null)return e.path;const t={};for(const n of pf)n in e&&(t[n]=e[n]);return JSON.stringify(t,null,2)}function gf(e){const t={};if(e===""||e==="?")return t;const n=(e[0]==="?"?e.slice(1):e).split("&");for(let a=0;as&&Gs(s)):[a&&Gs(a)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function hf(e){const t={};for(const n in e){const a=e[n];a!==void 0&&(t[n]=$t(a)?a.map(s=>s==null?null:""+s):a==null?a:""+a)}return t}const mf=Symbol(""),Si=Symbol(""),ns=Symbol(""),yr=Symbol(""),Ks=Symbol("");function Hn(){let e=[];function t(a){return e.push(a),()=>{const s=e.indexOf(a);s>-1&&e.splice(s,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function rn(e,t,n,a,s,r=o=>o()){const o=a&&(a.enterCallbacks[s]=a.enterCallbacks[s]||[]);return()=>new Promise((i,l)=>{const u=f=>{f===!1?l(Fn(qe.NAVIGATION_ABORTED,{from:n,to:t})):f instanceof Error?l(f):ff(f)?l(Fn(qe.NAVIGATION_GUARD_REDIRECT,{from:t,to:f})):(o&&a.enterCallbacks[s]===o&&typeof f=="function"&&o.push(f),i())},c=r(()=>e.call(a&&a.instances[s],t,n,u));let d=Promise.resolve(c);e.length<3&&(d=d.then(u)),d.catch(f=>l(f))})}function ks(e,t,n,a,s=r=>r()){const r=[];for(const o of e)for(const i in o.components){let l=o.components[i];if(!(t!=="beforeRouteEnter"&&!o.instances[i]))if(ul(l)){const u=(l.__vccOpts||l)[t];u&&r.push(rn(u,n,a,o,i,s))}else{let u=l();r.push(()=>u.then(c=>{if(!c)throw new Error(`Couldn't resolve component "${i}" at "${o.path}"`);const d=Md(c)?c.default:c;o.mods[i]=c,o.components[i]=d;const f=(d.__vccOpts||d)[t];return f&&rn(f,n,a,o,i,s)()}))}}return r}function yf(e,t){const n=[],a=[],s=[],r=Math.max(t.matched.length,e.matched.length);for(let o=0;oOn(u,i))?a.push(i):n.push(i));const l=e.matched[o];l&&(t.matched.find(u=>On(u,l))||s.push(l))}return[n,a,s]}/*! + * vue-router v4.6.4 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */let _f=()=>location.protocol+"//"+location.host;function yl(e,t){const{pathname:n,search:a,hash:s}=t,r=e.indexOf("#");if(r>-1){let o=s.includes(e.slice(r))?e.slice(r).length:1,i=s.slice(o);return i[0]!=="/"&&(i="/"+i),yi(i,"")}return yi(n,e)+a+s}function bf(e,t,n,a){let s=[],r=[],o=null;const i=({state:f})=>{const _=yl(e,location),g=n.value,m=t.value;let h=0;if(f){if(n.value=_,t.value=f,o&&o===g){o=null;return}h=m?f.position-m.position:0}else a(_);s.forEach($=>{$(n.value,g,{delta:h,type:qs.pop,direction:h?h>0?Ss.forward:Ss.back:Ss.unknown})})};function l(){o=n.value}function u(f){s.push(f);const _=()=>{const g=s.indexOf(f);g>-1&&s.splice(g,1)};return r.push(_),_}function c(){if(document.visibilityState==="hidden"){const{history:f}=window;if(!f.state)return;f.replaceState(Ce({},f.state,{scroll:ts()}),"")}}function d(){for(const f of r)f();r=[],window.removeEventListener("popstate",i),window.removeEventListener("pagehide",c),document.removeEventListener("visibilitychange",c)}return window.addEventListener("popstate",i),window.addEventListener("pagehide",c),document.addEventListener("visibilitychange",c),{pauseListeners:l,listen:u,destroy:d}}function ki(e,t,n,a=!1,s=!1){return{back:e,current:t,forward:n,replaced:a,position:window.history.length,scroll:s?ts():null}}function wf(e){const{history:t,location:n}=window,a={value:yl(e,n)},s={value:t.state};s.value||r(a.value,{back:null,current:a.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function r(l,u,c){const d=e.indexOf("#"),f=d>-1?(n.host&&document.querySelector("base")?e:e.slice(d))+l:_f()+e+l;try{t[c?"replaceState":"pushState"](u,"",f),s.value=u}catch(_){console.error(_),n[c?"replace":"assign"](f)}}function o(l,u){r(l,Ce({},t.state,ki(s.value.back,l,s.value.forward,!0),u,{position:s.value.position}),!0),a.value=l}function i(l,u){const c=Ce({},s.value,t.state,{forward:l,scroll:ts()});r(c.current,c,!0),r(l,Ce({},ki(a.value,l,null),{position:c.position+1},u),!1),a.value=l}return{location:a,state:s,push:i,replace:o}}function Sf(e){e=sf(e);const t=wf(e),n=bf(e,t.state,t.location,t.replace);function a(r,o=!0){o||n.pauseListeners(),history.go(r)}const s=Ce({location:"",base:e,go:a,createHref:of.bind(null,e)},t,n);return Object.defineProperty(s,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(s,"state",{enumerable:!0,get:()=>t.state.value}),s}function kf(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Sf(e)}let gn=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.Group=2]="Group",e})({});var Ye=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.ParamRegExp=2]="ParamRegExp",e[e.ParamRegExpEnd=3]="ParamRegExpEnd",e[e.EscapeNext=4]="EscapeNext",e})(Ye||{});const Af={type:gn.Static,value:""},xf=/[a-zA-Z0-9_]/;function Cf(e){if(!e)return[[]];if(e==="/")return[[Af]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(_){throw new Error(`ERR (${n})/"${u}": ${_}`)}let n=Ye.Static,a=n;const s=[];let r;function o(){r&&s.push(r),r=[]}let i=0,l,u="",c="";function d(){u&&(n===Ye.Static?r.push({type:gn.Static,value:u}):n===Ye.Param||n===Ye.ParamRegExp||n===Ye.ParamRegExpEnd?(r.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),r.push({type:gn.Param,value:u,regexp:c,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),u="")}function f(){u+=l}for(;it.length?t.length===1&&t[0]===ut.Static+ut.Segment?1:-1:0}function _l(e,t){let n=0;const a=e.score,s=t.score;for(;n0&&t[t.length-1]<0}const Pf={strict:!1,end:!0,sensitive:!1};function If(e,t,n){const a=$f(Cf(e.path),n),s=Ce(a,{record:e,parent:t,children:[],alias:[]});return t&&!s.record.aliasOf==!t.record.aliasOf&&t.children.push(s),s}function Lf(e,t){const n=[],a=new Map;t=mi(Pf,t);function s(d){return a.get(d)}function r(d,f,_){const g=!_,m=Ei(d);m.aliasOf=_&&_.record;const h=mi(t,d),$=[m];if("alias"in d){const C=typeof d.alias=="string"?[d.alias]:d.alias;for(const L of C)$.push(Ei(Ce({},m,{components:_?_.record.components:m.components,path:L,aliasOf:_?_.record:m})))}let y,S;for(const C of $){const{path:L}=C;if(f&&L[0]!=="/"){const P=f.record.path,E=P[P.length-1]==="/"?"":"/";C.path=f.record.path+(L&&E+L)}if(y=If(C,f,h),_?_.alias.push(y):(S=S||y,S!==y&&S.alias.push(y),g&&d.name&&!Ri(y)&&o(d.name)),bl(y)&&l(y),m.children){const P=m.children;for(let E=0;E{o(S)}:ia}function o(d){if(hl(d)){const f=a.get(d);f&&(a.delete(d),n.splice(n.indexOf(f),1),f.children.forEach(o),f.alias.forEach(o))}else{const f=n.indexOf(d);f>-1&&(n.splice(f,1),d.record.name&&a.delete(d.record.name),d.children.forEach(o),d.alias.forEach(o))}}function i(){return n}function l(d){const f=Ff(d,n);n.splice(f,0,d),d.record.name&&!Ri(d)&&a.set(d.record.name,d)}function u(d,f){let _,g={},m,h;if("name"in d&&d.name){if(_=a.get(d.name),!_)throw Fn(qe.MATCHER_NOT_FOUND,{location:d});h=_.record.name,g=Ce(Ci(f.params,_.keys.filter(S=>!S.optional).concat(_.parent?_.parent.keys.filter(S=>S.optional):[]).map(S=>S.name)),d.params&&Ci(d.params,_.keys.map(S=>S.name))),m=_.stringify(g)}else if(d.path!=null)m=d.path,_=n.find(S=>S.re.test(m)),_&&(g=_.parse(m),h=_.record.name);else{if(_=f.name?a.get(f.name):n.find(S=>S.re.test(f.path)),!_)throw Fn(qe.MATCHER_NOT_FOUND,{location:d,currentLocation:f});h=_.record.name,g=Ce({},f.params,d.params),m=_.stringify(g)}const $=[];let y=_;for(;y;)$.unshift(y.record),y=y.parent;return{name:h,path:m,params:g,matched:$,meta:Of($)}}e.forEach(d=>r(d));function c(){n.length=0,a.clear()}return{addRoute:r,resolve:u,removeRoute:o,clearRoutes:c,getRoutes:i,getRecordMatcher:s}}function Ci(e,t){const n={};for(const a of t)a in e&&(n[a]=e[a]);return n}function Ei(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:Df(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function Df(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const a in e.components)t[a]=typeof n=="object"?n[a]:n;return t}function Ri(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Of(e){return e.reduce((t,n)=>Ce(t,n.meta),{})}function Ff(e,t){let n=0,a=t.length;for(;n!==a;){const r=n+a>>1;_l(e,t[r])<0?a=r:n=r+1}const s=Nf(e);return s&&(a=t.lastIndexOf(s,a-1)),a}function Nf(e){let t=e;for(;t=t.parent;)if(bl(t)&&_l(e,t)===0)return t}function bl({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function $i(e){const t=mt(ns),n=mt(yr),a=ee(()=>{const l=v(e.to);return t.resolve(l)}),s=ee(()=>{const{matched:l}=a.value,{length:u}=l,c=l[u-1],d=n.matched;if(!c||!d.length)return-1;const f=d.findIndex(On.bind(null,c));if(f>-1)return f;const _=Ti(l[u-2]);return u>1&&Ti(c)===_&&d[d.length-1].path!==_?d.findIndex(On.bind(null,l[u-2])):f}),r=ee(()=>s.value>-1&&Bf(n.params,a.value.params)),o=ee(()=>s.value>-1&&s.value===n.matched.length-1&&gl(n.params,a.value.params));function i(l={}){if(jf(l)){const u=t[v(e.replace)?"replace":"push"](v(e.to)).catch(ia);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>u),u}return Promise.resolve()}return{route:a,href:ee(()=>a.value.href),isActive:r,isExactActive:o,navigate:i}}function Mf(e){return e.length===1?e[0]:e}const Uf=je({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:$i,setup(e,{slots:t}){const n=Zt($i(e)),{options:a}=mt(ns),s=ee(()=>({[Pi(e.activeClass,a.linkActiveClass,"router-link-active")]:n.isActive,[Pi(e.exactActiveClass,a.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const r=t.default&&Mf(t.default(n));return e.custom?r:U("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},r)}}}),Vf=Uf;function jf(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function Bf(e,t){for(const n in t){const a=t[n],s=e[n];if(typeof a=="string"){if(a!==s)return!1}else if(!$t(s)||s.length!==a.length||a.some((r,o)=>r.valueOf()!==s[o].valueOf()))return!1}return!0}function Ti(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const Pi=(e,t,n)=>e??t??n,Hf=je({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const a=mt(Ks),s=ee(()=>e.route||a.value),r=mt(Si,0),o=ee(()=>{let u=v(r);const{matched:c}=s.value;let d;for(;(d=c[u])&&!d.components;)u++;return u}),i=ee(()=>s.value.matched[o.value]);ta(Si,ee(()=>o.value+1)),ta(mf,i),ta(Ks,s);const l=K();return wt(()=>[l.value,i.value,e.name],([u,c,d],[f,_,g])=>{c&&(c.instances[d]=u,_&&_!==c&&u&&u===f&&(c.leaveGuards.size||(c.leaveGuards=_.leaveGuards),c.updateGuards.size||(c.updateGuards=_.updateGuards))),u&&c&&(!_||!On(c,_)||!f)&&(c.enterCallbacks[d]||[]).forEach(m=>m(u))},{flush:"post"}),()=>{const u=s.value,c=e.name,d=i.value,f=d&&d.components[c];if(!f)return Ii(n.default,{Component:f,route:u});const _=d.props[c],g=_?_===!0?u.params:typeof _=="function"?_(u):_:null,h=U(f,Ce({},g,t,{onVnodeUnmounted:$=>{$.component.isUnmounted&&(d.instances[c]=null)},ref:l}));return Ii(n.default,{Component:h,route:u})||h}}});function Ii(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const wl=Hf;function Gf(e){const t=Lf(e.routes,e),n=e.parseQuery||gf,a=e.stringifyQuery||wi,s=e.history,r=Hn(),o=Hn(),i=Hn(),l=Su(tn);let u=tn;Cn&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=bs.bind(null,M=>""+M),d=bs.bind(null,Xd),f=bs.bind(null,pa);function _(M,se){let H,F;return hl(M)?(H=t.getRecordMatcher(M),F=se):F=M,t.addRoute(F,H)}function g(M){const se=t.getRecordMatcher(M);se&&t.removeRoute(se)}function m(){return t.getRoutes().map(M=>M.record)}function h(M){return!!t.getRecordMatcher(M)}function $(M,se){if(se=Ce({},se||l.value),typeof M=="string"){const A=ws(n,M,se.path),j=t.resolve({path:A.path},se),W=s.createHref(A.fullPath);return Ce(A,j,{params:f(j.params),hash:pa(A.hash),redirectedFrom:void 0,href:W})}let H;if(M.path!=null)H=Ce({},M,{path:ws(n,M.path,se.path).path});else{const A=Ce({},M.params);for(const j in A)A[j]==null&&delete A[j];H=Ce({},M,{params:d(A)}),se.params=d(se.params)}const F=t.resolve(H,se),V=M.hash||"";F.params=c(f(F.params));const p=ef(a,Ce({},M,{hash:Wd(V),path:F.path})),b=s.createHref(p);return Ce({fullPath:p,hash:V,query:a===wi?hf(M.query):M.query||{}},F,{redirectedFrom:void 0,href:b})}function y(M){return typeof M=="string"?ws(n,M,l.value.path):Ce({},M)}function S(M,se){if(u!==M)return Fn(qe.NAVIGATION_CANCELLED,{from:se,to:M})}function C(M){return E(M)}function L(M){return C(Ce(y(M),{replace:!0}))}function P(M,se){const H=M.matched[M.matched.length-1];if(H&&H.redirect){const{redirect:F}=H;let V=typeof F=="function"?F(M,se):F;return typeof V=="string"&&(V=V.includes("?")||V.includes("#")?V=y(V):{path:V},V.params={}),Ce({query:M.query,hash:M.hash,params:V.path!=null?{}:M.params},V)}}function E(M,se){const H=u=$(M),F=l.value,V=M.state,p=M.force,b=M.replace===!0,A=P(H,F);if(A)return E(Ce(y(A),{state:typeof A=="object"?Ce({},V,A.state):V,force:p,replace:b}),se||H);const j=H;j.redirectedFrom=se;let W;return!p&&tf(a,F,H)&&(W=Fn(qe.NAVIGATION_DUPLICATED,{to:j,from:F}),Pe(F,F,!0,!1)),(W?Promise.resolve(W):X(j,F)).catch(z=>Ht(z)?Ht(z,qe.NAVIGATION_GUARD_REDIRECT)?z:ke(z):te(z,j,F)).then(z=>{if(z){if(Ht(z,qe.NAVIGATION_GUARD_REDIRECT))return E(Ce({replace:b},y(z.to),{state:typeof z.to=="object"?Ce({},V,z.to.state):V,force:p}),se||j)}else z=fe(j,F,!0,b,V);return oe(j,F,z),z})}function T(M,se){const H=S(M,se);return H?Promise.reject(H):Promise.resolve()}function w(M){const se=Ue.values().next().value;return se&&typeof se.runWithContext=="function"?se.runWithContext(M):M()}function X(M,se){let H;const[F,V,p]=yf(M,se);H=ks(F.reverse(),"beforeRouteLeave",M,se);for(const A of F)A.leaveGuards.forEach(j=>{H.push(rn(j,M,se))});const b=T.bind(null,M,se);return H.push(b),Oe(H).then(()=>{H=[];for(const A of r.list())H.push(rn(A,M,se));return H.push(b),Oe(H)}).then(()=>{H=ks(V,"beforeRouteUpdate",M,se);for(const A of V)A.updateGuards.forEach(j=>{H.push(rn(j,M,se))});return H.push(b),Oe(H)}).then(()=>{H=[];for(const A of p)if(A.beforeEnter)if($t(A.beforeEnter))for(const j of A.beforeEnter)H.push(rn(j,M,se));else H.push(rn(A.beforeEnter,M,se));return H.push(b),Oe(H)}).then(()=>(M.matched.forEach(A=>A.enterCallbacks={}),H=ks(p,"beforeRouteEnter",M,se,w),H.push(b),Oe(H))).then(()=>{H=[];for(const A of o.list())H.push(rn(A,M,se));return H.push(b),Oe(H)}).catch(A=>Ht(A,qe.NAVIGATION_CANCELLED)?A:Promise.reject(A))}function oe(M,se,H){i.list().forEach(F=>w(()=>F(M,se,H)))}function fe(M,se,H,F,V){const p=S(M,se);if(p)return p;const b=se===tn,A=Cn?history.state:{};H&&(F||b?s.replace(M.fullPath,Ce({scroll:b&&A&&A.scroll},V)):s.push(M.fullPath,V)),l.value=M,Pe(M,se,H,b),ke()}let ge;function B(){ge||(ge=s.listen((M,se,H)=>{if(!De.listening)return;const F=$(M),V=P(F,De.currentRoute.value);if(V){E(Ce(V,{replace:!0,force:!0}),F).catch(ia);return}u=F;const p=l.value;Cn&&cf(bi(p.fullPath,H.delta),ts()),X(F,p).catch(b=>Ht(b,qe.NAVIGATION_ABORTED|qe.NAVIGATION_CANCELLED)?b:Ht(b,qe.NAVIGATION_GUARD_REDIRECT)?(E(Ce(y(b.to),{force:!0}),F).then(A=>{Ht(A,qe.NAVIGATION_ABORTED|qe.NAVIGATION_DUPLICATED)&&!H.delta&&H.type===qs.pop&&s.go(-1,!1)}).catch(ia),Promise.reject()):(H.delta&&s.go(-H.delta,!1),te(b,F,p))).then(b=>{b=b||fe(F,p,!1),b&&(H.delta&&!Ht(b,qe.NAVIGATION_CANCELLED)?s.go(-H.delta,!1):H.type===qs.pop&&Ht(b,qe.NAVIGATION_ABORTED|qe.NAVIGATION_DUPLICATED)&&s.go(-1,!1)),oe(F,p,b)}).catch(ia)}))}let J=Hn(),Q=Hn(),Y;function te(M,se,H){ke(M);const F=Q.list();return F.length?F.forEach(V=>V(M,se,H)):console.error(M),Promise.reject(M)}function ve(){return Y&&l.value!==tn?Promise.resolve():new Promise((M,se)=>{J.add([M,se])})}function ke(M){return Y||(Y=!M,B(),J.list().forEach(([se,H])=>M?H(M):se()),J.reset()),M}function Pe(M,se,H,F){const{scrollBehavior:V}=e;if(!Cn||!V)return Promise.resolve();const p=!H&&df(bi(M.fullPath,0))||(F||!H)&&history.state&&history.state.scroll||null;return _n().then(()=>V(M,se,p)).then(b=>b&&uf(b)).catch(b=>te(b,M,se))}const be=M=>s.go(M);let Ge;const Ue=new Set,De={currentRoute:l,listening:!0,addRoute:_,removeRoute:g,clearRoutes:t.clearRoutes,hasRoute:h,getRoutes:m,resolve:$,options:e,push:C,replace:L,go:be,back:()=>be(-1),forward:()=>be(1),beforeEach:r.add,beforeResolve:o.add,afterEach:i.add,onError:Q.add,isReady:ve,install(M){M.component("RouterLink",Vf),M.component("RouterView",wl),M.config.globalProperties.$router=De,Object.defineProperty(M.config.globalProperties,"$route",{enumerable:!0,get:()=>v(l)}),Cn&&!Ge&&l.value===tn&&(Ge=!0,C(s.location).catch(F=>{}));const se={};for(const F in tn)Object.defineProperty(se,F,{get:()=>l.value[F],enumerable:!0});M.provide(ns,De),M.provide(yr,bo(se)),M.provide(Ks,l);const H=M.unmount;Ue.add(M),M.unmount=function(){Ue.delete(M),Ue.size<1&&(u=tn,ge&&ge(),ge=null,l.value=tn,Ge=!1,Y=!1),H()}}};function Oe(M){return M.reduce((se,H)=>se.then(()=>w(H)),Promise.resolve())}return De}function en(){return mt(ns)}function as(e){return mt(yr)}var qf={},zf=new Set(["primary","secondary","accent","success","warning","danger","error","info"]);function Re(...e){return e.flatMap(t=>t?Array.isArray(t)?t:typeof t=="object"?Object.entries(t).filter(([,n])=>n).map(([n])=>n):[t]:[]).filter(Boolean).join(" ")}function Mn(e,t="primary"){return zf.has(e)?e:t}function We(e,t=""){if(!e)return null;const n=e.includes("ph ")||e.startsWith("ph-");n||typeof process<"u"&&qf&&console.warn(`[gnexus-ui-kit] Icon "${e}" is missing the required "ph-" prefix. Use "ph-${e}" instead.`);const a=n?e:`ph-${e}`;return U("i",{class:Re("ph",a,t),"aria-hidden":"true"})}function ss(e){const t=e.target;return t.type==="checkbox"?t.checked:t.value}var Kf=["a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","[tabindex]:not([tabindex='-1'])"].join(",");function Wf(e,t){if(e.key!=="Tab"||!t)return;const n=[...t.querySelectorAll(Kf)].filter(r=>!r.hasAttribute("disabled")&&r.offsetParent!==null);if(!n.length){e.preventDefault(),t.focus();return}const a=n[0],s=n[n.length-1];e.shiftKey&&document.activeElement===a?(e.preventDefault(),s.focus()):!e.shiftKey&&document.activeElement===s&&(e.preventDefault(),a.focus())}var Jf=je({name:"GnActionCard",props:{kicker:{type:String,default:""},title:{type:String,required:!0},text:{type:String,default:""}},setup(e,{slots:t}){return()=>{var n,a,s;return U("article",{class:"card action-card"},[U("div",{class:"card-content"},[(e.kicker||t.kicker)&&U("span",{class:"action-card-kicker"},((n=t.kicker)==null?void 0:n.call(t))||e.kicker),U("h3",{class:"action-card-title"},((a=t.title)==null?void 0:a.call(t))||e.title),(e.text||t.default)&&U("p",{class:"action-card-text"},((s=t.default)==null?void 0:s.call(t))||e.text),t.actions&&U("div",{class:"action-card-actions"},t.actions())])])}}}),Ze=je({name:"GnAlert",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},role:{type:String,default:"status"}},setup(e,{attrs:t,slots:n}){return()=>{var a;const s=Mn(e.variant);return U("div",{...t,role:e.role,class:Re("alert",`alert-${s}`,t.class)},(a=n.default)==null?void 0:a.call(n))}}}),Yf=je({name:"GnAvatar",inheritAttrs:!1,props:{src:{type:String,default:""},alt:{type:String,default:""},initials:{type:String,default:""},icon:{type:String,default:""},size:{type:String,default:"md"},variant:{type:String,default:"primary"},outline:{type:Boolean,default:!1},status:{type:String,default:""}},setup(e,{attrs:t}){return()=>{const n=Mn(e.variant);return U("span",{...t,class:Re("avatar",`avatar-${n}`,{"avatar-sm":e.size==="sm","avatar-lg":e.size==="lg","avatar-outline":e.outline,"is-online":e.status==="online","is-busy":e.status==="busy","is-offline":e.status==="offline"},t.class)},[e.src?U("img",{src:e.src,alt:e.alt}):We(e.icon)||e.initials,e.status&&U("span",{class:"avatar-status","aria-hidden":"true"})])}}}),ye=je({name:"GnBadge",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},outline:{type:Boolean,default:!1}},setup(e,{attrs:t,slots:n}){return()=>{var a;const s=Mn(e.variant);return U("span",{...t,class:Re("badge",e.outline&&s==="primary"?"badge-primary-outline":`badge-${s}`,t.class)},(a=n.default)==null?void 0:a.call(n))}}}),de=je({name:"GnButton",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},size:{type:String,default:"md"},icon:{type:String,default:""},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},type:{type:String,default:"button"}},setup(e,{attrs:t,slots:n}){return()=>{var a;const s=!!(e.icon||e.loading),r=Mn(e.variant);return U("button",{...t,type:e.type,disabled:e.disabled||e.loading,class:Re("btn",`btn-${r}`,{"btn-small":e.size==="sm","btn-large":e.size==="lg","with-icon":s,"loading-state":e.loading},t.class)},[e.loading?We("ph-bold ph-spinner"):We(e.icon),(a=n.default)==null?void 0:a.call(n)])}}}),Li=je({name:"GnChip",inheritAttrs:!1,props:{variant:{type:String,default:""},icon:{type:String,default:""},selected:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},removable:{type:Boolean,default:!1},clickable:{type:Boolean,default:!1}},emits:["remove"],setup(e,{attrs:t,emit:n,slots:a}){return()=>{var s,r,o,i;const l=e.clickable?"button":"span",u=e.variant?Mn(e.variant):"",c=(o=(r=(s=a.default)==null?void 0:s.call(a))==null?void 0:r[0])==null?void 0:o.children;return U(l,{...t,type:l==="button"?"button":void 0,disabled:l==="button"?e.disabled:void 0,"aria-pressed":l==="button"?String(e.selected):void 0,class:Re("chip",u&&`chip-${u}`,{"chip-selected":e.selected,"chip-disabled":e.disabled},t.class)},[We(e.icon),(i=a.default)==null?void 0:i.call(a),e.removable&&U("button",{class:"chip-remove",type:"button","aria-label":c?`Remove ${c}`:"Remove",onClick:d=>{d.stopPropagation(),n("remove")}},[We("ph-x")])])}}}),Xf=0,tt=je({name:"GnModal",props:{open:{type:Boolean,default:!1},title:{type:String,default:""},closeOnBackdrop:{type:Boolean,default:!0}},emits:["update:open","close"],setup(e,{emit:t,slots:n}){const a=`gn-modal-title-${++Xf}`,s=K(null),r=K(!1),o=K(!1);let i=null,l=null;const u=()=>{t("update:open",!1),t("close")},c=f=>{f.key==="Escape"?(f.preventDefault(),u()):Wf(f,s.value)},d=()=>{_n(()=>{var f;(f=s.value)==null||f.focus()})};return wt(()=>e.open,f=>{var _;f?(o.value=!0,r.value=!0,_n(()=>{requestAnimationFrame(()=>{o.value=!1})}),i=document.activeElement,document.addEventListener("keydown",c),d()):(o.value=!0,document.removeEventListener("keydown",c),(_=i==null?void 0:i.focus)==null||_.call(i),i=null,l=window.setTimeout(()=>{r.value=!1,o.value=!1},300))},{flush:"post"}),Wa(()=>{document.removeEventListener("keydown",c),window.clearTimeout(l)}),()=>{var f,_,g;return r.value?U(Hu,{to:"body"},[U("div",{class:Re("modal",o.value?"a-hide":"a-show"),"aria-hidden":"false"},[U("div",{class:"modal-backdrop",onClick:()=>e.closeOnBackdrop&&u()}),U("div",{ref:s,class:"modal-dialog",role:"dialog","aria-modal":"true","aria-labelledby":a,tabindex:"-1"},[U("header",{class:"modal-header"},[U("h4",{class:"modal-title",id:a},((f=n.title)==null?void 0:f.call(n))||e.title),U("button",{class:"btn-icon modal-close",type:"button","aria-label":"Close",onClick:u},[We("ph-x")])]),U("div",{class:"modal-panel"},[U("div",{class:"modal-body"},(_=n.default)==null?void 0:_.call(n)),(n.footer||n.actions)&&U("footer",{class:"modal-footer"},[(g=n.footer)==null?void 0:g.call(n),n.actions&&U("div",{class:"actions"},n.actions({close:u}))])])])])]):null}}}),Zf=je({name:"GnConfirmDialog",props:{open:{type:Boolean,default:!1},title:{type:String,default:"Requires confirmation"},message:{type:String,default:""},confirmText:{type:String,default:"YES"},cancelText:{type:String,default:"NO"},confirmVariant:{type:String,default:"warning"}},emits:["update:open","confirm","cancel"],setup(e,{emit:t,slots:n}){const a=()=>t("update:open",!1),s=()=>{t("cancel"),a()},r=()=>{t("confirm"),a()};return()=>U(tt,{open:e.open,title:e.title,"onUpdate:open":o=>t("update:open",o)},{default:()=>{var o;return((o=n.default)==null?void 0:o.call(n))||U("p",{},e.message)},actions:()=>[U(de,{variant:"primary",onClick:s},()=>e.cancelText),U(de,{variant:e.confirmVariant,onClick:r},()=>e.confirmText)]})}}),Qf=je({name:"GnCopyButton",props:{text:{type:String,required:!0},icon:{type:String,default:"ph-copy"},successIcon:{type:String,default:"ph-check"},duration:{type:Number,default:3e3},label:{type:String,default:"Copy"},size:{type:String,default:null}},emits:["copy"],setup(e,{emit:t}){const n=K(!1);let a=null;const s=async()=>{try{await navigator.clipboard.writeText(e.text)}catch{const o=document.createElement("textarea");o.value=e.text,o.style.position="fixed",o.style.opacity="0",document.body.appendChild(o),o.select(),document.execCommand("copy"),document.body.removeChild(o)}n.value=!0,window.clearTimeout(a),a=window.setTimeout(()=>{n.value=!1},e.duration),t("copy",e.text)};return()=>U("button",{class:Re("btn-icon",{"btn-icon-sm":e.size==="sm"}),type:"button","aria-label":e.label,onClick:s},[We(n.value?e.successIcon:e.icon)])}}),ep=je({name:"GnDropdown",props:{label:{type:String,default:"Actions"},icon:{type:String,default:"ph-dots-three-outline"},variant:{type:String,default:"secondary"},items:{type:Array,default:()=>[]}},emits:["select"],setup(e,{emit:t,slots:n}){const a=K(!1),s=K(null),r=()=>{a.value=!1,document.removeEventListener("click",o),document.removeEventListener("keydown",i)},o=c=>{s.value&&!s.value.contains(c.target)&&r()},i=c=>{c.key==="Escape"&&(c.preventDefault(),r())},l=()=>{a.value=!a.value,a.value?(setTimeout(()=>document.addEventListener("click",o),0),document.addEventListener("keydown",i)):r()},u=c=>{var d;c.disabled||((d=c.onSelect)==null||d.call(c,c),t("select",c),r())};return Wa(r),()=>{var c,d;return U("div",{ref:s,class:Re("dropdown",{"is-open":a.value})},[((c=n.trigger)==null?void 0:c.call(n,{open:a.value,toggle:l}))||U(de,{variant:e.variant,icon:e.icon,"aria-expanded":a.value?"true":"false",onClick:l},()=>e.label),U("div",{class:"dropdown-menu",role:"menu"},((d=n.default)==null?void 0:d.call(n,{close:r}))||e.items.map(f=>U("button",{class:Re("dropdown-item",f.danger&&"dropdown-item-danger"),type:"button",role:"menuitem",disabled:f.disabled,onClick:()=>u(f)},[We(f.icon),f.label])))])}}}),tp=je({name:"GnEmptyState",inheritAttrs:!1,props:{title:{type:String,required:!0},text:{type:String,default:""},icon:{type:String,default:"ph-package"},variant:{type:String,default:""}},setup(e,{attrs:t,slots:n}){return()=>{var a,s;return U("div",{...t,class:Re("empty-state",e.variant&&`empty-state-${e.variant}`,t.class)},[U("div",{class:"empty-state-icon"},[We(e.icon)]),U("h3",{class:"empty-state-title"},((a=n.title)==null?void 0:a.call(n))||e.title),(e.text||n.default)&&U("p",{class:"empty-state-text"},((s=n.default)==null?void 0:s.call(n))||e.text),n.actions&&U("div",{class:"empty-state-actions"},n.actions())])}}}),yt=je({name:"GnInput",inheritAttrs:!1,props:{modelValue:{type:[String,Number],default:""},label:{type:String,default:""},type:{type:String,default:"text"},icon:{type:String,default:""},state:{type:String,default:""},help:{type:String,default:""},bare:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n}){return()=>{const a=U("input",{...t,type:e.type,value:e.modelValue,class:Re(e.bare?"":"input",t.class),onInput:s=>n("update:modelValue",ss(s))});return e.bare?a:U("div",{class:"form-group"},[U("label",{class:Re("label",e.state)},[e.label,We(e.icon),a]),e.help&&U("div",{class:Re("input-info",e.state==="error"&&"error")},e.help)])}}}),Sl=je({name:"GnLoader",inheritAttrs:!1,props:{circle:{type:Boolean,default:!1},label:{type:String,default:"Loading"}},setup(e,{attrs:t}){return()=>e.circle?U("div",{...t,class:Re("circle-loader",t.class)},[We("ph-bold ph-spinner normalize"),e.label]):U("div",{...t,class:Re("loader",t.class),role:"status","aria-label":e.label})}});function np(){var e;const t=Za();return((e=t==null?void 0:t.proxy)==null?void 0:e.$router)||null}function ap(){var e;const t=Za();return((e=t==null?void 0:t.proxy)==null?void 0:e.$route)||null}function sp(e,t,n="prefix"){if(!e)return!1;const a=e.value||e;return typeof t=="string"?n==="exact"?a.path===t:a.path===t||a.path.startsWith(t+"/"):t.path?n==="exact"?a.path===t.path:a.path===t.path||a.path.startsWith(t.path+"/"):t.name?a.name===t.name:!1}var rp=je({name:"GnNavList",inheritAttrs:!1,props:{items:{type:Array,default:()=>[]},activeMatch:{type:String,default:"prefix"}},emits:["select"],setup(e,{attrs:t,emit:n,slots:a}){const s=np(),r=ap(),o=!!(s&&r),i=u=>{if(u){if(typeof u=="string")return u;if(u.path)return u.path}},l=ee(()=>e.items.map(u=>{const c=!!u.to,d=c?o?s.resolve(u.to).href:i(u.to):u.href,f=c&&o?sp(r,u.to,e.activeMatch):!!u.active;return{...u,resolvedHref:d,isActive:f,hasTo:c}}));return()=>U("ul",{...t,class:Re("list list-nav",t.class)},l.value.map(u=>{var c,d;return U("li",{class:Re("list-item",{"list-item-active":u.isActive})},[U(u.resolvedHref?"a":"button",{class:"list-action",href:u.resolvedHref,type:u.resolvedHref?void 0:"button",onClick:f=>{var _;u.hasTo&&o&&(f.preventDefault(),s.push(u.to)),(_=u.onSelect)==null||_.call(u,u,f),n("select",u)}},[U("span",{class:"list-label"},[We(u.icon),((c=a.label)==null?void 0:c.call(a,{item:u}))||u.label]),(u.meta||a.meta)&&U("span",{class:"list-meta"},((d=a.meta)==null?void 0:d.call(a,{item:u}))||u.meta)])])}))}}),ip=0,op=je({name:"GnNavigationShell",props:{brand:{type:String,default:"GNexus UI Kit"},logoSrc:{type:String,default:"/assets/imgs/gnexus-mark.svg"},current:{type:String,default:""},title:{type:String,default:"Sections"},subtitle:{type:String,default:"Navigation"},footerLeft:{type:String,default:""},footerRight:{type:String,default:""},items:{type:Array,default:()=>[]},activeMatch:{type:String,default:"prefix"}},emits:["select"],setup(e,{emit:t,slots:n}){const a=K(!1),s=`gn-nav-drawer-${++ip}`,r=K(null);let o=null;const i=()=>{a.value=!1},l=()=>{a.value=!a.value},u=c=>{c.key==="Escape"&&(c.preventDefault(),i())};return wt(a,c=>{var d;c?(o=document.activeElement,document.body.classList.add("nav-drawer-open"),document.addEventListener("keydown",u),_n(()=>{var f;return(f=r.value)==null?void 0:f.focus()})):(document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u),(d=o==null?void 0:o.focus)==null||d.call(o),o=null)}),Wa(()=>{document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u)}),()=>{var c,d,f,_,g,m,h;return[U("header",{class:"nav-topbar"},[U("button",{class:"nav-topbar-toggle",type:"button","aria-controls":s,"aria-expanded":a.value?"true":"false",onClick:l},[We("ph-sidebar-simple"),U("span",{},"Menu")]),U("div",{class:"nav-topbar-brand"},[e.logoSrc&&U("img",{src:e.logoSrc,alt:"","aria-hidden":"true"}),U("span",{},((c=n.brand)==null?void 0:c.call(n))||e.brand)]),U("div",{class:"nav-topbar-current"},((d=n.current)==null?void 0:d.call(n))||e.current)]),U("div",{class:"nav-drawer-backdrop",onClick:i}),U("aside",{ref:r,class:["nav-drawer",{"is-open":a.value}],id:s,"aria-label":"Navigation","aria-hidden":a.value?"false":"true",tabindex:"-1"},[U("header",{class:"nav-drawer-header"},[U("div",{},[U("div",{class:"nav-drawer-title"},((f=n.title)==null?void 0:f.call(n))||e.title),U("div",{class:"nav-drawer-subtitle"},((_=n.subtitle)==null?void 0:_.call(n))||e.subtitle)]),U("button",{class:"nav-drawer-close",type:"button","aria-label":"Close navigation",onClick:i},[We("ph-x")])]),U("nav",{class:"nav-drawer-body"},[((g=n.default)==null?void 0:g.call(n,{close:i}))||U(rp,{items:e.items,activeMatch:e.activeMatch,onSelect:$=>{t("select",$),i()}})]),(n.footer||e.footerLeft||e.footerRight)&&U("footer",{class:"nav-drawer-footer"},((m=n.footer)==null?void 0:m.call(n))||[U("span",{},e.footerLeft),U("span",{},e.footerRight)])]),(h=n.content)==null?void 0:h.call(n)]}}}),Tt=je({name:"GnPageHeader",inheritAttrs:!1,props:{title:{type:String,required:!0},subtitle:{type:String,default:""},kicker:{type:String,default:""},compact:{type:Boolean,default:!1},accent:{type:Boolean,default:!1}},setup(e,{attrs:t,slots:n}){return()=>{var a,s,r;return U("header",{...t,class:Re("page-header",{"page-header-compact":e.compact,"page-header-accent":e.accent},t.class)},[U("div",{class:"page-header-content"},[(e.kicker||n.kicker)&&U("div",{class:"page-header-kicker"},((a=n.kicker)==null?void 0:a.call(n))||e.kicker),U("h1",{class:"page-header-title"},((s=n.title)==null?void 0:s.call(n))||e.title),(e.subtitle||n.subtitle)&&U("p",{class:"page-header-subtitle"},((r=n.subtitle)==null?void 0:r.call(n))||e.subtitle),n.meta&&U("div",{class:"page-header-meta"},n.meta())]),n.actions&&U("div",{class:"page-header-actions"},n.actions())])}}}),lp=je({name:"GnRange",inheritAttrs:!1,props:{modelValue:{type:[Number,String],default:0},label:{type:String,default:""},min:{type:[Number,String],default:0},max:{type:[Number,String],default:100},step:{type:[Number,String],default:1}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n}){return()=>U("div",{class:"range"},[U("label",{class:"label"},[e.label,U("input",{...t,type:"range",value:e.modelValue,min:e.min,max:e.max,step:e.step,onInput:a=>n("update:modelValue",ss(a))})])])}}),rs=je({name:"GnSelect",inheritAttrs:!1,props:{modelValue:{type:[String,Number],default:""},label:{type:String,default:""},icon:{type:String,default:""},state:{type:String,default:""},help:{type:String,default:""},options:{type:Array,default:()=>[]}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n,slots:a}){const s=()=>e.options.map(r=>{const o=typeof r=="object"?r.value:r,i=typeof r=="object"?r.label:r;return U("option",{value:o},i)});return()=>{var r;return U("div",{class:"form-group"},[U("label",{class:Re("label",e.state)},[e.label,We(e.icon),U("div",{class:"select-wrap"},[U("select",{...t,value:e.modelValue,class:Re("input select",t.class),onChange:o=>n("update:modelValue",ss(o))},((r=a.default)==null?void 0:r.call(a))||s())])]),e.help&&U("div",{class:Re("input-info",e.state==="error"&&"error")},e.help)])}}}),kl=je({name:"GnSwitch",inheritAttrs:!1,props:{modelValue:{type:Boolean,default:!1},label:{type:String,default:""},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n,slots:a}){return()=>{var s;return U("label",{class:Re("switch",t.class)},[U("input",{...t,type:"checkbox",checked:e.modelValue,disabled:e.disabled,onChange:r=>n("update:modelValue",r.target.checked)}),U("span",{class:"switch-control","aria-hidden":"true"}),U("span",{class:"switch-label"},((s=a.default)==null?void 0:s.call(a))||e.label)])}}}),Nn=je({name:"GnTable",props:{columns:{type:Array,required:!0},rows:{type:Array,default:()=>[]},caption:{type:String,default:""},emptyText:{type:String,default:"Empty"}},setup(e,{attrs:t,slots:n}){return()=>{var a;return U("div",{class:"table-wrapper"},[U("table",{class:Re("table data-list",{"table-empty":!e.rows.length},t.class)},[e.caption&&U("caption",{class:"table-caption"},e.caption),U("thead",{class:"table-head"},[U("tr",{class:"table-row"},e.columns.map(s=>U("th",{scope:"col"},s.label)))]),U("tbody",{class:"table-body"},e.rows.length?e.rows.map(s=>U("tr",{class:"table-row"},e.columns.map(r=>{var o;const i=`cell-${r.key}`;return U("td",{},((o=n[i])==null?void 0:o.call(n,{row:s,column:r,value:s[r.key]}))||s[r.key])}))):U("tr",{},[U("td",{class:"is-empty",colspan:e.columns.length},((a=n.empty)==null?void 0:a.call(n))||e.emptyText)]))])])}}}),up=je({name:"GnTextarea",inheritAttrs:!1,props:{modelValue:{type:String,default:""},label:{type:String,default:""},icon:{type:String,default:""},state:{type:String,default:""},help:{type:String,default:""}},emits:["update:modelValue"],setup(e,{attrs:t,emit:n}){return()=>U("div",{class:"form-group"},[U("label",{class:Re("label",e.state)},[e.label,We(e.icon),U("textarea",{...t,value:e.modelValue,class:Re("input",t.class),onInput:a=>n("update:modelValue",ss(a))})]),e.help&&U("div",{class:Re("input-info",e.state==="error"&&"error")},e.help)])}}),Al=Symbol("gnexus-ui-kit-toast"),Di={info:"ph-info",success:"ph-check-circle",warning:"ph-warning",danger:"ph-warning-octagon",error:"ph-warning-octagon",primary:"ph-info",secondary:"ph-info"},cp=je({name:"GnToastProvider",props:{lifetime:{type:Number,default:4e3}},setup(e,{slots:t,expose:n}){const a=K(null),s=K(!1),r=K(!1);let o=null,i=null,l=null;const u=K(100),c=()=>{window.clearTimeout(i),window.clearInterval(l),s.value=!0,r.value=!1,i=window.setTimeout(()=>{a.value=null,s.value=!1,u.value=100,window.clearTimeout(o),o=null},300)},d=()=>{window.clearTimeout(i),window.clearTimeout(o),window.clearInterval(l),s.value=!1,r.value=!1,u.value=100,a.value=null},f=m=>{window.clearTimeout(i),window.clearInterval(l),s.value=!1,r.value=!1,u.value=100;const h=Mn(m.variant||m.type||"info","info"),$=m.lifetime!==void 0?m.lifetime:e.lifetime;if(a.value={id:Date.now(),variant:h==="error"?"danger":h,title:m.title||"",text:m.text||m.message||"",icon:m.icon||Di[h]||Di.info,lifetime:$},window.clearTimeout(o),$!==0){const S=$/100;u.value=100,l=window.setInterval(()=>{u.value-=100/S,u.value<=0&&window.clearInterval(l)},100),o=window.setTimeout(c,$)}_n(()=>{requestAnimationFrame(()=>{r.value=!0})})},_={show:f,close:d,info:m=>f({...m,variant:"info"}),success:m=>f({...m,variant:"success"}),warning:m=>f({...m,variant:"warning"}),danger:m=>f({...m,variant:"danger"}),error:m=>f({...m,variant:"danger"})};ta(Al,_),n(_);const g=()=>s.value?"a-hide":r.value?"a-show":"";return()=>{var m;return[(m=t.default)==null?void 0:m.call(t),a.value&&U("div",{class:Re("toast",g(),`toast-${a.value.variant}`),role:"alert"},[U("div",{class:"toast-content"},[U("div",{class:"toast-header"},[We(a.value.icon),a.value.title]),a.value.text&&U("p",{class:"toast-text"},a.value.text)]),U("button",{class:"btn-icon toast-close",type:"button","aria-label":"Close",onClick:c},[We("ph-x")]),a.value.lifetime!==0&&U("div",{class:"toast-progress"},[U("div",{class:"toast-progress-bar",style:{transform:`scaleX(${Math.max(0,u.value/100)})`}})])])]}}}),dp=je({name:"GnUserCard",props:{name:{type:String,required:!0},email:{type:String,default:""},role:{type:String,default:""},avatar:{type:Object,default:()=>({})},href:{type:String,default:""},compact:{type:Boolean,default:!1},actions:{type:Array,default:()=>[]}},setup(e,{slots:t}){const n=()=>{var r;return((r=t.avatar)==null?void 0:r.call(t))||U(Yf,{...e.avatar,size:e.compact?"sm":"md"})},a=()=>U("span",{class:"identity"},[n(),U("span",{class:"identity-content"},[U("span",{class:"identity-title"},e.name),e.email&&U("span",{class:"identity-meta"},e.email)])]),s=()=>t.actions?t.actions():e.actions.length?U("div",{class:"user-card-actions"},e.actions.map(r=>{if(e.compact)return U("button",{class:"btn-icon",type:"button","aria-label":r.label,onClick:r.onClick},[We(r.icon)]);const o=!!r.icon,i=Re("btn","btn-small",{[`btn-${r.variant}`]:r.variant,"btn-secondary":!r.variant,"with-icon":o});return U("button",{class:i,type:"button",onClick:r.onClick},[o&&We(r.icon),r.label])})):null;return()=>{const r=Re("card","user-card",{"user-card-compact":e.compact}),o=[];e.href?o.push(U("a",{class:"profile-identity",href:e.href,target:"_blank",rel:"noopener noreferrer"},[a()])):o.push(a()),!e.compact&&e.role&&o.push(U("span",{class:"user-card-role"},e.role)),t.default&&!e.compact&&o.push(U("div",{class:"user-card-extra"},t.default()));const i=s();return i&&o.push(i),U("article",{class:r},[U("div",{class:"user-card-body"},o)])}}});function wn(){const e=mt(Al,null);if(e)return e;const t=()=>{throw new Error("GNexus UI Kit: useToast() requires near the app root.")};return{show:t,info:t,success:t,warning:t,danger:t,error:t,close:t}}const As=ya("Preferences",{web:()=>gr(()=>import("./web-Dcq5TooW.js"),[]).then(e=>new e.PreferencesWeb)}),_r="shserv_server_url";let br="";function Ut(){return Da.isNativePlatform()}function xl(){return br}function xa(e){br=String(e||"").replace(/\/+$/,"")}async function fp(){if(!Ut()){xa("");return}try{const e=await At.get(_r);xa(e||"")}catch{xa("")}}async function pp(e){const t=String(e||"").replace(/\/+$/,"");if(xa(t),!!Ut())try{await At.set(_r,t)}catch{}}function vp(e){const t=xl();if(!t)return e;const n=String(e||"").replace(/^\/+/,"");return n?`${t}/${n}`:t}async function gp(){return!Ut()||br?!0:!!await At.get(_r)}const At={async get(e){if(Ut())try{const{value:t}=await As.get({key:e});return t}catch{return null}try{return localStorage.getItem(e)}catch{return null}},async set(e,t){if(Ut()){try{await As.set({key:e,value:t})}catch{}return}try{localStorage.setItem(e,t)}catch{}},async remove(e){if(Ut()){try{await As.remove({key:e})}catch{}return}try{localStorage.removeItem(e)}catch{}}},Oa="shserv_access_token",Fa="shserv_expires_at";let yn=null,ln=null;async function hp(){try{yn=await At.get(Oa)||null;const t=await At.get(Fa);ln=t?Number(t):null}catch{yn=null,ln=null}}function is(e,t=null){yn=e||null,t!=null&&t>0?ln=Date.now()+t*1e3:ln=null,yn?(At.set(Oa,yn),ln&&At.set(Fa,String(ln))):(At.remove(Oa),At.remove(Fa))}function Cl(){return yn}function mp(){return ln}function En(){yn=null,ln=null,At.remove(Oa),At.remove(Fa)}const Na={DEBUG:0,INFO:1,WARN:2,ERROR:3};function El(){return Na[void 0]??Na.INFO}function wr(){return El()<=Na.DEBUG}function Oi(e){return Na[e]>=El()}function Fi(e){return e<10?`${e.toFixed(1)}ms`:`${Math.round(e)}ms`}function Rl(e,t=500){if(!e)return"";const n=String(e);return n.length>t?n.slice(0,t)+"…":n}function $l(e,t){try{const n=JSON.stringify(e);return t?Rl(n,t):n}catch{return"[Circular]"}}const yp=1e4,xs="[vue:http]";function _p(e){const t=new URLSearchParams;for(const[a,s]of Object.entries(e||{}))s!=null&&t.append(a,String(s));const n=t.toString();return n?`?${n}`:""}function bp(e,t){const n=String(e||"").replace(/\/+$/,""),a=String(t||"").replace(/^\/+/,"");return n?`${n}/${a}`:`/${a}`}function wp(e,t){return`${e}${_p(t)}`}async function Ni(e,t,n,a={}){const s=Number(a.timeoutMs||yp),r=new AbortController,o=setTimeout(()=>r.abort(),s),i=xl(),l=bp(i,wp(t,a.query)),u={Accept:"application/json",...a.headers||{}},c=Cl();c&&(u.Authorization=`Bearer ${c}`);const d={method:e,headers:u,signal:r.signal,credentials:"include"};a.signal&&a.signal.addEventListener("abort",()=>r.abort(),{once:!0}),n!=null&&(u["Content-Type"]="application/json",d.body=JSON.stringify(n)),wr()&&console.debug(xs,e,l,n?$l(n,500):"");const f=performance.now();try{const _=await fetch(l,d),g=await _.text();let m=g;if(g)try{m=JSON.parse(g)}catch{m=g}const h=performance.now()-f,$=_.status>=500?"ERROR":_.status>=400?"WARN":"INFO";return Oi($)&&console[$.toLowerCase()](xs,`${e} ${l} — ${_.status} in ${Fi(h)}`,Rl(g||"",200)),{response:_,data:m,meta:{url:l,method:e,statusCode:_.status,headers:_.headers}}}catch(_){const g=performance.now()-f;throw Oi("ERROR")&&console.error(xs,`${e} ${l} — FAILED in ${Fi(g)}`,(_==null?void 0:_.message)||_),_}finally{clearTimeout(o)}}function Sr(e){const t=vp(`/auth/login?return_to=${encodeURIComponent(e)}`);window.location.href=t}function Tl(){window.location.href="/#/login"}function kr(){return Ut()?"/auth/mobile-bridge":window.location.href}let Cs=!1,Ws=[];function Sp(e){Ws.push(e)}function Mi(e){Ws.forEach(t=>t(e)),Ws=[]}function Gn(e,t,n={}){return{type:e,message:t,...n}}async function Ar(e,t,n,a){var s,r;try{const{response:o,data:i,meta:l}=await Ni(e,t,n,a);if(!o.ok){if(o.status===401&&!(a!=null&&a._retryOnce)){if(Cs)await new Promise(c=>{Sp(d=>c(d))});else{Cs=!0;try{const c=await Ni("POST","/auth/refresh",null);if(c.response.ok){const d=(r=(s=c.data)==null?void 0:s.data)==null?void 0:r.access_token;if(d)is(d),Mi(d);else throw new Error("No token in refresh response")}else throw new Error("Refresh failed")}catch{return Mi(null),En(),window.location.hash.includes("/login")||Tl(),{ok:!1,error:Gn("http_error","HTTP 401",{statusCode:401,raw:i}),meta:l}}finally{Cs=!1}}return Cl()?Ar(e,t,n,{...a,_retryOnce:!0}):{ok:!1,error:Gn("http_error","HTTP 401",{statusCode:401,raw:i}),meta:l}}return{ok:!1,error:Gn("http_error",`HTTP ${o.status}`,{statusCode:o.status,raw:i}),meta:l}}return i&&typeof i=="object"&&(i.status===!1||i.status==="error")?{ok:!1,error:Gn("api_error",i.msg||i.message||"API error",{errorAlias:i.error_alias,failedFields:i.failed_fields||[],raw:i}),meta:l}:{ok:!0,data:i,meta:l}}catch(o){const i=(o==null?void 0:o.name)==="AbortError";return{ok:!1,error:Gn(i?"timeout":"network_error",(o==null?void 0:o.message)||"Network error",{details:o}),meta:{url:t,method:e,statusCode:0,headers:null}}}}function Fe(e,t){return Ar("GET",e,null,t)}function Qe(e,t,n){return Ar("POST",e,t,n)}const Un=bn("auth",()=>{const e=K(null),t=K([]),n=K(!1),a=K(null),s=ee(()=>!!e.value),r=ee(()=>new Set(t.value));function o(m){return r.value.has(m)}function i(m){return Array.isArray(m)?m.some(h=>r.value.has(h)):!1}function l(){a.value&&(clearTimeout(a.value),a.value=null);const m=mp();if(!m)return;const h=m-Date.now()-6e4;h>0?a.value=setTimeout(()=>{f().then(()=>{l()})},h):f().then(()=>{l()})}function u(){a.value&&(clearTimeout(a.value),a.value=null)}let c=null;async function d(){return c||(n.value=!0,c=Fe("/auth/me").then(async m=>{var h,$,y;if(m.ok){const S=((h=m.data)==null?void 0:h.data)||{};e.value=S.user||null,t.value=S.permissions||[],l()}else if((($=m.error)==null?void 0:$.statusCode)===401){await f();const S=await Fe("/auth/me");if(S.ok){const C=((y=S.data)==null?void 0:y.data)||{};e.value=C.user||null,t.value=C.permissions||[],l()}else e.value=null,t.value=[],En(),u()}else e.value=null,t.value=[],En(),u()}).catch(()=>{e.value=null,t.value=[],En(),u()}).finally(()=>{n.value=!1}),c)}async function f(){var h,$,y,S;const m=await Qe("/auth/refresh");if(m.ok){const C=(($=(h=m.data)==null?void 0:h.data)==null?void 0:$.access_token)||null,L=((S=(y=m.data)==null?void 0:y.data)==null?void 0:S.expires_in)||null;is(C,L),l()}else En(),u()}async function _(){try{await Qe("/auth/logout")}catch{}e.value=null,t.value=[],En(),u(),window.location.href="/#/login"}function g(){if(Ut()){Tl();return}Sr(kr())}return{user:e,permissions:t,isLoading:n,isAuthenticated:s,hasPermission:o,hasAnyPermission:i,init:d,refreshToken:f,logout:_,redirectToLogin:g}}),kp={__name:"AppShell",setup(e){const t=as(),n=Un(),a={login:"Login","areas-favorites":"Favorites","areas-tree":"Areas","area-detail":"Area",devices:"Devices","device-detail":"Device","devices-scanning":"Scanning","scripts-actions":"Actions","scripts-regular":"Regular","scripts-scopes":"Scopes","script-detail":"Script",firmwares:"Firmwares"},s=ee(()=>{const f=t==null?void 0:t.name;return f&&a[f]?a[f]:""}),r=[{label:"Favorites",to:"/areas/favorites",icon:"ph-bookmarks",permission:"areas.view"},{label:"Areas",to:"/areas/tree",icon:"ph-map-trifold",permission:"areas.view"},{label:"Devices",to:"/devices",icon:"ph-cpu",permission:"devices.view"},{label:"Scanning",to:"/devices/scanning",icon:"ph-magnifying-glass",permission:"devices.scan"},{label:"Actions",to:"/scripts/actions",icon:"ph-play",permission:"scripts.run"},{label:"Regular",to:"/scripts/regular",icon:"ph-clock",permission:"scripts.view"},{label:"Scopes",to:"/scripts/scopes",icon:"ph-brackets-curly",permission:"scripts.view"},{label:"Firmwares",to:"/firmwares",icon:"ph-cloud-arrow-down",permission:"firmware.view"}],o=ee(()=>r.filter(f=>f.permission?n.hasPermission(f.permission):!0));function i(f){return f?f.split(/\s+/).slice(0,2).map(_=>{var g;return(g=_[0])==null?void 0:g.toUpperCase()}).join(""):""}function l(f){return f?f.charAt(0).toUpperCase()+f.slice(1):""}function u(){Sr(kr())}function c(){const f=document.querySelector(".nav-drawer-backdrop");f&&f.click()}function d(){c(),n.logout()}return(f,_)=>(k(),q(v(op),{brand:"SHSERV","logo-src":"/logo-cube-square.svg",title:"Navigation",subtitle:"Smart Home",items:o.value,"active-match":"prefix",current:s.value},{content:x(()=>[Ja(f.$slots,"default")]),footer:x(()=>{var g,m,h,$,y,S;return[v(n).isAuthenticated?(k(),q(v(dp),{key:0,name:((g=v(n).user)==null?void 0:g.display_name)||"User",email:((m=v(n).user)==null?void 0:m.email)||"",role:l((h=v(n).user)==null?void 0:h.system_role),avatar:{src:(($=v(n).user)==null?void 0:$.avatar_url)||"",initials:i((y=v(n).user)==null?void 0:y.display_name),size:"sm"},href:((S=v(n).user)==null?void 0:S.gauth_profile_url)||"",compact:"",actions:[{label:"Logout",icon:"ph-sign-out",variant:"ghost",onClick:d}]},null,8,["name","email","role","avatar","href","actions"])):(k(),q(v(de),{key:1,variant:"primary",size:"sm",onClick:u},{icon:x(()=>[..._[0]||(_[0]=[I("i",{class:"ph ph-sign-in"},null,-1)])]),default:x(()=>[_[1]||(_[1]=N(" Sign in ",-1))]),_:1}))]}),_:3},8,["items","current"]))}},ze=(e,t)=>{const n=e.__vccOpts||e;for(const[a,s]of t)n[a]=s;return n},Ap={key:0},xp={key:1,class:"error-meta"},Cp={class:"error-actions"},Ep={__name:"AppErrorState",props:{title:{type:String,default:"Request failed"},message:{type:String,default:""},retry:{type:Function,default:null},error:{type:Object,default:null}},setup(e){const t=e,n=ee(()=>{var s;return t.message||((s=t.error)==null?void 0:s.message)||""}),a=ee(()=>{if(!t.error)return"";try{return JSON.stringify(t.error,null,2)}catch{return String(t.error)}});return(s,r)=>(k(),q(v(Ze),{variant:"danger",role:"alert"},{default:x(()=>[I("strong",null,O(e.title),1),n.value?(k(),G("p",Ap,O(n.value),1)):ne("",!0),e.error?(k(),G("div",xp,[e.error.type?(k(),q(v(ye),{key:0,variant:"secondary"},{default:x(()=>[N(O(e.error.type),1)]),_:1})):ne("",!0),e.error.statusCode?(k(),q(v(ye),{key:1,variant:"secondary"},{default:x(()=>[N("HTTP "+O(e.error.statusCode),1)]),_:1})):ne("",!0),e.error.errorAlias?(k(),q(v(ye),{key:2,variant:"warning"},{default:x(()=>[N(O(e.error.errorAlias),1)]),_:1})):ne("",!0)])):ne("",!0),I("div",Cp,[e.error?(k(),q(v(Qf),{key:0,text:a.value,label:"Copy error details",size:"sm"},null,8,["text"])):ne("",!0),e.retry?(k(),q(v(de),{key:1,variant:"danger",onClick:e.retry},{default:x(()=>[...r[0]||(r[0]=[N("Retry",-1)])]),_:1},8,["onClick"])):ne("",!0)])]),_:1}))}},pt=ze(Ep,[["__scopeId","data-v-f1e6bcb8"]]),Rp={key:0,class:"error-boundary",role:"alert"},$p={__name:"AppErrorBoundary",setup(e){const t=K(!1),n=K("");Do((s,r,o)=>{const i=(s==null?void 0:s.message)||String(s);return console.error("[AppErrorBoundary] Caught Vue error:",i,"| info:",o,s),t.value=!0,n.value=i,!1});function a(){t.value=!1,n.value=""}return(s,r)=>t.value?(k(),G("div",Rp,[R(pt,{title:"Something went wrong",message:n.value,retry:a},null,8,["message"])])):Ja(s.$slots,"default",{key:1},void 0,!0)}},Tp=ze($p,[["__scopeId","data-v-1e10ea7f"]]),Pp={__name:"App",setup(e){return(t,n)=>(k(),q(kp,null,{default:x(()=>[R(v(cp),null,{default:x(()=>[R(Tp,null,{default:x(()=>[R(v(wl))]),_:1})]),_:1})]),_:1}))}},It={list(e){return Fe("/api/v1/areas/list",e)},innerList(e,t){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/list`,t)},newArea(e){return Qe("/api/v1/areas/new-area",e)},remove(e){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/remove`)},devices(e,t){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/devices`,t)},scripts(e,t){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/scripts`,t)},updateDisplayName(e){return Qe("/api/v1/areas/update-display-name",e)},updateAlias(e){return Qe("/api/v1/areas/update-alias",e)},placeInArea(e){return Qe("/api/v1/areas/place-in-area",e)},unassign(e){return Fe(`/api/v1/areas/id/${encodeURIComponent(String(e))}/unassign-from-area`)}};function gt(e={}){const t=K(null),n=K(!1),a=K(null);async function s(i){var u,c;(u=t.value)==null||u.abort();const l=new AbortController;t.value=l,n.value=!0,a.value=null;try{const d=await i(l.signal);return t.value=null,n.value=!1,d.ok||e.ignoreTimeout!==!1&&((c=d.error)==null?void 0:c.type)==="timeout"||(a.value=d.error),d}catch(d){return t.value=null,n.value=!1,a.value={type:"network_error",message:(d==null?void 0:d.message)||"Network error"},{ok:!1,error:a.value}}}function r(){var i;(i=t.value)==null||i.abort(),t.value=null}function o(){a.value=null,r()}return{abortController:t,isLoading:n,error:a,execute:s,abort:r,clear:o}}const Pl="sh:areas:expandedNodes";function Ip(){try{const e=localStorage.getItem(Pl);if(e){const t=JSON.parse(e);if(Array.isArray(t))return new Set(t)}}catch{}return new Set}function Lp(e){try{localStorage.setItem(Pl,JSON.stringify([...e]))}catch{}}function Dp(e){const t={},n=[];for(const a of e)t[a.id]={...a,children:[]};for(const a of e){const s=t[a.id],r=a.parent_id&&a.parent_id==a.id,o=a.parent_id&&t[a.parent_id];!r&&o?t[a.parent_id].children.push(s):n.push(s)}return n.length===0&&e.length>0?Object.values(t):n}const kt=bn("areas",()=>{const e=K([]),t=K(null),n=K([]),a=K([]),s=gt(),r=gt(),o=ee(()=>Object.fromEntries(e.value.map(P=>[String(P.id),P]))),i=ee(()=>Dp(e.value)),l=K(Ip());wt(l,P=>{Lp(P)},{deep:!0});function u(P){const E=new Set(l.value);E.has(P)?E.delete(P):E.add(P),l.value=E}function c(P){return l.value.has(P)}async function d(){return s.execute(async P=>{var T,w;const E=await It.list({signal:P});return E.ok&&(e.value=((w=(T=E.data)==null?void 0:T.data)==null?void 0:w.areas)||[]),E})}async function f(P){var T,w,X,oe,fe,ge;r.abort();const E=new AbortController;r.abortController.value=E,r.isLoading.value=!0,r.error.value=null,t.value=o.value[String(P)]||null,n.value=[],a.value=[];try{const[B,J]=await Promise.all([It.devices(P,{signal:E.signal}),It.scripts(P,{signal:E.signal})]);return r.abortController.value=null,r.isLoading.value=!1,B.ok?J.ok?(n.value=((oe=(X=B.data)==null?void 0:X.data)==null?void 0:oe.devices)||[],a.value=((ge=(fe=J.data)==null?void 0:fe.data)==null?void 0:ge.scripts)||[],{ok:!0}):(((w=J.error)==null?void 0:w.type)!=="timeout"&&(r.error.value=J.error),{ok:!1,error:r.error.value}):(((T=B.error)==null?void 0:T.type)!=="timeout"&&(r.error.value=B.error),{ok:!1,error:r.error.value})}catch(B){return r.abortController.value=null,r.isLoading.value=!1,r.error.value={type:"network_error",message:(B==null?void 0:B.message)||"Network error"},{ok:!1,error:r.error.value}}}function _(){t.value=null,n.value=[],a.value=[],r.clear()}async function g(P){var T,w;const E=await It.devices(P);return E.ok&&(n.value=((w=(T=E.data)==null?void 0:T.data)==null?void 0:w.devices)||[]),E}async function m(P){var T,w;const E=await It.scripts(P);return E.ok&&(a.value=((w=(T=E.data)==null?void 0:T.data)==null?void 0:w.scripts)||[]),E}async function h(P){var T,w;const E=await It.newArea(P);if(E.ok){const X=(w=(T=E.data)==null?void 0:T.data)==null?void 0:w.area;X&&e.value.push(X)}return E}async function $(P,E){const T=await It.updateDisplayName({area_id:P,display_name:E});if(T.ok){const w=e.value.findIndex(X=>X.id===P);w!==-1&&(e.value[w]={...e.value[w],display_name:E})}return T}async function y(P){const E=await It.remove(P);return E.ok&&(e.value=e.value.filter(T=>T.id!==P)),E}function S(P){return!(P!=null&&P.parent_id)||P.parent_id<=0}async function C(P,E){const T=e.value.find(oe=>oe.id===P),w=e.value.filter(S).length;if(T&&S(T)&&w===1)return{ok:!1,error:{message:"Cannot assign the last root area as a child."}};const X=await It.placeInArea({target_id:P,place_in_area_id:E});if(X.ok){const oe=e.value.findIndex(fe=>fe.id===P);oe!==-1&&e.value.splice(oe,1,{...e.value[oe],parent_id:Number(E)})}return X}async function L(P){const E=await It.unassign(P);if(E.ok){const T=e.value.findIndex(w=>w.id===P);T!==-1&&e.value.splice(T,1,{...e.value[T],parent_id:0})}return E}return{areas:e,isLoading:s.isLoading,error:s.error,currentArea:t,currentAreaDevices:n,currentAreaScripts:a,isLoadingAreaDetail:r.isLoading,errorAreaDetail:r.error,areasById:o,areaTree:i,expandedNodeIds:l,toggleNode:u,isNodeExpanded:c,loadAreas:d,loadAreaDetail:f,clearAreaDetail:_,loadAreaDevices:g,loadAreaScripts:m,createArea:h,renameArea:$,removeArea:y,assignToArea:C,unassignArea:L}}),Il="sh_fav_areas";function Op(){try{return JSON.parse(localStorage.getItem(Il)||"[]").map(String)}catch{return[]}}function Ui(e){localStorage.setItem(Il,JSON.stringify(e.map(String)))}const xr=bn("favorites",()=>{const e=K(Op());function t(r){return e.value.includes(String(r))}function n(r){const o=String(r);e.value.includes(o)||(e.value.push(o),Ui(e.value))}function a(r){e.value=e.value.filter(o=>o!==String(r)),Ui(e.value)}function s(r){return t(r)?(a(r),!1):(n(r),!0)}return{ids:e,has:t,add:n,remove:a,toggle:s}}),Fp=["aria-label"],Ll={__name:"AreaFavoriteButton",props:{areaId:{type:[String,Number],required:!0}},setup(e){const t=e,n=xr(),a=ee(()=>n.has(t.areaId));return(s,r)=>(k(),G("button",{class:Ct(["btn-icon area-favorite-btn",{"is-active":a.value,"text-muted":!a.value,"text-warning":a.value}]),type:"button","aria-label":a.value?"Remove bookmark":"Bookmark",onClick:r[0]||(r[0]=Qa(o=>v(n).toggle(e.areaId),["stop"]))},[I("i",{class:Ct(["ph",a.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple"])},null,2)],10,Fp))}},St={__name:"AppLoadingState",props:{text:{type:String,default:"Loading"}},setup(e){return(t,n)=>(k(),q(v(Sl),{circle:"",label:e.text},null,8,["label"]))}},it={__name:"AppEmptyState",props:{title:{type:String,default:"Nothing here"},message:{type:String,default:""}},setup(e){return(t,n)=>(k(),q(v(tp),{title:e.title,text:e.message,icon:"ph-package"},{actions:x(()=>[Ja(t.$slots,"action")]),_:3},8,["title","text"]))}},Np={class:"page"},Mp={key:3,class:"area-favorites-list"},Up=["onClick"],Vp={class:"area-favorite-info"},jp={class:"area-favorite-title"},Bp={class:"area-favorite-meta"},Hp={key:0,class:"area-favorite-parent"},Gp={class:"area-favorite-actions"},qp={__name:"AreaFavoritesPage",setup(e){const t=kt(),n=xr(),a=en(),s=ee(()=>{const i=new Set(n.ids.map(String));return t.areas.filter(l=>i.has(String(l.id)))});function r(i){if(!i.parent_id)return null;const l=t.areasById[String(i.parent_id)];return(l==null?void 0:l.display_name)||null}function o(i){a.push({name:"area-detail",params:{id:String(i.id)}})}return bt(()=>{t.areas.length===0&&t.loadAreas()}),(i,l)=>{const u=cn("router-link");return k(),G("section",Np,[R(v(Tt),{title:"Favorites",kicker:"Areas"},{actions:x(()=>[R(v(ye),{variant:"primary"},{default:x(()=>[N(O(s.value.length)+" favorite areas",1)]),_:1})]),_:1}),v(t).isLoading?(k(),q(St,{key:0,text:"Loading areas"})):v(t).error?(k(),q(pt,{key:1,title:"Areas loading failed",error:v(t).error,retry:v(t).loadAreas},null,8,["error","retry"])):s.value.length===0?(k(),q(it,{key:2,title:"No favorite areas",message:"Favorite areas from the current client are preserved through localStorage."})):(k(),G("ul",Mp,[(k(!0),G(xe,null,Rt(s.value,c=>(k(),G("li",{key:c.id,class:"area-favorite-item"},[I("article",{class:"area-favorite-card",onClick:d=>o(c)},[l[2]||(l[2]=I("div",{class:"area-favorite-icon"},[I("i",{class:"ph ph-fill ph-bookmark-simple"})],-1)),I("div",Vp,[I("h2",jp,O(c.display_name),1),I("p",Bp,[R(v(ye),{variant:"secondary"},{default:x(()=>[N(O(c.type),1)]),_:2},1024),I("code",null,O(c.alias),1),r(c)?(k(),G("span",Hp,[l[1]||(l[1]=N(" in ",-1)),R(u,{to:{name:"area-detail",params:{id:String(c.parent_id)}},class:"parent-link",onClick:l[0]||(l[0]=Qa(()=>{},["stop"]))},{default:x(()=>[N(O(r(c)),1)]),_:2},1032,["to"])])):ne("",!0)])]),I("div",Gp,[R(Ll,{"area-id":c.id},null,8,["area-id"])])],8,Up)]))),128))]))])}}},zp=ze(qp,[["__scopeId","data-v-f8795944"]]);function jt(){const e=Un();return{has:t=>e.hasPermission(t),hasAny:t=>e.hasAnyPermission(t),permissions:e.permissions}}const Kp=["disabled","aria-expanded"],Wp={class:"area-tree-info"},Jp={class:"text-muted"},Yp={class:"area-tree-actions"},Xp={key:0,class:"area-tree-children"},Zp={key:1,class:"area-tree-node"},Qp={class:"area-tree-card area-tree-cycle text-danger"},ev={__name:"AreaTreeNode",props:{area:{type:Object,required:!0},ancestors:{type:Array,default:()=>[]}},setup(e){const t=e,n=en(),a=kt(),s=ee(()=>a.isNodeExpanded(t.area.id)),r=ee(()=>{var c;return!((c=t.area.children)!=null&&c.length)}),o=ee(()=>t.ancestors.includes(String(t.area.id))),i=ee(()=>[...t.ancestors,String(t.area.id)]);function l(){a.toggleNode(t.area.id)}function u(){n.push({name:"area-detail",params:{id:String(t.area.id)}})}return(c,d)=>{var _;const f=cn("AreaTreeNode",!0);return o.value?(k(),G("li",Zp,[I("article",Qp," Cycle skipped for area ID "+O(e.area.id),1)])):(k(),G("li",{key:0,class:Ct(["area-tree-node",{"is-open":s.value,"is-leaf":r.value}])},[I("article",{class:"area-tree-card",onClick:u},[I("button",{class:Ct(["tree-toggle",{"text-primary":!r.value,"text-muted":r.value}]),type:"button",disabled:r.value,"aria-expanded":s.value,onClick:Qa(l,["stop"])},O(r.value?"·":s.value?"−":"+"),11,Kp),I("div",Wp,[I("h2",null,O(e.area.display_name),1),I("p",Jp,[R(v(ye),{variant:"secondary"},{default:x(()=>[N(O(e.area.type),1)]),_:1}),I("code",null,O(e.area.alias),1)])]),I("div",Yp,[R(Ll,{"area-id":e.area.id},null,8,["area-id"])])]),(_=e.area.children)!=null&&_.length&&s.value?(k(),G("ul",Xp,[(k(!0),G(xe,null,Rt(e.area.children,g=>(k(),q(f,{key:g.id,area:g,ancestors:i.value},null,8,["area","ancestors"]))),128))])):ne("",!0)],2))}}},tv={class:"page"},nv={key:3,class:"area-tree"},av={class:"form-group"},sv={class:"form-group"},rv={class:"form-group"},iv={key:0,class:"form-group"},ov={__name:"AreaTreePage",setup(e){const t=kt(),n=wn(),a=jt(),s=K(!1),r=K(!1),o=K(""),i=Zt({type:"",alias:"",display_name:""});function l(){i.type="",i.alias="",i.display_name="",o.value="",s.value=!0}async function u(){var d;r.value=!0,o.value="";const c=await t.createArea({...i});if(r.value=!1,!c.ok){o.value=((d=c.error)==null?void 0:d.message)||"Failed to create area";return}s.value=!1,n.success({title:"Created",text:"Area created successfully"})}return bt(()=>{t.loadAreas()}),(c,d)=>(k(),G("section",tv,[R(v(Tt),{title:"Tree",kicker:"Areas"},{actions:x(()=>[v(a).has("areas.manage")?(k(),q(v(de),{key:0,variant:"primary",icon:"ph-plus",onClick:l},{default:x(()=>[...d[5]||(d[5]=[N("Create area",-1)])]),_:1})):ne("",!0)]),_:1}),v(t).isLoading?(k(),q(St,{key:0,text:"Loading areas tree"})):v(t).error?(k(),q(pt,{key:1,title:"Areas loading failed",error:v(t).error,retry:v(t).loadAreas},null,8,["error","retry"])):v(t).areaTree.length===0?(k(),q(it,{key:2,title:"No areas",message:"No areas found. Create one to get started."})):(k(),G("ul",nv,[(k(!0),G(xe,null,Rt(v(t).areaTree,f=>(k(),q(ev,{key:f.id,area:f},null,8,["area"]))),128))])),R(v(tt),{open:s.value,title:"Create area","onUpdate:open":d[4]||(d[4]=f=>s.value=f)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:d[3]||(d[3]=f=>s.value=!1)},{default:x(()=>[...d[6]||(d[6]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:u},{default:x(()=>[...d[7]||(d[7]=[N("Create",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",av,[R(v(yt),{modelValue:i.type,"onUpdate:modelValue":d[0]||(d[0]=f=>i.type=f),label:"Type",placeholder:"room"},null,8,["modelValue"])]),I("div",sv,[R(v(yt),{modelValue:i.alias,"onUpdate:modelValue":d[1]||(d[1]=f=>i.alias=f),label:"Alias",placeholder:"kitchen"},null,8,["modelValue"])]),I("div",rv,[R(v(yt),{modelValue:i.display_name,"onUpdate:modelValue":d[2]||(d[2]=f=>i.display_name=f),label:"Display name",placeholder:"Kitchen"},null,8,["modelValue"])]),o.value?(k(),G("div",iv,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(o.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"])]))}},lv=ze(ov,[["__scopeId","data-v-5f02f384"]]),uv={device_name:"name",device_hard_id:"device_id",device_ip:"ip",ip_address:"ip",mac_address:"mac",device_mac:"mac",core_version:"firmware_core_version",type:"device_type"};function cv(e){const t={};for(const[n,a]of Object.entries(e||{}))t[uv[n]||n]=a;return t}function qn(e){return encodeURIComponent(String(e))}function dv(e){var n,a,s;if(!e.ok)return e;const t=((a=(n=e.data)==null?void 0:n.data)==null?void 0:a.devices)||[];return{...e,data:{...e.data,data:{...(s=e.data)==null?void 0:s.data,devices:t.map(cv)}}}}const at={async list(){return dv(await Fe("/api/v1/devices/list"))},status(e,t){return Fe(`/api/v1/devices/id/${qn(e)}/status`,t)},reboot(e){return Fe(`/api/v1/devices/id/${qn(e)}/reboot`)},action(e){return Qe("/api/v1/devices/action",e)},scanningSetup(e){return Fe("/api/v1/devices/scanning/setup",{timeoutMs:12e4,...e})},scanningAll(e){return Fe("/api/v1/devices/scanning/all",{timeoutMs:12e4,...e})},setupNewDevice(e){return Qe("/api/v1/devices/setup/new-device",e)},detail(e,t){return Fe(`/api/v1/devices/id/${qn(e)}`,t)},updateName(e,t){return Qe("/api/v1/devices/update-name",{device_id:e,name:t})},updateDescription(e,t){return Qe("/api/v1/devices/update-description",{device_id:e,description:t})},updateAlias(e,t){return Qe("/api/v1/devices/update-alias",{device_id:e,new_alias:t})},remove(e){return Fe(`/api/v1/devices/id/${qn(e)}/remove`)},resetup(e){return Qe("/api/v1/devices/resetup",{device_id:e})},reset(e){return Qe("/api/v1/devices/reset",{device_id:e})},unassign(e){return Fe(`/api/v1/devices/id/${qn(e)}/unassign-from-area`)},placeInArea(e){return Qe("/api/v1/devices/place-in-area",e)}},fv=4;function Js(e){return String((e==null?void 0:e.id)||"")}function Cr(e,t){return{deviceId:Js(e),status:"idle",message:"",response:null,connectionStatus:(e==null?void 0:e.connection_status)||"unknown",updatedAt:null,...t}}function pv(e,t){var s,r;const a=(((r=(s=t.data)==null?void 0:s.data)==null?void 0:r.device)||{}).device_response||{};return Cr(e,{status:"ready",message:a.status||"ok",response:a,connectionStatus:"active",updatedAt:new Date().toISOString()})}function vv(e,t){var s,r,o;const n=((s=t.error)==null?void 0:s.raw)||{},a=((r=n==null?void 0:n.data)==null?void 0:r.connection_status)||(e==null?void 0:e.connection_status)||"unknown";return Cr(e,{status:"error",message:((o=t.error)==null?void 0:o.message)||"Device state is unavailable",response:n,connectionStatus:a,updatedAt:new Date().toISOString()})}async function gv(e,t,n){let a=0;const s=Math.max(1,Math.min(t,e.length));async function r(){for(;a{const e=K([]),t=K({}),n=K(0),a=K(new Set),s=K(null),r=K(null),o=K(null),i=K(!1),l=K(null),u=gt(),c=gt(),d=ee(()=>e.value.length),f=ee(()=>B=>a.value.has(String(B)));async function _(){return u.execute(async B=>{var Q,Y;const J=await at.list({signal:B});return J.ok&&(e.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.devices)||[],o.value=new Date().toISOString()),J})}function g(B,J){const Q=Js(B);Q&&(t.value={...t.value,[Q]:Cr(B,J)})}async function m(B,J,Q){const Y=n.value+1;n.value=Y,i.value=!0,l.value=null,Q&&(t.value={});const te=[];for(const ve of B)ve.connection_status==="lost"?g(ve,{status:"skipped",message:"Connection lost",connectionStatus:"lost"}):(g(ve,{status:"loading",message:"Loading"}),te.push(ve));try{await gv(te,J.concurrency||fv,async ve=>{const ke=await at.status(ve.id);n.value===Y&&(t.value={...t.value,[Js(ve)]:ke.ok?pv(ve,ke):vv(ve,ke)})})}catch(ve){n.value===Y&&(l.value={type:"state_loader_error",message:(ve==null?void 0:ve.message)||"Device states loader failed"})}finally{n.value===Y&&(i.value=!1)}}async function h(B,J={}){return m(B,J,!1)}async function $(B={}){return m(e.value,B,!0)}async function y(B){const J=String(B);a.value=new Set(a.value).add(J);const Q=await at.reboot(B),Y=new Set(a.value);return Y.delete(J),a.value=Y,Q}async function S(B){return c.execute(async J=>{var Y,te;const Q=await at.detail(B,{signal:J});return Q.ok&&(s.value=((te=(Y=Q.data)==null?void 0:Y.data)==null?void 0:te.device)||null),Q})}async function C(B){var te,ve;const J=await at.status(B);if(!J.ok)return r.value={ok:!1,error:J.error,channels:[]},J;const Y=(((ve=(te=J.data)==null?void 0:te.data)==null?void 0:ve.device)||{}).device_response||{};return r.value={ok:!0,channels:Y.channels||[],raw:Y},J}async function L(B,J){const Q=await at.updateName(B,J);return Q.ok&&s.value&&(s.value={...s.value,name:J}),Q}async function P(B,J){const Q=await at.updateDescription(B,J);return Q.ok&&s.value&&(s.value={...s.value,description:J}),Q}async function E(B,J){const Q=await at.updateAlias(B,J);return Q.ok&&s.value&&(s.value={...s.value,alias:J}),Q}async function T(B){return at.remove(B)}async function w(B){return at.resetup(B)}async function X(B){return at.reset(B)}async function oe(B){const J=await at.unassign(B);return J.ok&&s.value&&(s.value={...s.value,area_id:null}),J}async function fe(B,J){const Q=await at.placeInArea({target_id:B,place_in_area_id:J});return Q.ok&&s.value&&(s.value={...s.value,area_id:J}),Q}function ge(){s.value=null,r.value=null,c.clear()}return{devices:e,isLoading:u.isLoading,error:u.error,isLoadingStates:i,stateError:l,stateByDeviceId:t,stateRunId:n,rebootingIds:a,lastLoadedAt:o,currentDevice:s,currentDeviceStatus:r,isLoadingDetail:c.isLoading,errorDetail:c.error,total:d,isRebooting:f,loadDevices:_,setDeviceState:g,loadDeviceStates:$,loadStatesFor:h,rebootDevice:y,loadDeviceDetail:S,loadDeviceStatus:C,updateDeviceName:L,updateDeviceDescription:P,updateDeviceAlias:E,removeDevice:T,unassignDevice:oe,assignToArea:fe,resetupDevice:w,resetDevice:X,clearDeviceDetail:ge}}),Lt={actionsList(e){return Fe("/api/v1/scripts/actions/list",e)},regularList(e){return Fe("/api/v1/scripts/regular/list",e)},scopesList(e){return Fe("/api/v1/scripts/scopes/list",e)},runAction(e,t={}){return Qe("/api/v1/scripts/actions/run",{alias:e,params:t})},setActionState(e,t){return Fe(`/api/v1/scripts/actions/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setRegularState(e,t){return Fe(`/api/v1/scripts/regular/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setScopeState(e,t){return Fe(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},scopeCode(e,t){return Fe(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}`,t)},placeInArea(e){return Qe("/api/v1/scripts/place-in-area",e)},unassign(e){return Fe(`/api/v1/scripts/id/${encodeURIComponent(String(e))}/unassign-from-area`)}},Sn=bn("scripts",()=>{const e=K([]),t=K([]),n=K([]),a=K(new Set),s=K(null),r=K(""),o=gt(),i=gt(),l=gt(),u=gt(),c=ee(()=>e.value.length),d=ee(()=>t.value.length),f=ee(()=>n.value.length),_=ee(()=>B=>a.value.has(B)),g=ee(()=>B=>e.value.find(J=>J.alias===B)||null),m=ee(()=>B=>t.value.find(J=>J.alias===B)||null),h=ee(()=>B=>n.value.find(J=>J.name===B)||null),$=ee(()=>B=>e.value.filter(J=>J.scope===B)),y=ee(()=>B=>t.value.filter(J=>J.scope===B));async function S(){return o.execute(async B=>{var Q,Y;const J=await Lt.actionsList({signal:B});return J.ok&&(e.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.scripts)||[]),J})}async function C(){return i.execute(async B=>{var Q,Y;const J=await Lt.regularList({signal:B});return J.ok&&(t.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.scripts)||[]),J})}async function L(){return l.execute(async B=>{var Q,Y;const J=await Lt.scopesList({signal:B});return J.ok&&(n.value=((Y=(Q=J.data)==null?void 0:Q.data)==null?void 0:Y.scopes)||[]),J})}async function P(B,J={}){var te,ve,ke,Pe,be,Ge;a.value=new Set(a.value).add(B),s.value=null;const Q=await Lt.runAction(B,J),Y=new Set(a.value);return Y.delete(B),a.value=Y,Q.ok?(s.value={alias:B,ok:!0,data:(ke=(ve=(te=Q.data)==null?void 0:te.data)==null?void 0:ve.return)==null?void 0:ke.result,execTime:(Ge=(be=(Pe=Q.data)==null?void 0:Pe.data)==null?void 0:be.return)==null?void 0:Ge.exec_time},Q):(s.value={alias:B,ok:!1,error:Q.error},Q)}async function E(B,J){const Q=await Lt.setActionState(B,J);if(Q.ok){const Y=e.value.findIndex(te=>te.alias===B);Y!==-1&&(e.value[Y]={...e.value[Y],state:J?"enabled":"disabled"})}return Q}async function T(B,J){const Q=await Lt.setRegularState(B,J);if(Q.ok){const Y=t.value.findIndex(te=>te.alias===B);Y!==-1&&(t.value[Y]={...t.value[Y],state:J?"enabled":"disabled"})}return Q}async function w(B,J){const Q=await Lt.setScopeState(B,J);if(Q.ok){const Y=n.value.findIndex(te=>te.name===B);Y!==-1&&(n.value[Y]={...n.value[Y],state:J?"enabled":"disabled"})}return Q}async function X(B,J){const Q=await Lt.placeInArea({target_id:B,place_in_area_id:J});if(Q.ok){const Y=e.value.findIndex(ve=>ve.id===B);Y!==-1&&e.value.splice(Y,1,{...e.value[Y],area_id:J});const te=t.value.findIndex(ve=>ve.id===B);te!==-1&&t.value.splice(te,1,{...t.value[te],area_id:J})}return Q}async function oe(B){const J=await Lt.unassign(B);if(J.ok){const Q=e.value.findIndex(te=>te.id===B);Q!==-1&&e.value.splice(Q,1,{...e.value[Q],area_id:null});const Y=t.value.findIndex(te=>te.id===B);Y!==-1&&t.value.splice(Y,1,{...t.value[Y],area_id:null})}return J}async function fe(B){return u.execute(async J=>{const Q=await Lt.scopeCode(B,{signal:J});return Q.ok&&(r.value=typeof Q.data=="string"?Q.data:""),Q})}function ge(){r.value="",u.clear()}return{actions:e,regular:t,scopes:n,isLoadingActions:o.isLoading,isLoadingRegular:i.isLoading,isLoadingScopes:l.isLoading,errorActions:o.error,errorRegular:i.error,errorScopes:l.error,runningAliases:a,lastRunResult:s,currentScopeCode:r,isLoadingScopeCode:u.isLoading,errorScopeCode:u.error,totalActions:c,totalRegular:d,totalScopes:f,isRunning:_,actionByAlias:g,regularByAlias:m,scopeByName:h,actionsByScope:$,regularByScope:y,loadActions:S,loadRegular:C,loadScopes:L,runScript:P,setActionState:E,setRegularState:T,setScopeState:w,assignToArea:X,unassignFromArea:oe,loadScopeCode:fe,clearScopeCode:ge}});function Er(){const e=kt(),t=K(""),n=ee(()=>e.areas.filter(u=>String(u.id)!==String(t.value)).map(u=>({value:String(u.id),label:`${u.display_name} (${u.type})`}))),a=K(!1),s=K(""),r=K(!1),o=K("");function i(u){s.value=u?String(u):"",t.value=u?String(u):"",o.value="",a.value=!0}async function l(u,c){var f;if(!u||!c)return;r.value=!0,o.value="";const d=await c(u,s.value);return r.value=!1,d.ok?(a.value=!1,d):(o.value=((f=d.error)==null?void 0:f.message)||"Failed to assign area",d)}return{areaOptions:n,showAssignModal:a,selectedAreaId:s,assignLoading:r,assignError:o,openAssign:i,submitAssignCore:l}}const hv={key:1,class:"text-muted",style:{"font-size":"13px"}},mv={__name:"AreaBadgeLink",props:{area:{type:Object,default:null},areaId:{type:[Number,String],default:null}},setup(e){return(t,n)=>{const a=cn("router-link");return e.area?(k(),q(a,{key:0,to:{name:"area-detail",params:{id:e.area.id}},class:"area-link"},{default:x(()=>[R(v(ye),{variant:"info"},{default:x(()=>[N(O(e.area.display_name),1)]),_:1})]),_:1},8,["to"])):e.areaId?(k(),G("span",hv,"Area ID: "+O(e.areaId),1)):ne("",!0)}}},Rr=ze(mv,[["__scopeId","data-v-91230b95"]]),yv={class:"devices-panel"},_v={class:"block-title"},bv={key:0,class:"area-assigned"},wv={class:"area-card-info"},Sv={class:"text-muted"},kv={__name:"AreaAssignSection",props:{item:{type:Object,default:null},areaId:{type:[Number,String],default:null},title:{type:String,default:"Area"},emptyMessage:{type:String,default:"This item is not assigned to any area."}},emits:["assign"],setup(e,{emit:t}){const n=e,a=t,s=kt(),r=ee(()=>{var i;const o=n.areaId!=null?n.areaId:(i=n.item)==null?void 0:i.area_id;return o&&s.areasById[String(o)]||null});return(o,i)=>{const l=cn("router-link");return k(),G("div",yv,[I("div",_v,O(e.title),1),r.value?(k(),G("div",bv,[R(l,{to:{name:"area-detail",params:{id:r.value.id}},class:"area-card"},{default:x(()=>[i[1]||(i[1]=I("div",{class:"area-card-icon text-primary"},[I("i",{class:"ph ph-map-trifold"})],-1)),I("div",wv,[I("strong",null,O(r.value.display_name),1),I("small",Sv,O(r.value.type)+" — "+O(r.value.alias),1)])]),_:1},8,["to"])])):(k(),q(it,{key:1,title:"Not assigned",message:e.emptyMessage},{action:x(()=>[Ja(o.$slots,"action",{},()=>[R(v(de),{variant:"primary",icon:"ph-map-pin",onClick:i[0]||(i[0]=u=>a("assign"))},{default:x(()=>[...i[2]||(i[2]=[N("Assign to area",-1)])]),_:1})],!0)]),_:3},8,["message"]))])}}},$r=ze(kv,[["__scopeId","data-v-92cae82c"]]);function Dl(e){if(!e)return"";const t=Ol(e);if(!t)return e;const a=new Date-t,s=Math.floor(a/1e3),r=Math.floor(s/60),o=Math.floor(r/60),i=Math.floor(o/24),l=Math.floor(i/7),u=Math.floor(i/30);if(s<10)return"just now";if(s<60)return`${s} sec ago`;if(r<60)return`${r} min ago`;if(o<24){const d=r%60;return d>0?`${o} hour${o>1?"s":""} ${d} min ago`:`${o} hour${o>1?"s":""} ago`}if(i<7)return`${i} day${i>1?"s":""} ago`;if(l<4)return`${l} week${l>1?"s":""} ago`;if(u<12)return`${u} month${u>1?"s":""} ago`;const c=Math.floor(i/365);return`${c} year${c>1?"s":""} ago`}function Ys(e){if(!e)return"";const t=Ol(e);if(!t)return e;const a=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"][t.getMonth()],s=t.getDate(),r=t.getFullYear(),o=String(t.getHours()).padStart(2,"0"),i=String(t.getMinutes()).padStart(2,"0");return`${a} ${s}, ${r} ${o}:${i}`}function Ol(e){if(!e)return null;const t=/^(\d{4})-(\d{2})-(\d{2})\s+(\d{2}):(\d{2}):(\d{2})$/,n=e.match(t);if(n){const[,s,r,o,i,l,u]=n;return new Date(s,parseInt(r)-1,o,i,l,u)}const a=new Date(e);return isNaN(a.getTime())?null:a}const Av={class:"device-channels-state"},xv={key:3,class:"channels-grid"},Cv={key:0,class:"ph ph-caret-up"},Ev={key:1,class:"ph ph-caret-down"},Rv={key:0,class:"ph ph-caret-up"},$v={key:1,class:"ph ph-caret-down"},Tv={key:0,class:"ph ph-caret-up"},Pv={key:1,class:"ph ph-caret-down"},Iv={key:0,class:"ph ph-caret-up"},Lv={key:1,class:"ph ph-caret-down"},Dv={key:0,class:"ph ph-caret-up"},Ov={key:1,class:"ph ph-caret-down"},Fv={key:0,class:"raw-json text-muted"},Nv={__name:"DeviceChannelsState",props:{deviceType:{type:String,default:""},response:{type:Object,default:null},loading:{type:Boolean,default:!1},error:{type:[String,Object],default:null},connectionStatus:{type:String,default:"unknown"}},setup(e){const t=e,n=ee(()=>t.connectionStatus==="lost"),a=ee(()=>{var g;return((g=t.response)==null?void 0:g.channels)||[]}),s=ee(()=>{var g;return((g=t.response)==null?void 0:g.sensors)||{}}),r=ee(()=>{var g,m;return((m=(g=t.response)==null?void 0:g.hatch)==null?void 0:m.state)||"—"}),o=ee(()=>{var g,m;return((m=(g=t.response)==null?void 0:g.hatch)==null?void 0:m.position_pct)??"—"}),i=ee(()=>String(r.value).includes("open")?"warning":"primary"),l=ee(()=>String(r.value).includes("open")),u=ee(()=>{var g;return((g=t.response)==null?void 0:g.status)==="ok"}),c=ee(()=>{if(!t.response)return"";try{return JSON.stringify(t.response).slice(0,200)}catch{return""}}),d=ee(()=>{var g;return u.value?t.deviceType==="relay"||t.deviceType==="button"?a.value.length>0:t.deviceType==="sensor"?Object.keys(s.value).length>0:t.deviceType==="hatch"?!!((g=t.response)!=null&&g.hatch):!1:!1});function f(g){return g.id??g.channel}function _(g){return{enabled:"success",disabled:"secondary",mute:"primary",waiting:"warning",error:"danger"}[g]||"secondary"}return(g,m)=>(k(),G("div",Av,[e.loading?(k(),q(v(Sl),{key:0,circle:"",size:"sm",label:"Loading state"})):n.value?(k(),q(v(ye),{key:1,variant:"danger",size:"sm"},{default:x(()=>[...m[0]||(m[0]=[I("i",{class:"ph ph-wifi-slash"},null,-1),N(" Offline ",-1)])]),_:1})):e.error||!u.value?(k(),q(v(ye),{key:2,variant:"danger",size:"sm"},{default:x(()=>[m[1]||(m[1]=I("i",{class:"ph ph-warning-octagon"},null,-1)),typeof e.error=="string"?(k(),G(xe,{key:0},[N(O(e.error),1)],64)):(k(),G(xe,{key:1},[N("Error")],64))]),_:1})):d.value?(k(),G("div",xv,[e.deviceType==="relay"?(k(!0),G(xe,{key:0},Rt(a.value,h=>(k(),q(v(ye),{key:f(h),variant:h.state==="on"||h.state===!0?"success":"secondary",size:"sm"},{default:x(()=>[a.value.length>1?(k(),G(xe,{key:0},[N(O(f(h))+": ",1)],64)):ne("",!0),I("b",null,O(h.state=="off"?"OFF":"ON"),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="button"?(k(!0),G(xe,{key:1},Rt(a.value,h=>(k(),q(v(ye),{key:f(h),variant:_(h.indicator),size:"sm"},{default:x(()=>[N(O(f(h))+": ",1),I("b",null,O(h.indicator),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="sensor"?(k(),G(xe,{key:2},[s.value.radar?(k(),q(v(ye),{key:0,variant:"primary",size:"sm"},{default:x(()=>[I("i",{class:Ct(["ph",s.value.radar.presence?"ph-user-square":"ph-square"])},null,2),s.value.radar.presence?(k(),G(xe,{key:0},[N(O(s.value.radar.activity_score)+" ",1),s.value.radar.activity_score_dynamics==="increasing"?(k(),G("i",Cv)):s.value.radar.activity_score_dynamics==="decreasing"?(k(),G("i",Ev)):ne("",!0)],64)):ne("",!0)]),_:1})):ne("",!0),s.value.temperature?(k(),q(v(ye),{key:1,variant:"primary",size:"sm"},{default:x(()=>[m[2]||(m[2]=I("i",{class:"ph ph-thermometer"},null,-1)),N(" "+O(s.value.temperature.current)+"°C ",1),s.value.temperature.dynamics==="increasing"?(k(),G("i",Rv)):s.value.temperature.dynamics==="decreasing"?(k(),G("i",$v)):ne("",!0)]),_:1})):ne("",!0),s.value.humidity?(k(),q(v(ye),{key:2,variant:"primary",size:"sm"},{default:x(()=>[m[3]||(m[3]=I("i",{class:"ph ph-drop-half-bottom"},null,-1)),N(" "+O(s.value.humidity.current)+"% ",1),s.value.humidity.dynamics==="increasing"?(k(),G("i",Tv)):s.value.humidity.dynamics==="decreasing"?(k(),G("i",Pv)):ne("",!0)]),_:1})):ne("",!0),s.value.pressure?(k(),q(v(ye),{key:3,variant:"primary",size:"sm"},{default:x(()=>[N(O(s.value.pressure.current)+"hpa ",1),s.value.pressure.dynamics==="increasing"?(k(),G("i",Iv)):s.value.pressure.dynamics==="decreasing"?(k(),G("i",Lv)):ne("",!0)]),_:1})):ne("",!0),s.value.light?(k(),q(v(ye),{key:4,variant:"primary",size:"sm"},{default:x(()=>[m[4]||(m[4]=I("i",{class:"ph ph-lightbulb"},null,-1)),N(" "+O(s.value.light.percent)+"% ",1)]),_:1})):ne("",!0),s.value.microphone?(k(),q(v(ye),{key:5,variant:"primary",size:"sm"},{default:x(()=>[m[5]||(m[5]=I("i",{class:"ph ph-ear"},null,-1)),N(" "+O(s.value.microphone.current_noise)+"dBi ",1),s.value.microphone.noise_dynamics==="increasing"?(k(),G("i",Dv)):s.value.microphone.noise_dynamics==="decreasing"?(k(),G("i",Ov)):ne("",!0)]),_:1})):ne("",!0)],64)):e.deviceType==="hatch"?(k(),q(v(ye),{key:3,variant:i.value,size:"sm"},{default:x(()=>[N(O(r.value)+" ",1),l.value?(k(),G(xe,{key:0},[N(" - "+O(o.value)+"%",1)],64)):ne("",!0)]),_:1},8,["variant"])):(k(),G(xe,{key:4},[m[6]||(m[6]=I("span",{class:"unknown-type text-muted"},"Unknown type",-1)),c.value?(k(),G("pre",Fv,O(c.value),1)):ne("",!0)],64))])):(k(),q(v(ye),{key:4,variant:"secondary",size:"sm"},{default:x(()=>[...m[7]||(m[7]=[N("No data",-1)])]),_:1}))]))}},Fl=ze(Nv,[["__scopeId","data-v-08541c71"]]),Mv={class:"device-cell"},Uv=["innerHTML"],Vv={class:"device-info"},jv={class:"device-name-row"},Bv=["title"],Hv={class:"text-muted"},Gv=["title"],qv={key:1,class:"text-muted"},zv={__name:"DeviceTable",props:{devices:{type:Array,required:!0},showActions:{type:Boolean,default:!0},showLastContact:{type:Boolean,default:!0},caption:{type:String,default:"Devices"}},setup(e){const t=e,n=os(),a=wn(),s=jt(),r={relay:'',button:'',sensor:''},o=ee(()=>{const d=[{key:"device",label:"Device"},{key:"state",label:"State"}];return t.showLastContact&&d.push({key:"lastContact",label:"Last Contact"}),t.showActions&&d.push({key:"actions",label:"Actions"}),d});function i(d){return r[d]||r.relay}function l(d){return{active:"success",removed:"danger",freezed:"warning",setup:"primary"}[d]||"secondary"}function u(d){return n.stateByDeviceId[String(d.id)]||{status:"idle",message:"Not loaded",connectionStatus:d.connection_status||"unknown"}}async function c(d){var g;const f=t.devices.find(m=>String(m.id)===String(d)),_=await n.rebootDevice(d);_.ok?a.success({title:"Rebooting",text:`Device ${(f==null?void 0:f.name)||(f==null?void 0:f.alias)||"#"+d} is rebooting`}):a.error({title:"Reboot failed",text:((g=_.error)==null?void 0:g.message)||"Failed to reboot device"})}return(d,f)=>{const _=cn("router-link");return k(),q(v(Nn),{columns:o.value,rows:e.devices,caption:e.caption},Oo({"cell-device":x(({row:g})=>[R(_,{to:{name:"device-detail",params:{id:String(g.id)}},class:"device-link"},{default:x(()=>[I("div",Mv,[I("div",{class:"device-icon text-primary",innerHTML:i(g.device_type)},null,8,Uv),I("div",Vv,[I("div",jv,[I("strong",null,O(g.name||g.alias||`Device #${g.id}`),1),g.status&&g.status!=="active"?(k(),q(v(ye),{key:0,variant:l(g.status),size:"sm"},{default:x(()=>[N(O(g.status),1)]),_:2},1032,["variant"])):ne("",!0),I("span",{class:Ct(["status-dot",{"text-success":g.connection_status==="active","text-danger":g.connection_status!=="active"}]),"aria-hidden":"true",title:g.connection_status==="active"?"Online":"Offline"},null,10,Bv)]),I("small",Hv,O(g.alias)+" — "+O(g.device_ip||"—"),1)])])]),_:2},1032,["to"])]),"cell-state":x(({row:g})=>[R(Fl,{"device-type":g.device_type,response:u(g).response,loading:u(g).status==="loading",error:u(g).status==="error"?u(g).message:null,"connection-status":g.connection_status||"unknown"},null,8,["device-type","response","loading","error","connection-status"])]),"cell-lastContact":x(({row:g})=>[g.last_contact?(k(),G("span",{key:0,title:v(Ys)(g.last_contact)},O(v(Dl)(g.last_contact)),9,Gv)):(k(),G("span",qv,"—"))]),_:2},[e.showActions&&v(s).has("devices.control")?{name:"cell-actions",fn:x(({row:g})=>[R(v(de),{variant:"warning",icon:"ph-arrow-clockwise",size:"sm",loading:v(n).isRebooting(g.id),onClick:m=>c(g.id)},{default:x(()=>[...f[0]||(f[0]=[N(" Reboot ",-1)])]),_:1},8,["loading","onClick"])]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Nl=ze(zv,[["__scopeId","data-v-32549911"]]),Kv={class:"scope-name"},Wv={key:1,class:"muted"},Jv={key:1,class:"muted"},Yv={__name:"ScriptTable",props:{scripts:{type:Array,required:!0},scriptType:{type:String,default:"regular"},showArea:{type:Boolean,default:!1},showScope:{type:Boolean,default:!0},showFilename:{type:Boolean,default:!0},showActions:{type:Boolean,default:!0},caption:{type:String,default:"Scripts"}},setup(e){const t=e,n=Sn(),a=kt(),s=jt(),r=ee(()=>{const c={};for(const d of a.areas)c[d.id]=d;return c});function o(c){var d;return c.area_id?((d=r.value[c.area_id])==null?void 0:d.display_name)||`Area ${c.area_id}`:null}function i(c){const d=c.type||t.scriptType;return d==="action"?"actions":d==="scope"?"scopes":d}const l=ee(()=>{const c=[{key:"alias",label:"Alias"},{key:"name",label:"Name"}];return t.showScope&&c.push({key:"scope",label:"Scope"}),t.showArea&&c.push({key:"area",label:"Area"}),c.push({key:"state",label:"State"}),t.showFilename&&c.push({key:"filename",label:"File"}),t.showActions&&c.push({key:"actions",label:"Actions"}),c});function u(c,d,f){const _=f.type||t.scriptType;_==="action"?n.setActionState(c,d):_==="regular"&&n.setRegularState(c,d)}return(c,d)=>{const f=cn("router-link");return k(),q(v(Nn),{columns:l.value,rows:e.scripts,caption:e.caption},Oo({"cell-alias":x(({row:_})=>[R(f,{to:{name:"script-detail",params:{type:i(_),id:_.alias}},class:"script-link"},{default:x(()=>[N(O(_.alias),1)]),_:2},1032,["to"])]),"cell-scope":x(({row:_})=>[_.scope?(k(),q(f,{key:0,to:{name:"script-detail",params:{type:"scopes",id:_.scope}},class:"scope-link"},{default:x(()=>[d[0]||(d[0]=I("span",{class:"scope-label"},"Scope",-1)),I("span",Kv,O(_.scope),1),d[1]||(d[1]=I("i",{class:"ph ph-arrow-right"},null,-1))]),_:2},1032,["to"])):(k(),G("span",Wv,"—"))]),"cell-area":x(({row:_})=>[_.area_id?(k(),q(v(ye),{key:0,variant:"primary"},{default:x(()=>[N(O(o(_)),1)]),_:2},1024)):(k(),G("span",Jv,"—"))]),"cell-state":x(({row:_})=>[R(v(ye),{variant:_.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(_.state),1)]),_:2},1032,["variant"])]),_:2},[e.showActions&&v(s).has("scripts.edit")?{name:"cell-actions",fn:x(({row:_})=>[_.state==="enabled"?(k(),q(v(de),{key:0,variant:"secondary",icon:"ph-pause",onClick:g=>u(_.alias,!1,_)},{default:x(()=>[...d[2]||(d[2]=[N(" Disable ",-1)])]),_:1},8,["onClick"])):(k(),q(v(de),{key:1,variant:"primary",icon:"ph-play",onClick:g=>u(_.alias,!0,_)},{default:x(()=>[...d[3]||(d[3]=[N(" Enable ",-1)])]),_:1},8,["onClick"]))]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Ml=ze(Yv,[["__scopeId","data-v-1ead75a7"]]),Xv={class:"page-actions-dropdown"},Zv=["aria-expanded","onClick"],Tr={__name:"PageActionsDropdown",props:{items:{type:Array,required:!0}},setup(e){return(t,n)=>(k(),G("div",Xv,[R(v(ep),tl({items:e.items},t.$attrs),{trigger:x(({toggle:a,open:s})=>[I("button",{class:"btn-icon",type:"button","aria-label":"Actions","aria-expanded":s?"true":"false",onClick:a},[...n[0]||(n[0]=[I("i",{class:"ph ph-dots-three-vertical"},null,-1)])],8,Zv)]),_:1},16,["items"])]))}},Qv={key:0,class:"script-run-form"},eg={key:6,class:"field-error"},tg={__name:"ScriptRunModal",props:{open:{type:Boolean,default:!1},script:{type:Object,default:null}},emits:["update:open","run"],setup(e,{emit:t}){const n=e,a=t,s=K({}),r=K(new Set);function o(g,m){switch(g){case"text":case"textarea":return"";case"number":return 0;case"range":return m.min??0;case"select":{const h=Object.keys(m.options||{});return h.length?h[0]:""}case"toggle":return!1;default:return""}}function i(){var m;if(r.value=new Set,!((m=n.script)!=null&&m.params_schema)){s.value={};return}const g={};for(const[h,$]of Object.entries(n.script.params_schema))g[h]=$.default!==void 0?$.default:o($.type,$);s.value=g}wt(()=>n.open,g=>{g&&i()},{immediate:!0});function l(g){return g?Object.entries(g).map(([m,h])=>({value:m,label:h})):[]}function u(g,m){const h=s.value[g];return h==null?!0:m.type==="text"||m.type==="textarea"?String(h).trim()==="":!1}function c(g,m){return r.value.has(g)&&m.required&&u(g,m)?"error":null}function d(g,m){return r.value.has(g)&&m.required&&u(g,m)?`${m.label||g} is required`:null}const f=ee(()=>{var g;if(!((g=n.script)!=null&&g.params_schema))return!0;for(const[m,h]of Object.entries(n.script.params_schema))if(h.required&&u(m,h))return!1;return!0});function _(){var g;for(const m of Object.keys(((g=n.script)==null?void 0:g.params_schema)||{}))r.value.add(m);f.value&&(a("run",{alias:n.script.alias,params:{...s.value}}),a("update:open",!1))}return(g,m)=>{var h,$;return k(),q(v(tt),{open:e.open,title:`Run: ${((h=e.script)==null?void 0:h.name)??(($=e.script)==null?void 0:$.alias)??""}`,"onUpdate:open":m[1]||(m[1]=y=>g.$emit("update:open",y))},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:m[0]||(m[0]=y=>g.$emit("update:open",!1))},{default:x(()=>[...m[2]||(m[2]=[N(" Cancel ",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-play",disabled:!f.value,onClick:_},{default:x(()=>[...m[3]||(m[3]=[N(" Run ",-1)])]),_:1},8,["disabled"])]),default:x(()=>{var y;return[(y=e.script)!=null&&y.params_schema?(k(),G("div",Qv,[(k(!0),G(xe,null,Rt(e.script.params_schema,(S,C)=>(k(),G("div",{key:C,class:"form-field"},[S.type==="text"?(k(),q(v(yt),{key:0,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C,placeholder:S.placeholder||"",state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","placeholder","state"])):S.type==="number"?(k(),q(v(yt),{key:1,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,modelModifiers:{number:!0},type:"number",label:S.label||C,placeholder:S.placeholder||"",state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","placeholder","state"])):S.type==="range"?(k(),q(v(lp),{key:2,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,modelModifiers:{number:!0},label:S.label||C,min:S.min??0,max:S.max??100,step:S.step??1,state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","min","max","step","state"])):S.type==="select"?(k(),q(v(rs),{key:3,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C,options:l(S.options),state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","options","state"])):S.type==="toggle"?(k(),q(v(kl),{key:4,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C},null,8,["modelValue","onUpdate:modelValue","label"])):S.type==="textarea"?(k(),q(v(up),{key:5,modelValue:s.value[C],"onUpdate:modelValue":L=>s.value[C]=L,label:S.label||C,placeholder:S.placeholder||"",state:c(C,S)},null,8,["modelValue","onUpdate:modelValue","label","placeholder","state"])):ne("",!0),d(C,S)?(k(),G("p",eg,O(d(C,S)),1)):ne("",!0)]))),128))])):ne("",!0)]}),_:1},8,["open","title"])}}},Ul=ze(tg,[["__scopeId","data-v-c51fae66"]]),ng={class:"area-grid"},ag=["onClick"],sg=["innerHTML"],rg={key:1},ig={class:"script-meta"},og={key:2},lg={__name:"ActionScriptsGrid",props:{scripts:{type:Array,required:!0},showAreaBadge:{type:Boolean,default:!1}},emits:["run-success"],setup(e,{emit:t}){const n=e,a=t,s=en(),r=Sn(),o=kt(),i=wn(),l=jt(),u=K(!1),c=K(null),d=K(!1),f=K(null),_=K(""),g=K(""),m=K("warning");function h(E){return!E.area_id||!n.showAreaBadge?null:o.areas.find(T=>T.id===E.area_id)||null}function $(E){return E.danger_level==="dangerous"?"card-dangerous":E.danger_level==="cautious"?"card-cautious":""}function y(E){if(E.danger_level==="cautious"||E.danger_level==="dangerous"){f.value=E,_.value=`Run: ${E.name||E.alias}`,g.value=E.danger_level==="dangerous"?"This action is marked as dangerous. Are you sure you want to proceed?":"This action requires caution. Proceed?",m.value=E.danger_level==="dangerous"?"danger":"warning",d.value=!0;return}const T=E.params_schema;if(T&&Object.keys(T).length>0){c.value=E,u.value=!0;return}L(E.alias,{})}function S(){if(f.value){const E=f.value.params_schema;E&&Object.keys(E).length>0?(c.value=f.value,u.value=!0):L(f.value.alias,{}),f.value=null}}function C(){f.value=null}async function L(E,T){var X,oe;const w=await r.runScript(E,T);w!=null&&w.ok?(i.success({title:`Ran ${E}`,text:(X=r.lastRunResult)!=null&&X.execTime?`Exec time: ${r.lastRunResult.execTime}`:void 0}),a("run-success",{alias:E})):i.error({title:`Failed ${E}`,text:((oe=w==null?void 0:w.error)==null?void 0:oe.message)||"Unknown error"})}function P(E){s.push({name:"script-detail",params:{type:"actions",id:E}})}return(E,T)=>(k(),G(xe,null,[I("div",ng,[(k(!0),G(xe,null,Rt(e.scripts,w=>(k(),G("div",{key:w.alias,class:Ct(["action-card-item",$(w)]),onClick:X=>P(w.alias)},[R(v(Jf),{title:w.name},{default:x(()=>[w.icon?(k(),G("div",{key:0,innerHTML:w.icon,class:"script-icon"},null,8,sg)):ne("",!0),w.description?(k(),G("p",rg,O(w.description),1)):ne("",!0),I("div",ig,[R(v(ye),{variant:w.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(w.state),1)]),_:2},1032,["variant"]),w.scope?(k(),q(v(ye),{key:0,variant:"primary"},{default:x(()=>[N(O(w.scope),1)]),_:2},1024)):ne("",!0),e.showAreaBadge&&h(w)?(k(),q(v(ye),{key:1,variant:"primary"},{default:x(()=>[N(O(h(w).display_name),1)]),_:2},1024)):ne("",!0),(k(!0),G(xe,null,Rt(w.indicators,(X,oe)=>(k(),q(v(ye),{key:oe,variant:X.variant},{default:x(()=>[N(O(X.label),1)]),_:2},1032,["variant"]))),128))]),w.created_by||w.author?(k(),G("small",og,O(w.created_by||w.author),1)):ne("",!0)]),actions:x(()=>[v(l).has("scripts.run")?(k(),q(v(de),{key:0,variant:"primary",icon:"ph-play",loading:v(r).isRunning(w.alias),disabled:w.state!=="enabled",onClick:Qa(X=>y(w),["stop"])},{default:x(()=>[...T[3]||(T[3]=[N(" Run ",-1)])]),_:1},8,["loading","disabled","onClick"])):ne("",!0)]),_:2},1032,["title"])],10,ag))),128))]),c.value?(k(),q(Ul,{key:0,open:u.value,script:c.value,"onUpdate:open":T[0]||(T[0]=w=>u.value=w),onRun:T[1]||(T[1]=w=>L(w.alias,w.params))},null,8,["open","script"])):ne("",!0),R(v(Zf),{open:d.value,title:_.value,message:g.value,"confirm-variant":m.value,"onUpdate:open":T[2]||(T[2]=w=>d.value=w),onConfirm:S,onCancel:C},null,8,["open","title","message","confirm-variant"])],64))}},Vl=ze(lg,[["__scopeId","data-v-1aea77e7"]]),ug={class:"page"},cg={key:3},dg={class:"area-meta"},fg={class:"actions-panel"},pg={class:"block-title"},vg={class:"devices-panel"},gg={class:"block-title"},hg={class:"scripts-panel"},mg={class:"block-title"},yg={class:"form-group"},_g={key:0,class:"form-group"},bg={key:1,class:"form-group"},wg={key:2,class:"form-group"},Sg={key:0,class:"form-group"},kg={key:0,class:"form-group"},Ag={__name:"AreaDetailPage",setup(e){const t=as(),n=en(),a=kt(),s=os(),r=xr();Sn();const o=wn(),i=jt(),{showAssignModal:l,selectedAreaId:u,assignLoading:c,assignError:d,openAssign:f,submitAssignCore:_}=Er(),g=ee(()=>a.areasById[String(t.params.id)]||null),m=ee(()=>g.value?r.has(g.value.id):!1),h=ee(()=>{var F;const H=[];return i.has("areas.manage")&&(H.push({label:"Rename",icon:"ph-pencil",onSelect:ve}),((F=g.value)==null?void 0:F.parent_id)>0?H.push({label:"Change parent area",icon:"ph-map-pin",onSelect:Ge},{label:"Unassign from parent",icon:"ph-x-circle",onSelect:De}):H.push({label:"Assign to area",icon:"ph-map-pin",onSelect:Ge})),H.push({label:m.value?"Remove bookmark":"Bookmark",icon:m.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple",onSelect:()=>{var V;return r.toggle((V=g.value)==null?void 0:V.id)}}),i.has("areas.manage")&&H.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:Pe}),H}),$=ee(()=>!g.value||g.value.parent_id<=0?null:a.areasById[String(g.value.parent_id)]||null),y=ee(()=>a.currentAreaScripts.filter(H=>H.type==="action")),S=ee(()=>a.currentAreaScripts.filter(H=>H.type!=="action")),C=ee(()=>{if(!g.value)return!1;const H=!g.value.parent_id||g.value.parent_id<=0,F=a.areas.filter(V=>!V.parent_id||V.parent_id<=0).length;return H&&F===1});function L(H){const F=new Set,V=[H];for(;V.length;){const p=V.shift(),b=a.areas.filter(A=>A.parent_id===p);for(const A of b)F.add(A.id),V.push(A.id)}return F}const P=ee(()=>{if(!g.value)return[];const H=new Set([g.value.id,...L(g.value.id)]);return a.areas.filter(F=>!H.has(F.id)).map(F=>({value:String(F.id),label:`${F.display_name} (${F.type})`}))}),E=K(!1),T=K(!1),w=K(""),X=Zt({areaId:null,display_name:""}),oe=K(!1),fe=K(""),ge=K(!1),B=K(""),J=K(!1),Q=K(""),Y=K(!1),te=K("");function ve(){g.value&&(X.areaId=g.value.id,X.display_name=g.value.display_name,w.value="",E.value=!0)}async function ke(){var F;T.value=!0,w.value="";const H=await a.renameArea(X.areaId,X.display_name);if(T.value=!1,!H.ok){w.value=((F=H.error)==null?void 0:F.message)||"Failed to rename area";return}E.value=!1,o.success({title:"Renamed",text:"Area renamed successfully"})}function Pe(){g.value&&(fe.value=`Are you sure you want to remove area "${g.value.display_name}"?`,B.value="",oe.value=!0)}async function be(){var F;if(!g.value)return;ge.value=!0,B.value="";const H=await a.removeArea(g.value.id);if(ge.value=!1,!H.ok){B.value=((F=H.error)==null?void 0:F.message)||"Failed to remove area";return}oe.value=!1,o.success({title:"Removed",text:"Area removed successfully"}),n.push({name:"areas-tree"})}function Ge(){var H;f(((H=g.value)==null?void 0:H.parent_id)>0?g.value.parent_id:"")}async function Ue(){var V;const H=(V=g.value)==null?void 0:V.id,F=await _(H,(p,b)=>a.assignToArea(p,b));F!=null&&F.ok&&o.success({title:"Assigned",text:"Area assigned successfully"})}function De(){g.value&&(Q.value=`Are you sure you want to unassign area "${g.value.display_name}" from its parent?`,te.value="",J.value=!0)}async function Oe(){var F;if(!g.value)return;Y.value=!0,te.value="";const H=await a.unassignArea(g.value.id);if(Y.value=!1,!H.ok){te.value=((F=H.error)==null?void 0:F.message)||"Failed to unassign area";return}J.value=!1,o.success({title:"Unassigned",text:"Area unassigned from parent successfully"})}async function M(){a.currentAreaDevices.length>0&&await s.loadStatesFor(a.currentAreaDevices)}async function se(){const H=t.params.id;H&&(a.areas.length===0&&await a.loadAreas(),a.areasById[String(H)]&&(await a.loadAreaDetail(H),await M()))}return wt(()=>t.params.id,async(H,F)=>{H&&H!==F&&await se()},{immediate:!1}),bt(()=>{se()}),ha(()=>{a.clearAreaDetail()}),(H,F)=>(k(),G("section",ug,[v(a).isLoading||v(a).isLoadingAreaDetail?(k(),q(St,{key:0,text:"Loading area"})):v(a).error&&!v(a).areas.length?(k(),q(pt,{key:1,title:"Areas loading failed",error:v(a).error,retry:se},null,8,["error"])):v(a).errorAreaDetail?(k(),q(pt,{key:2,title:"Area loading failed",error:v(a).errorAreaDetail,retry:se},null,8,["error"])):g.value?(k(),G("div",cg,[R(v(Tt),{title:g.value.display_name,kicker:"Area"},{actions:x(()=>[R(Tr,{items:h.value},null,8,["items"])]),_:1},8,["title"]),I("div",dg,[R(v(ye),{variant:"secondary"},{default:x(()=>[N(O(g.value.type),1)]),_:1}),I("code",null,O(g.value.alias),1),R(Rr,{area:$.value,areaId:g.value.parent_id},null,8,["area","areaId"])]),I("div",fg,[I("div",pg,"Actions ("+O(y.value.length)+")",1),y.value.length===0?(k(),q(it,{key:0,title:"No actions",message:"No action scripts assigned to this area."})):(k(),q(Vl,{key:1,scripts:y.value,onRunSuccess:M},null,8,["scripts"]))]),I("div",vg,[I("div",gg,"Devices ("+O(v(a).currentAreaDevices.length)+")",1),v(a).currentAreaDevices.length===0?(k(),q(it,{key:0,title:"No devices",message:"No devices assigned to this area."})):(k(),q(Nl,{key:1,devices:v(a).currentAreaDevices,caption:"Area devices"},null,8,["devices"]))]),R($r,{areaId:g.value.parent_id>0?g.value.parent_id:null,title:"Parent area",emptyMessage:"This area is not assigned to any parent area.",onAssign:Ge},{action:x(()=>[v(i).has("areas.manage")?(k(),q(v(de),{key:0,variant:"primary",icon:"ph-map-pin",onClick:Ge},{default:x(()=>[N(O(g.value.parent_id>0?"Change parent area":"Assign to area"),1)]),_:1})):ne("",!0)]),_:1},8,["areaId"]),I("div",hg,[I("div",mg,"Regular scripts ("+O(S.value.length)+")",1),S.value.length===0?(k(),q(it,{key:0,title:"No regular scripts",message:"No regular scripts assigned to this area."})):(k(),q(Ml,{key:1,scripts:S.value,scriptType:"regular",showArea:!1,showActions:!1,showFilename:!1,caption:"Area regular scripts"},null,8,["scripts"]))])])):(k(),q(it,{key:4,title:"Area not found",message:"The requested area does not exist."})),R(v(tt),{open:E.value,title:"Rename area","onUpdate:open":F[2]||(F[2]=V=>E.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[1]||(F[1]=V=>E.value=!1)},{default:x(()=>[...F[10]||(F[10]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:T.value,onClick:ke},{default:x(()=>[...F[11]||(F[11]=[N("Rename",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",yg,[R(v(yt),{modelValue:X.display_name,"onUpdate:modelValue":F[0]||(F[0]=V=>X.display_name=V),label:"Display name"},null,8,["modelValue"])]),w.value?(k(),G("div",_g,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(w.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:v(l),title:"Assign to parent area","onUpdate:open":F[5]||(F[5]=V=>l.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[4]||(F[4]=V=>l.value=!1)},{default:x(()=>[...F[13]||(F[13]=[N("Cancel",-1)])]),_:1}),C.value?ne("",!0):(k(),q(v(de),{key:0,variant:"primary",icon:"ph-check",loading:v(c),onClick:Ue},{default:x(()=>[...F[14]||(F[14]=[N(" Assign ",-1)])]),_:1},8,["loading"]))]),default:x(()=>[C.value?ne("",!0):(k(),q(v(rs),{key:0,modelValue:v(u),"onUpdate:modelValue":F[3]||(F[3]=V=>Ve(u)?u.value=V:null),label:"Parent area",options:P.value,icon:"ph-map-trifold"},null,8,["modelValue","options"])),C.value?(k(),G("div",bg,[R(v(Ze),{variant:"warning"},{default:x(()=>[...F[12]||(F[12]=[N(" This is the last root area and cannot be assigned as a child. At least one root area must remain. ",-1)])]),_:1})])):ne("",!0),v(d)?(k(),G("div",wg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(v(d)),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:J.value,title:"Unassign from parent","onUpdate:open":F[7]||(F[7]=V=>J.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[6]||(F[6]=V=>J.value=!1)},{default:x(()=>[...F[15]||(F[15]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"warning",icon:"ph-x-circle",loading:Y.value,onClick:Oe},{default:x(()=>[...F[16]||(F[16]=[N(" Unassign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(Q.value),1),te.value?(k(),G("div",Sg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(te.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:oe.value,title:"Remove area","onUpdate:open":F[9]||(F[9]=V=>oe.value=V)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:F[8]||(F[8]=V=>oe.value=!1)},{default:x(()=>[...F[17]||(F[17]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"danger",icon:"ph-trash",loading:ge.value,onClick:be},{default:x(()=>[...F[18]||(F[18]=[N(" Remove ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(fe.value),1),B.value?(k(),G("div",kg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(B.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"])]))}},xg=ze(Ag,[["__scopeId","data-v-757a0469"]]),Cg={class:"page"},Eg={key:3,class:"devices-panel"},Rg={class:"devices-summary"},$g=300*1e3,Tg={__name:"DevicesListPage",setup(e){const t=os(),n=ee(()=>{if(!t.lastLoadedAt)return!1;const s=new Date(t.lastLoadedAt).getTime();return Date.now()-s>$g});async function a(){(await t.loadDevices()).ok&&await t.loadDeviceStates()}return bt(a),(s,r)=>(k(),G("section",Cg,[R(v(Tt),{title:"Device Matrix",kicker:"Devices"},{actions:x(()=>[R(v(de),{loading:v(t).isLoading||v(t).isLoadingStates,icon:"ph-arrow-clockwise",onClick:a},{default:x(()=>[...r[0]||(r[0]=[N(" Refresh ",-1)])]),_:1},8,["loading"])]),_:1}),v(t).isLoading?(k(),q(St,{key:0,text:"Loading devices"})):v(t).error?(k(),q(pt,{key:1,title:"Devices loading failed",error:v(t).error,retry:a},null,8,["error"])):v(t).devices.length===0?(k(),q(it,{key:2,title:"No active devices",message:"No active devices found."})):(k(),G("div",Eg,[I("div",Rg,[R(v(ye),{variant:"primary"},{default:x(()=>[N("Total: "+O(v(t).total),1)]),_:1}),v(t).isLoadingStates?(k(),q(v(ye),{key:0,variant:"secondary"},{default:x(()=>[...r[1]||(r[1]=[N("States loading",-1)])]),_:1})):(k(),q(v(ye),{key:1,variant:"success"},{default:x(()=>[...r[2]||(r[2]=[N("States settled",-1)])]),_:1})),n.value?(k(),q(v(ye),{key:2,variant:"warning"},{default:x(()=>[...r[3]||(r[3]=[N("Stale data",-1)])]),_:1})):ne("",!0)]),v(t).stateError?(k(),q(pt,{key:0,title:"Device states loading failed",error:v(t).stateError},null,8,["error"])):ne("",!0),R(Nl,{devices:v(t).devices,caption:"Registered devices"},null,8,["devices"])]))]))}},Pg=ze(Tg,[["__scopeId","data-v-635f3900"]]),Ig=bn("scanning",()=>{const e=K("setup"),t=K([]),n=gt(),a=ee(()=>t.value.length);async function s(){return n.execute(async i=>{var u,c;const l=e.value==="setup"?await at.scanningSetup({signal:i}):await at.scanningAll({signal:i});return l.ok&&(t.value=((c=(u=l.data)==null?void 0:u.data)==null?void 0:c.devices)||[]),l})}function r(i){e.value=i,t.value=[],n.clear()}async function o(i){return at.setupNewDevice(i)}return{mode:e,devices:t,isLoading:n.isLoading,error:n.error,total:a,scan:s,setMode:r,setupDevice:o}}),Lg={class:"page"},Dg={class:"scan-filters"},Og={key:3,class:"devices-panel"},Fg={class:"devices-summary"},Ng={class:"device-cell"},Mg=["innerHTML"],Ug={class:"device-info"},Vg={class:"firmware"},jg={key:1,class:"muted"},Bg={class:"form-group"},Hg={class:"form-group"},Gg={class:"form-group"},qg={key:0,class:"form-group"},zg={__name:"DevicesScanningPage",setup(e){const t=Ig(),n=wn(),a=jt(),s=K(!1),r=K(!1),o=K(""),i=Zt({device_ip:"",alias:"",name:"",description:""}),l={relay:'',button:'',sensor:''},u=[{key:"device",label:"Device"},{key:"status",label:"Status"},{key:"firmware",label:"Firmware"},{key:"actions",label:"Actions"}];function c(m){return l[m]||l.relay}function d(m){t.setMode(m)}function f(){t.scan()}function _(m){i.device_ip=m.ip_address,i.alias="",i.name="",i.description="",o.value="",s.value=!0}async function g(){var h;r.value=!0,o.value="";const m=await t.setupDevice({...i});if(r.value=!1,!m.ok){o.value=((h=m.error)==null?void 0:h.message)||"Failed to setup device";return}s.value=!1,n.success({title:"Device added",text:`Device ${i.alias||i.name||""} added successfully`})}return(m,h)=>(k(),G("section",Lg,[R(v(Tt),{title:"Scanning",kicker:"Devices"},{actions:x(()=>[R(v(de),{loading:v(t).isLoading,icon:"ph-magnifying-glass",onClick:f},{default:x(()=>[...h[7]||(h[7]=[N(" Scan ",-1)])]),_:1},8,["loading"])]),_:1}),I("div",Dg,[h[10]||(h[10]=I("span",{class:"filter-label text-muted"},"Mode:",-1)),R(v(Li),{selected:v(t).mode==="setup",clickable:"",icon:"ph-plug",onClick:h[0]||(h[0]=$=>d("setup"))},{default:x(()=>[...h[8]||(h[8]=[N(" Setup ",-1)])]),_:1},8,["selected"]),R(v(Li),{selected:v(t).mode==="all",clickable:"",icon:"ph-scan",onClick:h[1]||(h[1]=$=>d("all"))},{default:x(()=>[...h[9]||(h[9]=[N(" All ",-1)])]),_:1},8,["selected"])]),v(t).isLoading?(k(),q(St,{key:0,text:"Scanning network"})):v(t).error?(k(),q(pt,{key:1,title:"Scan failed",error:v(t).error,retry:f},null,8,["error"])):v(t).devices.length===0?(k(),q(it,{key:2,title:"No devices found",message:"Choose scan mode and click Scan to discover devices."})):(k(),G("div",Og,[I("div",Fg,[R(v(ye),{variant:"primary"},{default:x(()=>[N(O(v(t).total)+" found",1)]),_:1})]),R(v(Nn),{columns:u,rows:v(t).devices,caption:"Discovered devices"},{"cell-device":x(({row:$})=>[I("div",Ng,[I("div",{class:"device-icon",innerHTML:c($.device_type)},null,8,Mg),I("div",Ug,[I("strong",null,O($.device_name||"Unknown"),1),I("small",null,O($.device_type||"unknown")+" — "+O($.ip_address||"—"),1)])])]),"cell-status":x(({row:$})=>[R(v(ye),{variant:$.status==="setup"?"warning":"success"},{default:x(()=>[N(O($.status||"unknown"),1)]),_:2},1032,["variant"])]),"cell-firmware":x(({row:$})=>[I("span",Vg,O($.firmware_version||"—"),1)]),"cell-actions":x(({row:$})=>[$.status==="setup"&&v(a).has("devices.setup")?(k(),q(v(de),{key:0,variant:"primary",icon:"ph-plus",size:"sm",onClick:y=>_($)},{default:x(()=>[...h[11]||(h[11]=[N(" Add ",-1)])]),_:1},8,["onClick"])):(k(),G("span",jg,"—"))]),_:1},8,["rows"])])),R(v(tt),{open:s.value,title:"Setup new device","onUpdate:open":h[6]||(h[6]=$=>s.value=$)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:h[5]||(h[5]=$=>s.value=!1)},{default:x(()=>[...h[12]||(h[12]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:g},{default:x(()=>[...h[13]||(h[13]=[N(" Add device ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",Bg,[R(v(yt),{modelValue:i.alias,"onUpdate:modelValue":h[2]||(h[2]=$=>i.alias=$),label:"Alias",placeholder:"kitchen_relay"},null,8,["modelValue"])]),I("div",Hg,[R(v(yt),{modelValue:i.name,"onUpdate:modelValue":h[3]||(h[3]=$=>i.name=$),label:"Name",placeholder:"Kitchen Relay"},null,8,["modelValue"])]),I("div",Gg,[R(v(yt),{modelValue:i.description,"onUpdate:modelValue":h[4]||(h[4]=$=>i.description=$),label:"Description"},null,8,["modelValue"])]),o.value?(k(),G("div",qg,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(o.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"])]))}},Kg=ze(zg,[["__scopeId","data-v-1a01bb19"]]);function Vi(e){return encodeURIComponent(String(e))}const zn={async list(){return Fe("/api/v1/firmwares")},async detail(e){return Fe(`/api/v1/firmwares/id/${Vi(e)}`)},async refresh(){return Qe("/api/v1/firmwares/refresh")},async deviceCompatibility(e){return Fe(`/api/v1/devices/id/${Vi(e)}/firmware-compatibility`)},async updateDeviceFirmware(e,t){return Qe("/api/v1/devices/update-firmware",{device_id:e,firmware_id:t})}},jl=bn("firmwares",()=>{const e=K([]),t=K(null),n=K(null),a=gt(),s=gt(),r=gt(),o=gt(),i=ee(()=>a.isLoading.value),l=ee(()=>s.isLoading.value),u=ee(()=>r.isLoading.value),c=ee(()=>o.isLoading.value);async function d(){return a.execute(async $=>{var S,C;const y=await zn.list({signal:$});return y.ok&&(e.value=((C=(S=y.data)==null?void 0:S.data)==null?void 0:C.firmwares)||[]),y})}async function f(){return r.execute(async()=>{const $=await zn.refresh();return $.ok&&await d(),$})}async function _($){return s.execute(async y=>{var C,L;const S=await zn.detail($,{signal:y});return S.ok&&(t.value=((L=(C=S.data)==null?void 0:C.data)==null?void 0:L.firmware)||null),S})}async function g($){return o.execute(async y=>{var C,L,P,E;const S=await zn.deviceCompatibility($,{signal:y});return S.ok&&(n.value={compatible:((L=(C=S.data)==null?void 0:C.data)==null?void 0:L.compatible)||[],currentVersion:((E=(P=S.data)==null?void 0:P.data)==null?void 0:E.current_version)||"unknown"}),S})}async function m($,y){return r.execute(async()=>zn.updateDeviceFirmware($,y))}function h(){n.value=null}return{firmwares:e,current:t,compatibility:n,isLoadingList:i,isLoadingDetail:l,isUpdating:u,isLoadingCompatibility:c,loadFirmwares:d,refreshFirmwares:f,loadFirmwareDetail:_,loadDeviceCompatibility:g,updateDeviceFirmware:m,clearCompatibility:h}}),Wg={class:"page"},Jg={key:2},Yg={class:"device-meta"},Xg={class:"script-info-panel"},Zg={class:"info-row"},Qg={class:"info-value"},eh={class:"info-row"},th={class:"info-value"},nh={class:"info-row"},ah={class:"info-value"},sh={class:"info-row"},rh={class:"info-value"},ih={class:"info-row"},oh={class:"info-value"},lh={class:"info-row"},uh={class:"info-value"},ch={class:"info-row"},dh={class:"info-value"},fh={key:0,class:"info-row"},ph=["title"],vh={key:1,class:"info-row"},gh={class:"info-value"},hh={key:0,class:"devices-panel"},mh={key:1,class:"devices-panel"},yh={class:"form-group"},_h={class:"form-group"},bh={class:"form-group"},wh={key:0,class:"form-group"},Sh={key:0,class:"form-group"},kh={key:0,class:"form-group"},Ah={key:0,class:"form-group"},xh={key:0,class:"form-group"},Ch={key:0,class:"form-group"},Eh={class:"firmware-options"},Rh=["onClick"],$h={class:"fw-version"},Th={key:0,class:"fw-desc"},Ph={key:0,class:"form-group"},Ih={__name:"DeviceDetailPage",setup(e){const t=as(),n=en(),a=os(),s=kt(),r=jl(),o=wn(),i=jt(),{areaOptions:l,showAssignModal:u,selectedAreaId:c,assignLoading:d,assignError:f,openAssign:_,submitAssignCore:g}=Er(),m=ee(()=>t.params.id),h=ee(()=>a.currentDevice),$=ee(()=>a.isLoadingDetail),y=ee(()=>a.errorDetail),S=K(!1),C=K(null),L=ee(()=>{var D;const ie=(D=h.value)==null?void 0:D.area_id;return ie&&s.areasById[String(ie)]||null}),P=K(!1),E=K(!1),T=K(""),w=Zt({name:"",description:"",alias:""}),X=K(!1),oe=K(""),fe=K(!1),ge=K(""),B=K(!1),J=K(""),Q=K(!1),Y=K(""),te=K(!1),ve=K(""),ke=K(!1),Pe=K(""),be=K(!1),Ge=K(""),Ue=K(!1),De=K(""),Oe=K(!1),M=K(null),se=K(""),H=ee(()=>{var ie,D;return(((D=(ie=r.compatibility)==null?void 0:ie.compatible)==null?void 0:D.length)||0)>0}),F=ee(()=>{var ie;return((ie=r.compatibility)==null?void 0:ie.compatible)||[]}),V=ee(()=>{var D,Le;const ie=[];return i.has("devices.edit")&&(ie.push({label:"Edit",icon:"ph-pencil",onSelect:p}),(D=h.value)!=null&&D.area_id?ie.push({label:"Change area",icon:"ph-map-pin",onSelect:A},{label:"Unassign from area",icon:"ph-x-circle",onSelect:W}):ie.push({label:"Assign to area",icon:"ph-map-pin",onSelect:A})),i.has("devices.setup")&&ie.push({label:"ReSetup",icon:"ph-gear",onSelect:Z}),i.has("devices.control")&&ie.push({label:"Reboot",icon:"ph-arrow-clockwise",disabled:a.isRebooting((Le=h.value)==null?void 0:Le.id),onSelect:ae}),i.has("devices.edit")&&ie.push({label:"Reset",icon:"ph-x",danger:!0,onSelect:ue}),i.has("devices.delete")&&ie.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:le}),ie});function p(){h.value&&(w.name=h.value.name||"",w.description=h.value.description||"",w.alias=h.value.alias||"",T.value="",P.value=!0)}async function b(){var et,he,Je,Ke;E.value=!0,T.value="";const ie=m.value,D=await Promise.all([w.name!==((et=h.value)==null?void 0:et.name)?a.updateDeviceName(ie,w.name):{ok:!0},w.description!==((he=h.value)==null?void 0:he.description)?a.updateDeviceDescription(ie,w.description):{ok:!0},w.alias!==((Je=h.value)==null?void 0:Je.alias)?a.updateDeviceAlias(ie,w.alias):{ok:!0}]);E.value=!1;const Le=D.find(Vn=>!Vn.ok);if(Le){T.value=((Ke=Le.error)==null?void 0:Ke.message)||"Failed to update device";return}P.value=!1,o.success({title:"Updated",text:"Device updated successfully"})}function A(){var ie;_((ie=h.value)==null?void 0:ie.area_id)}async function j(){const ie=await g(m.value,a.assignToArea.bind(a));ie!=null&&ie.ok&&o.success({title:"Assigned",text:"Device assigned to area successfully"})}function W(){h.value&&(J.value=`Are you sure you want to unassign device "${h.value.name||h.value.alias}" from its area?`,Y.value="",B.value=!0)}async function z(){var D;if(!h.value)return;Q.value=!0,Y.value="";const ie=await a.unassignDevice(m.value);if(Q.value=!1,!ie.ok){Y.value=((D=ie.error)==null?void 0:D.message)||"Failed to unassign device";return}B.value=!1,o.success({title:"Unassigned",text:"Device unassigned from area successfully"})}function le(){h.value&&(oe.value=`Are you sure you want to remove device "${h.value.name||h.value.alias}"?`,ge.value="",X.value=!0)}async function re(){var Le;const ie=m.value;fe.value=!0,ge.value="";const D=await a.removeDevice(ie);if(fe.value=!1,!D.ok){ge.value=((Le=D.error)==null?void 0:Le.message)||"Failed to remove device";return}X.value=!1,o.success({title:"Removed",text:"Device removed successfully"}),n.push({name:"devices"})}async function ae(){var D;if(!h.value)return;const ie=await a.rebootDevice(h.value.id);ie.ok?o.success({title:"Rebooting",text:`Device ${h.value.name||h.value.alias||"#"+h.value.id} is rebooting`}):o.error({title:"Reboot failed",text:((D=ie.error)==null?void 0:D.message)||"Failed to reboot device"})}function Z(){h.value&&(ve.value=`Are you sure you want to repeat setup for device "${h.value.name||h.value.alias}"?`,Pe.value="",te.value=!0)}async function pe(){var Le,et,he;const ie=m.value;ke.value=!0,Pe.value="";const D=await a.resetupDevice(ie);if(ke.value=!1,!D.ok){Pe.value=((Le=D.error)==null?void 0:Le.message)||"Failed to repeat device setup";return}te.value=!1,o.success({title:"Success",text:`Device ${((et=h.value)==null?void 0:et.name)||((he=h.value)==null?void 0:he.alias)||"#"+ie} setup repeated`}),n.push({name:"devices"})}function ue(){h.value&&(Ge.value=`Are you sure you want to reset device "${h.value.name||h.value.alias}"?`,De.value="",be.value=!0)}async function ce(){var Le,et,he;const ie=m.value;Ue.value=!0,De.value="";const D=await a.resetDevice(ie);if(Ue.value=!1,!D.ok){De.value=((Le=D.error)==null?void 0:Le.message)||"Failed to reset device";return}be.value=!1,o.success({title:"Success",text:`Device ${((et=h.value)==null?void 0:et.name)||((he=h.value)==null?void 0:he.alias)||"#"+ie} reset`}),n.push({name:"devices"})}function me(){var ie;M.value=((ie=F.value[0])==null?void 0:ie.id)||null,se.value="",Oe.value=!0}async function Se(){var D;if(!M.value||!h.value)return;const ie=await r.updateDeviceFirmware(h.value.id,M.value);if(!ie.ok){se.value=((D=ie.error)==null?void 0:D.message)||"Firmware update failed";return}Oe.value=!1,o.success({title:"Updated",text:"Firmware update pushed successfully"}),await a.loadDeviceDetail(m.value)}function $e(ie){return{active:"success",removed:"danger",freezed:"warning",setup:"primary"}[ie]||"secondary"}async function Ie(){const ie=m.value;if(!ie||!h.value||h.value.connection_status!=="active")return;S.value=!0,C.value=null;const D=await a.loadDeviceStatus(ie);S.value=!1,D.ok||(C.value=D.error)}async function Be(){var D;const ie=m.value;ie&&(s.areas.length===0&&await s.loadAreas(),await a.loadDeviceDetail(ie),((D=h.value)==null?void 0:D.connection_status)==="active"&&(await Ie(),await r.loadDeviceCompatibility(ie)))}return bt(()=>{Be()}),ha(()=>{a.clearDeviceDetail(),r.clearCompatibility()}),wt(()=>t.params.id,(ie,D)=>{ie!==D&&(a.clearDeviceDetail(),Be())}),(ie,D)=>{var Le,et;return k(),G("section",Wg,[$.value?(k(),q(St,{key:0,text:"Loading device details"})):y.value?(k(),q(pt,{key:1,title:"Device loading failed",error:y.value,retry:Be},null,8,["error"])):h.value?(k(),G("div",Jg,[R(v(Tt),{title:h.value.name||h.value.alias||`Device #${h.value.id}`,kicker:"Device"},{actions:x(()=>[R(Tr,{items:V.value},null,8,["items"])]),_:1},8,["title"]),I("div",Yg,[R(v(ye),{variant:h.value.connection_status==="active"?"success":"danger"},{default:x(()=>[N(O(h.value.connection_status==="active"?"Online":"Offline"),1)]),_:1},8,["variant"]),I("code",null,O(h.value.alias),1),R(Rr,{area:L.value,areaId:h.value.area_id},null,8,["area","areaId"])]),I("div",Xg,[I("div",Zg,[D[18]||(D[18]=I("span",{class:"info-label text-muted"},"System status:",-1)),I("span",Qg,[R(v(ye),{variant:$e(h.value.status)},{default:x(()=>[N(O(h.value.status),1)]),_:1},8,["variant"])])]),I("div",eh,[D[19]||(D[19]=I("span",{class:"info-label text-muted"},"Type:",-1)),I("span",th,O(h.value.device_type),1)]),I("div",nh,[D[20]||(D[20]=I("span",{class:"info-label text-muted"},"State:",-1)),I("span",ah,[R(Fl,{"device-type":h.value.device_type,response:(Le=v(a).currentDeviceStatus)==null?void 0:Le.raw,loading:S.value,error:(et=C.value)==null?void 0:et.message,"connection-status":h.value.connection_status},null,8,["device-type","response","loading","error","connection-status"])])]),I("div",sh,[D[21]||(D[21]=I("span",{class:"info-label text-muted"},"IP:",-1)),I("span",rh,O(h.value.device_ip),1)]),I("div",ih,[D[22]||(D[22]=I("span",{class:"info-label text-muted"},"MAC:",-1)),I("span",oh,O(h.value.device_mac),1)]),I("div",lh,[D[23]||(D[23]=I("span",{class:"info-label text-muted"},"Hard ID:",-1)),I("span",uh,O(h.value.device_hard_id),1)]),I("div",ch,[D[24]||(D[24]=I("span",{class:"info-label text-muted"},"Firmware:",-1)),I("span",dh,O(h.value.firmware_version),1)]),h.value.last_contact?(k(),G("div",fh,[D[25]||(D[25]=I("span",{class:"info-label text-muted"},"Last contact:",-1)),I("span",{class:"info-value",title:v(Ys)(h.value.last_contact)},O(v(Dl)(h.value.last_contact)),9,ph)])):ne("",!0),h.value.create_at?(k(),G("div",vh,[D[26]||(D[26]=I("span",{class:"info-label text-muted"},"Created:",-1)),I("span",gh,O(v(Ys)(h.value.create_at)),1)])):ne("",!0)]),R($r,{item:h.value,emptyMessage:"This device is not assigned to any area.",onAssign:A},{action:x(()=>[v(i).has("devices.edit")?(k(),q(v(de),{key:0,variant:"primary",icon:"ph-map-pin",onClick:A},{default:x(()=>{var he;return[N(O((he=h.value)!=null&&he.area_id?"Change area":"Assign to area"),1)]}),_:1})):ne("",!0)]),_:1},8,["item"]),H.value&&v(i).has("firmware.upload")?(k(),G("div",hh,[D[29]||(D[29]=I("div",{class:"block-title"},"Firmware Update",-1)),R(v(Ze),{variant:"info"},{default:x(()=>[D[27]||(D[27]=N(" New firmware available: ",-1)),(k(!0),G(xe,null,Rt(F.value,he=>(k(),q(v(ye),{key:he.id,variant:"success"},{default:x(()=>[N(O(he.version),1)]),_:2},1024))),128))]),_:1}),R(v(de),{variant:"primary",icon:"ph-cloud-arrow-down",onClick:me},{default:x(()=>[...D[28]||(D[28]=[N(" Update Firmware ",-1)])]),_:1})])):ne("",!0),h.value.description?(k(),G("div",mh,[D[30]||(D[30]=I("div",{class:"block-title"},"Description",-1)),I("p",null,O(h.value.description),1)])):ne("",!0)])):(k(),q(it,{key:3,title:"Device not found",message:"The requested device does not exist."})),R(v(tt),{open:P.value,title:"Edit device","onUpdate:open":D[4]||(D[4]=he=>P.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[3]||(D[3]=he=>P.value=!1)},{default:x(()=>[...D[31]||(D[31]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:E.value,onClick:b},{default:x(()=>[...D[32]||(D[32]=[N(" Save ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("div",yh,[R(v(yt),{modelValue:w.name,"onUpdate:modelValue":D[0]||(D[0]=he=>w.name=he),label:"Name"},null,8,["modelValue"])]),I("div",_h,[R(v(yt),{modelValue:w.description,"onUpdate:modelValue":D[1]||(D[1]=he=>w.description=he),label:"Description"},null,8,["modelValue"])]),I("div",bh,[R(v(yt),{modelValue:w.alias,"onUpdate:modelValue":D[2]||(D[2]=he=>w.alias=he),label:"Alias"},null,8,["modelValue"])]),T.value?(k(),G("div",wh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(T.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:v(u),title:"Assign to area","onUpdate:open":D[7]||(D[7]=he=>u.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[6]||(D[6]=he=>u.value=!1)},{default:x(()=>[...D[33]||(D[33]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:v(d),onClick:j},{default:x(()=>[...D[34]||(D[34]=[N(" Assign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[R(v(rs),{modelValue:v(c),"onUpdate:modelValue":D[5]||(D[5]=he=>Ve(c)?c.value=he:null),label:"Area",options:v(l),icon:"ph-map-trifold"},null,8,["modelValue","options"]),v(f)?(k(),G("div",Sh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(v(f)),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:B.value,title:"Unassign from area","onUpdate:open":D[9]||(D[9]=he=>B.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[8]||(D[8]=he=>B.value=!1)},{default:x(()=>[...D[35]||(D[35]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"warning",icon:"ph-x-circle",loading:Q.value,onClick:z},{default:x(()=>[...D[36]||(D[36]=[N(" Unassign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(J.value),1),Y.value?(k(),G("div",kh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(Y.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:X.value,title:"Remove device","onUpdate:open":D[11]||(D[11]=he=>X.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[10]||(D[10]=he=>X.value=!1)},{default:x(()=>[...D[37]||(D[37]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"danger",icon:"ph-trash",loading:fe.value,onClick:re},{default:x(()=>[...D[38]||(D[38]=[N(" Remove ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(oe.value),1),ge.value?(k(),G("div",Ah,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(ge.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:te.value,title:"Repeat device setup","onUpdate:open":D[13]||(D[13]=he=>te.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[12]||(D[12]=he=>te.value=!1)},{default:x(()=>[...D[39]||(D[39]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-gear",loading:ke.value,onClick:pe},{default:x(()=>[...D[40]||(D[40]=[N(" ReSetup ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(ve.value),1),Pe.value?(k(),G("div",xh,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(Pe.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:be.value,title:"Reset device","onUpdate:open":D[15]||(D[15]=he=>be.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[14]||(D[14]=he=>be.value=!1)},{default:x(()=>[...D[41]||(D[41]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"danger",icon:"ph-x",loading:Ue.value,onClick:ce},{default:x(()=>[...D[42]||(D[42]=[N(" Reset ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(Ge.value),1),De.value?(k(),G("div",Ch,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(De.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:Oe.value,title:"Update Firmware","onUpdate:open":D[17]||(D[17]=he=>Oe.value=he)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:D[16]||(D[16]=he=>Oe.value=!1)},{default:x(()=>[...D[45]||(D[45]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:v(r).isUpdating,disabled:!M.value,onClick:Se},{default:x(()=>[...D[46]||(D[46]=[N(" Update ",-1)])]),_:1},8,["loading","disabled"])]),default:x(()=>{var he,Je;return[I("p",null,[D[43]||(D[43]=N("Select firmware to install on ",-1)),I("strong",null,O(((he=h.value)==null?void 0:he.name)||((Je=h.value)==null?void 0:Je.alias)),1),D[44]||(D[44]=N(":",-1))]),I("div",Eh,[(k(!0),G(xe,null,Rt(F.value,Ke=>(k(),G("div",{key:Ke.id,class:Ct(["firmware-option",{active:M.value===Ke.id}]),onClick:Vn=>M.value=Ke.id},[I("div",$h,O(Ke.version),1),Ke.description?(k(),G("div",Th,O(Ke.description),1)):ne("",!0)],10,Rh))),128))]),se.value?(k(),G("div",Ph,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(se.value),1)]),_:1})])):ne("",!0)]}),_:1},8,["open"])])}}},Lh=ze(Ih,[["__scopeId","data-v-a9f83185"]]),Dh={class:"page"},Oh={__name:"ScriptsActionsPage",setup(e){const t=Sn(),n=kt();return bt(()=>{t.loadActions(),n.areas.length===0&&n.loadAreas()}),(a,s)=>(k(),G("section",Dh,[R(v(Tt),{title:"Actions",kicker:"Scripts"},{actions:x(()=>[R(v(ye),{variant:"primary"},{default:x(()=>[N(O(v(t).totalActions)+" scripts",1)]),_:1})]),_:1}),v(t).isLoadingActions?(k(),q(St,{key:0,text:"Loading actions"})):v(t).errorActions?(k(),q(pt,{key:1,title:"Actions loading failed",error:v(t).errorActions,retry:v(t).loadActions},null,8,["error","retry"])):v(t).actions.length===0?(k(),q(it,{key:2,title:"No action scripts",message:"No action scripts registered."})):(k(),q(Vl,{key:3,scripts:v(t).actions,"show-area-badge":""},null,8,["scripts"]))]))}},Fh=ze(Oh,[["__scopeId","data-v-f336617a"]]),Nh={class:"page"},Mh={key:3,class:"devices-panel"},Uh={__name:"ScriptsRegularPage",setup(e){const t=Sn(),n=kt();return bt(()=>{t.loadRegular(),n.areas.length===0&&n.loadAreas()}),(a,s)=>(k(),G("section",Nh,[R(v(Tt),{title:"Regular",kicker:"Scripts"},{actions:x(()=>[R(v(ye),{variant:"primary"},{default:x(()=>[N(O(v(t).totalRegular)+" scripts",1)]),_:1})]),_:1}),v(t).isLoadingRegular?(k(),q(St,{key:0,text:"Loading regular scripts"})):v(t).errorRegular?(k(),q(pt,{key:1,title:"Regular scripts loading failed",error:v(t).errorRegular,retry:v(t).loadRegular},null,8,["error","retry"])):v(t).regular.length===0?(k(),q(it,{key:2,title:"No regular scripts",message:"No regular scripts registered."})):(k(),G("div",Mh,[R(Ml,{scripts:v(t).regular,scriptType:"regular",showArea:!0,showScope:!0,showFilename:!0,showActions:!0,caption:"Regular scripts"},null,8,["scripts"])]))]))}},Vh={class:"page"},jh={key:3,class:"devices-panel"},Bh={__name:"ScriptsScopesPage",setup(e){en();const t=Sn(),n=jt(),a=[{key:"name",label:"Name"},{key:"filename",label:"File"},{key:"state",label:"State"},{key:"path",label:"Path"},{key:"actions",label:"Actions"}];function s(r,o){t.setScopeState(r,o)}return bt(()=>{t.loadScopes()}),(r,o)=>{const i=cn("router-link");return k(),G("section",Vh,[R(v(Tt),{title:"Scopes",kicker:"Scripts"},{actions:x(()=>[R(v(ye),{variant:"primary"},{default:x(()=>[N(O(v(t).totalScopes)+" scopes",1)]),_:1})]),_:1}),v(t).isLoadingScopes?(k(),q(St,{key:0,text:"Loading scopes"})):v(t).errorScopes?(k(),q(pt,{key:1,title:"Scopes loading failed",error:v(t).errorScopes,retry:v(t).loadScopes},null,8,["error","retry"])):v(t).scopes.length===0?(k(),q(it,{key:2,title:"No scopes",message:"No script scopes registered."})):(k(),G("div",jh,[R(v(Nn),{columns:a,rows:v(t).scopes,caption:"Script scopes"},{"cell-name":x(({row:l})=>[R(i,{to:{name:"script-detail",params:{type:"scopes",id:l.name}},class:"script-link"},{default:x(()=>[N(O(l.name),1)]),_:2},1032,["to"])]),"cell-state":x(({row:l})=>[R(v(ye),{variant:l.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(l.state),1)]),_:2},1032,["variant"])]),"cell-actions":x(({row:l})=>[l.state==="enabled"&&v(n).has("scripts.edit")?(k(),q(v(de),{key:0,variant:"secondary",icon:"ph-pause",onClick:u=>s(l.name,!1)},{default:x(()=>[...o[0]||(o[0]=[N(" Disable ",-1)])]),_:1},8,["onClick"])):v(n).has("scripts.edit")?(k(),q(v(de),{key:1,variant:"primary",icon:"ph-play",onClick:u=>s(l.name,!0)},{default:x(()=>[...o[1]||(o[1]=[N(" Enable ",-1)])]),_:1},8,["onClick"])):ne("",!0)]),_:1},8,["rows"])]))])}}},Hh=ze(Bh,[["__scopeId","data-v-c8486788"]]);var ji=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Gh(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Es={exports:{}},Bi;function qh(){return Bi||(Bi=1,(function(e){var t=typeof window<"u"?window:typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope?self:{};/** + * Prism: Lightweight, robust, elegant syntax highlighting + * + * @license MIT + * @author Lea Verou + * @namespace + * @public + */var n=(function(a){var s=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,r=0,o={},i={manual:a.Prism&&a.Prism.manual,disableWorkerMessageHandler:a.Prism&&a.Prism.disableWorkerMessageHandler,util:{encode:function y(S){return S instanceof l?new l(S.type,y(S.content),S.alias):Array.isArray(S)?S.map(y):S.replace(/&/g,"&").replace(/"u")return null;if(document.currentScript&&document.currentScript.tagName==="SCRIPT")return document.currentScript;try{throw new Error}catch(L){var y=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(L.stack)||[])[1];if(y){var S=document.getElementsByTagName("script");for(var C in S)if(S[C].src==y)return S[C]}return null}},isActive:function(y,S,C){for(var L="no-"+S;y;){var P=y.classList;if(P.contains(S))return!0;if(P.contains(L))return!1;y=y.parentElement}return!!C}},languages:{plain:o,plaintext:o,text:o,txt:o,extend:function(y,S){var C=i.util.clone(i.languages[y]);for(var L in S)C[L]=S[L];return C},insertBefore:function(y,S,C,L){L=L||i.languages;var P=L[y],E={};for(var T in P)if(P.hasOwnProperty(T)){if(T==S)for(var w in C)C.hasOwnProperty(w)&&(E[w]=C[w]);C.hasOwnProperty(T)||(E[T]=P[T])}var X=L[y];return L[y]=E,i.languages.DFS(i.languages,function(oe,fe){fe===X&&oe!=y&&(this[oe]=E)}),E},DFS:function y(S,C,L,P){P=P||{};var E=i.util.objId;for(var T in S)if(S.hasOwnProperty(T)){C.call(S,T,S[T],L||T);var w=S[T],X=i.util.type(w);X==="Object"&&!P[E(w)]?(P[E(w)]=!0,y(w,C,null,P)):X==="Array"&&!P[E(w)]&&(P[E(w)]=!0,y(w,C,T,P))}}},plugins:{},highlightAll:function(y,S){i.highlightAllUnder(document,y,S)},highlightAllUnder:function(y,S,C){var L={callback:C,container:y,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};i.hooks.run("before-highlightall",L),L.elements=Array.prototype.slice.apply(L.container.querySelectorAll(L.selector)),i.hooks.run("before-all-elements-highlight",L);for(var P=0,E;E=L.elements[P++];)i.highlightElement(E,S===!0,L.callback)},highlightElement:function(y,S,C){var L=i.util.getLanguage(y),P=i.languages[L];i.util.setLanguage(y,L);var E=y.parentElement;E&&E.nodeName.toLowerCase()==="pre"&&i.util.setLanguage(E,L);var T=y.textContent,w={element:y,language:L,grammar:P,code:T};function X(fe){w.highlightedCode=fe,i.hooks.run("before-insert",w),w.element.innerHTML=w.highlightedCode,i.hooks.run("after-highlight",w),i.hooks.run("complete",w),C&&C.call(w.element)}if(i.hooks.run("before-sanity-check",w),E=w.element.parentElement,E&&E.nodeName.toLowerCase()==="pre"&&!E.hasAttribute("tabindex")&&E.setAttribute("tabindex","0"),!w.code){i.hooks.run("complete",w),C&&C.call(w.element);return}if(i.hooks.run("before-highlight",w),!w.grammar){X(i.util.encode(w.code));return}if(S&&a.Worker){var oe=new Worker(i.filename);oe.onmessage=function(fe){X(fe.data)},oe.postMessage(JSON.stringify({language:w.language,code:w.code,immediateClose:!0}))}else X(i.highlight(w.code,w.grammar,w.language))},highlight:function(y,S,C){var L={code:y,grammar:S,language:C};if(i.hooks.run("before-tokenize",L),!L.grammar)throw new Error('The language "'+L.language+'" has no grammar.');return L.tokens=i.tokenize(L.code,L.grammar),i.hooks.run("after-tokenize",L),l.stringify(i.util.encode(L.tokens),L.language)},tokenize:function(y,S){var C=S.rest;if(C){for(var L in C)S[L]=C[L];delete S.rest}var P=new d;return f(P,P.head,y),c(y,P,S,P.head,0),g(P)},hooks:{all:{},add:function(y,S){var C=i.hooks.all;C[y]=C[y]||[],C[y].push(S)},run:function(y,S){var C=i.hooks.all[y];if(!(!C||!C.length))for(var L=0,P;P=C[L++];)P(S)}},Token:l};a.Prism=i;function l(y,S,C,L){this.type=y,this.content=S,this.alias=C,this.length=(L||"").length|0}l.stringify=function y(S,C){if(typeof S=="string")return S;if(Array.isArray(S)){var L="";return S.forEach(function(X){L+=y(X,C)}),L}var P={type:S.type,content:y(S.content,C),tag:"span",classes:["token",S.type],attributes:{},language:C},E=S.alias;E&&(Array.isArray(E)?Array.prototype.push.apply(P.classes,E):P.classes.push(E)),i.hooks.run("wrap",P);var T="";for(var w in P.attributes)T+=" "+w+'="'+(P.attributes[w]||"").replace(/"/g,""")+'"';return"<"+P.tag+' class="'+P.classes.join(" ")+'"'+T+">"+P.content+""};function u(y,S,C,L){y.lastIndex=S;var P=y.exec(C);if(P&&L&&P[1]){var E=P[1].length;P.index+=E,P[0]=P[0].slice(E)}return P}function c(y,S,C,L,P,E){for(var T in C)if(!(!C.hasOwnProperty(T)||!C[T])){var w=C[T];w=Array.isArray(w)?w:[w];for(var X=0;X=E.reach);ve+=te.value.length,te=te.next){var ke=te.value;if(S.length>y.length)return;if(!(ke instanceof l)){var Pe=1,be;if(B){if(be=u(Y,ve,y,ge),!be||be.index>=y.length)break;var Oe=be.index,Ge=be.index+be[0].length,Ue=ve;for(Ue+=te.value.length;Oe>=Ue;)te=te.next,Ue+=te.value.length;if(Ue-=te.value.length,ve=Ue,te.value instanceof l)continue;for(var De=te;De!==S.tail&&(UeE.reach&&(E.reach=F);var V=te.prev;se&&(V=f(S,V,se),ve+=se.length),_(S,V,Pe);var p=new l(T,fe?i.tokenize(M,fe):M,J,M);if(te=f(S,V,p),H&&f(S,te,H),Pe>1){var b={cause:T+","+X,reach:F};c(y,S,C,te.prev,ve,b),E&&b.reach>E.reach&&(E.reach=b.reach)}}}}}}function d(){var y={value:null,prev:null,next:null},S={value:null,prev:y,next:null};y.next=S,this.head=y,this.tail=S,this.length=0}function f(y,S,C){var L=S.next,P={value:C,prev:S,next:L};return S.next=P,L.prev=P,y.length++,P}function _(y,S,C){for(var L=S.next,P=0;P/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern://i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},n.languages.markup.tag.inside["attr-value"].inside.entity=n.languages.markup.entity,n.languages.markup.doctype.inside["internal-subset"].inside=n.languages.markup,n.hooks.add("wrap",function(a){a.type==="entity"&&(a.attributes.title=a.content.replace(/&/,"&"))}),Object.defineProperty(n.languages.markup.tag,"addInlined",{value:function(s,r){var o={};o["language-"+r]={pattern:/(^$)/i,lookbehind:!0,inside:n.languages[r]},o.cdata=/^$/i;var i={"included-cdata":{pattern://i,inside:o}};i["language-"+r]={pattern:/[\s\S]+/,inside:n.languages[r]};var l={};l[s]={pattern:RegExp(/(<__[^>]*>)(?:))*\]\]>|(?!)/.source.replace(/__/g,function(){return s}),"i"),lookbehind:!0,greedy:!0,inside:i},n.languages.insertBefore("markup","cdata",l)}}),Object.defineProperty(n.languages.markup.tag,"addAttribute",{value:function(a,s){n.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+a+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[s,"language-"+s],inside:n.languages[s]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),n.languages.html=n.languages.markup,n.languages.mathml=n.languages.markup,n.languages.svg=n.languages.markup,n.languages.xml=n.languages.extend("markup",{}),n.languages.ssml=n.languages.xml,n.languages.atom=n.languages.xml,n.languages.rss=n.languages.xml,(function(a){var s=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;a.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:RegExp("@[\\w-](?:"+/[^;{\s"']|\s+(?!\s)/.source+"|"+s.source+")*?"+/(?:;|(?=\s*\{))/.source),inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+s.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+s.source+"$"),alias:"url"}}},selector:{pattern:RegExp(`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|`+s.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:s,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},a.languages.css.atrule.inside.rest=a.languages.css;var r=a.languages.markup;r&&(r.tag.addInlined("style","css"),r.tag.addAttribute("style","css"))})(n),n.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},n.languages.javascript=n.languages.extend("clike",{"class-name":[n.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+(/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|"+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source)+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),n.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,n.languages.insertBefore("javascript","keyword",{regex:{pattern:RegExp(/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)/.source+/\//.source+"(?:"+/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}/.source+"|"+/(?:\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.)*\])*\])*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}v[dgimyus]{0,7}/.source+")"+/(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/.source),lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:n.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:n.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:n.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:n.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:n.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),n.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:n.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),n.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),n.languages.markup&&(n.languages.markup.tag.addInlined("script","javascript"),n.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),n.languages.js=n.languages.javascript,(function(){if(typeof n>"u"||typeof document>"u")return;Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector);var a="Loading…",s=function(m,h){return"✖ Error "+m+" while fetching file: "+h},r="✖ Error: File does not exist or is empty",o={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"},i="data-src-status",l="loading",u="loaded",c="failed",d="pre[data-src]:not(["+i+'="'+u+'"]):not(['+i+'="'+l+'"])';function f(m,h,$){var y=new XMLHttpRequest;y.open("GET",m,!0),y.onreadystatechange=function(){y.readyState==4&&(y.status<400&&y.responseText?h(y.responseText):y.status>=400?$(s(y.status,y.statusText)):$(r))},y.send(null)}function _(m){var h=/^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(m||"");if(h){var $=Number(h[1]),y=h[2],S=h[3];return y?S?[$,Number(S)]:[$,void 0]:[$,$]}}n.hooks.add("before-highlightall",function(m){m.selector+=", "+d}),n.hooks.add("before-sanity-check",function(m){var h=m.element;if(h.matches(d)){m.code="",h.setAttribute(i,l);var $=h.appendChild(document.createElement("CODE"));$.textContent=a;var y=h.getAttribute("data-src"),S=m.language;if(S==="none"){var C=(/\.(\w+)$/.exec(y)||[,"none"])[1];S=o[C]||C}n.util.setLanguage($,S),n.util.setLanguage(h,S);var L=n.plugins.autoloader;L&&L.loadLanguages(S),f(y,function(P){h.setAttribute(i,u);var E=_(h.getAttribute("data-range"));if(E){var T=P.split(/\r\n?|\n/g),w=E[0],X=E[1]==null?T.length:E[1];w<0&&(w+=T.length),w=Math.max(0,Math.min(w-1,T.length)),X<0&&(X+=T.length),X=Math.max(0,Math.min(X,T.length)),P=T.slice(w,X).join(` +`),h.hasAttribute("data-start")||h.setAttribute("data-start",String(w+1))}$.textContent=P,n.highlightElement($)},function(P){h.setAttribute(i,c),$.textContent=P})}}),n.plugins.fileHighlight={highlight:function(h){for(var $=(h||document).querySelectorAll(d),y=0,S;S=$[y++];)n.highlightElement(S)}};var g=!1;n.fileHighlight=function(){g||(console.warn("Prism.fileHighlight is deprecated. Use `Prism.plugins.fileHighlight.highlight` instead."),g=!0),n.plugins.fileHighlight.highlight.apply(this,arguments)}})()})(Es)),Es.exports}var zh=qh();const Hi=Gh(zh);(function(e){function t(n,a){return"___"+n.toUpperCase()+a+"___"}Object.defineProperties(e.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,a,s,r){if(n.language===a){var o=n.tokenStack=[];n.code=n.code.replace(s,function(i){if(typeof r=="function"&&!r(i))return i;for(var l=o.length,u;n.code.indexOf(u=t(a,l))!==-1;)++l;return o[l]=i,u}),n.grammar=e.languages.markup}}},tokenizePlaceholders:{value:function(n,a){if(n.language!==a||!n.tokenStack)return;n.grammar=e.languages[a];var s=0,r=Object.keys(n.tokenStack);function o(i){for(var l=0;l=r.length);l++){var u=i[l];if(typeof u=="string"||u.content&&typeof u.content=="string"){var c=r[s],d=n.tokenStack[c],f=typeof u=="string"?u:u.content,_=t(a,c),g=f.indexOf(_);if(g>-1){++s;var m=f.substring(0,g),h=new e.Token(a,e.tokenize(d,n.grammar),"language-"+a,d),$=f.substring(g+_.length),y=[];m&&y.push.apply(y,o([m])),y.push(h),$&&y.push.apply(y,o([$])),typeof u=="string"?i.splice.apply(i,[l,1].concat(y)):u.content=y}}else u.content&&o(u.content)}return i}o(n.tokens)}}})})(Prism);var Gi={},qi;function Kh(){return qi||(qi=1,(function(e){var t=/\/\*[\s\S]*?\*\/|\/\/.*|#(?!\[).*/,n=[{pattern:/\b(?:false|true)\b/i,alias:"boolean"},{pattern:/(::\s*)\b[a-z_]\w*\b(?!\s*\()/i,greedy:!0,lookbehind:!0},{pattern:/(\b(?:case|const)\s+)\b[a-z_]\w*(?=\s*[;=])/i,greedy:!0,lookbehind:!0},/\b(?:null)\b/i,/\b[A-Z_][A-Z0-9_]*\b(?!\s*\()/],a=/\b0b[01]+(?:_[01]+)*\b|\b0o[0-7]+(?:_[0-7]+)*\b|\b0x[\da-f]+(?:_[\da-f]+)*\b|(?:\b\d+(?:_\d+)*\.?(?:\d+(?:_\d+)*)?|\B\.\d+)(?:e[+-]?\d+)?/i,s=/|\?\?=?|\.{3}|\??->|[!=]=?=?|::|\*\*=?|--|\+\+|&&|\|\||<<|>>|[?~]|[/^|%*&<>.+-]=?/,r=/[{}\[\](),:;]/;e.languages.php={delimiter:{pattern:/\?>$|^<\?(?:php(?=\s)|=)?/i,alias:"important"},comment:t,variable:/\$+(?:\w+\b|(?=\{))/,package:{pattern:/(namespace\s+|use\s+(?:function\s+)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,lookbehind:!0,inside:{punctuation:/\\/}},"class-name-definition":{pattern:/(\b(?:class|enum|interface|trait)\s+)\b[a-z_]\w*(?!\\)\b/i,lookbehind:!0,alias:"class-name"},"function-definition":{pattern:/(\bfunction\s+)[a-z_]\w*(?=\s*\()/i,lookbehind:!0,alias:"function"},keyword:[{pattern:/(\(\s*)\b(?:array|bool|boolean|float|int|integer|object|string)\b(?=\s*\))/i,alias:"type-casting",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|object|self|static|string)\b(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|never|object|self|static|string|void)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/\b(?:array(?!\s*\()|bool|float|int|iterable|mixed|object|string|void)\b/i,alias:"type-declaration",greedy:!0},{pattern:/(\|\s*)(?:false|null)\b|\b(?:false|null)(?=\s*\|)/i,alias:"type-declaration",greedy:!0,lookbehind:!0},{pattern:/\b(?:parent|self|static)(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(\byield\s+)from\b/i,lookbehind:!0},/\bclass\b/i,{pattern:/((?:^|[^\s>:]|(?:^|[^-])>|(?:^|[^:]):)\s*)\b(?:abstract|and|array|as|break|callable|case|catch|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|enum|eval|exit|extends|final|finally|fn|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|match|namespace|never|new|or|parent|print|private|protected|public|readonly|require|require_once|return|self|static|switch|throw|trait|try|unset|use|var|while|xor|yield|__halt_compiler)\b/i,lookbehind:!0}],"argument-name":{pattern:/([(,]\s*)\b[a-z_]\w*(?=\s*:(?!:))/i,lookbehind:!0},"class-name":[{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self|\s+static))\s+|\bcatch\s*\()\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/(\|\s*)\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/\b[a-z_]\w*(?!\\)\b(?=\s*\|)/i,greedy:!0},{pattern:/(\|\s*)(?:\\?\b[a-z_]\w*)+\b/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(?:\\?\b[a-z_]\w*)+\b(?=\s*\|)/i,alias:"class-name-fully-qualified",greedy:!0,inside:{punctuation:/\\/}},{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self\b|\s+static\b))\s+|\bcatch\s*\()(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*\$)/i,alias:"type-declaration",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-declaration"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*::)/i,alias:["class-name-fully-qualified","static-context"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/([(,?]\s*)[a-z_]\w*(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-hint"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b[a-z_]\w*(?!\\)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:["class-name-fully-qualified","return-type"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,function:{pattern:/(^|[^\\\w])\\?[a-z_](?:[\w\\]*\w)?(?=\s*\()/i,lookbehind:!0,inside:{punctuation:/\\/}},property:{pattern:/(->\s*)\w+/,lookbehind:!0},number:a,operator:s,punctuation:r};var o={pattern:/\{\$(?:\{(?:\{[^{}]+\}|[^{}]+)\}|[^{}])+\}|(^|[^\\{])\$+(?:\w+(?:\[[^\r\n\[\]]+\]|->\w+)?)/,lookbehind:!0,inside:e.languages.php},i=[{pattern:/<<<'([^']+)'[\r\n](?:.*[\r\n])*?\1;/,alias:"nowdoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},{pattern:/<<<(?:"([^"]+)"[\r\n](?:.*[\r\n])*?\1;|([a-z_]\w*)[\r\n](?:.*[\r\n])*?\2;)/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:o}},{pattern:/`(?:\\[\s\S]|[^\\`])*`/,alias:"backtick-quoted-string",greedy:!0},{pattern:/'(?:\\[\s\S]|[^\\'])*'/,alias:"single-quoted-string",greedy:!0},{pattern:/"(?:\\[\s\S]|[^\\"])*"/,alias:"double-quoted-string",greedy:!0,inside:{interpolation:o}}];e.languages.insertBefore("php","variable",{string:i,attribute:{pattern:/#\[(?:[^"'\/#]|\/(?![*/])|\/\/.*$|#(?!\[).*$|\/\*(?:[^*]|\*(?!\/))*\*\/|"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*')+\](?=\s*[a-z$#])/im,greedy:!0,inside:{"attribute-content":{pattern:/^(#\[)[\s\S]+(?=\]$)/,lookbehind:!0,inside:{comment:t,string:i,"attribute-class-name":[{pattern:/([^:]|^)\b[a-z_]\w*(?!\\)\b/i,alias:"class-name",greedy:!0,lookbehind:!0},{pattern:/([^:]|^)(?:\\?\b[a-z_]\w*)+/i,alias:["class-name","class-name-fully-qualified"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,number:a,operator:s,punctuation:r}},delimiter:{pattern:/^#\[|\]$/,alias:"punctuation"}}}}),e.hooks.add("before-tokenize",function(l){if(/<\?/.test(l.code)){var u=/<\?(?:[^"'/#]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|(?:\/\/|#(?!\[))(?:[^?\n\r]|\?(?!>))*(?=$|\?>|[\r\n])|#\[|\/\*(?:[^*]|\*(?!\/))*(?:\*\/|$))*?(?:\?>|$)/g;e.languages["markup-templating"].buildPlaceholders(l,"php",u)}}),e.hooks.add("after-tokenize",function(l){e.languages["markup-templating"].tokenizePlaceholders(l,"php")})})(Prism)),Gi}Kh();const Wh={class:"page"},Jh={key:2},Yh={class:"script-detail-meta"},Xh=["innerHTML"],Zh={key:1},Qh={class:"script-meta"},em={key:0},tm={class:"scope-name"},nm={class:"script-info-panel"},am={key:0,class:"info-row"},sm={class:"info-value"},rm={key:1,class:"info-row"},im={class:"info-value"},om={key:2,class:"info-row"},lm={class:"info-value"},um={key:1,class:"devices-panel"},cm={class:"block-title"},dm={key:2,class:"devices-panel"},fm={class:"block-title"},pm={key:3,class:"devices-panel"},vm={key:2,class:"code-block"},gm=["innerHTML"],hm={key:0,class:"form-group"},mm={key:0,class:"form-group"},ym={__name:"ScriptDetailPage",setup(e){const t=as(),n=Sn(),a=kt(),s=wn(),r=jt(),{areaOptions:o,showAssignModal:i,selectedAreaId:l,assignLoading:u,assignError:c,openAssign:d,submitAssignCore:f}=Er(),_=ee(()=>t.params.type),g=ee(()=>t.params.id),m=K(!1),h=ee(()=>_.value==="actions"),$=ee(()=>_.value==="regular"),y=ee(()=>_.value==="scopes"),S=ee(()=>{var p,b,A;const V=[];return!y.value&&r.has("scripts.edit")&&((p=w.value)!=null&&p.area_id?V.push({label:"Change area",icon:"ph-map-pin",onSelect:ke},{label:"Unassign from area",icon:"ph-x-circle",onSelect:Oe}):V.push({label:"Assign to area",icon:"ph-map-pin",onSelect:ke})),h.value&&r.has("scripts.run")&&V.push({label:"Run",icon:"ph-play",disabled:((b=w.value)==null?void 0:b.state)!=="enabled"||n.isRunning((A=w.value)==null?void 0:A.alias),onSelect:Y}),V}),C=ee(()=>h.value?"Actions":$.value?"Regular":y.value?"Scope":"Script"),L=ee(()=>`Loading ${C.value.toLowerCase()} details`),P=ee(()=>h.value?n.isLoadingActions:$.value?n.isLoadingRegular:y.value?n.isLoadingScopes||n.isLoadingActions||n.isLoadingRegular:!1),E=ee(()=>h.value?n.errorActions:$.value?n.errorRegular:y.value?n.errorScopes:null),T=ee(()=>h.value?n.actions.length>0:$.value?n.regular.length>0:y.value?n.scopes.length>0:!1),w=ee(()=>{const V=g.value;return V?h.value?n.actionByAlias(V):$.value?n.regularByAlias(V):y.value?n.scopeByName(V):null:null}),X=ee(()=>{const V=g.value;return!V||!y.value?[]:n.actionsByScope(V)}),oe=ee(()=>{const V=g.value;return!V||!y.value?[]:n.regularByScope(V)}),fe=ee(()=>{var p;const V=(p=w.value)==null?void 0:p.area_id;return V&&a.areasById[String(V)]||null}),ge=ee(()=>y.value?n.isLoadingScopeCode:!1),B=ee(()=>y.value?n.errorScopeCode:null),J=ee(()=>{var V;return h.value||$.value?((V=w.value)==null?void 0:V.code)||"":y.value?n.currentScopeCode:""}),Q=ee(()=>{const V=J.value;return V?Hi.highlight(V,Hi.languages.php,"php"):""});function Y(){var p;if(!((p=w.value)!=null&&p.alias))return;const V=w.value.params_schema;if(V&&Object.keys(V).length>0){m.value=!0;return}te(w.value.alias,{})}async function te(V,p){var A,j;const b=await n.runScript(V,p);b!=null&&b.ok?s.success({title:`Ran ${V}`,text:(A=n.lastRunResult)!=null&&A.execTime?`Exec time: ${n.lastRunResult.execTime}`:void 0}):s.error({title:`Failed ${V}`,text:((j=b==null?void 0:b.error)==null?void 0:j.message)||"Unknown error"})}async function ve(V){var j,W;const p=g.value;if(!p)return;let b;h.value?b=await n.setActionState(p,V):$.value?b=await n.setRegularState(p,V):y.value&&(b=await n.setScopeState(p,V));const A=((j=w.value)==null?void 0:j.alias)||p;b&&!b.ok?s.error({title:`Failed to ${V?"enable":"disable"} ${A}`,text:((W=b.error)==null?void 0:W.message)||"Unknown error"}):b&&s.success({title:`${V?"Enabled":"Disabled"} ${A}`})}function ke(){var V;d((V=w.value)==null?void 0:V.area_id)}async function Pe(){var b;const V=(b=w.value)==null?void 0:b.id,p=await f(V,n.assignToArea.bind(n));p!=null&&p.ok&&s.success({title:"Assigned",text:"Script assigned to area successfully"})}const be=K(!1),Ge=K(""),Ue=K(!1),De=K("");function Oe(){w.value&&(Ge.value=`Are you sure you want to unassign script "${w.value.name||w.value.alias}" from its area?`,De.value="",be.value=!0)}async function M(){var p;if(!w.value)return;Ue.value=!0,De.value="";const V=await n.unassignFromArea(w.value.id);if(Ue.value=!1,!V.ok){De.value=((p=V.error)==null?void 0:p.message)||"Failed to unassign script";return}be.value=!1,s.success({title:"Unassigned",text:"Script unassigned from area successfully"})}async function se(){const V=g.value;!V||!y.value||await n.loadScopeCode(V)}async function H(){g.value&&(h.value&&n.actions.length===0?await n.loadActions():$.value&&n.regular.length===0?await n.loadRegular():y.value&&n.scopes.length===0&&await n.loadScopes(),y.value&&(n.actions.length===0&&await n.loadActions(),n.regular.length===0&&await n.loadRegular(),await se()),a.areas.length===0&&await a.loadAreas())}const F=[{key:"alias",label:"Alias"},{key:"name",label:"Name"},{key:"state",label:"State"}];return bt(()=>{H()}),ha(()=>{n.clearScopeCode()}),wt(()=>[t.params.type,t.params.id],([V,p],[b,A])=>{(V!==b||p!==A)&&(n.clearScopeCode(),H())}),(V,p)=>{const b=cn("router-link");return k(),G("section",Wh,[P.value?(k(),q(St,{key:0,text:L.value},null,8,["text"])):E.value&&!T.value?(k(),q(pt,{key:1,title:`${C.value} loading failed`,error:E.value,retry:H},null,8,["title","error"])):w.value?(k(),G("div",Jh,[R(v(Tt),{title:w.value.name||w.value.alias||w.value.name,kicker:C.value},{actions:x(()=>[v(r).has("scripts.edit")?(k(),q(v(kl),{key:0,"model-value":w.value.state==="enabled",label:"Enabled","onUpdate:modelValue":p[0]||(p[0]=A=>ve(A))},null,8,["model-value"])):ne("",!0),R(Tr,{items:S.value},null,8,["items"])]),_:1},8,["title","kicker"]),I("div",Yh,[w.value.icon?(k(),G("div",{key:0,innerHTML:w.value.icon,class:"script-icon"},null,8,Xh)):ne("",!0),w.value.description?(k(),G("p",Zh,O(w.value.description),1)):ne("",!0),I("div",Qh,[R(v(ye),{variant:w.value.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(w.value.state),1)]),_:1},8,["variant"]),I("code",null,O(w.value.alias||w.value.name),1),w.value.author?(k(),G("small",em,O(w.value.author),1)):ne("",!0),R(Rr,{area:fe.value,areaId:w.value.area_id},null,8,["area","areaId"]),w.value.scope?(k(),q(b,{key:1,to:{name:"script-detail",params:{type:"scopes",id:w.value.scope}},class:"scope-link"},{default:x(()=>[p[8]||(p[8]=I("span",{class:"scope-label"},"Scope",-1)),I("span",tm,O(w.value.scope),1),p[9]||(p[9]=I("i",{class:"ph ph-arrow-right"},null,-1))]),_:1},8,["to"])):ne("",!0)]),I("div",nm,[w.value.filename?(k(),G("div",am,[p[10]||(p[10]=I("span",{class:"info-label text-muted"},"File:",-1)),I("span",sm,O(w.value.filename),1)])):ne("",!0),w.value.path?(k(),G("div",rm,[p[11]||(p[11]=I("span",{class:"info-label text-muted"},"Path:",-1)),I("span",im,O(w.value.path),1)])):ne("",!0),w.value.created_by?(k(),G("div",om,[p[12]||(p[12]=I("span",{class:"info-label text-muted"},"Author:",-1)),I("span",lm,O(w.value.created_by),1)])):ne("",!0)])]),y.value?ne("",!0):(k(),q($r,{key:0,item:w.value,emptyMessage:"This script is not assigned to any area.",onAssign:ke},{action:x(()=>[v(r).has("scripts.edit")?(k(),q(v(de),{key:0,variant:"primary",icon:"ph-map-pin",onClick:ke},{default:x(()=>{var A;return[N(O((A=w.value)!=null&&A.area_id?"Change area":"Assign to area"),1)]}),_:1})):ne("",!0)]),_:1},8,["item"])),y.value&&X.value.length>0?(k(),G("div",um,[I("div",cm,"Action scripts ("+O(X.value.length)+")",1),R(v(Nn),{rows:X.value,columns:F},{"cell-state":x(({row:A})=>[R(v(ye),{variant:A.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(A.state),1)]),_:2},1032,["variant"])]),"cell-alias":x(({row:A})=>[R(b,{to:{name:"script-detail",params:{type:"actions",id:A.alias}},class:"script-link"},{default:x(()=>[N(O(A.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):ne("",!0),y.value&&oe.value.length>0?(k(),G("div",dm,[I("div",fm,"Regular scripts ("+O(oe.value.length)+")",1),R(v(Nn),{rows:oe.value,columns:F},{"cell-state":x(({row:A})=>[R(v(ye),{variant:A.state==="enabled"?"success":"secondary"},{default:x(()=>[N(O(A.state),1)]),_:2},1032,["variant"])]),"cell-alias":x(({row:A})=>[R(b,{to:{name:"script-detail",params:{type:"regular",id:A.alias}},class:"script-link"},{default:x(()=>[N(O(A.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):ne("",!0),w.value.code||y.value?(k(),G("div",pm,[p[13]||(p[13]=I("div",{class:"block-title"},"Source code",-1)),ge.value?(k(),q(St,{key:0,text:"Loading source code"})):B.value?(k(),q(pt,{key:1,title:"Code loading failed",error:B.value,retry:se},null,8,["error"])):J.value?(k(),G("pre",vm,[I("code",{class:"language-php",innerHTML:Q.value},null,8,gm)])):(k(),q(it,{key:3,title:"No code",message:"Source code is not available."}))])):ne("",!0)])):(k(),q(it,{key:3,title:"Not found",message:"The requested script does not exist."})),R(v(tt),{open:v(i),title:"Assign to area","onUpdate:open":p[3]||(p[3]=A=>i.value=A)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:p[2]||(p[2]=A=>i.value=!1)},{default:x(()=>[...p[14]||(p[14]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"primary",icon:"ph-check",loading:v(u),onClick:Pe},{default:x(()=>[...p[15]||(p[15]=[N(" Assign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[R(v(rs),{modelValue:v(l),"onUpdate:modelValue":p[1]||(p[1]=A=>Ve(l)?l.value=A:null),label:"Area",options:v(o),icon:"ph-map-trifold"},null,8,["modelValue","options"]),v(c)?(k(),G("div",hm,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(v(c)),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),R(v(tt),{open:be.value,title:"Unassign from area","onUpdate:open":p[5]||(p[5]=A=>be.value=A)},{footer:x(()=>[R(v(de),{variant:"secondary",onClick:p[4]||(p[4]=A=>be.value=!1)},{default:x(()=>[...p[16]||(p[16]=[N("Cancel",-1)])]),_:1}),R(v(de),{variant:"warning",icon:"ph-x-circle",loading:Ue.value,onClick:M},{default:x(()=>[...p[17]||(p[17]=[N(" Unassign ",-1)])]),_:1},8,["loading"])]),default:x(()=>[I("p",null,O(Ge.value),1),De.value?(k(),G("div",mm,[R(v(Ze),{variant:"danger"},{default:x(()=>[N(O(De.value),1)]),_:1})])):ne("",!0)]),_:1},8,["open"]),h.value&&w.value?(k(),q(Ul,{key:4,open:m.value,script:w.value,"onUpdate:open":p[6]||(p[6]=A=>m.value=A),onRun:p[7]||(p[7]=A=>te(A.alias,A.params))},null,8,["open","script"])):ne("",!0)])}}},_m=ze(ym,[["__scopeId","data-v-c052dd3b"]]),bm={class:"page"},wm={key:3,class:"firmwares-panel"},Sm={class:"firmwares-summary"},km={class:"firmwares-list"},Am={class:"firmware-header"},xm={class:"firmware-id"},Cm={class:"firmware-meta"},Em={key:0,class:"firmware-desc"},Rm={key:1,class:"firmware-changelog"},$m={__name:"FirmwaresListPage",setup(e){const t=jl(),n=jt(),a=K(null);async function s(){var i;a.value=null;const o=await t.loadFirmwares();o.ok||(a.value=((i=o.error)==null?void 0:i.message)||"Failed to load catalog")}async function r(){var i;a.value=null;const o=await t.refreshFirmwares();o.ok||(a.value=((i=o.error)==null?void 0:i.message)||"Failed to refresh catalog")}return bt(s),(o,i)=>(k(),G("section",bm,[R(v(Tt),{title:"Firmware Catalog",kicker:"Firmwares"},{actions:x(()=>[v(n).has("firmware.upload")?(k(),q(v(de),{key:0,loading:v(t).isUpdating,icon:"ph-arrow-clockwise",onClick:r},{default:x(()=>[...i[0]||(i[0]=[N(" Refresh Catalog ",-1)])]),_:1},8,["loading"])):ne("",!0)]),_:1}),v(t).isLoadingList?(k(),q(St,{key:0,text:"Loading firmware catalog"})):a.value?(k(),q(pt,{key:1,title:"Catalog loading failed",error:a.value,retry:s},null,8,["error"])):v(t).firmwares.length===0?(k(),q(it,{key:2,title:"No firmwares found",message:"No firmware packages detected in the firmwares directory."})):(k(),G("div",wm,[I("div",Sm,[R(v(ye),{variant:"primary"},{default:x(()=>[N("Total: "+O(v(t).firmwares.length),1)]),_:1})]),I("div",km,[(k(!0),G(xe,null,Rt(v(t).firmwares,l=>(k(),G("div",{key:l.id,class:"firmware-card"},[I("div",Am,[I("span",xm,O(l.id),1),R(v(ye),{variant:"success"},{default:x(()=>[N(O(l.version),1)]),_:2},1024)]),I("div",Cm,[R(v(ye),{variant:"secondary"},{default:x(()=>[N(O(l.device_type),1)]),_:2},1024),l.platform?(k(),q(v(ye),{key:0,variant:"info"},{default:x(()=>[N(O(l.platform),1)]),_:2},1024)):ne("",!0),l.channels?(k(),q(v(ye),{key:1,variant:"warning"},{default:x(()=>[N(O(l.channels)+" ch",1)]),_:2},1024)):ne("",!0)]),l.description?(k(),G("p",Em,O(l.description),1)):ne("",!0),l.changelog?(k(),G("pre",Rm,O(l.changelog),1)):ne("",!0)]))),128))])]))]))}},Tm=ze($m,[["__scopeId","data-v-c0c73f70"]]),Bl="/logo-cube-square.svg",Pm={class:"login-page"},Im={class:"login-card"},Lm={key:0,class:"login-loading text-muted"},Dm={__name:"LoginPage",setup(e){const t=en(),n=Un();bt(()=>{n.isAuthenticated&&t.replace({name:"areas-favorites"})});function a(){Sr(kr())}return(s,r)=>(k(),G("div",Pm,[I("div",Im,[r[2]||(r[2]=I("div",{class:"login-brand"},[I("img",{src:Bl,alt:"Smart Home",class:"brand-logo"}),I("h1",{class:"brand-title"},"Smart Home Server")],-1)),r[3]||(r[3]=I("p",{class:"login-hint text-muted"}," You need to sign in to access the smart home dashboard. ",-1)),R(v(de),{variant:"primary",class:"login-btn",icon:"ph-sign-in",onClick:a},{default:x(()=>[...r[0]||(r[0]=[N(" LOGIN WITH GNEXUS ",-1)])]),_:1}),v(n).isLoading?(k(),G("p",Lm,[...r[1]||(r[1]=[I("i",{class:"ph ph-spinner ph-spin"},null,-1),N(" Checking session… ",-1)])])):ne("",!0)])]))}},Om=ze(Dm,[["__scopeId","data-v-7f18a357"]]),Fm={class:"setup-page"},Nm={class:"setup-card"},Mm={class:"setup-form"},Um={key:0,class:"setup-error text-danger"},Vm={__name:"MobileSetupPage",setup(e){en();const t=K(""),n=K(""),a=K(!1),s=K("");async function r(){n.value="",s.value="";const o=t.value.trim();if(!o){n.value="Server URL is required";return}let i=o;/^https?:\/\//i.test(i)||(i="http://"+i);try{new URL(i)}catch{n.value="Invalid URL format";return}a.value=!0;try{const l=[`${i}/api/v1/about`,`${i}/about`];let u=!1;for(const c of l)try{const d=new AbortController,f=setTimeout(()=>d.abort(),5e3),_=await fetch(c,{method:"GET",signal:d.signal});if(clearTimeout(f),_.ok||_.status===401){u=!0;break}}catch{}if(!u){s.value="Could not connect to server. Please check the address.",a.value=!1;return}await pp(i),alert("Server address saved. Please restart the app to continue."),Hs.exitApp();return}catch{s.value="Connection check failed. Please try again.",a.value=!1}}return(o,i)=>(k(),G("div",Fm,[I("div",Nm,[i[3]||(i[3]=Ic('

Smart Home

Mobile App Setup

Enter the address of your Smart Home server. Example: https://shserv.home or http://192.168.1.10

',3)),I("div",Mm,[R(v(yt),{modelValue:t.value,"onUpdate:modelValue":i[0]||(i[0]=l=>t.value=l),label:"Server URL",placeholder:"https://your-server.com",error:n.value,onKeyup:vd(r,["enter"])},null,8,["modelValue","error"]),R(v(de),{variant:"primary",size:"lg",class:"setup-btn",loading:a.value,onClick:r},{icon:x(()=>[...i[1]||(i[1]=[I("i",{class:"ph ph-check"},null,-1)])]),default:x(()=>[N(" "+O(a.value?"Checking connection…":"Save and continue"),1)]),_:1},8,["loading"])]),s.value?(k(),G("p",Um,[i[2]||(i[2]=I("i",{class:"ph ph-warning-circle"},null,-1)),N(" "+O(s.value),1)])):ne("",!0)])]))}},jm=ze(Vm,[["__scopeId","data-v-a50065c7"]]),Bm={class:"mobile-auth-page"},Hm={class:"mobile-auth-card"},Gm={class:"text-muted"},qm={__name:"MobileAuthPage",setup(e){const t=en(),n=Un(),a=K("Authenticating…");return bt(async()=>{const s=window.location.hash,r=s.indexOf("?");if(r===-1){a.value="Invalid login link. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500);return}const o=new URLSearchParams(s.slice(r+1)),i=o.get("token"),l=o.get("expires_in");if(!i){a.value="No token received. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500);return}is(i,l?parseInt(l,10):null);const u=s.slice(0,r);window.history.replaceState(null,"",u||"#/"),a.value="Loading profile…";try{await n.init(),n.isAuthenticated?t.replace({name:"areas-favorites"}):(a.value="Session invalid. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500))}catch{a.value="Failed to load profile. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500)}}),(s,r)=>(k(),G("div",Bm,[I("div",Hm,[r[0]||(r[0]=I("div",{class:"spinner"},null,-1)),I("p",Gm,O(a.value),1)])]))}},zm=ze(qm,[["__scopeId","data-v-9c0afc74"]]),Km=[{path:"/",redirect:"/areas/favorites"},{path:"/login",name:"login",component:Om,meta:{public:!0}},{path:"/mobile-setup",name:"mobile-setup",component:jm,meta:{public:!0}},{path:"/mobile-auth",name:"mobile-auth",component:zm,meta:{public:!0}},{path:"/areas/favorites",name:"areas-favorites",component:zp,meta:{permission:"areas.view"}},{path:"/areas/tree",name:"areas-tree",component:lv,meta:{permission:"areas.view"}},{path:"/areas/:id",name:"area-detail",component:xg,meta:{permission:"areas.view"}},{path:"/devices",name:"devices",component:Pg,meta:{permission:"devices.view"}},{path:"/devices/scanning",name:"devices-scanning",component:Kg,meta:{permission:"devices.scan"}},{path:"/devices/:id",name:"device-detail",component:Lh,meta:{permission:"devices.view"}},{path:"/scripts/actions",name:"scripts-actions",component:Fh,meta:{permission:"scripts.run"}},{path:"/scripts/regular",name:"scripts-regular",component:Uh,meta:{permission:"scripts.view"}},{path:"/scripts/scopes",name:"scripts-scopes",component:Hh,meta:{permission:"scripts.view"}},{path:"/scripts/:type(actions|regular|scopes)/:id",name:"script-detail",component:_m,meta:{permission:"scripts.view"}},{path:"/firmwares",name:"firmwares",component:Tm,meta:{permission:"firmware.view"}},{path:"/:pathMatch(.*)*",name:"not-found",component:()=>gr(()=>import("./NotFoundPage-DL6UDBF9.js"),[])}],Kn="[vue:router]",Wn=wr(),Hl=Gf({history:kf(),routes:Km});Hl.beforeEach(async(e,t,n)=>{var r,o;if(Ut()&&e.name!=="mobile-setup")try{if(!await gp()){Wn&&console.debug(Kn,"Redirect: native app missing server URL → mobile-setup"),n({name:"mobile-setup"});return}}catch{if(e.name!=="mobile-setup"){n({name:"mobile-setup"});return}}const a=Un();if(Wn&&console.debug(Kn,`Navigate: ${t.fullPath||"init"} → ${e.fullPath}`),await a.init(),(r=e.meta)!=null&&r.public){if(e.name==="login"&&a.isAuthenticated){Wn&&console.debug(Kn,"Redirect: authenticated user at login → areas-favorites"),n({name:"areas-favorites"});return}n();return}if(!a.isAuthenticated){Wn&&console.debug(Kn,"Redirect: unauthenticated → login"),n({name:"login"});return}const s=(o=e.meta)==null?void 0:o.permission;if(s&&!a.hasPermission(s)){Wn&&console.warn(Kn,`Forbidden: ${e.fullPath} requires ${s}`),n({name:"areas-favorites"});return}n()});function Wm(e){const t="[vue:error]";e.config.errorHandler=(n,a,s)=>{const r=(n==null?void 0:n.message)||String(n);console.error(t,`Vue ${s}`,r,(n==null?void 0:n.stack)||"")},window.addEventListener("unhandledrejection",n=>{var r;const a=n.reason,s=(a==null?void 0:a.message)||((r=a==null?void 0:a.error)==null?void 0:r.message)||String(a);console.error(t,"Unhandled rejection:",s,(a==null?void 0:a.stack)||""),n.preventDefault()}),window.addEventListener("error",n=>{const a=n.error,s=(a==null?void 0:a.message)||n.message||"Unknown error";console.error(t,`Global error: ${s}`,`at ${n.filename}:${n.lineno}:${n.colno}`,(a==null?void 0:a.stack)||"")})}const Rs="[vue:pinia]",Jm=e=>{if(!wr())return;const{store:t,options:n}=e,a=n.id,s=Object.keys(n.actions||{});for(const r of s){const o=t[r];t[r]=async function(...i){console.debug(Rs,`${a}.${r}(${i.map(u=>$l(u)).join(", ")})`);const l=performance.now();try{const u=await o.apply(this,i);return console.debug(Rs,`${a}.${r} completed in ${(performance.now()-l).toFixed(1)}ms`),u}catch(u){throw console.error(Rs,`${a}.${r} failed: ${(u==null?void 0:u.message)||u}`),u}}}};function zi(e){try{const t=new URL(e);if(t.host==="auth"&&t.pathname==="/callback"){const n=t.searchParams.get("token"),a=t.searchParams.get("expires_in");n&&(is(n,a?parseInt(a,10):null),window.location.reload())}}catch{}}async function Ym(){if(await fp(),await hp(),Ut()){try{const a=await Hs.getLaunchUrl();if(a!=null&&a.url){zi(a.url);return}}catch{}Hs.addListener("appUrlOpen",a=>{zi(a.url)})}const e=md(Pp);Wm(e);const t=bd();t.use(Jm),e.use(t).use(Hl),await Un().init(),e.mount("#app")}Ym();export{tp as G,hr as W,R as a,G as c,k as o,v as u}; diff --git a/server/dist/assets/index-Stq0aONM.css b/server/dist/assets/index-Stq0aONM.css new file mode 100644 index 0000000..b37cd0a --- /dev/null +++ b/server/dist/assets/index-Stq0aONM.css @@ -0,0 +1 @@ +@charset "UTF-8";.nav-topbar-brand img{width:50px!important;height:50px!important}.error-meta[data-v-f1e6bcb8]{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}.error-actions[data-v-f1e6bcb8]{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-top:12px}.error-boundary[data-v-1e10ea7f]{padding:24px}.area-favorites-list[data-v-f8795944]{display:grid;gap:12px;margin:0;padding:0;list-style:none}.area-favorite-card[data-v-f8795944]{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;padding:14px 16px;border:1px solid rgba(192,202,245,.12);background:var(--color-panel);cursor:pointer;transition:background .15s ease}.area-favorite-card[data-v-f8795944]:hover{background:var(--color-panel-strong)}.area-favorite-icon[data-v-f8795944]{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border:2px solid var(--color-primary);color:var(--color-primary);font-size:20px}.area-favorite-info[data-v-f8795944]{min-width:0}.area-favorite-title[data-v-f8795944]{margin:0 0 6px;font-size:18px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.area-favorite-meta[data-v-f8795944]{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:0;color:var(--color-muted);font-size:13px}.area-favorite-parent[data-v-f8795944]{color:var(--color-muted)}.area-favorite-parent .parent-link[data-v-f8795944]{color:var(--color-primary);text-decoration:none}.area-favorite-parent .parent-link[data-v-f8795944]:hover{text-decoration:underline}@media(max-width:720px){.area-favorite-card[data-v-f8795944]{grid-template-columns:auto 1fr;gap:12px}.area-favorite-actions[data-v-f8795944]{grid-column:1 / -1;justify-self:end}}.form-group[data-v-5f02f384]{margin-bottom:16px}.area-link[data-v-91230b95]{text-decoration:none}.devices-panel[data-v-92cae82c]{margin-bottom:24px}.block-title[data-v-92cae82c]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.area-assigned[data-v-92cae82c]{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.area-card[data-v-92cae82c]{display:flex;align-items:center;gap:10px;padding:10px 14px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12);color:inherit;text-decoration:none;transition:border-color .15s}.area-card[data-v-92cae82c]:hover{border-color:var(--color-primary)}.area-card-icon[data-v-92cae82c]{font-size:20px}.area-card-info[data-v-92cae82c]{display:flex;flex-direction:column;gap:2px}.area-card-info small[data-v-92cae82c]{font-size:12px}.form-group[data-v-92cae82c]{margin-bottom:16px}.device-channels-state[data-v-08541c71]{display:inline-flex;align-items:center}.channels-grid[data-v-08541c71]{display:inline-flex;flex-wrap:wrap;gap:6px;align-items:center}.unknown-type[data-v-08541c71]{font-size:12px}.raw-json[data-v-08541c71]{font-size:10px;margin:4px 0 0;max-width:400px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.device-cell[data-v-32549911]{display:flex;align-items:center;gap:10px}.device-icon[data-v-32549911]{font-size:20px}.device-info[data-v-32549911]{display:flex;flex-direction:column;gap:2px}.device-name-row[data-v-32549911]{display:inline-flex;align-items:center;gap:6px}.status-dot[data-v-32549911]{display:inline-block;width:8px;height:8px;border-radius:50%;flex-shrink:0;background:currentColor;box-shadow:0 0 4px currentColor}.device-info small[data-v-32549911]{font-size:12px}.device-link[data-v-32549911]{color:inherit;text-decoration:none}.device-link:hover strong[data-v-32549911]{color:var(--color-primary)}.script-link[data-v-1ead75a7]{color:var(--color-primary);text-decoration:none}.scope-link[data-v-1ead75a7]{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border:1px solid var(--color-primary);color:var(--color-primary);text-decoration:none;font-size:13px;cursor:pointer;transition:background .15s,color .15s}.scope-link[data-v-1ead75a7]:hover{background:var(--color-primary);color:var(--color-bg)}.scope-label[data-v-1ead75a7]{text-transform:uppercase;font-size:11px;font-weight:700;opacity:.8}.muted[data-v-1ead75a7]{color:var(--color-muted)}.page-header:has(>.page-header-actions .page-actions-dropdown){overflow:visible}.page-actions-dropdown .btn-icon{width:44px;height:44px;font-size:24px}.page-actions-dropdown .dropdown-menu{left:auto;right:0;transform-origin:top right}.script-run-form[data-v-c51fae66]{display:flex;flex-direction:column;gap:16px}.form-field[data-v-c51fae66]{display:flex;flex-direction:column;gap:4px}.field-error[data-v-c51fae66]{color:var(--color-danger, #ef4444);font-size:12px;margin:0}.script-icon[data-v-1aea77e7]{font-size:32px}.script-meta[data-v-1aea77e7]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.action-card-item.card-cautious[data-v-1aea77e7] .action-card{border-color:#e0af68}.action-card-item.card-dangerous[data-v-1aea77e7] .action-card{border-color:#f7768e}.area-meta[data-v-757a0469]{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-bottom:24px}.area-parent[data-v-757a0469]{color:var(--color-muted)}.actions-panel[data-v-757a0469],.devices-panel[data-v-757a0469],.scripts-panel[data-v-757a0469]{margin-bottom:24px}.block-title[data-v-757a0469]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.form-group[data-v-757a0469]{margin-bottom:16px}.devices-summary[data-v-635f3900]{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}.scan-filters[data-v-1a01bb19]{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:24px}.filter-label[data-v-1a01bb19]{font-size:13px;text-transform:uppercase}.devices-summary[data-v-1a01bb19]{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}.device-cell[data-v-1a01bb19]{display:flex;align-items:center;gap:10px}.device-icon[data-v-1a01bb19]{font-size:20px;color:var(--color-primary)}.device-info[data-v-1a01bb19]{display:flex;flex-direction:column;gap:2px}.device-info small[data-v-1a01bb19]{color:var(--color-muted);font-size:12px}.firmware[data-v-1a01bb19]{font-size:12px;color:var(--color-muted)}.muted[data-v-1a01bb19]{color:var(--color-muted)}.form-group[data-v-1a01bb19]{margin-bottom:16px}.device-meta[data-v-a9f83185]{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-bottom:24px}.script-info-panel[data-v-a9f83185]{display:grid;gap:8px;padding:12px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12);margin-bottom:24px}.info-row[data-v-a9f83185]{display:flex;gap:8px;align-items:baseline}.info-label[data-v-a9f83185]{font-size:12px;text-transform:uppercase;min-width:48px}.info-value[data-v-a9f83185]{font-size:13px;word-break:break-all}.devices-panel[data-v-a9f83185]{margin-bottom:24px}.block-title[data-v-a9f83185]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.form-group[data-v-a9f83185]{margin-bottom:16px}.firmware-options[data-v-a9f83185]{display:grid;gap:8px;margin:12px 0}.firmware-option[data-v-a9f83185]{padding:10px 12px;border:1px solid rgba(192,202,245,.12);border-radius:6px;cursor:pointer;background:var(--color-panel)}.firmware-option.active[data-v-a9f83185]{border-color:var(--color-primary);background:#3b82f61a}.fw-version[data-v-a9f83185]{font-weight:600;font-size:13px}.fw-desc[data-v-a9f83185]{font-size:12px;color:var(--color-text-muted);margin-top:2px}.result-alert[data-v-f336617a]{margin-top:24px}.script-link[data-v-c8486788]{color:var(--color-primary)}.script-detail-meta[data-v-c052dd3b]{display:flex;flex-direction:column;gap:16px;margin-bottom:24px}.script-icon[data-v-c052dd3b]{font-size:32px}.script-meta[data-v-c052dd3b]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.result-alert[data-v-c052dd3b]{margin-top:24px}.devices-panel[data-v-c052dd3b]{margin-bottom:24px}.block-title[data-v-c052dd3b]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.script-link[data-v-c052dd3b]{color:var(--color-primary)}.scope-link[data-v-c052dd3b]{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border:1px solid var(--color-primary);color:var(--color-primary);text-decoration:none;font-size:13px;cursor:pointer;transition:background .15s,color .15s}.scope-link[data-v-c052dd3b]:hover{background:var(--color-primary);color:var(--color-bg)}.scope-label[data-v-c052dd3b]{text-transform:uppercase;font-size:11px;font-weight:700;opacity:.8}.script-info-panel[data-v-c052dd3b]{display:grid;gap:8px;padding:12px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12)}.info-row[data-v-c052dd3b]{display:flex;gap:8px;align-items:baseline}.info-label[data-v-c052dd3b]{font-size:12px;text-transform:uppercase;min-width:48px}.info-value[data-v-c052dd3b]{font-size:13px;word-break:break-all}.code-block[data-v-c052dd3b]{margin:0;padding:14px;overflow-x:auto}.firmwares-summary[data-v-c0c73f70]{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}.firmwares-list[data-v-c0c73f70]{display:grid;gap:12px}.firmware-card[data-v-c0c73f70]{background:var(--color-panel);border:1px solid rgba(192,202,245,.12);border-radius:8px;padding:12px 16px}.firmware-header[data-v-c0c73f70]{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}.firmware-id[data-v-c0c73f70]{font-family:monospace;font-size:13px;word-break:break-all}.firmware-meta[data-v-c0c73f70]{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:8px}.firmware-desc[data-v-c0c73f70]{font-size:13px;color:var(--color-text-muted);margin:0}.firmware-changelog[data-v-c0c73f70]{font-size:12px;background:#0f172a80;padding:8px;border-radius:6px;margin-top:8px;white-space:pre-wrap;word-break:break-word}.login-page[data-v-7f18a357]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.login-card[data-v-7f18a357]{display:flex;flex-direction:column;align-items:center;gap:1.5rem;max-width:360px;width:100%;padding:2rem;text-align:center}.login-brand[data-v-7f18a357]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-7f18a357]{width:120px;height:120px}.brand-title[data-v-7f18a357]{margin:0;font-size:1.25rem;font-weight:700}.login-hint[data-v-7f18a357]{margin:0;font-size:.875rem;line-height:1.5}.login-btn[data-v-7f18a357]{width:100%}.login-loading[data-v-7f18a357]{margin:0;font-size:.8125rem;display:flex;align-items:center;gap:.375rem}.setup-page[data-v-a50065c7]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.setup-card[data-v-a50065c7]{display:flex;flex-direction:column;align-items:center;gap:1.5rem;max-width:360px;width:100%;padding:2rem;text-align:center}.setup-brand[data-v-a50065c7]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-a50065c7]{width:120px;height:120px}.brand-title[data-v-a50065c7]{margin:0;font-size:1.25rem;font-weight:700}.brand-subtitle[data-v-a50065c7]{margin:0;font-size:.875rem}.setup-divider[data-v-a50065c7]{width:48px;height:2px;background:currentColor;border-radius:1px}.setup-hint[data-v-a50065c7]{margin:0;font-size:.875rem;line-height:1.5}.setup-form[data-v-a50065c7]{display:flex;flex-direction:column;gap:1rem;width:100%}.setup-btn[data-v-a50065c7]{width:100%}.setup-error[data-v-a50065c7]{margin:0;font-size:.875rem;display:flex;align-items:center;gap:.375rem}.mobile-auth-page[data-v-9c0afc74]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.mobile-auth-card[data-v-9c0afc74]{display:flex;flex-direction:column;align-items:center;gap:1rem;text-align:center}.spinner[data-v-9c0afc74]{width:40px;height:40px;border:3px solid rgba(255,255,255,.2);border-top-color:#12b7f5;border-radius:50%;animation:spin-9c0afc74 1s linear infinite}@keyframes spin-9c0afc74{to{transform:rotate(360deg)}}@font-face{font-family:Phosphor;src:url(/assets/Phosphor-DtdjzkpE.woff2) format("woff2"),url(/assets/Phosphor-BdqudwT5.woff) format("woff"),url(/assets/Phosphor-CDxgqcPu.ttf) format("truetype"),url(/assets/Phosphor-BXRFlF4V.svg#Phosphor) format("svg");font-weight:400;font-style:normal;font-display:block}.ph{font-family:Phosphor!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ph.ph-acorn:before{content:""}.ph.ph-address-book:before{content:""}.ph.ph-address-book-tabs:before{content:""}.ph.ph-air-traffic-control:before{content:""}.ph.ph-airplane:before{content:""}.ph.ph-airplane-in-flight:before{content:""}.ph.ph-airplane-landing:before{content:""}.ph.ph-airplane-takeoff:before{content:""}.ph.ph-airplane-taxiing:before{content:""}.ph.ph-airplane-tilt:before{content:""}.ph.ph-airplay:before{content:""}.ph.ph-alarm:before{content:""}.ph.ph-alien:before{content:""}.ph.ph-align-bottom:before{content:""}.ph.ph-align-bottom-simple:before{content:""}.ph.ph-align-center-horizontal:before{content:""}.ph.ph-align-center-horizontal-simple:before{content:""}.ph.ph-align-center-vertical:before{content:""}.ph.ph-align-center-vertical-simple:before{content:""}.ph.ph-align-left:before{content:""}.ph.ph-align-left-simple:before{content:""}.ph.ph-align-right:before{content:""}.ph.ph-align-right-simple:before{content:""}.ph.ph-align-top:before{content:""}.ph.ph-align-top-simple:before{content:""}.ph.ph-amazon-logo:before{content:""}.ph.ph-ambulance:before{content:""}.ph.ph-anchor:before{content:""}.ph.ph-anchor-simple:before{content:""}.ph.ph-android-logo:before{content:""}.ph.ph-angle:before{content:""}.ph.ph-angular-logo:before{content:""}.ph.ph-aperture:before{content:""}.ph.ph-app-store-logo:before{content:""}.ph.ph-app-window:before{content:""}.ph.ph-apple-logo:before{content:""}.ph.ph-apple-podcasts-logo:before{content:""}.ph.ph-approximate-equals:before{content:""}.ph.ph-archive:before{content:""}.ph.ph-armchair:before{content:""}.ph.ph-arrow-arc-left:before{content:""}.ph.ph-arrow-arc-right:before{content:""}.ph.ph-arrow-bend-double-up-left:before{content:""}.ph.ph-arrow-bend-double-up-right:before{content:""}.ph.ph-arrow-bend-down-left:before{content:""}.ph.ph-arrow-bend-down-right:before{content:""}.ph.ph-arrow-bend-left-down:before{content:""}.ph.ph-arrow-bend-left-up:before{content:""}.ph.ph-arrow-bend-right-down:before{content:""}.ph.ph-arrow-bend-right-up:before{content:""}.ph.ph-arrow-bend-up-left:before{content:""}.ph.ph-arrow-bend-up-right:before{content:""}.ph.ph-arrow-circle-down:before{content:""}.ph.ph-arrow-circle-down-left:before{content:""}.ph.ph-arrow-circle-down-right:before{content:""}.ph.ph-arrow-circle-left:before{content:""}.ph.ph-arrow-circle-right:before{content:""}.ph.ph-arrow-circle-up:before{content:""}.ph.ph-arrow-circle-up-left:before{content:""}.ph.ph-arrow-circle-up-right:before{content:""}.ph.ph-arrow-clockwise:before{content:""}.ph.ph-arrow-counter-clockwise:before{content:""}.ph.ph-arrow-down:before{content:""}.ph.ph-arrow-down-left:before{content:""}.ph.ph-arrow-down-right:before{content:""}.ph.ph-arrow-elbow-down-left:before{content:""}.ph.ph-arrow-elbow-down-right:before{content:""}.ph.ph-arrow-elbow-left:before{content:""}.ph.ph-arrow-elbow-left-down:before{content:""}.ph.ph-arrow-elbow-left-up:before{content:""}.ph.ph-arrow-elbow-right:before{content:""}.ph.ph-arrow-elbow-right-down:before{content:""}.ph.ph-arrow-elbow-right-up:before{content:""}.ph.ph-arrow-elbow-up-left:before{content:""}.ph.ph-arrow-elbow-up-right:before{content:""}.ph.ph-arrow-fat-down:before{content:""}.ph.ph-arrow-fat-left:before{content:""}.ph.ph-arrow-fat-line-down:before{content:""}.ph.ph-arrow-fat-line-left:before{content:""}.ph.ph-arrow-fat-line-right:before{content:""}.ph.ph-arrow-fat-line-up:before{content:""}.ph.ph-arrow-fat-lines-down:before{content:""}.ph.ph-arrow-fat-lines-left:before{content:""}.ph.ph-arrow-fat-lines-right:before{content:""}.ph.ph-arrow-fat-lines-up:before{content:""}.ph.ph-arrow-fat-right:before{content:""}.ph.ph-arrow-fat-up:before{content:""}.ph.ph-arrow-left:before{content:""}.ph.ph-arrow-line-down:before{content:""}.ph.ph-arrow-line-down-left:before{content:""}.ph.ph-arrow-line-down-right:before{content:""}.ph.ph-arrow-line-left:before{content:""}.ph.ph-arrow-line-right:before{content:""}.ph.ph-arrow-line-up:before{content:""}.ph.ph-arrow-line-up-left:before{content:""}.ph.ph-arrow-line-up-right:before{content:""}.ph.ph-arrow-right:before{content:""}.ph.ph-arrow-square-down:before{content:""}.ph.ph-arrow-square-down-left:before{content:""}.ph.ph-arrow-square-down-right:before{content:""}.ph.ph-arrow-square-in:before{content:""}.ph.ph-arrow-square-left:before{content:""}.ph.ph-arrow-square-out:before{content:""}.ph.ph-arrow-square-right:before{content:""}.ph.ph-arrow-square-up:before{content:""}.ph.ph-arrow-square-up-left:before{content:""}.ph.ph-arrow-square-up-right:before{content:""}.ph.ph-arrow-u-down-left:before{content:""}.ph.ph-arrow-u-down-right:before{content:""}.ph.ph-arrow-u-left-down:before{content:""}.ph.ph-arrow-u-left-up:before{content:""}.ph.ph-arrow-u-right-down:before{content:""}.ph.ph-arrow-u-right-up:before{content:""}.ph.ph-arrow-u-up-left:before{content:""}.ph.ph-arrow-u-up-right:before{content:""}.ph.ph-arrow-up:before{content:""}.ph.ph-arrow-up-left:before{content:""}.ph.ph-arrow-up-right:before{content:""}.ph.ph-arrows-clockwise:before{content:""}.ph.ph-arrows-counter-clockwise:before{content:""}.ph.ph-arrows-down-up:before{content:""}.ph.ph-arrows-horizontal:before{content:""}.ph.ph-arrows-in:before{content:""}.ph.ph-arrows-in-cardinal:before{content:""}.ph.ph-arrows-in-line-horizontal:before{content:""}.ph.ph-arrows-in-line-vertical:before{content:""}.ph.ph-arrows-in-simple:before{content:""}.ph.ph-arrows-left-right:before{content:""}.ph.ph-arrows-merge:before{content:""}.ph.ph-arrows-out:before{content:""}.ph.ph-arrows-out-cardinal:before{content:""}.ph.ph-arrows-out-line-horizontal:before{content:""}.ph.ph-arrows-out-line-vertical:before{content:""}.ph.ph-arrows-out-simple:before{content:""}.ph.ph-arrows-split:before{content:""}.ph.ph-arrows-vertical:before{content:""}.ph.ph-article:before{content:""}.ph.ph-article-medium:before{content:""}.ph.ph-article-ny-times:before{content:""}.ph.ph-asclepius:before{content:""}.ph.ph-caduceus:before{content:""}.ph.ph-asterisk:before{content:""}.ph.ph-asterisk-simple:before{content:""}.ph.ph-at:before{content:""}.ph.ph-atom:before{content:""}.ph.ph-avocado:before{content:""}.ph.ph-axe:before{content:""}.ph.ph-baby:before{content:""}.ph.ph-baby-carriage:before{content:""}.ph.ph-backpack:before{content:""}.ph.ph-backspace:before{content:""}.ph.ph-bag:before{content:""}.ph.ph-bag-simple:before{content:""}.ph.ph-balloon:before{content:""}.ph.ph-bandaids:before{content:""}.ph.ph-bank:before{content:""}.ph.ph-barbell:before{content:""}.ph.ph-barcode:before{content:""}.ph.ph-barn:before{content:""}.ph.ph-barricade:before{content:""}.ph.ph-baseball:before{content:""}.ph.ph-baseball-cap:before{content:""}.ph.ph-baseball-helmet:before{content:""}.ph.ph-basket:before{content:""}.ph.ph-basketball:before{content:""}.ph.ph-bathtub:before{content:""}.ph.ph-battery-charging:before{content:""}.ph.ph-battery-charging-vertical:before{content:""}.ph.ph-battery-empty:before{content:""}.ph.ph-battery-full:before{content:""}.ph.ph-battery-high:before{content:""}.ph.ph-battery-low:before{content:""}.ph.ph-battery-medium:before{content:""}.ph.ph-battery-plus:before{content:""}.ph.ph-battery-plus-vertical:before{content:""}.ph.ph-battery-vertical-empty:before{content:""}.ph.ph-battery-vertical-full:before{content:""}.ph.ph-battery-vertical-high:before{content:""}.ph.ph-battery-vertical-low:before{content:""}.ph.ph-battery-vertical-medium:before{content:""}.ph.ph-battery-warning:before{content:""}.ph.ph-battery-warning-vertical:before{content:""}.ph.ph-beach-ball:before{content:""}.ph.ph-beanie:before{content:""}.ph.ph-bed:before{content:""}.ph.ph-beer-bottle:before{content:""}.ph.ph-beer-stein:before{content:""}.ph.ph-behance-logo:before{content:""}.ph.ph-bell:before{content:""}.ph.ph-bell-ringing:before{content:""}.ph.ph-bell-simple:before{content:""}.ph.ph-bell-simple-ringing:before{content:""}.ph.ph-bell-simple-slash:before{content:""}.ph.ph-bell-simple-z:before{content:""}.ph.ph-bell-slash:before{content:""}.ph.ph-bell-z:before{content:""}.ph.ph-belt:before{content:""}.ph.ph-bezier-curve:before{content:""}.ph.ph-bicycle:before{content:""}.ph.ph-binary:before{content:""}.ph.ph-binoculars:before{content:""}.ph.ph-biohazard:before{content:""}.ph.ph-bird:before{content:""}.ph.ph-blueprint:before{content:""}.ph.ph-bluetooth:before{content:""}.ph.ph-bluetooth-connected:before{content:""}.ph.ph-bluetooth-slash:before{content:""}.ph.ph-bluetooth-x:before{content:""}.ph.ph-boat:before{content:""}.ph.ph-bomb:before{content:""}.ph.ph-bone:before{content:""}.ph.ph-book:before{content:""}.ph.ph-book-bookmark:before{content:""}.ph.ph-book-open:before{content:""}.ph.ph-book-open-text:before{content:""}.ph.ph-book-open-user:before{content:""}.ph.ph-bookmark:before{content:""}.ph.ph-bookmark-simple:before{content:""}.ph.ph-bookmarks:before{content:""}.ph.ph-bookmarks-simple:before{content:""}.ph.ph-books:before{content:""}.ph.ph-boot:before{content:""}.ph.ph-boules:before{content:""}.ph.ph-bounding-box:before{content:""}.ph.ph-bowl-food:before{content:""}.ph.ph-bowl-steam:before{content:""}.ph.ph-bowling-ball:before{content:""}.ph.ph-box-arrow-down:before{content:""}.ph.ph-archive-box:before{content:""}.ph.ph-box-arrow-up:before{content:""}.ph.ph-boxing-glove:before{content:""}.ph.ph-brackets-angle:before{content:""}.ph.ph-brackets-curly:before{content:""}.ph.ph-brackets-round:before{content:""}.ph.ph-brackets-square:before{content:""}.ph.ph-brain:before{content:""}.ph.ph-brandy:before{content:""}.ph.ph-bread:before{content:""}.ph.ph-bridge:before{content:""}.ph.ph-briefcase:before{content:""}.ph.ph-briefcase-metal:before{content:""}.ph.ph-broadcast:before{content:""}.ph.ph-broom:before{content:""}.ph.ph-browser:before{content:""}.ph.ph-browsers:before{content:""}.ph.ph-bug:before{content:""}.ph.ph-bug-beetle:before{content:""}.ph.ph-bug-droid:before{content:""}.ph.ph-building:before{content:""}.ph.ph-building-apartment:before{content:""}.ph.ph-building-office:before{content:""}.ph.ph-buildings:before{content:""}.ph.ph-bulldozer:before{content:""}.ph.ph-bus:before{content:""}.ph.ph-butterfly:before{content:""}.ph.ph-cable-car:before{content:""}.ph.ph-cactus:before{content:""}.ph.ph-cake:before{content:""}.ph.ph-calculator:before{content:""}.ph.ph-calendar:before{content:""}.ph.ph-calendar-blank:before{content:""}.ph.ph-calendar-check:before{content:""}.ph.ph-calendar-dot:before{content:""}.ph.ph-calendar-dots:before{content:""}.ph.ph-calendar-heart:before{content:""}.ph.ph-calendar-minus:before{content:""}.ph.ph-calendar-plus:before{content:""}.ph.ph-calendar-slash:before{content:""}.ph.ph-calendar-star:before{content:""}.ph.ph-calendar-x:before{content:""}.ph.ph-call-bell:before{content:""}.ph.ph-camera:before{content:""}.ph.ph-camera-plus:before{content:""}.ph.ph-camera-rotate:before{content:""}.ph.ph-camera-slash:before{content:""}.ph.ph-campfire:before{content:""}.ph.ph-car:before{content:""}.ph.ph-car-battery:before{content:""}.ph.ph-car-profile:before{content:""}.ph.ph-car-simple:before{content:""}.ph.ph-cardholder:before{content:""}.ph.ph-cards:before{content:""}.ph.ph-cards-three:before{content:""}.ph.ph-caret-circle-double-down:before{content:""}.ph.ph-caret-circle-double-left:before{content:""}.ph.ph-caret-circle-double-right:before{content:""}.ph.ph-caret-circle-double-up:before{content:""}.ph.ph-caret-circle-down:before{content:""}.ph.ph-caret-circle-left:before{content:""}.ph.ph-caret-circle-right:before{content:""}.ph.ph-caret-circle-up:before{content:""}.ph.ph-caret-circle-up-down:before{content:""}.ph.ph-caret-double-down:before{content:""}.ph.ph-caret-double-left:before{content:""}.ph.ph-caret-double-right:before{content:""}.ph.ph-caret-double-up:before{content:""}.ph.ph-caret-down:before{content:""}.ph.ph-caret-left:before{content:""}.ph.ph-caret-line-down:before{content:""}.ph.ph-caret-line-left:before{content:""}.ph.ph-caret-line-right:before{content:""}.ph.ph-caret-line-up:before{content:""}.ph.ph-caret-right:before{content:""}.ph.ph-caret-up:before{content:""}.ph.ph-caret-up-down:before{content:""}.ph.ph-carrot:before{content:""}.ph.ph-cash-register:before{content:""}.ph.ph-cassette-tape:before{content:""}.ph.ph-castle-turret:before{content:""}.ph.ph-cat:before{content:""}.ph.ph-cell-signal-full:before{content:""}.ph.ph-cell-signal-high:before{content:""}.ph.ph-cell-signal-low:before{content:""}.ph.ph-cell-signal-medium:before{content:""}.ph.ph-cell-signal-none:before{content:""}.ph.ph-cell-signal-slash:before{content:""}.ph.ph-cell-signal-x:before{content:""}.ph.ph-cell-tower:before{content:""}.ph.ph-certificate:before{content:""}.ph.ph-chair:before{content:""}.ph.ph-chalkboard:before{content:""}.ph.ph-chalkboard-simple:before{content:""}.ph.ph-chalkboard-teacher:before{content:""}.ph.ph-champagne:before{content:""}.ph.ph-charging-station:before{content:""}.ph.ph-chart-bar:before{content:""}.ph.ph-chart-bar-horizontal:before{content:""}.ph.ph-chart-donut:before{content:""}.ph.ph-chart-line:before{content:""}.ph.ph-chart-line-down:before{content:""}.ph.ph-chart-line-up:before{content:""}.ph.ph-chart-pie:before{content:""}.ph.ph-chart-pie-slice:before{content:""}.ph.ph-chart-polar:before{content:""}.ph.ph-chart-scatter:before{content:""}.ph.ph-chat:before{content:""}.ph.ph-chat-centered:before{content:""}.ph.ph-chat-centered-dots:before{content:""}.ph.ph-chat-centered-slash:before{content:""}.ph.ph-chat-centered-text:before{content:""}.ph.ph-chat-circle:before{content:""}.ph.ph-chat-circle-dots:before{content:""}.ph.ph-chat-circle-slash:before{content:""}.ph.ph-chat-circle-text:before{content:""}.ph.ph-chat-dots:before{content:""}.ph.ph-chat-slash:before{content:""}.ph.ph-chat-teardrop:before{content:""}.ph.ph-chat-teardrop-dots:before{content:""}.ph.ph-chat-teardrop-slash:before{content:""}.ph.ph-chat-teardrop-text:before{content:""}.ph.ph-chat-text:before{content:""}.ph.ph-chats:before{content:""}.ph.ph-chats-circle:before{content:""}.ph.ph-chats-teardrop:before{content:""}.ph.ph-check:before{content:""}.ph.ph-check-circle:before{content:""}.ph.ph-check-fat:before{content:""}.ph.ph-check-square:before{content:""}.ph.ph-check-square-offset:before{content:""}.ph.ph-checkerboard:before{content:""}.ph.ph-checks:before{content:""}.ph.ph-cheers:before{content:""}.ph.ph-cheese:before{content:""}.ph.ph-chef-hat:before{content:""}.ph.ph-cherries:before{content:""}.ph.ph-church:before{content:""}.ph.ph-cigarette:before{content:""}.ph.ph-cigarette-slash:before{content:""}.ph.ph-circle:before{content:""}.ph.ph-circle-dashed:before{content:""}.ph.ph-circle-half:before{content:""}.ph.ph-circle-half-tilt:before{content:""}.ph.ph-circle-notch:before{content:""}.ph.ph-circles-four:before{content:""}.ph.ph-circles-three:before{content:""}.ph.ph-circles-three-plus:before{content:""}.ph.ph-circuitry:before{content:""}.ph.ph-city:before{content:""}.ph.ph-clipboard:before{content:""}.ph.ph-clipboard-text:before{content:""}.ph.ph-clock:before{content:""}.ph.ph-clock-afternoon:before{content:""}.ph.ph-clock-clockwise:before{content:""}.ph.ph-clock-countdown:before{content:""}.ph.ph-clock-counter-clockwise:before{content:""}.ph.ph-clock-user:before{content:""}.ph.ph-closed-captioning:before{content:""}.ph.ph-cloud:before{content:""}.ph.ph-cloud-arrow-down:before{content:""}.ph.ph-cloud-arrow-up:before{content:""}.ph.ph-cloud-check:before{content:""}.ph.ph-cloud-fog:before{content:""}.ph.ph-cloud-lightning:before{content:""}.ph.ph-cloud-moon:before{content:""}.ph.ph-cloud-rain:before{content:""}.ph.ph-cloud-slash:before{content:""}.ph.ph-cloud-snow:before{content:""}.ph.ph-cloud-sun:before{content:""}.ph.ph-cloud-warning:before{content:""}.ph.ph-cloud-x:before{content:""}.ph.ph-clover:before{content:""}.ph.ph-club:before{content:""}.ph.ph-coat-hanger:before{content:""}.ph.ph-coda-logo:before{content:""}.ph.ph-code:before{content:""}.ph.ph-code-block:before{content:""}.ph.ph-code-simple:before{content:""}.ph.ph-codepen-logo:before{content:""}.ph.ph-codesandbox-logo:before{content:""}.ph.ph-coffee:before{content:""}.ph.ph-coffee-bean:before{content:""}.ph.ph-coin:before{content:""}.ph.ph-coin-vertical:before{content:""}.ph.ph-coins:before{content:""}.ph.ph-columns:before{content:""}.ph.ph-columns-plus-left:before{content:""}.ph.ph-columns-plus-right:before{content:""}.ph.ph-command:before{content:""}.ph.ph-compass:before{content:""}.ph.ph-compass-rose:before{content:""}.ph.ph-compass-tool:before{content:""}.ph.ph-computer-tower:before{content:""}.ph.ph-confetti:before{content:""}.ph.ph-contactless-payment:before{content:""}.ph.ph-control:before{content:""}.ph.ph-cookie:before{content:""}.ph.ph-cooking-pot:before{content:""}.ph.ph-copy:before{content:""}.ph.ph-copy-simple:before{content:""}.ph.ph-copyleft:before{content:""}.ph.ph-copyright:before{content:""}.ph.ph-corners-in:before{content:""}.ph.ph-corners-out:before{content:""}.ph.ph-couch:before{content:""}.ph.ph-court-basketball:before{content:""}.ph.ph-cow:before{content:""}.ph.ph-cowboy-hat:before{content:""}.ph.ph-cpu:before{content:""}.ph.ph-crane:before{content:""}.ph.ph-crane-tower:before{content:""}.ph.ph-credit-card:before{content:""}.ph.ph-cricket:before{content:""}.ph.ph-crop:before{content:""}.ph.ph-cross:before{content:""}.ph.ph-crosshair:before{content:""}.ph.ph-crosshair-simple:before{content:""}.ph.ph-crown:before{content:""}.ph.ph-crown-cross:before{content:""}.ph.ph-crown-simple:before{content:""}.ph.ph-cube:before{content:""}.ph.ph-cube-focus:before{content:""}.ph.ph-cube-transparent:before{content:""}.ph.ph-currency-btc:before{content:""}.ph.ph-currency-circle-dollar:before{content:""}.ph.ph-currency-cny:before{content:""}.ph.ph-currency-dollar:before{content:""}.ph.ph-currency-dollar-simple:before{content:""}.ph.ph-currency-eth:before{content:""}.ph.ph-currency-eur:before{content:""}.ph.ph-currency-gbp:before{content:""}.ph.ph-currency-inr:before{content:""}.ph.ph-currency-jpy:before{content:""}.ph.ph-currency-krw:before{content:""}.ph.ph-currency-kzt:before{content:""}.ph.ph-currency-ngn:before{content:""}.ph.ph-currency-rub:before{content:""}.ph.ph-cursor:before{content:""}.ph.ph-cursor-click:before{content:""}.ph.ph-cursor-text:before{content:""}.ph.ph-cylinder:before{content:""}.ph.ph-database:before{content:""}.ph.ph-desk:before{content:""}.ph.ph-desktop:before{content:""}.ph.ph-desktop-tower:before{content:""}.ph.ph-detective:before{content:""}.ph.ph-dev-to-logo:before{content:""}.ph.ph-device-mobile:before{content:""}.ph.ph-device-mobile-camera:before{content:""}.ph.ph-device-mobile-slash:before{content:""}.ph.ph-device-mobile-speaker:before{content:""}.ph.ph-device-rotate:before{content:""}.ph.ph-device-tablet:before{content:""}.ph.ph-device-tablet-camera:before{content:""}.ph.ph-device-tablet-speaker:before{content:""}.ph.ph-devices:before{content:""}.ph.ph-diamond:before{content:""}.ph.ph-diamonds-four:before{content:""}.ph.ph-dice-five:before{content:""}.ph.ph-dice-four:before{content:""}.ph.ph-dice-one:before{content:""}.ph.ph-dice-six:before{content:""}.ph.ph-dice-three:before{content:""}.ph.ph-dice-two:before{content:""}.ph.ph-disc:before{content:""}.ph.ph-disco-ball:before{content:""}.ph.ph-discord-logo:before{content:""}.ph.ph-divide:before{content:""}.ph.ph-dna:before{content:""}.ph.ph-dog:before{content:""}.ph.ph-door:before{content:""}.ph.ph-door-open:before{content:""}.ph.ph-dot:before{content:""}.ph.ph-dot-outline:before{content:""}.ph.ph-dots-nine:before{content:""}.ph.ph-dots-six:before{content:""}.ph.ph-dots-six-vertical:before{content:""}.ph.ph-dots-three:before{content:""}.ph.ph-dots-three-circle:before{content:""}.ph.ph-dots-three-circle-vertical:before{content:""}.ph.ph-dots-three-outline:before{content:""}.ph.ph-dots-three-outline-vertical:before{content:""}.ph.ph-dots-three-vertical:before{content:""}.ph.ph-download:before{content:""}.ph.ph-download-simple:before{content:""}.ph.ph-dress:before{content:""}.ph.ph-dresser:before{content:""}.ph.ph-dribbble-logo:before{content:""}.ph.ph-drone:before{content:""}.ph.ph-drop:before{content:""}.ph.ph-drop-half:before{content:""}.ph.ph-drop-half-bottom:before{content:""}.ph.ph-drop-simple:before{content:""}.ph.ph-drop-slash:before{content:""}.ph.ph-dropbox-logo:before{content:""}.ph.ph-ear:before{content:""}.ph.ph-ear-slash:before{content:""}.ph.ph-egg:before{content:""}.ph.ph-egg-crack:before{content:""}.ph.ph-eject:before{content:""}.ph.ph-eject-simple:before{content:""}.ph.ph-elevator:before{content:""}.ph.ph-empty:before{content:""}.ph.ph-engine:before{content:""}.ph.ph-envelope:before{content:""}.ph.ph-envelope-open:before{content:""}.ph.ph-envelope-simple:before{content:""}.ph.ph-envelope-simple-open:before{content:""}.ph.ph-equalizer:before{content:""}.ph.ph-equals:before{content:""}.ph.ph-eraser:before{content:""}.ph.ph-escalator-down:before{content:""}.ph.ph-escalator-up:before{content:""}.ph.ph-exam:before{content:""}.ph.ph-exclamation-mark:before{content:""}.ph.ph-exclude:before{content:""}.ph.ph-exclude-square:before{content:""}.ph.ph-export:before{content:""}.ph.ph-eye:before{content:""}.ph.ph-eye-closed:before{content:""}.ph.ph-eye-slash:before{content:""}.ph.ph-eyedropper:before{content:""}.ph.ph-eyedropper-sample:before{content:""}.ph.ph-eyeglasses:before{content:""}.ph.ph-eyes:before{content:""}.ph.ph-face-mask:before{content:""}.ph.ph-facebook-logo:before{content:""}.ph.ph-factory:before{content:""}.ph.ph-faders:before{content:""}.ph.ph-faders-horizontal:before{content:""}.ph.ph-fallout-shelter:before{content:""}.ph.ph-fan:before{content:""}.ph.ph-farm:before{content:""}.ph.ph-fast-forward:before{content:""}.ph.ph-fast-forward-circle:before{content:""}.ph.ph-feather:before{content:""}.ph.ph-fediverse-logo:before{content:""}.ph.ph-figma-logo:before{content:""}.ph.ph-file:before{content:""}.ph.ph-file-archive:before{content:""}.ph.ph-file-arrow-down:before{content:""}.ph.ph-file-arrow-up:before{content:""}.ph.ph-file-audio:before{content:""}.ph.ph-file-c:before{content:""}.ph.ph-file-c-sharp:before{content:""}.ph.ph-file-cloud:before{content:""}.ph.ph-file-code:before{content:""}.ph.ph-file-cpp:before{content:""}.ph.ph-file-css:before{content:""}.ph.ph-file-csv:before{content:""}.ph.ph-file-dashed:before{content:""}.ph.ph-file-dotted:before{content:""}.ph.ph-file-doc:before{content:""}.ph.ph-file-html:before{content:""}.ph.ph-file-image:before{content:""}.ph.ph-file-ini:before{content:""}.ph.ph-file-jpg:before{content:""}.ph.ph-file-js:before{content:""}.ph.ph-file-jsx:before{content:""}.ph.ph-file-lock:before{content:""}.ph.ph-file-magnifying-glass:before{content:""}.ph.ph-file-search:before{content:""}.ph.ph-file-md:before{content:""}.ph.ph-file-minus:before{content:""}.ph.ph-file-pdf:before{content:""}.ph.ph-file-plus:before{content:""}.ph.ph-file-png:before{content:""}.ph.ph-file-ppt:before{content:""}.ph.ph-file-py:before{content:""}.ph.ph-file-rs:before{content:""}.ph.ph-file-sql:before{content:""}.ph.ph-file-svg:before{content:""}.ph.ph-file-text:before{content:""}.ph.ph-file-ts:before{content:""}.ph.ph-file-tsx:before{content:""}.ph.ph-file-txt:before{content:""}.ph.ph-file-video:before{content:""}.ph.ph-file-vue:before{content:""}.ph.ph-file-x:before{content:""}.ph.ph-file-xls:before{content:""}.ph.ph-file-zip:before{content:""}.ph.ph-files:before{content:""}.ph.ph-film-reel:before{content:""}.ph.ph-film-script:before{content:""}.ph.ph-film-slate:before{content:""}.ph.ph-film-strip:before{content:""}.ph.ph-fingerprint:before{content:""}.ph.ph-fingerprint-simple:before{content:""}.ph.ph-finn-the-human:before{content:""}.ph.ph-fire:before{content:""}.ph.ph-fire-extinguisher:before{content:""}.ph.ph-fire-simple:before{content:""}.ph.ph-fire-truck:before{content:""}.ph.ph-first-aid:before{content:""}.ph.ph-first-aid-kit:before{content:""}.ph.ph-fish:before{content:""}.ph.ph-fish-simple:before{content:""}.ph.ph-flag:before{content:""}.ph.ph-flag-banner:before{content:""}.ph.ph-flag-banner-fold:before{content:""}.ph.ph-flag-checkered:before{content:""}.ph.ph-flag-pennant:before{content:""}.ph.ph-flame:before{content:""}.ph.ph-flashlight:before{content:""}.ph.ph-flask:before{content:""}.ph.ph-flip-horizontal:before{content:""}.ph.ph-flip-vertical:before{content:""}.ph.ph-floppy-disk:before{content:""}.ph.ph-floppy-disk-back:before{content:""}.ph.ph-flow-arrow:before{content:""}.ph.ph-flower:before{content:""}.ph.ph-flower-lotus:before{content:""}.ph.ph-flower-tulip:before{content:""}.ph.ph-flying-saucer:before{content:""}.ph.ph-folder:before{content:""}.ph.ph-folder-notch:before{content:""}.ph.ph-folder-dashed:before{content:""}.ph.ph-folder-dotted:before{content:""}.ph.ph-folder-lock:before{content:""}.ph.ph-folder-minus:before{content:""}.ph.ph-folder-notch-minus:before{content:""}.ph.ph-folder-open:before{content:""}.ph.ph-folder-notch-open:before{content:""}.ph.ph-folder-plus:before{content:""}.ph.ph-folder-notch-plus:before{content:""}.ph.ph-folder-simple:before{content:""}.ph.ph-folder-simple-dashed:before{content:""}.ph.ph-folder-simple-dotted:before{content:""}.ph.ph-folder-simple-lock:before{content:""}.ph.ph-folder-simple-minus:before{content:""}.ph.ph-folder-simple-plus:before{content:""}.ph.ph-folder-simple-star:before{content:""}.ph.ph-folder-simple-user:before{content:""}.ph.ph-folder-star:before{content:""}.ph.ph-folder-user:before{content:""}.ph.ph-folders:before{content:""}.ph.ph-football:before{content:""}.ph.ph-football-helmet:before{content:""}.ph.ph-footprints:before{content:""}.ph.ph-fork-knife:before{content:""}.ph.ph-four-k:before{content:""}.ph.ph-frame-corners:before{content:""}.ph.ph-framer-logo:before{content:""}.ph.ph-function:before{content:""}.ph.ph-funnel:before{content:""}.ph.ph-funnel-simple:before{content:""}.ph.ph-funnel-simple-x:before{content:""}.ph.ph-funnel-x:before{content:""}.ph.ph-game-controller:before{content:""}.ph.ph-garage:before{content:""}.ph.ph-gas-can:before{content:""}.ph.ph-gas-pump:before{content:""}.ph.ph-gauge:before{content:""}.ph.ph-gavel:before{content:""}.ph.ph-gear:before{content:""}.ph.ph-gear-fine:before{content:""}.ph.ph-gear-six:before{content:""}.ph.ph-gender-female:before{content:""}.ph.ph-gender-intersex:before{content:""}.ph.ph-gender-male:before{content:""}.ph.ph-gender-neuter:before{content:""}.ph.ph-gender-nonbinary:before{content:""}.ph.ph-gender-transgender:before{content:""}.ph.ph-ghost:before{content:""}.ph.ph-gif:before{content:""}.ph.ph-gift:before{content:""}.ph.ph-git-branch:before{content:""}.ph.ph-git-commit:before{content:""}.ph.ph-git-diff:before{content:""}.ph.ph-git-fork:before{content:""}.ph.ph-git-merge:before{content:""}.ph.ph-git-pull-request:before{content:""}.ph.ph-github-logo:before{content:""}.ph.ph-gitlab-logo:before{content:""}.ph.ph-gitlab-logo-simple:before{content:""}.ph.ph-globe:before{content:""}.ph.ph-globe-hemisphere-east:before{content:""}.ph.ph-globe-hemisphere-west:before{content:""}.ph.ph-globe-simple:before{content:""}.ph.ph-globe-simple-x:before{content:""}.ph.ph-globe-stand:before{content:""}.ph.ph-globe-x:before{content:""}.ph.ph-goggles:before{content:""}.ph.ph-golf:before{content:""}.ph.ph-goodreads-logo:before{content:""}.ph.ph-google-cardboard-logo:before{content:""}.ph.ph-google-chrome-logo:before{content:""}.ph.ph-google-drive-logo:before{content:""}.ph.ph-google-logo:before{content:""}.ph.ph-google-photos-logo:before{content:""}.ph.ph-google-play-logo:before{content:""}.ph.ph-google-podcasts-logo:before{content:""}.ph.ph-gps:before{content:""}.ph.ph-gps-fix:before{content:""}.ph.ph-gps-slash:before{content:""}.ph.ph-gradient:before{content:""}.ph.ph-graduation-cap:before{content:""}.ph.ph-grains:before{content:""}.ph.ph-grains-slash:before{content:""}.ph.ph-graph:before{content:""}.ph.ph-graphics-card:before{content:""}.ph.ph-greater-than:before{content:""}.ph.ph-greater-than-or-equal:before{content:""}.ph.ph-grid-four:before{content:""}.ph.ph-grid-nine:before{content:""}.ph.ph-guitar:before{content:""}.ph.ph-hair-dryer:before{content:""}.ph.ph-hamburger:before{content:""}.ph.ph-hammer:before{content:""}.ph.ph-hand:before{content:""}.ph.ph-hand-arrow-down:before{content:""}.ph.ph-hand-arrow-up:before{content:""}.ph.ph-hand-coins:before{content:""}.ph.ph-hand-deposit:before{content:""}.ph.ph-hand-eye:before{content:""}.ph.ph-hand-fist:before{content:""}.ph.ph-hand-grabbing:before{content:""}.ph.ph-hand-heart:before{content:""}.ph.ph-hand-palm:before{content:""}.ph.ph-hand-peace:before{content:""}.ph.ph-hand-pointing:before{content:""}.ph.ph-hand-soap:before{content:""}.ph.ph-hand-swipe-left:before{content:""}.ph.ph-hand-swipe-right:before{content:""}.ph.ph-hand-tap:before{content:""}.ph.ph-hand-waving:before{content:""}.ph.ph-hand-withdraw:before{content:""}.ph.ph-handbag:before{content:""}.ph.ph-handbag-simple:before{content:""}.ph.ph-hands-clapping:before{content:""}.ph.ph-hands-praying:before{content:""}.ph.ph-handshake:before{content:""}.ph.ph-hard-drive:before{content:""}.ph.ph-hard-drives:before{content:""}.ph.ph-hard-hat:before{content:""}.ph.ph-hash:before{content:""}.ph.ph-hash-straight:before{content:""}.ph.ph-head-circuit:before{content:""}.ph.ph-headlights:before{content:""}.ph.ph-headphones:before{content:""}.ph.ph-headset:before{content:""}.ph.ph-heart:before{content:""}.ph.ph-heart-break:before{content:""}.ph.ph-heart-half:before{content:""}.ph.ph-heart-straight:before{content:""}.ph.ph-heart-straight-break:before{content:""}.ph.ph-heartbeat:before{content:""}.ph.ph-hexagon:before{content:""}.ph.ph-high-definition:before{content:""}.ph.ph-high-heel:before{content:""}.ph.ph-highlighter:before{content:""}.ph.ph-highlighter-circle:before{content:""}.ph.ph-hockey:before{content:""}.ph.ph-hoodie:before{content:""}.ph.ph-horse:before{content:""}.ph.ph-hospital:before{content:""}.ph.ph-hourglass:before{content:""}.ph.ph-hourglass-high:before{content:""}.ph.ph-hourglass-low:before{content:""}.ph.ph-hourglass-medium:before{content:""}.ph.ph-hourglass-simple:before{content:""}.ph.ph-hourglass-simple-high:before{content:""}.ph.ph-hourglass-simple-low:before{content:""}.ph.ph-hourglass-simple-medium:before{content:""}.ph.ph-house:before{content:""}.ph.ph-house-line:before{content:""}.ph.ph-house-simple:before{content:""}.ph.ph-hurricane:before{content:""}.ph.ph-ice-cream:before{content:""}.ph.ph-identification-badge:before{content:""}.ph.ph-identification-card:before{content:""}.ph.ph-image:before{content:""}.ph.ph-image-broken:before{content:""}.ph.ph-image-square:before{content:""}.ph.ph-images:before{content:""}.ph.ph-images-square:before{content:""}.ph.ph-infinity:before{content:""}.ph.ph-lemniscate:before{content:""}.ph.ph-info:before{content:""}.ph.ph-instagram-logo:before{content:""}.ph.ph-intersect:before{content:""}.ph.ph-intersect-square:before{content:""}.ph.ph-intersect-three:before{content:""}.ph.ph-intersection:before{content:""}.ph.ph-invoice:before{content:""}.ph.ph-island:before{content:""}.ph.ph-jar:before{content:""}.ph.ph-jar-label:before{content:""}.ph.ph-jeep:before{content:""}.ph.ph-joystick:before{content:""}.ph.ph-kanban:before{content:""}.ph.ph-key:before{content:""}.ph.ph-key-return:before{content:""}.ph.ph-keyboard:before{content:""}.ph.ph-keyhole:before{content:""}.ph.ph-knife:before{content:""}.ph.ph-ladder:before{content:""}.ph.ph-ladder-simple:before{content:""}.ph.ph-lamp:before{content:""}.ph.ph-lamp-pendant:before{content:""}.ph.ph-laptop:before{content:""}.ph.ph-lasso:before{content:""}.ph.ph-lastfm-logo:before{content:""}.ph.ph-layout:before{content:""}.ph.ph-leaf:before{content:""}.ph.ph-lectern:before{content:""}.ph.ph-lego:before{content:""}.ph.ph-lego-smiley:before{content:""}.ph.ph-less-than:before{content:""}.ph.ph-less-than-or-equal:before{content:""}.ph.ph-letter-circle-h:before{content:""}.ph.ph-letter-circle-p:before{content:""}.ph.ph-letter-circle-v:before{content:""}.ph.ph-lifebuoy:before{content:""}.ph.ph-lightbulb:before{content:""}.ph.ph-lightbulb-filament:before{content:""}.ph.ph-lighthouse:before{content:""}.ph.ph-lightning:before{content:""}.ph.ph-lightning-a:before{content:""}.ph.ph-lightning-slash:before{content:""}.ph.ph-line-segment:before{content:""}.ph.ph-line-segments:before{content:""}.ph.ph-line-vertical:before{content:""}.ph.ph-link:before{content:""}.ph.ph-link-break:before{content:""}.ph.ph-link-simple:before{content:""}.ph.ph-link-simple-break:before{content:""}.ph.ph-link-simple-horizontal:before{content:""}.ph.ph-link-simple-horizontal-break:before{content:""}.ph.ph-linkedin-logo:before{content:""}.ph.ph-linktree-logo:before{content:""}.ph.ph-linux-logo:before{content:""}.ph.ph-list:before{content:""}.ph.ph-list-bullets:before{content:""}.ph.ph-list-checks:before{content:""}.ph.ph-list-dashes:before{content:""}.ph.ph-list-heart:before{content:""}.ph.ph-list-magnifying-glass:before{content:""}.ph.ph-list-numbers:before{content:""}.ph.ph-list-plus:before{content:""}.ph.ph-list-star:before{content:""}.ph.ph-lock:before{content:""}.ph.ph-lock-key:before{content:""}.ph.ph-lock-key-open:before{content:""}.ph.ph-lock-laminated:before{content:""}.ph.ph-lock-laminated-open:before{content:""}.ph.ph-lock-open:before{content:""}.ph.ph-lock-simple:before{content:""}.ph.ph-lock-simple-open:before{content:""}.ph.ph-lockers:before{content:""}.ph.ph-log:before{content:""}.ph.ph-magic-wand:before{content:""}.ph.ph-magnet:before{content:""}.ph.ph-magnet-straight:before{content:""}.ph.ph-magnifying-glass:before{content:""}.ph.ph-magnifying-glass-minus:before{content:""}.ph.ph-magnifying-glass-plus:before{content:""}.ph.ph-mailbox:before{content:""}.ph.ph-map-pin:before{content:""}.ph.ph-map-pin-area:before{content:""}.ph.ph-map-pin-line:before{content:""}.ph.ph-map-pin-plus:before{content:""}.ph.ph-map-pin-simple:before{content:""}.ph.ph-map-pin-simple-area:before{content:""}.ph.ph-map-pin-simple-line:before{content:""}.ph.ph-map-trifold:before{content:""}.ph.ph-markdown-logo:before{content:""}.ph.ph-marker-circle:before{content:""}.ph.ph-martini:before{content:""}.ph.ph-mask-happy:before{content:""}.ph.ph-mask-sad:before{content:""}.ph.ph-mastodon-logo:before{content:""}.ph.ph-math-operations:before{content:""}.ph.ph-matrix-logo:before{content:""}.ph.ph-medal:before{content:""}.ph.ph-medal-military:before{content:""}.ph.ph-medium-logo:before{content:""}.ph.ph-megaphone:before{content:""}.ph.ph-megaphone-simple:before{content:""}.ph.ph-member-of:before{content:""}.ph.ph-memory:before{content:""}.ph.ph-messenger-logo:before{content:""}.ph.ph-meta-logo:before{content:""}.ph.ph-meteor:before{content:""}.ph.ph-metronome:before{content:""}.ph.ph-microphone:before{content:""}.ph.ph-microphone-slash:before{content:""}.ph.ph-microphone-stage:before{content:""}.ph.ph-microscope:before{content:""}.ph.ph-microsoft-excel-logo:before{content:""}.ph.ph-microsoft-outlook-logo:before{content:""}.ph.ph-microsoft-powerpoint-logo:before{content:""}.ph.ph-microsoft-teams-logo:before{content:""}.ph.ph-microsoft-word-logo:before{content:""}.ph.ph-minus:before{content:""}.ph.ph-minus-circle:before{content:""}.ph.ph-minus-square:before{content:""}.ph.ph-money:before{content:""}.ph.ph-money-wavy:before{content:""}.ph.ph-monitor:before{content:""}.ph.ph-monitor-arrow-up:before{content:""}.ph.ph-monitor-play:before{content:""}.ph.ph-moon:before{content:""}.ph.ph-moon-stars:before{content:""}.ph.ph-moped:before{content:""}.ph.ph-moped-front:before{content:""}.ph.ph-mosque:before{content:""}.ph.ph-motorcycle:before{content:""}.ph.ph-mountains:before{content:""}.ph.ph-mouse:before{content:""}.ph.ph-mouse-left-click:before{content:""}.ph.ph-mouse-middle-click:before{content:""}.ph.ph-mouse-right-click:before{content:""}.ph.ph-mouse-scroll:before{content:""}.ph.ph-mouse-simple:before{content:""}.ph.ph-music-note:before{content:""}.ph.ph-music-note-simple:before{content:""}.ph.ph-music-notes:before{content:""}.ph.ph-music-notes-minus:before{content:""}.ph.ph-music-notes-plus:before{content:""}.ph.ph-music-notes-simple:before{content:""}.ph.ph-navigation-arrow:before{content:""}.ph.ph-needle:before{content:""}.ph.ph-network:before{content:""}.ph.ph-network-slash:before{content:""}.ph.ph-network-x:before{content:""}.ph.ph-newspaper:before{content:""}.ph.ph-newspaper-clipping:before{content:""}.ph.ph-not-equals:before{content:""}.ph.ph-not-member-of:before{content:""}.ph.ph-not-subset-of:before{content:""}.ph.ph-not-superset-of:before{content:""}.ph.ph-notches:before{content:""}.ph.ph-note:before{content:""}.ph.ph-note-blank:before{content:""}.ph.ph-note-pencil:before{content:""}.ph.ph-notebook:before{content:""}.ph.ph-notepad:before{content:""}.ph.ph-notification:before{content:""}.ph.ph-notion-logo:before{content:""}.ph.ph-nuclear-plant:before{content:""}.ph.ph-number-circle-eight:before{content:""}.ph.ph-number-circle-five:before{content:""}.ph.ph-number-circle-four:before{content:""}.ph.ph-number-circle-nine:before{content:""}.ph.ph-number-circle-one:before{content:""}.ph.ph-number-circle-seven:before{content:""}.ph.ph-number-circle-six:before{content:""}.ph.ph-number-circle-three:before{content:""}.ph.ph-number-circle-two:before{content:""}.ph.ph-number-circle-zero:before{content:""}.ph.ph-number-eight:before{content:""}.ph.ph-number-five:before{content:""}.ph.ph-number-four:before{content:""}.ph.ph-number-nine:before{content:""}.ph.ph-number-one:before{content:""}.ph.ph-number-seven:before{content:""}.ph.ph-number-six:before{content:""}.ph.ph-number-square-eight:before{content:""}.ph.ph-number-square-five:before{content:""}.ph.ph-number-square-four:before{content:""}.ph.ph-number-square-nine:before{content:""}.ph.ph-number-square-one:before{content:""}.ph.ph-number-square-seven:before{content:""}.ph.ph-number-square-six:before{content:""}.ph.ph-number-square-three:before{content:""}.ph.ph-number-square-two:before{content:""}.ph.ph-number-square-zero:before{content:""}.ph.ph-number-three:before{content:""}.ph.ph-number-two:before{content:""}.ph.ph-number-zero:before{content:""}.ph.ph-numpad:before{content:""}.ph.ph-nut:before{content:""}.ph.ph-ny-times-logo:before{content:""}.ph.ph-octagon:before{content:""}.ph.ph-office-chair:before{content:""}.ph.ph-onigiri:before{content:""}.ph.ph-open-ai-logo:before{content:""}.ph.ph-option:before{content:""}.ph.ph-orange:before{content:""}.ph.ph-orange-slice:before{content:""}.ph.ph-oven:before{content:""}.ph.ph-package:before{content:""}.ph.ph-paint-brush:before{content:""}.ph.ph-paint-brush-broad:before{content:""}.ph.ph-paint-brush-household:before{content:""}.ph.ph-paint-bucket:before{content:""}.ph.ph-paint-roller:before{content:""}.ph.ph-palette:before{content:""}.ph.ph-panorama:before{content:""}.ph.ph-pants:before{content:""}.ph.ph-paper-plane:before{content:""}.ph.ph-paper-plane-right:before{content:""}.ph.ph-paper-plane-tilt:before{content:""}.ph.ph-paperclip:before{content:""}.ph.ph-paperclip-horizontal:before{content:""}.ph.ph-parachute:before{content:""}.ph.ph-paragraph:before{content:""}.ph.ph-parallelogram:before{content:""}.ph.ph-park:before{content:""}.ph.ph-password:before{content:""}.ph.ph-path:before{content:""}.ph.ph-patreon-logo:before{content:""}.ph.ph-pause:before{content:""}.ph.ph-pause-circle:before{content:""}.ph.ph-paw-print:before{content:""}.ph.ph-paypal-logo:before{content:""}.ph.ph-peace:before{content:""}.ph.ph-pen:before{content:""}.ph.ph-pen-nib:before{content:""}.ph.ph-pen-nib-straight:before{content:""}.ph.ph-pencil:before{content:""}.ph.ph-pencil-circle:before{content:""}.ph.ph-pencil-line:before{content:""}.ph.ph-pencil-ruler:before{content:""}.ph.ph-pencil-simple:before{content:""}.ph.ph-pencil-simple-line:before{content:""}.ph.ph-pencil-simple-slash:before{content:""}.ph.ph-pencil-slash:before{content:""}.ph.ph-pentagon:before{content:""}.ph.ph-pentagram:before{content:""}.ph.ph-pepper:before{content:""}.ph.ph-percent:before{content:""}.ph.ph-person:before{content:""}.ph.ph-person-arms-spread:before{content:""}.ph.ph-person-simple:before{content:""}.ph.ph-person-simple-bike:before{content:""}.ph.ph-person-simple-circle:before{content:""}.ph.ph-person-simple-hike:before{content:""}.ph.ph-person-simple-run:before{content:""}.ph.ph-person-simple-ski:before{content:""}.ph.ph-person-simple-snowboard:before{content:""}.ph.ph-person-simple-swim:before{content:""}.ph.ph-person-simple-tai-chi:before{content:""}.ph.ph-person-simple-throw:before{content:""}.ph.ph-person-simple-walk:before{content:""}.ph.ph-perspective:before{content:""}.ph.ph-phone:before{content:""}.ph.ph-phone-call:before{content:""}.ph.ph-phone-disconnect:before{content:""}.ph.ph-phone-incoming:before{content:""}.ph.ph-phone-list:before{content:""}.ph.ph-phone-outgoing:before{content:""}.ph.ph-phone-pause:before{content:""}.ph.ph-phone-plus:before{content:""}.ph.ph-phone-slash:before{content:""}.ph.ph-phone-transfer:before{content:""}.ph.ph-phone-x:before{content:""}.ph.ph-phosphor-logo:before{content:""}.ph.ph-pi:before{content:""}.ph.ph-piano-keys:before{content:""}.ph.ph-picnic-table:before{content:""}.ph.ph-picture-in-picture:before{content:""}.ph.ph-piggy-bank:before{content:""}.ph.ph-pill:before{content:""}.ph.ph-ping-pong:before{content:""}.ph.ph-pint-glass:before{content:""}.ph.ph-pinterest-logo:before{content:""}.ph.ph-pinwheel:before{content:""}.ph.ph-pipe:before{content:""}.ph.ph-pipe-wrench:before{content:""}.ph.ph-pix-logo:before{content:""}.ph.ph-pizza:before{content:""}.ph.ph-placeholder:before{content:""}.ph.ph-planet:before{content:""}.ph.ph-plant:before{content:""}.ph.ph-play:before{content:""}.ph.ph-play-circle:before{content:""}.ph.ph-play-pause:before{content:""}.ph.ph-playlist:before{content:""}.ph.ph-plug:before{content:""}.ph.ph-plug-charging:before{content:""}.ph.ph-plugs:before{content:""}.ph.ph-plugs-connected:before{content:""}.ph.ph-plus:before{content:""}.ph.ph-plus-circle:before{content:""}.ph.ph-plus-minus:before{content:""}.ph.ph-plus-square:before{content:""}.ph.ph-poker-chip:before{content:""}.ph.ph-police-car:before{content:""}.ph.ph-polygon:before{content:""}.ph.ph-popcorn:before{content:""}.ph.ph-popsicle:before{content:""}.ph.ph-potted-plant:before{content:""}.ph.ph-power:before{content:""}.ph.ph-prescription:before{content:""}.ph.ph-presentation:before{content:""}.ph.ph-presentation-chart:before{content:""}.ph.ph-printer:before{content:""}.ph.ph-prohibit:before{content:""}.ph.ph-prohibit-inset:before{content:""}.ph.ph-projector-screen:before{content:""}.ph.ph-projector-screen-chart:before{content:""}.ph.ph-pulse:before{content:""}.ph.ph-activity:before{content:""}.ph.ph-push-pin:before{content:""}.ph.ph-push-pin-simple:before{content:""}.ph.ph-push-pin-simple-slash:before{content:""}.ph.ph-push-pin-slash:before{content:""}.ph.ph-puzzle-piece:before{content:""}.ph.ph-qr-code:before{content:""}.ph.ph-question:before{content:""}.ph.ph-question-mark:before{content:""}.ph.ph-queue:before{content:""}.ph.ph-quotes:before{content:""}.ph.ph-rabbit:before{content:""}.ph.ph-racquet:before{content:""}.ph.ph-radical:before{content:""}.ph.ph-radio:before{content:""}.ph.ph-radio-button:before{content:""}.ph.ph-radioactive:before{content:""}.ph.ph-rainbow:before{content:""}.ph.ph-rainbow-cloud:before{content:""}.ph.ph-ranking:before{content:""}.ph.ph-read-cv-logo:before{content:""}.ph.ph-receipt:before{content:""}.ph.ph-receipt-x:before{content:""}.ph.ph-record:before{content:""}.ph.ph-rectangle:before{content:""}.ph.ph-rectangle-dashed:before{content:""}.ph.ph-recycle:before{content:""}.ph.ph-reddit-logo:before{content:""}.ph.ph-repeat:before{content:""}.ph.ph-repeat-once:before{content:""}.ph.ph-replit-logo:before{content:""}.ph.ph-resize:before{content:""}.ph.ph-rewind:before{content:""}.ph.ph-rewind-circle:before{content:""}.ph.ph-road-horizon:before{content:""}.ph.ph-robot:before{content:""}.ph.ph-rocket:before{content:""}.ph.ph-rocket-launch:before{content:""}.ph.ph-rows:before{content:""}.ph.ph-rows-plus-bottom:before{content:""}.ph.ph-rows-plus-top:before{content:""}.ph.ph-rss:before{content:""}.ph.ph-rss-simple:before{content:""}.ph.ph-rug:before{content:""}.ph.ph-ruler:before{content:""}.ph.ph-sailboat:before{content:""}.ph.ph-scales:before{content:""}.ph.ph-scan:before{content:""}.ph.ph-scan-smiley:before{content:""}.ph.ph-scissors:before{content:""}.ph.ph-scooter:before{content:""}.ph.ph-screencast:before{content:""}.ph.ph-screwdriver:before{content:""}.ph.ph-scribble:before{content:""}.ph.ph-scribble-loop:before{content:""}.ph.ph-scroll:before{content:""}.ph.ph-seal:before{content:""}.ph.ph-circle-wavy:before{content:""}.ph.ph-seal-check:before{content:""}.ph.ph-circle-wavy-check:before{content:""}.ph.ph-seal-percent:before{content:""}.ph.ph-seal-question:before{content:""}.ph.ph-circle-wavy-question:before{content:""}.ph.ph-seal-warning:before{content:""}.ph.ph-circle-wavy-warning:before{content:""}.ph.ph-seat:before{content:""}.ph.ph-seatbelt:before{content:""}.ph.ph-security-camera:before{content:""}.ph.ph-selection:before{content:""}.ph.ph-selection-all:before{content:""}.ph.ph-selection-background:before{content:""}.ph.ph-selection-foreground:before{content:""}.ph.ph-selection-inverse:before{content:""}.ph.ph-selection-plus:before{content:""}.ph.ph-selection-slash:before{content:""}.ph.ph-shapes:before{content:""}.ph.ph-share:before{content:""}.ph.ph-share-fat:before{content:""}.ph.ph-share-network:before{content:""}.ph.ph-shield:before{content:""}.ph.ph-shield-check:before{content:""}.ph.ph-shield-checkered:before{content:""}.ph.ph-shield-chevron:before{content:""}.ph.ph-shield-plus:before{content:""}.ph.ph-shield-slash:before{content:""}.ph.ph-shield-star:before{content:""}.ph.ph-shield-warning:before{content:""}.ph.ph-shipping-container:before{content:""}.ph.ph-shirt-folded:before{content:""}.ph.ph-shooting-star:before{content:""}.ph.ph-shopping-bag:before{content:""}.ph.ph-shopping-bag-open:before{content:""}.ph.ph-shopping-cart:before{content:""}.ph.ph-shopping-cart-simple:before{content:""}.ph.ph-shovel:before{content:""}.ph.ph-shower:before{content:""}.ph.ph-shrimp:before{content:""}.ph.ph-shuffle:before{content:""}.ph.ph-shuffle-angular:before{content:""}.ph.ph-shuffle-simple:before{content:""}.ph.ph-sidebar:before{content:""}.ph.ph-sidebar-simple:before{content:""}.ph.ph-sigma:before{content:""}.ph.ph-sign-in:before{content:""}.ph.ph-sign-out:before{content:""}.ph.ph-signature:before{content:""}.ph.ph-signpost:before{content:""}.ph.ph-sim-card:before{content:""}.ph.ph-siren:before{content:""}.ph.ph-sketch-logo:before{content:""}.ph.ph-skip-back:before{content:""}.ph.ph-skip-back-circle:before{content:""}.ph.ph-skip-forward:before{content:""}.ph.ph-skip-forward-circle:before{content:""}.ph.ph-skull:before{content:""}.ph.ph-skype-logo:before{content:""}.ph.ph-slack-logo:before{content:""}.ph.ph-sliders:before{content:""}.ph.ph-sliders-horizontal:before{content:""}.ph.ph-slideshow:before{content:""}.ph.ph-smiley:before{content:""}.ph.ph-smiley-angry:before{content:""}.ph.ph-smiley-blank:before{content:""}.ph.ph-smiley-meh:before{content:""}.ph.ph-smiley-melting:before{content:""}.ph.ph-smiley-nervous:before{content:""}.ph.ph-smiley-sad:before{content:""}.ph.ph-smiley-sticker:before{content:""}.ph.ph-smiley-wink:before{content:""}.ph.ph-smiley-x-eyes:before{content:""}.ph.ph-snapchat-logo:before{content:""}.ph.ph-sneaker:before{content:""}.ph.ph-sneaker-move:before{content:""}.ph.ph-snowflake:before{content:""}.ph.ph-soccer-ball:before{content:""}.ph.ph-sock:before{content:""}.ph.ph-solar-panel:before{content:""}.ph.ph-solar-roof:before{content:""}.ph.ph-sort-ascending:before{content:""}.ph.ph-sort-descending:before{content:""}.ph.ph-soundcloud-logo:before{content:""}.ph.ph-spade:before{content:""}.ph.ph-sparkle:before{content:""}.ph.ph-speaker-hifi:before{content:""}.ph.ph-speaker-high:before{content:""}.ph.ph-speaker-low:before{content:""}.ph.ph-speaker-none:before{content:""}.ph.ph-speaker-simple-high:before{content:""}.ph.ph-speaker-simple-low:before{content:""}.ph.ph-speaker-simple-none:before{content:""}.ph.ph-speaker-simple-slash:before{content:""}.ph.ph-speaker-simple-x:before{content:""}.ph.ph-speaker-slash:before{content:""}.ph.ph-speaker-x:before{content:""}.ph.ph-speedometer:before{content:""}.ph.ph-sphere:before{content:""}.ph.ph-spinner:before{content:""}.ph.ph-spinner-ball:before{content:""}.ph.ph-spinner-gap:before{content:""}.ph.ph-spiral:before{content:""}.ph.ph-split-horizontal:before{content:""}.ph.ph-split-vertical:before{content:""}.ph.ph-spotify-logo:before{content:""}.ph.ph-spray-bottle:before{content:""}.ph.ph-square:before{content:""}.ph.ph-square-half:before{content:""}.ph.ph-square-half-bottom:before{content:""}.ph.ph-square-logo:before{content:""}.ph.ph-square-split-horizontal:before{content:""}.ph.ph-square-split-vertical:before{content:""}.ph.ph-squares-four:before{content:""}.ph.ph-stack:before{content:""}.ph.ph-stack-minus:before{content:""}.ph.ph-stack-overflow-logo:before{content:""}.ph.ph-stack-plus:before{content:""}.ph.ph-stack-simple:before{content:""}.ph.ph-stairs:before{content:""}.ph.ph-stamp:before{content:""}.ph.ph-standard-definition:before{content:""}.ph.ph-star:before{content:""}.ph.ph-star-and-crescent:before{content:""}.ph.ph-star-four:before{content:""}.ph.ph-star-half:before{content:""}.ph.ph-star-of-david:before{content:""}.ph.ph-steam-logo:before{content:""}.ph.ph-steering-wheel:before{content:""}.ph.ph-steps:before{content:""}.ph.ph-stethoscope:before{content:""}.ph.ph-sticker:before{content:""}.ph.ph-stool:before{content:""}.ph.ph-stop:before{content:""}.ph.ph-stop-circle:before{content:""}.ph.ph-storefront:before{content:""}.ph.ph-strategy:before{content:""}.ph.ph-stripe-logo:before{content:""}.ph.ph-student:before{content:""}.ph.ph-subset-of:before{content:""}.ph.ph-subset-proper-of:before{content:""}.ph.ph-subtitles:before{content:""}.ph.ph-subtitles-slash:before{content:""}.ph.ph-subtract:before{content:""}.ph.ph-subtract-square:before{content:""}.ph.ph-subway:before{content:""}.ph.ph-suitcase:before{content:""}.ph.ph-suitcase-rolling:before{content:""}.ph.ph-suitcase-simple:before{content:""}.ph.ph-sun:before{content:""}.ph.ph-sun-dim:before{content:""}.ph.ph-sun-horizon:before{content:""}.ph.ph-sunglasses:before{content:""}.ph.ph-superset-of:before{content:""}.ph.ph-superset-proper-of:before{content:""}.ph.ph-swap:before{content:""}.ph.ph-swatches:before{content:""}.ph.ph-swimming-pool:before{content:""}.ph.ph-sword:before{content:""}.ph.ph-synagogue:before{content:""}.ph.ph-syringe:before{content:""}.ph.ph-t-shirt:before{content:""}.ph.ph-table:before{content:""}.ph.ph-tabs:before{content:""}.ph.ph-tag:before{content:""}.ph.ph-tag-chevron:before{content:""}.ph.ph-tag-simple:before{content:""}.ph.ph-target:before{content:""}.ph.ph-taxi:before{content:""}.ph.ph-tea-bag:before{content:""}.ph.ph-telegram-logo:before{content:""}.ph.ph-television:before{content:""}.ph.ph-television-simple:before{content:""}.ph.ph-tennis-ball:before{content:""}.ph.ph-tent:before{content:""}.ph.ph-terminal:before{content:""}.ph.ph-terminal-window:before{content:""}.ph.ph-test-tube:before{content:""}.ph.ph-text-a-underline:before{content:""}.ph.ph-text-aa:before{content:""}.ph.ph-text-align-center:before{content:""}.ph.ph-text-align-justify:before{content:""}.ph.ph-text-align-left:before{content:""}.ph.ph-text-align-right:before{content:""}.ph.ph-text-b:before{content:""}.ph.ph-text-bolder:before{content:""}.ph.ph-text-columns:before{content:""}.ph.ph-text-h:before{content:""}.ph.ph-text-h-five:before{content:""}.ph.ph-text-h-four:before{content:""}.ph.ph-text-h-one:before{content:""}.ph.ph-text-h-six:before{content:""}.ph.ph-text-h-three:before{content:""}.ph.ph-text-h-two:before{content:""}.ph.ph-text-indent:before{content:""}.ph.ph-text-italic:before{content:""}.ph.ph-text-outdent:before{content:""}.ph.ph-text-strikethrough:before{content:""}.ph.ph-text-subscript:before{content:""}.ph.ph-text-superscript:before{content:""}.ph.ph-text-t:before{content:""}.ph.ph-text-t-slash:before{content:""}.ph.ph-text-underline:before{content:""}.ph.ph-textbox:before{content:""}.ph.ph-thermometer:before{content:""}.ph.ph-thermometer-cold:before{content:""}.ph.ph-thermometer-hot:before{content:""}.ph.ph-thermometer-simple:before{content:""}.ph.ph-threads-logo:before{content:""}.ph.ph-three-d:before{content:""}.ph.ph-thumbs-down:before{content:""}.ph.ph-thumbs-up:before{content:""}.ph.ph-ticket:before{content:""}.ph.ph-tidal-logo:before{content:""}.ph.ph-tiktok-logo:before{content:""}.ph.ph-tilde:before{content:""}.ph.ph-timer:before{content:""}.ph.ph-tip-jar:before{content:""}.ph.ph-tipi:before{content:""}.ph.ph-tire:before{content:""}.ph.ph-toggle-left:before{content:""}.ph.ph-toggle-right:before{content:""}.ph.ph-toilet:before{content:""}.ph.ph-toilet-paper:before{content:""}.ph.ph-toolbox:before{content:""}.ph.ph-tooth:before{content:""}.ph.ph-tornado:before{content:""}.ph.ph-tote:before{content:""}.ph.ph-tote-simple:before{content:""}.ph.ph-towel:before{content:""}.ph.ph-tractor:before{content:""}.ph.ph-trademark:before{content:""}.ph.ph-trademark-registered:before{content:""}.ph.ph-traffic-cone:before{content:""}.ph.ph-traffic-sign:before{content:""}.ph.ph-traffic-signal:before{content:""}.ph.ph-train:before{content:""}.ph.ph-train-regional:before{content:""}.ph.ph-train-simple:before{content:""}.ph.ph-tram:before{content:""}.ph.ph-translate:before{content:""}.ph.ph-trash:before{content:""}.ph.ph-trash-simple:before{content:""}.ph.ph-tray:before{content:""}.ph.ph-tray-arrow-down:before{content:""}.ph.ph-archive-tray:before{content:""}.ph.ph-tray-arrow-up:before{content:""}.ph.ph-treasure-chest:before{content:""}.ph.ph-tree:before{content:""}.ph.ph-tree-evergreen:before{content:""}.ph.ph-tree-palm:before{content:""}.ph.ph-tree-structure:before{content:""}.ph.ph-tree-view:before{content:""}.ph.ph-trend-down:before{content:""}.ph.ph-trend-up:before{content:""}.ph.ph-triangle:before{content:""}.ph.ph-triangle-dashed:before{content:""}.ph.ph-trolley:before{content:""}.ph.ph-trolley-suitcase:before{content:""}.ph.ph-trophy:before{content:""}.ph.ph-truck:before{content:""}.ph.ph-truck-trailer:before{content:""}.ph.ph-tumblr-logo:before{content:""}.ph.ph-twitch-logo:before{content:""}.ph.ph-twitter-logo:before{content:""}.ph.ph-umbrella:before{content:""}.ph.ph-umbrella-simple:before{content:""}.ph.ph-union:before{content:""}.ph.ph-unite:before{content:""}.ph.ph-unite-square:before{content:""}.ph.ph-upload:before{content:""}.ph.ph-upload-simple:before{content:""}.ph.ph-usb:before{content:""}.ph.ph-user:before{content:""}.ph.ph-user-check:before{content:""}.ph.ph-user-circle:before{content:""}.ph.ph-user-circle-check:before{content:""}.ph.ph-user-circle-dashed:before{content:""}.ph.ph-user-circle-gear:before{content:""}.ph.ph-user-circle-minus:before{content:""}.ph.ph-user-circle-plus:before{content:""}.ph.ph-user-focus:before{content:""}.ph.ph-user-gear:before{content:""}.ph.ph-user-list:before{content:""}.ph.ph-user-minus:before{content:""}.ph.ph-user-plus:before{content:""}.ph.ph-user-rectangle:before{content:""}.ph.ph-user-sound:before{content:""}.ph.ph-user-square:before{content:""}.ph.ph-user-switch:before{content:""}.ph.ph-users:before{content:""}.ph.ph-users-four:before{content:""}.ph.ph-users-three:before{content:""}.ph.ph-van:before{content:""}.ph.ph-vault:before{content:""}.ph.ph-vector-three:before{content:""}.ph.ph-vector-two:before{content:""}.ph.ph-vibrate:before{content:""}.ph.ph-video:before{content:""}.ph.ph-video-camera:before{content:""}.ph.ph-video-camera-slash:before{content:""}.ph.ph-video-conference:before{content:""}.ph.ph-vignette:before{content:""}.ph.ph-vinyl-record:before{content:""}.ph.ph-virtual-reality:before{content:""}.ph.ph-virus:before{content:""}.ph.ph-visor:before{content:""}.ph.ph-voicemail:before{content:""}.ph.ph-volleyball:before{content:""}.ph.ph-wall:before{content:""}.ph.ph-wallet:before{content:""}.ph.ph-warehouse:before{content:""}.ph.ph-warning:before{content:""}.ph.ph-warning-circle:before{content:""}.ph.ph-warning-diamond:before{content:""}.ph.ph-warning-octagon:before{content:""}.ph.ph-washing-machine:before{content:""}.ph.ph-watch:before{content:""}.ph.ph-wave-sawtooth:before{content:""}.ph.ph-wave-sine:before{content:""}.ph.ph-wave-square:before{content:""}.ph.ph-wave-triangle:before{content:""}.ph.ph-waveform:before{content:""}.ph.ph-waveform-slash:before{content:""}.ph.ph-waves:before{content:""}.ph.ph-webcam:before{content:""}.ph.ph-webcam-slash:before{content:""}.ph.ph-webhooks-logo:before{content:""}.ph.ph-wechat-logo:before{content:""}.ph.ph-whatsapp-logo:before{content:""}.ph.ph-wheelchair:before{content:""}.ph.ph-wheelchair-motion:before{content:""}.ph.ph-wifi-high:before{content:""}.ph.ph-wifi-low:before{content:""}.ph.ph-wifi-medium:before{content:""}.ph.ph-wifi-none:before{content:""}.ph.ph-wifi-slash:before{content:""}.ph.ph-wifi-x:before{content:""}.ph.ph-wind:before{content:""}.ph.ph-windmill:before{content:""}.ph.ph-windows-logo:before{content:""}.ph.ph-wine:before{content:""}.ph.ph-wrench:before{content:""}.ph.ph-x:before{content:""}.ph.ph-x-circle:before{content:""}.ph.ph-x-logo:before{content:""}.ph.ph-x-square:before{content:""}.ph.ph-yarn:before{content:""}.ph.ph-yin-yang:before{content:""}.ph.ph-youtube-logo:before{content:""}@font-face{font-family:Phosphor-Fill;src:url(/assets/Phosphor-Fill-D4CDmGRg.woff2) format("woff2"),url(/assets/Phosphor-Fill-CS2zOYDV.woff) format("woff"),url(/assets/Phosphor-Fill-N9gYSHy0.ttf) format("truetype"),url(/assets/Phosphor-Fill-BofDnXwa.svg#Phosphor-Fill) format("svg");font-weight:400;font-style:normal;font-display:block}.ph-fill{font-family:Phosphor-Fill!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ph-fill.ph-acorn:before{content:""}.ph-fill.ph-address-book:before{content:""}.ph-fill.ph-address-book-tabs:before{content:""}.ph-fill.ph-air-traffic-control:before{content:""}.ph-fill.ph-airplane:before{content:""}.ph-fill.ph-airplane-in-flight:before{content:""}.ph-fill.ph-airplane-landing:before{content:""}.ph-fill.ph-airplane-takeoff:before{content:""}.ph-fill.ph-airplane-taxiing:before{content:""}.ph-fill.ph-airplane-tilt:before{content:""}.ph-fill.ph-airplay:before{content:""}.ph-fill.ph-alarm:before{content:""}.ph-fill.ph-alien:before{content:""}.ph-fill.ph-align-bottom:before{content:""}.ph-fill.ph-align-bottom-simple:before{content:""}.ph-fill.ph-align-center-horizontal:before{content:""}.ph-fill.ph-align-center-horizontal-simple:before{content:""}.ph-fill.ph-align-center-vertical:before{content:""}.ph-fill.ph-align-center-vertical-simple:before{content:""}.ph-fill.ph-align-left:before{content:""}.ph-fill.ph-align-left-simple:before{content:""}.ph-fill.ph-align-right:before{content:""}.ph-fill.ph-align-right-simple:before{content:""}.ph-fill.ph-align-top:before{content:""}.ph-fill.ph-align-top-simple:before{content:""}.ph-fill.ph-amazon-logo:before{content:""}.ph-fill.ph-ambulance:before{content:""}.ph-fill.ph-anchor:before{content:""}.ph-fill.ph-anchor-simple:before{content:""}.ph-fill.ph-android-logo:before{content:""}.ph-fill.ph-angle:before{content:""}.ph-fill.ph-angular-logo:before{content:""}.ph-fill.ph-aperture:before{content:""}.ph-fill.ph-app-store-logo:before{content:""}.ph-fill.ph-app-window:before{content:""}.ph-fill.ph-apple-logo:before{content:""}.ph-fill.ph-apple-podcasts-logo:before{content:""}.ph-fill.ph-approximate-equals:before{content:""}.ph-fill.ph-archive:before{content:""}.ph-fill.ph-armchair:before{content:""}.ph-fill.ph-arrow-arc-left:before{content:""}.ph-fill.ph-arrow-arc-right:before{content:""}.ph-fill.ph-arrow-bend-double-up-left:before{content:""}.ph-fill.ph-arrow-bend-double-up-right:before{content:""}.ph-fill.ph-arrow-bend-down-left:before{content:""}.ph-fill.ph-arrow-bend-down-right:before{content:""}.ph-fill.ph-arrow-bend-left-down:before{content:""}.ph-fill.ph-arrow-bend-left-up:before{content:""}.ph-fill.ph-arrow-bend-right-down:before{content:""}.ph-fill.ph-arrow-bend-right-up:before{content:""}.ph-fill.ph-arrow-bend-up-left:before{content:""}.ph-fill.ph-arrow-bend-up-right:before{content:""}.ph-fill.ph-arrow-circle-down:before{content:""}.ph-fill.ph-arrow-circle-down-left:before{content:""}.ph-fill.ph-arrow-circle-down-right:before{content:""}.ph-fill.ph-arrow-circle-left:before{content:""}.ph-fill.ph-arrow-circle-right:before{content:""}.ph-fill.ph-arrow-circle-up:before{content:""}.ph-fill.ph-arrow-circle-up-left:before{content:""}.ph-fill.ph-arrow-circle-up-right:before{content:""}.ph-fill.ph-arrow-clockwise:before{content:""}.ph-fill.ph-arrow-counter-clockwise:before{content:""}.ph-fill.ph-arrow-down:before{content:""}.ph-fill.ph-arrow-down-left:before{content:""}.ph-fill.ph-arrow-down-right:before{content:""}.ph-fill.ph-arrow-elbow-down-left:before{content:""}.ph-fill.ph-arrow-elbow-down-right:before{content:""}.ph-fill.ph-arrow-elbow-left:before{content:""}.ph-fill.ph-arrow-elbow-left-down:before{content:""}.ph-fill.ph-arrow-elbow-left-up:before{content:""}.ph-fill.ph-arrow-elbow-right:before{content:""}.ph-fill.ph-arrow-elbow-right-down:before{content:""}.ph-fill.ph-arrow-elbow-right-up:before{content:""}.ph-fill.ph-arrow-elbow-up-left:before{content:""}.ph-fill.ph-arrow-elbow-up-right:before{content:""}.ph-fill.ph-arrow-fat-down:before{content:""}.ph-fill.ph-arrow-fat-left:before{content:""}.ph-fill.ph-arrow-fat-line-down:before{content:""}.ph-fill.ph-arrow-fat-line-left:before{content:""}.ph-fill.ph-arrow-fat-line-right:before{content:""}.ph-fill.ph-arrow-fat-line-up:before{content:""}.ph-fill.ph-arrow-fat-lines-down:before{content:""}.ph-fill.ph-arrow-fat-lines-left:before{content:""}.ph-fill.ph-arrow-fat-lines-right:before{content:""}.ph-fill.ph-arrow-fat-lines-up:before{content:""}.ph-fill.ph-arrow-fat-right:before{content:""}.ph-fill.ph-arrow-fat-up:before{content:""}.ph-fill.ph-arrow-left:before{content:""}.ph-fill.ph-arrow-line-down:before{content:""}.ph-fill.ph-arrow-line-down-left:before{content:""}.ph-fill.ph-arrow-line-down-right:before{content:""}.ph-fill.ph-arrow-line-left:before{content:""}.ph-fill.ph-arrow-line-right:before{content:""}.ph-fill.ph-arrow-line-up:before{content:""}.ph-fill.ph-arrow-line-up-left:before{content:""}.ph-fill.ph-arrow-line-up-right:before{content:""}.ph-fill.ph-arrow-right:before{content:""}.ph-fill.ph-arrow-square-down:before{content:""}.ph-fill.ph-arrow-square-down-left:before{content:""}.ph-fill.ph-arrow-square-down-right:before{content:""}.ph-fill.ph-arrow-square-in:before{content:""}.ph-fill.ph-arrow-square-left:before{content:""}.ph-fill.ph-arrow-square-out:before{content:""}.ph-fill.ph-arrow-square-right:before{content:""}.ph-fill.ph-arrow-square-up:before{content:""}.ph-fill.ph-arrow-square-up-left:before{content:""}.ph-fill.ph-arrow-square-up-right:before{content:""}.ph-fill.ph-arrow-u-down-left:before{content:""}.ph-fill.ph-arrow-u-down-right:before{content:""}.ph-fill.ph-arrow-u-left-down:before{content:""}.ph-fill.ph-arrow-u-left-up:before{content:""}.ph-fill.ph-arrow-u-right-down:before{content:""}.ph-fill.ph-arrow-u-right-up:before{content:""}.ph-fill.ph-arrow-u-up-left:before{content:""}.ph-fill.ph-arrow-u-up-right:before{content:""}.ph-fill.ph-arrow-up:before{content:""}.ph-fill.ph-arrow-up-left:before{content:""}.ph-fill.ph-arrow-up-right:before{content:""}.ph-fill.ph-arrows-clockwise:before{content:""}.ph-fill.ph-arrows-counter-clockwise:before{content:""}.ph-fill.ph-arrows-down-up:before{content:""}.ph-fill.ph-arrows-horizontal:before{content:""}.ph-fill.ph-arrows-in:before{content:""}.ph-fill.ph-arrows-in-cardinal:before{content:""}.ph-fill.ph-arrows-in-line-horizontal:before{content:""}.ph-fill.ph-arrows-in-line-vertical:before{content:""}.ph-fill.ph-arrows-in-simple:before{content:""}.ph-fill.ph-arrows-left-right:before{content:""}.ph-fill.ph-arrows-merge:before{content:""}.ph-fill.ph-arrows-out:before{content:""}.ph-fill.ph-arrows-out-cardinal:before{content:""}.ph-fill.ph-arrows-out-line-horizontal:before{content:""}.ph-fill.ph-arrows-out-line-vertical:before{content:""}.ph-fill.ph-arrows-out-simple:before{content:""}.ph-fill.ph-arrows-split:before{content:""}.ph-fill.ph-arrows-vertical:before{content:""}.ph-fill.ph-article:before{content:""}.ph-fill.ph-article-medium:before{content:""}.ph-fill.ph-article-ny-times:before{content:""}.ph-fill.ph-asclepius:before{content:""}.ph-fill.ph-caduceus:before{content:""}.ph-fill.ph-asterisk:before{content:""}.ph-fill.ph-asterisk-simple:before{content:""}.ph-fill.ph-at:before{content:""}.ph-fill.ph-atom:before{content:""}.ph-fill.ph-avocado:before{content:""}.ph-fill.ph-axe:before{content:""}.ph-fill.ph-baby:before{content:""}.ph-fill.ph-baby-carriage:before{content:""}.ph-fill.ph-backpack:before{content:""}.ph-fill.ph-backspace:before{content:""}.ph-fill.ph-bag:before{content:""}.ph-fill.ph-bag-simple:before{content:""}.ph-fill.ph-balloon:before{content:""}.ph-fill.ph-bandaids:before{content:""}.ph-fill.ph-bank:before{content:""}.ph-fill.ph-barbell:before{content:""}.ph-fill.ph-barcode:before{content:""}.ph-fill.ph-barn:before{content:""}.ph-fill.ph-barricade:before{content:""}.ph-fill.ph-baseball:before{content:""}.ph-fill.ph-baseball-cap:before{content:""}.ph-fill.ph-baseball-helmet:before{content:""}.ph-fill.ph-basket:before{content:""}.ph-fill.ph-basketball:before{content:""}.ph-fill.ph-bathtub:before{content:""}.ph-fill.ph-battery-charging:before{content:""}.ph-fill.ph-battery-charging-vertical:before{content:""}.ph-fill.ph-battery-empty:before{content:""}.ph-fill.ph-battery-full:before{content:""}.ph-fill.ph-battery-high:before{content:""}.ph-fill.ph-battery-low:before{content:""}.ph-fill.ph-battery-medium:before{content:""}.ph-fill.ph-battery-plus:before{content:""}.ph-fill.ph-battery-plus-vertical:before{content:""}.ph-fill.ph-battery-vertical-empty:before{content:""}.ph-fill.ph-battery-vertical-full:before{content:""}.ph-fill.ph-battery-vertical-high:before{content:""}.ph-fill.ph-battery-vertical-low:before{content:""}.ph-fill.ph-battery-vertical-medium:before{content:""}.ph-fill.ph-battery-warning:before{content:""}.ph-fill.ph-battery-warning-vertical:before{content:""}.ph-fill.ph-beach-ball:before{content:""}.ph-fill.ph-beanie:before{content:""}.ph-fill.ph-bed:before{content:""}.ph-fill.ph-beer-bottle:before{content:""}.ph-fill.ph-beer-stein:before{content:""}.ph-fill.ph-behance-logo:before{content:""}.ph-fill.ph-bell:before{content:""}.ph-fill.ph-bell-ringing:before{content:""}.ph-fill.ph-bell-simple:before{content:""}.ph-fill.ph-bell-simple-ringing:before{content:""}.ph-fill.ph-bell-simple-slash:before{content:""}.ph-fill.ph-bell-simple-z:before{content:""}.ph-fill.ph-bell-slash:before{content:""}.ph-fill.ph-bell-z:before{content:""}.ph-fill.ph-belt:before{content:""}.ph-fill.ph-bezier-curve:before{content:""}.ph-fill.ph-bicycle:before{content:""}.ph-fill.ph-binary:before{content:""}.ph-fill.ph-binoculars:before{content:""}.ph-fill.ph-biohazard:before{content:""}.ph-fill.ph-bird:before{content:""}.ph-fill.ph-blueprint:before{content:""}.ph-fill.ph-bluetooth:before{content:""}.ph-fill.ph-bluetooth-connected:before{content:""}.ph-fill.ph-bluetooth-slash:before{content:""}.ph-fill.ph-bluetooth-x:before{content:""}.ph-fill.ph-boat:before{content:""}.ph-fill.ph-bomb:before{content:""}.ph-fill.ph-bone:before{content:""}.ph-fill.ph-book:before{content:""}.ph-fill.ph-book-bookmark:before{content:""}.ph-fill.ph-book-open:before{content:""}.ph-fill.ph-book-open-text:before{content:""}.ph-fill.ph-book-open-user:before{content:""}.ph-fill.ph-bookmark:before{content:""}.ph-fill.ph-bookmark-simple:before{content:""}.ph-fill.ph-bookmarks:before{content:""}.ph-fill.ph-bookmarks-simple:before{content:""}.ph-fill.ph-books:before{content:""}.ph-fill.ph-boot:before{content:""}.ph-fill.ph-boules:before{content:""}.ph-fill.ph-bounding-box:before{content:""}.ph-fill.ph-bowl-food:before{content:""}.ph-fill.ph-bowl-steam:before{content:""}.ph-fill.ph-bowling-ball:before{content:""}.ph-fill.ph-box-arrow-down:before{content:""}.ph-fill.ph-archive-box:before{content:""}.ph-fill.ph-box-arrow-up:before{content:""}.ph-fill.ph-boxing-glove:before{content:""}.ph-fill.ph-brackets-angle:before{content:""}.ph-fill.ph-brackets-curly:before{content:""}.ph-fill.ph-brackets-round:before{content:""}.ph-fill.ph-brackets-square:before{content:""}.ph-fill.ph-brain:before{content:""}.ph-fill.ph-brandy:before{content:""}.ph-fill.ph-bread:before{content:""}.ph-fill.ph-bridge:before{content:""}.ph-fill.ph-briefcase:before{content:""}.ph-fill.ph-briefcase-metal:before{content:""}.ph-fill.ph-broadcast:before{content:""}.ph-fill.ph-broom:before{content:""}.ph-fill.ph-browser:before{content:""}.ph-fill.ph-browsers:before{content:""}.ph-fill.ph-bug:before{content:""}.ph-fill.ph-bug-beetle:before{content:""}.ph-fill.ph-bug-droid:before{content:""}.ph-fill.ph-building:before{content:""}.ph-fill.ph-building-apartment:before{content:""}.ph-fill.ph-building-office:before{content:""}.ph-fill.ph-buildings:before{content:""}.ph-fill.ph-bulldozer:before{content:""}.ph-fill.ph-bus:before{content:""}.ph-fill.ph-butterfly:before{content:""}.ph-fill.ph-cable-car:before{content:""}.ph-fill.ph-cactus:before{content:""}.ph-fill.ph-cake:before{content:""}.ph-fill.ph-calculator:before{content:""}.ph-fill.ph-calendar:before{content:""}.ph-fill.ph-calendar-blank:before{content:""}.ph-fill.ph-calendar-check:before{content:""}.ph-fill.ph-calendar-dot:before{content:""}.ph-fill.ph-calendar-dots:before{content:""}.ph-fill.ph-calendar-heart:before{content:""}.ph-fill.ph-calendar-minus:before{content:""}.ph-fill.ph-calendar-plus:before{content:""}.ph-fill.ph-calendar-slash:before{content:""}.ph-fill.ph-calendar-star:before{content:""}.ph-fill.ph-calendar-x:before{content:""}.ph-fill.ph-call-bell:before{content:""}.ph-fill.ph-camera:before{content:""}.ph-fill.ph-camera-plus:before{content:""}.ph-fill.ph-camera-rotate:before{content:""}.ph-fill.ph-camera-slash:before{content:""}.ph-fill.ph-campfire:before{content:""}.ph-fill.ph-car:before{content:""}.ph-fill.ph-car-battery:before{content:""}.ph-fill.ph-car-profile:before{content:""}.ph-fill.ph-car-simple:before{content:""}.ph-fill.ph-cardholder:before{content:""}.ph-fill.ph-cards:before{content:""}.ph-fill.ph-cards-three:before{content:""}.ph-fill.ph-caret-circle-double-down:before{content:""}.ph-fill.ph-caret-circle-double-left:before{content:""}.ph-fill.ph-caret-circle-double-right:before{content:""}.ph-fill.ph-caret-circle-double-up:before{content:""}.ph-fill.ph-caret-circle-down:before{content:""}.ph-fill.ph-caret-circle-left:before{content:""}.ph-fill.ph-caret-circle-right:before{content:""}.ph-fill.ph-caret-circle-up:before{content:""}.ph-fill.ph-caret-circle-up-down:before{content:""}.ph-fill.ph-caret-double-down:before{content:""}.ph-fill.ph-caret-double-left:before{content:""}.ph-fill.ph-caret-double-right:before{content:""}.ph-fill.ph-caret-double-up:before{content:""}.ph-fill.ph-caret-down:before{content:""}.ph-fill.ph-caret-left:before{content:""}.ph-fill.ph-caret-line-down:before{content:""}.ph-fill.ph-caret-line-left:before{content:""}.ph-fill.ph-caret-line-right:before{content:""}.ph-fill.ph-caret-line-up:before{content:""}.ph-fill.ph-caret-right:before{content:""}.ph-fill.ph-caret-up:before{content:""}.ph-fill.ph-caret-up-down:before{content:""}.ph-fill.ph-carrot:before{content:""}.ph-fill.ph-cash-register:before{content:""}.ph-fill.ph-cassette-tape:before{content:""}.ph-fill.ph-castle-turret:before{content:""}.ph-fill.ph-cat:before{content:""}.ph-fill.ph-cell-signal-full:before{content:""}.ph-fill.ph-cell-signal-high:before{content:""}.ph-fill.ph-cell-signal-low:before{content:""}.ph-fill.ph-cell-signal-medium:before{content:""}.ph-fill.ph-cell-signal-none:before{content:""}.ph-fill.ph-cell-signal-slash:before{content:""}.ph-fill.ph-cell-signal-x:before{content:""}.ph-fill.ph-cell-tower:before{content:""}.ph-fill.ph-certificate:before{content:""}.ph-fill.ph-chair:before{content:""}.ph-fill.ph-chalkboard:before{content:""}.ph-fill.ph-chalkboard-simple:before{content:""}.ph-fill.ph-chalkboard-teacher:before{content:""}.ph-fill.ph-champagne:before{content:""}.ph-fill.ph-charging-station:before{content:""}.ph-fill.ph-chart-bar:before{content:""}.ph-fill.ph-chart-bar-horizontal:before{content:""}.ph-fill.ph-chart-donut:before{content:""}.ph-fill.ph-chart-line:before{content:""}.ph-fill.ph-chart-line-down:before{content:""}.ph-fill.ph-chart-line-up:before{content:""}.ph-fill.ph-chart-pie:before{content:""}.ph-fill.ph-chart-pie-slice:before{content:""}.ph-fill.ph-chart-polar:before{content:""}.ph-fill.ph-chart-scatter:before{content:""}.ph-fill.ph-chat:before{content:""}.ph-fill.ph-chat-centered:before{content:""}.ph-fill.ph-chat-centered-dots:before{content:""}.ph-fill.ph-chat-centered-slash:before{content:""}.ph-fill.ph-chat-centered-text:before{content:""}.ph-fill.ph-chat-circle:before{content:""}.ph-fill.ph-chat-circle-dots:before{content:""}.ph-fill.ph-chat-circle-slash:before{content:""}.ph-fill.ph-chat-circle-text:before{content:""}.ph-fill.ph-chat-dots:before{content:""}.ph-fill.ph-chat-slash:before{content:""}.ph-fill.ph-chat-teardrop:before{content:""}.ph-fill.ph-chat-teardrop-dots:before{content:""}.ph-fill.ph-chat-teardrop-slash:before{content:""}.ph-fill.ph-chat-teardrop-text:before{content:""}.ph-fill.ph-chat-text:before{content:""}.ph-fill.ph-chats:before{content:""}.ph-fill.ph-chats-circle:before{content:""}.ph-fill.ph-chats-teardrop:before{content:""}.ph-fill.ph-check:before{content:""}.ph-fill.ph-check-circle:before{content:""}.ph-fill.ph-check-fat:before{content:""}.ph-fill.ph-check-square:before{content:""}.ph-fill.ph-check-square-offset:before{content:""}.ph-fill.ph-checkerboard:before{content:""}.ph-fill.ph-checks:before{content:""}.ph-fill.ph-cheers:before{content:""}.ph-fill.ph-cheese:before{content:""}.ph-fill.ph-chef-hat:before{content:""}.ph-fill.ph-cherries:before{content:""}.ph-fill.ph-church:before{content:""}.ph-fill.ph-cigarette:before{content:""}.ph-fill.ph-cigarette-slash:before{content:""}.ph-fill.ph-circle:before{content:""}.ph-fill.ph-circle-dashed:before{content:""}.ph-fill.ph-circle-half:before{content:""}.ph-fill.ph-circle-half-tilt:before{content:""}.ph-fill.ph-circle-notch:before{content:""}.ph-fill.ph-circles-four:before{content:""}.ph-fill.ph-circles-three:before{content:""}.ph-fill.ph-circles-three-plus:before{content:""}.ph-fill.ph-circuitry:before{content:""}.ph-fill.ph-city:before{content:""}.ph-fill.ph-clipboard:before{content:""}.ph-fill.ph-clipboard-text:before{content:""}.ph-fill.ph-clock:before{content:""}.ph-fill.ph-clock-afternoon:before{content:""}.ph-fill.ph-clock-clockwise:before{content:""}.ph-fill.ph-clock-countdown:before{content:""}.ph-fill.ph-clock-counter-clockwise:before{content:""}.ph-fill.ph-clock-user:before{content:""}.ph-fill.ph-closed-captioning:before{content:""}.ph-fill.ph-cloud:before{content:""}.ph-fill.ph-cloud-arrow-down:before{content:""}.ph-fill.ph-cloud-arrow-up:before{content:""}.ph-fill.ph-cloud-check:before{content:""}.ph-fill.ph-cloud-fog:before{content:""}.ph-fill.ph-cloud-lightning:before{content:""}.ph-fill.ph-cloud-moon:before{content:""}.ph-fill.ph-cloud-rain:before{content:""}.ph-fill.ph-cloud-slash:before{content:""}.ph-fill.ph-cloud-snow:before{content:""}.ph-fill.ph-cloud-sun:before{content:""}.ph-fill.ph-cloud-warning:before{content:""}.ph-fill.ph-cloud-x:before{content:""}.ph-fill.ph-clover:before{content:""}.ph-fill.ph-club:before{content:""}.ph-fill.ph-coat-hanger:before{content:""}.ph-fill.ph-coda-logo:before{content:""}.ph-fill.ph-code:before{content:""}.ph-fill.ph-code-block:before{content:""}.ph-fill.ph-code-simple:before{content:""}.ph-fill.ph-codepen-logo:before{content:""}.ph-fill.ph-codesandbox-logo:before{content:""}.ph-fill.ph-coffee:before{content:""}.ph-fill.ph-coffee-bean:before{content:""}.ph-fill.ph-coin:before{content:""}.ph-fill.ph-coin-vertical:before{content:""}.ph-fill.ph-coins:before{content:""}.ph-fill.ph-columns:before{content:""}.ph-fill.ph-columns-plus-left:before{content:""}.ph-fill.ph-columns-plus-right:before{content:""}.ph-fill.ph-command:before{content:""}.ph-fill.ph-compass:before{content:""}.ph-fill.ph-compass-rose:before{content:""}.ph-fill.ph-compass-tool:before{content:""}.ph-fill.ph-computer-tower:before{content:""}.ph-fill.ph-confetti:before{content:""}.ph-fill.ph-contactless-payment:before{content:""}.ph-fill.ph-control:before{content:""}.ph-fill.ph-cookie:before{content:""}.ph-fill.ph-cooking-pot:before{content:""}.ph-fill.ph-copy:before{content:""}.ph-fill.ph-copy-simple:before{content:""}.ph-fill.ph-copyleft:before{content:""}.ph-fill.ph-copyright:before{content:""}.ph-fill.ph-corners-in:before{content:""}.ph-fill.ph-corners-out:before{content:""}.ph-fill.ph-couch:before{content:""}.ph-fill.ph-court-basketball:before{content:""}.ph-fill.ph-cow:before{content:""}.ph-fill.ph-cowboy-hat:before{content:""}.ph-fill.ph-cpu:before{content:""}.ph-fill.ph-crane:before{content:""}.ph-fill.ph-crane-tower:before{content:""}.ph-fill.ph-credit-card:before{content:""}.ph-fill.ph-cricket:before{content:""}.ph-fill.ph-crop:before{content:""}.ph-fill.ph-cross:before{content:""}.ph-fill.ph-crosshair:before{content:""}.ph-fill.ph-crosshair-simple:before{content:""}.ph-fill.ph-crown:before{content:""}.ph-fill.ph-crown-cross:before{content:""}.ph-fill.ph-crown-simple:before{content:""}.ph-fill.ph-cube:before{content:""}.ph-fill.ph-cube-focus:before{content:""}.ph-fill.ph-cube-transparent:before{content:""}.ph-fill.ph-currency-btc:before{content:""}.ph-fill.ph-currency-circle-dollar:before{content:""}.ph-fill.ph-currency-cny:before{content:""}.ph-fill.ph-currency-dollar:before{content:""}.ph-fill.ph-currency-dollar-simple:before{content:""}.ph-fill.ph-currency-eth:before{content:""}.ph-fill.ph-currency-eur:before{content:""}.ph-fill.ph-currency-gbp:before{content:""}.ph-fill.ph-currency-inr:before{content:""}.ph-fill.ph-currency-jpy:before{content:""}.ph-fill.ph-currency-krw:before{content:""}.ph-fill.ph-currency-kzt:before{content:""}.ph-fill.ph-currency-ngn:before{content:""}.ph-fill.ph-currency-rub:before{content:""}.ph-fill.ph-cursor:before{content:""}.ph-fill.ph-cursor-click:before{content:""}.ph-fill.ph-cursor-text:before{content:""}.ph-fill.ph-cylinder:before{content:""}.ph-fill.ph-database:before{content:""}.ph-fill.ph-desk:before{content:""}.ph-fill.ph-desktop:before{content:""}.ph-fill.ph-desktop-tower:before{content:""}.ph-fill.ph-detective:before{content:""}.ph-fill.ph-dev-to-logo:before{content:""}.ph-fill.ph-device-mobile:before{content:""}.ph-fill.ph-device-mobile-camera:before{content:""}.ph-fill.ph-device-mobile-slash:before{content:""}.ph-fill.ph-device-mobile-speaker:before{content:""}.ph-fill.ph-device-rotate:before{content:""}.ph-fill.ph-device-tablet:before{content:""}.ph-fill.ph-device-tablet-camera:before{content:""}.ph-fill.ph-device-tablet-speaker:before{content:""}.ph-fill.ph-devices:before{content:""}.ph-fill.ph-diamond:before{content:""}.ph-fill.ph-diamonds-four:before{content:""}.ph-fill.ph-dice-five:before{content:""}.ph-fill.ph-dice-four:before{content:""}.ph-fill.ph-dice-one:before{content:""}.ph-fill.ph-dice-six:before{content:""}.ph-fill.ph-dice-three:before{content:""}.ph-fill.ph-dice-two:before{content:""}.ph-fill.ph-disc:before{content:""}.ph-fill.ph-disco-ball:before{content:""}.ph-fill.ph-discord-logo:before{content:""}.ph-fill.ph-divide:before{content:""}.ph-fill.ph-dna:before{content:""}.ph-fill.ph-dog:before{content:""}.ph-fill.ph-door:before{content:""}.ph-fill.ph-door-open:before{content:""}.ph-fill.ph-dot:before{content:""}.ph-fill.ph-dot-outline:before{content:""}.ph-fill.ph-dots-nine:before{content:""}.ph-fill.ph-dots-six:before{content:""}.ph-fill.ph-dots-six-vertical:before{content:""}.ph-fill.ph-dots-three:before{content:""}.ph-fill.ph-dots-three-circle:before{content:""}.ph-fill.ph-dots-three-circle-vertical:before{content:""}.ph-fill.ph-dots-three-outline:before{content:""}.ph-fill.ph-dots-three-outline-vertical:before{content:""}.ph-fill.ph-dots-three-vertical:before{content:""}.ph-fill.ph-download:before{content:""}.ph-fill.ph-download-simple:before{content:""}.ph-fill.ph-dress:before{content:""}.ph-fill.ph-dresser:before{content:""}.ph-fill.ph-dribbble-logo:before{content:""}.ph-fill.ph-drone:before{content:""}.ph-fill.ph-drop:before{content:""}.ph-fill.ph-drop-half:before{content:""}.ph-fill.ph-drop-half-bottom:before{content:""}.ph-fill.ph-drop-simple:before{content:""}.ph-fill.ph-drop-slash:before{content:""}.ph-fill.ph-dropbox-logo:before{content:""}.ph-fill.ph-ear:before{content:""}.ph-fill.ph-ear-slash:before{content:""}.ph-fill.ph-egg:before{content:""}.ph-fill.ph-egg-crack:before{content:""}.ph-fill.ph-eject:before{content:""}.ph-fill.ph-eject-simple:before{content:""}.ph-fill.ph-elevator:before{content:""}.ph-fill.ph-empty:before{content:""}.ph-fill.ph-engine:before{content:""}.ph-fill.ph-envelope:before{content:""}.ph-fill.ph-envelope-open:before{content:""}.ph-fill.ph-envelope-simple:before{content:""}.ph-fill.ph-envelope-simple-open:before{content:""}.ph-fill.ph-equalizer:before{content:""}.ph-fill.ph-equals:before{content:""}.ph-fill.ph-eraser:before{content:""}.ph-fill.ph-escalator-down:before{content:""}.ph-fill.ph-escalator-up:before{content:""}.ph-fill.ph-exam:before{content:""}.ph-fill.ph-exclamation-mark:before{content:""}.ph-fill.ph-exclude:before{content:""}.ph-fill.ph-exclude-square:before{content:""}.ph-fill.ph-export:before{content:""}.ph-fill.ph-eye:before{content:""}.ph-fill.ph-eye-closed:before{content:""}.ph-fill.ph-eye-slash:before{content:""}.ph-fill.ph-eyedropper:before{content:""}.ph-fill.ph-eyedropper-sample:before{content:""}.ph-fill.ph-eyeglasses:before{content:""}.ph-fill.ph-eyes:before{content:""}.ph-fill.ph-face-mask:before{content:""}.ph-fill.ph-facebook-logo:before{content:""}.ph-fill.ph-factory:before{content:""}.ph-fill.ph-faders:before{content:""}.ph-fill.ph-faders-horizontal:before{content:""}.ph-fill.ph-fallout-shelter:before{content:""}.ph-fill.ph-fan:before{content:""}.ph-fill.ph-farm:before{content:""}.ph-fill.ph-fast-forward:before{content:""}.ph-fill.ph-fast-forward-circle:before{content:""}.ph-fill.ph-feather:before{content:""}.ph-fill.ph-fediverse-logo:before{content:""}.ph-fill.ph-figma-logo:before{content:""}.ph-fill.ph-file:before{content:""}.ph-fill.ph-file-archive:before{content:""}.ph-fill.ph-file-arrow-down:before{content:""}.ph-fill.ph-file-arrow-up:before{content:""}.ph-fill.ph-file-audio:before{content:""}.ph-fill.ph-file-c:before{content:""}.ph-fill.ph-file-c-sharp:before{content:""}.ph-fill.ph-file-cloud:before{content:""}.ph-fill.ph-file-code:before{content:""}.ph-fill.ph-file-cpp:before{content:""}.ph-fill.ph-file-css:before{content:""}.ph-fill.ph-file-csv:before{content:""}.ph-fill.ph-file-dashed:before{content:""}.ph-fill.ph-file-dotted:before{content:""}.ph-fill.ph-file-doc:before{content:""}.ph-fill.ph-file-html:before{content:""}.ph-fill.ph-file-image:before{content:""}.ph-fill.ph-file-ini:before{content:""}.ph-fill.ph-file-jpg:before{content:""}.ph-fill.ph-file-js:before{content:""}.ph-fill.ph-file-jsx:before{content:""}.ph-fill.ph-file-lock:before{content:""}.ph-fill.ph-file-magnifying-glass:before{content:""}.ph-fill.ph-file-search:before{content:""}.ph-fill.ph-file-md:before{content:""}.ph-fill.ph-file-minus:before{content:""}.ph-fill.ph-file-pdf:before{content:""}.ph-fill.ph-file-plus:before{content:""}.ph-fill.ph-file-png:before{content:""}.ph-fill.ph-file-ppt:before{content:""}.ph-fill.ph-file-py:before{content:""}.ph-fill.ph-file-rs:before{content:""}.ph-fill.ph-file-sql:before{content:""}.ph-fill.ph-file-svg:before{content:""}.ph-fill.ph-file-text:before{content:""}.ph-fill.ph-file-ts:before{content:""}.ph-fill.ph-file-tsx:before{content:""}.ph-fill.ph-file-txt:before{content:""}.ph-fill.ph-file-video:before{content:""}.ph-fill.ph-file-vue:before{content:""}.ph-fill.ph-file-x:before{content:""}.ph-fill.ph-file-xls:before{content:""}.ph-fill.ph-file-zip:before{content:""}.ph-fill.ph-files:before{content:""}.ph-fill.ph-film-reel:before{content:""}.ph-fill.ph-film-script:before{content:""}.ph-fill.ph-film-slate:before{content:""}.ph-fill.ph-film-strip:before{content:""}.ph-fill.ph-fingerprint:before{content:""}.ph-fill.ph-fingerprint-simple:before{content:""}.ph-fill.ph-finn-the-human:before{content:""}.ph-fill.ph-fire:before{content:""}.ph-fill.ph-fire-extinguisher:before{content:""}.ph-fill.ph-fire-simple:before{content:""}.ph-fill.ph-fire-truck:before{content:""}.ph-fill.ph-first-aid:before{content:""}.ph-fill.ph-first-aid-kit:before{content:""}.ph-fill.ph-fish:before{content:""}.ph-fill.ph-fish-simple:before{content:""}.ph-fill.ph-flag:before{content:""}.ph-fill.ph-flag-banner:before{content:""}.ph-fill.ph-flag-banner-fold:before{content:""}.ph-fill.ph-flag-checkered:before{content:""}.ph-fill.ph-flag-pennant:before{content:""}.ph-fill.ph-flame:before{content:""}.ph-fill.ph-flashlight:before{content:""}.ph-fill.ph-flask:before{content:""}.ph-fill.ph-flip-horizontal:before{content:""}.ph-fill.ph-flip-vertical:before{content:""}.ph-fill.ph-floppy-disk:before{content:""}.ph-fill.ph-floppy-disk-back:before{content:""}.ph-fill.ph-flow-arrow:before{content:""}.ph-fill.ph-flower:before{content:""}.ph-fill.ph-flower-lotus:before{content:""}.ph-fill.ph-flower-tulip:before{content:""}.ph-fill.ph-flying-saucer:before{content:""}.ph-fill.ph-folder:before{content:""}.ph-fill.ph-folder-notch:before{content:""}.ph-fill.ph-folder-dashed:before{content:""}.ph-fill.ph-folder-dotted:before{content:""}.ph-fill.ph-folder-lock:before{content:""}.ph-fill.ph-folder-minus:before{content:""}.ph-fill.ph-folder-notch-minus:before{content:""}.ph-fill.ph-folder-open:before{content:""}.ph-fill.ph-folder-notch-open:before{content:""}.ph-fill.ph-folder-plus:before{content:""}.ph-fill.ph-folder-notch-plus:before{content:""}.ph-fill.ph-folder-simple:before{content:""}.ph-fill.ph-folder-simple-dashed:before{content:""}.ph-fill.ph-folder-simple-dotted:before{content:""}.ph-fill.ph-folder-simple-lock:before{content:""}.ph-fill.ph-folder-simple-minus:before{content:""}.ph-fill.ph-folder-simple-plus:before{content:""}.ph-fill.ph-folder-simple-star:before{content:""}.ph-fill.ph-folder-simple-user:before{content:""}.ph-fill.ph-folder-star:before{content:""}.ph-fill.ph-folder-user:before{content:""}.ph-fill.ph-folders:before{content:""}.ph-fill.ph-football:before{content:""}.ph-fill.ph-football-helmet:before{content:""}.ph-fill.ph-footprints:before{content:""}.ph-fill.ph-fork-knife:before{content:""}.ph-fill.ph-four-k:before{content:""}.ph-fill.ph-frame-corners:before{content:""}.ph-fill.ph-framer-logo:before{content:""}.ph-fill.ph-function:before{content:""}.ph-fill.ph-funnel:before{content:""}.ph-fill.ph-funnel-simple:before{content:""}.ph-fill.ph-funnel-simple-x:before{content:""}.ph-fill.ph-funnel-x:before{content:""}.ph-fill.ph-game-controller:before{content:""}.ph-fill.ph-garage:before{content:""}.ph-fill.ph-gas-can:before{content:""}.ph-fill.ph-gas-pump:before{content:""}.ph-fill.ph-gauge:before{content:""}.ph-fill.ph-gavel:before{content:""}.ph-fill.ph-gear:before{content:""}.ph-fill.ph-gear-fine:before{content:""}.ph-fill.ph-gear-six:before{content:""}.ph-fill.ph-gender-female:before{content:""}.ph-fill.ph-gender-intersex:before{content:""}.ph-fill.ph-gender-male:before{content:""}.ph-fill.ph-gender-neuter:before{content:""}.ph-fill.ph-gender-nonbinary:before{content:""}.ph-fill.ph-gender-transgender:before{content:""}.ph-fill.ph-ghost:before{content:""}.ph-fill.ph-gif:before{content:""}.ph-fill.ph-gift:before{content:""}.ph-fill.ph-git-branch:before{content:""}.ph-fill.ph-git-commit:before{content:""}.ph-fill.ph-git-diff:before{content:""}.ph-fill.ph-git-fork:before{content:""}.ph-fill.ph-git-merge:before{content:""}.ph-fill.ph-git-pull-request:before{content:""}.ph-fill.ph-github-logo:before{content:""}.ph-fill.ph-gitlab-logo:before{content:""}.ph-fill.ph-gitlab-logo-simple:before{content:""}.ph-fill.ph-globe:before{content:""}.ph-fill.ph-globe-hemisphere-east:before{content:""}.ph-fill.ph-globe-hemisphere-west:before{content:""}.ph-fill.ph-globe-simple:before{content:""}.ph-fill.ph-globe-simple-x:before{content:""}.ph-fill.ph-globe-stand:before{content:""}.ph-fill.ph-globe-x:before{content:""}.ph-fill.ph-goggles:before{content:""}.ph-fill.ph-golf:before{content:""}.ph-fill.ph-goodreads-logo:before{content:""}.ph-fill.ph-google-cardboard-logo:before{content:""}.ph-fill.ph-google-chrome-logo:before{content:""}.ph-fill.ph-google-drive-logo:before{content:""}.ph-fill.ph-google-logo:before{content:""}.ph-fill.ph-google-photos-logo:before{content:""}.ph-fill.ph-google-play-logo:before{content:""}.ph-fill.ph-google-podcasts-logo:before{content:""}.ph-fill.ph-gps:before{content:""}.ph-fill.ph-gps-fix:before{content:""}.ph-fill.ph-gps-slash:before{content:""}.ph-fill.ph-gradient:before{content:""}.ph-fill.ph-graduation-cap:before{content:""}.ph-fill.ph-grains:before{content:""}.ph-fill.ph-grains-slash:before{content:""}.ph-fill.ph-graph:before{content:""}.ph-fill.ph-graphics-card:before{content:""}.ph-fill.ph-greater-than:before{content:""}.ph-fill.ph-greater-than-or-equal:before{content:""}.ph-fill.ph-grid-four:before{content:""}.ph-fill.ph-grid-nine:before{content:""}.ph-fill.ph-guitar:before{content:""}.ph-fill.ph-hair-dryer:before{content:""}.ph-fill.ph-hamburger:before{content:""}.ph-fill.ph-hammer:before{content:""}.ph-fill.ph-hand:before{content:""}.ph-fill.ph-hand-arrow-down:before{content:""}.ph-fill.ph-hand-arrow-up:before{content:""}.ph-fill.ph-hand-coins:before{content:""}.ph-fill.ph-hand-deposit:before{content:""}.ph-fill.ph-hand-eye:before{content:""}.ph-fill.ph-hand-fist:before{content:""}.ph-fill.ph-hand-grabbing:before{content:""}.ph-fill.ph-hand-heart:before{content:""}.ph-fill.ph-hand-palm:before{content:""}.ph-fill.ph-hand-peace:before{content:""}.ph-fill.ph-hand-pointing:before{content:""}.ph-fill.ph-hand-soap:before{content:""}.ph-fill.ph-hand-swipe-left:before{content:""}.ph-fill.ph-hand-swipe-right:before{content:""}.ph-fill.ph-hand-tap:before{content:""}.ph-fill.ph-hand-waving:before{content:""}.ph-fill.ph-hand-withdraw:before{content:""}.ph-fill.ph-handbag:before{content:""}.ph-fill.ph-handbag-simple:before{content:""}.ph-fill.ph-hands-clapping:before{content:""}.ph-fill.ph-hands-praying:before{content:""}.ph-fill.ph-handshake:before{content:""}.ph-fill.ph-hard-drive:before{content:""}.ph-fill.ph-hard-drives:before{content:""}.ph-fill.ph-hard-hat:before{content:""}.ph-fill.ph-hash:before{content:""}.ph-fill.ph-hash-straight:before{content:""}.ph-fill.ph-head-circuit:before{content:""}.ph-fill.ph-headlights:before{content:""}.ph-fill.ph-headphones:before{content:""}.ph-fill.ph-headset:before{content:""}.ph-fill.ph-heart:before{content:""}.ph-fill.ph-heart-break:before{content:""}.ph-fill.ph-heart-half:before{content:""}.ph-fill.ph-heart-straight:before{content:""}.ph-fill.ph-heart-straight-break:before{content:""}.ph-fill.ph-heartbeat:before{content:""}.ph-fill.ph-hexagon:before{content:""}.ph-fill.ph-high-definition:before{content:""}.ph-fill.ph-high-heel:before{content:""}.ph-fill.ph-highlighter:before{content:""}.ph-fill.ph-highlighter-circle:before{content:""}.ph-fill.ph-hockey:before{content:""}.ph-fill.ph-hoodie:before{content:""}.ph-fill.ph-horse:before{content:""}.ph-fill.ph-hospital:before{content:""}.ph-fill.ph-hourglass:before{content:""}.ph-fill.ph-hourglass-high:before{content:""}.ph-fill.ph-hourglass-low:before{content:""}.ph-fill.ph-hourglass-medium:before{content:""}.ph-fill.ph-hourglass-simple:before{content:""}.ph-fill.ph-hourglass-simple-high:before{content:""}.ph-fill.ph-hourglass-simple-low:before{content:""}.ph-fill.ph-hourglass-simple-medium:before{content:""}.ph-fill.ph-house:before{content:""}.ph-fill.ph-house-line:before{content:""}.ph-fill.ph-house-simple:before{content:""}.ph-fill.ph-hurricane:before{content:""}.ph-fill.ph-ice-cream:before{content:""}.ph-fill.ph-identification-badge:before{content:""}.ph-fill.ph-identification-card:before{content:""}.ph-fill.ph-image:before{content:""}.ph-fill.ph-image-broken:before{content:""}.ph-fill.ph-image-square:before{content:""}.ph-fill.ph-images:before{content:""}.ph-fill.ph-images-square:before{content:""}.ph-fill.ph-infinity:before{content:""}.ph-fill.ph-lemniscate:before{content:""}.ph-fill.ph-info:before{content:""}.ph-fill.ph-instagram-logo:before{content:""}.ph-fill.ph-intersect:before{content:""}.ph-fill.ph-intersect-square:before{content:""}.ph-fill.ph-intersect-three:before{content:""}.ph-fill.ph-intersection:before{content:""}.ph-fill.ph-invoice:before{content:""}.ph-fill.ph-island:before{content:""}.ph-fill.ph-jar:before{content:""}.ph-fill.ph-jar-label:before{content:""}.ph-fill.ph-jeep:before{content:""}.ph-fill.ph-joystick:before{content:""}.ph-fill.ph-kanban:before{content:""}.ph-fill.ph-key:before{content:""}.ph-fill.ph-key-return:before{content:""}.ph-fill.ph-keyboard:before{content:""}.ph-fill.ph-keyhole:before{content:""}.ph-fill.ph-knife:before{content:""}.ph-fill.ph-ladder:before{content:""}.ph-fill.ph-ladder-simple:before{content:""}.ph-fill.ph-lamp:before{content:""}.ph-fill.ph-lamp-pendant:before{content:""}.ph-fill.ph-laptop:before{content:""}.ph-fill.ph-lasso:before{content:""}.ph-fill.ph-lastfm-logo:before{content:""}.ph-fill.ph-layout:before{content:""}.ph-fill.ph-leaf:before{content:""}.ph-fill.ph-lectern:before{content:""}.ph-fill.ph-lego:before{content:""}.ph-fill.ph-lego-smiley:before{content:""}.ph-fill.ph-less-than:before{content:""}.ph-fill.ph-less-than-or-equal:before{content:""}.ph-fill.ph-letter-circle-h:before{content:""}.ph-fill.ph-letter-circle-p:before{content:""}.ph-fill.ph-letter-circle-v:before{content:""}.ph-fill.ph-lifebuoy:before{content:""}.ph-fill.ph-lightbulb:before{content:""}.ph-fill.ph-lightbulb-filament:before{content:""}.ph-fill.ph-lighthouse:before{content:""}.ph-fill.ph-lightning:before{content:""}.ph-fill.ph-lightning-a:before{content:""}.ph-fill.ph-lightning-slash:before{content:""}.ph-fill.ph-line-segment:before{content:""}.ph-fill.ph-line-segments:before{content:""}.ph-fill.ph-line-vertical:before{content:""}.ph-fill.ph-link:before{content:""}.ph-fill.ph-link-break:before{content:""}.ph-fill.ph-link-simple:before{content:""}.ph-fill.ph-link-simple-break:before{content:""}.ph-fill.ph-link-simple-horizontal:before{content:""}.ph-fill.ph-link-simple-horizontal-break:before{content:""}.ph-fill.ph-linkedin-logo:before{content:""}.ph-fill.ph-linktree-logo:before{content:""}.ph-fill.ph-linux-logo:before{content:""}.ph-fill.ph-list:before{content:""}.ph-fill.ph-list-bullets:before{content:""}.ph-fill.ph-list-checks:before{content:""}.ph-fill.ph-list-dashes:before{content:""}.ph-fill.ph-list-heart:before{content:""}.ph-fill.ph-list-magnifying-glass:before{content:""}.ph-fill.ph-list-numbers:before{content:""}.ph-fill.ph-list-plus:before{content:""}.ph-fill.ph-list-star:before{content:""}.ph-fill.ph-lock:before{content:""}.ph-fill.ph-lock-key:before{content:""}.ph-fill.ph-lock-key-open:before{content:""}.ph-fill.ph-lock-laminated:before{content:""}.ph-fill.ph-lock-laminated-open:before{content:""}.ph-fill.ph-lock-open:before{content:""}.ph-fill.ph-lock-simple:before{content:""}.ph-fill.ph-lock-simple-open:before{content:""}.ph-fill.ph-lockers:before{content:""}.ph-fill.ph-log:before{content:""}.ph-fill.ph-magic-wand:before{content:""}.ph-fill.ph-magnet:before{content:""}.ph-fill.ph-magnet-straight:before{content:""}.ph-fill.ph-magnifying-glass:before{content:""}.ph-fill.ph-magnifying-glass-minus:before{content:""}.ph-fill.ph-magnifying-glass-plus:before{content:""}.ph-fill.ph-mailbox:before{content:""}.ph-fill.ph-map-pin:before{content:""}.ph-fill.ph-map-pin-area:before{content:""}.ph-fill.ph-map-pin-line:before{content:""}.ph-fill.ph-map-pin-plus:before{content:""}.ph-fill.ph-map-pin-simple:before{content:""}.ph-fill.ph-map-pin-simple-area:before{content:""}.ph-fill.ph-map-pin-simple-line:before{content:""}.ph-fill.ph-map-trifold:before{content:""}.ph-fill.ph-markdown-logo:before{content:""}.ph-fill.ph-marker-circle:before{content:""}.ph-fill.ph-martini:before{content:""}.ph-fill.ph-mask-happy:before{content:""}.ph-fill.ph-mask-sad:before{content:""}.ph-fill.ph-mastodon-logo:before{content:""}.ph-fill.ph-math-operations:before{content:""}.ph-fill.ph-matrix-logo:before{content:""}.ph-fill.ph-medal:before{content:""}.ph-fill.ph-medal-military:before{content:""}.ph-fill.ph-medium-logo:before{content:""}.ph-fill.ph-megaphone:before{content:""}.ph-fill.ph-megaphone-simple:before{content:""}.ph-fill.ph-member-of:before{content:""}.ph-fill.ph-memory:before{content:""}.ph-fill.ph-messenger-logo:before{content:""}.ph-fill.ph-meta-logo:before{content:""}.ph-fill.ph-meteor:before{content:""}.ph-fill.ph-metronome:before{content:""}.ph-fill.ph-microphone:before{content:""}.ph-fill.ph-microphone-slash:before{content:""}.ph-fill.ph-microphone-stage:before{content:""}.ph-fill.ph-microscope:before{content:""}.ph-fill.ph-microsoft-excel-logo:before{content:""}.ph-fill.ph-microsoft-outlook-logo:before{content:""}.ph-fill.ph-microsoft-powerpoint-logo:before{content:""}.ph-fill.ph-microsoft-teams-logo:before{content:""}.ph-fill.ph-microsoft-word-logo:before{content:""}.ph-fill.ph-minus:before{content:""}.ph-fill.ph-minus-circle:before{content:""}.ph-fill.ph-minus-square:before{content:""}.ph-fill.ph-money:before{content:""}.ph-fill.ph-money-wavy:before{content:""}.ph-fill.ph-monitor:before{content:""}.ph-fill.ph-monitor-arrow-up:before{content:""}.ph-fill.ph-monitor-play:before{content:""}.ph-fill.ph-moon:before{content:""}.ph-fill.ph-moon-stars:before{content:""}.ph-fill.ph-moped:before{content:""}.ph-fill.ph-moped-front:before{content:""}.ph-fill.ph-mosque:before{content:""}.ph-fill.ph-motorcycle:before{content:""}.ph-fill.ph-mountains:before{content:""}.ph-fill.ph-mouse:before{content:""}.ph-fill.ph-mouse-left-click:before{content:""}.ph-fill.ph-mouse-middle-click:before{content:""}.ph-fill.ph-mouse-right-click:before{content:""}.ph-fill.ph-mouse-scroll:before{content:""}.ph-fill.ph-mouse-simple:before{content:""}.ph-fill.ph-music-note:before{content:""}.ph-fill.ph-music-note-simple:before{content:""}.ph-fill.ph-music-notes:before{content:""}.ph-fill.ph-music-notes-minus:before{content:""}.ph-fill.ph-music-notes-plus:before{content:""}.ph-fill.ph-music-notes-simple:before{content:""}.ph-fill.ph-navigation-arrow:before{content:""}.ph-fill.ph-needle:before{content:""}.ph-fill.ph-network:before{content:""}.ph-fill.ph-network-slash:before{content:""}.ph-fill.ph-network-x:before{content:""}.ph-fill.ph-newspaper:before{content:""}.ph-fill.ph-newspaper-clipping:before{content:""}.ph-fill.ph-not-equals:before{content:""}.ph-fill.ph-not-member-of:before{content:""}.ph-fill.ph-not-subset-of:before{content:""}.ph-fill.ph-not-superset-of:before{content:""}.ph-fill.ph-notches:before{content:""}.ph-fill.ph-note:before{content:""}.ph-fill.ph-note-blank:before{content:""}.ph-fill.ph-note-pencil:before{content:""}.ph-fill.ph-notebook:before{content:""}.ph-fill.ph-notepad:before{content:""}.ph-fill.ph-notification:before{content:""}.ph-fill.ph-notion-logo:before{content:""}.ph-fill.ph-nuclear-plant:before{content:""}.ph-fill.ph-number-circle-eight:before{content:""}.ph-fill.ph-number-circle-five:before{content:""}.ph-fill.ph-number-circle-four:before{content:""}.ph-fill.ph-number-circle-nine:before{content:""}.ph-fill.ph-number-circle-one:before{content:""}.ph-fill.ph-number-circle-seven:before{content:""}.ph-fill.ph-number-circle-six:before{content:""}.ph-fill.ph-number-circle-three:before{content:""}.ph-fill.ph-number-circle-two:before{content:""}.ph-fill.ph-number-circle-zero:before{content:""}.ph-fill.ph-number-eight:before{content:""}.ph-fill.ph-number-five:before{content:""}.ph-fill.ph-number-four:before{content:""}.ph-fill.ph-number-nine:before{content:""}.ph-fill.ph-number-one:before{content:""}.ph-fill.ph-number-seven:before{content:""}.ph-fill.ph-number-six:before{content:""}.ph-fill.ph-number-square-eight:before{content:""}.ph-fill.ph-number-square-five:before{content:""}.ph-fill.ph-number-square-four:before{content:""}.ph-fill.ph-number-square-nine:before{content:""}.ph-fill.ph-number-square-one:before{content:""}.ph-fill.ph-number-square-seven:before{content:""}.ph-fill.ph-number-square-six:before{content:""}.ph-fill.ph-number-square-three:before{content:""}.ph-fill.ph-number-square-two:before{content:""}.ph-fill.ph-number-square-zero:before{content:""}.ph-fill.ph-number-three:before{content:""}.ph-fill.ph-number-two:before{content:""}.ph-fill.ph-number-zero:before{content:""}.ph-fill.ph-numpad:before{content:""}.ph-fill.ph-nut:before{content:""}.ph-fill.ph-ny-times-logo:before{content:""}.ph-fill.ph-octagon:before{content:""}.ph-fill.ph-office-chair:before{content:""}.ph-fill.ph-onigiri:before{content:""}.ph-fill.ph-open-ai-logo:before{content:""}.ph-fill.ph-option:before{content:""}.ph-fill.ph-orange:before{content:""}.ph-fill.ph-orange-slice:before{content:""}.ph-fill.ph-oven:before{content:""}.ph-fill.ph-package:before{content:""}.ph-fill.ph-paint-brush:before{content:""}.ph-fill.ph-paint-brush-broad:before{content:""}.ph-fill.ph-paint-brush-household:before{content:""}.ph-fill.ph-paint-bucket:before{content:""}.ph-fill.ph-paint-roller:before{content:""}.ph-fill.ph-palette:before{content:""}.ph-fill.ph-panorama:before{content:""}.ph-fill.ph-pants:before{content:""}.ph-fill.ph-paper-plane:before{content:""}.ph-fill.ph-paper-plane-right:before{content:""}.ph-fill.ph-paper-plane-tilt:before{content:""}.ph-fill.ph-paperclip:before{content:""}.ph-fill.ph-paperclip-horizontal:before{content:""}.ph-fill.ph-parachute:before{content:""}.ph-fill.ph-paragraph:before{content:""}.ph-fill.ph-parallelogram:before{content:""}.ph-fill.ph-park:before{content:""}.ph-fill.ph-password:before{content:""}.ph-fill.ph-path:before{content:""}.ph-fill.ph-patreon-logo:before{content:""}.ph-fill.ph-pause:before{content:""}.ph-fill.ph-pause-circle:before{content:""}.ph-fill.ph-paw-print:before{content:""}.ph-fill.ph-paypal-logo:before{content:""}.ph-fill.ph-peace:before{content:""}.ph-fill.ph-pen:before{content:""}.ph-fill.ph-pen-nib:before{content:""}.ph-fill.ph-pen-nib-straight:before{content:""}.ph-fill.ph-pencil:before{content:""}.ph-fill.ph-pencil-circle:before{content:""}.ph-fill.ph-pencil-line:before{content:""}.ph-fill.ph-pencil-ruler:before{content:""}.ph-fill.ph-pencil-simple:before{content:""}.ph-fill.ph-pencil-simple-line:before{content:""}.ph-fill.ph-pencil-simple-slash:before{content:""}.ph-fill.ph-pencil-slash:before{content:""}.ph-fill.ph-pentagon:before{content:""}.ph-fill.ph-pentagram:before{content:""}.ph-fill.ph-pepper:before{content:""}.ph-fill.ph-percent:before{content:""}.ph-fill.ph-person:before{content:""}.ph-fill.ph-person-arms-spread:before{content:""}.ph-fill.ph-person-simple:before{content:""}.ph-fill.ph-person-simple-bike:before{content:""}.ph-fill.ph-person-simple-circle:before{content:""}.ph-fill.ph-person-simple-hike:before{content:""}.ph-fill.ph-person-simple-run:before{content:""}.ph-fill.ph-person-simple-ski:before{content:""}.ph-fill.ph-person-simple-snowboard:before{content:""}.ph-fill.ph-person-simple-swim:before{content:""}.ph-fill.ph-person-simple-tai-chi:before{content:""}.ph-fill.ph-person-simple-throw:before{content:""}.ph-fill.ph-person-simple-walk:before{content:""}.ph-fill.ph-perspective:before{content:""}.ph-fill.ph-phone:before{content:""}.ph-fill.ph-phone-call:before{content:""}.ph-fill.ph-phone-disconnect:before{content:""}.ph-fill.ph-phone-incoming:before{content:""}.ph-fill.ph-phone-list:before{content:""}.ph-fill.ph-phone-outgoing:before{content:""}.ph-fill.ph-phone-pause:before{content:""}.ph-fill.ph-phone-plus:before{content:""}.ph-fill.ph-phone-slash:before{content:""}.ph-fill.ph-phone-transfer:before{content:""}.ph-fill.ph-phone-x:before{content:""}.ph-fill.ph-phosphor-logo:before{content:""}.ph-fill.ph-pi:before{content:""}.ph-fill.ph-piano-keys:before{content:""}.ph-fill.ph-picnic-table:before{content:""}.ph-fill.ph-picture-in-picture:before{content:""}.ph-fill.ph-piggy-bank:before{content:""}.ph-fill.ph-pill:before{content:""}.ph-fill.ph-ping-pong:before{content:""}.ph-fill.ph-pint-glass:before{content:""}.ph-fill.ph-pinterest-logo:before{content:""}.ph-fill.ph-pinwheel:before{content:""}.ph-fill.ph-pipe:before{content:""}.ph-fill.ph-pipe-wrench:before{content:""}.ph-fill.ph-pix-logo:before{content:""}.ph-fill.ph-pizza:before{content:""}.ph-fill.ph-placeholder:before{content:""}.ph-fill.ph-planet:before{content:""}.ph-fill.ph-plant:before{content:""}.ph-fill.ph-play:before{content:""}.ph-fill.ph-play-circle:before{content:""}.ph-fill.ph-play-pause:before{content:""}.ph-fill.ph-playlist:before{content:""}.ph-fill.ph-plug:before{content:""}.ph-fill.ph-plug-charging:before{content:""}.ph-fill.ph-plugs:before{content:""}.ph-fill.ph-plugs-connected:before{content:""}.ph-fill.ph-plus:before{content:""}.ph-fill.ph-plus-circle:before{content:""}.ph-fill.ph-plus-minus:before{content:""}.ph-fill.ph-plus-square:before{content:""}.ph-fill.ph-poker-chip:before{content:""}.ph-fill.ph-police-car:before{content:""}.ph-fill.ph-polygon:before{content:""}.ph-fill.ph-popcorn:before{content:""}.ph-fill.ph-popsicle:before{content:""}.ph-fill.ph-potted-plant:before{content:""}.ph-fill.ph-power:before{content:""}.ph-fill.ph-prescription:before{content:""}.ph-fill.ph-presentation:before{content:""}.ph-fill.ph-presentation-chart:before{content:""}.ph-fill.ph-printer:before{content:""}.ph-fill.ph-prohibit:before{content:""}.ph-fill.ph-prohibit-inset:before{content:""}.ph-fill.ph-projector-screen:before{content:""}.ph-fill.ph-projector-screen-chart:before{content:""}.ph-fill.ph-pulse:before{content:""}.ph-fill.ph-activity:before{content:""}.ph-fill.ph-push-pin:before{content:""}.ph-fill.ph-push-pin-simple:before{content:""}.ph-fill.ph-push-pin-simple-slash:before{content:""}.ph-fill.ph-push-pin-slash:before{content:""}.ph-fill.ph-puzzle-piece:before{content:""}.ph-fill.ph-qr-code:before{content:""}.ph-fill.ph-question:before{content:""}.ph-fill.ph-question-mark:before{content:""}.ph-fill.ph-queue:before{content:""}.ph-fill.ph-quotes:before{content:""}.ph-fill.ph-rabbit:before{content:""}.ph-fill.ph-racquet:before{content:""}.ph-fill.ph-radical:before{content:""}.ph-fill.ph-radio:before{content:""}.ph-fill.ph-radio-button:before{content:""}.ph-fill.ph-radioactive:before{content:""}.ph-fill.ph-rainbow:before{content:""}.ph-fill.ph-rainbow-cloud:before{content:""}.ph-fill.ph-ranking:before{content:""}.ph-fill.ph-read-cv-logo:before{content:""}.ph-fill.ph-receipt:before{content:""}.ph-fill.ph-receipt-x:before{content:""}.ph-fill.ph-record:before{content:""}.ph-fill.ph-rectangle:before{content:""}.ph-fill.ph-rectangle-dashed:before{content:""}.ph-fill.ph-recycle:before{content:""}.ph-fill.ph-reddit-logo:before{content:""}.ph-fill.ph-repeat:before{content:""}.ph-fill.ph-repeat-once:before{content:""}.ph-fill.ph-replit-logo:before{content:""}.ph-fill.ph-resize:before{content:""}.ph-fill.ph-rewind:before{content:""}.ph-fill.ph-rewind-circle:before{content:""}.ph-fill.ph-road-horizon:before{content:""}.ph-fill.ph-robot:before{content:""}.ph-fill.ph-rocket:before{content:""}.ph-fill.ph-rocket-launch:before{content:""}.ph-fill.ph-rows:before{content:""}.ph-fill.ph-rows-plus-bottom:before{content:""}.ph-fill.ph-rows-plus-top:before{content:""}.ph-fill.ph-rss:before{content:""}.ph-fill.ph-rss-simple:before{content:""}.ph-fill.ph-rug:before{content:""}.ph-fill.ph-ruler:before{content:""}.ph-fill.ph-sailboat:before{content:""}.ph-fill.ph-scales:before{content:""}.ph-fill.ph-scan:before{content:""}.ph-fill.ph-scan-smiley:before{content:""}.ph-fill.ph-scissors:before{content:""}.ph-fill.ph-scooter:before{content:""}.ph-fill.ph-screencast:before{content:""}.ph-fill.ph-screwdriver:before{content:""}.ph-fill.ph-scribble:before{content:""}.ph-fill.ph-scribble-loop:before{content:""}.ph-fill.ph-scroll:before{content:""}.ph-fill.ph-seal:before{content:""}.ph-fill.ph-circle-wavy:before{content:""}.ph-fill.ph-seal-check:before{content:""}.ph-fill.ph-circle-wavy-check:before{content:""}.ph-fill.ph-seal-percent:before{content:""}.ph-fill.ph-seal-question:before{content:""}.ph-fill.ph-circle-wavy-question:before{content:""}.ph-fill.ph-seal-warning:before{content:""}.ph-fill.ph-circle-wavy-warning:before{content:""}.ph-fill.ph-seat:before{content:""}.ph-fill.ph-seatbelt:before{content:""}.ph-fill.ph-security-camera:before{content:""}.ph-fill.ph-selection:before{content:""}.ph-fill.ph-selection-all:before{content:""}.ph-fill.ph-selection-background:before{content:""}.ph-fill.ph-selection-foreground:before{content:""}.ph-fill.ph-selection-inverse:before{content:""}.ph-fill.ph-selection-plus:before{content:""}.ph-fill.ph-selection-slash:before{content:""}.ph-fill.ph-shapes:before{content:""}.ph-fill.ph-share:before{content:""}.ph-fill.ph-share-fat:before{content:""}.ph-fill.ph-share-network:before{content:""}.ph-fill.ph-shield:before{content:""}.ph-fill.ph-shield-check:before{content:""}.ph-fill.ph-shield-checkered:before{content:""}.ph-fill.ph-shield-chevron:before{content:""}.ph-fill.ph-shield-plus:before{content:""}.ph-fill.ph-shield-slash:before{content:""}.ph-fill.ph-shield-star:before{content:""}.ph-fill.ph-shield-warning:before{content:""}.ph-fill.ph-shipping-container:before{content:""}.ph-fill.ph-shirt-folded:before{content:""}.ph-fill.ph-shooting-star:before{content:""}.ph-fill.ph-shopping-bag:before{content:""}.ph-fill.ph-shopping-bag-open:before{content:""}.ph-fill.ph-shopping-cart:before{content:""}.ph-fill.ph-shopping-cart-simple:before{content:""}.ph-fill.ph-shovel:before{content:""}.ph-fill.ph-shower:before{content:""}.ph-fill.ph-shrimp:before{content:""}.ph-fill.ph-shuffle:before{content:""}.ph-fill.ph-shuffle-angular:before{content:""}.ph-fill.ph-shuffle-simple:before{content:""}.ph-fill.ph-sidebar:before{content:""}.ph-fill.ph-sidebar-simple:before{content:""}.ph-fill.ph-sigma:before{content:""}.ph-fill.ph-sign-in:before{content:""}.ph-fill.ph-sign-out:before{content:""}.ph-fill.ph-signature:before{content:""}.ph-fill.ph-signpost:before{content:""}.ph-fill.ph-sim-card:before{content:""}.ph-fill.ph-siren:before{content:""}.ph-fill.ph-sketch-logo:before{content:""}.ph-fill.ph-skip-back:before{content:""}.ph-fill.ph-skip-back-circle:before{content:""}.ph-fill.ph-skip-forward:before{content:""}.ph-fill.ph-skip-forward-circle:before{content:""}.ph-fill.ph-skull:before{content:""}.ph-fill.ph-skype-logo:before{content:""}.ph-fill.ph-slack-logo:before{content:""}.ph-fill.ph-sliders:before{content:""}.ph-fill.ph-sliders-horizontal:before{content:""}.ph-fill.ph-slideshow:before{content:""}.ph-fill.ph-smiley:before{content:""}.ph-fill.ph-smiley-angry:before{content:""}.ph-fill.ph-smiley-blank:before{content:""}.ph-fill.ph-smiley-meh:before{content:""}.ph-fill.ph-smiley-melting:before{content:""}.ph-fill.ph-smiley-nervous:before{content:""}.ph-fill.ph-smiley-sad:before{content:""}.ph-fill.ph-smiley-sticker:before{content:""}.ph-fill.ph-smiley-wink:before{content:""}.ph-fill.ph-smiley-x-eyes:before{content:""}.ph-fill.ph-snapchat-logo:before{content:""}.ph-fill.ph-sneaker:before{content:""}.ph-fill.ph-sneaker-move:before{content:""}.ph-fill.ph-snowflake:before{content:""}.ph-fill.ph-soccer-ball:before{content:""}.ph-fill.ph-sock:before{content:""}.ph-fill.ph-solar-panel:before{content:""}.ph-fill.ph-solar-roof:before{content:""}.ph-fill.ph-sort-ascending:before{content:""}.ph-fill.ph-sort-descending:before{content:""}.ph-fill.ph-soundcloud-logo:before{content:""}.ph-fill.ph-spade:before{content:""}.ph-fill.ph-sparkle:before{content:""}.ph-fill.ph-speaker-hifi:before{content:""}.ph-fill.ph-speaker-high:before{content:""}.ph-fill.ph-speaker-low:before{content:""}.ph-fill.ph-speaker-none:before{content:""}.ph-fill.ph-speaker-simple-high:before{content:""}.ph-fill.ph-speaker-simple-low:before{content:""}.ph-fill.ph-speaker-simple-none:before{content:""}.ph-fill.ph-speaker-simple-slash:before{content:""}.ph-fill.ph-speaker-simple-x:before{content:""}.ph-fill.ph-speaker-slash:before{content:""}.ph-fill.ph-speaker-x:before{content:""}.ph-fill.ph-speedometer:before{content:""}.ph-fill.ph-sphere:before{content:""}.ph-fill.ph-spinner:before{content:""}.ph-fill.ph-spinner-ball:before{content:""}.ph-fill.ph-spinner-gap:before{content:""}.ph-fill.ph-spiral:before{content:""}.ph-fill.ph-split-horizontal:before{content:""}.ph-fill.ph-split-vertical:before{content:""}.ph-fill.ph-spotify-logo:before{content:""}.ph-fill.ph-spray-bottle:before{content:""}.ph-fill.ph-square:before{content:""}.ph-fill.ph-square-half:before{content:""}.ph-fill.ph-square-half-bottom:before{content:""}.ph-fill.ph-square-logo:before{content:""}.ph-fill.ph-square-split-horizontal:before{content:""}.ph-fill.ph-square-split-vertical:before{content:""}.ph-fill.ph-squares-four:before{content:""}.ph-fill.ph-stack:before{content:""}.ph-fill.ph-stack-minus:before{content:""}.ph-fill.ph-stack-overflow-logo:before{content:""}.ph-fill.ph-stack-plus:before{content:""}.ph-fill.ph-stack-simple:before{content:""}.ph-fill.ph-stairs:before{content:""}.ph-fill.ph-stamp:before{content:""}.ph-fill.ph-standard-definition:before{content:""}.ph-fill.ph-star:before{content:""}.ph-fill.ph-star-and-crescent:before{content:""}.ph-fill.ph-star-four:before{content:""}.ph-fill.ph-star-half:before{content:""}.ph-fill.ph-star-of-david:before{content:""}.ph-fill.ph-steam-logo:before{content:""}.ph-fill.ph-steering-wheel:before{content:""}.ph-fill.ph-steps:before{content:""}.ph-fill.ph-stethoscope:before{content:""}.ph-fill.ph-sticker:before{content:""}.ph-fill.ph-stool:before{content:""}.ph-fill.ph-stop:before{content:""}.ph-fill.ph-stop-circle:before{content:""}.ph-fill.ph-storefront:before{content:""}.ph-fill.ph-strategy:before{content:""}.ph-fill.ph-stripe-logo:before{content:""}.ph-fill.ph-student:before{content:""}.ph-fill.ph-subset-of:before{content:""}.ph-fill.ph-subset-proper-of:before{content:""}.ph-fill.ph-subtitles:before{content:""}.ph-fill.ph-subtitles-slash:before{content:""}.ph-fill.ph-subtract:before{content:""}.ph-fill.ph-subtract-square:before{content:""}.ph-fill.ph-subway:before{content:""}.ph-fill.ph-suitcase:before{content:""}.ph-fill.ph-suitcase-rolling:before{content:""}.ph-fill.ph-suitcase-simple:before{content:""}.ph-fill.ph-sun:before{content:""}.ph-fill.ph-sun-dim:before{content:""}.ph-fill.ph-sun-horizon:before{content:""}.ph-fill.ph-sunglasses:before{content:""}.ph-fill.ph-superset-of:before{content:""}.ph-fill.ph-superset-proper-of:before{content:""}.ph-fill.ph-swap:before{content:""}.ph-fill.ph-swatches:before{content:""}.ph-fill.ph-swimming-pool:before{content:""}.ph-fill.ph-sword:before{content:""}.ph-fill.ph-synagogue:before{content:""}.ph-fill.ph-syringe:before{content:""}.ph-fill.ph-t-shirt:before{content:""}.ph-fill.ph-table:before{content:""}.ph-fill.ph-tabs:before{content:""}.ph-fill.ph-tag:before{content:""}.ph-fill.ph-tag-chevron:before{content:""}.ph-fill.ph-tag-simple:before{content:""}.ph-fill.ph-target:before{content:""}.ph-fill.ph-taxi:before{content:""}.ph-fill.ph-tea-bag:before{content:""}.ph-fill.ph-telegram-logo:before{content:""}.ph-fill.ph-television:before{content:""}.ph-fill.ph-television-simple:before{content:""}.ph-fill.ph-tennis-ball:before{content:""}.ph-fill.ph-tent:before{content:""}.ph-fill.ph-terminal:before{content:""}.ph-fill.ph-terminal-window:before{content:""}.ph-fill.ph-test-tube:before{content:""}.ph-fill.ph-text-a-underline:before{content:""}.ph-fill.ph-text-aa:before{content:""}.ph-fill.ph-text-align-center:before{content:""}.ph-fill.ph-text-align-justify:before{content:""}.ph-fill.ph-text-align-left:before{content:""}.ph-fill.ph-text-align-right:before{content:""}.ph-fill.ph-text-b:before{content:""}.ph-fill.ph-text-bolder:before{content:""}.ph-fill.ph-text-columns:before{content:""}.ph-fill.ph-text-h:before{content:""}.ph-fill.ph-text-h-five:before{content:""}.ph-fill.ph-text-h-four:before{content:""}.ph-fill.ph-text-h-one:before{content:""}.ph-fill.ph-text-h-six:before{content:""}.ph-fill.ph-text-h-three:before{content:""}.ph-fill.ph-text-h-two:before{content:""}.ph-fill.ph-text-indent:before{content:""}.ph-fill.ph-text-italic:before{content:""}.ph-fill.ph-text-outdent:before{content:""}.ph-fill.ph-text-strikethrough:before{content:""}.ph-fill.ph-text-subscript:before{content:""}.ph-fill.ph-text-superscript:before{content:""}.ph-fill.ph-text-t:before{content:""}.ph-fill.ph-text-t-slash:before{content:""}.ph-fill.ph-text-underline:before{content:""}.ph-fill.ph-textbox:before{content:""}.ph-fill.ph-thermometer:before{content:""}.ph-fill.ph-thermometer-cold:before{content:""}.ph-fill.ph-thermometer-hot:before{content:""}.ph-fill.ph-thermometer-simple:before{content:""}.ph-fill.ph-threads-logo:before{content:""}.ph-fill.ph-three-d:before{content:""}.ph-fill.ph-thumbs-down:before{content:""}.ph-fill.ph-thumbs-up:before{content:""}.ph-fill.ph-ticket:before{content:""}.ph-fill.ph-tidal-logo:before{content:""}.ph-fill.ph-tiktok-logo:before{content:""}.ph-fill.ph-tilde:before{content:""}.ph-fill.ph-timer:before{content:""}.ph-fill.ph-tip-jar:before{content:""}.ph-fill.ph-tipi:before{content:""}.ph-fill.ph-tire:before{content:""}.ph-fill.ph-toggle-left:before{content:""}.ph-fill.ph-toggle-right:before{content:""}.ph-fill.ph-toilet:before{content:""}.ph-fill.ph-toilet-paper:before{content:""}.ph-fill.ph-toolbox:before{content:""}.ph-fill.ph-tooth:before{content:""}.ph-fill.ph-tornado:before{content:""}.ph-fill.ph-tote:before{content:""}.ph-fill.ph-tote-simple:before{content:""}.ph-fill.ph-towel:before{content:""}.ph-fill.ph-tractor:before{content:""}.ph-fill.ph-trademark:before{content:""}.ph-fill.ph-trademark-registered:before{content:""}.ph-fill.ph-traffic-cone:before{content:""}.ph-fill.ph-traffic-sign:before{content:""}.ph-fill.ph-traffic-signal:before{content:""}.ph-fill.ph-train:before{content:""}.ph-fill.ph-train-regional:before{content:""}.ph-fill.ph-train-simple:before{content:""}.ph-fill.ph-tram:before{content:""}.ph-fill.ph-translate:before{content:""}.ph-fill.ph-trash:before{content:""}.ph-fill.ph-trash-simple:before{content:""}.ph-fill.ph-tray:before{content:""}.ph-fill.ph-tray-arrow-down:before{content:""}.ph-fill.ph-archive-tray:before{content:""}.ph-fill.ph-tray-arrow-up:before{content:""}.ph-fill.ph-treasure-chest:before{content:""}.ph-fill.ph-tree:before{content:""}.ph-fill.ph-tree-evergreen:before{content:""}.ph-fill.ph-tree-palm:before{content:""}.ph-fill.ph-tree-structure:before{content:""}.ph-fill.ph-tree-view:before{content:""}.ph-fill.ph-trend-down:before{content:""}.ph-fill.ph-trend-up:before{content:""}.ph-fill.ph-triangle:before{content:""}.ph-fill.ph-triangle-dashed:before{content:""}.ph-fill.ph-trolley:before{content:""}.ph-fill.ph-trolley-suitcase:before{content:""}.ph-fill.ph-trophy:before{content:""}.ph-fill.ph-truck:before{content:""}.ph-fill.ph-truck-trailer:before{content:""}.ph-fill.ph-tumblr-logo:before{content:""}.ph-fill.ph-twitch-logo:before{content:""}.ph-fill.ph-twitter-logo:before{content:""}.ph-fill.ph-umbrella:before{content:""}.ph-fill.ph-umbrella-simple:before{content:""}.ph-fill.ph-union:before{content:""}.ph-fill.ph-unite:before{content:""}.ph-fill.ph-unite-square:before{content:""}.ph-fill.ph-upload:before{content:""}.ph-fill.ph-upload-simple:before{content:""}.ph-fill.ph-usb:before{content:""}.ph-fill.ph-user:before{content:""}.ph-fill.ph-user-check:before{content:""}.ph-fill.ph-user-circle:before{content:""}.ph-fill.ph-user-circle-check:before{content:""}.ph-fill.ph-user-circle-dashed:before{content:""}.ph-fill.ph-user-circle-gear:before{content:""}.ph-fill.ph-user-circle-minus:before{content:""}.ph-fill.ph-user-circle-plus:before{content:""}.ph-fill.ph-user-focus:before{content:""}.ph-fill.ph-user-gear:before{content:""}.ph-fill.ph-user-list:before{content:""}.ph-fill.ph-user-minus:before{content:""}.ph-fill.ph-user-plus:before{content:""}.ph-fill.ph-user-rectangle:before{content:""}.ph-fill.ph-user-sound:before{content:""}.ph-fill.ph-user-square:before{content:""}.ph-fill.ph-user-switch:before{content:""}.ph-fill.ph-users:before{content:""}.ph-fill.ph-users-four:before{content:""}.ph-fill.ph-users-three:before{content:""}.ph-fill.ph-van:before{content:""}.ph-fill.ph-vault:before{content:""}.ph-fill.ph-vector-three:before{content:""}.ph-fill.ph-vector-two:before{content:""}.ph-fill.ph-vibrate:before{content:""}.ph-fill.ph-video:before{content:""}.ph-fill.ph-video-camera:before{content:""}.ph-fill.ph-video-camera-slash:before{content:""}.ph-fill.ph-video-conference:before{content:""}.ph-fill.ph-vignette:before{content:""}.ph-fill.ph-vinyl-record:before{content:""}.ph-fill.ph-virtual-reality:before{content:""}.ph-fill.ph-virus:before{content:""}.ph-fill.ph-visor:before{content:""}.ph-fill.ph-voicemail:before{content:""}.ph-fill.ph-volleyball:before{content:""}.ph-fill.ph-wall:before{content:""}.ph-fill.ph-wallet:before{content:""}.ph-fill.ph-warehouse:before{content:""}.ph-fill.ph-warning:before{content:""}.ph-fill.ph-warning-circle:before{content:""}.ph-fill.ph-warning-diamond:before{content:""}.ph-fill.ph-warning-octagon:before{content:""}.ph-fill.ph-washing-machine:before{content:""}.ph-fill.ph-watch:before{content:""}.ph-fill.ph-wave-sawtooth:before{content:""}.ph-fill.ph-wave-sine:before{content:""}.ph-fill.ph-wave-square:before{content:""}.ph-fill.ph-wave-triangle:before{content:""}.ph-fill.ph-waveform:before{content:""}.ph-fill.ph-waveform-slash:before{content:""}.ph-fill.ph-waves:before{content:""}.ph-fill.ph-webcam:before{content:""}.ph-fill.ph-webcam-slash:before{content:""}.ph-fill.ph-webhooks-logo:before{content:""}.ph-fill.ph-wechat-logo:before{content:""}.ph-fill.ph-whatsapp-logo:before{content:""}.ph-fill.ph-wheelchair:before{content:""}.ph-fill.ph-wheelchair-motion:before{content:""}.ph-fill.ph-wifi-high:before{content:""}.ph-fill.ph-wifi-low:before{content:""}.ph-fill.ph-wifi-medium:before{content:""}.ph-fill.ph-wifi-none:before{content:""}.ph-fill.ph-wifi-slash:before{content:""}.ph-fill.ph-wifi-x:before{content:""}.ph-fill.ph-wind:before{content:""}.ph-fill.ph-windmill:before{content:""}.ph-fill.ph-windows-logo:before{content:""}.ph-fill.ph-wine:before{content:""}.ph-fill.ph-wrench:before{content:""}.ph-fill.ph-x:before{content:""}.ph-fill.ph-x-circle:before{content:""}.ph-fill.ph-x-logo:before{content:""}.ph-fill.ph-x-square:before{content:""}.ph-fill.ph-yarn:before{content:""}.ph-fill.ph-yin-yang:before{content:""}.ph-fill.ph-youtube-logo:before{content:""}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf) format("truetype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf) format("truetype");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Bold.ttf) format("truetype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf) format("truetype");font-weight:400;font-style:italic;font-display:swap}.container{padding:18px}.section{margin-bottom:48px}.section-title,.block{margin-bottom:34px}.block-title{margin-bottom:22px}.text,p{margin-bottom:15px}.hint{margin-top:8px}.list{padding-left:22px;margin-bottom:15px}.list-item{margin-bottom:8px}.list-nested{margin-top:8px}.table{margin-bottom:22px}.table-caption{margin-bottom:8px}.form-group{margin-bottom:15px}.label{margin-bottom:5px;display:block}.input,.select,.textarea{margin-top:5px}.toast{padding:15px}.toast-stack{gap:8px}@keyframes terminal_scan_x{0%{transform:translate(-120%)}to{transform:translate(220%)}}@keyframes terminal_scan_y{0%{transform:translateY(-120%)}to{transform:translateY(220%)}}@keyframes terminal_pulse{0%,to{box-shadow:0 0 #c0caf500}50%{box-shadow:0 0 0 4px #c0caf52e}}@keyframes panel_boot{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes overlay_reveal{0%{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}@keyframes tooltip_reveal{0%{opacity:0;transform:translate(-50%) translateY(5px)}to{opacity:1;transform:translate(-50%) translateY(0)}}@media(prefers-reduced-motion:reduce){*,:after,:before{animation-duration:0s!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:0s!important}}html{font-size:100%}body{font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:400;line-height:1.6;letter-spacing:0;color:#c0caf5}h1,h2,h3,h4,h5,h6{font-family:IBM Plex Mono,monospace;font-weight:600;line-height:1.25;margin:0}h1.contrast,h2.contrast,h3.contrast,h4.contrast,h5.contrast,h6.contrast{background:#c0caf5;color:#16161e;display:inline;padding:0 8px}h1{font-size:34px;letter-spacing:0}h2{font-size:26px}h3{font-size:22px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px;font-weight:500}.text,p{font-size:15px;line-height:1.6}.text-sm{font-size:13px;line-height:1.4}.text-lg{font-size:16px;line-height:1.6}.text-lead{max-width:760px;color:#c0caf5;font-size:16px;font-weight:500;line-height:1.6}.text-muted{font-size:13px;color:#787c99}.text-strong,strong{font-weight:600}.text-bold{font-weight:700}.text-italic,em{font-style:italic}.text-success{color:#9ece6a}.text-warning{color:#e0af68}.text-danger,.text-error{color:#f7768e}.text-info{color:#bb9af7}.eyebrow{display:inline-flex;width:-moz-max-content;width:max-content;max-width:100%;padding:5px 8px;color:#16161e;background:#7aa2f7;font-size:12px;font-weight:700;line-height:1;text-transform:uppercase}.caption{color:#787c99;font-size:12px;line-height:1.4}.code,code,pre{font-family:IBM Plex Mono,monospace;font-size:15px;line-height:1.4;background-color:#1f2335}.text-primary{color:#c0caf5}.text-secondary{color:#a9b1d6}pre{font-size:15px;line-height:1.6;white-space:pre-wrap}.code,pre code{-o-tab-size:2;tab-size:2;-moz-tab-size:2}.code{display:inline-flex;padding:0 5px;color:#7aa2f7;border:2px solid rgba(122,162,247,.24)}.kbd{display:inline-flex;align-items:center;min-height:24px;padding:0 8px;border:2px solid rgba(192,202,245,.24);border-bottom-color:#7aa2f7;color:#c0caf5;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:12px;font-weight:700;line-height:1;text-transform:uppercase}.quote{max-width:760px;margin:0;padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;color:#a9b1d6;background:#1f2335;font-size:15px;line-height:1.6}.quote cite{display:block;margin-top:12px;color:#7aa2f7;font-size:13px;font-style:normal;text-transform:uppercase}a{font-weight:500;text-decoration:none;color:#7aa2f7}@media(hover:hover)and (pointer:fine){a:hover{color:#e0af68}}@media(hover:none)and (pointer:coarse){a:active{color:#e0af68}}.link{font-size:inherit;font-weight:500}.label{font-size:13px;font-weight:500;line-height:1.4}.hint,.meta{font-size:12px;line-height:1.4}.table{font-size:13px;line-height:1.4}.table th{font-weight:600}.table td{font-weight:400}.list{font-size:15px;line-height:1.6}.list-item{font-size:inherit}.modal-title{font-size:20px;font-weight:600}.modal-body{font-size:15px}.toast-title{font-size:14px;font-weight:600}.toast-text{font-size:13px;line-height:1.4}.palette{display:flex;flex-direction:row;flex-wrap:wrap;gap:8px}.palette .color .color-box{width:92px;height:68px}body .bg-primary{background:#c0caf5}body .bg-secondary{background:#7aa2f7}body .bg-success{background:#9ece6a}body .bg-accent{background:#ff9e64}body .bg-info{background:#bb9af7}body .bg-warning{background:#e0af68}body .bg-error{background:#f7768e}body .text-color-primary{color:#c0caf5}body .text-color-secondary{color:#7aa2f7}body .text-color-success{color:#9ece6a}body .text-color-accent{color:#ff9e64}body .text-color-info{color:#bb9af7}body .text-color-warning{color:#e0af68}body .text-color-error{color:#f7768e}.loader{width:32px;aspect-ratio:1;--c:no-repeat linear-gradient(#FF3C00 0 0);background:var(--c) 0 0,var(--c) 0 100%,var(--c) 50% 0,var(--c) 50% 100%,var(--c) 100% 0,var(--c) 100% 100%;animation:l12 1s infinite}@keyframes l12{0%,to{background-size:20% 50%}16.67%{background-size:20% 30%,20% 30%,20% 50%,20% 50%,20% 50%,20% 50%}33.33%{background-size:20% 30%,20% 30%,20% 30%,20% 30%,20% 50%,20% 50%}50%{background-size:20% 30%,20% 30%,20% 30%,20% 30%,20% 30%,20% 30%}66.67%{background-size:20% 50%,20% 50%,20% 30%,20% 30%,20% 30%,20% 30%}83.33%{background-size:20% 50%,20% 50%,20% 50%,20% 50%,20% 30%,20% 30%}}.circle-loader{display:flex;flex-direction:row;align-items:center;gap:8px}.circle-loader .ph,.circle-loader .ph-bold{font-size:26px;transform-origin:50% 50%;animation:icon_spin 1.2s linear infinite}.progress{display:flex;flex-direction:column;gap:8px;width:100%;max-width:640px}.progress .progress-header{display:flex;align-items:center;justify-content:space-between;gap:12px;color:#a9b1d6;font-size:13px;font-weight:600;text-transform:uppercase}.progress .progress-value{color:#c0caf5;font-family:IBM Plex Mono,monospace}.progress .progress-track{position:relative;width:100%;height:18px;overflow:hidden;border:2px solid rgba(192,202,245,.24);background:#1f2335}.progress .progress-bar{display:block;position:relative;overflow:hidden;width:var(--progress-value,0%);height:100%;background:#7aa2f7;transition:width .28s ease}.progress.progress-success .progress-bar{background:#9ece6a}.progress.progress-warning .progress-bar{background:#e0af68}.progress.progress-danger .progress-bar,.progress.progress-error .progress-bar{background:#f7768e}.progress.progress-striped .progress-bar{background-image:repeating-linear-gradient(90deg,transparent 0,transparent 14px,rgba(22,22,30,.2) 14px,rgba(22,22,30,.2) 16px)}.progress.progress-animated .progress-bar:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;width:48%;background:linear-gradient(90deg,transparent,rgba(192,202,245,.28),transparent);transform:translate(-120%);animation:progress_scan 1.4s ease infinite}.usage-meter{display:grid;gap:12px;width:100%;max-width:420px;padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.usage-meter .usage-meter-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0;font-size:16px;font-weight:700;line-height:1;text-transform:uppercase}.usage-meter .usage-meter-value{color:#7aa2f7;font-family:IBM Plex Mono,monospace;font-size:13px}.usage-meter .usage-meter-meta{margin:0;color:#a9b1d6;font-size:13px;line-height:1.4}.progress-stages{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;width:100%;max-width:720px}.progress-stages .progress-stage{min-height:42px;padding:8px 12px;border:2px solid rgba(192,202,245,.24);color:#787c99;background:#1f2335;font-size:13px;font-weight:600;line-height:1.4;text-transform:uppercase}.progress-stages .progress-stage-complete{color:#16161e;background:#9ece6a;border-color:#9ece6a}.progress-stages .progress-stage-current{color:#16161e;background:#e0af68;border-color:#e0af68}@media(max-width:767px){.progress-stages{grid-template-columns:1fr 1fr}}@media(max-width:479px){.progress-stages{grid-template-columns:1fr}}@keyframes progress_scan{0%{transform:translate(-120%)}to{transform:translate(220%)}}@keyframes icon_spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.btn{display:inline-flex;align-items:center;justify-content:center;min-height:46px;font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:600;line-height:1;letter-spacing:.04em;padding:12px 22px;border-radius:0;border-width:2px;border-left-width:6px;border-style:solid;border-color:#c0caf5;text-transform:uppercase;background-color:transparent;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:background-color,border-color,color,opacity}.btn:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}.btn.with-icon{border-left-width:46px;position:relative}.btn.with-icon .ph,.btn.with-icon .ph-bold{position:absolute;color:#16161e;left:-46px;top:1px;font-size:26px;height:100%;display:inline-flex;align-items:center;width:46px;justify-content:center;transition-duration:.2s;transition-property:color,left}@media(hover:hover)and (pointer:fine){.btn:hover.with-icon:not(.loading-state):not(.btn-small) .ph,.btn:hover.with-icon:not(.loading-state):not(.btn-small) .ph-bold{left:-28px}}@media(hover:none)and (pointer:coarse){.btn:active.with-icon:not(.loading-state):not(.btn-small) .ph,.btn:active.with-icon:not(.loading-state):not(.btn-small) .ph-bold{left:-28px}}.btn.btn-primary{color:#c0caf5;border-color:#c0caf5}@media(hover:hover)and (pointer:fine){.btn.btn-primary:hover{background-color:#c0caf5;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-primary:active{background-color:#c0caf5;color:#16161e}}.btn.btn-secondary{color:#7aa2f7;border-color:#7aa2f7}@media(hover:hover)and (pointer:fine){.btn.btn-secondary:hover{background-color:#7aa2f7;color:#16161e}.btn.btn-secondary:hover.with-icon .ph,.btn.btn-secondary:hover.with-icon .ph-bold{color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-secondary:active{background-color:#7aa2f7;color:#16161e}.btn.btn-secondary:active.with-icon .ph,.btn.btn-secondary:active.with-icon .ph-bold{color:#16161e}}.btn.btn-accent{color:#ff9e64;border-color:#ff9e64}@media(hover:hover)and (pointer:fine){.btn.btn-accent:hover{background-color:#ff9e64;color:#16161e}.btn.btn-accent:hover.with-icon .ph,.btn.btn-accent:hover.with-icon .ph-bold{color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-accent:active{background-color:#ff9e64;color:#16161e}.btn.btn-accent:active.with-icon .ph,.btn.btn-accent:active.with-icon .ph-bold{color:#16161e}}.btn.btn-danger{color:#f7768e;border-color:#f7768e}@media(hover:hover)and (pointer:fine){.btn.btn-danger:hover{background-color:#f7768e;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-danger:active{background-color:#f7768e;color:#16161e}}.btn.btn-warning{color:#e0af68;border-color:#e0af68}@media(hover:hover)and (pointer:fine){.btn.btn-warning:hover{background-color:#e0af68;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-warning:active{background-color:#e0af68;color:#16161e}}.btn.btn-success{color:#9ece6a;border-color:#9ece6a}@media(hover:hover)and (pointer:fine){.btn.btn-success:hover{background-color:#9ece6a;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-success:active{background-color:#9ece6a;color:#16161e}}.btn.btn-info{color:#bb9af7;border-color:#bb9af7}@media(hover:hover)and (pointer:fine){.btn.btn-info:hover{background-color:#bb9af7;color:#16161e}.btn.btn-info:hover.with-icon .ph,.btn.btn-info:hover.with-icon .ph-bold{color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-info:active{background-color:#bb9af7;color:#16161e}.btn.btn-info:active.with-icon .ph,.btn.btn-info:active.with-icon .ph-bold{color:#16161e}}.btn[disabled]:not(.loading-state){color:#787c99;border-color:#c0caf53d;background-color:#1f2335;cursor:not-allowed;opacity:.72}.btn[disabled]:not(.loading-state).with-icon .ph,.btn[disabled]:not(.loading-state).with-icon .ph-bold{color:#787c99}@media(hover:hover)and (pointer:fine){.btn[disabled]:not(.loading-state):hover{background-color:#1f2335;color:#787c99}.btn[disabled]:not(.loading-state):hover.with-icon .ph,.btn[disabled]:not(.loading-state):hover.with-icon .ph-bold{color:#787c99}}@media(hover:none)and (pointer:coarse){.btn[disabled]:not(.loading-state):active{background-color:#1f2335;color:#787c99}.btn[disabled]:not(.loading-state):active.with-icon .ph,.btn[disabled]:not(.loading-state):active.with-icon .ph-bold{color:#787c99}}.btn[disabled]:not(.loading-state).with-icon:not(.btn-small) .ph,.btn[disabled]:not(.loading-state).with-icon:not(.btn-small) .ph-bold{left:-28px}.btn.btn-small{font-size:13px;font-weight:500;min-height:38px;padding:8px}.btn.btn-small.with-icon{border-left-width:32px}.btn.btn-small.with-icon .ph,.btn.btn-small.with-icon .ph-bold{top:0;left:-40px;font-size:22px}.btn.btn-small.with-icon.loading-state .ph,.btn.btn-small.with-icon.loading-state .ph-bold{font-size:26px}.btn.btn-large{font-size:16px;font-weight:700;min-height:54px;padding:15px 48px}.btn.loading-state{color:#16161e!important;border-color:#c0caf5!important;background-color:#c0caf5!important}.btn.loading-state .ph,.btn.loading-state .ph-bold{font-size:26px;transform-origin:50% 50%;animation:icon_spin 1.2s linear infinite}.btn-icon{display:flex;justify-content:center;align-items:center;width:38px;height:38px;background:0 0;color:#c0caf5;font-size:22px;border:2px solid transparent;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.btn-icon:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.btn-icon:not(.without-hover):hover{color:#e0af68;border-color:#e0af68}}@media(hover:none)and (pointer:coarse){.btn-icon:not(.without-hover):active{color:#e0af68;border-color:#e0af68}}.btn-icon:disabled,.btn-icon[disabled]{color:#787c99;border-color:transparent;background-color:transparent;cursor:not-allowed;opacity:.72}@media(hover:hover)and (pointer:fine){.btn-icon:disabled:not(.without-hover):hover,.btn-icon[disabled]:not(.without-hover):hover{color:#787c99;border-color:transparent}}@media(hover:none)and (pointer:coarse){.btn-icon:disabled:not(.without-hover):active,.btn-icon[disabled]:not(.without-hover):active{color:#787c99;border-color:transparent}}.btn-icon-sm{width:28px;height:28px;font-size:18px}.form-group{width:100%;max-width:600px}.form-group .label{display:flex;flex-direction:column;font-size:15px;width:100%;position:relative;color:#c0caf5}.form-group .label>.ph{position:absolute;color:#c0caf5;left:0;bottom:1px;font-size:26px;height:54px;display:inline-flex;align-items:center;width:46px;justify-content:center;transition-duration:.2s;transition-property:color,left}.form-group .label .input{min-height:54px;font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:500;line-height:1;letter-spacing:.04em;padding:12px 22px;margin-top:8px;border-radius:0;border-width:2px;border-bottom-width:6px;border-style:solid;border-color:#c0caf5;color:#c0caf5;background-color:#1f2335;transition-duration:.2s;transition-timing-function:ease;transition-property:background-color,border-color,color}@media(hover:hover)and (pointer:fine){.form-group .label .input:hover{border-bottom-color:#787c99}}@media(hover:none)and (pointer:coarse){.form-group .label .input:active{border-bottom-color:#787c99}}.form-group .label .input:focus{outline:2px solid #E0AF68;outline-offset:3px;border-color:#7aa2f7;background-color:transparent}.form-group .label .input:disabled{color:#787c99;border-color:#c0caf53d;background:#1f2335;cursor:not-allowed;opacity:.72}.form-group .label .input[readonly]{color:#a9b1d6;border-color:#c0caf53d;background:#c0caf508}.form-group .label .input::-moz-placeholder{color:#787c99}.form-group .label .input::placeholder{color:#787c99}.form-group .label .input::-webkit-search-cancel-button,.form-group .label .input::-webkit-search-decoration,.form-group .label .input::-webkit-search-results-button,.form-group .label .input::-webkit-search-results-decoration{display:none;-webkit-appearance:none}.form-group .label .input[type=date],.form-group .label .input[type=datetime-local],.form-group .label .input[type=month],.form-group .label .input[type=time]{color-scheme:dark;cursor:pointer;min-width:0;padding-right:46px;text-transform:uppercase}.form-group .label .input[type=date]::-webkit-calendar-picker-indicator,.form-group .label .input[type=datetime-local]::-webkit-calendar-picker-indicator,.form-group .label .input[type=month]::-webkit-calendar-picker-indicator,.form-group .label .input[type=time]::-webkit-calendar-picker-indicator{width:46px;height:100%;margin:0;padding:0;background:0 0;cursor:pointer;opacity:0}.form-group .label .input[type=date]::-webkit-datetime-edit,.form-group .label .input[type=datetime-local]::-webkit-datetime-edit,.form-group .label .input[type=month]::-webkit-datetime-edit,.form-group .label .input[type=time]::-webkit-datetime-edit{padding:0}.form-group .label .input[type=date]::-webkit-datetime-edit-fields-wrapper,.form-group .label .input[type=datetime-local]::-webkit-datetime-edit-fields-wrapper,.form-group .label .input[type=month]::-webkit-datetime-edit-fields-wrapper,.form-group .label .input[type=time]::-webkit-datetime-edit-fields-wrapper{color:#c0caf5}.form-group .label textarea.input{height:108px;line-height:1.25;resize:none}.form-group .label .ph+.input,.form-group .label .ph+.select-wrap .select{padding-left:46px}.form-group .label .select-wrap{margin-top:8px}.form-group .label .select{width:100%;height:54px;margin-top:0;appearance:none;-webkit-appearance:none;-moz-appearance:none}.form-group .label .select:focus{outline:0}.form-group .label .select option{color:#c0caf5;background:#1f2335}.form-group .label .select-wrap:after{content:"";position:absolute;right:22px;bottom:18px;transform:translateY(-50%);width:0;height:0;border-left:8px solid transparent;border-right:8px solid transparent;border-top:10px solid #c0caf5;pointer-events:none}.form-group .label.error .input:not(:focus){border-color:#f7768e}.form-group .label.error+.input-info{color:#e0af68}.form-group .label.success .input:not(:focus){border-color:#9ece6a}.form-group .label.success+.input-info{color:#9ece6a}.form-group .label.warning .input:not(:focus){border-color:#e0af68}.form-group .label.warning+.input-info{color:#e0af68}.form-group .input-info{font-size:14px;margin-top:8px}.form-group .input-info .ph{position:relative;top:1px}.form-group .input-info.error{color:#e0af68}.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;width:100%;max-width:760px}.fieldset{width:100%;max-width:760px;margin:0;padding:18px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.legend{padding:5px 8px;color:#16161e;background:#c0caf5;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase}.file-upload{display:inline-flex;align-items:center;gap:8px;min-height:46px;padding:8px 12px;border:2px solid #7aa2f7;border-left-width:6px;color:#7aa2f7;background:#1f2335;font-size:13px;font-weight:700;text-transform:uppercase;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.file-upload input[type=file]{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}@media(hover:hover)and (pointer:fine){.file-upload:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.file-upload:active{color:#16161e;background:#7aa2f7}}.file-upload:focus-within{outline:2px solid #E0AF68;outline-offset:3px}.file-upload-panel{width:100%;max-width:760px;background:#1f2335;border:2px solid rgba(192,202,245,.24);border-left-width:6px}.file-upload-form{display:flex;flex-direction:column;gap:15px;margin:0}.file-upload-header{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;padding:15px 15px 0}.file-upload-heading{display:flex;flex-direction:column;gap:5px;min-width:0}.file-upload-title{margin:0;color:#c0caf5;font-size:16px;font-weight:700;line-height:1.25;text-transform:uppercase}.file-upload-description{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}.file-upload-dropzone{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:15px;margin:0 15px;padding:18px;border:2px dashed #7aa2f7;background:#7aa2f714;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:background,border-color}.file-upload-dropzone input[type=file]{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}@media(hover:hover)and (pointer:fine){.file-upload-dropzone:hover{border-color:#c0caf5;background:#c0caf51a}}@media(hover:none)and (pointer:coarse){.file-upload-dropzone:active{border-color:#c0caf5;background:#c0caf51a}}.file-upload-dropzone:focus-within{outline:2px solid #E0AF68;outline-offset:3px}.file-upload-icon{display:inline-flex;align-items:center;justify-content:center;width:54px;height:54px;color:#16161e;background:#7aa2f7;font-size:26px}.file-upload-body{display:flex;flex-direction:column;gap:5px;min-width:0}.file-upload-primary{color:#c0caf5;font-size:15px;font-weight:700;line-height:1.25;text-transform:uppercase}.file-upload-secondary{color:#a9b1d6;font-size:13px;line-height:1.4}.file-upload-preview{display:grid;grid-template-columns:repeat(auto-fill,minmax(148px,1fr));gap:12px;margin:0 15px}.file-upload-preview[hidden]{display:none}.file-upload-preview-item{position:relative;min-width:0;margin:0;border:2px solid rgba(192,202,245,.24);background:#1f2335}.file-upload-preview-remove{position:absolute;top:8px;right:8px;z-index:1;display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;padding:0;border:2px solid #f7768e;color:#f7768e;background:#1f2335;font-size:18px;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}@media(hover:hover)and (pointer:fine){.file-upload-preview-remove:hover{color:#16161e;background:#f7768e}}@media(hover:none)and (pointer:coarse){.file-upload-preview-remove:active{color:#16161e;background:#f7768e}}.file-upload-preview-remove:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}.file-upload-preview-visual{display:flex;align-items:center;justify-content:center;aspect-ratio:1;background:#1f2335}.file-upload-preview-visual img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.file-upload-preview-type{display:inline-flex;align-items:center;justify-content:center;min-width:54px;min-height:54px;padding:8px;color:#16161e;background:#7aa2f7;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase}.file-upload-preview-item figcaption{display:flex;flex-direction:column;gap:5px;overflow:hidden;padding:8px}.file-upload-preview-name{overflow:hidden;color:#c0caf5;font-size:12px;font-weight:700;line-height:1.25;text-overflow:ellipsis;white-space:nowrap}.file-upload-preview-meta{color:#a9b1d6;font-size:12px;font-weight:700;line-height:1.25;text-transform:uppercase}.file-upload-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px;padding:0 15px 15px}.range{width:100%;max-width:600px;accent-color:#7AA2F7}.range input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;height:46px;margin:0;background:0 0;cursor:pointer}.range input[type=range]::-webkit-slider-runnable-track{height:6px;background:#c0caf516;border:2px solid rgba(192,202,245,.24)}.range input[type=range]::-webkit-slider-thumb{width:22px;height:38px;margin-top:-19px;border:2px solid #7aa2f7;background:#7aa2f7;-webkit-appearance:none}.range input[type=range]::-moz-range-track{height:6px;background:#c0caf516;border:2px solid rgba(192,202,245,.24)}.range input[type=range]::-moz-range-thumb{width:22px;height:38px;border:2px solid #7aa2f7;border-radius:0;background:#7aa2f7}@media(max-width:767px){.form-grid{grid-template-columns:1fr}.file-upload-header{flex-direction:column;align-items:stretch}.file-upload-dropzone{grid-template-columns:1fr}.file-upload-actions{justify-content:stretch}.file-upload-actions .btn{width:100%}}.radio{display:inline-flex;flex-direction:row;gap:8px;align-items:center;cursor:pointer}.radio input[type=radio]{display:none}.radio .radio-control{width:22px;height:22px;border-radius:100%;border:3px solid #c0caf5;background:#1f2335;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition-duration:.2s;transition-property:border-color,background}.radio .radio-control:before{content:"";display:block;width:10px;height:10px;border-radius:100%;background:#c0caf5;transform:scale(0);transition-duration:.2s;transition-property:transform,background}@media(hover:hover)and (pointer:fine){.radio:hover .radio-control{border-color:#c0caf5}}@media(hover:none)and (pointer:coarse){.radio:active .radio-control{border-color:#c0caf5}}.radio input[type=radio]:checked+.radio-control{border-color:#c0caf5;background:#c0caf52e}.radio input[type=radio]:checked+.radio-control:before{transform:scale(1)}.radio input[type=radio]:disabled+.radio-control{border-color:#414868;background:#4148681f;opacity:.5}.radio input[type=radio]:disabled:checked+.radio-control:before{background:#414868}.radio input[type=radio]:focus-visible+.radio-control{outline:2px solid #E0AF68;outline-offset:3px}.radio .radio-label{font-size:15px}.radio-group{display:flex;flex-wrap:wrap;gap:12px;align-items:center}.switch{display:inline-flex;flex-direction:row;gap:8px;align-items:center}.switch input[type=checkbox]{display:none}.switch .switch-control{height:16px;width:32px;border:2px solid #c0caf5;position:relative;background:0 0;transition-duration:.2s;transition-property:border-color,background;display:block}.switch .switch-control:before{content:"";display:block;height:20px;width:20px;background:#c0caf5;position:absolute;left:-5px;top:-5px;transition-duration:.2s;transition-property:left,background}@media(hover:hover)and (pointer:fine){.switch:hover .switch-control{background:#414868}}@media(hover:none)and (pointer:coarse){.switch:active .switch-control{background:#414868}}.switch input[type=checkbox]:checked:not(:disabled)+.switch-control{background:#7aa2f7;border-color:#7aa2f7}.switch input[type=checkbox]:checked+.switch-control:before{left:17px}.switch input[type=checkbox]:disabled+.switch-control{border-color:#414868}.switch input[type=checkbox]:focus-visible+.switch-control{outline:2px solid #E0AF68;outline-offset:3px}.switch input[type=checkbox]:disabled+.switch-control:before{background:#414868}.checkbox{display:inline-flex;flex-direction:row;gap:8px;align-items:center;cursor:pointer}.checkbox input[type=checkbox]{display:none}.checkbox .checkbox-control{width:22px;height:22px;border:2px solid #c0caf5;border-bottom-width:6px;background:#1f2335;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition-duration:.2s;transition-property:border-color,background}.checkbox .checkbox-control:before{content:"";display:block;width:10px;height:5px;border-left:2px solid #c0caf5;border-bottom:2px solid #c0caf5;transform:rotate(-45deg) scale(0);opacity:0;margin-top:-2px;transition-duration:.2s;transition-property:transform,opacity,border-color}@media(hover:hover)and (pointer:fine){.checkbox:hover .checkbox-control{border-color:#c0caf5}}@media(hover:none)and (pointer:coarse){.checkbox:active .checkbox-control{border-color:#c0caf5}}.checkbox input[type=checkbox]:checked+.checkbox-control{border-color:#c0caf5;background:#c0caf52e}.checkbox input[type=checkbox]:checked+.checkbox-control:before{transform:rotate(-45deg) scale(1);opacity:1;border-color:#c0caf5}.checkbox input[type=checkbox]:disabled+.checkbox-control{border-color:#414868;background:#4148681f;opacity:.5}.checkbox input[type=checkbox]:disabled:checked+.checkbox-control:before{border-color:#414868}.checkbox input[type=checkbox]:focus-visible+.checkbox-control{outline:2px solid #E0AF68;outline-offset:3px}.checkbox .checkbox-label{font-size:15px}.input-group{display:flex;align-items:stretch;width:100%;max-width:600px;min-height:54px;border:2px solid #c0caf5;border-bottom-width:6px;background:#1f2335;transition-duration:.2s;transition-timing-function:ease;transition-property:border-color,background}.input-group:focus-within{outline:2px solid #E0AF68;outline-offset:3px;border-color:#7aa2f7;background:0 0}.input-group .input-group-action,.input-group .input-group-addon{display:inline-flex;align-items:center;justify-content:center;min-width:54px;padding:0 12px;color:#a9b1d6;background:#c0caf50b;border:0;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:600;text-transform:uppercase}.input-group .input-group-action{color:#c0caf5;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.input-group .input-group-input{flex:1 1 auto;min-width:0;border:0;padding:12px 15px;color:#c0caf5;background:0 0;font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:500;letter-spacing:.04em}.input-group .input-group-input:focus{outline:0}.input-group .input-group-input::-moz-placeholder{color:#787c99}.input-group .input-group-input::placeholder{color:#787c99}.input-group .input-group-input::-webkit-search-cancel-button,.input-group .input-group-input::-webkit-search-decoration,.input-group .input-group-input::-webkit-search-results-button,.input-group .input-group-input::-webkit-search-results-decoration{display:none;-webkit-appearance:none}.input-group .ph,.input-group .ph-bold{font-size:22px}.input-group.input-group-compact{min-height:46px}.input-group.input-group-compact .input-group-action,.input-group.input-group-compact .input-group-addon{min-width:46px}.input-group.input-group-compact .input-group-input{padding:8px 12px;font-size:13px}.search-field{max-width:420px}.repeater .repeater-header{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:12px}.repeater .repeater-title{font-size:15px;font-weight:600;color:#c0caf5}.repeater .repeater-list{display:grid;gap:8px}.repeater .repeater-item{background:#1f2335;border:2px solid rgba(192,202,245,.24);padding:12px;display:grid;grid-template-columns:1fr auto;gap:12px;align-items:start}.repeater .repeater-item-body{width:100%}.repeater .repeater-item-actions{display:flex;align-items:center;gap:8px;padding-top:22px}.repeater.repeater-disabled{opacity:.6;pointer-events:none}.list{display:flex;flex-direction:column;gap:5px;list-style-type:none;padding-left:0}.list .list-item{display:flex;flex-direction:row;align-items:center;gap:8px;margin-left:0}.list.list-ordered{list-style-type:decimal;display:list-item;margin-left:30px}.list.list-ordered .list-item{display:list-item}.list.list-definition{width:100%;max-width:620px;gap:0;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.list.list-definition .list-row{display:grid;grid-template-columns:minmax(120px,.32fr) minmax(0,1fr);gap:15px;align-items:start;padding:12px 15px;border-bottom:2px solid rgba(192,202,245,.08);transition-duration:.2s;transition-timing-function:ease;transition-property:background,border-color}.list.list-definition .list-row .list-term{display:inline-flex;width:-moz-max-content;width:max-content;max-width:100%;margin:0;padding:5px 8px;color:#16161e;background:#c0caf5;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:background,transform}.list.list-definition .list-row .list-desc{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6;transition-duration:.2s;transition-timing-function:ease;transition-property:color,transform}.list.list-definition .list-row:last-child{border-bottom:0}@media(hover:hover)and (pointer:fine){.list.list-definition .list-row:hover{background:#c0caf516}.list.list-definition .list-row:hover .list-term{background:#7aa2f7;transform:translate(5px)}.list.list-definition .list-row:hover .list-desc{color:#c0caf5;transform:translate(5px)}}@media(hover:none)and (pointer:coarse){.list.list-definition .list-row:active{background:#c0caf516}.list.list-definition .list-row:active .list-term{background:#7aa2f7;transform:translate(5px)}.list.list-definition .list-row:active .list-desc{color:#c0caf5;transform:translate(5px)}}.list.list-nav{max-width:420px;width:100%;gap:0}.list.list-nav .list-item{display:flex;flex-direction:column;align-items:flex-start;height:50px;margin:0}.list.list-nav .list-item .list-action{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%;padding:8px 12px;border:2px solid transparent;font-size:15px;background:#1f2335;color:inherit;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:background,border-color,color}.list.list-nav .list-item .list-action:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.list.list-nav .list-item .list-action:hover{background:#7aa2f7;color:#16161e}}@media(hover:none)and (pointer:coarse){.list.list-nav .list-item .list-action:active{background:#7aa2f7;color:#16161e}}.list.list-nav .list-item .list-action .list-label{display:flex;flex-direction:row;gap:8px;align-items:center;letter-spacing:0;font-weight:400}.list.list-nav .list-item .list-action .list-meta{padding:8px;background:#9ece6a;color:#16161e;display:flex}.list.list-nav .list-item.list-item-active .list-action{background:#7aa2f7;color:#16161e;border-color:#7aa2f7}.list.list-actions{width:100%;max-width:420px;gap:22px}.list.list-actions .list-item{justify-content:space-between;align-items:flex-start;padding:12px 0;border-bottom:2px solid rgba(192,202,245,.08)}.list.list-actions .list-item .list-content{display:flex;flex-direction:column;gap:8px}.list.list-actions .list-item .list-content .list-title{font-size:16px;line-height:1}.list.list-actions .list-item .list-content .list-subtitle{color:#787c99}@media(hover:hover)and (pointer:fine){.list.list-actions .list-item:hover .list-title{color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.list.list-actions .list-item:active .list-title{color:#7aa2f7}}@media(max-width:479px){.list.list-definition .list-row{grid-template-columns:1fr;gap:8px}}.badge{position:relative;overflow:hidden;background:#c0caf5;color:#16161e;padding:5px 8px;font-size:13px;font-weight:600;line-height:1;letter-spacing:.04em;text-transform:uppercase;display:inline-flex;align-items:center;min-height:24px;transition-duration:.2s;transition-timing-function:ease;transition-property:filter,transform,border-color,color,background}.badge:after{content:"";position:absolute;inset:0 auto 0 0;width:40%;background:linear-gradient(90deg,transparent,rgba(22,22,30,.16),transparent);opacity:0;pointer-events:none;transform:translate(-120%)}@media(hover:hover)and (pointer:fine){.badge:hover{filter:saturate(1.12);transform:translateY(-1px)}.badge:hover:after{opacity:1;animation:terminal_scan_x .7s ease}}@media(hover:none)and (pointer:coarse){.badge:active{filter:saturate(1.12);transform:translateY(-1px)}.badge:active:after{opacity:1;animation:terminal_scan_x .7s ease}}.badge.badge-success{background:#9ece6a}.badge.badge-warning{background:#e0af68}.badge.badge-danger,.badge.badge-error{background:#f7768e}.badge.badge-info{background:#bb9af7;color:#16161e}.badge.badge-secondary{background:#7aa2f7;color:#16161e}.badge.badge-primary-outline{color:#c0caf5;border:2px solid #c0caf5;background:0 0;padding:3px 8px}.chip-group{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.chip{display:inline-flex;align-items:center;gap:8px;min-height:30px;padding:5px 12px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:12px;font-weight:600;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color,opacity}.chip .ph,.chip .ph-bold{font-size:18px}.chip:before{content:"";display:inline-block;width:7px;height:7px;flex:0 0 auto;background:#787c99;transition-duration:.2s;transition-timing-function:ease;transition-property:background,box-shadow,transform}.chip:has(.ph):before,.chip:has(.ph-bold):before{display:none}.chip .chip-remove{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;margin-right:-5px;border:0;color:inherit;background:0 0;font:inherit;cursor:pointer}.chip .chip-remove:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}.chip.chip-primary{color:#c0caf5;background:#c0caf514;border-color:#c0caf5}.chip.chip-primary:before{background:#c0caf5}.chip.chip-secondary{color:#7aa2f7;background:#7aa2f714;border-color:#7aa2f7}.chip.chip-secondary:before{background:#7aa2f7}.chip.chip-success{color:#9ece6a;background:#9ece6a14;border-color:#9ece6a}.chip.chip-success:before{background:#9ece6a}.chip.chip-warning{color:#e0af68;background:#e0af6814;border-color:#e0af68}.chip.chip-warning:before{background:#e0af68}.chip.chip-danger,.chip.chip-error{color:#f7768e;background:#f7768e14;border-color:#f7768e}.chip.chip-danger:before,.chip.chip-error:before{background:#f7768e}.chip.chip-selected,.chip[aria-pressed=true],.chip[aria-selected=true]{color:#16161e;background:#c0caf5;border-color:#c0caf5}.chip.chip-selected:before,.chip[aria-pressed=true]:before,.chip[aria-selected=true]:before{background:#16161e}.chip.chip-secondary[aria-pressed=true],.chip.chip-secondary[aria-selected=true],.chip.chip-selected.chip-secondary{background:#7aa2f7;border-color:#7aa2f7}.chip.chip-disabled,.chip:disabled{color:#787c99;background:#1f2335;border-color:#c0caf53d;cursor:not-allowed;opacity:.7}.chip.chip-disabled:before,.chip:disabled:before{background:#414868}a.chip,button.chip{cursor:pointer}a.chip:focus-visible,button.chip:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){a.chip:hover,button.chip:hover{color:#c0caf5;background:#c0caf516;border-color:#7aa2f7}a.chip:hover:before,button.chip:hover:before{background:#7aa2f7;animation:terminal_pulse .7s ease;transform:scale(1.12)}}@media(hover:none)and (pointer:coarse){a.chip:active,button.chip:active{color:#c0caf5;background:#c0caf516;border-color:#7aa2f7}a.chip:active:before,button.chip:active:before{background:#7aa2f7;animation:terminal_pulse .7s ease;transform:scale(1.12)}}.tag-input{background:#1f2335;border:2px solid rgba(192,202,245,.24);position:relative}.tag-input .tag-input-wrap{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding:8px 12px;min-height:46px;cursor:text}.tag-input .tag-input-field{flex:1 1 auto;min-width:80px;padding:5px 0;border:0;color:#c0caf5;background:0 0;font-family:IBM Plex Mono,monospace;font-size:13px;line-height:1;outline:0}.tag-input .tag-input-field::-moz-placeholder{color:#787c99;opacity:1}.tag-input .tag-input-field::placeholder{color:#787c99;opacity:1}.tag-input.tag-input-focused{border-color:#c0caf5}.tag-input .tag-input-meta{padding:0 12px 8px;color:#787c99;font-size:12px;line-height:1}.avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;flex:0 0 auto;overflow:hidden;border:2px solid rgba(192,202,245,.24);color:#16161e;background:#c0caf5;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase}.avatar img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.avatar .ph,.avatar .ph-bold{font-size:22px}.avatar .avatar-status{position:absolute;right:-2px;bottom:-2px;width:13px;height:13px;border:2px solid #16161e;background:#787c99;transition-duration:.2s;transition-timing-function:ease;transition-property:background,box-shadow}.avatar.avatar-sm{width:38px;height:38px;font-size:12px}.avatar.avatar-sm .ph,.avatar.avatar-sm .ph-bold{font-size:18px}.avatar.avatar-lg{width:54px;height:54px;font-size:14px}.avatar.avatar-lg .ph,.avatar.avatar-lg .ph-bold{font-size:26px}.avatar.avatar-secondary{background:#7aa2f7}.avatar.avatar-success{background:#9ece6a}.avatar.avatar-warning{background:#e0af68}.avatar.avatar-danger,.avatar.avatar-error{background:#f7768e}.avatar.avatar-outline{color:#c0caf5;background:#1f2335;border-color:#c0caf5}.avatar.is-online .avatar-status{background:#9ece6a;animation:terminal_pulse 1.8s ease infinite}.avatar.is-busy .avatar-status{background:#e0af68}.avatar.is-offline .avatar-status{background:#787c99}.identity{display:inline-flex;align-items:center;gap:12px;min-width:0}.identity-content{display:flex;flex-direction:column;gap:5px;min-width:0}.identity-title{color:#c0caf5;font-size:15px;font-weight:600;line-height:1}.identity-meta{color:#787c99;font-size:13px;line-height:1.4}.avatar-stack{display:inline-flex;align-items:center}.avatar-stack .avatar{margin-right:-8px;border-color:#16161e}.avatar-stack .avatar-stack-count{display:inline-flex;align-items:center;justify-content:center;min-width:46px;height:46px;padding:0 8px;border:2px solid #16161e;color:#16161e;background:#e0af68;font-size:13px;font-weight:700}.table{width:100%;text-align:left;border:2px solid rgba(192,202,245,.24);border-collapse:collapse;background:#1f2335}.table .table-caption{text-align:left;font-size:16px;background:#c0caf5;width:-moz-max-content;width:max-content;color:#16161e;padding:5px 12px;margin-bottom:0;font-weight:700;text-transform:uppercase}.table.table-empty{width:100%}.table.table-empty .is-empty{width:100%;padding:15px;font-size:13px;color:#787c99;text-align:left}.table .table-row td,.table .table-row th{padding:12px 18px;font-size:13px;vertical-align:middle;border-bottom:2px solid rgba(192,202,245,.08)}.table .table-row th{color:#c0caf5;background:#c0caf50a;text-transform:uppercase;letter-spacing:.04em}.table .table-head{border-bottom:2px solid #c0caf5}.table .table-body .table-row{transition-duration:.2s;transition-timing-function:ease;transition-property:background,color}.table .table-body .table-row td{transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}@media(hover:hover)and (pointer:fine){.table .table-body .table-row:hover{background:#7aa2f714}.table .table-body .table-row:hover td:first-child{color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.table .table-body .table-row:active{background:#7aa2f714}.table .table-body .table-row:active td:first-child{color:#7aa2f7}}.table .table-foot td,.table .table-foot th{padding-top:15px}.table.table-compact .table-caption{font-size:14px}.table.table-compact .table-row td,.table.table-compact .table-row th{padding:8px 12px;font-size:12px}.table.table-compact .table-cell-mono{color:#a9b1d6;font-family:IBM Plex Mono,monospace;letter-spacing:0}.table.table-compact .table-cell-actions{width:1%;white-space:nowrap}.table-wrapper{width:100%;overflow-x:auto}.toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:12px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.toolbar .toolbar-group{display:flex;flex-wrap:wrap;align-items:center;gap:8px;min-width:0}.toolbar .toolbar-title{margin:0;font-size:16px;font-weight:700;line-height:1;text-transform:uppercase}.toolbar .toolbar-meta{color:#787c99;font-size:13px}.pagination{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.pagination .pagination-item{display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 12px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:600;line-height:1;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color,opacity}.pagination .pagination-item:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.pagination .pagination-item:hover{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.pagination .pagination-item:active{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}.pagination .pagination-item.pagination-item-active,.pagination .pagination-item[aria-current=page]{color:#16161e;background:#c0caf5;border-color:#c0caf5}.pagination .pagination-item.pagination-item-disabled,.pagination .pagination-item:disabled{color:#787c99;background:#1f2335;border-color:#c0caf53d;cursor:not-allowed;opacity:.72}.pagination .pagination-ellipsis{color:#787c99;padding:0 5px}.empty-state{max-width:560px;padding:22px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.empty-state .empty-state-icon{display:inline-flex;align-items:center;justify-content:center;width:54px;height:54px;margin-bottom:15px;color:#16161e;background:#c0caf5;font-size:26px}.empty-state .empty-state-title{margin:0 0 8px;font-size:20px;font-weight:700;text-transform:uppercase}.empty-state .empty-state-text{max-width:440px;margin:0 0 18px;color:#a9b1d6;line-height:1.6}.empty-state .empty-state-actions{display:flex;flex-wrap:wrap;gap:8px}.empty-state.empty-state-error{border-color:#f7768e}.empty-state.empty-state-error .empty-state-icon{background:#f7768e}.skeleton{display:block;position:relative;overflow:hidden;background:#c0caf516}.skeleton:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;transform:translate(-100%);background:linear-gradient(90deg,transparent,rgba(192,202,245,.12),transparent);animation:skeleton_shimmer 1.6s infinite}.skeleton.skeleton-line{width:100%;height:14px}.skeleton.skeleton-title{width:60%;height:22px}.skeleton.skeleton-block{width:100%;height:120px}.skeleton.skeleton-square{width:54px;height:54px}.skeleton-stack{display:flex;flex-direction:column;gap:12px;max-width:520px;padding:15px;border:2px solid rgba(192,202,245,.24);background:#1f2335}@keyframes skeleton_shimmer{to{transform:translate(100%)}}.page-header{position:relative;display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:18px;width:100%;padding:18px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335;overflow:hidden;animation:panel_boot .28s ease both}.page-header:after{content:"";position:absolute;top:0;left:0;width:34%;height:2px;background:linear-gradient(90deg,transparent,#7aa2f7,transparent);opacity:.72;pointer-events:none;transform:translate(-120%)}@media(hover:hover)and (pointer:fine){.page-header:hover:after{animation:terminal_scan_x .9s ease}}@media(hover:none)and (pointer:coarse){.page-header:active:after{animation:terminal_scan_x .9s ease}}.page-header .page-header-content{display:flex;flex-direction:column;gap:8px;min-width:min(100%,320px)}.page-header .page-header-kicker{color:#7aa2f7;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color}.page-header .page-header-title{margin:0;color:#c0caf5;font-size:26px;font-weight:700;line-height:1.15}.page-header .page-header-subtitle{max-width:720px;margin:0;color:#a9b1d6;font-size:15px;line-height:1.6}.page-header .page-header-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px;color:#787c99;font-size:13px}.page-header .page-header-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:8px}.page-header.page-header-compact{align-items:center;padding:15px}.page-header.page-header-compact .page-header-title{font-size:20px}.page-header.page-header-accent{border-color:#7aa2f7;background:#7aa2f70e}.description-list{display:grid;width:100%;max-width:760px;margin:0;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.description-list .description-list-row{display:grid;grid-template-columns:minmax(140px,.36fr) minmax(0,1fr);gap:15px;padding:12px 15px;border-bottom:2px solid rgba(192,202,245,.08);transition-duration:.2s;transition-timing-function:ease;transition-property:background}.description-list .description-list-row:last-child{border-bottom:0}@media(hover:hover)and (pointer:fine){.description-list .description-list-row:hover{background:#c0caf516}.description-list .description-list-row:hover .description-list-term{color:#7aa2f7}.description-list .description-list-row:hover .description-list-value{transform:translate(5px)}}@media(hover:none)and (pointer:coarse){.description-list .description-list-row:active{background:#c0caf516}.description-list .description-list-row:active .description-list-term{color:#7aa2f7}.description-list .description-list-row:active .description-list-value{transform:translate(5px)}}.description-list .description-list-term{margin:0;color:#787c99;font-size:13px;font-weight:600;line-height:1.4;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color}.description-list .description-list-value{display:flex;flex-wrap:wrap;align-items:center;gap:8px;min-width:0;margin:0;color:#c0caf5;font-size:15px;line-height:1.4;transition-duration:.2s;transition-timing-function:ease;transition-property:transform}.description-list .description-list-value-muted{color:#a9b1d6}.description-list.description-list-compact{max-width:520px}.description-list.description-list-compact .description-list-row{grid-template-columns:minmax(112px,.42fr) minmax(0,1fr);gap:12px;padding:8px 12px}.description-list.description-list-compact .description-list-term,.description-list.description-list-compact .description-list-value{font-size:13px}@media(max-width:479px){.description-list .description-list-row{grid-template-columns:1fr;gap:5px}}.steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;width:100%;max-width:900px;margin:0;padding:0;list-style:none}.steps .step{position:relative;display:flex;flex-direction:column;gap:8px;min-height:120px;padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.steps .step-marker{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;color:#c0caf5;border:2px solid rgba(192,202,245,.24);font-size:13px;font-weight:700;line-height:1}.steps .step-title{margin:0;font-size:14px;font-weight:700;line-height:1.25;text-transform:uppercase}.steps .step-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.4}.steps .step-complete{border-color:#9ece6a}.steps .step-complete .step-marker{color:#16161e;background:#9ece6a;border-color:#9ece6a}.steps .step-current{border-color:#7aa2f7}.steps .step-current .step-marker{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}.steps .step-disabled{opacity:.62}.steps.steps-vertical{grid-template-columns:1fr;max-width:520px;gap:0}.steps.steps-vertical .step{min-height:auto;border-bottom-width:0}.steps.steps-vertical .step:last-child{border-bottom-width:2px}@media(max-width:1023px){.steps{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:479px){.steps{grid-template-columns:1fr}}.timeline{display:grid;gap:0;width:100%;max-width:760px;margin:0;padding:0;list-style:none}.timeline .timeline-item{position:relative;display:grid;grid-template-columns:46px minmax(0,1fr);gap:12px;min-height:88px}.timeline .timeline-item:before{content:"";position:absolute;top:46px;bottom:0;left:22px;width:2px;background:#c0caf53d}.timeline .timeline-item:last-child:before{display:none}.timeline .timeline-marker{position:relative;z-index:1;display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#16161e;font-size:18px;transition-duration:.2s;transition-timing-function:ease;transition-property:border-color,background,color,box-shadow,transform}.timeline .timeline-content{min-width:0;padding:0 0 18px}.timeline .timeline-card{padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335;transition-duration:.2s;transition-timing-function:ease;transition-property:border-color,background,transform}.timeline .timeline-header{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:8px;margin-bottom:8px}.timeline .timeline-title{margin:0;font-size:14px;font-weight:700;line-height:1.25;text-transform:uppercase}.timeline .timeline-time{color:#787c99;font-size:12px;font-family:IBM Plex Mono,monospace;line-height:1.4}.timeline .timeline-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.4}.timeline .timeline-meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.timeline .timeline-item-success .timeline-card,.timeline .timeline-item-success .timeline-marker{border-color:#9ece6a}.timeline .timeline-item-success .timeline-marker{color:#16161e;background:#9ece6a}.timeline .timeline-item-warning .timeline-card,.timeline .timeline-item-warning .timeline-marker{border-color:#e0af68}.timeline .timeline-item-warning .timeline-marker{color:#16161e;background:#e0af68}.timeline .timeline-item-danger .timeline-card,.timeline .timeline-item-danger .timeline-marker,.timeline .timeline-item-error .timeline-card,.timeline .timeline-item-error .timeline-marker{border-color:#f7768e}.timeline .timeline-item-danger .timeline-marker,.timeline .timeline-item-error .timeline-marker{color:#16161e;background:#f7768e}@media(hover:hover)and (pointer:fine){.timeline .timeline-item:hover .timeline-marker{box-shadow:0 0 0 4px #7aa2f724;transform:scale(1.04)}.timeline .timeline-item:hover .timeline-card{background:#c0caf516;transform:translate(5px)}}@media(hover:none)and (pointer:coarse){.timeline .timeline-item:active .timeline-marker{box-shadow:0 0 0 4px #7aa2f724;transform:scale(1.04)}.timeline .timeline-item:active .timeline-card{background:#c0caf516;transform:translate(5px)}}.activity-log{display:grid;width:100%;max-width:720px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.activity-log .activity-log-row{display:grid;grid-template-columns:minmax(120px,.24fr) minmax(0,1fr) auto;gap:12px;align-items:center;padding:12px 15px;border-bottom:2px solid rgba(192,202,245,.08);transition-duration:.2s;transition-timing-function:ease;transition-property:background}.activity-log .activity-log-row:last-child{border-bottom:0}@media(hover:hover)and (pointer:fine){.activity-log .activity-log-row:hover{background:#c0caf516}}@media(hover:none)and (pointer:coarse){.activity-log .activity-log-row:active{background:#c0caf516}}.activity-log .activity-log-time{color:#787c99;font-family:IBM Plex Mono,monospace;font-size:12px}.activity-log .activity-log-title{color:#c0caf5;font-size:13px;font-weight:600;line-height:1.4}@media(max-width:479px){.activity-log .activity-log-row{grid-template-columns:1fr;gap:8px}}.accordion{display:grid;width:100%;max-width:760px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.accordion-item{border-bottom:2px solid rgba(192,202,245,.08);overflow:hidden}.accordion-item:last-child{border-bottom:0}.accordion-item[open] .accordion-summary{color:#16161e;background:#c0caf5}.accordion-item[open] .accordion-icon{transform:rotate(180deg)}.accordion-summary{display:flex;width:100%;align-items:center;justify-content:space-between;gap:12px;min-height:46px;padding:12px 15px;border:0;color:#c0caf5;background:0 0;cursor:pointer;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.accordion-summary::-webkit-details-marker{display:none}.accordion-summary::marker{content:""}.accordion-summary:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.accordion-summary:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.accordion-summary:active{color:#16161e;background:#7aa2f7}}.accordion-summary-content{display:flex;align-items:center;gap:8px;min-width:0}.accordion-icon{flex:0 0 auto;font-size:18px;transition-duration:.2s;transition-property:transform}.accordion-panel{overflow:hidden;padding:15px;color:#a9b1d6;font-size:13px;line-height:1.6;transition-duration:.28s;transition-timing-function:ease;transition-property:height,opacity,transform}.accordion-panel p{margin-top:0}.accordion-panel p:last-child{margin-bottom:0}.disclosure{max-width:520px;border:2px solid rgba(192,202,245,.24);background:#1f2335}.disclosure .accordion-summary{min-height:38px;padding:8px 12px}.disclosure .accordion-panel{padding:12px}.tabs{width:100%;max-width:900px}.tabs-list{display:flex;align-items:stretch;gap:0;max-width:100%;overflow-x:auto;scrollbar-width:thin}.tab{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:12px 15px;border:0;border-right:2px solid rgba(192,202,245,.08);border-radius:0;color:#a9b1d6;background:0 0;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;white-space:nowrap;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,opacity}.tab .ph,.tab .ph-bold{font-size:18px}.tab:focus-visible{outline:2px solid #E0AF68;outline-offset:3px;z-index:1}@media(hover:hover)and (pointer:fine){.tab:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.tab:active{color:#16161e;background:#7aa2f7}}.tab:disabled,.tab[aria-disabled=true]{color:#787c99;cursor:not-allowed;opacity:.62}@media(hover:hover)and (pointer:fine){.tab:disabled:hover,.tab[aria-disabled=true]:hover{color:#787c99;background:0 0}}@media(hover:none)and (pointer:coarse){.tab:disabled:active,.tab[aria-disabled=true]:active{color:#787c99;background:0 0}}.tab-active,.tab[aria-selected=true]{color:#16161e;background:#c0caf5}.tab-panel{display:none}.tab-panel p{margin-top:0}.tab-panel p:last-child{margin-bottom:0}.tab-panel-active{display:block}.tabs-compact{max-width:620px}.tabs-compact .tabs-list{border-left-width:2px}.tabs-compact .tab{min-height:38px;padding:8px 12px}.tabs-vertical{grid-template-columns:minmax(180px,240px) minmax(0,1fr);align-items:start}.tabs-vertical .tabs-list{flex-direction:column;overflow-x:visible}.tabs-vertical .tab{justify-content:flex-start;border-right:0;border-bottom:2px solid rgba(192,202,245,.08);text-align:left}@media(max-width:767px){.tabs-vertical{grid-template-columns:1fr}.tabs-vertical .tabs-list{flex-direction:row;overflow-x:auto}.tabs-vertical .tab{justify-content:center;border-right:2px solid rgba(192,202,245,.08);border-bottom:0;text-align:center}}.drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;display:flex;justify-content:flex-end;pointer-events:none}.drawer .drawer-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1010;background:#16161e;opacity:0;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity;pointer-events:auto}.drawer .drawer-panel{position:relative;z-index:1020;width:min(460px,100vw - 18px);min-height:100vh;display:flex;flex-direction:column;gap:15px;background:#16161e;border-left:2px solid #c0caf5;box-shadow:-18px 0 42px #16161e61;opacity:0;transform:translate(100%);transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,transform;pointer-events:auto}.drawer .drawer-header{display:flex;align-items:center;justify-content:space-between;padding-right:15px;border-bottom:2px solid rgba(192,202,245,.24)}.drawer .drawer-title{margin:0;padding:12px 15px;background:#c0caf5;color:#16161e;text-transform:uppercase;letter-spacing:.04em}.drawer .drawer-body{flex:1;overflow-y:auto;padding:18px}.drawer .drawer-footer{padding:18px;border-top:2px solid rgba(192,202,245,.24)}.drawer .drawer-footer .actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:12px;width:100%}.drawer.drawer-left{justify-content:flex-start}.drawer.drawer-left .drawer-panel{border-left:0;border-right:2px solid #c0caf5;box-shadow:18px 0 42px #16161e61;transform:translate(-100%)}.drawer.a-show .drawer-backdrop{opacity:.82}.drawer.a-show .drawer-panel{opacity:1;transform:translate(0)}.drawer.a-hide .drawer-backdrop{opacity:0}.drawer.a-hide .drawer-panel{opacity:0;transform:translate(100%)}.drawer.a-hide.drawer-left .drawer-panel{transform:translate(-100%)}.drawer-preview{display:grid;grid-template-columns:minmax(0,1fr) minmax(180px,280px);gap:18px;align-items:stretch;padding:18px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.drawer-preview .drawer-preview-content{display:flex;flex-direction:column;gap:12px}.drawer-preview .drawer-preview-panel{display:flex;flex-direction:column;gap:12px;padding:15px;border:2px solid #7aa2f7;background:#1f2335}.drawer-preview .drawer-preview-title{margin:0;color:#7aa2f7;font-size:14px;text-transform:uppercase}.drawer-preview .drawer-preview-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}@media(max-width:720px){.drawer-preview{grid-template-columns:1fr}}.nav-topbar{position:sticky;top:0;z-index:900;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;min-height:58px;border-bottom:2px solid rgba(192,202,245,.24);background:#16161ef5;box-shadow:0 10px 28px #16161e42}.nav-topbar-toggle{display:inline-flex;align-items:center;align-self:stretch;gap:8px;min-width:150px;padding:0 15px;border:0;border-right:2px solid rgba(192,202,245,.24);color:#c0caf5;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:700;text-transform:uppercase;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.nav-topbar-toggle .ph{color:#7aa2f7;font-size:22px}.nav-topbar-toggle:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.nav-topbar-toggle:hover{color:#16161e;background:#7aa2f7}.nav-topbar-toggle:hover .ph{color:#16161e}}@media(hover:none)and (pointer:coarse){.nav-topbar-toggle:active{color:#16161e;background:#7aa2f7}.nav-topbar-toggle:active .ph{color:#16161e}}.nav-topbar-brand{display:inline-flex;align-items:center;gap:8px;min-width:0;padding:0 15px;color:#c0caf5;font-size:13px;font-weight:700;text-transform:uppercase}.nav-topbar-brand img{width:22px;height:22px}.nav-topbar-current{min-width:160px;margin-right:15px;padding:5px 8px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#1f2335;font-size:12px;font-weight:700;text-align:center;text-transform:uppercase}.nav-drawer-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:910;background:#16161e;opacity:0;pointer-events:none;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity}.nav-drawer{position:fixed;inset:0 auto 0 0;z-index:920;display:flex;flex-direction:column;width:min(380px,100vw);max-height:100vh;border-right:2px solid #c0caf5;background:#1f2335;box-shadow:18px 0 42px #16161e61;opacity:0;overflow:hidden;pointer-events:none;transform:translate(-100%);transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,transform}.nav-drawer.is-open{opacity:1;pointer-events:auto;transform:translate(0)}.nav-drawer-header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px;border-bottom:2px solid rgba(192,202,245,.24)}.nav-drawer-title{display:inline-flex;padding:8px 12px;color:#16161e;background:#c0caf5;font-size:13px;font-weight:700;text-transform:uppercase}.nav-drawer-subtitle{margin-top:8px;color:#787c99;font-size:12px;font-weight:700;text-transform:uppercase}.nav-drawer-close{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;padding:0;border:2px solid rgba(192,202,245,.24);color:#c0caf5;background:0 0;font-size:22px;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.nav-drawer-close:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.nav-drawer-close:hover{color:#16161e;background:#f7768e;border-color:#f7768e}}@media(hover:none)and (pointer:coarse){.nav-drawer-close:active{color:#16161e;background:#f7768e;border-color:#f7768e}}.nav-drawer-body{flex:1;overflow-y:auto;overscroll-behavior:contain;padding:12px;scrollbar-width:thin;scrollbar-color:#7AA2F7 #1F2335}.nav-drawer-body::-webkit-scrollbar{width:8px}.nav-drawer-body::-webkit-scrollbar-track{background:#1f2335}.nav-drawer-body::-webkit-scrollbar-thumb{background:#7aa2f7}.nav-drawer-body .list.list-nav{max-width:none}.nav-drawer-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px;border-top:2px solid rgba(192,202,245,.24);color:#787c99;background:#1f2335;font-size:12px;font-weight:700;text-transform:uppercase}.nav-drawer-footer .profile-identity{display:block;text-decoration:none;color:inherit;min-width:0;flex:1 1 auto;overflow:hidden}@media(hover:hover)and (pointer:fine){.nav-drawer-footer .profile-identity:hover{color:inherit}}@media(hover:none)and (pointer:coarse){.nav-drawer-footer .profile-identity:active{color:inherit}}.nav-drawer-open{overflow:hidden}.nav-drawer-open .nav-drawer-backdrop{opacity:.82;pointer-events:auto}@media(max-width:767px){.nav-topbar-toggle{min-width:54px;padding:0 12px}.nav-topbar-brand{padding-right:12px;padding-left:12px}.nav-topbar-current{max-width:38vw;min-width:0;margin-right:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-drawer{width:100vw;border-right:0}}.nav-shell-preview{width:100%;max-width:900px;overflow:hidden;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#16161e}.nav-shell-preview-topbar{position:relative;z-index:0;min-height:52px;box-shadow:none}.nav-shell-preview-body{display:grid;grid-template-columns:280px minmax(0,1fr);min-height:320px}.nav-shell-preview-drawer{position:relative;z-index:0;inset:auto;width:auto;max-height:none;opacity:1;pointer-events:auto;transform:none;box-shadow:none}.nav-shell-preview-content{display:flex;flex-direction:column;justify-content:center;gap:12px;min-width:0;padding:18px;border-left:2px solid rgba(192,202,245,.24);background:#1f2335}.nav-shell-preview-content h3{margin:0;color:#c0caf5;font-size:20px;text-transform:uppercase}.nav-shell-preview-content p{max-width:360px;margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}@media(max-width:767px){.nav-shell-preview-body{grid-template-columns:1fr}.nav-shell-preview-content{min-height:180px;border-top:2px solid rgba(192,202,245,.24);border-left:0}}.toast{position:fixed;z-index:1100;bottom:-100px;right:15px;max-width:420px;background:#1f2335;border:2px solid #c0caf5;border-left-width:6px;padding:0;opacity:0;overflow:hidden;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,bottom}.toast.a-show{bottom:15px;opacity:1}.toast.a-hide{bottom:-45px;opacity:0}.toast .toast-content{display:flex;flex-direction:column;gap:0;padding:12px 48px 12px 15px}.toast .toast-content .toast-header{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:700;text-transform:uppercase;color:#c0caf5;line-height:1}.toast .toast-content .toast-header .ph{font-size:22px;flex-shrink:0}.toast .toast-content .toast-text{font-size:13px;padding:8px 0 0;margin:0;color:#a9b1d6;line-height:1.4}.toast .toast-close{position:absolute;top:5px;right:8px;color:#c0caf5;width:38px;height:38px;border-color:transparent;background:0 0}.toast .toast-progress{height:3px;width:100%;background:#16161e;overflow:hidden;margin-top:1px}.toast .toast-progress .toast-progress-bar{height:100%;width:100%;transform-origin:left;animation:toast-progress linear forwards;background:#c0caf5}.toast.toast-info{border-color:#bb9af7;background:#bb9af72e}.toast.toast-info .toast-header .ph{color:#bb9af7}.toast.toast-info .toast-progress-bar{background:#bb9af7}.toast.toast-success{border-color:#9ece6a;background:#9ece6a2e}.toast.toast-success .toast-header .ph{color:#9ece6a}.toast.toast-success .toast-progress-bar{background:#9ece6a}.toast.toast-warning{border-color:#e0af68;background:#e0af682e}.toast.toast-warning .toast-header .ph{color:#e0af68}.toast.toast-warning .toast-progress-bar{background:#e0af68}.toast.toast-danger{border-color:#f7768e;background:#f7768e2e}.toast.toast-danger .toast-header .ph{color:#f7768e}.toast.toast-danger .toast-progress-bar{background:#f7768e}@keyframes toast-progress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.card{position:relative;max-width:340px;width:-moz-max-content;width:max-content;overflow:hidden;background:#1f2335;border:2px solid #c0caf5}.card .card-title{color:#16161e;background:#c0caf5;padding:8px 12px;font-weight:700;text-transform:uppercase}.card .card-content{padding:15px;height:100%}.card .card-content .card-thumb{display:block;width:min(68%,190px);margin:18px auto 22px}.card .card-content p{margin-top:8px;margin-bottom:0}.card .card-footer{padding:8px 15px 15px}.card.status-card{max-width:220px;overflow:hidden}.card.status-card .status-icon-container{position:relative}.card.status-card .status-icon-container .status-indicator{position:absolute;top:-15px;left:-5px;font-size:22px;color:#f7768e}.card.status-card .status-icon-container .status-indicator.status-online{color:#9ece6a}.card.status-card .status-icon-container .status-icon{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;font-size:56px;height:108px;width:100%}.card.status-card .card-title{display:flex;width:100%;font-size:14px;font-weight:700;align-items:center;flex-direction:row;flex-wrap:nowrap;justify-content:space-between}.card.status-card .status-name{font-size:13px;line-height:1.4}.card.status-card.card-success{border-color:#9ece6a}.card.status-card.card-success .card-title,.card.status-card.card-success .modal-title,.card.status-card.card-success .toast-title{color:#16161e;background:#9ece6a}.card.status-card.card-success .status-icon{color:#9ece6a}.card.status-card.card-warning{border-color:#e0af68}.card.status-card.card-warning .card-title,.card.status-card.card-warning .modal-title,.card.status-card.card-warning .toast-title{color:#16161e;background:#e0af68}.card.status-card.card-warning .status-icon{color:#e0af68}.card.status-card.card-info{border-color:#bb9af7}.card.status-card.card-info .card-title,.card.status-card.card-info .modal-title,.card.status-card.card-info .toast-title{color:#16161e;background:#bb9af7}.card.status-card.card-info .status-icon{color:#bb9af7}.card.status-card.card-secondary{border-color:#7aa2f7}.card.status-card.card-secondary .card-title,.card.status-card.card-secondary .modal-title,.card.status-card.card-secondary .toast-title{color:#16161e;background:#7aa2f7}.card.status-card.card-secondary .status-icon{color:#7aa2f7}.card.status-card.card-danger,.card.status-card.card-error{border-color:#f7768e}.card.status-card.card-danger .card-title,.card.status-card.card-danger .modal-title,.card.status-card.card-danger .toast-title,.card.status-card.card-error .card-title,.card.status-card.card-error .modal-title,.card.status-card.card-error .toast-title{color:#16161e;background:#f7768e}.card.status-card.card-danger .status-icon,.card.status-card.card-error .status-icon{color:#f7768e}.card.metric-card{max-width:320px;border-color:#c0caf53d}.card.metric-card .card-content{display:flex;flex-direction:column;gap:15px}.card.metric-card .metric-card-header{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.card.metric-card .metric-card-label{margin:0;color:#a9b1d6;font-size:13px;font-weight:600;text-transform:uppercase}.card.metric-card .metric-card-icon{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;color:#16161e;background:#7aa2f7;font-size:22px}.card.metric-card .metric-card-value{margin:0;color:#c0caf5;font-size:34px;font-weight:700;line-height:1.15}.card.metric-card .metric-card-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px;color:#787c99;font-size:13px}.card.metric-card .metric-card-delta{color:#9ece6a;font-weight:700}.card.metric-card .metric-card-delta.metric-card-delta-negative{color:#f7768e}.card.card-horizontal{max-width:none;display:flex;flex-direction:row;align-items:stretch;overflow:hidden}.card.card-horizontal .card-media{flex:0 0 20%;min-width:80px;max-width:160px;max-height:160px;overflow:hidden;position:relative;aspect-ratio:1;align-self:start}.card.card-horizontal .card-media img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;display:block}.card.card-horizontal .card-body{flex:1 1 auto;display:flex;flex-direction:column;padding:15px;gap:12px}.card.card-horizontal .card-title{padding:0;background:0 0;color:#c0caf5;font-size:16px;font-weight:700;text-transform:none;line-height:1.25}.card.card-horizontal .card-title a{color:inherit;text-decoration:none}.card.card-horizontal .card-content{padding:0;height:auto}.card.card-horizontal .card-content p{margin:0}.card.card-horizontal .card-footer{padding:0;display:flex;flex-wrap:wrap;align-items:center;gap:12px;color:#a9b1d6;font-size:13px}.card.action-card{max-width:360px;border-color:#7aa2f7}.card.action-card .card-content{display:flex;flex-direction:column;gap:15px}.card.action-card .action-card-kicker{display:inline-flex;width:-moz-max-content;width:max-content;padding:5px 8px;color:#16161e;background:#7aa2f7;font-size:12px;font-weight:700;line-height:1;text-transform:uppercase}.card.action-card .action-card-title{margin:0;font-size:20px;font-weight:700;line-height:1.25;text-transform:uppercase}.card.action-card .action-card-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}.card.action-card .action-card-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}.card.login-card{max-width:100%;width:460px;border-color:#c0caf5}.card.login-card .login-card-header{display:flex;align-items:center;justify-content:flex-start;gap:12px;padding:12px}.card.login-card .login-card-logo{display:block;width:auto;max-height:40px}.card.login-card .login-card-logo-icon{font-size:56px;color:#c0caf5}.card.login-card .login-card-title{font-size:20px;font-weight:700;text-transform:uppercase}.card.login-card .login-card-form{display:flex;flex-direction:column;gap:15px}.card.login-card .login-card-submit{width:-moz-max-content;width:max-content;margin-top:8px}.card.login-card .form-group{margin-bottom:0}.card.login-card .login-card-links{display:flex;justify-content:space-between;gap:12px;margin-top:8px;font-size:13px}.card.login-card .login-card-link{color:#a9b1d6;text-decoration:none}@media(hover:hover)and (pointer:fine){.card.login-card .login-card-link:hover{color:#c0caf5;text-decoration:underline}}@media(hover:none)and (pointer:coarse){.card.login-card .login-card-link:active{color:#c0caf5;text-decoration:underline}}.card.login-card .login-card-error{margin-bottom:8px}.card.user-card{max-width:320px}.card.user-card .user-card-body{display:flex;flex-direction:column;align-items:center;gap:15px;padding:18px;text-align:center}.card.user-card .identity{flex-direction:column;align-items:center;gap:15px}.card.user-card .identity .avatar{width:64px;height:64px;font-size:20px}.card.user-card .identity .identity-content{align-items:center;text-align:center}.card.user-card .user-card-role{color:#a9b1d6;font-size:13px;margin-top:5px}.card.user-card .user-card-actions{display:flex;gap:8px}.card.user-card-compact{max-width:none}.card.user-card-compact .user-card-body{flex-direction:row;justify-content:space-between;align-items:center;padding:12px 15px;text-align:left}.card.user-card-compact .identity{flex-direction:row;gap:12px}.card.user-card-compact .identity .avatar{width:38px;height:38px;font-size:13px}.card.user-card-compact .identity .identity-content{align-items:flex-start}.card.user-card-compact .user-card-actions{display:flex;gap:5px}.modal{position:fixed;top:0;bottom:0;left:0;right:0;z-index:1000;display:flex;flex-direction:column;align-items:center;justify-content:center}.modal .modal-backdrop{position:fixed;z-index:1010;top:0;bottom:0;left:0;right:0;background:#16161e;opacity:0;transition-duration:.25s;transition-property:opacity}.modal .modal-dialog{position:relative;z-index:1020;width:100%;max-width:960px;margin:200px 18px 18px;height:auto;max-height:calc(100vh - 48px);padding:0;display:flex;flex-direction:column;gap:0;opacity:0;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,margin-top}.modal .modal-dialog .modal-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:15px}.modal .modal-dialog .modal-header .modal-title{padding:12px 15px;background:#c0caf5;color:#16161e;text-transform:uppercase;letter-spacing:.04em}.modal .modal-dialog .modal-header .modal-close{flex:0 0 auto;color:#c0caf5;border-color:#c0caf53d;background:#16161e}.modal .modal-dialog .modal-panel{min-height:200px;display:flex;flex-direction:column;gap:15px;overflow:hidden;background:#16161e;border:2px solid #c0caf5;border-left-width:6px}.modal .modal-dialog .modal-body{max-height:700px;overflow-y:auto;padding:18px}.modal .modal-dialog .modal-footer{padding:18px}.modal .modal-dialog .modal-footer .actions{display:flex;flex-direction:row;justify-content:flex-end;gap:15px;width:100%}.modal.a-show .modal-backdrop{opacity:1}.modal.a-show .modal-dialog{opacity:1;margin-top:0}.modal.a-hide .modal-backdrop{opacity:0}.modal.a-hide .modal-dialog{opacity:0;margin-top:-200px}.alert{position:relative;overflow:hidden;margin-bottom:12px;padding:12px 15px;border:2px solid transparent;border-left-style:solid;border-left-width:6px;background:#1f2335;color:#c0caf5;font-weight:500;line-height:1.4;transition-duration:.2s;transition-timing-function:ease;transition-property:background,color,border-color}.alert:after{content:"";position:absolute;inset:0 auto 0 0;width:36%;background:linear-gradient(90deg,transparent,rgba(192,202,245,.12),transparent);opacity:0;pointer-events:none;transform:translate(-120%)}@media(hover:hover)and (pointer:fine){.alert:hover:after{opacity:1;animation:terminal_scan_x .8s ease}}@media(hover:none)and (pointer:coarse){.alert:active:after{opacity:1;animation:terminal_scan_x .8s ease}}.alert.alert-primary{border-color:#c0caf5;background:#c0caf51a;color:#c0caf5}.alert.alert-success{border-color:#9ece6a;background:#9ece6a1a;color:#9ece6a}.alert.alert-secondary{border-color:#7aa2f7;background:#7aa2f71a;color:#7aa2f7}.alert.alert-info{border-color:#bb9af7;background:#bb9af71a;color:#c0caf5}.alert.alert-warning{border-color:#e0af68;background:#e0af681a;color:#e0af68}.alert.alert-danger,.alert.alert-error{border-color:#f7768e;background:#f7768e1a;color:#f7768e}.advanced-select-container{position:relative;height:0}.advanced-select{position:absolute;z-index:100;top:6px;width:100%;height:auto;max-height:200px;overflow-y:auto;background:#16161e;border:2px solid #c0caf5;border-left-width:6px;margin-top:20px;opacity:0;visibility:hidden;transition-property:opacity,margin-top,visibility;transition-duration:.2s;transition-timing-function:ease}.advanced-select.a-show{opacity:1;margin-top:0;visibility:visible}.advanced-select .popup-options-container .not-found{width:100%;padding:15px;text-align:center;display:none}.advanced-select .popup-options-container .not-found.show{display:block}.advanced-select .popup-options-container .options{width:100%;display:none}.advanced-select .popup-options-container .options.show{display:block}.advanced-select .popup-options-container .options .option{padding:8px 15px;transition-property:color,background;transition-duration:.15s}.advanced-select .popup-options-container .options .option.hide{display:none}.advanced-select .popup-options-container .options .option.focus,.advanced-select .popup-options-container .options .option:hover{color:#16161e;background:#e0af68}.component.editable-string-component .editable-string-content{display:flex;flex-direction:row;align-items:center;gap:8px;font-size:inherit}.component.editable-string-component .editable-string-content .editable-string{font-size:inherit;border-bottom:2px solid rgba(192,202,245,.24)}@media(hover:hover)and (pointer:fine){.component.editable-string-component .apply-changes-btn:hover,.component.editable-string-component .cancel-changes-btn:hover,.component.editable-string-component .edit-text-btn:hover{color:#16161e;background:#e0af68}}@media(hover:none)and (pointer:coarse){.component.editable-string-component .apply-changes-btn:active,.component.editable-string-component .cancel-changes-btn:active,.component.editable-string-component .edit-text-btn:active{color:#16161e;background:#e0af68}}.component.editable-string-component .apply-changes-btn{color:#e0af68}.component.editable-string-component .editable-string-form{display:flex;flex-direction:row;align-items:center;gap:8px}.component.editable-string-component .editable-string-form .form-group{max-width:260px;margin:0}.component.editable-string-component .editable-string-form .form-group .input{padding:8px 15px}.tabs{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-bottom:15px}.tabs .tab{display:inline-flex;align-items:center;min-height:38px;padding:8px 12px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;color:#a9b1d6;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:600;line-height:1;text-transform:uppercase;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.tabs .tab:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.tabs .tab:hover{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.tabs .tab:active{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}.tabs .tab.tab-active,.tabs .tab[aria-selected=true]{color:#16161e;background:#c0caf5;border-color:#c0caf5}.dropdown,.popover{position:relative;display:inline-flex}.dropdown-menu,.popover-panel,.tooltip-panel{z-index:40;background:#1f2335;border:2px solid rgba(192,202,245,.24);border-left-width:6px;box-shadow:0 14px 36px #16161e5c}.dropdown-menu,.popover-panel{position:absolute;top:calc(100% + 8px);left:0;min-width:220px;display:none;transform-origin:top left}.dropdown.is-open .dropdown-menu,.popover.is-open .popover-panel{display:block;animation:overlay_reveal .2s ease both}.dropdown-menu{padding:5px}.dropdown-menu .dropdown-item{display:flex;align-items:center;gap:8px;width:100%;min-height:38px;padding:8px 12px;border:0;color:#c0caf5;background:0 0;font-family:IBM Plex Mono,monospace;font-size:13px;text-align:left;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.dropdown-menu .dropdown-item .ph,.dropdown-menu .dropdown-item .ph-bold{font-size:18px}.dropdown-menu .dropdown-item:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.dropdown-menu .dropdown-item:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.dropdown-menu .dropdown-item:active{color:#16161e;background:#7aa2f7}}.dropdown-menu .dropdown-item.dropdown-item-danger{color:#f7768e}@media(hover:hover)and (pointer:fine){.dropdown-menu .dropdown-item.dropdown-item-danger:hover{color:#16161e;background:#f7768e}}@media(hover:none)and (pointer:coarse){.dropdown-menu .dropdown-item.dropdown-item-danger:active{color:#16161e;background:#f7768e}}.popover-panel{width:min(320px,100vw - 22px);padding:15px}.popover-panel .popover-title{margin:0 0 8px;font-size:14px;font-weight:700;text-transform:uppercase}.popover-panel .popover-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}.tooltip{position:relative;display:inline-flex}.tooltip-panel{position:absolute;left:50%;bottom:calc(100% + 8px);width:-moz-max-content;width:max-content;max-width:260px;padding:8px 12px;color:#c0caf5;font-size:12px;line-height:1.4;transform:translate(-50%);opacity:0;visibility:hidden;pointer-events:none;transition-duration:.15s;transition-timing-function:ease;transition-property:opacity,visibility}.tooltip.is-open .tooltip-panel,.tooltip:focus-within .tooltip-panel,.tooltip:hover .tooltip-panel{opacity:1;visibility:visible;animation:tooltip_reveal .15s ease both}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.g-0{gap:0!important}.gx-0{-moz-column-gap:0!important;column-gap:0!important}.gy-0{row-gap:0!important}.m-1{margin:5px!important}.mt-1{margin-top:5px!important}.mr-1{margin-right:5px!important}.mb-1{margin-bottom:5px!important}.ml-1{margin-left:5px!important}.mx-1{margin-left:5px!important;margin-right:5px!important}.my-1{margin-top:5px!important;margin-bottom:5px!important}.p-1{padding:5px!important}.pt-1{padding-top:5px!important}.pr-1{padding-right:5px!important}.pb-1{padding-bottom:5px!important}.pl-1{padding-left:5px!important}.px-1{padding-left:5px!important;padding-right:5px!important}.py-1{padding-top:5px!important;padding-bottom:5px!important}.g-1{gap:5px!important}.gx-1{-moz-column-gap:5px!important;column-gap:5px!important}.gy-1{row-gap:5px!important}.m-2{margin:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.mx-2{margin-left:8px!important;margin-right:8px!important}.my-2{margin-top:8px!important;margin-bottom:8px!important}.p-2{padding:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2{padding-left:8px!important}.px-2{padding-left:8px!important;padding-right:8px!important}.py-2{padding-top:8px!important;padding-bottom:8px!important}.g-2{gap:8px!important}.gx-2{-moz-column-gap:8px!important;column-gap:8px!important}.gy-2{row-gap:8px!important}.m-3{margin:12px!important}.mt-3{margin-top:12px!important}.mr-3{margin-right:12px!important}.mb-3{margin-bottom:12px!important}.ml-3{margin-left:12px!important}.mx-3{margin-left:12px!important;margin-right:12px!important}.my-3{margin-top:12px!important;margin-bottom:12px!important}.p-3{padding:12px!important}.pt-3{padding-top:12px!important}.pr-3{padding-right:12px!important}.pb-3{padding-bottom:12px!important}.pl-3{padding-left:12px!important}.px-3{padding-left:12px!important;padding-right:12px!important}.py-3{padding-top:12px!important;padding-bottom:12px!important}.g-3{gap:12px!important}.gx-3{-moz-column-gap:12px!important;column-gap:12px!important}.gy-3{row-gap:12px!important}.m-4{margin:15px!important}.mt-4{margin-top:15px!important}.mr-4{margin-right:15px!important}.mb-4{margin-bottom:15px!important}.ml-4{margin-left:15px!important}.mx-4{margin-left:15px!important;margin-right:15px!important}.my-4{margin-top:15px!important;margin-bottom:15px!important}.p-4{padding:15px!important}.pt-4{padding-top:15px!important}.pr-4{padding-right:15px!important}.pb-4{padding-bottom:15px!important}.pl-4{padding-left:15px!important}.px-4{padding-left:15px!important;padding-right:15px!important}.py-4{padding-top:15px!important;padding-bottom:15px!important}.g-4{gap:15px!important}.gx-4{-moz-column-gap:15px!important;column-gap:15px!important}.gy-4{row-gap:15px!important}.m-5{margin:18px!important}.mt-5{margin-top:18px!important}.mr-5{margin-right:18px!important}.mb-5{margin-bottom:18px!important}.ml-5{margin-left:18px!important}.mx-5{margin-left:18px!important;margin-right:18px!important}.my-5{margin-top:18px!important;margin-bottom:18px!important}.p-5{padding:18px!important}.pt-5{padding-top:18px!important}.pr-5{padding-right:18px!important}.pb-5{padding-bottom:18px!important}.pl-5{padding-left:18px!important}.px-5{padding-left:18px!important;padding-right:18px!important}.py-5{padding-top:18px!important;padding-bottom:18px!important}.g-5{gap:18px!important}.gx-5{-moz-column-gap:18px!important;column-gap:18px!important}.gy-5{row-gap:18px!important}.m-6{margin:22px!important}.mt-6{margin-top:22px!important}.mr-6{margin-right:22px!important}.mb-6{margin-bottom:22px!important}.ml-6{margin-left:22px!important}.mx-6{margin-left:22px!important;margin-right:22px!important}.my-6{margin-top:22px!important;margin-bottom:22px!important}.p-6{padding:22px!important}.pt-6{padding-top:22px!important}.pr-6{padding-right:22px!important}.pb-6{padding-bottom:22px!important}.pl-6{padding-left:22px!important}.px-6{padding-left:22px!important;padding-right:22px!important}.py-6{padding-top:22px!important;padding-bottom:22px!important}.g-6{gap:22px!important}.gx-6{-moz-column-gap:22px!important;column-gap:22px!important}.gy-6{row-gap:22px!important}.m-7{margin:26px!important}.mt-7{margin-top:26px!important}.mr-7{margin-right:26px!important}.mb-7{margin-bottom:26px!important}.ml-7{margin-left:26px!important}.mx-7{margin-left:26px!important;margin-right:26px!important}.my-7{margin-top:26px!important;margin-bottom:26px!important}.p-7{padding:26px!important}.pt-7{padding-top:26px!important}.pr-7{padding-right:26px!important}.pb-7{padding-bottom:26px!important}.pl-7{padding-left:26px!important}.px-7{padding-left:26px!important;padding-right:26px!important}.py-7{padding-top:26px!important;padding-bottom:26px!important}.g-7{gap:26px!important}.gx-7{-moz-column-gap:26px!important;column-gap:26px!important}.gy-7{row-gap:26px!important}.m-8{margin:34px!important}.mt-8{margin-top:34px!important}.mr-8{margin-right:34px!important}.mb-8{margin-bottom:34px!important}.ml-8{margin-left:34px!important}.mx-8{margin-left:34px!important;margin-right:34px!important}.my-8{margin-top:34px!important;margin-bottom:34px!important}.p-8{padding:34px!important}.pt-8{padding-top:34px!important}.pr-8{padding-right:34px!important}.pb-8{padding-bottom:34px!important}.pl-8{padding-left:34px!important}.px-8{padding-left:34px!important;padding-right:34px!important}.py-8{padding-top:34px!important;padding-bottom:34px!important}.g-8{gap:34px!important}.gx-8{-moz-column-gap:34px!important;column-gap:34px!important}.gy-8{row-gap:34px!important}.m-9{margin:42px!important}.mt-9{margin-top:42px!important}.mr-9{margin-right:42px!important}.mb-9{margin-bottom:42px!important}.ml-9{margin-left:42px!important}.mx-9{margin-left:42px!important;margin-right:42px!important}.my-9{margin-top:42px!important;margin-bottom:42px!important}.p-9{padding:42px!important}.pt-9{padding-top:42px!important}.pr-9{padding-right:42px!important}.pb-9{padding-bottom:42px!important}.pl-9{padding-left:42px!important}.px-9{padding-left:42px!important;padding-right:42px!important}.py-9{padding-top:42px!important;padding-bottom:42px!important}.g-9{gap:42px!important}.gx-9{-moz-column-gap:42px!important;column-gap:42px!important}.gy-9{row-gap:42px!important}.m-10{margin:48px!important}.mt-10{margin-top:48px!important}.mr-10{margin-right:48px!important}.mb-10{margin-bottom:48px!important}.ml-10{margin-left:48px!important}.mx-10{margin-left:48px!important;margin-right:48px!important}.my-10{margin-top:48px!important;margin-bottom:48px!important}.p-10{padding:48px!important}.pt-10{padding-top:48px!important}.pr-10{padding-right:48px!important}.pb-10{padding-bottom:48px!important}.pl-10{padding-left:48px!important}.px-10{padding-left:48px!important;padding-right:48px!important}.py-10{padding-top:48px!important;padding-bottom:48px!important}.g-10{gap:48px!important}.gx-10{-moz-column-gap:48px!important;column-gap:48px!important}.gy-10{row-gap:48px!important}.m-11{margin:64px!important}.mt-11{margin-top:64px!important}.mr-11{margin-right:64px!important}.mb-11{margin-bottom:64px!important}.ml-11{margin-left:64px!important}.mx-11{margin-left:64px!important;margin-right:64px!important}.my-11{margin-top:64px!important;margin-bottom:64px!important}.p-11{padding:64px!important}.pt-11{padding-top:64px!important}.pr-11{padding-right:64px!important}.pb-11{padding-bottom:64px!important}.pl-11{padding-left:64px!important}.px-11{padding-left:64px!important;padding-right:64px!important}.py-11{padding-top:64px!important;padding-bottom:64px!important}.g-11{gap:64px!important}.gx-11{-moz-column-gap:64px!important;column-gap:64px!important}.gy-11{row-gap:64px!important}.m-12{margin:80px!important}.mt-12{margin-top:80px!important}.mr-12{margin-right:80px!important}.mb-12{margin-bottom:80px!important}.ml-12{margin-left:80px!important}.mx-12{margin-left:80px!important;margin-right:80px!important}.my-12{margin-top:80px!important;margin-bottom:80px!important}.p-12{padding:80px!important}.pt-12{padding-top:80px!important}.pr-12{padding-right:80px!important}.pb-12{padding-bottom:80px!important}.pl-12{padding-left:80px!important}.px-12{padding-left:80px!important;padding-right:80px!important}.py-12{padding-top:80px!important;padding-bottom:80px!important}.g-12{gap:80px!important}.gx-12{-moz-column-gap:80px!important;column-gap:80px!important}.gy-12{row-gap:80px!important}.row{display:flex;flex-direction:row}@media(max-width:1279px){.row.adaptive{flex-direction:column}}.column{display:flex;flex-direction:column}.f-grid{display:flex;flex-direction:row;flex-wrap:wrap}.grid{display:grid}.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}.items-start{align-items:flex-start!important}.items-center{align-items:center!important}.items-end{align-items:flex-end!important}.justify-start{justify-content:flex-start!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.justify-end{justify-content:flex-end!important}.w-100{width:100%}.w-auto{width:auto!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-200{width:200%}.h-100{height:100%}.min-w-0{min-width:0!important}.overflow-hidden{overflow:hidden!important}.overflow-auto{overflow:auto!important}.fs-xs{font-size:12px}.fs-sm{font-size:13px}.fs-md{font-size:14px}.fs-base{font-size:15px}.fs-lg{font-size:16px}.fs-xl{font-size:20px}.text-left{text-align:left!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-uppercase{text-transform:uppercase!important}.text-nowrap{white-space:nowrap!important}.d-none{display:none!important}.d-block{display:block!important}.d-inline-flex{display:inline-flex!important}.d-flex{display:flex!important}.d-grid{display:grid!important}@media(max-width:767px){.grid-2,.grid-3{grid-template-columns:1fr}}*{box-sizing:border-box}body,html{padding:0;margin:0}body{background-color:#16161e;color:#c0caf5}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{width:10px;background:#16161e;cursor:pointer}::-webkit-scrollbar-thumb{width:10px;background:#414868;cursor:default}::-webkit-scrollbar-corner{background:0 0;height:1px}::-webkit-scrollbar-button{display:none}.ph.normalize{position:relative;top:.15em}code[class*=language-],pre[class*=language-]{color:#000;background:none;text-shadow:0 1px white;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,code[class*=language-] ::-moz-selection{text-shadow:none;background:#b3d4fc}pre[class*=language-]::selection,pre[class*=language-] ::selection,code[class*=language-]::selection,code[class*=language-] ::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.comment,.token.prolog,.token.doctype,.token.cdata{color:#708090}.token.punctuation{color:#999}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.deleted{color:#905}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted{color:#690}.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string{color:#9a6e3a;background:#ffffff80}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.function,.token.class-name{color:#dd4a68}.token.regex,.token.important,.token.variable{color:#e90}pre[class*=language-],code[class*=language-]{color:#c0caf5;background:none;font-family:IBM Plex Mono,Courier New,monospace;font-size:12px;line-height:1.6;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:2;tab-size:2;-webkit-hyphens:none;hyphens:none}pre[class*=language-]{padding:14px;margin:0;overflow:auto;background:#11131a;border:1px solid rgba(192,202,245,.12)}.token.comment,.token.prolog,.token.doctype,.token.cdata{color:#565f89}.token.punctuation{color:#7aa2f7}.token.namespace{opacity:.7}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.deleted{color:#ff9e64}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted{color:#9ece6a}.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string{color:#89ddff;background:none}.token.atrule,.token.attr-value,.token.keyword{color:#bb9af7}.token.function,.token.class-name{color:#0db9d7}.token.regex,.token.important,.token.variable{color:#e0af68}.token.important,.token.bold{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}:root{color-scheme:dark;font-family:IBM Plex Mono,Courier New,monospace;background:#07080b;color:#f4f4f5;--color-bg: #07080b;--color-panel: #11131a;--color-panel-strong: #171a24;--color-text: #f4f4f5;--color-muted: #9ca3af;--color-primary: #12b7f5;--color-accent: #00f5a0;--color-warning: #ffe500;--color-danger: #ff3d00;--border: 1px solid #f4f4f5}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}html,body{overscroll-behavior-y:none;-webkit-overflow-scrolling:touch}body{margin:0;min-width:320px;min-height:100vh;background:radial-gradient(circle at 20% 0%,rgba(18,183,245,.12),transparent 30%),var(--color-bg)}a{color:inherit}button,input,textarea{font:inherit}.page{width:min(1200px,100%);margin:0 auto;padding:36px 14px}.page .page-header{margin-bottom:24px;animation:none}.page .page-header:after,.page .page-header:hover:after{display:none}.area-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;align-items:stretch}.area-grid .card{width:100%;height:100%;max-width:none;display:flex;flex-direction:column}.area-grid .card .card-content{flex:1;display:flex;flex-direction:column;gap:12px}.area-grid .card .card-footer{margin-top:auto}.area-grid .card-content p,.area-grid .card-content .text{margin-bottom:0}.area-tree,.area-tree-children{display:grid;gap:12px;margin:0;padding:0;list-style:none}.area-tree-children{margin-top:12px;padding-left:28px}.area-tree-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;padding:14px;border:var(--border);background:var(--color-panel);cursor:pointer}.area-tree-card:hover{background:var(--color-panel-strong)}.tree-toggle{width:36px;height:36px;border:2px solid currentColor;background:transparent;cursor:pointer;font-weight:800}.tree-toggle:disabled{cursor:default}.area-tree-info h2{margin:0 0 8px;font-size:20px}.area-tree-info p,.area-tree-actions{display:flex;flex-wrap:wrap;gap:8px;margin:0}.devices-panel{display:grid;gap:16px}.devices-summary,.devices-actions{display:flex;flex-wrap:wrap;gap:8px}.modal-footer{display:flex;justify-content:flex-end;gap:12px}.nav-drawer-footer .card.user-card-compact{border:0;width:100%}.nav-drawer-footer .card.user-card-compact .user-card-body{padding:0}.toast.toast-info,.toast.toast-success,.toast.toast-warning,.toast.toast-danger{background:var(--color-panel-strong)}@media(max-width:720px){.area-tree-card{grid-template-columns:1fr}.area-tree-children{padding-left:14px}} diff --git a/server/dist/assets/index-lntnRZ73.css b/server/dist/assets/index-lntnRZ73.css deleted file mode 100644 index 64e378d..0000000 --- a/server/dist/assets/index-lntnRZ73.css +++ /dev/null @@ -1 +0,0 @@ -@charset "UTF-8";.nav-topbar-brand img{width:50px!important;height:50px!important}.error-meta[data-v-f1e6bcb8]{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}.error-actions[data-v-f1e6bcb8]{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-top:12px}.error-boundary[data-v-1e10ea7f]{padding:24px}.area-favorites-list[data-v-f8795944]{display:grid;gap:12px;margin:0;padding:0;list-style:none}.area-favorite-card[data-v-f8795944]{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;padding:14px 16px;border:1px solid rgba(192,202,245,.12);background:var(--color-panel);cursor:pointer;transition:background .15s ease}.area-favorite-card[data-v-f8795944]:hover{background:var(--color-panel-strong)}.area-favorite-icon[data-v-f8795944]{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border:2px solid var(--color-primary);color:var(--color-primary);font-size:20px}.area-favorite-info[data-v-f8795944]{min-width:0}.area-favorite-title[data-v-f8795944]{margin:0 0 6px;font-size:18px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.area-favorite-meta[data-v-f8795944]{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:0;color:var(--color-muted);font-size:13px}.area-favorite-parent[data-v-f8795944]{color:var(--color-muted)}.area-favorite-parent .parent-link[data-v-f8795944]{color:var(--color-primary);text-decoration:none}.area-favorite-parent .parent-link[data-v-f8795944]:hover{text-decoration:underline}@media(max-width:720px){.area-favorite-card[data-v-f8795944]{grid-template-columns:auto 1fr;gap:12px}.area-favorite-actions[data-v-f8795944]{grid-column:1 / -1;justify-self:end}}.form-group[data-v-5f02f384]{margin-bottom:16px}.area-link[data-v-91230b95]{text-decoration:none}.devices-panel[data-v-92cae82c]{margin-bottom:24px}.block-title[data-v-92cae82c]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.area-assigned[data-v-92cae82c]{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.area-card[data-v-92cae82c]{display:flex;align-items:center;gap:10px;padding:10px 14px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12);color:inherit;text-decoration:none;transition:border-color .15s}.area-card[data-v-92cae82c]:hover{border-color:var(--color-primary)}.area-card-icon[data-v-92cae82c]{font-size:20px}.area-card-info[data-v-92cae82c]{display:flex;flex-direction:column;gap:2px}.area-card-info small[data-v-92cae82c]{font-size:12px}.form-group[data-v-92cae82c]{margin-bottom:16px}.device-channels-state[data-v-08541c71]{display:inline-flex;align-items:center}.channels-grid[data-v-08541c71]{display:inline-flex;flex-wrap:wrap;gap:6px;align-items:center}.unknown-type[data-v-08541c71]{font-size:12px}.raw-json[data-v-08541c71]{font-size:10px;margin:4px 0 0;max-width:400px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.device-cell[data-v-32549911]{display:flex;align-items:center;gap:10px}.device-icon[data-v-32549911]{font-size:20px}.device-info[data-v-32549911]{display:flex;flex-direction:column;gap:2px}.device-name-row[data-v-32549911]{display:inline-flex;align-items:center;gap:6px}.status-dot[data-v-32549911]{display:inline-block;width:8px;height:8px;border-radius:50%;flex-shrink:0;background:currentColor;box-shadow:0 0 4px currentColor}.device-info small[data-v-32549911]{font-size:12px}.device-link[data-v-32549911]{color:inherit;text-decoration:none}.device-link:hover strong[data-v-32549911]{color:var(--color-primary)}.script-link[data-v-1ead75a7]{color:var(--color-primary);text-decoration:none}.scope-link[data-v-1ead75a7]{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border:1px solid var(--color-primary);color:var(--color-primary);text-decoration:none;font-size:13px;cursor:pointer;transition:background .15s,color .15s}.scope-link[data-v-1ead75a7]:hover{background:var(--color-primary);color:var(--color-bg)}.scope-label[data-v-1ead75a7]{text-transform:uppercase;font-size:11px;font-weight:700;opacity:.8}.muted[data-v-1ead75a7]{color:var(--color-muted)}.page-header:has(>.page-header-actions .page-actions-dropdown){overflow:visible}.page-actions-dropdown .btn-icon{width:44px;height:44px;font-size:24px}.page-actions-dropdown .dropdown-menu{left:auto;right:0;transform-origin:top right}.script-run-form[data-v-c51fae66]{display:flex;flex-direction:column;gap:16px}.form-field[data-v-c51fae66]{display:flex;flex-direction:column;gap:4px}.field-error[data-v-c51fae66]{color:var(--color-danger, #ef4444);font-size:12px;margin:0}.script-icon[data-v-af9af307]{font-size:32px}.script-meta[data-v-af9af307]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.action-card-item.card-cautious[data-v-af9af307] .action-card{border-color:#e0af68}.action-card-item.card-dangerous[data-v-af9af307] .action-card{border-color:#f7768e}.area-meta[data-v-757a0469]{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-bottom:24px}.area-parent[data-v-757a0469]{color:var(--color-muted)}.actions-panel[data-v-757a0469],.devices-panel[data-v-757a0469],.scripts-panel[data-v-757a0469]{margin-bottom:24px}.block-title[data-v-757a0469]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.form-group[data-v-757a0469]{margin-bottom:16px}.devices-summary[data-v-635f3900]{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}.scan-filters[data-v-1a01bb19]{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:24px}.filter-label[data-v-1a01bb19]{font-size:13px;text-transform:uppercase}.devices-summary[data-v-1a01bb19]{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}.device-cell[data-v-1a01bb19]{display:flex;align-items:center;gap:10px}.device-icon[data-v-1a01bb19]{font-size:20px;color:var(--color-primary)}.device-info[data-v-1a01bb19]{display:flex;flex-direction:column;gap:2px}.device-info small[data-v-1a01bb19]{color:var(--color-muted);font-size:12px}.firmware[data-v-1a01bb19]{font-size:12px;color:var(--color-muted)}.muted[data-v-1a01bb19]{color:var(--color-muted)}.form-group[data-v-1a01bb19]{margin-bottom:16px}.device-meta[data-v-a9f83185]{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-bottom:24px}.script-info-panel[data-v-a9f83185]{display:grid;gap:8px;padding:12px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12);margin-bottom:24px}.info-row[data-v-a9f83185]{display:flex;gap:8px;align-items:baseline}.info-label[data-v-a9f83185]{font-size:12px;text-transform:uppercase;min-width:48px}.info-value[data-v-a9f83185]{font-size:13px;word-break:break-all}.devices-panel[data-v-a9f83185]{margin-bottom:24px}.block-title[data-v-a9f83185]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.form-group[data-v-a9f83185]{margin-bottom:16px}.firmware-options[data-v-a9f83185]{display:grid;gap:8px;margin:12px 0}.firmware-option[data-v-a9f83185]{padding:10px 12px;border:1px solid rgba(192,202,245,.12);border-radius:6px;cursor:pointer;background:var(--color-panel)}.firmware-option.active[data-v-a9f83185]{border-color:var(--color-primary);background:#3b82f61a}.fw-version[data-v-a9f83185]{font-weight:600;font-size:13px}.fw-desc[data-v-a9f83185]{font-size:12px;color:var(--color-text-muted);margin-top:2px}.result-alert[data-v-f336617a]{margin-top:24px}.script-link[data-v-c8486788]{color:var(--color-primary)}.script-detail-meta[data-v-c052dd3b]{display:flex;flex-direction:column;gap:16px;margin-bottom:24px}.script-icon[data-v-c052dd3b]{font-size:32px}.script-meta[data-v-c052dd3b]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.result-alert[data-v-c052dd3b]{margin-top:24px}.devices-panel[data-v-c052dd3b]{margin-bottom:24px}.block-title[data-v-c052dd3b]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.script-link[data-v-c052dd3b]{color:var(--color-primary)}.scope-link[data-v-c052dd3b]{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border:1px solid var(--color-primary);color:var(--color-primary);text-decoration:none;font-size:13px;cursor:pointer;transition:background .15s,color .15s}.scope-link[data-v-c052dd3b]:hover{background:var(--color-primary);color:var(--color-bg)}.scope-label[data-v-c052dd3b]{text-transform:uppercase;font-size:11px;font-weight:700;opacity:.8}.script-info-panel[data-v-c052dd3b]{display:grid;gap:8px;padding:12px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12)}.info-row[data-v-c052dd3b]{display:flex;gap:8px;align-items:baseline}.info-label[data-v-c052dd3b]{font-size:12px;text-transform:uppercase;min-width:48px}.info-value[data-v-c052dd3b]{font-size:13px;word-break:break-all}.code-block[data-v-c052dd3b]{margin:0;padding:14px;overflow-x:auto}.firmwares-summary[data-v-c0c73f70]{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}.firmwares-list[data-v-c0c73f70]{display:grid;gap:12px}.firmware-card[data-v-c0c73f70]{background:var(--color-panel);border:1px solid rgba(192,202,245,.12);border-radius:8px;padding:12px 16px}.firmware-header[data-v-c0c73f70]{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}.firmware-id[data-v-c0c73f70]{font-family:monospace;font-size:13px;word-break:break-all}.firmware-meta[data-v-c0c73f70]{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:8px}.firmware-desc[data-v-c0c73f70]{font-size:13px;color:var(--color-text-muted);margin:0}.firmware-changelog[data-v-c0c73f70]{font-size:12px;background:#0f172a80;padding:8px;border-radius:6px;margin-top:8px;white-space:pre-wrap;word-break:break-word}.login-page[data-v-7f18a357]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.login-card[data-v-7f18a357]{display:flex;flex-direction:column;align-items:center;gap:1.5rem;max-width:360px;width:100%;padding:2rem;text-align:center}.login-brand[data-v-7f18a357]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-7f18a357]{width:120px;height:120px}.brand-title[data-v-7f18a357]{margin:0;font-size:1.25rem;font-weight:700}.login-hint[data-v-7f18a357]{margin:0;font-size:.875rem;line-height:1.5}.login-btn[data-v-7f18a357]{width:100%}.login-loading[data-v-7f18a357]{margin:0;font-size:.8125rem;display:flex;align-items:center;gap:.375rem}.setup-page[data-v-a50065c7]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.setup-card[data-v-a50065c7]{display:flex;flex-direction:column;align-items:center;gap:1.5rem;max-width:360px;width:100%;padding:2rem;text-align:center}.setup-brand[data-v-a50065c7]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-a50065c7]{width:120px;height:120px}.brand-title[data-v-a50065c7]{margin:0;font-size:1.25rem;font-weight:700}.brand-subtitle[data-v-a50065c7]{margin:0;font-size:.875rem}.setup-divider[data-v-a50065c7]{width:48px;height:2px;background:currentColor;border-radius:1px}.setup-hint[data-v-a50065c7]{margin:0;font-size:.875rem;line-height:1.5}.setup-form[data-v-a50065c7]{display:flex;flex-direction:column;gap:1rem;width:100%}.setup-btn[data-v-a50065c7]{width:100%}.setup-error[data-v-a50065c7]{margin:0;font-size:.875rem;display:flex;align-items:center;gap:.375rem}.mobile-auth-page[data-v-9c0afc74]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.mobile-auth-card[data-v-9c0afc74]{display:flex;flex-direction:column;align-items:center;gap:1rem;text-align:center}.spinner[data-v-9c0afc74]{width:40px;height:40px;border:3px solid rgba(255,255,255,.2);border-top-color:#12b7f5;border-radius:50%;animation:spin-9c0afc74 1s linear infinite}@keyframes spin-9c0afc74{to{transform:rotate(360deg)}}@font-face{font-family:Phosphor;src:url(/assets/Phosphor-DtdjzkpE.woff2) format("woff2"),url(/assets/Phosphor-BdqudwT5.woff) format("woff"),url(/assets/Phosphor-CDxgqcPu.ttf) format("truetype"),url(/assets/Phosphor-BXRFlF4V.svg#Phosphor) format("svg");font-weight:400;font-style:normal;font-display:block}.ph{font-family:Phosphor!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ph.ph-acorn:before{content:""}.ph.ph-address-book:before{content:""}.ph.ph-address-book-tabs:before{content:""}.ph.ph-air-traffic-control:before{content:""}.ph.ph-airplane:before{content:""}.ph.ph-airplane-in-flight:before{content:""}.ph.ph-airplane-landing:before{content:""}.ph.ph-airplane-takeoff:before{content:""}.ph.ph-airplane-taxiing:before{content:""}.ph.ph-airplane-tilt:before{content:""}.ph.ph-airplay:before{content:""}.ph.ph-alarm:before{content:""}.ph.ph-alien:before{content:""}.ph.ph-align-bottom:before{content:""}.ph.ph-align-bottom-simple:before{content:""}.ph.ph-align-center-horizontal:before{content:""}.ph.ph-align-center-horizontal-simple:before{content:""}.ph.ph-align-center-vertical:before{content:""}.ph.ph-align-center-vertical-simple:before{content:""}.ph.ph-align-left:before{content:""}.ph.ph-align-left-simple:before{content:""}.ph.ph-align-right:before{content:""}.ph.ph-align-right-simple:before{content:""}.ph.ph-align-top:before{content:""}.ph.ph-align-top-simple:before{content:""}.ph.ph-amazon-logo:before{content:""}.ph.ph-ambulance:before{content:""}.ph.ph-anchor:before{content:""}.ph.ph-anchor-simple:before{content:""}.ph.ph-android-logo:before{content:""}.ph.ph-angle:before{content:""}.ph.ph-angular-logo:before{content:""}.ph.ph-aperture:before{content:""}.ph.ph-app-store-logo:before{content:""}.ph.ph-app-window:before{content:""}.ph.ph-apple-logo:before{content:""}.ph.ph-apple-podcasts-logo:before{content:""}.ph.ph-approximate-equals:before{content:""}.ph.ph-archive:before{content:""}.ph.ph-armchair:before{content:""}.ph.ph-arrow-arc-left:before{content:""}.ph.ph-arrow-arc-right:before{content:""}.ph.ph-arrow-bend-double-up-left:before{content:""}.ph.ph-arrow-bend-double-up-right:before{content:""}.ph.ph-arrow-bend-down-left:before{content:""}.ph.ph-arrow-bend-down-right:before{content:""}.ph.ph-arrow-bend-left-down:before{content:""}.ph.ph-arrow-bend-left-up:before{content:""}.ph.ph-arrow-bend-right-down:before{content:""}.ph.ph-arrow-bend-right-up:before{content:""}.ph.ph-arrow-bend-up-left:before{content:""}.ph.ph-arrow-bend-up-right:before{content:""}.ph.ph-arrow-circle-down:before{content:""}.ph.ph-arrow-circle-down-left:before{content:""}.ph.ph-arrow-circle-down-right:before{content:""}.ph.ph-arrow-circle-left:before{content:""}.ph.ph-arrow-circle-right:before{content:""}.ph.ph-arrow-circle-up:before{content:""}.ph.ph-arrow-circle-up-left:before{content:""}.ph.ph-arrow-circle-up-right:before{content:""}.ph.ph-arrow-clockwise:before{content:""}.ph.ph-arrow-counter-clockwise:before{content:""}.ph.ph-arrow-down:before{content:""}.ph.ph-arrow-down-left:before{content:""}.ph.ph-arrow-down-right:before{content:""}.ph.ph-arrow-elbow-down-left:before{content:""}.ph.ph-arrow-elbow-down-right:before{content:""}.ph.ph-arrow-elbow-left:before{content:""}.ph.ph-arrow-elbow-left-down:before{content:""}.ph.ph-arrow-elbow-left-up:before{content:""}.ph.ph-arrow-elbow-right:before{content:""}.ph.ph-arrow-elbow-right-down:before{content:""}.ph.ph-arrow-elbow-right-up:before{content:""}.ph.ph-arrow-elbow-up-left:before{content:""}.ph.ph-arrow-elbow-up-right:before{content:""}.ph.ph-arrow-fat-down:before{content:""}.ph.ph-arrow-fat-left:before{content:""}.ph.ph-arrow-fat-line-down:before{content:""}.ph.ph-arrow-fat-line-left:before{content:""}.ph.ph-arrow-fat-line-right:before{content:""}.ph.ph-arrow-fat-line-up:before{content:""}.ph.ph-arrow-fat-lines-down:before{content:""}.ph.ph-arrow-fat-lines-left:before{content:""}.ph.ph-arrow-fat-lines-right:before{content:""}.ph.ph-arrow-fat-lines-up:before{content:""}.ph.ph-arrow-fat-right:before{content:""}.ph.ph-arrow-fat-up:before{content:""}.ph.ph-arrow-left:before{content:""}.ph.ph-arrow-line-down:before{content:""}.ph.ph-arrow-line-down-left:before{content:""}.ph.ph-arrow-line-down-right:before{content:""}.ph.ph-arrow-line-left:before{content:""}.ph.ph-arrow-line-right:before{content:""}.ph.ph-arrow-line-up:before{content:""}.ph.ph-arrow-line-up-left:before{content:""}.ph.ph-arrow-line-up-right:before{content:""}.ph.ph-arrow-right:before{content:""}.ph.ph-arrow-square-down:before{content:""}.ph.ph-arrow-square-down-left:before{content:""}.ph.ph-arrow-square-down-right:before{content:""}.ph.ph-arrow-square-in:before{content:""}.ph.ph-arrow-square-left:before{content:""}.ph.ph-arrow-square-out:before{content:""}.ph.ph-arrow-square-right:before{content:""}.ph.ph-arrow-square-up:before{content:""}.ph.ph-arrow-square-up-left:before{content:""}.ph.ph-arrow-square-up-right:before{content:""}.ph.ph-arrow-u-down-left:before{content:""}.ph.ph-arrow-u-down-right:before{content:""}.ph.ph-arrow-u-left-down:before{content:""}.ph.ph-arrow-u-left-up:before{content:""}.ph.ph-arrow-u-right-down:before{content:""}.ph.ph-arrow-u-right-up:before{content:""}.ph.ph-arrow-u-up-left:before{content:""}.ph.ph-arrow-u-up-right:before{content:""}.ph.ph-arrow-up:before{content:""}.ph.ph-arrow-up-left:before{content:""}.ph.ph-arrow-up-right:before{content:""}.ph.ph-arrows-clockwise:before{content:""}.ph.ph-arrows-counter-clockwise:before{content:""}.ph.ph-arrows-down-up:before{content:""}.ph.ph-arrows-horizontal:before{content:""}.ph.ph-arrows-in:before{content:""}.ph.ph-arrows-in-cardinal:before{content:""}.ph.ph-arrows-in-line-horizontal:before{content:""}.ph.ph-arrows-in-line-vertical:before{content:""}.ph.ph-arrows-in-simple:before{content:""}.ph.ph-arrows-left-right:before{content:""}.ph.ph-arrows-merge:before{content:""}.ph.ph-arrows-out:before{content:""}.ph.ph-arrows-out-cardinal:before{content:""}.ph.ph-arrows-out-line-horizontal:before{content:""}.ph.ph-arrows-out-line-vertical:before{content:""}.ph.ph-arrows-out-simple:before{content:""}.ph.ph-arrows-split:before{content:""}.ph.ph-arrows-vertical:before{content:""}.ph.ph-article:before{content:""}.ph.ph-article-medium:before{content:""}.ph.ph-article-ny-times:before{content:""}.ph.ph-asclepius:before{content:""}.ph.ph-caduceus:before{content:""}.ph.ph-asterisk:before{content:""}.ph.ph-asterisk-simple:before{content:""}.ph.ph-at:before{content:""}.ph.ph-atom:before{content:""}.ph.ph-avocado:before{content:""}.ph.ph-axe:before{content:""}.ph.ph-baby:before{content:""}.ph.ph-baby-carriage:before{content:""}.ph.ph-backpack:before{content:""}.ph.ph-backspace:before{content:""}.ph.ph-bag:before{content:""}.ph.ph-bag-simple:before{content:""}.ph.ph-balloon:before{content:""}.ph.ph-bandaids:before{content:""}.ph.ph-bank:before{content:""}.ph.ph-barbell:before{content:""}.ph.ph-barcode:before{content:""}.ph.ph-barn:before{content:""}.ph.ph-barricade:before{content:""}.ph.ph-baseball:before{content:""}.ph.ph-baseball-cap:before{content:""}.ph.ph-baseball-helmet:before{content:""}.ph.ph-basket:before{content:""}.ph.ph-basketball:before{content:""}.ph.ph-bathtub:before{content:""}.ph.ph-battery-charging:before{content:""}.ph.ph-battery-charging-vertical:before{content:""}.ph.ph-battery-empty:before{content:""}.ph.ph-battery-full:before{content:""}.ph.ph-battery-high:before{content:""}.ph.ph-battery-low:before{content:""}.ph.ph-battery-medium:before{content:""}.ph.ph-battery-plus:before{content:""}.ph.ph-battery-plus-vertical:before{content:""}.ph.ph-battery-vertical-empty:before{content:""}.ph.ph-battery-vertical-full:before{content:""}.ph.ph-battery-vertical-high:before{content:""}.ph.ph-battery-vertical-low:before{content:""}.ph.ph-battery-vertical-medium:before{content:""}.ph.ph-battery-warning:before{content:""}.ph.ph-battery-warning-vertical:before{content:""}.ph.ph-beach-ball:before{content:""}.ph.ph-beanie:before{content:""}.ph.ph-bed:before{content:""}.ph.ph-beer-bottle:before{content:""}.ph.ph-beer-stein:before{content:""}.ph.ph-behance-logo:before{content:""}.ph.ph-bell:before{content:""}.ph.ph-bell-ringing:before{content:""}.ph.ph-bell-simple:before{content:""}.ph.ph-bell-simple-ringing:before{content:""}.ph.ph-bell-simple-slash:before{content:""}.ph.ph-bell-simple-z:before{content:""}.ph.ph-bell-slash:before{content:""}.ph.ph-bell-z:before{content:""}.ph.ph-belt:before{content:""}.ph.ph-bezier-curve:before{content:""}.ph.ph-bicycle:before{content:""}.ph.ph-binary:before{content:""}.ph.ph-binoculars:before{content:""}.ph.ph-biohazard:before{content:""}.ph.ph-bird:before{content:""}.ph.ph-blueprint:before{content:""}.ph.ph-bluetooth:before{content:""}.ph.ph-bluetooth-connected:before{content:""}.ph.ph-bluetooth-slash:before{content:""}.ph.ph-bluetooth-x:before{content:""}.ph.ph-boat:before{content:""}.ph.ph-bomb:before{content:""}.ph.ph-bone:before{content:""}.ph.ph-book:before{content:""}.ph.ph-book-bookmark:before{content:""}.ph.ph-book-open:before{content:""}.ph.ph-book-open-text:before{content:""}.ph.ph-book-open-user:before{content:""}.ph.ph-bookmark:before{content:""}.ph.ph-bookmark-simple:before{content:""}.ph.ph-bookmarks:before{content:""}.ph.ph-bookmarks-simple:before{content:""}.ph.ph-books:before{content:""}.ph.ph-boot:before{content:""}.ph.ph-boules:before{content:""}.ph.ph-bounding-box:before{content:""}.ph.ph-bowl-food:before{content:""}.ph.ph-bowl-steam:before{content:""}.ph.ph-bowling-ball:before{content:""}.ph.ph-box-arrow-down:before{content:""}.ph.ph-archive-box:before{content:""}.ph.ph-box-arrow-up:before{content:""}.ph.ph-boxing-glove:before{content:""}.ph.ph-brackets-angle:before{content:""}.ph.ph-brackets-curly:before{content:""}.ph.ph-brackets-round:before{content:""}.ph.ph-brackets-square:before{content:""}.ph.ph-brain:before{content:""}.ph.ph-brandy:before{content:""}.ph.ph-bread:before{content:""}.ph.ph-bridge:before{content:""}.ph.ph-briefcase:before{content:""}.ph.ph-briefcase-metal:before{content:""}.ph.ph-broadcast:before{content:""}.ph.ph-broom:before{content:""}.ph.ph-browser:before{content:""}.ph.ph-browsers:before{content:""}.ph.ph-bug:before{content:""}.ph.ph-bug-beetle:before{content:""}.ph.ph-bug-droid:before{content:""}.ph.ph-building:before{content:""}.ph.ph-building-apartment:before{content:""}.ph.ph-building-office:before{content:""}.ph.ph-buildings:before{content:""}.ph.ph-bulldozer:before{content:""}.ph.ph-bus:before{content:""}.ph.ph-butterfly:before{content:""}.ph.ph-cable-car:before{content:""}.ph.ph-cactus:before{content:""}.ph.ph-cake:before{content:""}.ph.ph-calculator:before{content:""}.ph.ph-calendar:before{content:""}.ph.ph-calendar-blank:before{content:""}.ph.ph-calendar-check:before{content:""}.ph.ph-calendar-dot:before{content:""}.ph.ph-calendar-dots:before{content:""}.ph.ph-calendar-heart:before{content:""}.ph.ph-calendar-minus:before{content:""}.ph.ph-calendar-plus:before{content:""}.ph.ph-calendar-slash:before{content:""}.ph.ph-calendar-star:before{content:""}.ph.ph-calendar-x:before{content:""}.ph.ph-call-bell:before{content:""}.ph.ph-camera:before{content:""}.ph.ph-camera-plus:before{content:""}.ph.ph-camera-rotate:before{content:""}.ph.ph-camera-slash:before{content:""}.ph.ph-campfire:before{content:""}.ph.ph-car:before{content:""}.ph.ph-car-battery:before{content:""}.ph.ph-car-profile:before{content:""}.ph.ph-car-simple:before{content:""}.ph.ph-cardholder:before{content:""}.ph.ph-cards:before{content:""}.ph.ph-cards-three:before{content:""}.ph.ph-caret-circle-double-down:before{content:""}.ph.ph-caret-circle-double-left:before{content:""}.ph.ph-caret-circle-double-right:before{content:""}.ph.ph-caret-circle-double-up:before{content:""}.ph.ph-caret-circle-down:before{content:""}.ph.ph-caret-circle-left:before{content:""}.ph.ph-caret-circle-right:before{content:""}.ph.ph-caret-circle-up:before{content:""}.ph.ph-caret-circle-up-down:before{content:""}.ph.ph-caret-double-down:before{content:""}.ph.ph-caret-double-left:before{content:""}.ph.ph-caret-double-right:before{content:""}.ph.ph-caret-double-up:before{content:""}.ph.ph-caret-down:before{content:""}.ph.ph-caret-left:before{content:""}.ph.ph-caret-line-down:before{content:""}.ph.ph-caret-line-left:before{content:""}.ph.ph-caret-line-right:before{content:""}.ph.ph-caret-line-up:before{content:""}.ph.ph-caret-right:before{content:""}.ph.ph-caret-up:before{content:""}.ph.ph-caret-up-down:before{content:""}.ph.ph-carrot:before{content:""}.ph.ph-cash-register:before{content:""}.ph.ph-cassette-tape:before{content:""}.ph.ph-castle-turret:before{content:""}.ph.ph-cat:before{content:""}.ph.ph-cell-signal-full:before{content:""}.ph.ph-cell-signal-high:before{content:""}.ph.ph-cell-signal-low:before{content:""}.ph.ph-cell-signal-medium:before{content:""}.ph.ph-cell-signal-none:before{content:""}.ph.ph-cell-signal-slash:before{content:""}.ph.ph-cell-signal-x:before{content:""}.ph.ph-cell-tower:before{content:""}.ph.ph-certificate:before{content:""}.ph.ph-chair:before{content:""}.ph.ph-chalkboard:before{content:""}.ph.ph-chalkboard-simple:before{content:""}.ph.ph-chalkboard-teacher:before{content:""}.ph.ph-champagne:before{content:""}.ph.ph-charging-station:before{content:""}.ph.ph-chart-bar:before{content:""}.ph.ph-chart-bar-horizontal:before{content:""}.ph.ph-chart-donut:before{content:""}.ph.ph-chart-line:before{content:""}.ph.ph-chart-line-down:before{content:""}.ph.ph-chart-line-up:before{content:""}.ph.ph-chart-pie:before{content:""}.ph.ph-chart-pie-slice:before{content:""}.ph.ph-chart-polar:before{content:""}.ph.ph-chart-scatter:before{content:""}.ph.ph-chat:before{content:""}.ph.ph-chat-centered:before{content:""}.ph.ph-chat-centered-dots:before{content:""}.ph.ph-chat-centered-slash:before{content:""}.ph.ph-chat-centered-text:before{content:""}.ph.ph-chat-circle:before{content:""}.ph.ph-chat-circle-dots:before{content:""}.ph.ph-chat-circle-slash:before{content:""}.ph.ph-chat-circle-text:before{content:""}.ph.ph-chat-dots:before{content:""}.ph.ph-chat-slash:before{content:""}.ph.ph-chat-teardrop:before{content:""}.ph.ph-chat-teardrop-dots:before{content:""}.ph.ph-chat-teardrop-slash:before{content:""}.ph.ph-chat-teardrop-text:before{content:""}.ph.ph-chat-text:before{content:""}.ph.ph-chats:before{content:""}.ph.ph-chats-circle:before{content:""}.ph.ph-chats-teardrop:before{content:""}.ph.ph-check:before{content:""}.ph.ph-check-circle:before{content:""}.ph.ph-check-fat:before{content:""}.ph.ph-check-square:before{content:""}.ph.ph-check-square-offset:before{content:""}.ph.ph-checkerboard:before{content:""}.ph.ph-checks:before{content:""}.ph.ph-cheers:before{content:""}.ph.ph-cheese:before{content:""}.ph.ph-chef-hat:before{content:""}.ph.ph-cherries:before{content:""}.ph.ph-church:before{content:""}.ph.ph-cigarette:before{content:""}.ph.ph-cigarette-slash:before{content:""}.ph.ph-circle:before{content:""}.ph.ph-circle-dashed:before{content:""}.ph.ph-circle-half:before{content:""}.ph.ph-circle-half-tilt:before{content:""}.ph.ph-circle-notch:before{content:""}.ph.ph-circles-four:before{content:""}.ph.ph-circles-three:before{content:""}.ph.ph-circles-three-plus:before{content:""}.ph.ph-circuitry:before{content:""}.ph.ph-city:before{content:""}.ph.ph-clipboard:before{content:""}.ph.ph-clipboard-text:before{content:""}.ph.ph-clock:before{content:""}.ph.ph-clock-afternoon:before{content:""}.ph.ph-clock-clockwise:before{content:""}.ph.ph-clock-countdown:before{content:""}.ph.ph-clock-counter-clockwise:before{content:""}.ph.ph-clock-user:before{content:""}.ph.ph-closed-captioning:before{content:""}.ph.ph-cloud:before{content:""}.ph.ph-cloud-arrow-down:before{content:""}.ph.ph-cloud-arrow-up:before{content:""}.ph.ph-cloud-check:before{content:""}.ph.ph-cloud-fog:before{content:""}.ph.ph-cloud-lightning:before{content:""}.ph.ph-cloud-moon:before{content:""}.ph.ph-cloud-rain:before{content:""}.ph.ph-cloud-slash:before{content:""}.ph.ph-cloud-snow:before{content:""}.ph.ph-cloud-sun:before{content:""}.ph.ph-cloud-warning:before{content:""}.ph.ph-cloud-x:before{content:""}.ph.ph-clover:before{content:""}.ph.ph-club:before{content:""}.ph.ph-coat-hanger:before{content:""}.ph.ph-coda-logo:before{content:""}.ph.ph-code:before{content:""}.ph.ph-code-block:before{content:""}.ph.ph-code-simple:before{content:""}.ph.ph-codepen-logo:before{content:""}.ph.ph-codesandbox-logo:before{content:""}.ph.ph-coffee:before{content:""}.ph.ph-coffee-bean:before{content:""}.ph.ph-coin:before{content:""}.ph.ph-coin-vertical:before{content:""}.ph.ph-coins:before{content:""}.ph.ph-columns:before{content:""}.ph.ph-columns-plus-left:before{content:""}.ph.ph-columns-plus-right:before{content:""}.ph.ph-command:before{content:""}.ph.ph-compass:before{content:""}.ph.ph-compass-rose:before{content:""}.ph.ph-compass-tool:before{content:""}.ph.ph-computer-tower:before{content:""}.ph.ph-confetti:before{content:""}.ph.ph-contactless-payment:before{content:""}.ph.ph-control:before{content:""}.ph.ph-cookie:before{content:""}.ph.ph-cooking-pot:before{content:""}.ph.ph-copy:before{content:""}.ph.ph-copy-simple:before{content:""}.ph.ph-copyleft:before{content:""}.ph.ph-copyright:before{content:""}.ph.ph-corners-in:before{content:""}.ph.ph-corners-out:before{content:""}.ph.ph-couch:before{content:""}.ph.ph-court-basketball:before{content:""}.ph.ph-cow:before{content:""}.ph.ph-cowboy-hat:before{content:""}.ph.ph-cpu:before{content:""}.ph.ph-crane:before{content:""}.ph.ph-crane-tower:before{content:""}.ph.ph-credit-card:before{content:""}.ph.ph-cricket:before{content:""}.ph.ph-crop:before{content:""}.ph.ph-cross:before{content:""}.ph.ph-crosshair:before{content:""}.ph.ph-crosshair-simple:before{content:""}.ph.ph-crown:before{content:""}.ph.ph-crown-cross:before{content:""}.ph.ph-crown-simple:before{content:""}.ph.ph-cube:before{content:""}.ph.ph-cube-focus:before{content:""}.ph.ph-cube-transparent:before{content:""}.ph.ph-currency-btc:before{content:""}.ph.ph-currency-circle-dollar:before{content:""}.ph.ph-currency-cny:before{content:""}.ph.ph-currency-dollar:before{content:""}.ph.ph-currency-dollar-simple:before{content:""}.ph.ph-currency-eth:before{content:""}.ph.ph-currency-eur:before{content:""}.ph.ph-currency-gbp:before{content:""}.ph.ph-currency-inr:before{content:""}.ph.ph-currency-jpy:before{content:""}.ph.ph-currency-krw:before{content:""}.ph.ph-currency-kzt:before{content:""}.ph.ph-currency-ngn:before{content:""}.ph.ph-currency-rub:before{content:""}.ph.ph-cursor:before{content:""}.ph.ph-cursor-click:before{content:""}.ph.ph-cursor-text:before{content:""}.ph.ph-cylinder:before{content:""}.ph.ph-database:before{content:""}.ph.ph-desk:before{content:""}.ph.ph-desktop:before{content:""}.ph.ph-desktop-tower:before{content:""}.ph.ph-detective:before{content:""}.ph.ph-dev-to-logo:before{content:""}.ph.ph-device-mobile:before{content:""}.ph.ph-device-mobile-camera:before{content:""}.ph.ph-device-mobile-slash:before{content:""}.ph.ph-device-mobile-speaker:before{content:""}.ph.ph-device-rotate:before{content:""}.ph.ph-device-tablet:before{content:""}.ph.ph-device-tablet-camera:before{content:""}.ph.ph-device-tablet-speaker:before{content:""}.ph.ph-devices:before{content:""}.ph.ph-diamond:before{content:""}.ph.ph-diamonds-four:before{content:""}.ph.ph-dice-five:before{content:""}.ph.ph-dice-four:before{content:""}.ph.ph-dice-one:before{content:""}.ph.ph-dice-six:before{content:""}.ph.ph-dice-three:before{content:""}.ph.ph-dice-two:before{content:""}.ph.ph-disc:before{content:""}.ph.ph-disco-ball:before{content:""}.ph.ph-discord-logo:before{content:""}.ph.ph-divide:before{content:""}.ph.ph-dna:before{content:""}.ph.ph-dog:before{content:""}.ph.ph-door:before{content:""}.ph.ph-door-open:before{content:""}.ph.ph-dot:before{content:""}.ph.ph-dot-outline:before{content:""}.ph.ph-dots-nine:before{content:""}.ph.ph-dots-six:before{content:""}.ph.ph-dots-six-vertical:before{content:""}.ph.ph-dots-three:before{content:""}.ph.ph-dots-three-circle:before{content:""}.ph.ph-dots-three-circle-vertical:before{content:""}.ph.ph-dots-three-outline:before{content:""}.ph.ph-dots-three-outline-vertical:before{content:""}.ph.ph-dots-three-vertical:before{content:""}.ph.ph-download:before{content:""}.ph.ph-download-simple:before{content:""}.ph.ph-dress:before{content:""}.ph.ph-dresser:before{content:""}.ph.ph-dribbble-logo:before{content:""}.ph.ph-drone:before{content:""}.ph.ph-drop:before{content:""}.ph.ph-drop-half:before{content:""}.ph.ph-drop-half-bottom:before{content:""}.ph.ph-drop-simple:before{content:""}.ph.ph-drop-slash:before{content:""}.ph.ph-dropbox-logo:before{content:""}.ph.ph-ear:before{content:""}.ph.ph-ear-slash:before{content:""}.ph.ph-egg:before{content:""}.ph.ph-egg-crack:before{content:""}.ph.ph-eject:before{content:""}.ph.ph-eject-simple:before{content:""}.ph.ph-elevator:before{content:""}.ph.ph-empty:before{content:""}.ph.ph-engine:before{content:""}.ph.ph-envelope:before{content:""}.ph.ph-envelope-open:before{content:""}.ph.ph-envelope-simple:before{content:""}.ph.ph-envelope-simple-open:before{content:""}.ph.ph-equalizer:before{content:""}.ph.ph-equals:before{content:""}.ph.ph-eraser:before{content:""}.ph.ph-escalator-down:before{content:""}.ph.ph-escalator-up:before{content:""}.ph.ph-exam:before{content:""}.ph.ph-exclamation-mark:before{content:""}.ph.ph-exclude:before{content:""}.ph.ph-exclude-square:before{content:""}.ph.ph-export:before{content:""}.ph.ph-eye:before{content:""}.ph.ph-eye-closed:before{content:""}.ph.ph-eye-slash:before{content:""}.ph.ph-eyedropper:before{content:""}.ph.ph-eyedropper-sample:before{content:""}.ph.ph-eyeglasses:before{content:""}.ph.ph-eyes:before{content:""}.ph.ph-face-mask:before{content:""}.ph.ph-facebook-logo:before{content:""}.ph.ph-factory:before{content:""}.ph.ph-faders:before{content:""}.ph.ph-faders-horizontal:before{content:""}.ph.ph-fallout-shelter:before{content:""}.ph.ph-fan:before{content:""}.ph.ph-farm:before{content:""}.ph.ph-fast-forward:before{content:""}.ph.ph-fast-forward-circle:before{content:""}.ph.ph-feather:before{content:""}.ph.ph-fediverse-logo:before{content:""}.ph.ph-figma-logo:before{content:""}.ph.ph-file:before{content:""}.ph.ph-file-archive:before{content:""}.ph.ph-file-arrow-down:before{content:""}.ph.ph-file-arrow-up:before{content:""}.ph.ph-file-audio:before{content:""}.ph.ph-file-c:before{content:""}.ph.ph-file-c-sharp:before{content:""}.ph.ph-file-cloud:before{content:""}.ph.ph-file-code:before{content:""}.ph.ph-file-cpp:before{content:""}.ph.ph-file-css:before{content:""}.ph.ph-file-csv:before{content:""}.ph.ph-file-dashed:before{content:""}.ph.ph-file-dotted:before{content:""}.ph.ph-file-doc:before{content:""}.ph.ph-file-html:before{content:""}.ph.ph-file-image:before{content:""}.ph.ph-file-ini:before{content:""}.ph.ph-file-jpg:before{content:""}.ph.ph-file-js:before{content:""}.ph.ph-file-jsx:before{content:""}.ph.ph-file-lock:before{content:""}.ph.ph-file-magnifying-glass:before{content:""}.ph.ph-file-search:before{content:""}.ph.ph-file-md:before{content:""}.ph.ph-file-minus:before{content:""}.ph.ph-file-pdf:before{content:""}.ph.ph-file-plus:before{content:""}.ph.ph-file-png:before{content:""}.ph.ph-file-ppt:before{content:""}.ph.ph-file-py:before{content:""}.ph.ph-file-rs:before{content:""}.ph.ph-file-sql:before{content:""}.ph.ph-file-svg:before{content:""}.ph.ph-file-text:before{content:""}.ph.ph-file-ts:before{content:""}.ph.ph-file-tsx:before{content:""}.ph.ph-file-txt:before{content:""}.ph.ph-file-video:before{content:""}.ph.ph-file-vue:before{content:""}.ph.ph-file-x:before{content:""}.ph.ph-file-xls:before{content:""}.ph.ph-file-zip:before{content:""}.ph.ph-files:before{content:""}.ph.ph-film-reel:before{content:""}.ph.ph-film-script:before{content:""}.ph.ph-film-slate:before{content:""}.ph.ph-film-strip:before{content:""}.ph.ph-fingerprint:before{content:""}.ph.ph-fingerprint-simple:before{content:""}.ph.ph-finn-the-human:before{content:""}.ph.ph-fire:before{content:""}.ph.ph-fire-extinguisher:before{content:""}.ph.ph-fire-simple:before{content:""}.ph.ph-fire-truck:before{content:""}.ph.ph-first-aid:before{content:""}.ph.ph-first-aid-kit:before{content:""}.ph.ph-fish:before{content:""}.ph.ph-fish-simple:before{content:""}.ph.ph-flag:before{content:""}.ph.ph-flag-banner:before{content:""}.ph.ph-flag-banner-fold:before{content:""}.ph.ph-flag-checkered:before{content:""}.ph.ph-flag-pennant:before{content:""}.ph.ph-flame:before{content:""}.ph.ph-flashlight:before{content:""}.ph.ph-flask:before{content:""}.ph.ph-flip-horizontal:before{content:""}.ph.ph-flip-vertical:before{content:""}.ph.ph-floppy-disk:before{content:""}.ph.ph-floppy-disk-back:before{content:""}.ph.ph-flow-arrow:before{content:""}.ph.ph-flower:before{content:""}.ph.ph-flower-lotus:before{content:""}.ph.ph-flower-tulip:before{content:""}.ph.ph-flying-saucer:before{content:""}.ph.ph-folder:before{content:""}.ph.ph-folder-notch:before{content:""}.ph.ph-folder-dashed:before{content:""}.ph.ph-folder-dotted:before{content:""}.ph.ph-folder-lock:before{content:""}.ph.ph-folder-minus:before{content:""}.ph.ph-folder-notch-minus:before{content:""}.ph.ph-folder-open:before{content:""}.ph.ph-folder-notch-open:before{content:""}.ph.ph-folder-plus:before{content:""}.ph.ph-folder-notch-plus:before{content:""}.ph.ph-folder-simple:before{content:""}.ph.ph-folder-simple-dashed:before{content:""}.ph.ph-folder-simple-dotted:before{content:""}.ph.ph-folder-simple-lock:before{content:""}.ph.ph-folder-simple-minus:before{content:""}.ph.ph-folder-simple-plus:before{content:""}.ph.ph-folder-simple-star:before{content:""}.ph.ph-folder-simple-user:before{content:""}.ph.ph-folder-star:before{content:""}.ph.ph-folder-user:before{content:""}.ph.ph-folders:before{content:""}.ph.ph-football:before{content:""}.ph.ph-football-helmet:before{content:""}.ph.ph-footprints:before{content:""}.ph.ph-fork-knife:before{content:""}.ph.ph-four-k:before{content:""}.ph.ph-frame-corners:before{content:""}.ph.ph-framer-logo:before{content:""}.ph.ph-function:before{content:""}.ph.ph-funnel:before{content:""}.ph.ph-funnel-simple:before{content:""}.ph.ph-funnel-simple-x:before{content:""}.ph.ph-funnel-x:before{content:""}.ph.ph-game-controller:before{content:""}.ph.ph-garage:before{content:""}.ph.ph-gas-can:before{content:""}.ph.ph-gas-pump:before{content:""}.ph.ph-gauge:before{content:""}.ph.ph-gavel:before{content:""}.ph.ph-gear:before{content:""}.ph.ph-gear-fine:before{content:""}.ph.ph-gear-six:before{content:""}.ph.ph-gender-female:before{content:""}.ph.ph-gender-intersex:before{content:""}.ph.ph-gender-male:before{content:""}.ph.ph-gender-neuter:before{content:""}.ph.ph-gender-nonbinary:before{content:""}.ph.ph-gender-transgender:before{content:""}.ph.ph-ghost:before{content:""}.ph.ph-gif:before{content:""}.ph.ph-gift:before{content:""}.ph.ph-git-branch:before{content:""}.ph.ph-git-commit:before{content:""}.ph.ph-git-diff:before{content:""}.ph.ph-git-fork:before{content:""}.ph.ph-git-merge:before{content:""}.ph.ph-git-pull-request:before{content:""}.ph.ph-github-logo:before{content:""}.ph.ph-gitlab-logo:before{content:""}.ph.ph-gitlab-logo-simple:before{content:""}.ph.ph-globe:before{content:""}.ph.ph-globe-hemisphere-east:before{content:""}.ph.ph-globe-hemisphere-west:before{content:""}.ph.ph-globe-simple:before{content:""}.ph.ph-globe-simple-x:before{content:""}.ph.ph-globe-stand:before{content:""}.ph.ph-globe-x:before{content:""}.ph.ph-goggles:before{content:""}.ph.ph-golf:before{content:""}.ph.ph-goodreads-logo:before{content:""}.ph.ph-google-cardboard-logo:before{content:""}.ph.ph-google-chrome-logo:before{content:""}.ph.ph-google-drive-logo:before{content:""}.ph.ph-google-logo:before{content:""}.ph.ph-google-photos-logo:before{content:""}.ph.ph-google-play-logo:before{content:""}.ph.ph-google-podcasts-logo:before{content:""}.ph.ph-gps:before{content:""}.ph.ph-gps-fix:before{content:""}.ph.ph-gps-slash:before{content:""}.ph.ph-gradient:before{content:""}.ph.ph-graduation-cap:before{content:""}.ph.ph-grains:before{content:""}.ph.ph-grains-slash:before{content:""}.ph.ph-graph:before{content:""}.ph.ph-graphics-card:before{content:""}.ph.ph-greater-than:before{content:""}.ph.ph-greater-than-or-equal:before{content:""}.ph.ph-grid-four:before{content:""}.ph.ph-grid-nine:before{content:""}.ph.ph-guitar:before{content:""}.ph.ph-hair-dryer:before{content:""}.ph.ph-hamburger:before{content:""}.ph.ph-hammer:before{content:""}.ph.ph-hand:before{content:""}.ph.ph-hand-arrow-down:before{content:""}.ph.ph-hand-arrow-up:before{content:""}.ph.ph-hand-coins:before{content:""}.ph.ph-hand-deposit:before{content:""}.ph.ph-hand-eye:before{content:""}.ph.ph-hand-fist:before{content:""}.ph.ph-hand-grabbing:before{content:""}.ph.ph-hand-heart:before{content:""}.ph.ph-hand-palm:before{content:""}.ph.ph-hand-peace:before{content:""}.ph.ph-hand-pointing:before{content:""}.ph.ph-hand-soap:before{content:""}.ph.ph-hand-swipe-left:before{content:""}.ph.ph-hand-swipe-right:before{content:""}.ph.ph-hand-tap:before{content:""}.ph.ph-hand-waving:before{content:""}.ph.ph-hand-withdraw:before{content:""}.ph.ph-handbag:before{content:""}.ph.ph-handbag-simple:before{content:""}.ph.ph-hands-clapping:before{content:""}.ph.ph-hands-praying:before{content:""}.ph.ph-handshake:before{content:""}.ph.ph-hard-drive:before{content:""}.ph.ph-hard-drives:before{content:""}.ph.ph-hard-hat:before{content:""}.ph.ph-hash:before{content:""}.ph.ph-hash-straight:before{content:""}.ph.ph-head-circuit:before{content:""}.ph.ph-headlights:before{content:""}.ph.ph-headphones:before{content:""}.ph.ph-headset:before{content:""}.ph.ph-heart:before{content:""}.ph.ph-heart-break:before{content:""}.ph.ph-heart-half:before{content:""}.ph.ph-heart-straight:before{content:""}.ph.ph-heart-straight-break:before{content:""}.ph.ph-heartbeat:before{content:""}.ph.ph-hexagon:before{content:""}.ph.ph-high-definition:before{content:""}.ph.ph-high-heel:before{content:""}.ph.ph-highlighter:before{content:""}.ph.ph-highlighter-circle:before{content:""}.ph.ph-hockey:before{content:""}.ph.ph-hoodie:before{content:""}.ph.ph-horse:before{content:""}.ph.ph-hospital:before{content:""}.ph.ph-hourglass:before{content:""}.ph.ph-hourglass-high:before{content:""}.ph.ph-hourglass-low:before{content:""}.ph.ph-hourglass-medium:before{content:""}.ph.ph-hourglass-simple:before{content:""}.ph.ph-hourglass-simple-high:before{content:""}.ph.ph-hourglass-simple-low:before{content:""}.ph.ph-hourglass-simple-medium:before{content:""}.ph.ph-house:before{content:""}.ph.ph-house-line:before{content:""}.ph.ph-house-simple:before{content:""}.ph.ph-hurricane:before{content:""}.ph.ph-ice-cream:before{content:""}.ph.ph-identification-badge:before{content:""}.ph.ph-identification-card:before{content:""}.ph.ph-image:before{content:""}.ph.ph-image-broken:before{content:""}.ph.ph-image-square:before{content:""}.ph.ph-images:before{content:""}.ph.ph-images-square:before{content:""}.ph.ph-infinity:before{content:""}.ph.ph-lemniscate:before{content:""}.ph.ph-info:before{content:""}.ph.ph-instagram-logo:before{content:""}.ph.ph-intersect:before{content:""}.ph.ph-intersect-square:before{content:""}.ph.ph-intersect-three:before{content:""}.ph.ph-intersection:before{content:""}.ph.ph-invoice:before{content:""}.ph.ph-island:before{content:""}.ph.ph-jar:before{content:""}.ph.ph-jar-label:before{content:""}.ph.ph-jeep:before{content:""}.ph.ph-joystick:before{content:""}.ph.ph-kanban:before{content:""}.ph.ph-key:before{content:""}.ph.ph-key-return:before{content:""}.ph.ph-keyboard:before{content:""}.ph.ph-keyhole:before{content:""}.ph.ph-knife:before{content:""}.ph.ph-ladder:before{content:""}.ph.ph-ladder-simple:before{content:""}.ph.ph-lamp:before{content:""}.ph.ph-lamp-pendant:before{content:""}.ph.ph-laptop:before{content:""}.ph.ph-lasso:before{content:""}.ph.ph-lastfm-logo:before{content:""}.ph.ph-layout:before{content:""}.ph.ph-leaf:before{content:""}.ph.ph-lectern:before{content:""}.ph.ph-lego:before{content:""}.ph.ph-lego-smiley:before{content:""}.ph.ph-less-than:before{content:""}.ph.ph-less-than-or-equal:before{content:""}.ph.ph-letter-circle-h:before{content:""}.ph.ph-letter-circle-p:before{content:""}.ph.ph-letter-circle-v:before{content:""}.ph.ph-lifebuoy:before{content:""}.ph.ph-lightbulb:before{content:""}.ph.ph-lightbulb-filament:before{content:""}.ph.ph-lighthouse:before{content:""}.ph.ph-lightning:before{content:""}.ph.ph-lightning-a:before{content:""}.ph.ph-lightning-slash:before{content:""}.ph.ph-line-segment:before{content:""}.ph.ph-line-segments:before{content:""}.ph.ph-line-vertical:before{content:""}.ph.ph-link:before{content:""}.ph.ph-link-break:before{content:""}.ph.ph-link-simple:before{content:""}.ph.ph-link-simple-break:before{content:""}.ph.ph-link-simple-horizontal:before{content:""}.ph.ph-link-simple-horizontal-break:before{content:""}.ph.ph-linkedin-logo:before{content:""}.ph.ph-linktree-logo:before{content:""}.ph.ph-linux-logo:before{content:""}.ph.ph-list:before{content:""}.ph.ph-list-bullets:before{content:""}.ph.ph-list-checks:before{content:""}.ph.ph-list-dashes:before{content:""}.ph.ph-list-heart:before{content:""}.ph.ph-list-magnifying-glass:before{content:""}.ph.ph-list-numbers:before{content:""}.ph.ph-list-plus:before{content:""}.ph.ph-list-star:before{content:""}.ph.ph-lock:before{content:""}.ph.ph-lock-key:before{content:""}.ph.ph-lock-key-open:before{content:""}.ph.ph-lock-laminated:before{content:""}.ph.ph-lock-laminated-open:before{content:""}.ph.ph-lock-open:before{content:""}.ph.ph-lock-simple:before{content:""}.ph.ph-lock-simple-open:before{content:""}.ph.ph-lockers:before{content:""}.ph.ph-log:before{content:""}.ph.ph-magic-wand:before{content:""}.ph.ph-magnet:before{content:""}.ph.ph-magnet-straight:before{content:""}.ph.ph-magnifying-glass:before{content:""}.ph.ph-magnifying-glass-minus:before{content:""}.ph.ph-magnifying-glass-plus:before{content:""}.ph.ph-mailbox:before{content:""}.ph.ph-map-pin:before{content:""}.ph.ph-map-pin-area:before{content:""}.ph.ph-map-pin-line:before{content:""}.ph.ph-map-pin-plus:before{content:""}.ph.ph-map-pin-simple:before{content:""}.ph.ph-map-pin-simple-area:before{content:""}.ph.ph-map-pin-simple-line:before{content:""}.ph.ph-map-trifold:before{content:""}.ph.ph-markdown-logo:before{content:""}.ph.ph-marker-circle:before{content:""}.ph.ph-martini:before{content:""}.ph.ph-mask-happy:before{content:""}.ph.ph-mask-sad:before{content:""}.ph.ph-mastodon-logo:before{content:""}.ph.ph-math-operations:before{content:""}.ph.ph-matrix-logo:before{content:""}.ph.ph-medal:before{content:""}.ph.ph-medal-military:before{content:""}.ph.ph-medium-logo:before{content:""}.ph.ph-megaphone:before{content:""}.ph.ph-megaphone-simple:before{content:""}.ph.ph-member-of:before{content:""}.ph.ph-memory:before{content:""}.ph.ph-messenger-logo:before{content:""}.ph.ph-meta-logo:before{content:""}.ph.ph-meteor:before{content:""}.ph.ph-metronome:before{content:""}.ph.ph-microphone:before{content:""}.ph.ph-microphone-slash:before{content:""}.ph.ph-microphone-stage:before{content:""}.ph.ph-microscope:before{content:""}.ph.ph-microsoft-excel-logo:before{content:""}.ph.ph-microsoft-outlook-logo:before{content:""}.ph.ph-microsoft-powerpoint-logo:before{content:""}.ph.ph-microsoft-teams-logo:before{content:""}.ph.ph-microsoft-word-logo:before{content:""}.ph.ph-minus:before{content:""}.ph.ph-minus-circle:before{content:""}.ph.ph-minus-square:before{content:""}.ph.ph-money:before{content:""}.ph.ph-money-wavy:before{content:""}.ph.ph-monitor:before{content:""}.ph.ph-monitor-arrow-up:before{content:""}.ph.ph-monitor-play:before{content:""}.ph.ph-moon:before{content:""}.ph.ph-moon-stars:before{content:""}.ph.ph-moped:before{content:""}.ph.ph-moped-front:before{content:""}.ph.ph-mosque:before{content:""}.ph.ph-motorcycle:before{content:""}.ph.ph-mountains:before{content:""}.ph.ph-mouse:before{content:""}.ph.ph-mouse-left-click:before{content:""}.ph.ph-mouse-middle-click:before{content:""}.ph.ph-mouse-right-click:before{content:""}.ph.ph-mouse-scroll:before{content:""}.ph.ph-mouse-simple:before{content:""}.ph.ph-music-note:before{content:""}.ph.ph-music-note-simple:before{content:""}.ph.ph-music-notes:before{content:""}.ph.ph-music-notes-minus:before{content:""}.ph.ph-music-notes-plus:before{content:""}.ph.ph-music-notes-simple:before{content:""}.ph.ph-navigation-arrow:before{content:""}.ph.ph-needle:before{content:""}.ph.ph-network:before{content:""}.ph.ph-network-slash:before{content:""}.ph.ph-network-x:before{content:""}.ph.ph-newspaper:before{content:""}.ph.ph-newspaper-clipping:before{content:""}.ph.ph-not-equals:before{content:""}.ph.ph-not-member-of:before{content:""}.ph.ph-not-subset-of:before{content:""}.ph.ph-not-superset-of:before{content:""}.ph.ph-notches:before{content:""}.ph.ph-note:before{content:""}.ph.ph-note-blank:before{content:""}.ph.ph-note-pencil:before{content:""}.ph.ph-notebook:before{content:""}.ph.ph-notepad:before{content:""}.ph.ph-notification:before{content:""}.ph.ph-notion-logo:before{content:""}.ph.ph-nuclear-plant:before{content:""}.ph.ph-number-circle-eight:before{content:""}.ph.ph-number-circle-five:before{content:""}.ph.ph-number-circle-four:before{content:""}.ph.ph-number-circle-nine:before{content:""}.ph.ph-number-circle-one:before{content:""}.ph.ph-number-circle-seven:before{content:""}.ph.ph-number-circle-six:before{content:""}.ph.ph-number-circle-three:before{content:""}.ph.ph-number-circle-two:before{content:""}.ph.ph-number-circle-zero:before{content:""}.ph.ph-number-eight:before{content:""}.ph.ph-number-five:before{content:""}.ph.ph-number-four:before{content:""}.ph.ph-number-nine:before{content:""}.ph.ph-number-one:before{content:""}.ph.ph-number-seven:before{content:""}.ph.ph-number-six:before{content:""}.ph.ph-number-square-eight:before{content:""}.ph.ph-number-square-five:before{content:""}.ph.ph-number-square-four:before{content:""}.ph.ph-number-square-nine:before{content:""}.ph.ph-number-square-one:before{content:""}.ph.ph-number-square-seven:before{content:""}.ph.ph-number-square-six:before{content:""}.ph.ph-number-square-three:before{content:""}.ph.ph-number-square-two:before{content:""}.ph.ph-number-square-zero:before{content:""}.ph.ph-number-three:before{content:""}.ph.ph-number-two:before{content:""}.ph.ph-number-zero:before{content:""}.ph.ph-numpad:before{content:""}.ph.ph-nut:before{content:""}.ph.ph-ny-times-logo:before{content:""}.ph.ph-octagon:before{content:""}.ph.ph-office-chair:before{content:""}.ph.ph-onigiri:before{content:""}.ph.ph-open-ai-logo:before{content:""}.ph.ph-option:before{content:""}.ph.ph-orange:before{content:""}.ph.ph-orange-slice:before{content:""}.ph.ph-oven:before{content:""}.ph.ph-package:before{content:""}.ph.ph-paint-brush:before{content:""}.ph.ph-paint-brush-broad:before{content:""}.ph.ph-paint-brush-household:before{content:""}.ph.ph-paint-bucket:before{content:""}.ph.ph-paint-roller:before{content:""}.ph.ph-palette:before{content:""}.ph.ph-panorama:before{content:""}.ph.ph-pants:before{content:""}.ph.ph-paper-plane:before{content:""}.ph.ph-paper-plane-right:before{content:""}.ph.ph-paper-plane-tilt:before{content:""}.ph.ph-paperclip:before{content:""}.ph.ph-paperclip-horizontal:before{content:""}.ph.ph-parachute:before{content:""}.ph.ph-paragraph:before{content:""}.ph.ph-parallelogram:before{content:""}.ph.ph-park:before{content:""}.ph.ph-password:before{content:""}.ph.ph-path:before{content:""}.ph.ph-patreon-logo:before{content:""}.ph.ph-pause:before{content:""}.ph.ph-pause-circle:before{content:""}.ph.ph-paw-print:before{content:""}.ph.ph-paypal-logo:before{content:""}.ph.ph-peace:before{content:""}.ph.ph-pen:before{content:""}.ph.ph-pen-nib:before{content:""}.ph.ph-pen-nib-straight:before{content:""}.ph.ph-pencil:before{content:""}.ph.ph-pencil-circle:before{content:""}.ph.ph-pencil-line:before{content:""}.ph.ph-pencil-ruler:before{content:""}.ph.ph-pencil-simple:before{content:""}.ph.ph-pencil-simple-line:before{content:""}.ph.ph-pencil-simple-slash:before{content:""}.ph.ph-pencil-slash:before{content:""}.ph.ph-pentagon:before{content:""}.ph.ph-pentagram:before{content:""}.ph.ph-pepper:before{content:""}.ph.ph-percent:before{content:""}.ph.ph-person:before{content:""}.ph.ph-person-arms-spread:before{content:""}.ph.ph-person-simple:before{content:""}.ph.ph-person-simple-bike:before{content:""}.ph.ph-person-simple-circle:before{content:""}.ph.ph-person-simple-hike:before{content:""}.ph.ph-person-simple-run:before{content:""}.ph.ph-person-simple-ski:before{content:""}.ph.ph-person-simple-snowboard:before{content:""}.ph.ph-person-simple-swim:before{content:""}.ph.ph-person-simple-tai-chi:before{content:""}.ph.ph-person-simple-throw:before{content:""}.ph.ph-person-simple-walk:before{content:""}.ph.ph-perspective:before{content:""}.ph.ph-phone:before{content:""}.ph.ph-phone-call:before{content:""}.ph.ph-phone-disconnect:before{content:""}.ph.ph-phone-incoming:before{content:""}.ph.ph-phone-list:before{content:""}.ph.ph-phone-outgoing:before{content:""}.ph.ph-phone-pause:before{content:""}.ph.ph-phone-plus:before{content:""}.ph.ph-phone-slash:before{content:""}.ph.ph-phone-transfer:before{content:""}.ph.ph-phone-x:before{content:""}.ph.ph-phosphor-logo:before{content:""}.ph.ph-pi:before{content:""}.ph.ph-piano-keys:before{content:""}.ph.ph-picnic-table:before{content:""}.ph.ph-picture-in-picture:before{content:""}.ph.ph-piggy-bank:before{content:""}.ph.ph-pill:before{content:""}.ph.ph-ping-pong:before{content:""}.ph.ph-pint-glass:before{content:""}.ph.ph-pinterest-logo:before{content:""}.ph.ph-pinwheel:before{content:""}.ph.ph-pipe:before{content:""}.ph.ph-pipe-wrench:before{content:""}.ph.ph-pix-logo:before{content:""}.ph.ph-pizza:before{content:""}.ph.ph-placeholder:before{content:""}.ph.ph-planet:before{content:""}.ph.ph-plant:before{content:""}.ph.ph-play:before{content:""}.ph.ph-play-circle:before{content:""}.ph.ph-play-pause:before{content:""}.ph.ph-playlist:before{content:""}.ph.ph-plug:before{content:""}.ph.ph-plug-charging:before{content:""}.ph.ph-plugs:before{content:""}.ph.ph-plugs-connected:before{content:""}.ph.ph-plus:before{content:""}.ph.ph-plus-circle:before{content:""}.ph.ph-plus-minus:before{content:""}.ph.ph-plus-square:before{content:""}.ph.ph-poker-chip:before{content:""}.ph.ph-police-car:before{content:""}.ph.ph-polygon:before{content:""}.ph.ph-popcorn:before{content:""}.ph.ph-popsicle:before{content:""}.ph.ph-potted-plant:before{content:""}.ph.ph-power:before{content:""}.ph.ph-prescription:before{content:""}.ph.ph-presentation:before{content:""}.ph.ph-presentation-chart:before{content:""}.ph.ph-printer:before{content:""}.ph.ph-prohibit:before{content:""}.ph.ph-prohibit-inset:before{content:""}.ph.ph-projector-screen:before{content:""}.ph.ph-projector-screen-chart:before{content:""}.ph.ph-pulse:before{content:""}.ph.ph-activity:before{content:""}.ph.ph-push-pin:before{content:""}.ph.ph-push-pin-simple:before{content:""}.ph.ph-push-pin-simple-slash:before{content:""}.ph.ph-push-pin-slash:before{content:""}.ph.ph-puzzle-piece:before{content:""}.ph.ph-qr-code:before{content:""}.ph.ph-question:before{content:""}.ph.ph-question-mark:before{content:""}.ph.ph-queue:before{content:""}.ph.ph-quotes:before{content:""}.ph.ph-rabbit:before{content:""}.ph.ph-racquet:before{content:""}.ph.ph-radical:before{content:""}.ph.ph-radio:before{content:""}.ph.ph-radio-button:before{content:""}.ph.ph-radioactive:before{content:""}.ph.ph-rainbow:before{content:""}.ph.ph-rainbow-cloud:before{content:""}.ph.ph-ranking:before{content:""}.ph.ph-read-cv-logo:before{content:""}.ph.ph-receipt:before{content:""}.ph.ph-receipt-x:before{content:""}.ph.ph-record:before{content:""}.ph.ph-rectangle:before{content:""}.ph.ph-rectangle-dashed:before{content:""}.ph.ph-recycle:before{content:""}.ph.ph-reddit-logo:before{content:""}.ph.ph-repeat:before{content:""}.ph.ph-repeat-once:before{content:""}.ph.ph-replit-logo:before{content:""}.ph.ph-resize:before{content:""}.ph.ph-rewind:before{content:""}.ph.ph-rewind-circle:before{content:""}.ph.ph-road-horizon:before{content:""}.ph.ph-robot:before{content:""}.ph.ph-rocket:before{content:""}.ph.ph-rocket-launch:before{content:""}.ph.ph-rows:before{content:""}.ph.ph-rows-plus-bottom:before{content:""}.ph.ph-rows-plus-top:before{content:""}.ph.ph-rss:before{content:""}.ph.ph-rss-simple:before{content:""}.ph.ph-rug:before{content:""}.ph.ph-ruler:before{content:""}.ph.ph-sailboat:before{content:""}.ph.ph-scales:before{content:""}.ph.ph-scan:before{content:""}.ph.ph-scan-smiley:before{content:""}.ph.ph-scissors:before{content:""}.ph.ph-scooter:before{content:""}.ph.ph-screencast:before{content:""}.ph.ph-screwdriver:before{content:""}.ph.ph-scribble:before{content:""}.ph.ph-scribble-loop:before{content:""}.ph.ph-scroll:before{content:""}.ph.ph-seal:before{content:""}.ph.ph-circle-wavy:before{content:""}.ph.ph-seal-check:before{content:""}.ph.ph-circle-wavy-check:before{content:""}.ph.ph-seal-percent:before{content:""}.ph.ph-seal-question:before{content:""}.ph.ph-circle-wavy-question:before{content:""}.ph.ph-seal-warning:before{content:""}.ph.ph-circle-wavy-warning:before{content:""}.ph.ph-seat:before{content:""}.ph.ph-seatbelt:before{content:""}.ph.ph-security-camera:before{content:""}.ph.ph-selection:before{content:""}.ph.ph-selection-all:before{content:""}.ph.ph-selection-background:before{content:""}.ph.ph-selection-foreground:before{content:""}.ph.ph-selection-inverse:before{content:""}.ph.ph-selection-plus:before{content:""}.ph.ph-selection-slash:before{content:""}.ph.ph-shapes:before{content:""}.ph.ph-share:before{content:""}.ph.ph-share-fat:before{content:""}.ph.ph-share-network:before{content:""}.ph.ph-shield:before{content:""}.ph.ph-shield-check:before{content:""}.ph.ph-shield-checkered:before{content:""}.ph.ph-shield-chevron:before{content:""}.ph.ph-shield-plus:before{content:""}.ph.ph-shield-slash:before{content:""}.ph.ph-shield-star:before{content:""}.ph.ph-shield-warning:before{content:""}.ph.ph-shipping-container:before{content:""}.ph.ph-shirt-folded:before{content:""}.ph.ph-shooting-star:before{content:""}.ph.ph-shopping-bag:before{content:""}.ph.ph-shopping-bag-open:before{content:""}.ph.ph-shopping-cart:before{content:""}.ph.ph-shopping-cart-simple:before{content:""}.ph.ph-shovel:before{content:""}.ph.ph-shower:before{content:""}.ph.ph-shrimp:before{content:""}.ph.ph-shuffle:before{content:""}.ph.ph-shuffle-angular:before{content:""}.ph.ph-shuffle-simple:before{content:""}.ph.ph-sidebar:before{content:""}.ph.ph-sidebar-simple:before{content:""}.ph.ph-sigma:before{content:""}.ph.ph-sign-in:before{content:""}.ph.ph-sign-out:before{content:""}.ph.ph-signature:before{content:""}.ph.ph-signpost:before{content:""}.ph.ph-sim-card:before{content:""}.ph.ph-siren:before{content:""}.ph.ph-sketch-logo:before{content:""}.ph.ph-skip-back:before{content:""}.ph.ph-skip-back-circle:before{content:""}.ph.ph-skip-forward:before{content:""}.ph.ph-skip-forward-circle:before{content:""}.ph.ph-skull:before{content:""}.ph.ph-skype-logo:before{content:""}.ph.ph-slack-logo:before{content:""}.ph.ph-sliders:before{content:""}.ph.ph-sliders-horizontal:before{content:""}.ph.ph-slideshow:before{content:""}.ph.ph-smiley:before{content:""}.ph.ph-smiley-angry:before{content:""}.ph.ph-smiley-blank:before{content:""}.ph.ph-smiley-meh:before{content:""}.ph.ph-smiley-melting:before{content:""}.ph.ph-smiley-nervous:before{content:""}.ph.ph-smiley-sad:before{content:""}.ph.ph-smiley-sticker:before{content:""}.ph.ph-smiley-wink:before{content:""}.ph.ph-smiley-x-eyes:before{content:""}.ph.ph-snapchat-logo:before{content:""}.ph.ph-sneaker:before{content:""}.ph.ph-sneaker-move:before{content:""}.ph.ph-snowflake:before{content:""}.ph.ph-soccer-ball:before{content:""}.ph.ph-sock:before{content:""}.ph.ph-solar-panel:before{content:""}.ph.ph-solar-roof:before{content:""}.ph.ph-sort-ascending:before{content:""}.ph.ph-sort-descending:before{content:""}.ph.ph-soundcloud-logo:before{content:""}.ph.ph-spade:before{content:""}.ph.ph-sparkle:before{content:""}.ph.ph-speaker-hifi:before{content:""}.ph.ph-speaker-high:before{content:""}.ph.ph-speaker-low:before{content:""}.ph.ph-speaker-none:before{content:""}.ph.ph-speaker-simple-high:before{content:""}.ph.ph-speaker-simple-low:before{content:""}.ph.ph-speaker-simple-none:before{content:""}.ph.ph-speaker-simple-slash:before{content:""}.ph.ph-speaker-simple-x:before{content:""}.ph.ph-speaker-slash:before{content:""}.ph.ph-speaker-x:before{content:""}.ph.ph-speedometer:before{content:""}.ph.ph-sphere:before{content:""}.ph.ph-spinner:before{content:""}.ph.ph-spinner-ball:before{content:""}.ph.ph-spinner-gap:before{content:""}.ph.ph-spiral:before{content:""}.ph.ph-split-horizontal:before{content:""}.ph.ph-split-vertical:before{content:""}.ph.ph-spotify-logo:before{content:""}.ph.ph-spray-bottle:before{content:""}.ph.ph-square:before{content:""}.ph.ph-square-half:before{content:""}.ph.ph-square-half-bottom:before{content:""}.ph.ph-square-logo:before{content:""}.ph.ph-square-split-horizontal:before{content:""}.ph.ph-square-split-vertical:before{content:""}.ph.ph-squares-four:before{content:""}.ph.ph-stack:before{content:""}.ph.ph-stack-minus:before{content:""}.ph.ph-stack-overflow-logo:before{content:""}.ph.ph-stack-plus:before{content:""}.ph.ph-stack-simple:before{content:""}.ph.ph-stairs:before{content:""}.ph.ph-stamp:before{content:""}.ph.ph-standard-definition:before{content:""}.ph.ph-star:before{content:""}.ph.ph-star-and-crescent:before{content:""}.ph.ph-star-four:before{content:""}.ph.ph-star-half:before{content:""}.ph.ph-star-of-david:before{content:""}.ph.ph-steam-logo:before{content:""}.ph.ph-steering-wheel:before{content:""}.ph.ph-steps:before{content:""}.ph.ph-stethoscope:before{content:""}.ph.ph-sticker:before{content:""}.ph.ph-stool:before{content:""}.ph.ph-stop:before{content:""}.ph.ph-stop-circle:before{content:""}.ph.ph-storefront:before{content:""}.ph.ph-strategy:before{content:""}.ph.ph-stripe-logo:before{content:""}.ph.ph-student:before{content:""}.ph.ph-subset-of:before{content:""}.ph.ph-subset-proper-of:before{content:""}.ph.ph-subtitles:before{content:""}.ph.ph-subtitles-slash:before{content:""}.ph.ph-subtract:before{content:""}.ph.ph-subtract-square:before{content:""}.ph.ph-subway:before{content:""}.ph.ph-suitcase:before{content:""}.ph.ph-suitcase-rolling:before{content:""}.ph.ph-suitcase-simple:before{content:""}.ph.ph-sun:before{content:""}.ph.ph-sun-dim:before{content:""}.ph.ph-sun-horizon:before{content:""}.ph.ph-sunglasses:before{content:""}.ph.ph-superset-of:before{content:""}.ph.ph-superset-proper-of:before{content:""}.ph.ph-swap:before{content:""}.ph.ph-swatches:before{content:""}.ph.ph-swimming-pool:before{content:""}.ph.ph-sword:before{content:""}.ph.ph-synagogue:before{content:""}.ph.ph-syringe:before{content:""}.ph.ph-t-shirt:before{content:""}.ph.ph-table:before{content:""}.ph.ph-tabs:before{content:""}.ph.ph-tag:before{content:""}.ph.ph-tag-chevron:before{content:""}.ph.ph-tag-simple:before{content:""}.ph.ph-target:before{content:""}.ph.ph-taxi:before{content:""}.ph.ph-tea-bag:before{content:""}.ph.ph-telegram-logo:before{content:""}.ph.ph-television:before{content:""}.ph.ph-television-simple:before{content:""}.ph.ph-tennis-ball:before{content:""}.ph.ph-tent:before{content:""}.ph.ph-terminal:before{content:""}.ph.ph-terminal-window:before{content:""}.ph.ph-test-tube:before{content:""}.ph.ph-text-a-underline:before{content:""}.ph.ph-text-aa:before{content:""}.ph.ph-text-align-center:before{content:""}.ph.ph-text-align-justify:before{content:""}.ph.ph-text-align-left:before{content:""}.ph.ph-text-align-right:before{content:""}.ph.ph-text-b:before{content:""}.ph.ph-text-bolder:before{content:""}.ph.ph-text-columns:before{content:""}.ph.ph-text-h:before{content:""}.ph.ph-text-h-five:before{content:""}.ph.ph-text-h-four:before{content:""}.ph.ph-text-h-one:before{content:""}.ph.ph-text-h-six:before{content:""}.ph.ph-text-h-three:before{content:""}.ph.ph-text-h-two:before{content:""}.ph.ph-text-indent:before{content:""}.ph.ph-text-italic:before{content:""}.ph.ph-text-outdent:before{content:""}.ph.ph-text-strikethrough:before{content:""}.ph.ph-text-subscript:before{content:""}.ph.ph-text-superscript:before{content:""}.ph.ph-text-t:before{content:""}.ph.ph-text-t-slash:before{content:""}.ph.ph-text-underline:before{content:""}.ph.ph-textbox:before{content:""}.ph.ph-thermometer:before{content:""}.ph.ph-thermometer-cold:before{content:""}.ph.ph-thermometer-hot:before{content:""}.ph.ph-thermometer-simple:before{content:""}.ph.ph-threads-logo:before{content:""}.ph.ph-three-d:before{content:""}.ph.ph-thumbs-down:before{content:""}.ph.ph-thumbs-up:before{content:""}.ph.ph-ticket:before{content:""}.ph.ph-tidal-logo:before{content:""}.ph.ph-tiktok-logo:before{content:""}.ph.ph-tilde:before{content:""}.ph.ph-timer:before{content:""}.ph.ph-tip-jar:before{content:""}.ph.ph-tipi:before{content:""}.ph.ph-tire:before{content:""}.ph.ph-toggle-left:before{content:""}.ph.ph-toggle-right:before{content:""}.ph.ph-toilet:before{content:""}.ph.ph-toilet-paper:before{content:""}.ph.ph-toolbox:before{content:""}.ph.ph-tooth:before{content:""}.ph.ph-tornado:before{content:""}.ph.ph-tote:before{content:""}.ph.ph-tote-simple:before{content:""}.ph.ph-towel:before{content:""}.ph.ph-tractor:before{content:""}.ph.ph-trademark:before{content:""}.ph.ph-trademark-registered:before{content:""}.ph.ph-traffic-cone:before{content:""}.ph.ph-traffic-sign:before{content:""}.ph.ph-traffic-signal:before{content:""}.ph.ph-train:before{content:""}.ph.ph-train-regional:before{content:""}.ph.ph-train-simple:before{content:""}.ph.ph-tram:before{content:""}.ph.ph-translate:before{content:""}.ph.ph-trash:before{content:""}.ph.ph-trash-simple:before{content:""}.ph.ph-tray:before{content:""}.ph.ph-tray-arrow-down:before{content:""}.ph.ph-archive-tray:before{content:""}.ph.ph-tray-arrow-up:before{content:""}.ph.ph-treasure-chest:before{content:""}.ph.ph-tree:before{content:""}.ph.ph-tree-evergreen:before{content:""}.ph.ph-tree-palm:before{content:""}.ph.ph-tree-structure:before{content:""}.ph.ph-tree-view:before{content:""}.ph.ph-trend-down:before{content:""}.ph.ph-trend-up:before{content:""}.ph.ph-triangle:before{content:""}.ph.ph-triangle-dashed:before{content:""}.ph.ph-trolley:before{content:""}.ph.ph-trolley-suitcase:before{content:""}.ph.ph-trophy:before{content:""}.ph.ph-truck:before{content:""}.ph.ph-truck-trailer:before{content:""}.ph.ph-tumblr-logo:before{content:""}.ph.ph-twitch-logo:before{content:""}.ph.ph-twitter-logo:before{content:""}.ph.ph-umbrella:before{content:""}.ph.ph-umbrella-simple:before{content:""}.ph.ph-union:before{content:""}.ph.ph-unite:before{content:""}.ph.ph-unite-square:before{content:""}.ph.ph-upload:before{content:""}.ph.ph-upload-simple:before{content:""}.ph.ph-usb:before{content:""}.ph.ph-user:before{content:""}.ph.ph-user-check:before{content:""}.ph.ph-user-circle:before{content:""}.ph.ph-user-circle-check:before{content:""}.ph.ph-user-circle-dashed:before{content:""}.ph.ph-user-circle-gear:before{content:""}.ph.ph-user-circle-minus:before{content:""}.ph.ph-user-circle-plus:before{content:""}.ph.ph-user-focus:before{content:""}.ph.ph-user-gear:before{content:""}.ph.ph-user-list:before{content:""}.ph.ph-user-minus:before{content:""}.ph.ph-user-plus:before{content:""}.ph.ph-user-rectangle:before{content:""}.ph.ph-user-sound:before{content:""}.ph.ph-user-square:before{content:""}.ph.ph-user-switch:before{content:""}.ph.ph-users:before{content:""}.ph.ph-users-four:before{content:""}.ph.ph-users-three:before{content:""}.ph.ph-van:before{content:""}.ph.ph-vault:before{content:""}.ph.ph-vector-three:before{content:""}.ph.ph-vector-two:before{content:""}.ph.ph-vibrate:before{content:""}.ph.ph-video:before{content:""}.ph.ph-video-camera:before{content:""}.ph.ph-video-camera-slash:before{content:""}.ph.ph-video-conference:before{content:""}.ph.ph-vignette:before{content:""}.ph.ph-vinyl-record:before{content:""}.ph.ph-virtual-reality:before{content:""}.ph.ph-virus:before{content:""}.ph.ph-visor:before{content:""}.ph.ph-voicemail:before{content:""}.ph.ph-volleyball:before{content:""}.ph.ph-wall:before{content:""}.ph.ph-wallet:before{content:""}.ph.ph-warehouse:before{content:""}.ph.ph-warning:before{content:""}.ph.ph-warning-circle:before{content:""}.ph.ph-warning-diamond:before{content:""}.ph.ph-warning-octagon:before{content:""}.ph.ph-washing-machine:before{content:""}.ph.ph-watch:before{content:""}.ph.ph-wave-sawtooth:before{content:""}.ph.ph-wave-sine:before{content:""}.ph.ph-wave-square:before{content:""}.ph.ph-wave-triangle:before{content:""}.ph.ph-waveform:before{content:""}.ph.ph-waveform-slash:before{content:""}.ph.ph-waves:before{content:""}.ph.ph-webcam:before{content:""}.ph.ph-webcam-slash:before{content:""}.ph.ph-webhooks-logo:before{content:""}.ph.ph-wechat-logo:before{content:""}.ph.ph-whatsapp-logo:before{content:""}.ph.ph-wheelchair:before{content:""}.ph.ph-wheelchair-motion:before{content:""}.ph.ph-wifi-high:before{content:""}.ph.ph-wifi-low:before{content:""}.ph.ph-wifi-medium:before{content:""}.ph.ph-wifi-none:before{content:""}.ph.ph-wifi-slash:before{content:""}.ph.ph-wifi-x:before{content:""}.ph.ph-wind:before{content:""}.ph.ph-windmill:before{content:""}.ph.ph-windows-logo:before{content:""}.ph.ph-wine:before{content:""}.ph.ph-wrench:before{content:""}.ph.ph-x:before{content:""}.ph.ph-x-circle:before{content:""}.ph.ph-x-logo:before{content:""}.ph.ph-x-square:before{content:""}.ph.ph-yarn:before{content:""}.ph.ph-yin-yang:before{content:""}.ph.ph-youtube-logo:before{content:""}@font-face{font-family:Phosphor-Fill;src:url(/assets/Phosphor-Fill-D4CDmGRg.woff2) format("woff2"),url(/assets/Phosphor-Fill-CS2zOYDV.woff) format("woff"),url(/assets/Phosphor-Fill-N9gYSHy0.ttf) format("truetype"),url(/assets/Phosphor-Fill-BofDnXwa.svg#Phosphor-Fill) format("svg");font-weight:400;font-style:normal;font-display:block}.ph-fill{font-family:Phosphor-Fill!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ph-fill.ph-acorn:before{content:""}.ph-fill.ph-address-book:before{content:""}.ph-fill.ph-address-book-tabs:before{content:""}.ph-fill.ph-air-traffic-control:before{content:""}.ph-fill.ph-airplane:before{content:""}.ph-fill.ph-airplane-in-flight:before{content:""}.ph-fill.ph-airplane-landing:before{content:""}.ph-fill.ph-airplane-takeoff:before{content:""}.ph-fill.ph-airplane-taxiing:before{content:""}.ph-fill.ph-airplane-tilt:before{content:""}.ph-fill.ph-airplay:before{content:""}.ph-fill.ph-alarm:before{content:""}.ph-fill.ph-alien:before{content:""}.ph-fill.ph-align-bottom:before{content:""}.ph-fill.ph-align-bottom-simple:before{content:""}.ph-fill.ph-align-center-horizontal:before{content:""}.ph-fill.ph-align-center-horizontal-simple:before{content:""}.ph-fill.ph-align-center-vertical:before{content:""}.ph-fill.ph-align-center-vertical-simple:before{content:""}.ph-fill.ph-align-left:before{content:""}.ph-fill.ph-align-left-simple:before{content:""}.ph-fill.ph-align-right:before{content:""}.ph-fill.ph-align-right-simple:before{content:""}.ph-fill.ph-align-top:before{content:""}.ph-fill.ph-align-top-simple:before{content:""}.ph-fill.ph-amazon-logo:before{content:""}.ph-fill.ph-ambulance:before{content:""}.ph-fill.ph-anchor:before{content:""}.ph-fill.ph-anchor-simple:before{content:""}.ph-fill.ph-android-logo:before{content:""}.ph-fill.ph-angle:before{content:""}.ph-fill.ph-angular-logo:before{content:""}.ph-fill.ph-aperture:before{content:""}.ph-fill.ph-app-store-logo:before{content:""}.ph-fill.ph-app-window:before{content:""}.ph-fill.ph-apple-logo:before{content:""}.ph-fill.ph-apple-podcasts-logo:before{content:""}.ph-fill.ph-approximate-equals:before{content:""}.ph-fill.ph-archive:before{content:""}.ph-fill.ph-armchair:before{content:""}.ph-fill.ph-arrow-arc-left:before{content:""}.ph-fill.ph-arrow-arc-right:before{content:""}.ph-fill.ph-arrow-bend-double-up-left:before{content:""}.ph-fill.ph-arrow-bend-double-up-right:before{content:""}.ph-fill.ph-arrow-bend-down-left:before{content:""}.ph-fill.ph-arrow-bend-down-right:before{content:""}.ph-fill.ph-arrow-bend-left-down:before{content:""}.ph-fill.ph-arrow-bend-left-up:before{content:""}.ph-fill.ph-arrow-bend-right-down:before{content:""}.ph-fill.ph-arrow-bend-right-up:before{content:""}.ph-fill.ph-arrow-bend-up-left:before{content:""}.ph-fill.ph-arrow-bend-up-right:before{content:""}.ph-fill.ph-arrow-circle-down:before{content:""}.ph-fill.ph-arrow-circle-down-left:before{content:""}.ph-fill.ph-arrow-circle-down-right:before{content:""}.ph-fill.ph-arrow-circle-left:before{content:""}.ph-fill.ph-arrow-circle-right:before{content:""}.ph-fill.ph-arrow-circle-up:before{content:""}.ph-fill.ph-arrow-circle-up-left:before{content:""}.ph-fill.ph-arrow-circle-up-right:before{content:""}.ph-fill.ph-arrow-clockwise:before{content:""}.ph-fill.ph-arrow-counter-clockwise:before{content:""}.ph-fill.ph-arrow-down:before{content:""}.ph-fill.ph-arrow-down-left:before{content:""}.ph-fill.ph-arrow-down-right:before{content:""}.ph-fill.ph-arrow-elbow-down-left:before{content:""}.ph-fill.ph-arrow-elbow-down-right:before{content:""}.ph-fill.ph-arrow-elbow-left:before{content:""}.ph-fill.ph-arrow-elbow-left-down:before{content:""}.ph-fill.ph-arrow-elbow-left-up:before{content:""}.ph-fill.ph-arrow-elbow-right:before{content:""}.ph-fill.ph-arrow-elbow-right-down:before{content:""}.ph-fill.ph-arrow-elbow-right-up:before{content:""}.ph-fill.ph-arrow-elbow-up-left:before{content:""}.ph-fill.ph-arrow-elbow-up-right:before{content:""}.ph-fill.ph-arrow-fat-down:before{content:""}.ph-fill.ph-arrow-fat-left:before{content:""}.ph-fill.ph-arrow-fat-line-down:before{content:""}.ph-fill.ph-arrow-fat-line-left:before{content:""}.ph-fill.ph-arrow-fat-line-right:before{content:""}.ph-fill.ph-arrow-fat-line-up:before{content:""}.ph-fill.ph-arrow-fat-lines-down:before{content:""}.ph-fill.ph-arrow-fat-lines-left:before{content:""}.ph-fill.ph-arrow-fat-lines-right:before{content:""}.ph-fill.ph-arrow-fat-lines-up:before{content:""}.ph-fill.ph-arrow-fat-right:before{content:""}.ph-fill.ph-arrow-fat-up:before{content:""}.ph-fill.ph-arrow-left:before{content:""}.ph-fill.ph-arrow-line-down:before{content:""}.ph-fill.ph-arrow-line-down-left:before{content:""}.ph-fill.ph-arrow-line-down-right:before{content:""}.ph-fill.ph-arrow-line-left:before{content:""}.ph-fill.ph-arrow-line-right:before{content:""}.ph-fill.ph-arrow-line-up:before{content:""}.ph-fill.ph-arrow-line-up-left:before{content:""}.ph-fill.ph-arrow-line-up-right:before{content:""}.ph-fill.ph-arrow-right:before{content:""}.ph-fill.ph-arrow-square-down:before{content:""}.ph-fill.ph-arrow-square-down-left:before{content:""}.ph-fill.ph-arrow-square-down-right:before{content:""}.ph-fill.ph-arrow-square-in:before{content:""}.ph-fill.ph-arrow-square-left:before{content:""}.ph-fill.ph-arrow-square-out:before{content:""}.ph-fill.ph-arrow-square-right:before{content:""}.ph-fill.ph-arrow-square-up:before{content:""}.ph-fill.ph-arrow-square-up-left:before{content:""}.ph-fill.ph-arrow-square-up-right:before{content:""}.ph-fill.ph-arrow-u-down-left:before{content:""}.ph-fill.ph-arrow-u-down-right:before{content:""}.ph-fill.ph-arrow-u-left-down:before{content:""}.ph-fill.ph-arrow-u-left-up:before{content:""}.ph-fill.ph-arrow-u-right-down:before{content:""}.ph-fill.ph-arrow-u-right-up:before{content:""}.ph-fill.ph-arrow-u-up-left:before{content:""}.ph-fill.ph-arrow-u-up-right:before{content:""}.ph-fill.ph-arrow-up:before{content:""}.ph-fill.ph-arrow-up-left:before{content:""}.ph-fill.ph-arrow-up-right:before{content:""}.ph-fill.ph-arrows-clockwise:before{content:""}.ph-fill.ph-arrows-counter-clockwise:before{content:""}.ph-fill.ph-arrows-down-up:before{content:""}.ph-fill.ph-arrows-horizontal:before{content:""}.ph-fill.ph-arrows-in:before{content:""}.ph-fill.ph-arrows-in-cardinal:before{content:""}.ph-fill.ph-arrows-in-line-horizontal:before{content:""}.ph-fill.ph-arrows-in-line-vertical:before{content:""}.ph-fill.ph-arrows-in-simple:before{content:""}.ph-fill.ph-arrows-left-right:before{content:""}.ph-fill.ph-arrows-merge:before{content:""}.ph-fill.ph-arrows-out:before{content:""}.ph-fill.ph-arrows-out-cardinal:before{content:""}.ph-fill.ph-arrows-out-line-horizontal:before{content:""}.ph-fill.ph-arrows-out-line-vertical:before{content:""}.ph-fill.ph-arrows-out-simple:before{content:""}.ph-fill.ph-arrows-split:before{content:""}.ph-fill.ph-arrows-vertical:before{content:""}.ph-fill.ph-article:before{content:""}.ph-fill.ph-article-medium:before{content:""}.ph-fill.ph-article-ny-times:before{content:""}.ph-fill.ph-asclepius:before{content:""}.ph-fill.ph-caduceus:before{content:""}.ph-fill.ph-asterisk:before{content:""}.ph-fill.ph-asterisk-simple:before{content:""}.ph-fill.ph-at:before{content:""}.ph-fill.ph-atom:before{content:""}.ph-fill.ph-avocado:before{content:""}.ph-fill.ph-axe:before{content:""}.ph-fill.ph-baby:before{content:""}.ph-fill.ph-baby-carriage:before{content:""}.ph-fill.ph-backpack:before{content:""}.ph-fill.ph-backspace:before{content:""}.ph-fill.ph-bag:before{content:""}.ph-fill.ph-bag-simple:before{content:""}.ph-fill.ph-balloon:before{content:""}.ph-fill.ph-bandaids:before{content:""}.ph-fill.ph-bank:before{content:""}.ph-fill.ph-barbell:before{content:""}.ph-fill.ph-barcode:before{content:""}.ph-fill.ph-barn:before{content:""}.ph-fill.ph-barricade:before{content:""}.ph-fill.ph-baseball:before{content:""}.ph-fill.ph-baseball-cap:before{content:""}.ph-fill.ph-baseball-helmet:before{content:""}.ph-fill.ph-basket:before{content:""}.ph-fill.ph-basketball:before{content:""}.ph-fill.ph-bathtub:before{content:""}.ph-fill.ph-battery-charging:before{content:""}.ph-fill.ph-battery-charging-vertical:before{content:""}.ph-fill.ph-battery-empty:before{content:""}.ph-fill.ph-battery-full:before{content:""}.ph-fill.ph-battery-high:before{content:""}.ph-fill.ph-battery-low:before{content:""}.ph-fill.ph-battery-medium:before{content:""}.ph-fill.ph-battery-plus:before{content:""}.ph-fill.ph-battery-plus-vertical:before{content:""}.ph-fill.ph-battery-vertical-empty:before{content:""}.ph-fill.ph-battery-vertical-full:before{content:""}.ph-fill.ph-battery-vertical-high:before{content:""}.ph-fill.ph-battery-vertical-low:before{content:""}.ph-fill.ph-battery-vertical-medium:before{content:""}.ph-fill.ph-battery-warning:before{content:""}.ph-fill.ph-battery-warning-vertical:before{content:""}.ph-fill.ph-beach-ball:before{content:""}.ph-fill.ph-beanie:before{content:""}.ph-fill.ph-bed:before{content:""}.ph-fill.ph-beer-bottle:before{content:""}.ph-fill.ph-beer-stein:before{content:""}.ph-fill.ph-behance-logo:before{content:""}.ph-fill.ph-bell:before{content:""}.ph-fill.ph-bell-ringing:before{content:""}.ph-fill.ph-bell-simple:before{content:""}.ph-fill.ph-bell-simple-ringing:before{content:""}.ph-fill.ph-bell-simple-slash:before{content:""}.ph-fill.ph-bell-simple-z:before{content:""}.ph-fill.ph-bell-slash:before{content:""}.ph-fill.ph-bell-z:before{content:""}.ph-fill.ph-belt:before{content:""}.ph-fill.ph-bezier-curve:before{content:""}.ph-fill.ph-bicycle:before{content:""}.ph-fill.ph-binary:before{content:""}.ph-fill.ph-binoculars:before{content:""}.ph-fill.ph-biohazard:before{content:""}.ph-fill.ph-bird:before{content:""}.ph-fill.ph-blueprint:before{content:""}.ph-fill.ph-bluetooth:before{content:""}.ph-fill.ph-bluetooth-connected:before{content:""}.ph-fill.ph-bluetooth-slash:before{content:""}.ph-fill.ph-bluetooth-x:before{content:""}.ph-fill.ph-boat:before{content:""}.ph-fill.ph-bomb:before{content:""}.ph-fill.ph-bone:before{content:""}.ph-fill.ph-book:before{content:""}.ph-fill.ph-book-bookmark:before{content:""}.ph-fill.ph-book-open:before{content:""}.ph-fill.ph-book-open-text:before{content:""}.ph-fill.ph-book-open-user:before{content:""}.ph-fill.ph-bookmark:before{content:""}.ph-fill.ph-bookmark-simple:before{content:""}.ph-fill.ph-bookmarks:before{content:""}.ph-fill.ph-bookmarks-simple:before{content:""}.ph-fill.ph-books:before{content:""}.ph-fill.ph-boot:before{content:""}.ph-fill.ph-boules:before{content:""}.ph-fill.ph-bounding-box:before{content:""}.ph-fill.ph-bowl-food:before{content:""}.ph-fill.ph-bowl-steam:before{content:""}.ph-fill.ph-bowling-ball:before{content:""}.ph-fill.ph-box-arrow-down:before{content:""}.ph-fill.ph-archive-box:before{content:""}.ph-fill.ph-box-arrow-up:before{content:""}.ph-fill.ph-boxing-glove:before{content:""}.ph-fill.ph-brackets-angle:before{content:""}.ph-fill.ph-brackets-curly:before{content:""}.ph-fill.ph-brackets-round:before{content:""}.ph-fill.ph-brackets-square:before{content:""}.ph-fill.ph-brain:before{content:""}.ph-fill.ph-brandy:before{content:""}.ph-fill.ph-bread:before{content:""}.ph-fill.ph-bridge:before{content:""}.ph-fill.ph-briefcase:before{content:""}.ph-fill.ph-briefcase-metal:before{content:""}.ph-fill.ph-broadcast:before{content:""}.ph-fill.ph-broom:before{content:""}.ph-fill.ph-browser:before{content:""}.ph-fill.ph-browsers:before{content:""}.ph-fill.ph-bug:before{content:""}.ph-fill.ph-bug-beetle:before{content:""}.ph-fill.ph-bug-droid:before{content:""}.ph-fill.ph-building:before{content:""}.ph-fill.ph-building-apartment:before{content:""}.ph-fill.ph-building-office:before{content:""}.ph-fill.ph-buildings:before{content:""}.ph-fill.ph-bulldozer:before{content:""}.ph-fill.ph-bus:before{content:""}.ph-fill.ph-butterfly:before{content:""}.ph-fill.ph-cable-car:before{content:""}.ph-fill.ph-cactus:before{content:""}.ph-fill.ph-cake:before{content:""}.ph-fill.ph-calculator:before{content:""}.ph-fill.ph-calendar:before{content:""}.ph-fill.ph-calendar-blank:before{content:""}.ph-fill.ph-calendar-check:before{content:""}.ph-fill.ph-calendar-dot:before{content:""}.ph-fill.ph-calendar-dots:before{content:""}.ph-fill.ph-calendar-heart:before{content:""}.ph-fill.ph-calendar-minus:before{content:""}.ph-fill.ph-calendar-plus:before{content:""}.ph-fill.ph-calendar-slash:before{content:""}.ph-fill.ph-calendar-star:before{content:""}.ph-fill.ph-calendar-x:before{content:""}.ph-fill.ph-call-bell:before{content:""}.ph-fill.ph-camera:before{content:""}.ph-fill.ph-camera-plus:before{content:""}.ph-fill.ph-camera-rotate:before{content:""}.ph-fill.ph-camera-slash:before{content:""}.ph-fill.ph-campfire:before{content:""}.ph-fill.ph-car:before{content:""}.ph-fill.ph-car-battery:before{content:""}.ph-fill.ph-car-profile:before{content:""}.ph-fill.ph-car-simple:before{content:""}.ph-fill.ph-cardholder:before{content:""}.ph-fill.ph-cards:before{content:""}.ph-fill.ph-cards-three:before{content:""}.ph-fill.ph-caret-circle-double-down:before{content:""}.ph-fill.ph-caret-circle-double-left:before{content:""}.ph-fill.ph-caret-circle-double-right:before{content:""}.ph-fill.ph-caret-circle-double-up:before{content:""}.ph-fill.ph-caret-circle-down:before{content:""}.ph-fill.ph-caret-circle-left:before{content:""}.ph-fill.ph-caret-circle-right:before{content:""}.ph-fill.ph-caret-circle-up:before{content:""}.ph-fill.ph-caret-circle-up-down:before{content:""}.ph-fill.ph-caret-double-down:before{content:""}.ph-fill.ph-caret-double-left:before{content:""}.ph-fill.ph-caret-double-right:before{content:""}.ph-fill.ph-caret-double-up:before{content:""}.ph-fill.ph-caret-down:before{content:""}.ph-fill.ph-caret-left:before{content:""}.ph-fill.ph-caret-line-down:before{content:""}.ph-fill.ph-caret-line-left:before{content:""}.ph-fill.ph-caret-line-right:before{content:""}.ph-fill.ph-caret-line-up:before{content:""}.ph-fill.ph-caret-right:before{content:""}.ph-fill.ph-caret-up:before{content:""}.ph-fill.ph-caret-up-down:before{content:""}.ph-fill.ph-carrot:before{content:""}.ph-fill.ph-cash-register:before{content:""}.ph-fill.ph-cassette-tape:before{content:""}.ph-fill.ph-castle-turret:before{content:""}.ph-fill.ph-cat:before{content:""}.ph-fill.ph-cell-signal-full:before{content:""}.ph-fill.ph-cell-signal-high:before{content:""}.ph-fill.ph-cell-signal-low:before{content:""}.ph-fill.ph-cell-signal-medium:before{content:""}.ph-fill.ph-cell-signal-none:before{content:""}.ph-fill.ph-cell-signal-slash:before{content:""}.ph-fill.ph-cell-signal-x:before{content:""}.ph-fill.ph-cell-tower:before{content:""}.ph-fill.ph-certificate:before{content:""}.ph-fill.ph-chair:before{content:""}.ph-fill.ph-chalkboard:before{content:""}.ph-fill.ph-chalkboard-simple:before{content:""}.ph-fill.ph-chalkboard-teacher:before{content:""}.ph-fill.ph-champagne:before{content:""}.ph-fill.ph-charging-station:before{content:""}.ph-fill.ph-chart-bar:before{content:""}.ph-fill.ph-chart-bar-horizontal:before{content:""}.ph-fill.ph-chart-donut:before{content:""}.ph-fill.ph-chart-line:before{content:""}.ph-fill.ph-chart-line-down:before{content:""}.ph-fill.ph-chart-line-up:before{content:""}.ph-fill.ph-chart-pie:before{content:""}.ph-fill.ph-chart-pie-slice:before{content:""}.ph-fill.ph-chart-polar:before{content:""}.ph-fill.ph-chart-scatter:before{content:""}.ph-fill.ph-chat:before{content:""}.ph-fill.ph-chat-centered:before{content:""}.ph-fill.ph-chat-centered-dots:before{content:""}.ph-fill.ph-chat-centered-slash:before{content:""}.ph-fill.ph-chat-centered-text:before{content:""}.ph-fill.ph-chat-circle:before{content:""}.ph-fill.ph-chat-circle-dots:before{content:""}.ph-fill.ph-chat-circle-slash:before{content:""}.ph-fill.ph-chat-circle-text:before{content:""}.ph-fill.ph-chat-dots:before{content:""}.ph-fill.ph-chat-slash:before{content:""}.ph-fill.ph-chat-teardrop:before{content:""}.ph-fill.ph-chat-teardrop-dots:before{content:""}.ph-fill.ph-chat-teardrop-slash:before{content:""}.ph-fill.ph-chat-teardrop-text:before{content:""}.ph-fill.ph-chat-text:before{content:""}.ph-fill.ph-chats:before{content:""}.ph-fill.ph-chats-circle:before{content:""}.ph-fill.ph-chats-teardrop:before{content:""}.ph-fill.ph-check:before{content:""}.ph-fill.ph-check-circle:before{content:""}.ph-fill.ph-check-fat:before{content:""}.ph-fill.ph-check-square:before{content:""}.ph-fill.ph-check-square-offset:before{content:""}.ph-fill.ph-checkerboard:before{content:""}.ph-fill.ph-checks:before{content:""}.ph-fill.ph-cheers:before{content:""}.ph-fill.ph-cheese:before{content:""}.ph-fill.ph-chef-hat:before{content:""}.ph-fill.ph-cherries:before{content:""}.ph-fill.ph-church:before{content:""}.ph-fill.ph-cigarette:before{content:""}.ph-fill.ph-cigarette-slash:before{content:""}.ph-fill.ph-circle:before{content:""}.ph-fill.ph-circle-dashed:before{content:""}.ph-fill.ph-circle-half:before{content:""}.ph-fill.ph-circle-half-tilt:before{content:""}.ph-fill.ph-circle-notch:before{content:""}.ph-fill.ph-circles-four:before{content:""}.ph-fill.ph-circles-three:before{content:""}.ph-fill.ph-circles-three-plus:before{content:""}.ph-fill.ph-circuitry:before{content:""}.ph-fill.ph-city:before{content:""}.ph-fill.ph-clipboard:before{content:""}.ph-fill.ph-clipboard-text:before{content:""}.ph-fill.ph-clock:before{content:""}.ph-fill.ph-clock-afternoon:before{content:""}.ph-fill.ph-clock-clockwise:before{content:""}.ph-fill.ph-clock-countdown:before{content:""}.ph-fill.ph-clock-counter-clockwise:before{content:""}.ph-fill.ph-clock-user:before{content:""}.ph-fill.ph-closed-captioning:before{content:""}.ph-fill.ph-cloud:before{content:""}.ph-fill.ph-cloud-arrow-down:before{content:""}.ph-fill.ph-cloud-arrow-up:before{content:""}.ph-fill.ph-cloud-check:before{content:""}.ph-fill.ph-cloud-fog:before{content:""}.ph-fill.ph-cloud-lightning:before{content:""}.ph-fill.ph-cloud-moon:before{content:""}.ph-fill.ph-cloud-rain:before{content:""}.ph-fill.ph-cloud-slash:before{content:""}.ph-fill.ph-cloud-snow:before{content:""}.ph-fill.ph-cloud-sun:before{content:""}.ph-fill.ph-cloud-warning:before{content:""}.ph-fill.ph-cloud-x:before{content:""}.ph-fill.ph-clover:before{content:""}.ph-fill.ph-club:before{content:""}.ph-fill.ph-coat-hanger:before{content:""}.ph-fill.ph-coda-logo:before{content:""}.ph-fill.ph-code:before{content:""}.ph-fill.ph-code-block:before{content:""}.ph-fill.ph-code-simple:before{content:""}.ph-fill.ph-codepen-logo:before{content:""}.ph-fill.ph-codesandbox-logo:before{content:""}.ph-fill.ph-coffee:before{content:""}.ph-fill.ph-coffee-bean:before{content:""}.ph-fill.ph-coin:before{content:""}.ph-fill.ph-coin-vertical:before{content:""}.ph-fill.ph-coins:before{content:""}.ph-fill.ph-columns:before{content:""}.ph-fill.ph-columns-plus-left:before{content:""}.ph-fill.ph-columns-plus-right:before{content:""}.ph-fill.ph-command:before{content:""}.ph-fill.ph-compass:before{content:""}.ph-fill.ph-compass-rose:before{content:""}.ph-fill.ph-compass-tool:before{content:""}.ph-fill.ph-computer-tower:before{content:""}.ph-fill.ph-confetti:before{content:""}.ph-fill.ph-contactless-payment:before{content:""}.ph-fill.ph-control:before{content:""}.ph-fill.ph-cookie:before{content:""}.ph-fill.ph-cooking-pot:before{content:""}.ph-fill.ph-copy:before{content:""}.ph-fill.ph-copy-simple:before{content:""}.ph-fill.ph-copyleft:before{content:""}.ph-fill.ph-copyright:before{content:""}.ph-fill.ph-corners-in:before{content:""}.ph-fill.ph-corners-out:before{content:""}.ph-fill.ph-couch:before{content:""}.ph-fill.ph-court-basketball:before{content:""}.ph-fill.ph-cow:before{content:""}.ph-fill.ph-cowboy-hat:before{content:""}.ph-fill.ph-cpu:before{content:""}.ph-fill.ph-crane:before{content:""}.ph-fill.ph-crane-tower:before{content:""}.ph-fill.ph-credit-card:before{content:""}.ph-fill.ph-cricket:before{content:""}.ph-fill.ph-crop:before{content:""}.ph-fill.ph-cross:before{content:""}.ph-fill.ph-crosshair:before{content:""}.ph-fill.ph-crosshair-simple:before{content:""}.ph-fill.ph-crown:before{content:""}.ph-fill.ph-crown-cross:before{content:""}.ph-fill.ph-crown-simple:before{content:""}.ph-fill.ph-cube:before{content:""}.ph-fill.ph-cube-focus:before{content:""}.ph-fill.ph-cube-transparent:before{content:""}.ph-fill.ph-currency-btc:before{content:""}.ph-fill.ph-currency-circle-dollar:before{content:""}.ph-fill.ph-currency-cny:before{content:""}.ph-fill.ph-currency-dollar:before{content:""}.ph-fill.ph-currency-dollar-simple:before{content:""}.ph-fill.ph-currency-eth:before{content:""}.ph-fill.ph-currency-eur:before{content:""}.ph-fill.ph-currency-gbp:before{content:""}.ph-fill.ph-currency-inr:before{content:""}.ph-fill.ph-currency-jpy:before{content:""}.ph-fill.ph-currency-krw:before{content:""}.ph-fill.ph-currency-kzt:before{content:""}.ph-fill.ph-currency-ngn:before{content:""}.ph-fill.ph-currency-rub:before{content:""}.ph-fill.ph-cursor:before{content:""}.ph-fill.ph-cursor-click:before{content:""}.ph-fill.ph-cursor-text:before{content:""}.ph-fill.ph-cylinder:before{content:""}.ph-fill.ph-database:before{content:""}.ph-fill.ph-desk:before{content:""}.ph-fill.ph-desktop:before{content:""}.ph-fill.ph-desktop-tower:before{content:""}.ph-fill.ph-detective:before{content:""}.ph-fill.ph-dev-to-logo:before{content:""}.ph-fill.ph-device-mobile:before{content:""}.ph-fill.ph-device-mobile-camera:before{content:""}.ph-fill.ph-device-mobile-slash:before{content:""}.ph-fill.ph-device-mobile-speaker:before{content:""}.ph-fill.ph-device-rotate:before{content:""}.ph-fill.ph-device-tablet:before{content:""}.ph-fill.ph-device-tablet-camera:before{content:""}.ph-fill.ph-device-tablet-speaker:before{content:""}.ph-fill.ph-devices:before{content:""}.ph-fill.ph-diamond:before{content:""}.ph-fill.ph-diamonds-four:before{content:""}.ph-fill.ph-dice-five:before{content:""}.ph-fill.ph-dice-four:before{content:""}.ph-fill.ph-dice-one:before{content:""}.ph-fill.ph-dice-six:before{content:""}.ph-fill.ph-dice-three:before{content:""}.ph-fill.ph-dice-two:before{content:""}.ph-fill.ph-disc:before{content:""}.ph-fill.ph-disco-ball:before{content:""}.ph-fill.ph-discord-logo:before{content:""}.ph-fill.ph-divide:before{content:""}.ph-fill.ph-dna:before{content:""}.ph-fill.ph-dog:before{content:""}.ph-fill.ph-door:before{content:""}.ph-fill.ph-door-open:before{content:""}.ph-fill.ph-dot:before{content:""}.ph-fill.ph-dot-outline:before{content:""}.ph-fill.ph-dots-nine:before{content:""}.ph-fill.ph-dots-six:before{content:""}.ph-fill.ph-dots-six-vertical:before{content:""}.ph-fill.ph-dots-three:before{content:""}.ph-fill.ph-dots-three-circle:before{content:""}.ph-fill.ph-dots-three-circle-vertical:before{content:""}.ph-fill.ph-dots-three-outline:before{content:""}.ph-fill.ph-dots-three-outline-vertical:before{content:""}.ph-fill.ph-dots-three-vertical:before{content:""}.ph-fill.ph-download:before{content:""}.ph-fill.ph-download-simple:before{content:""}.ph-fill.ph-dress:before{content:""}.ph-fill.ph-dresser:before{content:""}.ph-fill.ph-dribbble-logo:before{content:""}.ph-fill.ph-drone:before{content:""}.ph-fill.ph-drop:before{content:""}.ph-fill.ph-drop-half:before{content:""}.ph-fill.ph-drop-half-bottom:before{content:""}.ph-fill.ph-drop-simple:before{content:""}.ph-fill.ph-drop-slash:before{content:""}.ph-fill.ph-dropbox-logo:before{content:""}.ph-fill.ph-ear:before{content:""}.ph-fill.ph-ear-slash:before{content:""}.ph-fill.ph-egg:before{content:""}.ph-fill.ph-egg-crack:before{content:""}.ph-fill.ph-eject:before{content:""}.ph-fill.ph-eject-simple:before{content:""}.ph-fill.ph-elevator:before{content:""}.ph-fill.ph-empty:before{content:""}.ph-fill.ph-engine:before{content:""}.ph-fill.ph-envelope:before{content:""}.ph-fill.ph-envelope-open:before{content:""}.ph-fill.ph-envelope-simple:before{content:""}.ph-fill.ph-envelope-simple-open:before{content:""}.ph-fill.ph-equalizer:before{content:""}.ph-fill.ph-equals:before{content:""}.ph-fill.ph-eraser:before{content:""}.ph-fill.ph-escalator-down:before{content:""}.ph-fill.ph-escalator-up:before{content:""}.ph-fill.ph-exam:before{content:""}.ph-fill.ph-exclamation-mark:before{content:""}.ph-fill.ph-exclude:before{content:""}.ph-fill.ph-exclude-square:before{content:""}.ph-fill.ph-export:before{content:""}.ph-fill.ph-eye:before{content:""}.ph-fill.ph-eye-closed:before{content:""}.ph-fill.ph-eye-slash:before{content:""}.ph-fill.ph-eyedropper:before{content:""}.ph-fill.ph-eyedropper-sample:before{content:""}.ph-fill.ph-eyeglasses:before{content:""}.ph-fill.ph-eyes:before{content:""}.ph-fill.ph-face-mask:before{content:""}.ph-fill.ph-facebook-logo:before{content:""}.ph-fill.ph-factory:before{content:""}.ph-fill.ph-faders:before{content:""}.ph-fill.ph-faders-horizontal:before{content:""}.ph-fill.ph-fallout-shelter:before{content:""}.ph-fill.ph-fan:before{content:""}.ph-fill.ph-farm:before{content:""}.ph-fill.ph-fast-forward:before{content:""}.ph-fill.ph-fast-forward-circle:before{content:""}.ph-fill.ph-feather:before{content:""}.ph-fill.ph-fediverse-logo:before{content:""}.ph-fill.ph-figma-logo:before{content:""}.ph-fill.ph-file:before{content:""}.ph-fill.ph-file-archive:before{content:""}.ph-fill.ph-file-arrow-down:before{content:""}.ph-fill.ph-file-arrow-up:before{content:""}.ph-fill.ph-file-audio:before{content:""}.ph-fill.ph-file-c:before{content:""}.ph-fill.ph-file-c-sharp:before{content:""}.ph-fill.ph-file-cloud:before{content:""}.ph-fill.ph-file-code:before{content:""}.ph-fill.ph-file-cpp:before{content:""}.ph-fill.ph-file-css:before{content:""}.ph-fill.ph-file-csv:before{content:""}.ph-fill.ph-file-dashed:before{content:""}.ph-fill.ph-file-dotted:before{content:""}.ph-fill.ph-file-doc:before{content:""}.ph-fill.ph-file-html:before{content:""}.ph-fill.ph-file-image:before{content:""}.ph-fill.ph-file-ini:before{content:""}.ph-fill.ph-file-jpg:before{content:""}.ph-fill.ph-file-js:before{content:""}.ph-fill.ph-file-jsx:before{content:""}.ph-fill.ph-file-lock:before{content:""}.ph-fill.ph-file-magnifying-glass:before{content:""}.ph-fill.ph-file-search:before{content:""}.ph-fill.ph-file-md:before{content:""}.ph-fill.ph-file-minus:before{content:""}.ph-fill.ph-file-pdf:before{content:""}.ph-fill.ph-file-plus:before{content:""}.ph-fill.ph-file-png:before{content:""}.ph-fill.ph-file-ppt:before{content:""}.ph-fill.ph-file-py:before{content:""}.ph-fill.ph-file-rs:before{content:""}.ph-fill.ph-file-sql:before{content:""}.ph-fill.ph-file-svg:before{content:""}.ph-fill.ph-file-text:before{content:""}.ph-fill.ph-file-ts:before{content:""}.ph-fill.ph-file-tsx:before{content:""}.ph-fill.ph-file-txt:before{content:""}.ph-fill.ph-file-video:before{content:""}.ph-fill.ph-file-vue:before{content:""}.ph-fill.ph-file-x:before{content:""}.ph-fill.ph-file-xls:before{content:""}.ph-fill.ph-file-zip:before{content:""}.ph-fill.ph-files:before{content:""}.ph-fill.ph-film-reel:before{content:""}.ph-fill.ph-film-script:before{content:""}.ph-fill.ph-film-slate:before{content:""}.ph-fill.ph-film-strip:before{content:""}.ph-fill.ph-fingerprint:before{content:""}.ph-fill.ph-fingerprint-simple:before{content:""}.ph-fill.ph-finn-the-human:before{content:""}.ph-fill.ph-fire:before{content:""}.ph-fill.ph-fire-extinguisher:before{content:""}.ph-fill.ph-fire-simple:before{content:""}.ph-fill.ph-fire-truck:before{content:""}.ph-fill.ph-first-aid:before{content:""}.ph-fill.ph-first-aid-kit:before{content:""}.ph-fill.ph-fish:before{content:""}.ph-fill.ph-fish-simple:before{content:""}.ph-fill.ph-flag:before{content:""}.ph-fill.ph-flag-banner:before{content:""}.ph-fill.ph-flag-banner-fold:before{content:""}.ph-fill.ph-flag-checkered:before{content:""}.ph-fill.ph-flag-pennant:before{content:""}.ph-fill.ph-flame:before{content:""}.ph-fill.ph-flashlight:before{content:""}.ph-fill.ph-flask:before{content:""}.ph-fill.ph-flip-horizontal:before{content:""}.ph-fill.ph-flip-vertical:before{content:""}.ph-fill.ph-floppy-disk:before{content:""}.ph-fill.ph-floppy-disk-back:before{content:""}.ph-fill.ph-flow-arrow:before{content:""}.ph-fill.ph-flower:before{content:""}.ph-fill.ph-flower-lotus:before{content:""}.ph-fill.ph-flower-tulip:before{content:""}.ph-fill.ph-flying-saucer:before{content:""}.ph-fill.ph-folder:before{content:""}.ph-fill.ph-folder-notch:before{content:""}.ph-fill.ph-folder-dashed:before{content:""}.ph-fill.ph-folder-dotted:before{content:""}.ph-fill.ph-folder-lock:before{content:""}.ph-fill.ph-folder-minus:before{content:""}.ph-fill.ph-folder-notch-minus:before{content:""}.ph-fill.ph-folder-open:before{content:""}.ph-fill.ph-folder-notch-open:before{content:""}.ph-fill.ph-folder-plus:before{content:""}.ph-fill.ph-folder-notch-plus:before{content:""}.ph-fill.ph-folder-simple:before{content:""}.ph-fill.ph-folder-simple-dashed:before{content:""}.ph-fill.ph-folder-simple-dotted:before{content:""}.ph-fill.ph-folder-simple-lock:before{content:""}.ph-fill.ph-folder-simple-minus:before{content:""}.ph-fill.ph-folder-simple-plus:before{content:""}.ph-fill.ph-folder-simple-star:before{content:""}.ph-fill.ph-folder-simple-user:before{content:""}.ph-fill.ph-folder-star:before{content:""}.ph-fill.ph-folder-user:before{content:""}.ph-fill.ph-folders:before{content:""}.ph-fill.ph-football:before{content:""}.ph-fill.ph-football-helmet:before{content:""}.ph-fill.ph-footprints:before{content:""}.ph-fill.ph-fork-knife:before{content:""}.ph-fill.ph-four-k:before{content:""}.ph-fill.ph-frame-corners:before{content:""}.ph-fill.ph-framer-logo:before{content:""}.ph-fill.ph-function:before{content:""}.ph-fill.ph-funnel:before{content:""}.ph-fill.ph-funnel-simple:before{content:""}.ph-fill.ph-funnel-simple-x:before{content:""}.ph-fill.ph-funnel-x:before{content:""}.ph-fill.ph-game-controller:before{content:""}.ph-fill.ph-garage:before{content:""}.ph-fill.ph-gas-can:before{content:""}.ph-fill.ph-gas-pump:before{content:""}.ph-fill.ph-gauge:before{content:""}.ph-fill.ph-gavel:before{content:""}.ph-fill.ph-gear:before{content:""}.ph-fill.ph-gear-fine:before{content:""}.ph-fill.ph-gear-six:before{content:""}.ph-fill.ph-gender-female:before{content:""}.ph-fill.ph-gender-intersex:before{content:""}.ph-fill.ph-gender-male:before{content:""}.ph-fill.ph-gender-neuter:before{content:""}.ph-fill.ph-gender-nonbinary:before{content:""}.ph-fill.ph-gender-transgender:before{content:""}.ph-fill.ph-ghost:before{content:""}.ph-fill.ph-gif:before{content:""}.ph-fill.ph-gift:before{content:""}.ph-fill.ph-git-branch:before{content:""}.ph-fill.ph-git-commit:before{content:""}.ph-fill.ph-git-diff:before{content:""}.ph-fill.ph-git-fork:before{content:""}.ph-fill.ph-git-merge:before{content:""}.ph-fill.ph-git-pull-request:before{content:""}.ph-fill.ph-github-logo:before{content:""}.ph-fill.ph-gitlab-logo:before{content:""}.ph-fill.ph-gitlab-logo-simple:before{content:""}.ph-fill.ph-globe:before{content:""}.ph-fill.ph-globe-hemisphere-east:before{content:""}.ph-fill.ph-globe-hemisphere-west:before{content:""}.ph-fill.ph-globe-simple:before{content:""}.ph-fill.ph-globe-simple-x:before{content:""}.ph-fill.ph-globe-stand:before{content:""}.ph-fill.ph-globe-x:before{content:""}.ph-fill.ph-goggles:before{content:""}.ph-fill.ph-golf:before{content:""}.ph-fill.ph-goodreads-logo:before{content:""}.ph-fill.ph-google-cardboard-logo:before{content:""}.ph-fill.ph-google-chrome-logo:before{content:""}.ph-fill.ph-google-drive-logo:before{content:""}.ph-fill.ph-google-logo:before{content:""}.ph-fill.ph-google-photos-logo:before{content:""}.ph-fill.ph-google-play-logo:before{content:""}.ph-fill.ph-google-podcasts-logo:before{content:""}.ph-fill.ph-gps:before{content:""}.ph-fill.ph-gps-fix:before{content:""}.ph-fill.ph-gps-slash:before{content:""}.ph-fill.ph-gradient:before{content:""}.ph-fill.ph-graduation-cap:before{content:""}.ph-fill.ph-grains:before{content:""}.ph-fill.ph-grains-slash:before{content:""}.ph-fill.ph-graph:before{content:""}.ph-fill.ph-graphics-card:before{content:""}.ph-fill.ph-greater-than:before{content:""}.ph-fill.ph-greater-than-or-equal:before{content:""}.ph-fill.ph-grid-four:before{content:""}.ph-fill.ph-grid-nine:before{content:""}.ph-fill.ph-guitar:before{content:""}.ph-fill.ph-hair-dryer:before{content:""}.ph-fill.ph-hamburger:before{content:""}.ph-fill.ph-hammer:before{content:""}.ph-fill.ph-hand:before{content:""}.ph-fill.ph-hand-arrow-down:before{content:""}.ph-fill.ph-hand-arrow-up:before{content:""}.ph-fill.ph-hand-coins:before{content:""}.ph-fill.ph-hand-deposit:before{content:""}.ph-fill.ph-hand-eye:before{content:""}.ph-fill.ph-hand-fist:before{content:""}.ph-fill.ph-hand-grabbing:before{content:""}.ph-fill.ph-hand-heart:before{content:""}.ph-fill.ph-hand-palm:before{content:""}.ph-fill.ph-hand-peace:before{content:""}.ph-fill.ph-hand-pointing:before{content:""}.ph-fill.ph-hand-soap:before{content:""}.ph-fill.ph-hand-swipe-left:before{content:""}.ph-fill.ph-hand-swipe-right:before{content:""}.ph-fill.ph-hand-tap:before{content:""}.ph-fill.ph-hand-waving:before{content:""}.ph-fill.ph-hand-withdraw:before{content:""}.ph-fill.ph-handbag:before{content:""}.ph-fill.ph-handbag-simple:before{content:""}.ph-fill.ph-hands-clapping:before{content:""}.ph-fill.ph-hands-praying:before{content:""}.ph-fill.ph-handshake:before{content:""}.ph-fill.ph-hard-drive:before{content:""}.ph-fill.ph-hard-drives:before{content:""}.ph-fill.ph-hard-hat:before{content:""}.ph-fill.ph-hash:before{content:""}.ph-fill.ph-hash-straight:before{content:""}.ph-fill.ph-head-circuit:before{content:""}.ph-fill.ph-headlights:before{content:""}.ph-fill.ph-headphones:before{content:""}.ph-fill.ph-headset:before{content:""}.ph-fill.ph-heart:before{content:""}.ph-fill.ph-heart-break:before{content:""}.ph-fill.ph-heart-half:before{content:""}.ph-fill.ph-heart-straight:before{content:""}.ph-fill.ph-heart-straight-break:before{content:""}.ph-fill.ph-heartbeat:before{content:""}.ph-fill.ph-hexagon:before{content:""}.ph-fill.ph-high-definition:before{content:""}.ph-fill.ph-high-heel:before{content:""}.ph-fill.ph-highlighter:before{content:""}.ph-fill.ph-highlighter-circle:before{content:""}.ph-fill.ph-hockey:before{content:""}.ph-fill.ph-hoodie:before{content:""}.ph-fill.ph-horse:before{content:""}.ph-fill.ph-hospital:before{content:""}.ph-fill.ph-hourglass:before{content:""}.ph-fill.ph-hourglass-high:before{content:""}.ph-fill.ph-hourglass-low:before{content:""}.ph-fill.ph-hourglass-medium:before{content:""}.ph-fill.ph-hourglass-simple:before{content:""}.ph-fill.ph-hourglass-simple-high:before{content:""}.ph-fill.ph-hourglass-simple-low:before{content:""}.ph-fill.ph-hourglass-simple-medium:before{content:""}.ph-fill.ph-house:before{content:""}.ph-fill.ph-house-line:before{content:""}.ph-fill.ph-house-simple:before{content:""}.ph-fill.ph-hurricane:before{content:""}.ph-fill.ph-ice-cream:before{content:""}.ph-fill.ph-identification-badge:before{content:""}.ph-fill.ph-identification-card:before{content:""}.ph-fill.ph-image:before{content:""}.ph-fill.ph-image-broken:before{content:""}.ph-fill.ph-image-square:before{content:""}.ph-fill.ph-images:before{content:""}.ph-fill.ph-images-square:before{content:""}.ph-fill.ph-infinity:before{content:""}.ph-fill.ph-lemniscate:before{content:""}.ph-fill.ph-info:before{content:""}.ph-fill.ph-instagram-logo:before{content:""}.ph-fill.ph-intersect:before{content:""}.ph-fill.ph-intersect-square:before{content:""}.ph-fill.ph-intersect-three:before{content:""}.ph-fill.ph-intersection:before{content:""}.ph-fill.ph-invoice:before{content:""}.ph-fill.ph-island:before{content:""}.ph-fill.ph-jar:before{content:""}.ph-fill.ph-jar-label:before{content:""}.ph-fill.ph-jeep:before{content:""}.ph-fill.ph-joystick:before{content:""}.ph-fill.ph-kanban:before{content:""}.ph-fill.ph-key:before{content:""}.ph-fill.ph-key-return:before{content:""}.ph-fill.ph-keyboard:before{content:""}.ph-fill.ph-keyhole:before{content:""}.ph-fill.ph-knife:before{content:""}.ph-fill.ph-ladder:before{content:""}.ph-fill.ph-ladder-simple:before{content:""}.ph-fill.ph-lamp:before{content:""}.ph-fill.ph-lamp-pendant:before{content:""}.ph-fill.ph-laptop:before{content:""}.ph-fill.ph-lasso:before{content:""}.ph-fill.ph-lastfm-logo:before{content:""}.ph-fill.ph-layout:before{content:""}.ph-fill.ph-leaf:before{content:""}.ph-fill.ph-lectern:before{content:""}.ph-fill.ph-lego:before{content:""}.ph-fill.ph-lego-smiley:before{content:""}.ph-fill.ph-less-than:before{content:""}.ph-fill.ph-less-than-or-equal:before{content:""}.ph-fill.ph-letter-circle-h:before{content:""}.ph-fill.ph-letter-circle-p:before{content:""}.ph-fill.ph-letter-circle-v:before{content:""}.ph-fill.ph-lifebuoy:before{content:""}.ph-fill.ph-lightbulb:before{content:""}.ph-fill.ph-lightbulb-filament:before{content:""}.ph-fill.ph-lighthouse:before{content:""}.ph-fill.ph-lightning:before{content:""}.ph-fill.ph-lightning-a:before{content:""}.ph-fill.ph-lightning-slash:before{content:""}.ph-fill.ph-line-segment:before{content:""}.ph-fill.ph-line-segments:before{content:""}.ph-fill.ph-line-vertical:before{content:""}.ph-fill.ph-link:before{content:""}.ph-fill.ph-link-break:before{content:""}.ph-fill.ph-link-simple:before{content:""}.ph-fill.ph-link-simple-break:before{content:""}.ph-fill.ph-link-simple-horizontal:before{content:""}.ph-fill.ph-link-simple-horizontal-break:before{content:""}.ph-fill.ph-linkedin-logo:before{content:""}.ph-fill.ph-linktree-logo:before{content:""}.ph-fill.ph-linux-logo:before{content:""}.ph-fill.ph-list:before{content:""}.ph-fill.ph-list-bullets:before{content:""}.ph-fill.ph-list-checks:before{content:""}.ph-fill.ph-list-dashes:before{content:""}.ph-fill.ph-list-heart:before{content:""}.ph-fill.ph-list-magnifying-glass:before{content:""}.ph-fill.ph-list-numbers:before{content:""}.ph-fill.ph-list-plus:before{content:""}.ph-fill.ph-list-star:before{content:""}.ph-fill.ph-lock:before{content:""}.ph-fill.ph-lock-key:before{content:""}.ph-fill.ph-lock-key-open:before{content:""}.ph-fill.ph-lock-laminated:before{content:""}.ph-fill.ph-lock-laminated-open:before{content:""}.ph-fill.ph-lock-open:before{content:""}.ph-fill.ph-lock-simple:before{content:""}.ph-fill.ph-lock-simple-open:before{content:""}.ph-fill.ph-lockers:before{content:""}.ph-fill.ph-log:before{content:""}.ph-fill.ph-magic-wand:before{content:""}.ph-fill.ph-magnet:before{content:""}.ph-fill.ph-magnet-straight:before{content:""}.ph-fill.ph-magnifying-glass:before{content:""}.ph-fill.ph-magnifying-glass-minus:before{content:""}.ph-fill.ph-magnifying-glass-plus:before{content:""}.ph-fill.ph-mailbox:before{content:""}.ph-fill.ph-map-pin:before{content:""}.ph-fill.ph-map-pin-area:before{content:""}.ph-fill.ph-map-pin-line:before{content:""}.ph-fill.ph-map-pin-plus:before{content:""}.ph-fill.ph-map-pin-simple:before{content:""}.ph-fill.ph-map-pin-simple-area:before{content:""}.ph-fill.ph-map-pin-simple-line:before{content:""}.ph-fill.ph-map-trifold:before{content:""}.ph-fill.ph-markdown-logo:before{content:""}.ph-fill.ph-marker-circle:before{content:""}.ph-fill.ph-martini:before{content:""}.ph-fill.ph-mask-happy:before{content:""}.ph-fill.ph-mask-sad:before{content:""}.ph-fill.ph-mastodon-logo:before{content:""}.ph-fill.ph-math-operations:before{content:""}.ph-fill.ph-matrix-logo:before{content:""}.ph-fill.ph-medal:before{content:""}.ph-fill.ph-medal-military:before{content:""}.ph-fill.ph-medium-logo:before{content:""}.ph-fill.ph-megaphone:before{content:""}.ph-fill.ph-megaphone-simple:before{content:""}.ph-fill.ph-member-of:before{content:""}.ph-fill.ph-memory:before{content:""}.ph-fill.ph-messenger-logo:before{content:""}.ph-fill.ph-meta-logo:before{content:""}.ph-fill.ph-meteor:before{content:""}.ph-fill.ph-metronome:before{content:""}.ph-fill.ph-microphone:before{content:""}.ph-fill.ph-microphone-slash:before{content:""}.ph-fill.ph-microphone-stage:before{content:""}.ph-fill.ph-microscope:before{content:""}.ph-fill.ph-microsoft-excel-logo:before{content:""}.ph-fill.ph-microsoft-outlook-logo:before{content:""}.ph-fill.ph-microsoft-powerpoint-logo:before{content:""}.ph-fill.ph-microsoft-teams-logo:before{content:""}.ph-fill.ph-microsoft-word-logo:before{content:""}.ph-fill.ph-minus:before{content:""}.ph-fill.ph-minus-circle:before{content:""}.ph-fill.ph-minus-square:before{content:""}.ph-fill.ph-money:before{content:""}.ph-fill.ph-money-wavy:before{content:""}.ph-fill.ph-monitor:before{content:""}.ph-fill.ph-monitor-arrow-up:before{content:""}.ph-fill.ph-monitor-play:before{content:""}.ph-fill.ph-moon:before{content:""}.ph-fill.ph-moon-stars:before{content:""}.ph-fill.ph-moped:before{content:""}.ph-fill.ph-moped-front:before{content:""}.ph-fill.ph-mosque:before{content:""}.ph-fill.ph-motorcycle:before{content:""}.ph-fill.ph-mountains:before{content:""}.ph-fill.ph-mouse:before{content:""}.ph-fill.ph-mouse-left-click:before{content:""}.ph-fill.ph-mouse-middle-click:before{content:""}.ph-fill.ph-mouse-right-click:before{content:""}.ph-fill.ph-mouse-scroll:before{content:""}.ph-fill.ph-mouse-simple:before{content:""}.ph-fill.ph-music-note:before{content:""}.ph-fill.ph-music-note-simple:before{content:""}.ph-fill.ph-music-notes:before{content:""}.ph-fill.ph-music-notes-minus:before{content:""}.ph-fill.ph-music-notes-plus:before{content:""}.ph-fill.ph-music-notes-simple:before{content:""}.ph-fill.ph-navigation-arrow:before{content:""}.ph-fill.ph-needle:before{content:""}.ph-fill.ph-network:before{content:""}.ph-fill.ph-network-slash:before{content:""}.ph-fill.ph-network-x:before{content:""}.ph-fill.ph-newspaper:before{content:""}.ph-fill.ph-newspaper-clipping:before{content:""}.ph-fill.ph-not-equals:before{content:""}.ph-fill.ph-not-member-of:before{content:""}.ph-fill.ph-not-subset-of:before{content:""}.ph-fill.ph-not-superset-of:before{content:""}.ph-fill.ph-notches:before{content:""}.ph-fill.ph-note:before{content:""}.ph-fill.ph-note-blank:before{content:""}.ph-fill.ph-note-pencil:before{content:""}.ph-fill.ph-notebook:before{content:""}.ph-fill.ph-notepad:before{content:""}.ph-fill.ph-notification:before{content:""}.ph-fill.ph-notion-logo:before{content:""}.ph-fill.ph-nuclear-plant:before{content:""}.ph-fill.ph-number-circle-eight:before{content:""}.ph-fill.ph-number-circle-five:before{content:""}.ph-fill.ph-number-circle-four:before{content:""}.ph-fill.ph-number-circle-nine:before{content:""}.ph-fill.ph-number-circle-one:before{content:""}.ph-fill.ph-number-circle-seven:before{content:""}.ph-fill.ph-number-circle-six:before{content:""}.ph-fill.ph-number-circle-three:before{content:""}.ph-fill.ph-number-circle-two:before{content:""}.ph-fill.ph-number-circle-zero:before{content:""}.ph-fill.ph-number-eight:before{content:""}.ph-fill.ph-number-five:before{content:""}.ph-fill.ph-number-four:before{content:""}.ph-fill.ph-number-nine:before{content:""}.ph-fill.ph-number-one:before{content:""}.ph-fill.ph-number-seven:before{content:""}.ph-fill.ph-number-six:before{content:""}.ph-fill.ph-number-square-eight:before{content:""}.ph-fill.ph-number-square-five:before{content:""}.ph-fill.ph-number-square-four:before{content:""}.ph-fill.ph-number-square-nine:before{content:""}.ph-fill.ph-number-square-one:before{content:""}.ph-fill.ph-number-square-seven:before{content:""}.ph-fill.ph-number-square-six:before{content:""}.ph-fill.ph-number-square-three:before{content:""}.ph-fill.ph-number-square-two:before{content:""}.ph-fill.ph-number-square-zero:before{content:""}.ph-fill.ph-number-three:before{content:""}.ph-fill.ph-number-two:before{content:""}.ph-fill.ph-number-zero:before{content:""}.ph-fill.ph-numpad:before{content:""}.ph-fill.ph-nut:before{content:""}.ph-fill.ph-ny-times-logo:before{content:""}.ph-fill.ph-octagon:before{content:""}.ph-fill.ph-office-chair:before{content:""}.ph-fill.ph-onigiri:before{content:""}.ph-fill.ph-open-ai-logo:before{content:""}.ph-fill.ph-option:before{content:""}.ph-fill.ph-orange:before{content:""}.ph-fill.ph-orange-slice:before{content:""}.ph-fill.ph-oven:before{content:""}.ph-fill.ph-package:before{content:""}.ph-fill.ph-paint-brush:before{content:""}.ph-fill.ph-paint-brush-broad:before{content:""}.ph-fill.ph-paint-brush-household:before{content:""}.ph-fill.ph-paint-bucket:before{content:""}.ph-fill.ph-paint-roller:before{content:""}.ph-fill.ph-palette:before{content:""}.ph-fill.ph-panorama:before{content:""}.ph-fill.ph-pants:before{content:""}.ph-fill.ph-paper-plane:before{content:""}.ph-fill.ph-paper-plane-right:before{content:""}.ph-fill.ph-paper-plane-tilt:before{content:""}.ph-fill.ph-paperclip:before{content:""}.ph-fill.ph-paperclip-horizontal:before{content:""}.ph-fill.ph-parachute:before{content:""}.ph-fill.ph-paragraph:before{content:""}.ph-fill.ph-parallelogram:before{content:""}.ph-fill.ph-park:before{content:""}.ph-fill.ph-password:before{content:""}.ph-fill.ph-path:before{content:""}.ph-fill.ph-patreon-logo:before{content:""}.ph-fill.ph-pause:before{content:""}.ph-fill.ph-pause-circle:before{content:""}.ph-fill.ph-paw-print:before{content:""}.ph-fill.ph-paypal-logo:before{content:""}.ph-fill.ph-peace:before{content:""}.ph-fill.ph-pen:before{content:""}.ph-fill.ph-pen-nib:before{content:""}.ph-fill.ph-pen-nib-straight:before{content:""}.ph-fill.ph-pencil:before{content:""}.ph-fill.ph-pencil-circle:before{content:""}.ph-fill.ph-pencil-line:before{content:""}.ph-fill.ph-pencil-ruler:before{content:""}.ph-fill.ph-pencil-simple:before{content:""}.ph-fill.ph-pencil-simple-line:before{content:""}.ph-fill.ph-pencil-simple-slash:before{content:""}.ph-fill.ph-pencil-slash:before{content:""}.ph-fill.ph-pentagon:before{content:""}.ph-fill.ph-pentagram:before{content:""}.ph-fill.ph-pepper:before{content:""}.ph-fill.ph-percent:before{content:""}.ph-fill.ph-person:before{content:""}.ph-fill.ph-person-arms-spread:before{content:""}.ph-fill.ph-person-simple:before{content:""}.ph-fill.ph-person-simple-bike:before{content:""}.ph-fill.ph-person-simple-circle:before{content:""}.ph-fill.ph-person-simple-hike:before{content:""}.ph-fill.ph-person-simple-run:before{content:""}.ph-fill.ph-person-simple-ski:before{content:""}.ph-fill.ph-person-simple-snowboard:before{content:""}.ph-fill.ph-person-simple-swim:before{content:""}.ph-fill.ph-person-simple-tai-chi:before{content:""}.ph-fill.ph-person-simple-throw:before{content:""}.ph-fill.ph-person-simple-walk:before{content:""}.ph-fill.ph-perspective:before{content:""}.ph-fill.ph-phone:before{content:""}.ph-fill.ph-phone-call:before{content:""}.ph-fill.ph-phone-disconnect:before{content:""}.ph-fill.ph-phone-incoming:before{content:""}.ph-fill.ph-phone-list:before{content:""}.ph-fill.ph-phone-outgoing:before{content:""}.ph-fill.ph-phone-pause:before{content:""}.ph-fill.ph-phone-plus:before{content:""}.ph-fill.ph-phone-slash:before{content:""}.ph-fill.ph-phone-transfer:before{content:""}.ph-fill.ph-phone-x:before{content:""}.ph-fill.ph-phosphor-logo:before{content:""}.ph-fill.ph-pi:before{content:""}.ph-fill.ph-piano-keys:before{content:""}.ph-fill.ph-picnic-table:before{content:""}.ph-fill.ph-picture-in-picture:before{content:""}.ph-fill.ph-piggy-bank:before{content:""}.ph-fill.ph-pill:before{content:""}.ph-fill.ph-ping-pong:before{content:""}.ph-fill.ph-pint-glass:before{content:""}.ph-fill.ph-pinterest-logo:before{content:""}.ph-fill.ph-pinwheel:before{content:""}.ph-fill.ph-pipe:before{content:""}.ph-fill.ph-pipe-wrench:before{content:""}.ph-fill.ph-pix-logo:before{content:""}.ph-fill.ph-pizza:before{content:""}.ph-fill.ph-placeholder:before{content:""}.ph-fill.ph-planet:before{content:""}.ph-fill.ph-plant:before{content:""}.ph-fill.ph-play:before{content:""}.ph-fill.ph-play-circle:before{content:""}.ph-fill.ph-play-pause:before{content:""}.ph-fill.ph-playlist:before{content:""}.ph-fill.ph-plug:before{content:""}.ph-fill.ph-plug-charging:before{content:""}.ph-fill.ph-plugs:before{content:""}.ph-fill.ph-plugs-connected:before{content:""}.ph-fill.ph-plus:before{content:""}.ph-fill.ph-plus-circle:before{content:""}.ph-fill.ph-plus-minus:before{content:""}.ph-fill.ph-plus-square:before{content:""}.ph-fill.ph-poker-chip:before{content:""}.ph-fill.ph-police-car:before{content:""}.ph-fill.ph-polygon:before{content:""}.ph-fill.ph-popcorn:before{content:""}.ph-fill.ph-popsicle:before{content:""}.ph-fill.ph-potted-plant:before{content:""}.ph-fill.ph-power:before{content:""}.ph-fill.ph-prescription:before{content:""}.ph-fill.ph-presentation:before{content:""}.ph-fill.ph-presentation-chart:before{content:""}.ph-fill.ph-printer:before{content:""}.ph-fill.ph-prohibit:before{content:""}.ph-fill.ph-prohibit-inset:before{content:""}.ph-fill.ph-projector-screen:before{content:""}.ph-fill.ph-projector-screen-chart:before{content:""}.ph-fill.ph-pulse:before{content:""}.ph-fill.ph-activity:before{content:""}.ph-fill.ph-push-pin:before{content:""}.ph-fill.ph-push-pin-simple:before{content:""}.ph-fill.ph-push-pin-simple-slash:before{content:""}.ph-fill.ph-push-pin-slash:before{content:""}.ph-fill.ph-puzzle-piece:before{content:""}.ph-fill.ph-qr-code:before{content:""}.ph-fill.ph-question:before{content:""}.ph-fill.ph-question-mark:before{content:""}.ph-fill.ph-queue:before{content:""}.ph-fill.ph-quotes:before{content:""}.ph-fill.ph-rabbit:before{content:""}.ph-fill.ph-racquet:before{content:""}.ph-fill.ph-radical:before{content:""}.ph-fill.ph-radio:before{content:""}.ph-fill.ph-radio-button:before{content:""}.ph-fill.ph-radioactive:before{content:""}.ph-fill.ph-rainbow:before{content:""}.ph-fill.ph-rainbow-cloud:before{content:""}.ph-fill.ph-ranking:before{content:""}.ph-fill.ph-read-cv-logo:before{content:""}.ph-fill.ph-receipt:before{content:""}.ph-fill.ph-receipt-x:before{content:""}.ph-fill.ph-record:before{content:""}.ph-fill.ph-rectangle:before{content:""}.ph-fill.ph-rectangle-dashed:before{content:""}.ph-fill.ph-recycle:before{content:""}.ph-fill.ph-reddit-logo:before{content:""}.ph-fill.ph-repeat:before{content:""}.ph-fill.ph-repeat-once:before{content:""}.ph-fill.ph-replit-logo:before{content:""}.ph-fill.ph-resize:before{content:""}.ph-fill.ph-rewind:before{content:""}.ph-fill.ph-rewind-circle:before{content:""}.ph-fill.ph-road-horizon:before{content:""}.ph-fill.ph-robot:before{content:""}.ph-fill.ph-rocket:before{content:""}.ph-fill.ph-rocket-launch:before{content:""}.ph-fill.ph-rows:before{content:""}.ph-fill.ph-rows-plus-bottom:before{content:""}.ph-fill.ph-rows-plus-top:before{content:""}.ph-fill.ph-rss:before{content:""}.ph-fill.ph-rss-simple:before{content:""}.ph-fill.ph-rug:before{content:""}.ph-fill.ph-ruler:before{content:""}.ph-fill.ph-sailboat:before{content:""}.ph-fill.ph-scales:before{content:""}.ph-fill.ph-scan:before{content:""}.ph-fill.ph-scan-smiley:before{content:""}.ph-fill.ph-scissors:before{content:""}.ph-fill.ph-scooter:before{content:""}.ph-fill.ph-screencast:before{content:""}.ph-fill.ph-screwdriver:before{content:""}.ph-fill.ph-scribble:before{content:""}.ph-fill.ph-scribble-loop:before{content:""}.ph-fill.ph-scroll:before{content:""}.ph-fill.ph-seal:before{content:""}.ph-fill.ph-circle-wavy:before{content:""}.ph-fill.ph-seal-check:before{content:""}.ph-fill.ph-circle-wavy-check:before{content:""}.ph-fill.ph-seal-percent:before{content:""}.ph-fill.ph-seal-question:before{content:""}.ph-fill.ph-circle-wavy-question:before{content:""}.ph-fill.ph-seal-warning:before{content:""}.ph-fill.ph-circle-wavy-warning:before{content:""}.ph-fill.ph-seat:before{content:""}.ph-fill.ph-seatbelt:before{content:""}.ph-fill.ph-security-camera:before{content:""}.ph-fill.ph-selection:before{content:""}.ph-fill.ph-selection-all:before{content:""}.ph-fill.ph-selection-background:before{content:""}.ph-fill.ph-selection-foreground:before{content:""}.ph-fill.ph-selection-inverse:before{content:""}.ph-fill.ph-selection-plus:before{content:""}.ph-fill.ph-selection-slash:before{content:""}.ph-fill.ph-shapes:before{content:""}.ph-fill.ph-share:before{content:""}.ph-fill.ph-share-fat:before{content:""}.ph-fill.ph-share-network:before{content:""}.ph-fill.ph-shield:before{content:""}.ph-fill.ph-shield-check:before{content:""}.ph-fill.ph-shield-checkered:before{content:""}.ph-fill.ph-shield-chevron:before{content:""}.ph-fill.ph-shield-plus:before{content:""}.ph-fill.ph-shield-slash:before{content:""}.ph-fill.ph-shield-star:before{content:""}.ph-fill.ph-shield-warning:before{content:""}.ph-fill.ph-shipping-container:before{content:""}.ph-fill.ph-shirt-folded:before{content:""}.ph-fill.ph-shooting-star:before{content:""}.ph-fill.ph-shopping-bag:before{content:""}.ph-fill.ph-shopping-bag-open:before{content:""}.ph-fill.ph-shopping-cart:before{content:""}.ph-fill.ph-shopping-cart-simple:before{content:""}.ph-fill.ph-shovel:before{content:""}.ph-fill.ph-shower:before{content:""}.ph-fill.ph-shrimp:before{content:""}.ph-fill.ph-shuffle:before{content:""}.ph-fill.ph-shuffle-angular:before{content:""}.ph-fill.ph-shuffle-simple:before{content:""}.ph-fill.ph-sidebar:before{content:""}.ph-fill.ph-sidebar-simple:before{content:""}.ph-fill.ph-sigma:before{content:""}.ph-fill.ph-sign-in:before{content:""}.ph-fill.ph-sign-out:before{content:""}.ph-fill.ph-signature:before{content:""}.ph-fill.ph-signpost:before{content:""}.ph-fill.ph-sim-card:before{content:""}.ph-fill.ph-siren:before{content:""}.ph-fill.ph-sketch-logo:before{content:""}.ph-fill.ph-skip-back:before{content:""}.ph-fill.ph-skip-back-circle:before{content:""}.ph-fill.ph-skip-forward:before{content:""}.ph-fill.ph-skip-forward-circle:before{content:""}.ph-fill.ph-skull:before{content:""}.ph-fill.ph-skype-logo:before{content:""}.ph-fill.ph-slack-logo:before{content:""}.ph-fill.ph-sliders:before{content:""}.ph-fill.ph-sliders-horizontal:before{content:""}.ph-fill.ph-slideshow:before{content:""}.ph-fill.ph-smiley:before{content:""}.ph-fill.ph-smiley-angry:before{content:""}.ph-fill.ph-smiley-blank:before{content:""}.ph-fill.ph-smiley-meh:before{content:""}.ph-fill.ph-smiley-melting:before{content:""}.ph-fill.ph-smiley-nervous:before{content:""}.ph-fill.ph-smiley-sad:before{content:""}.ph-fill.ph-smiley-sticker:before{content:""}.ph-fill.ph-smiley-wink:before{content:""}.ph-fill.ph-smiley-x-eyes:before{content:""}.ph-fill.ph-snapchat-logo:before{content:""}.ph-fill.ph-sneaker:before{content:""}.ph-fill.ph-sneaker-move:before{content:""}.ph-fill.ph-snowflake:before{content:""}.ph-fill.ph-soccer-ball:before{content:""}.ph-fill.ph-sock:before{content:""}.ph-fill.ph-solar-panel:before{content:""}.ph-fill.ph-solar-roof:before{content:""}.ph-fill.ph-sort-ascending:before{content:""}.ph-fill.ph-sort-descending:before{content:""}.ph-fill.ph-soundcloud-logo:before{content:""}.ph-fill.ph-spade:before{content:""}.ph-fill.ph-sparkle:before{content:""}.ph-fill.ph-speaker-hifi:before{content:""}.ph-fill.ph-speaker-high:before{content:""}.ph-fill.ph-speaker-low:before{content:""}.ph-fill.ph-speaker-none:before{content:""}.ph-fill.ph-speaker-simple-high:before{content:""}.ph-fill.ph-speaker-simple-low:before{content:""}.ph-fill.ph-speaker-simple-none:before{content:""}.ph-fill.ph-speaker-simple-slash:before{content:""}.ph-fill.ph-speaker-simple-x:before{content:""}.ph-fill.ph-speaker-slash:before{content:""}.ph-fill.ph-speaker-x:before{content:""}.ph-fill.ph-speedometer:before{content:""}.ph-fill.ph-sphere:before{content:""}.ph-fill.ph-spinner:before{content:""}.ph-fill.ph-spinner-ball:before{content:""}.ph-fill.ph-spinner-gap:before{content:""}.ph-fill.ph-spiral:before{content:""}.ph-fill.ph-split-horizontal:before{content:""}.ph-fill.ph-split-vertical:before{content:""}.ph-fill.ph-spotify-logo:before{content:""}.ph-fill.ph-spray-bottle:before{content:""}.ph-fill.ph-square:before{content:""}.ph-fill.ph-square-half:before{content:""}.ph-fill.ph-square-half-bottom:before{content:""}.ph-fill.ph-square-logo:before{content:""}.ph-fill.ph-square-split-horizontal:before{content:""}.ph-fill.ph-square-split-vertical:before{content:""}.ph-fill.ph-squares-four:before{content:""}.ph-fill.ph-stack:before{content:""}.ph-fill.ph-stack-minus:before{content:""}.ph-fill.ph-stack-overflow-logo:before{content:""}.ph-fill.ph-stack-plus:before{content:""}.ph-fill.ph-stack-simple:before{content:""}.ph-fill.ph-stairs:before{content:""}.ph-fill.ph-stamp:before{content:""}.ph-fill.ph-standard-definition:before{content:""}.ph-fill.ph-star:before{content:""}.ph-fill.ph-star-and-crescent:before{content:""}.ph-fill.ph-star-four:before{content:""}.ph-fill.ph-star-half:before{content:""}.ph-fill.ph-star-of-david:before{content:""}.ph-fill.ph-steam-logo:before{content:""}.ph-fill.ph-steering-wheel:before{content:""}.ph-fill.ph-steps:before{content:""}.ph-fill.ph-stethoscope:before{content:""}.ph-fill.ph-sticker:before{content:""}.ph-fill.ph-stool:before{content:""}.ph-fill.ph-stop:before{content:""}.ph-fill.ph-stop-circle:before{content:""}.ph-fill.ph-storefront:before{content:""}.ph-fill.ph-strategy:before{content:""}.ph-fill.ph-stripe-logo:before{content:""}.ph-fill.ph-student:before{content:""}.ph-fill.ph-subset-of:before{content:""}.ph-fill.ph-subset-proper-of:before{content:""}.ph-fill.ph-subtitles:before{content:""}.ph-fill.ph-subtitles-slash:before{content:""}.ph-fill.ph-subtract:before{content:""}.ph-fill.ph-subtract-square:before{content:""}.ph-fill.ph-subway:before{content:""}.ph-fill.ph-suitcase:before{content:""}.ph-fill.ph-suitcase-rolling:before{content:""}.ph-fill.ph-suitcase-simple:before{content:""}.ph-fill.ph-sun:before{content:""}.ph-fill.ph-sun-dim:before{content:""}.ph-fill.ph-sun-horizon:before{content:""}.ph-fill.ph-sunglasses:before{content:""}.ph-fill.ph-superset-of:before{content:""}.ph-fill.ph-superset-proper-of:before{content:""}.ph-fill.ph-swap:before{content:""}.ph-fill.ph-swatches:before{content:""}.ph-fill.ph-swimming-pool:before{content:""}.ph-fill.ph-sword:before{content:""}.ph-fill.ph-synagogue:before{content:""}.ph-fill.ph-syringe:before{content:""}.ph-fill.ph-t-shirt:before{content:""}.ph-fill.ph-table:before{content:""}.ph-fill.ph-tabs:before{content:""}.ph-fill.ph-tag:before{content:""}.ph-fill.ph-tag-chevron:before{content:""}.ph-fill.ph-tag-simple:before{content:""}.ph-fill.ph-target:before{content:""}.ph-fill.ph-taxi:before{content:""}.ph-fill.ph-tea-bag:before{content:""}.ph-fill.ph-telegram-logo:before{content:""}.ph-fill.ph-television:before{content:""}.ph-fill.ph-television-simple:before{content:""}.ph-fill.ph-tennis-ball:before{content:""}.ph-fill.ph-tent:before{content:""}.ph-fill.ph-terminal:before{content:""}.ph-fill.ph-terminal-window:before{content:""}.ph-fill.ph-test-tube:before{content:""}.ph-fill.ph-text-a-underline:before{content:""}.ph-fill.ph-text-aa:before{content:""}.ph-fill.ph-text-align-center:before{content:""}.ph-fill.ph-text-align-justify:before{content:""}.ph-fill.ph-text-align-left:before{content:""}.ph-fill.ph-text-align-right:before{content:""}.ph-fill.ph-text-b:before{content:""}.ph-fill.ph-text-bolder:before{content:""}.ph-fill.ph-text-columns:before{content:""}.ph-fill.ph-text-h:before{content:""}.ph-fill.ph-text-h-five:before{content:""}.ph-fill.ph-text-h-four:before{content:""}.ph-fill.ph-text-h-one:before{content:""}.ph-fill.ph-text-h-six:before{content:""}.ph-fill.ph-text-h-three:before{content:""}.ph-fill.ph-text-h-two:before{content:""}.ph-fill.ph-text-indent:before{content:""}.ph-fill.ph-text-italic:before{content:""}.ph-fill.ph-text-outdent:before{content:""}.ph-fill.ph-text-strikethrough:before{content:""}.ph-fill.ph-text-subscript:before{content:""}.ph-fill.ph-text-superscript:before{content:""}.ph-fill.ph-text-t:before{content:""}.ph-fill.ph-text-t-slash:before{content:""}.ph-fill.ph-text-underline:before{content:""}.ph-fill.ph-textbox:before{content:""}.ph-fill.ph-thermometer:before{content:""}.ph-fill.ph-thermometer-cold:before{content:""}.ph-fill.ph-thermometer-hot:before{content:""}.ph-fill.ph-thermometer-simple:before{content:""}.ph-fill.ph-threads-logo:before{content:""}.ph-fill.ph-three-d:before{content:""}.ph-fill.ph-thumbs-down:before{content:""}.ph-fill.ph-thumbs-up:before{content:""}.ph-fill.ph-ticket:before{content:""}.ph-fill.ph-tidal-logo:before{content:""}.ph-fill.ph-tiktok-logo:before{content:""}.ph-fill.ph-tilde:before{content:""}.ph-fill.ph-timer:before{content:""}.ph-fill.ph-tip-jar:before{content:""}.ph-fill.ph-tipi:before{content:""}.ph-fill.ph-tire:before{content:""}.ph-fill.ph-toggle-left:before{content:""}.ph-fill.ph-toggle-right:before{content:""}.ph-fill.ph-toilet:before{content:""}.ph-fill.ph-toilet-paper:before{content:""}.ph-fill.ph-toolbox:before{content:""}.ph-fill.ph-tooth:before{content:""}.ph-fill.ph-tornado:before{content:""}.ph-fill.ph-tote:before{content:""}.ph-fill.ph-tote-simple:before{content:""}.ph-fill.ph-towel:before{content:""}.ph-fill.ph-tractor:before{content:""}.ph-fill.ph-trademark:before{content:""}.ph-fill.ph-trademark-registered:before{content:""}.ph-fill.ph-traffic-cone:before{content:""}.ph-fill.ph-traffic-sign:before{content:""}.ph-fill.ph-traffic-signal:before{content:""}.ph-fill.ph-train:before{content:""}.ph-fill.ph-train-regional:before{content:""}.ph-fill.ph-train-simple:before{content:""}.ph-fill.ph-tram:before{content:""}.ph-fill.ph-translate:before{content:""}.ph-fill.ph-trash:before{content:""}.ph-fill.ph-trash-simple:before{content:""}.ph-fill.ph-tray:before{content:""}.ph-fill.ph-tray-arrow-down:before{content:""}.ph-fill.ph-archive-tray:before{content:""}.ph-fill.ph-tray-arrow-up:before{content:""}.ph-fill.ph-treasure-chest:before{content:""}.ph-fill.ph-tree:before{content:""}.ph-fill.ph-tree-evergreen:before{content:""}.ph-fill.ph-tree-palm:before{content:""}.ph-fill.ph-tree-structure:before{content:""}.ph-fill.ph-tree-view:before{content:""}.ph-fill.ph-trend-down:before{content:""}.ph-fill.ph-trend-up:before{content:""}.ph-fill.ph-triangle:before{content:""}.ph-fill.ph-triangle-dashed:before{content:""}.ph-fill.ph-trolley:before{content:""}.ph-fill.ph-trolley-suitcase:before{content:""}.ph-fill.ph-trophy:before{content:""}.ph-fill.ph-truck:before{content:""}.ph-fill.ph-truck-trailer:before{content:""}.ph-fill.ph-tumblr-logo:before{content:""}.ph-fill.ph-twitch-logo:before{content:""}.ph-fill.ph-twitter-logo:before{content:""}.ph-fill.ph-umbrella:before{content:""}.ph-fill.ph-umbrella-simple:before{content:""}.ph-fill.ph-union:before{content:""}.ph-fill.ph-unite:before{content:""}.ph-fill.ph-unite-square:before{content:""}.ph-fill.ph-upload:before{content:""}.ph-fill.ph-upload-simple:before{content:""}.ph-fill.ph-usb:before{content:""}.ph-fill.ph-user:before{content:""}.ph-fill.ph-user-check:before{content:""}.ph-fill.ph-user-circle:before{content:""}.ph-fill.ph-user-circle-check:before{content:""}.ph-fill.ph-user-circle-dashed:before{content:""}.ph-fill.ph-user-circle-gear:before{content:""}.ph-fill.ph-user-circle-minus:before{content:""}.ph-fill.ph-user-circle-plus:before{content:""}.ph-fill.ph-user-focus:before{content:""}.ph-fill.ph-user-gear:before{content:""}.ph-fill.ph-user-list:before{content:""}.ph-fill.ph-user-minus:before{content:""}.ph-fill.ph-user-plus:before{content:""}.ph-fill.ph-user-rectangle:before{content:""}.ph-fill.ph-user-sound:before{content:""}.ph-fill.ph-user-square:before{content:""}.ph-fill.ph-user-switch:before{content:""}.ph-fill.ph-users:before{content:""}.ph-fill.ph-users-four:before{content:""}.ph-fill.ph-users-three:before{content:""}.ph-fill.ph-van:before{content:""}.ph-fill.ph-vault:before{content:""}.ph-fill.ph-vector-three:before{content:""}.ph-fill.ph-vector-two:before{content:""}.ph-fill.ph-vibrate:before{content:""}.ph-fill.ph-video:before{content:""}.ph-fill.ph-video-camera:before{content:""}.ph-fill.ph-video-camera-slash:before{content:""}.ph-fill.ph-video-conference:before{content:""}.ph-fill.ph-vignette:before{content:""}.ph-fill.ph-vinyl-record:before{content:""}.ph-fill.ph-virtual-reality:before{content:""}.ph-fill.ph-virus:before{content:""}.ph-fill.ph-visor:before{content:""}.ph-fill.ph-voicemail:before{content:""}.ph-fill.ph-volleyball:before{content:""}.ph-fill.ph-wall:before{content:""}.ph-fill.ph-wallet:before{content:""}.ph-fill.ph-warehouse:before{content:""}.ph-fill.ph-warning:before{content:""}.ph-fill.ph-warning-circle:before{content:""}.ph-fill.ph-warning-diamond:before{content:""}.ph-fill.ph-warning-octagon:before{content:""}.ph-fill.ph-washing-machine:before{content:""}.ph-fill.ph-watch:before{content:""}.ph-fill.ph-wave-sawtooth:before{content:""}.ph-fill.ph-wave-sine:before{content:""}.ph-fill.ph-wave-square:before{content:""}.ph-fill.ph-wave-triangle:before{content:""}.ph-fill.ph-waveform:before{content:""}.ph-fill.ph-waveform-slash:before{content:""}.ph-fill.ph-waves:before{content:""}.ph-fill.ph-webcam:before{content:""}.ph-fill.ph-webcam-slash:before{content:""}.ph-fill.ph-webhooks-logo:before{content:""}.ph-fill.ph-wechat-logo:before{content:""}.ph-fill.ph-whatsapp-logo:before{content:""}.ph-fill.ph-wheelchair:before{content:""}.ph-fill.ph-wheelchair-motion:before{content:""}.ph-fill.ph-wifi-high:before{content:""}.ph-fill.ph-wifi-low:before{content:""}.ph-fill.ph-wifi-medium:before{content:""}.ph-fill.ph-wifi-none:before{content:""}.ph-fill.ph-wifi-slash:before{content:""}.ph-fill.ph-wifi-x:before{content:""}.ph-fill.ph-wind:before{content:""}.ph-fill.ph-windmill:before{content:""}.ph-fill.ph-windows-logo:before{content:""}.ph-fill.ph-wine:before{content:""}.ph-fill.ph-wrench:before{content:""}.ph-fill.ph-x:before{content:""}.ph-fill.ph-x-circle:before{content:""}.ph-fill.ph-x-logo:before{content:""}.ph-fill.ph-x-square:before{content:""}.ph-fill.ph-yarn:before{content:""}.ph-fill.ph-yin-yang:before{content:""}.ph-fill.ph-youtube-logo:before{content:""}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Regular.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Medium.ttf) format("truetype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf) format("truetype");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Bold.ttf) format("truetype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:IBM Plex Mono;src:url(/assets/fonts/IBM_Plex_Mono/IBMPlexMono-Italic.ttf) format("truetype");font-weight:400;font-style:italic;font-display:swap}.container{padding:18px}.section{margin-bottom:48px}.section-title,.block{margin-bottom:34px}.block-title{margin-bottom:22px}.text,p{margin-bottom:15px}.hint{margin-top:8px}.list{padding-left:22px;margin-bottom:15px}.list-item{margin-bottom:8px}.list-nested{margin-top:8px}.table{margin-bottom:22px}.table-caption{margin-bottom:8px}.form-group{margin-bottom:15px}.label{margin-bottom:5px;display:block}.input,.select,.textarea{margin-top:5px}.toast{padding:15px}.toast-stack{gap:8px}@keyframes terminal_scan_x{0%{transform:translate(-120%)}to{transform:translate(220%)}}@keyframes terminal_scan_y{0%{transform:translateY(-120%)}to{transform:translateY(220%)}}@keyframes terminal_pulse{0%,to{box-shadow:0 0 #c0caf500}50%{box-shadow:0 0 0 4px #c0caf52e}}@keyframes panel_boot{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes overlay_reveal{0%{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}@keyframes tooltip_reveal{0%{opacity:0;transform:translate(-50%) translateY(5px)}to{opacity:1;transform:translate(-50%) translateY(0)}}@media(prefers-reduced-motion:reduce){*,:after,:before{animation-duration:0s!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:0s!important}}html{font-size:100%}body{font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:400;line-height:1.6;letter-spacing:0;color:#c0caf5}h1,h2,h3,h4,h5,h6{font-family:IBM Plex Mono,monospace;font-weight:600;line-height:1.25;margin:0}h1.contrast,h2.contrast,h3.contrast,h4.contrast,h5.contrast,h6.contrast{background:#c0caf5;color:#16161e;display:inline;padding:0 8px}h1{font-size:34px;letter-spacing:0}h2{font-size:26px}h3{font-size:22px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px;font-weight:500}.text,p{font-size:15px;line-height:1.6}.text-sm{font-size:13px;line-height:1.4}.text-lg{font-size:16px;line-height:1.6}.text-lead{max-width:760px;color:#c0caf5;font-size:16px;font-weight:500;line-height:1.6}.text-muted{font-size:13px;color:#787c99}.text-strong,strong{font-weight:600}.text-bold{font-weight:700}.text-italic,em{font-style:italic}.text-success{color:#9ece6a}.text-warning{color:#e0af68}.text-danger,.text-error{color:#f7768e}.text-info{color:#bb9af7}.eyebrow{display:inline-flex;width:-moz-max-content;width:max-content;max-width:100%;padding:5px 8px;color:#16161e;background:#7aa2f7;font-size:12px;font-weight:700;line-height:1;text-transform:uppercase}.caption{color:#787c99;font-size:12px;line-height:1.4}.code,code,pre{font-family:IBM Plex Mono,monospace;font-size:15px;line-height:1.4;background-color:#1f2335}.text-primary{color:#c0caf5}.text-secondary{color:#a9b1d6}pre{font-size:15px;line-height:1.6;white-space:pre-wrap}.code,pre code{-o-tab-size:2;tab-size:2;-moz-tab-size:2}.code{display:inline-flex;padding:0 5px;color:#7aa2f7;border:2px solid rgba(122,162,247,.24)}.kbd{display:inline-flex;align-items:center;min-height:24px;padding:0 8px;border:2px solid rgba(192,202,245,.24);border-bottom-color:#7aa2f7;color:#c0caf5;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:12px;font-weight:700;line-height:1;text-transform:uppercase}.quote{max-width:760px;margin:0;padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;color:#a9b1d6;background:#1f2335;font-size:15px;line-height:1.6}.quote cite{display:block;margin-top:12px;color:#7aa2f7;font-size:13px;font-style:normal;text-transform:uppercase}a{font-weight:500;text-decoration:none;color:#7aa2f7}@media(hover:hover)and (pointer:fine){a:hover{color:#e0af68}}@media(hover:none)and (pointer:coarse){a:active{color:#e0af68}}.link{font-size:inherit;font-weight:500}.label{font-size:13px;font-weight:500;line-height:1.4}.hint,.meta{font-size:12px;line-height:1.4}.table{font-size:13px;line-height:1.4}.table th{font-weight:600}.table td{font-weight:400}.list{font-size:15px;line-height:1.6}.list-item{font-size:inherit}.modal-title{font-size:20px;font-weight:600}.modal-body{font-size:15px}.toast-title{font-size:14px;font-weight:600}.toast-text{font-size:13px;line-height:1.4}.palette{display:flex;flex-direction:row;flex-wrap:wrap;gap:8px}.palette .color .color-box{width:92px;height:68px}body .bg-primary{background:#c0caf5}body .bg-secondary{background:#7aa2f7}body .bg-success{background:#9ece6a}body .bg-accent{background:#ff9e64}body .bg-info{background:#bb9af7}body .bg-warning{background:#e0af68}body .bg-error{background:#f7768e}body .text-color-primary{color:#c0caf5}body .text-color-secondary{color:#7aa2f7}body .text-color-success{color:#9ece6a}body .text-color-accent{color:#ff9e64}body .text-color-info{color:#bb9af7}body .text-color-warning{color:#e0af68}body .text-color-error{color:#f7768e}.loader{width:32px;aspect-ratio:1;--c:no-repeat linear-gradient(#FF3C00 0 0);background:var(--c) 0 0,var(--c) 0 100%,var(--c) 50% 0,var(--c) 50% 100%,var(--c) 100% 0,var(--c) 100% 100%;animation:l12 1s infinite}@keyframes l12{0%,to{background-size:20% 50%}16.67%{background-size:20% 30%,20% 30%,20% 50%,20% 50%,20% 50%,20% 50%}33.33%{background-size:20% 30%,20% 30%,20% 30%,20% 30%,20% 50%,20% 50%}50%{background-size:20% 30%,20% 30%,20% 30%,20% 30%,20% 30%,20% 30%}66.67%{background-size:20% 50%,20% 50%,20% 30%,20% 30%,20% 30%,20% 30%}83.33%{background-size:20% 50%,20% 50%,20% 50%,20% 50%,20% 30%,20% 30%}}.circle-loader{display:flex;flex-direction:row;align-items:center;gap:8px}.circle-loader .ph,.circle-loader .ph-bold{font-size:26px;transform-origin:50% 50%;animation:icon_spin 1.2s linear infinite}.progress{display:flex;flex-direction:column;gap:8px;width:100%;max-width:640px}.progress .progress-header{display:flex;align-items:center;justify-content:space-between;gap:12px;color:#a9b1d6;font-size:13px;font-weight:600;text-transform:uppercase}.progress .progress-value{color:#c0caf5;font-family:IBM Plex Mono,monospace}.progress .progress-track{position:relative;width:100%;height:18px;overflow:hidden;border:2px solid rgba(192,202,245,.24);background:#1f2335}.progress .progress-bar{display:block;position:relative;overflow:hidden;width:var(--progress-value,0%);height:100%;background:#7aa2f7;transition:width .28s ease}.progress.progress-success .progress-bar{background:#9ece6a}.progress.progress-warning .progress-bar{background:#e0af68}.progress.progress-danger .progress-bar,.progress.progress-error .progress-bar{background:#f7768e}.progress.progress-striped .progress-bar{background-image:repeating-linear-gradient(90deg,transparent 0,transparent 14px,rgba(22,22,30,.2) 14px,rgba(22,22,30,.2) 16px)}.progress.progress-animated .progress-bar:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;width:48%;background:linear-gradient(90deg,transparent,rgba(192,202,245,.28),transparent);transform:translate(-120%);animation:progress_scan 1.4s ease infinite}.usage-meter{display:grid;gap:12px;width:100%;max-width:420px;padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.usage-meter .usage-meter-title{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0;font-size:16px;font-weight:700;line-height:1;text-transform:uppercase}.usage-meter .usage-meter-value{color:#7aa2f7;font-family:IBM Plex Mono,monospace;font-size:13px}.usage-meter .usage-meter-meta{margin:0;color:#a9b1d6;font-size:13px;line-height:1.4}.progress-stages{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;width:100%;max-width:720px}.progress-stages .progress-stage{min-height:42px;padding:8px 12px;border:2px solid rgba(192,202,245,.24);color:#787c99;background:#1f2335;font-size:13px;font-weight:600;line-height:1.4;text-transform:uppercase}.progress-stages .progress-stage-complete{color:#16161e;background:#9ece6a;border-color:#9ece6a}.progress-stages .progress-stage-current{color:#16161e;background:#e0af68;border-color:#e0af68}@media(max-width:767px){.progress-stages{grid-template-columns:1fr 1fr}}@media(max-width:479px){.progress-stages{grid-template-columns:1fr}}@keyframes progress_scan{0%{transform:translate(-120%)}to{transform:translate(220%)}}@keyframes icon_spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.btn{display:inline-flex;align-items:center;justify-content:center;min-height:46px;font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:600;line-height:1;letter-spacing:.04em;padding:12px 22px;border-radius:0;border-width:2px;border-left-width:6px;border-style:solid;border-color:#c0caf5;text-transform:uppercase;background-color:transparent;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:background-color,border-color,color,opacity}.btn:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}.btn.with-icon{border-left-width:46px;position:relative}.btn.with-icon .ph,.btn.with-icon .ph-bold{position:absolute;color:#16161e;left:-46px;top:1px;font-size:26px;height:100%;display:inline-flex;align-items:center;width:46px;justify-content:center;transition-duration:.2s;transition-property:color,left}@media(hover:hover)and (pointer:fine){.btn:hover.with-icon:not(.loading-state):not(.btn-small) .ph,.btn:hover.with-icon:not(.loading-state):not(.btn-small) .ph-bold{left:-28px}}@media(hover:none)and (pointer:coarse){.btn:active.with-icon:not(.loading-state):not(.btn-small) .ph,.btn:active.with-icon:not(.loading-state):not(.btn-small) .ph-bold{left:-28px}}.btn.btn-primary{color:#c0caf5;border-color:#c0caf5}@media(hover:hover)and (pointer:fine){.btn.btn-primary:hover{background-color:#c0caf5;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-primary:active{background-color:#c0caf5;color:#16161e}}.btn.btn-secondary{color:#7aa2f7;border-color:#7aa2f7}@media(hover:hover)and (pointer:fine){.btn.btn-secondary:hover{background-color:#7aa2f7;color:#16161e}.btn.btn-secondary:hover.with-icon .ph,.btn.btn-secondary:hover.with-icon .ph-bold{color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-secondary:active{background-color:#7aa2f7;color:#16161e}.btn.btn-secondary:active.with-icon .ph,.btn.btn-secondary:active.with-icon .ph-bold{color:#16161e}}.btn.btn-accent{color:#ff9e64;border-color:#ff9e64}@media(hover:hover)and (pointer:fine){.btn.btn-accent:hover{background-color:#ff9e64;color:#16161e}.btn.btn-accent:hover.with-icon .ph,.btn.btn-accent:hover.with-icon .ph-bold{color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-accent:active{background-color:#ff9e64;color:#16161e}.btn.btn-accent:active.with-icon .ph,.btn.btn-accent:active.with-icon .ph-bold{color:#16161e}}.btn.btn-danger{color:#f7768e;border-color:#f7768e}@media(hover:hover)and (pointer:fine){.btn.btn-danger:hover{background-color:#f7768e;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-danger:active{background-color:#f7768e;color:#16161e}}.btn.btn-warning{color:#e0af68;border-color:#e0af68}@media(hover:hover)and (pointer:fine){.btn.btn-warning:hover{background-color:#e0af68;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-warning:active{background-color:#e0af68;color:#16161e}}.btn.btn-success{color:#9ece6a;border-color:#9ece6a}@media(hover:hover)and (pointer:fine){.btn.btn-success:hover{background-color:#9ece6a;color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-success:active{background-color:#9ece6a;color:#16161e}}.btn.btn-info{color:#bb9af7;border-color:#bb9af7}@media(hover:hover)and (pointer:fine){.btn.btn-info:hover{background-color:#bb9af7;color:#16161e}.btn.btn-info:hover.with-icon .ph,.btn.btn-info:hover.with-icon .ph-bold{color:#16161e}}@media(hover:none)and (pointer:coarse){.btn.btn-info:active{background-color:#bb9af7;color:#16161e}.btn.btn-info:active.with-icon .ph,.btn.btn-info:active.with-icon .ph-bold{color:#16161e}}.btn[disabled]:not(.loading-state){color:#787c99;border-color:#c0caf53d;background-color:#1f2335;cursor:not-allowed;opacity:.72}.btn[disabled]:not(.loading-state).with-icon .ph,.btn[disabled]:not(.loading-state).with-icon .ph-bold{color:#787c99}@media(hover:hover)and (pointer:fine){.btn[disabled]:not(.loading-state):hover{background-color:#1f2335;color:#787c99}.btn[disabled]:not(.loading-state):hover.with-icon .ph,.btn[disabled]:not(.loading-state):hover.with-icon .ph-bold{color:#787c99}}@media(hover:none)and (pointer:coarse){.btn[disabled]:not(.loading-state):active{background-color:#1f2335;color:#787c99}.btn[disabled]:not(.loading-state):active.with-icon .ph,.btn[disabled]:not(.loading-state):active.with-icon .ph-bold{color:#787c99}}.btn[disabled]:not(.loading-state).with-icon:not(.btn-small) .ph,.btn[disabled]:not(.loading-state).with-icon:not(.btn-small) .ph-bold{left:-28px}.btn.btn-small{font-size:13px;font-weight:500;min-height:38px;padding:8px}.btn.btn-small.with-icon{border-left-width:32px}.btn.btn-small.with-icon .ph,.btn.btn-small.with-icon .ph-bold{top:0;left:-40px;font-size:22px}.btn.btn-small.with-icon.loading-state .ph,.btn.btn-small.with-icon.loading-state .ph-bold{font-size:26px}.btn.btn-large{font-size:16px;font-weight:700;min-height:54px;padding:15px 48px}.btn.loading-state{color:#16161e!important;border-color:#c0caf5!important;background-color:#c0caf5!important}.btn.loading-state .ph,.btn.loading-state .ph-bold{font-size:26px;transform-origin:50% 50%;animation:icon_spin 1.2s linear infinite}.btn-icon{display:flex;justify-content:center;align-items:center;width:38px;height:38px;background:0 0;color:#c0caf5;font-size:22px;border:2px solid transparent;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.btn-icon:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.btn-icon:not(.without-hover):hover{color:#e0af68;border-color:#e0af68}}@media(hover:none)and (pointer:coarse){.btn-icon:not(.without-hover):active{color:#e0af68;border-color:#e0af68}}.btn-icon:disabled,.btn-icon[disabled]{color:#787c99;border-color:transparent;background-color:transparent;cursor:not-allowed;opacity:.72}@media(hover:hover)and (pointer:fine){.btn-icon:disabled:not(.without-hover):hover,.btn-icon[disabled]:not(.without-hover):hover{color:#787c99;border-color:transparent}}@media(hover:none)and (pointer:coarse){.btn-icon:disabled:not(.without-hover):active,.btn-icon[disabled]:not(.without-hover):active{color:#787c99;border-color:transparent}}.btn-icon-sm{width:28px;height:28px;font-size:18px}.form-group{width:100%;max-width:600px}.form-group .label{display:flex;flex-direction:column;font-size:15px;width:100%;position:relative;color:#c0caf5}.form-group .label>.ph{position:absolute;color:#c0caf5;left:0;bottom:1px;font-size:26px;height:54px;display:inline-flex;align-items:center;width:46px;justify-content:center;transition-duration:.2s;transition-property:color,left}.form-group .label .input{min-height:54px;font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:500;line-height:1;letter-spacing:.04em;padding:12px 22px;margin-top:8px;border-radius:0;border-width:2px;border-bottom-width:6px;border-style:solid;border-color:#c0caf5;color:#c0caf5;background-color:#1f2335;transition-duration:.2s;transition-timing-function:ease;transition-property:background-color,border-color,color}@media(hover:hover)and (pointer:fine){.form-group .label .input:hover{border-bottom-color:#787c99}}@media(hover:none)and (pointer:coarse){.form-group .label .input:active{border-bottom-color:#787c99}}.form-group .label .input:focus{outline:2px solid #E0AF68;outline-offset:3px;border-color:#7aa2f7;background-color:transparent}.form-group .label .input:disabled{color:#787c99;border-color:#c0caf53d;background:#1f2335;cursor:not-allowed;opacity:.72}.form-group .label .input[readonly]{color:#a9b1d6;border-color:#c0caf53d;background:#c0caf508}.form-group .label .input::-moz-placeholder{color:#787c99}.form-group .label .input::placeholder{color:#787c99}.form-group .label .input::-webkit-search-cancel-button,.form-group .label .input::-webkit-search-decoration,.form-group .label .input::-webkit-search-results-button,.form-group .label .input::-webkit-search-results-decoration{display:none;-webkit-appearance:none}.form-group .label .input[type=date],.form-group .label .input[type=datetime-local],.form-group .label .input[type=month],.form-group .label .input[type=time]{color-scheme:dark;cursor:pointer;min-width:0;padding-right:46px;text-transform:uppercase}.form-group .label .input[type=date]::-webkit-calendar-picker-indicator,.form-group .label .input[type=datetime-local]::-webkit-calendar-picker-indicator,.form-group .label .input[type=month]::-webkit-calendar-picker-indicator,.form-group .label .input[type=time]::-webkit-calendar-picker-indicator{width:46px;height:100%;margin:0;padding:0;background:0 0;cursor:pointer;opacity:0}.form-group .label .input[type=date]::-webkit-datetime-edit,.form-group .label .input[type=datetime-local]::-webkit-datetime-edit,.form-group .label .input[type=month]::-webkit-datetime-edit,.form-group .label .input[type=time]::-webkit-datetime-edit{padding:0}.form-group .label .input[type=date]::-webkit-datetime-edit-fields-wrapper,.form-group .label .input[type=datetime-local]::-webkit-datetime-edit-fields-wrapper,.form-group .label .input[type=month]::-webkit-datetime-edit-fields-wrapper,.form-group .label .input[type=time]::-webkit-datetime-edit-fields-wrapper{color:#c0caf5}.form-group .label textarea.input{height:108px;line-height:1.25;resize:none}.form-group .label .ph+.input,.form-group .label .ph+.select-wrap .select{padding-left:46px}.form-group .label .select-wrap{margin-top:8px}.form-group .label .select{width:100%;height:54px;margin-top:0;appearance:none;-webkit-appearance:none;-moz-appearance:none}.form-group .label .select:focus{outline:0}.form-group .label .select option{color:#c0caf5;background:#1f2335}.form-group .label .select-wrap:after{content:"";position:absolute;right:22px;bottom:18px;transform:translateY(-50%);width:0;height:0;border-left:8px solid transparent;border-right:8px solid transparent;border-top:10px solid #c0caf5;pointer-events:none}.form-group .label.error .input:not(:focus){border-color:#f7768e}.form-group .label.error+.input-info{color:#e0af68}.form-group .label.success .input:not(:focus){border-color:#9ece6a}.form-group .label.success+.input-info{color:#9ece6a}.form-group .label.warning .input:not(:focus){border-color:#e0af68}.form-group .label.warning+.input-info{color:#e0af68}.form-group .input-info{font-size:14px;margin-top:8px}.form-group .input-info .ph{position:relative;top:1px}.form-group .input-info.error{color:#e0af68}.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;width:100%;max-width:760px}.fieldset{width:100%;max-width:760px;margin:0;padding:18px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.legend{padding:5px 8px;color:#16161e;background:#c0caf5;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase}.file-upload{display:inline-flex;align-items:center;gap:8px;min-height:46px;padding:8px 12px;border:2px solid #7aa2f7;border-left-width:6px;color:#7aa2f7;background:#1f2335;font-size:13px;font-weight:700;text-transform:uppercase;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.file-upload input[type=file]{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}@media(hover:hover)and (pointer:fine){.file-upload:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.file-upload:active{color:#16161e;background:#7aa2f7}}.file-upload:focus-within{outline:2px solid #E0AF68;outline-offset:3px}.file-upload-panel{width:100%;max-width:760px;background:#1f2335;border:2px solid rgba(192,202,245,.24);border-left-width:6px}.file-upload-form{display:flex;flex-direction:column;gap:15px;margin:0}.file-upload-header{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;padding:15px 15px 0}.file-upload-heading{display:flex;flex-direction:column;gap:5px;min-width:0}.file-upload-title{margin:0;color:#c0caf5;font-size:16px;font-weight:700;line-height:1.25;text-transform:uppercase}.file-upload-description{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}.file-upload-dropzone{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:15px;margin:0 15px;padding:18px;border:2px dashed #7aa2f7;background:#7aa2f714;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:background,border-color}.file-upload-dropzone input[type=file]{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}@media(hover:hover)and (pointer:fine){.file-upload-dropzone:hover{border-color:#c0caf5;background:#c0caf51a}}@media(hover:none)and (pointer:coarse){.file-upload-dropzone:active{border-color:#c0caf5;background:#c0caf51a}}.file-upload-dropzone:focus-within{outline:2px solid #E0AF68;outline-offset:3px}.file-upload-icon{display:inline-flex;align-items:center;justify-content:center;width:54px;height:54px;color:#16161e;background:#7aa2f7;font-size:26px}.file-upload-body{display:flex;flex-direction:column;gap:5px;min-width:0}.file-upload-primary{color:#c0caf5;font-size:15px;font-weight:700;line-height:1.25;text-transform:uppercase}.file-upload-secondary{color:#a9b1d6;font-size:13px;line-height:1.4}.file-upload-preview{display:grid;grid-template-columns:repeat(auto-fill,minmax(148px,1fr));gap:12px;margin:0 15px}.file-upload-preview[hidden]{display:none}.file-upload-preview-item{position:relative;min-width:0;margin:0;border:2px solid rgba(192,202,245,.24);background:#1f2335}.file-upload-preview-remove{position:absolute;top:8px;right:8px;z-index:1;display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;padding:0;border:2px solid #f7768e;color:#f7768e;background:#1f2335;font-size:18px;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}@media(hover:hover)and (pointer:fine){.file-upload-preview-remove:hover{color:#16161e;background:#f7768e}}@media(hover:none)and (pointer:coarse){.file-upload-preview-remove:active{color:#16161e;background:#f7768e}}.file-upload-preview-remove:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}.file-upload-preview-visual{display:flex;align-items:center;justify-content:center;aspect-ratio:1;background:#1f2335}.file-upload-preview-visual img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.file-upload-preview-type{display:inline-flex;align-items:center;justify-content:center;min-width:54px;min-height:54px;padding:8px;color:#16161e;background:#7aa2f7;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase}.file-upload-preview-item figcaption{display:flex;flex-direction:column;gap:5px;overflow:hidden;padding:8px}.file-upload-preview-name{overflow:hidden;color:#c0caf5;font-size:12px;font-weight:700;line-height:1.25;text-overflow:ellipsis;white-space:nowrap}.file-upload-preview-meta{color:#a9b1d6;font-size:12px;font-weight:700;line-height:1.25;text-transform:uppercase}.file-upload-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px;padding:0 15px 15px}.range{width:100%;max-width:600px;accent-color:#7AA2F7}.range input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100%;height:46px;margin:0;background:0 0;cursor:pointer}.range input[type=range]::-webkit-slider-runnable-track{height:6px;background:#c0caf516;border:2px solid rgba(192,202,245,.24)}.range input[type=range]::-webkit-slider-thumb{width:22px;height:38px;margin-top:-19px;border:2px solid #7aa2f7;background:#7aa2f7;-webkit-appearance:none}.range input[type=range]::-moz-range-track{height:6px;background:#c0caf516;border:2px solid rgba(192,202,245,.24)}.range input[type=range]::-moz-range-thumb{width:22px;height:38px;border:2px solid #7aa2f7;border-radius:0;background:#7aa2f7}@media(max-width:767px){.form-grid{grid-template-columns:1fr}.file-upload-header{flex-direction:column;align-items:stretch}.file-upload-dropzone{grid-template-columns:1fr}.file-upload-actions{justify-content:stretch}.file-upload-actions .btn{width:100%}}.radio{display:inline-flex;flex-direction:row;gap:8px;align-items:center;cursor:pointer}.radio input[type=radio]{display:none}.radio .radio-control{width:22px;height:22px;border-radius:100%;border:3px solid #c0caf5;background:#1f2335;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition-duration:.2s;transition-property:border-color,background}.radio .radio-control:before{content:"";display:block;width:10px;height:10px;border-radius:100%;background:#c0caf5;transform:scale(0);transition-duration:.2s;transition-property:transform,background}@media(hover:hover)and (pointer:fine){.radio:hover .radio-control{border-color:#c0caf5}}@media(hover:none)and (pointer:coarse){.radio:active .radio-control{border-color:#c0caf5}}.radio input[type=radio]:checked+.radio-control{border-color:#c0caf5;background:#c0caf52e}.radio input[type=radio]:checked+.radio-control:before{transform:scale(1)}.radio input[type=radio]:disabled+.radio-control{border-color:#414868;background:#4148681f;opacity:.5}.radio input[type=radio]:disabled:checked+.radio-control:before{background:#414868}.radio input[type=radio]:focus-visible+.radio-control{outline:2px solid #E0AF68;outline-offset:3px}.radio .radio-label{font-size:15px}.radio-group{display:flex;flex-wrap:wrap;gap:12px;align-items:center}.switch{display:inline-flex;flex-direction:row;gap:8px;align-items:center}.switch input[type=checkbox]{display:none}.switch .switch-control{height:16px;width:32px;border:2px solid #c0caf5;position:relative;background:0 0;transition-duration:.2s;transition-property:border-color,background;display:block}.switch .switch-control:before{content:"";display:block;height:20px;width:20px;background:#c0caf5;position:absolute;left:-5px;top:-5px;transition-duration:.2s;transition-property:left,background}@media(hover:hover)and (pointer:fine){.switch:hover .switch-control{background:#414868}}@media(hover:none)and (pointer:coarse){.switch:active .switch-control{background:#414868}}.switch input[type=checkbox]:checked:not(:disabled)+.switch-control{background:#7aa2f7;border-color:#7aa2f7}.switch input[type=checkbox]:checked+.switch-control:before{left:17px}.switch input[type=checkbox]:disabled+.switch-control{border-color:#414868}.switch input[type=checkbox]:focus-visible+.switch-control{outline:2px solid #E0AF68;outline-offset:3px}.switch input[type=checkbox]:disabled+.switch-control:before{background:#414868}.checkbox{display:inline-flex;flex-direction:row;gap:8px;align-items:center;cursor:pointer}.checkbox input[type=checkbox]{display:none}.checkbox .checkbox-control{width:22px;height:22px;border:2px solid #c0caf5;border-bottom-width:6px;background:#1f2335;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition-duration:.2s;transition-property:border-color,background}.checkbox .checkbox-control:before{content:"";display:block;width:10px;height:5px;border-left:2px solid #c0caf5;border-bottom:2px solid #c0caf5;transform:rotate(-45deg) scale(0);opacity:0;margin-top:-2px;transition-duration:.2s;transition-property:transform,opacity,border-color}@media(hover:hover)and (pointer:fine){.checkbox:hover .checkbox-control{border-color:#c0caf5}}@media(hover:none)and (pointer:coarse){.checkbox:active .checkbox-control{border-color:#c0caf5}}.checkbox input[type=checkbox]:checked+.checkbox-control{border-color:#c0caf5;background:#c0caf52e}.checkbox input[type=checkbox]:checked+.checkbox-control:before{transform:rotate(-45deg) scale(1);opacity:1;border-color:#c0caf5}.checkbox input[type=checkbox]:disabled+.checkbox-control{border-color:#414868;background:#4148681f;opacity:.5}.checkbox input[type=checkbox]:disabled:checked+.checkbox-control:before{border-color:#414868}.checkbox input[type=checkbox]:focus-visible+.checkbox-control{outline:2px solid #E0AF68;outline-offset:3px}.checkbox .checkbox-label{font-size:15px}.input-group{display:flex;align-items:stretch;width:100%;max-width:600px;min-height:54px;border:2px solid #c0caf5;border-bottom-width:6px;background:#1f2335;transition-duration:.2s;transition-timing-function:ease;transition-property:border-color,background}.input-group:focus-within{outline:2px solid #E0AF68;outline-offset:3px;border-color:#7aa2f7;background:0 0}.input-group .input-group-action,.input-group .input-group-addon{display:inline-flex;align-items:center;justify-content:center;min-width:54px;padding:0 12px;color:#a9b1d6;background:#c0caf50b;border:0;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:600;text-transform:uppercase}.input-group .input-group-action{color:#c0caf5;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.input-group .input-group-input{flex:1 1 auto;min-width:0;border:0;padding:12px 15px;color:#c0caf5;background:0 0;font-family:IBM Plex Mono,monospace;font-size:15px;font-weight:500;letter-spacing:.04em}.input-group .input-group-input:focus{outline:0}.input-group .input-group-input::-moz-placeholder{color:#787c99}.input-group .input-group-input::placeholder{color:#787c99}.input-group .input-group-input::-webkit-search-cancel-button,.input-group .input-group-input::-webkit-search-decoration,.input-group .input-group-input::-webkit-search-results-button,.input-group .input-group-input::-webkit-search-results-decoration{display:none;-webkit-appearance:none}.input-group .ph,.input-group .ph-bold{font-size:22px}.input-group.input-group-compact{min-height:46px}.input-group.input-group-compact .input-group-action,.input-group.input-group-compact .input-group-addon{min-width:46px}.input-group.input-group-compact .input-group-input{padding:8px 12px;font-size:13px}.search-field{max-width:420px}.repeater .repeater-header{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:12px}.repeater .repeater-title{font-size:15px;font-weight:600;color:#c0caf5}.repeater .repeater-list{display:grid;gap:8px}.repeater .repeater-item{background:#1f2335;border:2px solid rgba(192,202,245,.24);padding:12px;display:grid;grid-template-columns:1fr auto;gap:12px;align-items:start}.repeater .repeater-item-body{width:100%}.repeater .repeater-item-actions{display:flex;align-items:center;gap:8px;padding-top:22px}.repeater.repeater-disabled{opacity:.6;pointer-events:none}.list{display:flex;flex-direction:column;gap:5px;list-style-type:none;padding-left:0}.list .list-item{display:flex;flex-direction:row;align-items:center;gap:8px;margin-left:0}.list.list-ordered{list-style-type:decimal;display:list-item;margin-left:30px}.list.list-ordered .list-item{display:list-item}.list.list-definition{width:100%;max-width:620px;gap:0;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.list.list-definition .list-row{display:grid;grid-template-columns:minmax(120px,.32fr) minmax(0,1fr);gap:15px;align-items:start;padding:12px 15px;border-bottom:2px solid rgba(192,202,245,.08);transition-duration:.2s;transition-timing-function:ease;transition-property:background,border-color}.list.list-definition .list-row .list-term{display:inline-flex;width:-moz-max-content;width:max-content;max-width:100%;margin:0;padding:5px 8px;color:#16161e;background:#c0caf5;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:background,transform}.list.list-definition .list-row .list-desc{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6;transition-duration:.2s;transition-timing-function:ease;transition-property:color,transform}.list.list-definition .list-row:last-child{border-bottom:0}@media(hover:hover)and (pointer:fine){.list.list-definition .list-row:hover{background:#c0caf516}.list.list-definition .list-row:hover .list-term{background:#7aa2f7;transform:translate(5px)}.list.list-definition .list-row:hover .list-desc{color:#c0caf5;transform:translate(5px)}}@media(hover:none)and (pointer:coarse){.list.list-definition .list-row:active{background:#c0caf516}.list.list-definition .list-row:active .list-term{background:#7aa2f7;transform:translate(5px)}.list.list-definition .list-row:active .list-desc{color:#c0caf5;transform:translate(5px)}}.list.list-nav{max-width:420px;width:100%;gap:0}.list.list-nav .list-item{display:flex;flex-direction:column;align-items:flex-start;height:50px;margin:0}.list.list-nav .list-item .list-action{display:flex;justify-content:space-between;align-items:center;width:100%;height:100%;padding:8px 12px;border:2px solid transparent;font-size:15px;background:#1f2335;color:inherit;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:background,border-color,color}.list.list-nav .list-item .list-action:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.list.list-nav .list-item .list-action:hover{background:#7aa2f7;color:#16161e}}@media(hover:none)and (pointer:coarse){.list.list-nav .list-item .list-action:active{background:#7aa2f7;color:#16161e}}.list.list-nav .list-item .list-action .list-label{display:flex;flex-direction:row;gap:8px;align-items:center;letter-spacing:0;font-weight:400}.list.list-nav .list-item .list-action .list-meta{padding:8px;background:#9ece6a;color:#16161e;display:flex}.list.list-nav .list-item.list-item-active .list-action{background:#7aa2f7;color:#16161e;border-color:#7aa2f7}.list.list-actions{width:100%;max-width:420px;gap:22px}.list.list-actions .list-item{justify-content:space-between;align-items:flex-start;padding:12px 0;border-bottom:2px solid rgba(192,202,245,.08)}.list.list-actions .list-item .list-content{display:flex;flex-direction:column;gap:8px}.list.list-actions .list-item .list-content .list-title{font-size:16px;line-height:1}.list.list-actions .list-item .list-content .list-subtitle{color:#787c99}@media(hover:hover)and (pointer:fine){.list.list-actions .list-item:hover .list-title{color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.list.list-actions .list-item:active .list-title{color:#7aa2f7}}@media(max-width:479px){.list.list-definition .list-row{grid-template-columns:1fr;gap:8px}}.badge{position:relative;overflow:hidden;background:#c0caf5;color:#16161e;padding:5px 8px;font-size:13px;font-weight:600;line-height:1;letter-spacing:.04em;text-transform:uppercase;display:inline-flex;align-items:center;min-height:24px;transition-duration:.2s;transition-timing-function:ease;transition-property:filter,transform,border-color,color,background}.badge:after{content:"";position:absolute;inset:0 auto 0 0;width:40%;background:linear-gradient(90deg,transparent,rgba(22,22,30,.16),transparent);opacity:0;pointer-events:none;transform:translate(-120%)}@media(hover:hover)and (pointer:fine){.badge:hover{filter:saturate(1.12);transform:translateY(-1px)}.badge:hover:after{opacity:1;animation:terminal_scan_x .7s ease}}@media(hover:none)and (pointer:coarse){.badge:active{filter:saturate(1.12);transform:translateY(-1px)}.badge:active:after{opacity:1;animation:terminal_scan_x .7s ease}}.badge.badge-success{background:#9ece6a}.badge.badge-warning{background:#e0af68}.badge.badge-danger,.badge.badge-error{background:#f7768e}.badge.badge-info{background:#bb9af7;color:#16161e}.badge.badge-secondary{background:#7aa2f7;color:#16161e}.badge.badge-primary-outline{color:#c0caf5;border:2px solid #c0caf5;background:0 0;padding:3px 8px}.chip-group{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.chip{display:inline-flex;align-items:center;gap:8px;min-height:30px;padding:5px 12px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:12px;font-weight:600;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color,opacity}.chip .ph,.chip .ph-bold{font-size:18px}.chip:before{content:"";display:inline-block;width:7px;height:7px;flex:0 0 auto;background:#787c99;transition-duration:.2s;transition-timing-function:ease;transition-property:background,box-shadow,transform}.chip:has(.ph):before,.chip:has(.ph-bold):before{display:none}.chip .chip-remove{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;margin-right:-5px;border:0;color:inherit;background:0 0;font:inherit;cursor:pointer}.chip .chip-remove:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}.chip.chip-primary{color:#c0caf5;background:#c0caf514;border-color:#c0caf5}.chip.chip-primary:before{background:#c0caf5}.chip.chip-secondary{color:#7aa2f7;background:#7aa2f714;border-color:#7aa2f7}.chip.chip-secondary:before{background:#7aa2f7}.chip.chip-success{color:#9ece6a;background:#9ece6a14;border-color:#9ece6a}.chip.chip-success:before{background:#9ece6a}.chip.chip-warning{color:#e0af68;background:#e0af6814;border-color:#e0af68}.chip.chip-warning:before{background:#e0af68}.chip.chip-danger,.chip.chip-error{color:#f7768e;background:#f7768e14;border-color:#f7768e}.chip.chip-danger:before,.chip.chip-error:before{background:#f7768e}.chip.chip-selected,.chip[aria-pressed=true],.chip[aria-selected=true]{color:#16161e;background:#c0caf5;border-color:#c0caf5}.chip.chip-selected:before,.chip[aria-pressed=true]:before,.chip[aria-selected=true]:before{background:#16161e}.chip.chip-secondary[aria-pressed=true],.chip.chip-secondary[aria-selected=true],.chip.chip-selected.chip-secondary{background:#7aa2f7;border-color:#7aa2f7}.chip.chip-disabled,.chip:disabled{color:#787c99;background:#1f2335;border-color:#c0caf53d;cursor:not-allowed;opacity:.7}.chip.chip-disabled:before,.chip:disabled:before{background:#414868}a.chip,button.chip{cursor:pointer}a.chip:focus-visible,button.chip:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){a.chip:hover,button.chip:hover{color:#c0caf5;background:#c0caf516;border-color:#7aa2f7}a.chip:hover:before,button.chip:hover:before{background:#7aa2f7;animation:terminal_pulse .7s ease;transform:scale(1.12)}}@media(hover:none)and (pointer:coarse){a.chip:active,button.chip:active{color:#c0caf5;background:#c0caf516;border-color:#7aa2f7}a.chip:active:before,button.chip:active:before{background:#7aa2f7;animation:terminal_pulse .7s ease;transform:scale(1.12)}}.tag-input{background:#1f2335;border:2px solid rgba(192,202,245,.24);position:relative}.tag-input .tag-input-wrap{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding:8px 12px;min-height:46px;cursor:text}.tag-input .tag-input-field{flex:1 1 auto;min-width:80px;padding:5px 0;border:0;color:#c0caf5;background:0 0;font-family:IBM Plex Mono,monospace;font-size:13px;line-height:1;outline:0}.tag-input .tag-input-field::-moz-placeholder{color:#787c99;opacity:1}.tag-input .tag-input-field::placeholder{color:#787c99;opacity:1}.tag-input.tag-input-focused{border-color:#c0caf5}.tag-input .tag-input-meta{padding:0 12px 8px;color:#787c99;font-size:12px;line-height:1}.avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;flex:0 0 auto;overflow:hidden;border:2px solid rgba(192,202,245,.24);color:#16161e;background:#c0caf5;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase}.avatar img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.avatar .ph,.avatar .ph-bold{font-size:22px}.avatar .avatar-status{position:absolute;right:-2px;bottom:-2px;width:13px;height:13px;border:2px solid #16161e;background:#787c99;transition-duration:.2s;transition-timing-function:ease;transition-property:background,box-shadow}.avatar.avatar-sm{width:38px;height:38px;font-size:12px}.avatar.avatar-sm .ph,.avatar.avatar-sm .ph-bold{font-size:18px}.avatar.avatar-lg{width:54px;height:54px;font-size:14px}.avatar.avatar-lg .ph,.avatar.avatar-lg .ph-bold{font-size:26px}.avatar.avatar-secondary{background:#7aa2f7}.avatar.avatar-success{background:#9ece6a}.avatar.avatar-warning{background:#e0af68}.avatar.avatar-danger,.avatar.avatar-error{background:#f7768e}.avatar.avatar-outline{color:#c0caf5;background:#1f2335;border-color:#c0caf5}.avatar.is-online .avatar-status{background:#9ece6a;animation:terminal_pulse 1.8s ease infinite}.avatar.is-busy .avatar-status{background:#e0af68}.avatar.is-offline .avatar-status{background:#787c99}.identity{display:inline-flex;align-items:center;gap:12px;min-width:0}.identity-content{display:flex;flex-direction:column;gap:5px;min-width:0}.identity-title{color:#c0caf5;font-size:15px;font-weight:600;line-height:1}.identity-meta{color:#787c99;font-size:13px;line-height:1.4}.avatar-stack{display:inline-flex;align-items:center}.avatar-stack .avatar{margin-right:-8px;border-color:#16161e}.avatar-stack .avatar-stack-count{display:inline-flex;align-items:center;justify-content:center;min-width:46px;height:46px;padding:0 8px;border:2px solid #16161e;color:#16161e;background:#e0af68;font-size:13px;font-weight:700}.table{width:100%;text-align:left;border:2px solid rgba(192,202,245,.24);border-collapse:collapse;background:#1f2335}.table .table-caption{text-align:left;font-size:16px;background:#c0caf5;width:-moz-max-content;width:max-content;color:#16161e;padding:5px 12px;margin-bottom:0;font-weight:700;text-transform:uppercase}.table.table-empty{width:100%}.table.table-empty .is-empty{width:100%;padding:15px;font-size:13px;color:#787c99;text-align:left}.table .table-row td,.table .table-row th{padding:12px 18px;font-size:13px;vertical-align:middle;border-bottom:2px solid rgba(192,202,245,.08)}.table .table-row th{color:#c0caf5;background:#c0caf50a;text-transform:uppercase;letter-spacing:.04em}.table .table-head{border-bottom:2px solid #c0caf5}.table .table-body .table-row{transition-duration:.2s;transition-timing-function:ease;transition-property:background,color}.table .table-body .table-row td{transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}@media(hover:hover)and (pointer:fine){.table .table-body .table-row:hover{background:#7aa2f714}.table .table-body .table-row:hover td:first-child{color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.table .table-body .table-row:active{background:#7aa2f714}.table .table-body .table-row:active td:first-child{color:#7aa2f7}}.table .table-foot td,.table .table-foot th{padding-top:15px}.table.table-compact .table-caption{font-size:14px}.table.table-compact .table-row td,.table.table-compact .table-row th{padding:8px 12px;font-size:12px}.table.table-compact .table-cell-mono{color:#a9b1d6;font-family:IBM Plex Mono,monospace;letter-spacing:0}.table.table-compact .table-cell-actions{width:1%;white-space:nowrap}.table-wrapper{width:100%;overflow-x:auto}.toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:12px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.toolbar .toolbar-group{display:flex;flex-wrap:wrap;align-items:center;gap:8px;min-width:0}.toolbar .toolbar-title{margin:0;font-size:16px;font-weight:700;line-height:1;text-transform:uppercase}.toolbar .toolbar-meta{color:#787c99;font-size:13px}.pagination{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.pagination .pagination-item{display:inline-flex;align-items:center;justify-content:center;min-width:38px;height:38px;padding:0 12px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:600;line-height:1;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color,opacity}.pagination .pagination-item:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.pagination .pagination-item:hover{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.pagination .pagination-item:active{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}.pagination .pagination-item.pagination-item-active,.pagination .pagination-item[aria-current=page]{color:#16161e;background:#c0caf5;border-color:#c0caf5}.pagination .pagination-item.pagination-item-disabled,.pagination .pagination-item:disabled{color:#787c99;background:#1f2335;border-color:#c0caf53d;cursor:not-allowed;opacity:.72}.pagination .pagination-ellipsis{color:#787c99;padding:0 5px}.empty-state{max-width:560px;padding:22px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.empty-state .empty-state-icon{display:inline-flex;align-items:center;justify-content:center;width:54px;height:54px;margin-bottom:15px;color:#16161e;background:#c0caf5;font-size:26px}.empty-state .empty-state-title{margin:0 0 8px;font-size:20px;font-weight:700;text-transform:uppercase}.empty-state .empty-state-text{max-width:440px;margin:0 0 18px;color:#a9b1d6;line-height:1.6}.empty-state .empty-state-actions{display:flex;flex-wrap:wrap;gap:8px}.empty-state.empty-state-error{border-color:#f7768e}.empty-state.empty-state-error .empty-state-icon{background:#f7768e}.skeleton{display:block;position:relative;overflow:hidden;background:#c0caf516}.skeleton:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;transform:translate(-100%);background:linear-gradient(90deg,transparent,rgba(192,202,245,.12),transparent);animation:skeleton_shimmer 1.6s infinite}.skeleton.skeleton-line{width:100%;height:14px}.skeleton.skeleton-title{width:60%;height:22px}.skeleton.skeleton-block{width:100%;height:120px}.skeleton.skeleton-square{width:54px;height:54px}.skeleton-stack{display:flex;flex-direction:column;gap:12px;max-width:520px;padding:15px;border:2px solid rgba(192,202,245,.24);background:#1f2335}@keyframes skeleton_shimmer{to{transform:translate(100%)}}.page-header{position:relative;display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:18px;width:100%;padding:18px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335;overflow:hidden;animation:panel_boot .28s ease both}.page-header:after{content:"";position:absolute;top:0;left:0;width:34%;height:2px;background:linear-gradient(90deg,transparent,#7aa2f7,transparent);opacity:.72;pointer-events:none;transform:translate(-120%)}@media(hover:hover)and (pointer:fine){.page-header:hover:after{animation:terminal_scan_x .9s ease}}@media(hover:none)and (pointer:coarse){.page-header:active:after{animation:terminal_scan_x .9s ease}}.page-header .page-header-content{display:flex;flex-direction:column;gap:8px;min-width:min(100%,320px)}.page-header .page-header-kicker{color:#7aa2f7;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color}.page-header .page-header-title{margin:0;color:#c0caf5;font-size:26px;font-weight:700;line-height:1.15}.page-header .page-header-subtitle{max-width:720px;margin:0;color:#a9b1d6;font-size:15px;line-height:1.6}.page-header .page-header-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px;color:#787c99;font-size:13px}.page-header .page-header-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:8px}.page-header.page-header-compact{align-items:center;padding:15px}.page-header.page-header-compact .page-header-title{font-size:20px}.page-header.page-header-accent{border-color:#7aa2f7;background:#7aa2f70e}.description-list{display:grid;width:100%;max-width:760px;margin:0;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.description-list .description-list-row{display:grid;grid-template-columns:minmax(140px,.36fr) minmax(0,1fr);gap:15px;padding:12px 15px;border-bottom:2px solid rgba(192,202,245,.08);transition-duration:.2s;transition-timing-function:ease;transition-property:background}.description-list .description-list-row:last-child{border-bottom:0}@media(hover:hover)and (pointer:fine){.description-list .description-list-row:hover{background:#c0caf516}.description-list .description-list-row:hover .description-list-term{color:#7aa2f7}.description-list .description-list-row:hover .description-list-value{transform:translate(5px)}}@media(hover:none)and (pointer:coarse){.description-list .description-list-row:active{background:#c0caf516}.description-list .description-list-row:active .description-list-term{color:#7aa2f7}.description-list .description-list-row:active .description-list-value{transform:translate(5px)}}.description-list .description-list-term{margin:0;color:#787c99;font-size:13px;font-weight:600;line-height:1.4;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color}.description-list .description-list-value{display:flex;flex-wrap:wrap;align-items:center;gap:8px;min-width:0;margin:0;color:#c0caf5;font-size:15px;line-height:1.4;transition-duration:.2s;transition-timing-function:ease;transition-property:transform}.description-list .description-list-value-muted{color:#a9b1d6}.description-list.description-list-compact{max-width:520px}.description-list.description-list-compact .description-list-row{grid-template-columns:minmax(112px,.42fr) minmax(0,1fr);gap:12px;padding:8px 12px}.description-list.description-list-compact .description-list-term,.description-list.description-list-compact .description-list-value{font-size:13px}@media(max-width:479px){.description-list .description-list-row{grid-template-columns:1fr;gap:5px}}.steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;width:100%;max-width:900px;margin:0;padding:0;list-style:none}.steps .step{position:relative;display:flex;flex-direction:column;gap:8px;min-height:120px;padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.steps .step-marker{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;color:#c0caf5;border:2px solid rgba(192,202,245,.24);font-size:13px;font-weight:700;line-height:1}.steps .step-title{margin:0;font-size:14px;font-weight:700;line-height:1.25;text-transform:uppercase}.steps .step-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.4}.steps .step-complete{border-color:#9ece6a}.steps .step-complete .step-marker{color:#16161e;background:#9ece6a;border-color:#9ece6a}.steps .step-current{border-color:#7aa2f7}.steps .step-current .step-marker{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}.steps .step-disabled{opacity:.62}.steps.steps-vertical{grid-template-columns:1fr;max-width:520px;gap:0}.steps.steps-vertical .step{min-height:auto;border-bottom-width:0}.steps.steps-vertical .step:last-child{border-bottom-width:2px}@media(max-width:1023px){.steps{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:479px){.steps{grid-template-columns:1fr}}.timeline{display:grid;gap:0;width:100%;max-width:760px;margin:0;padding:0;list-style:none}.timeline .timeline-item{position:relative;display:grid;grid-template-columns:46px minmax(0,1fr);gap:12px;min-height:88px}.timeline .timeline-item:before{content:"";position:absolute;top:46px;bottom:0;left:22px;width:2px;background:#c0caf53d}.timeline .timeline-item:last-child:before{display:none}.timeline .timeline-marker{position:relative;z-index:1;display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#16161e;font-size:18px;transition-duration:.2s;transition-timing-function:ease;transition-property:border-color,background,color,box-shadow,transform}.timeline .timeline-content{min-width:0;padding:0 0 18px}.timeline .timeline-card{padding:15px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335;transition-duration:.2s;transition-timing-function:ease;transition-property:border-color,background,transform}.timeline .timeline-header{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:8px;margin-bottom:8px}.timeline .timeline-title{margin:0;font-size:14px;font-weight:700;line-height:1.25;text-transform:uppercase}.timeline .timeline-time{color:#787c99;font-size:12px;font-family:IBM Plex Mono,monospace;line-height:1.4}.timeline .timeline-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.4}.timeline .timeline-meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.timeline .timeline-item-success .timeline-card,.timeline .timeline-item-success .timeline-marker{border-color:#9ece6a}.timeline .timeline-item-success .timeline-marker{color:#16161e;background:#9ece6a}.timeline .timeline-item-warning .timeline-card,.timeline .timeline-item-warning .timeline-marker{border-color:#e0af68}.timeline .timeline-item-warning .timeline-marker{color:#16161e;background:#e0af68}.timeline .timeline-item-danger .timeline-card,.timeline .timeline-item-danger .timeline-marker,.timeline .timeline-item-error .timeline-card,.timeline .timeline-item-error .timeline-marker{border-color:#f7768e}.timeline .timeline-item-danger .timeline-marker,.timeline .timeline-item-error .timeline-marker{color:#16161e;background:#f7768e}@media(hover:hover)and (pointer:fine){.timeline .timeline-item:hover .timeline-marker{box-shadow:0 0 0 4px #7aa2f724;transform:scale(1.04)}.timeline .timeline-item:hover .timeline-card{background:#c0caf516;transform:translate(5px)}}@media(hover:none)and (pointer:coarse){.timeline .timeline-item:active .timeline-marker{box-shadow:0 0 0 4px #7aa2f724;transform:scale(1.04)}.timeline .timeline-item:active .timeline-card{background:#c0caf516;transform:translate(5px)}}.activity-log{display:grid;width:100%;max-width:720px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.activity-log .activity-log-row{display:grid;grid-template-columns:minmax(120px,.24fr) minmax(0,1fr) auto;gap:12px;align-items:center;padding:12px 15px;border-bottom:2px solid rgba(192,202,245,.08);transition-duration:.2s;transition-timing-function:ease;transition-property:background}.activity-log .activity-log-row:last-child{border-bottom:0}@media(hover:hover)and (pointer:fine){.activity-log .activity-log-row:hover{background:#c0caf516}}@media(hover:none)and (pointer:coarse){.activity-log .activity-log-row:active{background:#c0caf516}}.activity-log .activity-log-time{color:#787c99;font-family:IBM Plex Mono,monospace;font-size:12px}.activity-log .activity-log-title{color:#c0caf5;font-size:13px;font-weight:600;line-height:1.4}@media(max-width:479px){.activity-log .activity-log-row{grid-template-columns:1fr;gap:8px}}.accordion{display:grid;width:100%;max-width:760px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.accordion-item{border-bottom:2px solid rgba(192,202,245,.08);overflow:hidden}.accordion-item:last-child{border-bottom:0}.accordion-item[open] .accordion-summary{color:#16161e;background:#c0caf5}.accordion-item[open] .accordion-icon{transform:rotate(180deg)}.accordion-summary{display:flex;width:100%;align-items:center;justify-content:space-between;gap:12px;min-height:46px;padding:12px 15px;border:0;color:#c0caf5;background:0 0;cursor:pointer;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.accordion-summary::-webkit-details-marker{display:none}.accordion-summary::marker{content:""}.accordion-summary:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.accordion-summary:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.accordion-summary:active{color:#16161e;background:#7aa2f7}}.accordion-summary-content{display:flex;align-items:center;gap:8px;min-width:0}.accordion-icon{flex:0 0 auto;font-size:18px;transition-duration:.2s;transition-property:transform}.accordion-panel{overflow:hidden;padding:15px;color:#a9b1d6;font-size:13px;line-height:1.6;transition-duration:.28s;transition-timing-function:ease;transition-property:height,opacity,transform}.accordion-panel p{margin-top:0}.accordion-panel p:last-child{margin-bottom:0}.disclosure{max-width:520px;border:2px solid rgba(192,202,245,.24);background:#1f2335}.disclosure .accordion-summary{min-height:38px;padding:8px 12px}.disclosure .accordion-panel{padding:12px}.tabs{width:100%;max-width:900px}.tabs-list{display:flex;align-items:stretch;gap:0;max-width:100%;overflow-x:auto;scrollbar-width:thin}.tab{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:12px 15px;border:0;border-right:2px solid rgba(192,202,245,.08);border-radius:0;color:#a9b1d6;background:0 0;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:700;line-height:1;text-transform:uppercase;white-space:nowrap;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,opacity}.tab .ph,.tab .ph-bold{font-size:18px}.tab:focus-visible{outline:2px solid #E0AF68;outline-offset:3px;z-index:1}@media(hover:hover)and (pointer:fine){.tab:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.tab:active{color:#16161e;background:#7aa2f7}}.tab:disabled,.tab[aria-disabled=true]{color:#787c99;cursor:not-allowed;opacity:.62}@media(hover:hover)and (pointer:fine){.tab:disabled:hover,.tab[aria-disabled=true]:hover{color:#787c99;background:0 0}}@media(hover:none)and (pointer:coarse){.tab:disabled:active,.tab[aria-disabled=true]:active{color:#787c99;background:0 0}}.tab-active,.tab[aria-selected=true]{color:#16161e;background:#c0caf5}.tab-panel{display:none}.tab-panel p{margin-top:0}.tab-panel p:last-child{margin-bottom:0}.tab-panel-active{display:block}.tabs-compact{max-width:620px}.tabs-compact .tabs-list{border-left-width:2px}.tabs-compact .tab{min-height:38px;padding:8px 12px}.tabs-vertical{grid-template-columns:minmax(180px,240px) minmax(0,1fr);align-items:start}.tabs-vertical .tabs-list{flex-direction:column;overflow-x:visible}.tabs-vertical .tab{justify-content:flex-start;border-right:0;border-bottom:2px solid rgba(192,202,245,.08);text-align:left}@media(max-width:767px){.tabs-vertical{grid-template-columns:1fr}.tabs-vertical .tabs-list{flex-direction:row;overflow-x:auto}.tabs-vertical .tab{justify-content:center;border-right:2px solid rgba(192,202,245,.08);border-bottom:0;text-align:center}}.drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;display:flex;justify-content:flex-end;pointer-events:none}.drawer .drawer-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1010;background:#16161e;opacity:0;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity;pointer-events:auto}.drawer .drawer-panel{position:relative;z-index:1020;width:min(460px,100vw - 18px);min-height:100vh;display:flex;flex-direction:column;gap:15px;background:#16161e;border-left:2px solid #c0caf5;box-shadow:-18px 0 42px #16161e61;opacity:0;transform:translate(100%);transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,transform;pointer-events:auto}.drawer .drawer-header{display:flex;align-items:center;justify-content:space-between;padding-right:15px;border-bottom:2px solid rgba(192,202,245,.24)}.drawer .drawer-title{margin:0;padding:12px 15px;background:#c0caf5;color:#16161e;text-transform:uppercase;letter-spacing:.04em}.drawer .drawer-body{flex:1;overflow-y:auto;padding:18px}.drawer .drawer-footer{padding:18px;border-top:2px solid rgba(192,202,245,.24)}.drawer .drawer-footer .actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:12px;width:100%}.drawer.drawer-left{justify-content:flex-start}.drawer.drawer-left .drawer-panel{border-left:0;border-right:2px solid #c0caf5;box-shadow:18px 0 42px #16161e61;transform:translate(-100%)}.drawer.a-show .drawer-backdrop{opacity:.82}.drawer.a-show .drawer-panel{opacity:1;transform:translate(0)}.drawer.a-hide .drawer-backdrop{opacity:0}.drawer.a-hide .drawer-panel{opacity:0;transform:translate(100%)}.drawer.a-hide.drawer-left .drawer-panel{transform:translate(-100%)}.drawer-preview{display:grid;grid-template-columns:minmax(0,1fr) minmax(180px,280px);gap:18px;align-items:stretch;padding:18px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#1f2335}.drawer-preview .drawer-preview-content{display:flex;flex-direction:column;gap:12px}.drawer-preview .drawer-preview-panel{display:flex;flex-direction:column;gap:12px;padding:15px;border:2px solid #7aa2f7;background:#1f2335}.drawer-preview .drawer-preview-title{margin:0;color:#7aa2f7;font-size:14px;text-transform:uppercase}.drawer-preview .drawer-preview-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}@media(max-width:720px){.drawer-preview{grid-template-columns:1fr}}.nav-topbar{position:sticky;top:0;z-index:900;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;min-height:58px;border-bottom:2px solid rgba(192,202,245,.24);background:#16161ef5;box-shadow:0 10px 28px #16161e42}.nav-topbar-toggle{display:inline-flex;align-items:center;align-self:stretch;gap:8px;min-width:150px;padding:0 15px;border:0;border-right:2px solid rgba(192,202,245,.24);color:#c0caf5;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:700;text-transform:uppercase;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.nav-topbar-toggle .ph{color:#7aa2f7;font-size:22px}.nav-topbar-toggle:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.nav-topbar-toggle:hover{color:#16161e;background:#7aa2f7}.nav-topbar-toggle:hover .ph{color:#16161e}}@media(hover:none)and (pointer:coarse){.nav-topbar-toggle:active{color:#16161e;background:#7aa2f7}.nav-topbar-toggle:active .ph{color:#16161e}}.nav-topbar-brand{display:inline-flex;align-items:center;gap:8px;min-width:0;padding:0 15px;color:#c0caf5;font-size:13px;font-weight:700;text-transform:uppercase}.nav-topbar-brand img{width:22px;height:22px}.nav-topbar-current{min-width:160px;margin-right:15px;padding:5px 8px;border:2px solid rgba(192,202,245,.24);color:#a9b1d6;background:#1f2335;font-size:12px;font-weight:700;text-align:center;text-transform:uppercase}.nav-drawer-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:910;background:#16161e;opacity:0;pointer-events:none;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity}.nav-drawer{position:fixed;inset:0 auto 0 0;z-index:920;display:flex;flex-direction:column;width:min(380px,100vw);max-height:100vh;border-right:2px solid #c0caf5;background:#1f2335;box-shadow:18px 0 42px #16161e61;opacity:0;overflow:hidden;pointer-events:none;transform:translate(-100%);transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,transform}.nav-drawer.is-open{opacity:1;pointer-events:auto;transform:translate(0)}.nav-drawer-header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px;border-bottom:2px solid rgba(192,202,245,.24)}.nav-drawer-title{display:inline-flex;padding:8px 12px;color:#16161e;background:#c0caf5;font-size:13px;font-weight:700;text-transform:uppercase}.nav-drawer-subtitle{margin-top:8px;color:#787c99;font-size:12px;font-weight:700;text-transform:uppercase}.nav-drawer-close{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;padding:0;border:2px solid rgba(192,202,245,.24);color:#c0caf5;background:0 0;font-size:22px;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.nav-drawer-close:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.nav-drawer-close:hover{color:#16161e;background:#f7768e;border-color:#f7768e}}@media(hover:none)and (pointer:coarse){.nav-drawer-close:active{color:#16161e;background:#f7768e;border-color:#f7768e}}.nav-drawer-body{flex:1;overflow-y:auto;overscroll-behavior:contain;padding:12px;scrollbar-width:thin;scrollbar-color:#7AA2F7 #1F2335}.nav-drawer-body::-webkit-scrollbar{width:8px}.nav-drawer-body::-webkit-scrollbar-track{background:#1f2335}.nav-drawer-body::-webkit-scrollbar-thumb{background:#7aa2f7}.nav-drawer-body .list.list-nav{max-width:none}.nav-drawer-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px;border-top:2px solid rgba(192,202,245,.24);color:#787c99;background:#1f2335;font-size:12px;font-weight:700;text-transform:uppercase}.nav-drawer-footer .profile-identity{display:block;text-decoration:none;color:inherit;min-width:0;flex:1 1 auto;overflow:hidden}@media(hover:hover)and (pointer:fine){.nav-drawer-footer .profile-identity:hover{color:inherit}}@media(hover:none)and (pointer:coarse){.nav-drawer-footer .profile-identity:active{color:inherit}}.nav-drawer-open{overflow:hidden}.nav-drawer-open .nav-drawer-backdrop{opacity:.82;pointer-events:auto}@media(max-width:767px){.nav-topbar-toggle{min-width:54px;padding:0 12px}.nav-topbar-brand{padding-right:12px;padding-left:12px}.nav-topbar-current{max-width:38vw;min-width:0;margin-right:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-drawer{width:100vw;border-right:0}}.nav-shell-preview{width:100%;max-width:900px;overflow:hidden;border:2px solid rgba(192,202,245,.24);border-left-width:6px;background:#16161e}.nav-shell-preview-topbar{position:relative;z-index:0;min-height:52px;box-shadow:none}.nav-shell-preview-body{display:grid;grid-template-columns:280px minmax(0,1fr);min-height:320px}.nav-shell-preview-drawer{position:relative;z-index:0;inset:auto;width:auto;max-height:none;opacity:1;pointer-events:auto;transform:none;box-shadow:none}.nav-shell-preview-content{display:flex;flex-direction:column;justify-content:center;gap:12px;min-width:0;padding:18px;border-left:2px solid rgba(192,202,245,.24);background:#1f2335}.nav-shell-preview-content h3{margin:0;color:#c0caf5;font-size:20px;text-transform:uppercase}.nav-shell-preview-content p{max-width:360px;margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}@media(max-width:767px){.nav-shell-preview-body{grid-template-columns:1fr}.nav-shell-preview-content{min-height:180px;border-top:2px solid rgba(192,202,245,.24);border-left:0}}.toast{position:fixed;z-index:1100;bottom:-100px;right:15px;max-width:420px;background:#1f2335;border:2px solid #c0caf5;border-left-width:6px;padding:0;opacity:0;overflow:hidden;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,bottom}.toast.a-show{bottom:15px;opacity:1}.toast.a-hide{bottom:-45px;opacity:0}.toast .toast-content{display:flex;flex-direction:column;gap:0;padding:12px 48px 12px 15px}.toast .toast-content .toast-header{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:700;text-transform:uppercase;color:#c0caf5;line-height:1}.toast .toast-content .toast-header .ph{font-size:22px;flex-shrink:0}.toast .toast-content .toast-text{font-size:13px;padding:8px 0 0;margin:0;color:#a9b1d6;line-height:1.4}.toast .toast-close{position:absolute;top:5px;right:8px;color:#c0caf5;width:38px;height:38px;border-color:transparent;background:0 0}.toast .toast-progress{height:3px;width:100%;background:#16161e;overflow:hidden;margin-top:1px}.toast .toast-progress .toast-progress-bar{height:100%;width:100%;transform-origin:left;animation:toast-progress linear forwards;background:#c0caf5}.toast.toast-info{border-color:#bb9af7;background:#bb9af72e}.toast.toast-info .toast-header .ph{color:#bb9af7}.toast.toast-info .toast-progress-bar{background:#bb9af7}.toast.toast-success{border-color:#9ece6a;background:#9ece6a2e}.toast.toast-success .toast-header .ph{color:#9ece6a}.toast.toast-success .toast-progress-bar{background:#9ece6a}.toast.toast-warning{border-color:#e0af68;background:#e0af682e}.toast.toast-warning .toast-header .ph{color:#e0af68}.toast.toast-warning .toast-progress-bar{background:#e0af68}.toast.toast-danger{border-color:#f7768e;background:#f7768e2e}.toast.toast-danger .toast-header .ph{color:#f7768e}.toast.toast-danger .toast-progress-bar{background:#f7768e}@keyframes toast-progress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.card{position:relative;max-width:340px;width:-moz-max-content;width:max-content;overflow:hidden;background:#1f2335;border:2px solid #c0caf5}.card .card-title{color:#16161e;background:#c0caf5;padding:8px 12px;font-weight:700;text-transform:uppercase}.card .card-content{padding:15px;height:100%}.card .card-content .card-thumb{display:block;width:min(68%,190px);margin:18px auto 22px}.card .card-content p{margin-top:8px;margin-bottom:0}.card .card-footer{padding:8px 15px 15px}.card.status-card{max-width:220px;overflow:hidden}.card.status-card .status-icon-container{position:relative}.card.status-card .status-icon-container .status-indicator{position:absolute;top:-15px;left:-5px;font-size:22px;color:#f7768e}.card.status-card .status-icon-container .status-indicator.status-online{color:#9ece6a}.card.status-card .status-icon-container .status-icon{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;font-size:56px;height:108px;width:100%}.card.status-card .card-title{display:flex;width:100%;font-size:14px;font-weight:700;align-items:center;flex-direction:row;flex-wrap:nowrap;justify-content:space-between}.card.status-card .status-name{font-size:13px;line-height:1.4}.card.status-card.card-success{border-color:#9ece6a}.card.status-card.card-success .card-title,.card.status-card.card-success .modal-title,.card.status-card.card-success .toast-title{color:#16161e;background:#9ece6a}.card.status-card.card-success .status-icon{color:#9ece6a}.card.status-card.card-warning{border-color:#e0af68}.card.status-card.card-warning .card-title,.card.status-card.card-warning .modal-title,.card.status-card.card-warning .toast-title{color:#16161e;background:#e0af68}.card.status-card.card-warning .status-icon{color:#e0af68}.card.status-card.card-info{border-color:#bb9af7}.card.status-card.card-info .card-title,.card.status-card.card-info .modal-title,.card.status-card.card-info .toast-title{color:#16161e;background:#bb9af7}.card.status-card.card-info .status-icon{color:#bb9af7}.card.status-card.card-secondary{border-color:#7aa2f7}.card.status-card.card-secondary .card-title,.card.status-card.card-secondary .modal-title,.card.status-card.card-secondary .toast-title{color:#16161e;background:#7aa2f7}.card.status-card.card-secondary .status-icon{color:#7aa2f7}.card.status-card.card-danger,.card.status-card.card-error{border-color:#f7768e}.card.status-card.card-danger .card-title,.card.status-card.card-danger .modal-title,.card.status-card.card-danger .toast-title,.card.status-card.card-error .card-title,.card.status-card.card-error .modal-title,.card.status-card.card-error .toast-title{color:#16161e;background:#f7768e}.card.status-card.card-danger .status-icon,.card.status-card.card-error .status-icon{color:#f7768e}.card.metric-card{max-width:320px;border-color:#c0caf53d}.card.metric-card .card-content{display:flex;flex-direction:column;gap:15px}.card.metric-card .metric-card-header{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.card.metric-card .metric-card-label{margin:0;color:#a9b1d6;font-size:13px;font-weight:600;text-transform:uppercase}.card.metric-card .metric-card-icon{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;color:#16161e;background:#7aa2f7;font-size:22px}.card.metric-card .metric-card-value{margin:0;color:#c0caf5;font-size:34px;font-weight:700;line-height:1.15}.card.metric-card .metric-card-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px;color:#787c99;font-size:13px}.card.metric-card .metric-card-delta{color:#9ece6a;font-weight:700}.card.metric-card .metric-card-delta.metric-card-delta-negative{color:#f7768e}.card.card-horizontal{max-width:none;display:flex;flex-direction:row;align-items:stretch;overflow:hidden}.card.card-horizontal .card-media{flex:0 0 20%;min-width:80px;max-width:160px;max-height:160px;overflow:hidden;position:relative;aspect-ratio:1;align-self:start}.card.card-horizontal .card-media img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;display:block}.card.card-horizontal .card-body{flex:1 1 auto;display:flex;flex-direction:column;padding:15px;gap:12px}.card.card-horizontal .card-title{padding:0;background:0 0;color:#c0caf5;font-size:16px;font-weight:700;text-transform:none;line-height:1.25}.card.card-horizontal .card-title a{color:inherit;text-decoration:none}.card.card-horizontal .card-content{padding:0;height:auto}.card.card-horizontal .card-content p{margin:0}.card.card-horizontal .card-footer{padding:0;display:flex;flex-wrap:wrap;align-items:center;gap:12px;color:#a9b1d6;font-size:13px}.card.action-card{max-width:360px;border-color:#7aa2f7}.card.action-card .card-content{display:flex;flex-direction:column;gap:15px}.card.action-card .action-card-kicker{display:inline-flex;width:-moz-max-content;width:max-content;padding:5px 8px;color:#16161e;background:#7aa2f7;font-size:12px;font-weight:700;line-height:1;text-transform:uppercase}.card.action-card .action-card-title{margin:0;font-size:20px;font-weight:700;line-height:1.25;text-transform:uppercase}.card.action-card .action-card-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}.card.action-card .action-card-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}.card.login-card{max-width:100%;width:460px;border-color:#c0caf5}.card.login-card .login-card-header{display:flex;align-items:center;justify-content:flex-start;gap:12px;padding:12px}.card.login-card .login-card-logo{display:block;width:auto;max-height:40px}.card.login-card .login-card-logo-icon{font-size:56px;color:#c0caf5}.card.login-card .login-card-title{font-size:20px;font-weight:700;text-transform:uppercase}.card.login-card .login-card-form{display:flex;flex-direction:column;gap:15px}.card.login-card .login-card-submit{width:-moz-max-content;width:max-content;margin-top:8px}.card.login-card .form-group{margin-bottom:0}.card.login-card .login-card-links{display:flex;justify-content:space-between;gap:12px;margin-top:8px;font-size:13px}.card.login-card .login-card-link{color:#a9b1d6;text-decoration:none}@media(hover:hover)and (pointer:fine){.card.login-card .login-card-link:hover{color:#c0caf5;text-decoration:underline}}@media(hover:none)and (pointer:coarse){.card.login-card .login-card-link:active{color:#c0caf5;text-decoration:underline}}.card.login-card .login-card-error{margin-bottom:8px}.card.user-card{max-width:320px}.card.user-card .user-card-body{display:flex;flex-direction:column;align-items:center;gap:15px;padding:18px;text-align:center}.card.user-card .identity{flex-direction:column;align-items:center;gap:15px}.card.user-card .identity .avatar{width:64px;height:64px;font-size:20px}.card.user-card .identity .identity-content{align-items:center;text-align:center}.card.user-card .user-card-role{color:#a9b1d6;font-size:13px;margin-top:5px}.card.user-card .user-card-actions{display:flex;gap:8px}.card.user-card-compact{max-width:none}.card.user-card-compact .user-card-body{flex-direction:row;justify-content:space-between;align-items:center;padding:12px 15px;text-align:left}.card.user-card-compact .identity{flex-direction:row;gap:12px}.card.user-card-compact .identity .avatar{width:38px;height:38px;font-size:13px}.card.user-card-compact .identity .identity-content{align-items:flex-start}.card.user-card-compact .user-card-actions{display:flex;gap:5px}.modal{position:fixed;top:0;bottom:0;left:0;right:0;z-index:1000;display:flex;flex-direction:column;align-items:center;justify-content:center}.modal .modal-backdrop{position:fixed;z-index:1010;top:0;bottom:0;left:0;right:0;background:#16161e;opacity:0;transition-duration:.25s;transition-property:opacity}.modal .modal-dialog{position:relative;z-index:1020;width:100%;max-width:960px;margin:200px 18px 18px;height:auto;max-height:calc(100vh - 48px);padding:0;display:flex;flex-direction:column;gap:0;opacity:0;transition-duration:.28s;transition-timing-function:ease;transition-property:opacity,margin-top}.modal .modal-dialog .modal-header{display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:15px}.modal .modal-dialog .modal-header .modal-title{padding:12px 15px;background:#c0caf5;color:#16161e;text-transform:uppercase;letter-spacing:.04em}.modal .modal-dialog .modal-header .modal-close{flex:0 0 auto;color:#c0caf5;border-color:#c0caf53d;background:#16161e}.modal .modal-dialog .modal-panel{min-height:200px;display:flex;flex-direction:column;gap:15px;overflow:hidden;background:#16161e;border:2px solid #c0caf5;border-left-width:6px}.modal .modal-dialog .modal-body{max-height:700px;overflow-y:auto;padding:18px}.modal .modal-dialog .modal-footer{padding:18px}.modal .modal-dialog .modal-footer .actions{display:flex;flex-direction:row;justify-content:flex-end;gap:15px;width:100%}.modal.a-show .modal-backdrop{opacity:1}.modal.a-show .modal-dialog{opacity:1;margin-top:0}.modal.a-hide .modal-backdrop{opacity:0}.modal.a-hide .modal-dialog{opacity:0;margin-top:-200px}.alert{position:relative;overflow:hidden;margin-bottom:12px;padding:12px 15px;border:2px solid transparent;border-left-style:solid;border-left-width:6px;background:#1f2335;color:#c0caf5;font-weight:500;line-height:1.4;transition-duration:.2s;transition-timing-function:ease;transition-property:background,color,border-color}.alert:after{content:"";position:absolute;inset:0 auto 0 0;width:36%;background:linear-gradient(90deg,transparent,rgba(192,202,245,.12),transparent);opacity:0;pointer-events:none;transform:translate(-120%)}@media(hover:hover)and (pointer:fine){.alert:hover:after{opacity:1;animation:terminal_scan_x .8s ease}}@media(hover:none)and (pointer:coarse){.alert:active:after{opacity:1;animation:terminal_scan_x .8s ease}}.alert.alert-primary{border-color:#c0caf5;background:#c0caf51a;color:#c0caf5}.alert.alert-success{border-color:#9ece6a;background:#9ece6a1a;color:#9ece6a}.alert.alert-secondary{border-color:#7aa2f7;background:#7aa2f71a;color:#7aa2f7}.alert.alert-info{border-color:#bb9af7;background:#bb9af71a;color:#c0caf5}.alert.alert-warning{border-color:#e0af68;background:#e0af681a;color:#e0af68}.alert.alert-danger,.alert.alert-error{border-color:#f7768e;background:#f7768e1a;color:#f7768e}.advanced-select-container{position:relative;height:0}.advanced-select{position:absolute;z-index:100;top:6px;width:100%;height:auto;max-height:200px;overflow-y:auto;background:#16161e;border:2px solid #c0caf5;border-left-width:6px;margin-top:20px;opacity:0;visibility:hidden;transition-property:opacity,margin-top,visibility;transition-duration:.2s;transition-timing-function:ease}.advanced-select.a-show{opacity:1;margin-top:0;visibility:visible}.advanced-select .popup-options-container .not-found{width:100%;padding:15px;text-align:center;display:none}.advanced-select .popup-options-container .not-found.show{display:block}.advanced-select .popup-options-container .options{width:100%;display:none}.advanced-select .popup-options-container .options.show{display:block}.advanced-select .popup-options-container .options .option{padding:8px 15px;transition-property:color,background;transition-duration:.15s}.advanced-select .popup-options-container .options .option.hide{display:none}.advanced-select .popup-options-container .options .option.focus,.advanced-select .popup-options-container .options .option:hover{color:#16161e;background:#e0af68}.component.editable-string-component .editable-string-content{display:flex;flex-direction:row;align-items:center;gap:8px;font-size:inherit}.component.editable-string-component .editable-string-content .editable-string{font-size:inherit;border-bottom:2px solid rgba(192,202,245,.24)}@media(hover:hover)and (pointer:fine){.component.editable-string-component .apply-changes-btn:hover,.component.editable-string-component .cancel-changes-btn:hover,.component.editable-string-component .edit-text-btn:hover{color:#16161e;background:#e0af68}}@media(hover:none)and (pointer:coarse){.component.editable-string-component .apply-changes-btn:active,.component.editable-string-component .cancel-changes-btn:active,.component.editable-string-component .edit-text-btn:active{color:#16161e;background:#e0af68}}.component.editable-string-component .apply-changes-btn{color:#e0af68}.component.editable-string-component .editable-string-form{display:flex;flex-direction:row;align-items:center;gap:8px}.component.editable-string-component .editable-string-form .form-group{max-width:260px;margin:0}.component.editable-string-component .editable-string-form .form-group .input{padding:8px 15px}.tabs{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin-bottom:15px}.tabs .tab{display:inline-flex;align-items:center;min-height:38px;padding:8px 12px;border:2px solid rgba(192,202,245,.24);border-left-width:6px;color:#a9b1d6;background:#1f2335;font-family:IBM Plex Mono,monospace;font-size:13px;font-weight:600;line-height:1;text-transform:uppercase;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background,border-color}.tabs .tab:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.tabs .tab:hover{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}@media(hover:none)and (pointer:coarse){.tabs .tab:active{color:#16161e;background:#7aa2f7;border-color:#7aa2f7}}.tabs .tab.tab-active,.tabs .tab[aria-selected=true]{color:#16161e;background:#c0caf5;border-color:#c0caf5}.dropdown,.popover{position:relative;display:inline-flex}.dropdown-menu,.popover-panel,.tooltip-panel{z-index:40;background:#1f2335;border:2px solid rgba(192,202,245,.24);border-left-width:6px;box-shadow:0 14px 36px #16161e5c}.dropdown-menu,.popover-panel{position:absolute;top:calc(100% + 8px);left:0;min-width:220px;display:none;transform-origin:top left}.dropdown.is-open .dropdown-menu,.popover.is-open .popover-panel{display:block;animation:overlay_reveal .2s ease both}.dropdown-menu{padding:5px}.dropdown-menu .dropdown-item{display:flex;align-items:center;gap:8px;width:100%;min-height:38px;padding:8px 12px;border:0;color:#c0caf5;background:0 0;font-family:IBM Plex Mono,monospace;font-size:13px;text-align:left;cursor:pointer;transition-duration:.2s;transition-timing-function:ease;transition-property:color,background}.dropdown-menu .dropdown-item .ph,.dropdown-menu .dropdown-item .ph-bold{font-size:18px}.dropdown-menu .dropdown-item:focus-visible{outline:2px solid #E0AF68;outline-offset:3px}@media(hover:hover)and (pointer:fine){.dropdown-menu .dropdown-item:hover{color:#16161e;background:#7aa2f7}}@media(hover:none)and (pointer:coarse){.dropdown-menu .dropdown-item:active{color:#16161e;background:#7aa2f7}}.dropdown-menu .dropdown-item.dropdown-item-danger{color:#f7768e}@media(hover:hover)and (pointer:fine){.dropdown-menu .dropdown-item.dropdown-item-danger:hover{color:#16161e;background:#f7768e}}@media(hover:none)and (pointer:coarse){.dropdown-menu .dropdown-item.dropdown-item-danger:active{color:#16161e;background:#f7768e}}.popover-panel{width:min(320px,100vw - 22px);padding:15px}.popover-panel .popover-title{margin:0 0 8px;font-size:14px;font-weight:700;text-transform:uppercase}.popover-panel .popover-text{margin:0;color:#a9b1d6;font-size:13px;line-height:1.6}.tooltip{position:relative;display:inline-flex}.tooltip-panel{position:absolute;left:50%;bottom:calc(100% + 8px);width:-moz-max-content;width:max-content;max-width:260px;padding:8px 12px;color:#c0caf5;font-size:12px;line-height:1.4;transform:translate(-50%);opacity:0;visibility:hidden;pointer-events:none;transition-duration:.15s;transition-timing-function:ease;transition-property:opacity,visibility}.tooltip.is-open .tooltip-panel,.tooltip:focus-within .tooltip-panel,.tooltip:hover .tooltip-panel{opacity:1;visibility:visible;animation:tooltip_reveal .15s ease both}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.g-0{gap:0!important}.gx-0{-moz-column-gap:0!important;column-gap:0!important}.gy-0{row-gap:0!important}.m-1{margin:5px!important}.mt-1{margin-top:5px!important}.mr-1{margin-right:5px!important}.mb-1{margin-bottom:5px!important}.ml-1{margin-left:5px!important}.mx-1{margin-left:5px!important;margin-right:5px!important}.my-1{margin-top:5px!important;margin-bottom:5px!important}.p-1{padding:5px!important}.pt-1{padding-top:5px!important}.pr-1{padding-right:5px!important}.pb-1{padding-bottom:5px!important}.pl-1{padding-left:5px!important}.px-1{padding-left:5px!important;padding-right:5px!important}.py-1{padding-top:5px!important;padding-bottom:5px!important}.g-1{gap:5px!important}.gx-1{-moz-column-gap:5px!important;column-gap:5px!important}.gy-1{row-gap:5px!important}.m-2{margin:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.mx-2{margin-left:8px!important;margin-right:8px!important}.my-2{margin-top:8px!important;margin-bottom:8px!important}.p-2{padding:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2{padding-left:8px!important}.px-2{padding-left:8px!important;padding-right:8px!important}.py-2{padding-top:8px!important;padding-bottom:8px!important}.g-2{gap:8px!important}.gx-2{-moz-column-gap:8px!important;column-gap:8px!important}.gy-2{row-gap:8px!important}.m-3{margin:12px!important}.mt-3{margin-top:12px!important}.mr-3{margin-right:12px!important}.mb-3{margin-bottom:12px!important}.ml-3{margin-left:12px!important}.mx-3{margin-left:12px!important;margin-right:12px!important}.my-3{margin-top:12px!important;margin-bottom:12px!important}.p-3{padding:12px!important}.pt-3{padding-top:12px!important}.pr-3{padding-right:12px!important}.pb-3{padding-bottom:12px!important}.pl-3{padding-left:12px!important}.px-3{padding-left:12px!important;padding-right:12px!important}.py-3{padding-top:12px!important;padding-bottom:12px!important}.g-3{gap:12px!important}.gx-3{-moz-column-gap:12px!important;column-gap:12px!important}.gy-3{row-gap:12px!important}.m-4{margin:15px!important}.mt-4{margin-top:15px!important}.mr-4{margin-right:15px!important}.mb-4{margin-bottom:15px!important}.ml-4{margin-left:15px!important}.mx-4{margin-left:15px!important;margin-right:15px!important}.my-4{margin-top:15px!important;margin-bottom:15px!important}.p-4{padding:15px!important}.pt-4{padding-top:15px!important}.pr-4{padding-right:15px!important}.pb-4{padding-bottom:15px!important}.pl-4{padding-left:15px!important}.px-4{padding-left:15px!important;padding-right:15px!important}.py-4{padding-top:15px!important;padding-bottom:15px!important}.g-4{gap:15px!important}.gx-4{-moz-column-gap:15px!important;column-gap:15px!important}.gy-4{row-gap:15px!important}.m-5{margin:18px!important}.mt-5{margin-top:18px!important}.mr-5{margin-right:18px!important}.mb-5{margin-bottom:18px!important}.ml-5{margin-left:18px!important}.mx-5{margin-left:18px!important;margin-right:18px!important}.my-5{margin-top:18px!important;margin-bottom:18px!important}.p-5{padding:18px!important}.pt-5{padding-top:18px!important}.pr-5{padding-right:18px!important}.pb-5{padding-bottom:18px!important}.pl-5{padding-left:18px!important}.px-5{padding-left:18px!important;padding-right:18px!important}.py-5{padding-top:18px!important;padding-bottom:18px!important}.g-5{gap:18px!important}.gx-5{-moz-column-gap:18px!important;column-gap:18px!important}.gy-5{row-gap:18px!important}.m-6{margin:22px!important}.mt-6{margin-top:22px!important}.mr-6{margin-right:22px!important}.mb-6{margin-bottom:22px!important}.ml-6{margin-left:22px!important}.mx-6{margin-left:22px!important;margin-right:22px!important}.my-6{margin-top:22px!important;margin-bottom:22px!important}.p-6{padding:22px!important}.pt-6{padding-top:22px!important}.pr-6{padding-right:22px!important}.pb-6{padding-bottom:22px!important}.pl-6{padding-left:22px!important}.px-6{padding-left:22px!important;padding-right:22px!important}.py-6{padding-top:22px!important;padding-bottom:22px!important}.g-6{gap:22px!important}.gx-6{-moz-column-gap:22px!important;column-gap:22px!important}.gy-6{row-gap:22px!important}.m-7{margin:26px!important}.mt-7{margin-top:26px!important}.mr-7{margin-right:26px!important}.mb-7{margin-bottom:26px!important}.ml-7{margin-left:26px!important}.mx-7{margin-left:26px!important;margin-right:26px!important}.my-7{margin-top:26px!important;margin-bottom:26px!important}.p-7{padding:26px!important}.pt-7{padding-top:26px!important}.pr-7{padding-right:26px!important}.pb-7{padding-bottom:26px!important}.pl-7{padding-left:26px!important}.px-7{padding-left:26px!important;padding-right:26px!important}.py-7{padding-top:26px!important;padding-bottom:26px!important}.g-7{gap:26px!important}.gx-7{-moz-column-gap:26px!important;column-gap:26px!important}.gy-7{row-gap:26px!important}.m-8{margin:34px!important}.mt-8{margin-top:34px!important}.mr-8{margin-right:34px!important}.mb-8{margin-bottom:34px!important}.ml-8{margin-left:34px!important}.mx-8{margin-left:34px!important;margin-right:34px!important}.my-8{margin-top:34px!important;margin-bottom:34px!important}.p-8{padding:34px!important}.pt-8{padding-top:34px!important}.pr-8{padding-right:34px!important}.pb-8{padding-bottom:34px!important}.pl-8{padding-left:34px!important}.px-8{padding-left:34px!important;padding-right:34px!important}.py-8{padding-top:34px!important;padding-bottom:34px!important}.g-8{gap:34px!important}.gx-8{-moz-column-gap:34px!important;column-gap:34px!important}.gy-8{row-gap:34px!important}.m-9{margin:42px!important}.mt-9{margin-top:42px!important}.mr-9{margin-right:42px!important}.mb-9{margin-bottom:42px!important}.ml-9{margin-left:42px!important}.mx-9{margin-left:42px!important;margin-right:42px!important}.my-9{margin-top:42px!important;margin-bottom:42px!important}.p-9{padding:42px!important}.pt-9{padding-top:42px!important}.pr-9{padding-right:42px!important}.pb-9{padding-bottom:42px!important}.pl-9{padding-left:42px!important}.px-9{padding-left:42px!important;padding-right:42px!important}.py-9{padding-top:42px!important;padding-bottom:42px!important}.g-9{gap:42px!important}.gx-9{-moz-column-gap:42px!important;column-gap:42px!important}.gy-9{row-gap:42px!important}.m-10{margin:48px!important}.mt-10{margin-top:48px!important}.mr-10{margin-right:48px!important}.mb-10{margin-bottom:48px!important}.ml-10{margin-left:48px!important}.mx-10{margin-left:48px!important;margin-right:48px!important}.my-10{margin-top:48px!important;margin-bottom:48px!important}.p-10{padding:48px!important}.pt-10{padding-top:48px!important}.pr-10{padding-right:48px!important}.pb-10{padding-bottom:48px!important}.pl-10{padding-left:48px!important}.px-10{padding-left:48px!important;padding-right:48px!important}.py-10{padding-top:48px!important;padding-bottom:48px!important}.g-10{gap:48px!important}.gx-10{-moz-column-gap:48px!important;column-gap:48px!important}.gy-10{row-gap:48px!important}.m-11{margin:64px!important}.mt-11{margin-top:64px!important}.mr-11{margin-right:64px!important}.mb-11{margin-bottom:64px!important}.ml-11{margin-left:64px!important}.mx-11{margin-left:64px!important;margin-right:64px!important}.my-11{margin-top:64px!important;margin-bottom:64px!important}.p-11{padding:64px!important}.pt-11{padding-top:64px!important}.pr-11{padding-right:64px!important}.pb-11{padding-bottom:64px!important}.pl-11{padding-left:64px!important}.px-11{padding-left:64px!important;padding-right:64px!important}.py-11{padding-top:64px!important;padding-bottom:64px!important}.g-11{gap:64px!important}.gx-11{-moz-column-gap:64px!important;column-gap:64px!important}.gy-11{row-gap:64px!important}.m-12{margin:80px!important}.mt-12{margin-top:80px!important}.mr-12{margin-right:80px!important}.mb-12{margin-bottom:80px!important}.ml-12{margin-left:80px!important}.mx-12{margin-left:80px!important;margin-right:80px!important}.my-12{margin-top:80px!important;margin-bottom:80px!important}.p-12{padding:80px!important}.pt-12{padding-top:80px!important}.pr-12{padding-right:80px!important}.pb-12{padding-bottom:80px!important}.pl-12{padding-left:80px!important}.px-12{padding-left:80px!important;padding-right:80px!important}.py-12{padding-top:80px!important;padding-bottom:80px!important}.g-12{gap:80px!important}.gx-12{-moz-column-gap:80px!important;column-gap:80px!important}.gy-12{row-gap:80px!important}.row{display:flex;flex-direction:row}@media(max-width:1279px){.row.adaptive{flex-direction:column}}.column{display:flex;flex-direction:column}.f-grid{display:flex;flex-direction:row;flex-wrap:wrap}.grid{display:grid}.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}.items-start{align-items:flex-start!important}.items-center{align-items:center!important}.items-end{align-items:flex-end!important}.justify-start{justify-content:flex-start!important}.justify-center{justify-content:center!important}.justify-between{justify-content:space-between!important}.justify-end{justify-content:flex-end!important}.w-100{width:100%}.w-auto{width:auto!important}.w-fit{width:-moz-fit-content!important;width:fit-content!important}.w-200{width:200%}.h-100{height:100%}.min-w-0{min-width:0!important}.overflow-hidden{overflow:hidden!important}.overflow-auto{overflow:auto!important}.fs-xs{font-size:12px}.fs-sm{font-size:13px}.fs-md{font-size:14px}.fs-base{font-size:15px}.fs-lg{font-size:16px}.fs-xl{font-size:20px}.text-left{text-align:left!important}.text-center{text-align:center!important}.text-right{text-align:right!important}.text-uppercase{text-transform:uppercase!important}.text-nowrap{white-space:nowrap!important}.d-none{display:none!important}.d-block{display:block!important}.d-inline-flex{display:inline-flex!important}.d-flex{display:flex!important}.d-grid{display:grid!important}@media(max-width:767px){.grid-2,.grid-3{grid-template-columns:1fr}}*{box-sizing:border-box}body,html{padding:0;margin:0}body{background-color:#16161e;color:#c0caf5}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{width:10px;background:#16161e;cursor:pointer}::-webkit-scrollbar-thumb{width:10px;background:#414868;cursor:default}::-webkit-scrollbar-corner{background:0 0;height:1px}::-webkit-scrollbar-button{display:none}.ph.normalize{position:relative;top:.15em}code[class*=language-],pre[class*=language-]{color:#000;background:none;text-shadow:0 1px white;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,code[class*=language-] ::-moz-selection{text-shadow:none;background:#b3d4fc}pre[class*=language-]::selection,pre[class*=language-] ::selection,code[class*=language-]::selection,code[class*=language-] ::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.comment,.token.prolog,.token.doctype,.token.cdata{color:#708090}.token.punctuation{color:#999}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.deleted{color:#905}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted{color:#690}.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string{color:#9a6e3a;background:#ffffff80}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.function,.token.class-name{color:#dd4a68}.token.regex,.token.important,.token.variable{color:#e90}pre[class*=language-],code[class*=language-]{color:#c0caf5;background:none;font-family:IBM Plex Mono,Courier New,monospace;font-size:12px;line-height:1.6;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:2;tab-size:2;-webkit-hyphens:none;hyphens:none}pre[class*=language-]{padding:14px;margin:0;overflow:auto;background:#11131a;border:1px solid rgba(192,202,245,.12)}.token.comment,.token.prolog,.token.doctype,.token.cdata{color:#565f89}.token.punctuation{color:#7aa2f7}.token.namespace{opacity:.7}.token.property,.token.tag,.token.boolean,.token.number,.token.constant,.token.symbol,.token.deleted{color:#ff9e64}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted{color:#9ece6a}.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string{color:#89ddff;background:none}.token.atrule,.token.attr-value,.token.keyword{color:#bb9af7}.token.function,.token.class-name{color:#0db9d7}.token.regex,.token.important,.token.variable{color:#e0af68}.token.important,.token.bold{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}:root{color-scheme:dark;font-family:IBM Plex Mono,Courier New,monospace;background:#07080b;color:#f4f4f5;--color-bg: #07080b;--color-panel: #11131a;--color-panel-strong: #171a24;--color-text: #f4f4f5;--color-muted: #9ca3af;--color-primary: #12b7f5;--color-accent: #00f5a0;--color-warning: #ffe500;--color-danger: #ff3d00;--border: 1px solid #f4f4f5}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}html,body{overscroll-behavior-y:none;-webkit-overflow-scrolling:touch}body{margin:0;min-width:320px;min-height:100vh;background:radial-gradient(circle at 20% 0%,rgba(18,183,245,.12),transparent 30%),var(--color-bg)}a{color:inherit}button,input,textarea{font:inherit}.page{width:min(1200px,100%);margin:0 auto;padding:36px 14px}.page .page-header{margin-bottom:24px;animation:none}.page .page-header:after,.page .page-header:hover:after{display:none}.area-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;align-items:stretch}.area-grid .card{width:100%;height:100%;max-width:none;display:flex;flex-direction:column}.area-grid .card .card-content{flex:1;display:flex;flex-direction:column;gap:12px}.area-grid .card .card-footer{margin-top:auto}.area-grid .card-content p,.area-grid .card-content .text{margin-bottom:0}.area-tree,.area-tree-children{display:grid;gap:12px;margin:0;padding:0;list-style:none}.area-tree-children{margin-top:12px;padding-left:28px}.area-tree-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;padding:14px;border:var(--border);background:var(--color-panel);cursor:pointer}.area-tree-card:hover{background:var(--color-panel-strong)}.tree-toggle{width:36px;height:36px;border:2px solid currentColor;background:transparent;cursor:pointer;font-weight:800}.tree-toggle:disabled{cursor:default}.area-tree-info h2{margin:0 0 8px;font-size:20px}.area-tree-info p,.area-tree-actions{display:flex;flex-wrap:wrap;gap:8px;margin:0}.devices-panel{display:grid;gap:16px}.devices-summary,.devices-actions{display:flex;flex-wrap:wrap;gap:8px}.modal-footer{display:flex;justify-content:flex-end;gap:12px}.nav-drawer-footer .card.user-card-compact{border:0;width:100%}.nav-drawer-footer .card.user-card-compact .user-card-body{padding:0}.toast.toast-info,.toast.toast-success,.toast.toast-warning,.toast.toast-danger{background:var(--color-panel-strong)}@media(max-width:720px){.area-tree-card{grid-template-columns:1fr}.area-tree-children{padding-left:14px}} diff --git a/server/dist/assets/web-C628H54O.js b/server/dist/assets/web-C628H54O.js deleted file mode 100644 index 815f0b8..0000000 --- a/server/dist/assets/web-C628H54O.js +++ /dev/null @@ -1 +0,0 @@ -import{W as t}from"./index-D3igGjjx.js";class s extends t{constructor(){super(),this.handleVisibilityChange=()=>{const e={isActive:document.hidden!==!0};this.notifyListeners("appStateChange",e),document.hidden?this.notifyListeners("pause",null):this.notifyListeners("resume",null)},document.addEventListener("visibilitychange",this.handleVisibilityChange,!1)}exitApp(){throw this.unimplemented("Not implemented on web.")}async getInfo(){throw this.unimplemented("Not implemented on web.")}async getLaunchUrl(){return{url:""}}async getState(){return{isActive:document.hidden!==!0}}async minimizeApp(){throw this.unimplemented("Not implemented on web.")}async toggleBackButtonHandler(){throw this.unimplemented("Not implemented on web.")}async getAppLanguage(){return{value:navigator.language.split("-")[0].toLowerCase()}}}export{s as AppWeb}; diff --git a/server/dist/assets/web-CFVOcvs6.js b/server/dist/assets/web-CFVOcvs6.js deleted file mode 100644 index 662c56a..0000000 --- a/server/dist/assets/web-CFVOcvs6.js +++ /dev/null @@ -1 +0,0 @@ -import{W as p}from"./index-D3igGjjx.js";class f extends p{constructor(){super(...arguments),this.group="CapacitorStorage"}async configure({group:e}){typeof e=="string"&&(this.group=e)}async get(e){return{value:this.impl.getItem(this.applyPrefix(e.key))}}async set(e){this.impl.setItem(this.applyPrefix(e.key),e.value)}async remove(e){this.impl.removeItem(this.applyPrefix(e.key))}async keys(){return{keys:this.rawKeys().map(t=>t.substring(this.prefix.length))}}async clear(){for(const e of this.rawKeys())this.impl.removeItem(e)}async migrate(){var e;const t=[],s=[],n="_cap_",o=Object.keys(this.impl).filter(i=>i.indexOf(n)===0);for(const i of o){const r=i.substring(n.length),a=(e=this.impl.getItem(i))!==null&&e!==void 0?e:"",{value:l}=await this.get({key:r});typeof l=="string"?s.push(r):(await this.set({key:r,value:a}),t.push(r))}return{migrated:t,existing:s}}async removeOld(){const e="_cap_",t=Object.keys(this.impl).filter(s=>s.indexOf(e)===0);for(const s of t)this.impl.removeItem(s)}get impl(){return window.localStorage}get prefix(){return this.group==="NativeStorage"?"":`${this.group}.`}rawKeys(){return Object.keys(this.impl).filter(e=>e.indexOf(this.prefix)===0)}applyPrefix(e){return this.prefix+e}}export{f as PreferencesWeb}; diff --git a/server/dist/assets/web-CuF7_hD9.js b/server/dist/assets/web-CuF7_hD9.js new file mode 100644 index 0000000..21bbfcf --- /dev/null +++ b/server/dist/assets/web-CuF7_hD9.js @@ -0,0 +1 @@ +import{W as t}from"./index-DfAh0Xkk.js";class s extends t{constructor(){super(),this.handleVisibilityChange=()=>{const e={isActive:document.hidden!==!0};this.notifyListeners("appStateChange",e),document.hidden?this.notifyListeners("pause",null):this.notifyListeners("resume",null)},document.addEventListener("visibilitychange",this.handleVisibilityChange,!1)}exitApp(){throw this.unimplemented("Not implemented on web.")}async getInfo(){throw this.unimplemented("Not implemented on web.")}async getLaunchUrl(){return{url:""}}async getState(){return{isActive:document.hidden!==!0}}async minimizeApp(){throw this.unimplemented("Not implemented on web.")}async toggleBackButtonHandler(){throw this.unimplemented("Not implemented on web.")}async getAppLanguage(){return{value:navigator.language.split("-")[0].toLowerCase()}}}export{s as AppWeb}; diff --git a/server/dist/assets/web-Dcq5TooW.js b/server/dist/assets/web-Dcq5TooW.js new file mode 100644 index 0000000..fbdb10d --- /dev/null +++ b/server/dist/assets/web-Dcq5TooW.js @@ -0,0 +1 @@ +import{W as p}from"./index-DfAh0Xkk.js";class f extends p{constructor(){super(...arguments),this.group="CapacitorStorage"}async configure({group:e}){typeof e=="string"&&(this.group=e)}async get(e){return{value:this.impl.getItem(this.applyPrefix(e.key))}}async set(e){this.impl.setItem(this.applyPrefix(e.key),e.value)}async remove(e){this.impl.removeItem(this.applyPrefix(e.key))}async keys(){return{keys:this.rawKeys().map(t=>t.substring(this.prefix.length))}}async clear(){for(const e of this.rawKeys())this.impl.removeItem(e)}async migrate(){var e;const t=[],s=[],n="_cap_",o=Object.keys(this.impl).filter(i=>i.indexOf(n)===0);for(const i of o){const r=i.substring(n.length),a=(e=this.impl.getItem(i))!==null&&e!==void 0?e:"",{value:l}=await this.get({key:r});typeof l=="string"?s.push(r):(await this.set({key:r,value:a}),t.push(r))}return{migrated:t,existing:s}}async removeOld(){const e="_cap_",t=Object.keys(this.impl).filter(s=>s.indexOf(e)===0);for(const s of t)this.impl.removeItem(s)}get impl(){return window.localStorage}get prefix(){return this.group==="NativeStorage"?"":`${this.group}.`}rawKeys(){return Object.keys(this.impl).filter(e=>e.indexOf(this.prefix)===0)}applyPrefix(e){return this.prefix+e}}export{f as PreferencesWeb}; diff --git a/server/dist/index.html b/server/dist/index.html index f5d9dbb..5992be5 100644 --- a/server/dist/index.html +++ b/server/dist/index.html @@ -12,8 +12,8 @@ - - + +
diff --git a/webclient/src/components/script/ActionScriptsGrid.vue b/webclient/src/components/script/ActionScriptsGrid.vue index 9be6315..493e786 100644 --- a/webclient/src/components/script/ActionScriptsGrid.vue +++ b/webclient/src/components/script/ActionScriptsGrid.vue @@ -16,6 +16,11 @@ >{{ script.state }} {{ script.scope }} {{ areaFor(script).display_name }} + {{ ind.label }} {{ script.created_by || script.author }}