diff --git a/server/SHServ/Controllers/AuthController.php b/server/SHServ/Controllers/AuthController.php index 542cc39..98f7fb2 100644 --- a/server/SHServ/Controllers/AuthController.php +++ b/server/SHServ/Controllers/AuthController.php @@ -294,4 +294,63 @@ 'expires_in' => $tokenSet->expiresIn, ]); } + + /** + * GET /auth/mobile-bridge + * Renders a page that extracts the token from session and redirects back to the mobile app. + * Used by the Capacitor mobile app after OAuth login. + */ + public function mobileBridge() + { + if (session_status() === PHP_SESSION_NONE) { + @session_start(); + } + + $sessionToken = $_SESSION['shserv_auth_token'] ?? null; + if (!$sessionToken) { + return $this->utils()->redirect('/auth/login'); + } + + $service = new AuthService(); + $tokenSet = $service->refreshAccessToken($sessionToken); + + if (!$tokenSet) { + return $this->utils()->redirect('/auth/login'); + } + + $token = $tokenSet->accessToken; + $expiresIn = $tokenSet->expiresIn; + + $tokenEsc = htmlspecialchars($token, ENT_QUOTES, 'UTF-8'); + + return ' + + + + + Smart Home — Mobile Login + + + +
+
+

Redirecting to Smart Home app…

+
+ + +'; + } } diff --git a/server/SHServ/Routes.php b/server/SHServ/Routes.php index 2f41673..08f76c6 100644 --- a/server/SHServ/Routes.php +++ b/server/SHServ/Routes.php @@ -70,6 +70,7 @@ // Auth $this -> router -> uri("/auth/login", "{$this -> cn}\\AuthController@login"); $this -> router -> uri("/auth/callback", "{$this -> cn}\\AuthController@callback"); + $this -> router -> uri("/auth/mobile-bridge", "{$this -> cn}\\AuthController@mobileBridge"); $this -> router -> uri("/auth/me", "{$this -> cn}\\AuthController@me"); // Auth (API v1 aliases for unified client routing) diff --git a/server/dist/assets/NotFoundPage-CAny2g0D.js b/server/dist/assets/NotFoundPage-CAny2g0D.js new file mode 100644 index 0000000..9c8da9d --- /dev/null +++ b/server/dist/assets/NotFoundPage-CAny2g0D.js @@ -0,0 +1 @@ +import{c as e,a as t,u as o,G as a,o as n}from"./index-DLROONYU.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-CRjNvuG8.js b/server/dist/assets/NotFoundPage-CRjNvuG8.js deleted file mode 100644 index be88df2..0000000 --- a/server/dist/assets/NotFoundPage-CRjNvuG8.js +++ /dev/null @@ -1 +0,0 @@ -import{c as e,a as t,u as o,G as a,o as n}from"./index-DSElkzFl.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-BCQGwEB0.css b/server/dist/assets/index-BCQGwEB0.css new file mode 100644 index 0000000..447470b --- /dev/null +++ b/server/dist/assets/index-BCQGwEB0.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-icon[data-v-aeab265d]{font-size:32px}.script-meta[data-v-aeab265d]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.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-31cd836e]{display:flex;flex-direction:column;gap:16px;margin-bottom:24px}.script-icon[data-v-31cd836e]{font-size:32px}.script-meta[data-v-31cd836e]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.result-alert[data-v-31cd836e]{margin-top:24px}.devices-panel[data-v-31cd836e]{margin-bottom:24px}.block-title[data-v-31cd836e]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.script-link[data-v-31cd836e]{color:var(--color-primary)}.scope-link[data-v-31cd836e]{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-31cd836e]:hover{background:var(--color-primary);color:var(--color-bg)}.scope-label[data-v-31cd836e]{text-transform:uppercase;font-size:11px;font-weight:700;opacity:.8}.script-info-panel[data-v-31cd836e]{display:grid;gap:8px;padding:12px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12)}.info-row[data-v-31cd836e]{display:flex;gap:8px;align-items:baseline}.info-label[data-v-31cd836e]{font-size:12px;text-transform:uppercase;min-width:48px}.info-value[data-v-31cd836e]{font-size:13px;word-break:break-all}.code-block[data-v-31cd836e]{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-37ec28cb]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.login-card[data-v-37ec28cb]{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-37ec28cb]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-37ec28cb]{width:120px;height:120px}.brand-title[data-v-37ec28cb]{margin:0;font-size:1.25rem;font-weight:700}.brand-subtitle[data-v-37ec28cb]{margin:0;font-size:.875rem}.login-divider[data-v-37ec28cb]{width:48px;height:2px;background:currentColor;border-radius:1px}.login-hint[data-v-37ec28cb]{margin:0;font-size:.875rem;line-height:1.5}.login-btn[data-v-37ec28cb]{width:100%}.login-loading[data-v-37ec28cb]{margin:0;font-size:.8125rem;display:flex;align-items:center;gap:.375rem}.setup-page[data-v-22feb45a]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.setup-card[data-v-22feb45a]{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-22feb45a]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-22feb45a]{width:120px;height:120px}.brand-title[data-v-22feb45a]{margin:0;font-size:1.25rem;font-weight:700}.brand-subtitle[data-v-22feb45a]{margin:0;font-size:.875rem}.setup-divider[data-v-22feb45a]{width:48px;height:2px;background:currentColor;border-radius:1px}.setup-hint[data-v-22feb45a]{margin:0;font-size:.875rem;line-height:1.5}.setup-form[data-v-22feb45a]{display:flex;flex-direction:column;gap:1rem;width:100%}.setup-btn[data-v-22feb45a]{width:100%}.setup-error[data-v-22feb45a]{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{padding-top:env(safe-area-inset-top);padding-bottom:env(safe-area-inset-bottom)}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%;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-C6CbbwdV.css b/server/dist/assets/index-C6CbbwdV.css deleted file mode 100644 index e196121..0000000 --- a/server/dist/assets/index-C6CbbwdV.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-icon[data-v-aeab265d]{font-size:32px}.script-meta[data-v-aeab265d]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.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-31cd836e]{display:flex;flex-direction:column;gap:16px;margin-bottom:24px}.script-icon[data-v-31cd836e]{font-size:32px}.script-meta[data-v-31cd836e]{display:flex;flex-wrap:wrap;gap:8px;align-items:center}.result-alert[data-v-31cd836e]{margin-top:24px}.devices-panel[data-v-31cd836e]{margin-bottom:24px}.block-title[data-v-31cd836e]{font-weight:700;text-transform:uppercase;margin-bottom:12px;color:var(--color-primary)}.script-link[data-v-31cd836e]{color:var(--color-primary)}.scope-link[data-v-31cd836e]{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-31cd836e]:hover{background:var(--color-primary);color:var(--color-bg)}.scope-label[data-v-31cd836e]{text-transform:uppercase;font-size:11px;font-weight:700;opacity:.8}.script-info-panel[data-v-31cd836e]{display:grid;gap:8px;padding:12px;background:var(--color-panel);border:1px solid rgba(192,202,245,.12)}.info-row[data-v-31cd836e]{display:flex;gap:8px;align-items:baseline}.info-label[data-v-31cd836e]{font-size:12px;text-transform:uppercase;min-width:48px}.info-value[data-v-31cd836e]{font-size:13px;word-break:break-all}.code-block[data-v-31cd836e]{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-9b9b8c35]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.login-card[data-v-9b9b8c35]{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-9b9b8c35]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-9b9b8c35]{width:120px;height:120px}.brand-title[data-v-9b9b8c35]{margin:0;font-size:1.25rem;font-weight:700}.brand-subtitle[data-v-9b9b8c35]{margin:0;font-size:.875rem}.login-divider[data-v-9b9b8c35]{width:48px;height:2px;background:currentColor;border-radius:1px}.login-hint[data-v-9b9b8c35]{margin:0;font-size:.875rem;line-height:1.5}.login-btn[data-v-9b9b8c35]{width:100%}.login-loading[data-v-9b9b8c35]{margin:0;font-size:.8125rem;display:flex;align-items:center;gap:.375rem}.setup-page[data-v-22feb45a]{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:1rem}.setup-card[data-v-22feb45a]{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-22feb45a]{display:flex;flex-direction:column;align-items:center;gap:.5rem}.brand-logo[data-v-22feb45a]{width:120px;height:120px}.brand-title[data-v-22feb45a]{margin:0;font-size:1.25rem;font-weight:700}.brand-subtitle[data-v-22feb45a]{margin:0;font-size:.875rem}.setup-divider[data-v-22feb45a]{width:48px;height:2px;background:currentColor;border-radius:1px}.setup-hint[data-v-22feb45a]{margin:0;font-size:.875rem;line-height:1.5}.setup-form[data-v-22feb45a]{display:flex;flex-direction:column;gap:1rem;width:100%}.setup-btn[data-v-22feb45a]{width:100%}.setup-error[data-v-22feb45a]{margin:0;font-size:.875rem;display:flex;align-items:center;gap:.375rem}@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{padding-top:env(safe-area-inset-top);padding-bottom:env(safe-area-inset-bottom)}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%;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-DLROONYU.js b/server/dist/assets/index-DLROONYU.js new file mode 100644 index 0000000..99ec9f9 --- /dev/null +++ b/server/dist/assets/index-DLROONYU.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 i of r.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&a(i)}).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 zs(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const Ne={},xn=[],Ot=()=>{},Bi=()=>!1,Oa=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Fa=e=>e.startsWith("onUpdate:"),tt=Object.assign,Ks=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Nl=Object.prototype.hasOwnProperty,Ce=(e,t)=>Nl.call(e,t),ye=Array.isArray,Cn=e=>da(e)==="[object Map]",ji=e=>da(e)==="[object Set]",Cr=e=>da(e)==="[object Date]",be=e=>typeof e=="function",He=e=>typeof e=="string",yt=e=>typeof e=="symbol",$e=e=>e!==null&&typeof e=="object",Vi=e=>($e(e)||be(e))&&be(e.then)&&be(e.catch),Hi=Object.prototype.toString,da=e=>Hi.call(e),Ml=e=>da(e).slice(8,-1),Gi=e=>da(e)==="[object Object]",Na=e=>He(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Jn=zs(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Ma=e=>{const t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},Ul=/-\w/g,ft=Ma(e=>e.replace(Ul,t=>t.slice(1).toUpperCase())),Bl=/\B([A-Z])/g,on=Ma(e=>e.replace(Bl,"-$1").toLowerCase()),Ua=Ma(e=>e.charAt(0).toUpperCase()+e.slice(1)),as=Ma(e=>e?`on${Ua(e)}`:""),Lt=(e,t)=>!Object.is(e,t),ss=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:a,value:n})},jl=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Er;const Ba=()=>Er||(Er=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Ws(e){if(ye(e)){const t={};for(let n=0;n{if(n){const a=n.split(Hl);a.length>1&&(t[a[0].trim()]=a[1].trim())}}),t}function Ft(e){let t="";if(He(e))t=e;else if(ye(e))for(let n=0;n!!(e&&e.__v_isRef===!0),N=e=>He(e)?e:e==null?"":ye(e)||$e(e)&&(e.toString===Hi||!be(e.toString))?Ki(e)?N(e.value):JSON.stringify(e,Wi,2):String(e),Wi=(e,t)=>Ki(t)?Wi(e,t.value):Cn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[a,s],r)=>(n[rs(a,r)+" =>"]=s,n),{})}:ji(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>rs(n))}:yt(t)?rs(t):$e(t)&&!ye(t)&&!Gi(t)?String(t):t,rs=(e,t="")=>{var n;return yt(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 Ji{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(Xn){let t=Xn;for(Xn=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Yn;){let t=Yn;for(Yn=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 to(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function no(e){let t,n=e.depsTail,a=n;for(;a;){const s=a.prevDep;a.version===-1?(a===n&&(n=s),Zs(a),Yl(a)):t=a,a.dep.activeLink=a.prevActiveLink,a.prevActiveLink=void 0,a=s}e.deps=t,e.depsTail=n}function ks(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(ao(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function ao(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===sa)||(e.globalVersion=sa,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!ks(e))))return;e.flags|=2;const t=e.dep,n=Fe,a=St;Fe=e,St=!0;try{to(e);const s=e.fn(e._value);(t.version===0||Lt(s,e._value))&&(e.flags|=128,e._value=s,t.version++)}catch(s){throw t.version++,s}finally{Fe=n,St=a,no(e),e.flags&=-3}}function Zs(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)Zs(r,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function Yl(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let St=!0;const so=[];function qt(){so.push(St),St=!1}function zt(){const e=so.pop();St=e===void 0?!0:e}function Rr(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=Fe;Fe=void 0;try{t()}finally{Fe=n}}}let sa=0;class Xl{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 Qs{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(!Fe||!St||Fe===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==Fe)n=this.activeLink=new Xl(Fe,this),Fe.deps?(n.prevDep=Fe.depsTail,Fe.depsTail.nextDep=n,Fe.depsTail=n):Fe.deps=Fe.depsTail=n,ro(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=Fe.depsTail,n.nextDep=void 0,Fe.depsTail.nextDep=n,Fe.depsTail=n,Fe.deps===n&&(Fe.deps=a)}return n}trigger(t){this.version++,sa++,this.notify(t)}notify(t){Ys();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{Xs()}}}function ro(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)ro(a)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const Aa=new WeakMap,vn=Symbol(""),As=Symbol(""),ra=Symbol("");function at(e,t,n){if(St&&Fe){let a=Aa.get(e);a||Aa.set(e,a=new Map);let s=a.get(n);s||(a.set(n,s=new Qs),s.map=a,s.key=n),s.track()}}function Ht(e,t,n,a,s,r){const i=Aa.get(e);if(!i){sa++;return}const o=l=>{l&&l.trigger()};if(Ys(),t==="clear")i.forEach(o);else{const l=ye(e),u=l&&Na(n);if(l&&n==="length"){const c=Number(a);i.forEach((d,f)=>{(f==="length"||f===ra||!yt(f)&&f>=c)&&o(d)})}else switch((n!==void 0||i.has(void 0))&&o(i.get(n)),u&&o(i.get(ra)),t){case"add":l?u&&o(i.get("length")):(o(i.get(vn)),Cn(e)&&o(i.get(As)));break;case"delete":l||(o(i.get(vn)),Cn(e)&&o(i.get(As)));break;case"set":Cn(e)&&o(i.get(vn));break}}Xs()}function Zl(e,t){const n=Aa.get(e);return n&&n.get(t)}function bn(e){const t=Ae(e);return t===e?t:(at(t,"iterate",ra),ht(e)?t:t.map(xt))}function ja(e){return at(e=Ae(e),"iterate",ra),e}function It(e,t){return Kt(e)?Tn(Gt(e)?xt(t):t):xt(t)}const Ql={__proto__:null,[Symbol.iterator](){return os(this,Symbol.iterator,e=>It(this,e))},concat(...e){return bn(this).concat(...e.map(t=>ye(t)?bn(t):t))},entries(){return os(this,"entries",e=>(e[1]=It(this,e[1]),e))},every(e,t){return Ut(this,"every",e,t,void 0,arguments)},filter(e,t){return Ut(this,"filter",e,t,n=>n.map(a=>It(this,a)),arguments)},find(e,t){return Ut(this,"find",e,t,n=>It(this,n),arguments)},findIndex(e,t){return Ut(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Ut(this,"findLast",e,t,n=>It(this,n),arguments)},findLastIndex(e,t){return Ut(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Ut(this,"forEach",e,t,void 0,arguments)},includes(...e){return ls(this,"includes",e)},indexOf(...e){return ls(this,"indexOf",e)},join(e){return bn(this).join(e)},lastIndexOf(...e){return ls(this,"lastIndexOf",e)},map(e,t){return Ut(this,"map",e,t,void 0,arguments)},pop(){return Bn(this,"pop")},push(...e){return Bn(this,"push",e)},reduce(e,...t){return $r(this,"reduce",e,t)},reduceRight(e,...t){return $r(this,"reduceRight",e,t)},shift(){return Bn(this,"shift")},some(e,t){return Ut(this,"some",e,t,void 0,arguments)},splice(...e){return Bn(this,"splice",e)},toReversed(){return bn(this).toReversed()},toSorted(e){return bn(this).toSorted(e)},toSpliced(...e){return bn(this).toSpliced(...e)},unshift(...e){return Bn(this,"unshift",e)},values(){return os(this,"values",e=>It(this,e))}};function os(e,t,n){const a=ja(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 eu=Array.prototype;function Ut(e,t,n,a,s,r){const i=ja(e),o=i!==e&&!ht(e),l=i[t];if(l!==eu[t]){const d=l.apply(e,r);return o?xt(d):d}let u=n;i!==e&&(o?u=function(d,f){return n.call(this,It(e,d),f,e)}:n.length>2&&(u=function(d,f){return n.call(this,d,f,e)}));const c=l.call(i,u,a);return o&&s?s(c):c}function $r(e,t,n,a){const s=ja(e),r=s!==e&&!ht(e);let i=n,o=!1;s!==e&&(r?(o=a.length===0,i=function(u,c,d){return o&&(o=!1,u=It(e,u)),n.call(this,u,It(e,c),d,e)}):n.length>3&&(i=function(u,c,d){return n.call(this,u,c,d,e)}));const l=s[t](i,...a);return o?It(e,l):l}function ls(e,t,n){const a=Ae(e);at(a,"iterate",ra);const s=a[t](...n);return(s===-1||s===!1)&&Va(n[0])?(n[0]=Ae(n[0]),a[t](...n)):s}function Bn(e,t,n=[]){qt(),Ys();const a=Ae(e)[t].apply(e,n);return Xs(),zt(),a}const tu=zs("__proto__,__v_isRef,__isVue"),io=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(yt));function nu(e){yt(e)||(e=String(e));const t=Ae(this);return at(t,"has",e),t.hasOwnProperty(e)}class oo{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?fu:fo:r?co:uo).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(a)?t:void 0;const i=ye(t);if(!s){let l;if(i&&(l=Ql[n]))return l;if(n==="hasOwnProperty")return nu}const o=Reflect.get(t,n,Ue(t)?t:a);if((yt(n)?io.has(n):tu(n))||(s||at(t,"get",n),r))return o;if(Ue(o)){const l=i&&Na(n)?o:o.value;return s&&$e(l)?Cs(l):l}return $e(o)?s?Cs(o):Yt(o):o}}class lo extends oo{constructor(t=!1){super(!1,t)}set(t,n,a,s){let r=t[n];const i=ye(t)&&Na(n);if(!this._isShallow){const u=Kt(r);if(!ht(a)&&!Kt(a)&&(r=Ae(r),a=Ae(a)),!i&&Ue(r)&&!Ue(a))return u||(r.value=a),!0}const o=i?Number(n)e,ga=e=>Reflect.getPrototypeOf(e);function ou(e,t,n){return function(...a){const s=this.__v_raw,r=Ae(s),i=Cn(r),o=e==="entries"||e===Symbol.iterator&&i,l=e==="keys"&&i,u=s[e](...a),c=n?xs:t?Tn:xt;return!t&&at(r,"iterate",l?As:vn),tt(Object.create(u),{next(){const{value:d,done:f}=u.next();return f?{value:d,done:f}:{value:o?[c(d[0]),c(d[1])]:c(d),done:f}}})}}function ha(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function lu(e,t){const n={get(s){const r=this.__v_raw,i=Ae(r),o=Ae(s);e||(Lt(s,o)&&at(i,"get",s),at(i,"get",o));const{has:l}=ga(i),u=t?xs:e?Tn:xt;if(l.call(i,s))return u(r.get(s));if(l.call(i,o))return u(r.get(o));r!==i&&r.get(s)},get size(){const s=this.__v_raw;return!e&&at(Ae(s),"iterate",vn),s.size},has(s){const r=this.__v_raw,i=Ae(r),o=Ae(s);return e||(Lt(s,o)&&at(i,"has",s),at(i,"has",o)),s===o?r.has(s):r.has(s)||r.has(o)},forEach(s,r){const i=this,o=i.__v_raw,l=Ae(o),u=t?xs:e?Tn:xt;return!e&&at(l,"iterate",vn),o.forEach((c,d)=>s.call(r,u(c),u(d),i))}};return tt(n,e?{add:ha("add"),set:ha("set"),delete:ha("delete"),clear:ha("clear")}:{add(s){const r=Ae(this),i=ga(r),o=Ae(s),l=!t&&!ht(s)&&!Kt(s)?o:s;return i.has.call(r,l)||Lt(s,l)&&i.has.call(r,s)||Lt(o,l)&&i.has.call(r,o)||(r.add(l),Ht(r,"add",l,l)),this},set(s,r){!t&&!ht(r)&&!Kt(r)&&(r=Ae(r));const i=Ae(this),{has:o,get:l}=ga(i);let u=o.call(i,s);u||(s=Ae(s),u=o.call(i,s));const c=l.call(i,s);return i.set(s,r),u?Lt(r,c)&&Ht(i,"set",s,r):Ht(i,"add",s,r),this},delete(s){const r=Ae(this),{has:i,get:o}=ga(r);let l=i.call(r,s);l||(s=Ae(s),l=i.call(r,s)),o&&o.call(r,s);const u=r.delete(s);return l&&Ht(r,"delete",s,void 0),u},clear(){const s=Ae(this),r=s.size!==0,i=s.clear();return r&&Ht(s,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(s=>{n[s]=ou(s,e,t)}),n}function er(e,t){const n=lu(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 uu={get:er(!1,!1)},cu={get:er(!1,!0)},du={get:er(!0,!1)};const uo=new WeakMap,co=new WeakMap,fo=new WeakMap,fu=new WeakMap;function pu(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function vu(e){return e.__v_skip||!Object.isExtensible(e)?0:pu(Ml(e))}function Yt(e){return Kt(e)?e:tr(e,!1,su,uu,uo)}function po(e){return tr(e,!1,iu,cu,co)}function Cs(e){return tr(e,!0,ru,du,fo)}function tr(e,t,n,a,s){if(!$e(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const r=vu(e);if(r===0)return e;const i=s.get(e);if(i)return i;const o=new Proxy(e,r===2?a:n);return s.set(e,o),o}function Gt(e){return Kt(e)?Gt(e.__v_raw):!!(e&&e.__v_isReactive)}function Kt(e){return!!(e&&e.__v_isReadonly)}function ht(e){return!!(e&&e.__v_isShallow)}function Va(e){return e?!!e.__v_raw:!1}function Ae(e){const t=e&&e.__v_raw;return t?Ae(t):e}function nr(e){return!Ce(e,"__v_skip")&&Object.isExtensible(e)&&qi(e,"__v_skip",!0),e}const xt=e=>$e(e)?Yt(e):e,Tn=e=>$e(e)?Cs(e):e;function Ue(e){return e?e.__v_isRef===!0:!1}function J(e){return vo(e,!1)}function gu(e){return vo(e,!0)}function vo(e,t){return Ue(e)?e:new hu(e,t)}class hu{constructor(t,n){this.dep=new Qs,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:Ae(t),this._value=n?t:xt(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)||Kt(t);t=a?t:Ae(t),Lt(t,n)&&(this._rawValue=t,this._value=a?t:xt(t),this.dep.trigger())}}function p(e){return Ue(e)?e.value:e}const mu={get:(e,t,n)=>t==="__v_raw"?e:p(Reflect.get(e,t,n)),set:(e,t,n,a)=>{const s=e[t];return Ue(s)&&!Ue(n)?(s.value=n,!0):Reflect.set(e,t,n,a)}};function go(e){return Gt(e)?e:new Proxy(e,mu)}function yu(e){const t=ye(e)?new Array(e.length):{};for(const n in e)t[n]=bu(e,n);return t}class _u{constructor(t,n,a){this._object=t,this._defaultValue=a,this.__v_isRef=!0,this._value=void 0,this._key=yt(n)?n:String(n),this._raw=Ae(t);let s=!0,r=t;if(!ye(t)||yt(this._key)||!Na(this._key))do s=!Va(r)||ht(r);while(s&&(r=r.__v_raw));this._shallow=s}get value(){let t=this._object[this._key];return this._shallow&&(t=p(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&Ue(this._raw[this._key])){const n=this._object[this._key];if(Ue(n)){n.value=t;return}}this._object[this._key]=t}get dep(){return Zl(this._raw,this._key)}}function bu(e,t,n){return new _u(e,t,n)}class wu{constructor(t,n,a){this.fn=t,this.setter=n,this._value=void 0,this.dep=new Qs(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=sa-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=a}notify(){if(this.flags|=16,!(this.flags&8)&&Fe!==this)return eo(this,!0),!0}get value(){const t=this.dep.track();return ao(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Su(e,t,n=!1){let a,s;return be(e)?a=e:(a=e.get,s=e.set),new wu(a,s,n)}const ma={},xa=new WeakMap;let dn;function ku(e,t=!1,n=dn){if(n){let a=xa.get(n);a||xa.set(n,a=[]),a.push(e)}}function Au(e,t,n=Ne){const{immediate:a,deep:s,once:r,scheduler:i,augmentJob:o,call:l}=n,u=E=>s?E:ht(E)||s===!1||s===0?rn(E,1):rn(E);let c,d,f,h,g=!1,y=!1;if(Ue(e)?(d=()=>e.value,g=ht(e)):Gt(e)?(d=()=>u(e),g=!0):ye(e)?(y=!0,g=e.some(E=>Gt(E)||ht(E)),d=()=>e.map(E=>{if(Ue(E))return E.value;if(Gt(E))return u(E);if(be(E))return l?l(E,2):E()})):be(e)?t?d=l?()=>l(e,2):e:d=()=>{if(f){qt();try{f()}finally{zt()}}const E=dn;dn=c;try{return l?l(e,3,[h]):e(h)}finally{dn=E}}:d=Ot,t&&s){const E=d,F=s===!0?1/0:s;d=()=>rn(E(),F)}const m=Xi(),P=()=>{c.stop(),m&&m.active&&Ks(m.effects,c)};if(r&&t){const E=t;t=(...F)=>{E(...F),P()}}let _=y?new Array(e.length).fill(ma):ma;const S=E=>{if(!(!(c.flags&1)||!c.dirty&&!E))if(t){const F=c.run();if(s||g||(y?F.some((D,T)=>Lt(D,_[T])):Lt(F,_))){f&&f();const D=dn;dn=c;try{const T=[F,_===ma?void 0:y&&_[0]===ma?[]:_,h];_=F,l?l(t,3,T):t(...T)}finally{dn=D}}}else c.run()};return o&&o(S),c=new Zi(d),c.scheduler=i?()=>i(S,!1):S,h=E=>ku(E,!1,c),f=c.onStop=()=>{const E=xa.get(c);if(E){if(l)l(E,4);else for(const F of E)F();xa.delete(c)}},t?a?S(!0):_=c.run():i?i(S.bind(null,!0),!0):c.run(),P.pause=c.pause.bind(c),P.resume=c.resume.bind(c),P.stop=P,P}function rn(e,t=1/0,n){if(t<=0||!$e(e)||e.__v_skip||(n=n||new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,Ue(e))rn(e.value,t,n);else if(ye(e))for(let a=0;a{rn(a,t,n)});else if(Gi(e)){for(const a in e)rn(e[a],t,n);for(const a of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,a)&&rn(e[a],t,n)}return e}/** +* @vue/runtime-core v3.5.33 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function fa(e,t,n,a){try{return a?e(...a):e()}catch(s){Ha(s,t,n)}}function Nt(e,t,n,a){if(be(e)){const s=fa(e,t,n,a);return s&&Vi(s)&&s.catch(r=>{Ha(r,t,n)}),s}if(ye(e)){const s=[];for(let r=0;r>>1,s=ct[a],r=ia(s);r=ia(n)?ct.push(e):ct.splice(Cu(t),0,e),e.flags|=1,mo()}}function mo(){Ca||(Ca=ho.then(_o))}function Eu(e){ye(e)?En.push(...e):an&&e.id===-1?an.splice(Sn+1,0,e):e.flags&1||(En.push(e),e.flags|=1),mo()}function Tr(e,t,n=Pt+1){for(;nia(n)-ia(a));if(En.length=0,an){an.push(...t);return}for(an=t,Sn=0;Sne.id==null?e.flags&2?-1:1/0:e.id;function _o(e){try{for(Pt=0;Pt{a._d&&Ta(-1);const r=Ea(t);let i;try{i=e(...s)}finally{Ea(r),a._d&&Ta(1)}return i};return a._n=!0,a._c=!0,a._d=!0,a}function un(e,t,n,a){const s=e.dirs,r=t&&t.dirs;for(let i=0;i1)return n&&be(t)?t.call(a&&a.proxy):t}}function Ru(){return!!(Ja()||gn)}const $u=Symbol.for("v-scx"),Tu=()=>mt($u);function kt(e,t,n){return wo(e,t,n)}function wo(e,t,n=Ne){const{immediate:a,deep:s,flush:r,once:i}=n,o=tt({},n),l=t&&a||!t&&r!=="post";let u;if(ua){if(r==="sync"){const h=Tu();u=h.__watcherHandles||(h.__watcherHandles=[])}else if(!l){const h=()=>{};return h.stop=Ot,h.resume=Ot,h.pause=Ot,h}}const c=st;o.call=(h,g,y)=>Nt(h,c,g,y);let d=!1;r==="post"?o.scheduler=h=>{ot(h,c&&c.suspense)}:r!=="sync"&&(d=!0,o.scheduler=(h,g)=>{g?h():ar(h)}),o.augmentJob=h=>{t&&(h.flags|=4),d&&(h.flags|=2,c&&(h.id=c.uid,h.i=c))};const f=Au(e,t,o);return ua&&(u?u.push(f):l&&f()),f}function Pu(e,t,n){const a=this.proxy,s=He(e)?e.includes(".")?So(a,e):()=>a[e]:e.bind(a,a);let r;be(t)?r=t:(r=t.handler,n=t);const i=va(this),o=wo(s,r.bind(a),n);return i(),o}function So(e,t){const n=t.split(".");return()=>{let a=e;for(let s=0;se.__isTeleport,fn=e=>e&&(e.disabled||e.disabled===""),Du=e=>e&&(e.defer||e.defer===""),Pr=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Ir=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Es=(e,t)=>{const n=e&&e.to;return He(n)?t?t(n):null:n},Lu={name:"Teleport",__isTeleport:!0,process(e,t,n,a,s,r,i,o,l,u){const{mc:c,pc:d,pbc:f,o:{insert:h,querySelector:g,createText:y,createComment:m,parentNode:P}}=u,_=fn(t.props);let{dynamicChildren:S}=t;const E=(T,A,R)=>{T.shapeFlag&16&&c(T.children,A,R,s,r,i,o,l)},F=(T=t)=>{const A=fn(T.props),R=T.target=Es(T.props,g),Z=Rs(R,T,y,h);R&&(i!=="svg"&&Pr(R)?i="svg":i!=="mathml"&&Ir(R)&&(i="mathml"),s&&s.isCE&&(s.ce._teleportTargets||(s.ce._teleportTargets=new Set)).add(R),A||(E(T,R,Z),zn(T,!1)))},D=T=>{const A=()=>{if(tn.get(T)===A){if(tn.delete(T),fn(T.props)){const R=P(T.el)||n;E(T,R,T.anchor),zn(T,!0)}F(T)}};tn.set(T,A),ot(A,r)};if(e==null){const T=t.el=y(""),A=t.anchor=y("");if(h(T,n,a),h(A,n,a),Du(t.props)||r&&r.pendingBranch){D(t);return}_&&(E(t,n,A),zn(t,!0)),F()}else{t.el=e.el;const T=t.anchor=e.anchor,A=tn.get(e);if(A){A.flags|=8,tn.delete(e),D(t);return}t.targetStart=e.targetStart;const R=t.target=e.target,Z=t.targetAnchor=e.targetAnchor,ue=fn(e.props),de=ue?n:R,pe=ue?T:Z;if(i==="svg"||Pr(R)?i="svg":(i==="mathml"||Ir(R))&&(i="mathml"),S?(f(e.dynamicChildren,S,de,s,r,i,o),or(e,t,!0)):l||d(e,t,de,pe,s,r,i,o,!1),_)ue?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):ya(t,n,T,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const B=t.target=Es(t.props,g);B&&ya(t,B,null,u,0)}else ue&&ya(t,R,Z,u,1);zn(t,_)}},remove(e,t,n,{um:a,o:{remove:s}},r){const{shapeFlag:i,children:o,anchor:l,targetStart:u,targetAnchor:c,target:d,props:f}=e;let h=r||!fn(f);const g=tn.get(e);if(g&&(g.flags|=8,tn.delete(e),h=!1),d&&(s(u),s(c)),r&&s(l),i&16)for(let y=0;yQn(y,t&&(ye(t)?t[m]:t),n,a,s));return}if(Rn(a)&&!s){a.shapeFlag&512&&a.type.__asyncResolved&&a.component.subTree.component&&Qn(e,t,n,a.component.subTree);return}const r=a.shapeFlag&4?ur(a.component):a.el,i=s?null:r,{i:o,r:l}=e,u=t&&t.r,c=o.refs===Ne?o.refs={}:o.refs,d=o.setupState,f=Ae(d),h=d===Ne?Bi:y=>Dr(c,y)?!1:Ce(f,y),g=(y,m)=>!(m&&Dr(c,m));if(u!=null&&u!==l){if(Lr(t),He(u))c[u]=null,h(u)&&(d[u]=null);else if(Ue(u)){const y=t;g(u,y.k)&&(u.value=null),y.k&&(c[y.k]=null)}}if(be(l))fa(l,o,12,[i,c]);else{const y=He(l),m=Ue(l);if(y||m){const P=()=>{if(e.f){const _=y?h(l)?d[l]:c[l]:g()||!e.k?l.value:c[e.k];if(s)ye(_)&&Ks(_,r);else if(ye(_))_.includes(r)||_.push(r);else if(y)c[l]=[r],h(l)&&(d[l]=c[l]);else{const S=[r];g(l,e.k)&&(l.value=S),e.k&&(c[e.k]=S)}}else y?(c[l]=i,h(l)&&(d[l]=i)):m&&(g(l,e.k)&&(l.value=i),e.k&&(c[e.k]=i))};if(i){const _=()=>{P(),Ra.delete(e)};_.id=-1,Ra.set(e,_),ot(_,n)}else Lr(e),P()}}}function Lr(e){const t=Ra.get(e);t&&(t.flags|=8,Ra.delete(e))}Ba().requestIdleCallback;Ba().cancelIdleCallback;const Rn=e=>!!e.type.__asyncLoader,xo=e=>e.type.__isKeepAlive;function Mu(e,t){Co(e,"a",t)}function Uu(e,t){Co(e,"da",t)}function Co(e,t,n=st){const a=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Ga(t,a,n),n){let s=n.parent;for(;s&&s.parent;)xo(s.parent.vnode)&&Bu(a,t,n,s),s=s.parent}}function Bu(e,t,n,a){const s=Ga(t,e,a,!0);pa(()=>{Ks(a[t],s)},n)}function Ga(e,t,n=st,a=!1){if(n){const s=n[e]||(n[e]=[]),r=t.__weh||(t.__weh=(...i)=>{qt();const o=va(n),l=Nt(t,n,e,i);return o(),zt(),l});return a?s.unshift(r):s.push(r),r}}const Xt=e=>(t,n=st)=>{(!ua||e==="sp")&&Ga(e,(...a)=>t(...a),n)},ju=Xt("bm"),_t=Xt("m"),Vu=Xt("bu"),Hu=Xt("u"),qa=Xt("bum"),pa=Xt("um"),Gu=Xt("sp"),qu=Xt("rtg"),zu=Xt("rtc");function Eo(e,t=st){Ga("ec",e,t)}const Ku="components";function ln(e,t){return Ju(Ku,e,!0,t)||e}const Wu=Symbol.for("v-ndc");function Ju(e,t,n=!0,a=!1){const s=dt||st;if(s){const r=s.type;{const o=Ic(r,!1);if(o&&(o===t||o===ft(t)||o===Ua(ft(t))))return r}const i=Or(s[e]||r[e],t)||Or(s.appContext[e],t);return!i&&a?r:i}}function Or(e,t){return e&&(e[t]||e[ft(t)]||e[Ua(ft(t))])}function Wt(e,t,n,a){let s;const r=n,i=ye(e);if(i||He(e)){const o=i&&Gt(e);let l=!1,u=!1;o&&(l=!ht(e),u=Kt(e),e=ja(e)),s=new Array(e.length);for(let c=0,d=e.length;ct(o,l,void 0,r));else{const o=Object.keys(e);s=new Array(o.length);for(let l=0,u=o.length;l{const r=a.fn(...s);return r&&(r.key=a.key),r}:a.fn)}return e}function za(e,t,n={},a,s){if(dt.ce||dt.parent&&Rn(dt.parent)&&dt.parent.ce){const u=Object.keys(n).length>0;return t!=="default"&&(n.name=t),w(),K(De,null,[I("slot",n,a&&a())],u?-2:64)}let r=e[t];r&&r._c&&(r._d=!1),w();const i=r&&$o(r(n)),o=n.key||i&&i.key,l=K(De,{key:(o&&!yt(o)?o:`_${t}`)+(!i&&a?"_fb":"")},i||(a?a():[]),i&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),r&&r._c&&(r._d=!0),l}function $o(e){return e.some(t=>la(t)?!(t.type===Jt||t.type===De&&!$o(t.children)):!0)?e:null}const $s=e=>e?Yo(e)?ur(e):$s(e.parent):null,ea=tt(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=>$s(e.parent),$root:e=>$s(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>Po(e),$forceUpdate:e=>e.f||(e.f=()=>{ar(e.update)}),$nextTick:e=>e.n||(e.n=hn.bind(e.proxy)),$watch:e=>Pu.bind(e)}),us=(e,t)=>e!==Ne&&!e.__isScriptSetup&&Ce(e,t),Yu={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:a,data:s,props:r,accessCache:i,type:o,appContext:l}=e;if(t[0]!=="$"){const f=i[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(us(a,t))return i[t]=1,a[t];if(s!==Ne&&Ce(s,t))return i[t]=2,s[t];if(Ce(r,t))return i[t]=3,r[t];if(n!==Ne&&Ce(n,t))return i[t]=4,n[t];Ts&&(i[t]=0)}}const u=ea[t];let c,d;if(u)return t==="$attrs"&&at(e.attrs,"get",""),u(e);if((c=o.__cssModules)&&(c=c[t]))return c;if(n!==Ne&&Ce(n,t))return i[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 us(s,t)?(s[t]=n,!0):a!==Ne&&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:i}},o){let l;return!!(n[o]||e!==Ne&&o[0]!=="$"&&Ce(e,o)||us(t,o)||Ce(r,o)||Ce(a,o)||Ce(ea,o)||Ce(s.config.globalProperties,o)||(l=i.__cssModules)&&l[o])},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 Fr(e){return ye(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Ts=!0;function Xu(e){const t=Po(e),n=e.proxy,a=e.ctx;Ts=!1,t.beforeCreate&&Nr(t.beforeCreate,e,"bc");const{data:s,computed:r,methods:i,watch:o,provide:l,inject:u,created:c,beforeMount:d,mounted:f,beforeUpdate:h,updated:g,activated:y,deactivated:m,beforeDestroy:P,beforeUnmount:_,destroyed:S,unmounted:E,render:F,renderTracked:D,renderTriggered:T,errorCaptured:A,serverPrefetch:R,expose:Z,inheritAttrs:ue,components:de,directives:pe,filters:B}=t;if(u&&Zu(u,a,null),i)for(const W in i){const te=i[W];be(te)&&(a[W]=te.bind(n))}if(s){const W=s.call(n,n);$e(W)&&(e.data=Yt(W))}if(Ts=!0,r)for(const W in r){const te=r[W],ve=be(te)?te.bind(n,n):be(te.get)?te.get.bind(n,n):Ot,Se=!be(te)&&be(te.set)?te.set.bind(n):Ot,Ee=Q({get:ve,set:Se});Object.defineProperty(a,W,{enumerable:!0,configurable:!0,get:()=>Ee.value,set:we=>Ee.value=we})}if(o)for(const W in o)To(o[W],a,n,W);if(l){const W=be(l)?l.call(n):l;Reflect.ownKeys(W).forEach(te=>{Zn(te,W[te])})}c&&Nr(c,e,"c");function X(W,te){ye(te)?te.forEach(ve=>W(ve.bind(n))):te&&W(te.bind(n))}if(X(ju,d),X(_t,f),X(Vu,h),X(Hu,g),X(Mu,y),X(Uu,m),X(Eo,A),X(zu,D),X(qu,T),X(qa,_),X(pa,E),X(Gu,R),ye(Z))if(Z.length){const W=e.exposed||(e.exposed={});Z.forEach(te=>{Object.defineProperty(W,te,{get:()=>n[te],set:ve=>n[te]=ve,enumerable:!0})})}else e.exposed||(e.exposed={});F&&e.render===Ot&&(e.render=F),ue!=null&&(e.inheritAttrs=ue),de&&(e.components=de),pe&&(e.directives=pe),R&&Ao(e)}function Zu(e,t,n=Ot){ye(e)&&(e=Ps(e));for(const a in e){const s=e[a];let r;$e(s)?"default"in s?r=mt(s.from||a,s.default,!0):r=mt(s.from||a):r=mt(s),Ue(r)?Object.defineProperty(t,a,{enumerable:!0,configurable:!0,get:()=>r.value,set:i=>r.value=i}):t[a]=r}}function Nr(e,t,n){Nt(ye(e)?e.map(a=>a.bind(t.proxy)):e.bind(t.proxy),t,n)}function To(e,t,n,a){let s=a.includes(".")?So(n,a):()=>n[a];if(He(e)){const r=t[e];be(r)&&kt(s,r)}else if(be(e))kt(s,e.bind(n));else if($e(e))if(ye(e))e.forEach(r=>To(r,t,n,a));else{const r=be(e.handler)?e.handler.bind(n):t[e.handler];be(r)&&kt(s,r,e)}}function Po(e){const t=e.type,{mixins:n,extends:a}=t,{mixins:s,optionsCache:r,config:{optionMergeStrategies:i}}=e.appContext,o=r.get(t);let l;return o?l=o:!s.length&&!n&&!a?l=t:(l={},s.length&&s.forEach(u=>$a(l,u,i,!0)),$a(l,t,i)),$e(t)&&r.set(t,l),l}function $a(e,t,n,a=!1){const{mixins:s,extends:r}=t;r&&$a(e,r,n,!0),s&&s.forEach(i=>$a(e,i,n,!0));for(const i in t)if(!(a&&i==="expose")){const o=Qu[i]||n&&n[i];e[i]=o?o(e[i],t[i]):t[i]}return e}const Qu={data:Mr,props:Ur,emits:Ur,methods:Kn,computed:Kn,beforeCreate:it,created:it,beforeMount:it,mounted:it,beforeUpdate:it,updated:it,beforeDestroy:it,beforeUnmount:it,destroyed:it,unmounted:it,activated:it,deactivated:it,errorCaptured:it,serverPrefetch:it,components:Kn,directives:Kn,watch:tc,provide:Mr,inject:ec};function Mr(e,t){return t?e?function(){return tt(be(e)?e.call(this,this):e,be(t)?t.call(this,this):t)}:t:e}function ec(e,t){return Kn(Ps(e),Ps(t))}function Ps(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[`${on(t)}Modifiers`];function rc(e,t,...n){if(e.isUnmounted)return;const a=e.vnode.props||Ne;let s=n;const r=t.startsWith("update:"),i=r&&sc(a,t.slice(7));i&&(i.trim&&(s=n.map(c=>He(c)?c.trim():c)),i.number&&(s=n.map(jl)));let o,l=a[o=as(t)]||a[o=as(ft(t))];!l&&r&&(l=a[o=as(on(t))]),l&&Nt(l,e,6,s);const u=a[o+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[o])return;e.emitted[o]=!0,Nt(u,e,6,s)}}const ic=new WeakMap;function Do(e,t,n=!1){const a=n?ic:t.emitsCache,s=a.get(e);if(s!==void 0)return s;const r=e.emits;let i={},o=!1;if(!be(e)){const l=u=>{const c=Do(u,t,!0);c&&(o=!0,tt(i,c))};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}return!r&&!o?($e(e)&&a.set(e,null),null):(ye(r)?r.forEach(l=>i[l]=null):tt(i,r),$e(e)&&a.set(e,i),i)}function Ka(e,t){return!e||!Oa(t)?!1:(t=t.slice(2).replace(/Once$/,""),Ce(e,t[0].toLowerCase()+t.slice(1))||Ce(e,on(t))||Ce(e,t))}function Br(e){const{type:t,vnode:n,proxy:a,withProxy:s,propsOptions:[r],slots:i,attrs:o,emit:l,render:u,renderCache:c,props:d,data:f,setupState:h,ctx:g,inheritAttrs:y}=e,m=Ea(e);let P,_;try{if(n.shapeFlag&4){const E=s||a,F=E;P=Dt(u.call(F,E,c,d,h,f,g)),_=o}else{const E=t;P=Dt(E.length>1?E(d,{attrs:o,slots:i,emit:l}):E(d,null)),_=t.props?o:oc(o)}}catch(E){ta.length=0,Ha(E,e,1),P=I(Jt)}let S=P;if(_&&y!==!1){const E=Object.keys(_),{shapeFlag:F}=S;E.length&&F&7&&(r&&E.some(Fa)&&(_=lc(_,r)),S=Pn(S,_,!1,!0))}return n.dirs&&(S=Pn(S,null,!1,!0),S.dirs=S.dirs?S.dirs.concat(n.dirs):n.dirs),n.transition&&sr(S,n.transition),P=S,Ea(m),P}const oc=e=>{let t;for(const n in e)(n==="class"||n==="style"||Oa(n))&&((t||(t={}))[n]=e[n]);return t},lc=(e,t)=>{const n={};for(const a in e)(!Fa(a)||!(a.slice(9)in t))&&(n[a]=e[a]);return n};function uc(e,t,n){const{props:a,children:s,component:r}=e,{props:i,children:o,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?jr(a,i,u):!!i;if(l&8){const c=t.dynamicProps;for(let d=0;dObject.create(Oo),No=e=>Object.getPrototypeOf(e)===Oo;function dc(e,t,n,a=!1){const s={},r=Fo();e.propsDefaults=Object.create(null),Mo(e,t,s,r);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=a?s:po(s):e.type.props?e.props=s:e.props=r,e.attrs=r}function fc(e,t,n,a){const{props:s,attrs:r,vnode:{patchFlag:i}}=e,o=Ae(s),[l]=e.propsOptions;let u=!1;if((a||i>0)&&!(i&16)){if(i&8){const c=e.vnode.dynamicProps;for(let d=0;d{l=!0;const[f,h]=Uo(d,t,!0);tt(i,f),h&&o.push(...h)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!r&&!l)return $e(e)&&a.set(e,xn),xn;if(ye(r))for(let c=0;ce==="_"||e==="_ctx"||e==="$stable",ir=e=>ye(e)?e.map(Dt):[Dt(e)],vc=(e,t,n)=>{if(t._n)return t;const a=k((...s)=>ir(t(...s)),n);return a._c=!1,a},Bo=(e,t,n)=>{const a=e._ctx;for(const s in e){if(rr(s))continue;const r=e[s];if(be(r))t[s]=vc(s,r,a);else if(r!=null){const i=ir(r);t[s]=()=>i}}},jo=(e,t)=>{const n=ir(t);e.slots.default=()=>n},Vo=(e,t,n)=>{for(const a in t)(n||!rr(a))&&(e[a]=t[a])},gc=(e,t,n)=>{const a=e.slots=Fo();if(e.vnode.shapeFlag&32){const s=t._;s?(Vo(a,t,n),n&&qi(a,"_",s,!0)):Bo(t,a)}else t&&jo(e,t)},hc=(e,t,n)=>{const{vnode:a,slots:s}=e;let r=!0,i=Ne;if(a.shapeFlag&32){const o=t._;o?n&&o===1?r=!1:Vo(s,t,n):(r=!t.$stable,Bo(t,s)),i=t}else t&&(jo(e,t),i={default:1});if(r)for(const o in s)!rr(o)&&i[o]==null&&delete s[o]},ot=wc;function mc(e){return yc(e)}function yc(e,t){const n=Ba();n.__VUE__=!0;const{insert:a,remove:s,patchProp:r,createElement:i,createText:o,createComment:l,setText:u,setElementText:c,parentNode:d,nextSibling:f,setScopeId:h=Ot,insertStaticContent:g}=e,y=(v,b,C,j=null,z=null,H=null,oe=void 0,re=null,ne=!!b.dynamicChildren)=>{if(v===b)return;v&&!jn(v,b)&&(j=M(v),we(v,z,H,!0),v=null),b.patchFlag===-2&&(ne=!1,b.dynamicChildren=null);const{type:Y,ref:fe,shapeFlag:le}=b;switch(Y){case Wa:m(v,b,C,j);break;case Jt:P(v,b,C,j);break;case wa:v==null&&_(b,C,j,oe);break;case De:de(v,b,C,j,z,H,oe,re,ne);break;default:le&1?F(v,b,C,j,z,H,oe,re,ne):le&6?pe(v,b,C,j,z,H,oe,re,ne):(le&64||le&128)&&Y.process(v,b,C,j,z,H,oe,re,ne,x)}fe!=null&&z?Qn(fe,v&&v.ref,H,b||v,!b):fe==null&&v&&v.ref!=null&&Qn(v.ref,null,H,v,!0)},m=(v,b,C,j)=>{if(v==null)a(b.el=o(b.children),C,j);else{const z=b.el=v.el;b.children!==v.children&&u(z,b.children)}},P=(v,b,C,j)=>{v==null?a(b.el=l(b.children||""),C,j):b.el=v.el},_=(v,b,C,j)=>{[v.el,v.anchor]=g(v.children,b,C,j,v.el,v.anchor)},S=({el:v,anchor:b},C,j)=>{let z;for(;v&&v!==b;)z=f(v),a(v,C,j),v=z;a(b,C,j)},E=({el:v,anchor:b})=>{let C;for(;v&&v!==b;)C=f(v),s(v),v=C;s(b)},F=(v,b,C,j,z,H,oe,re,ne)=>{if(b.type==="svg"?oe="svg":b.type==="math"&&(oe="mathml"),v==null)D(b,C,j,z,H,oe,re,ne);else{const Y=v.el&&v.el._isVueCE?v.el:null;try{Y&&Y._beginPatch(),R(v,b,z,H,oe,re,ne)}finally{Y&&Y._endPatch()}}},D=(v,b,C,j,z,H,oe,re)=>{let ne,Y;const{props:fe,shapeFlag:le,transition:ce,dirs:me}=v;if(ne=v.el=i(v.type,H,fe&&fe.is,fe),le&8?c(ne,v.children):le&16&&A(v.children,ne,null,j,z,cs(v,H),oe,re),me&&un(v,null,j,"created"),T(ne,v,v.scopeId,oe,j),fe){for(const Re in fe)Re!=="value"&&!Jn(Re)&&r(ne,Re,null,fe[Re],H,j);"value"in fe&&r(ne,"value",null,fe.value,H),(Y=fe.onVnodeBeforeMount)&&Rt(Y,j,v)}me&&un(v,null,j,"beforeMount");const ke=_c(z,ce);ke&&ce.beforeEnter(ne),a(ne,b,C),((Y=fe&&fe.onVnodeMounted)||ke||me)&&ot(()=>{try{Y&&Rt(Y,j,v),ke&&ce.enter(ne),me&&un(v,null,j,"mounted")}finally{}},z)},T=(v,b,C,j,z)=>{if(C&&h(v,C),j)for(let H=0;H{for(let Y=ne;Y{const re=b.el=v.el;let{patchFlag:ne,dynamicChildren:Y,dirs:fe}=b;ne|=v.patchFlag&16;const le=v.props||Ne,ce=b.props||Ne;let me;if(C&&cn(C,!1),(me=ce.onVnodeBeforeUpdate)&&Rt(me,C,b,v),fe&&un(b,v,C,"beforeUpdate"),C&&cn(C,!0),(le.innerHTML&&ce.innerHTML==null||le.textContent&&ce.textContent==null)&&c(re,""),Y?Z(v.dynamicChildren,Y,re,C,j,cs(b,z),H):oe||te(v,b,re,null,C,j,cs(b,z),H,!1),ne>0){if(ne&16)ue(re,le,ce,C,z);else if(ne&2&&le.class!==ce.class&&r(re,"class",null,ce.class,z),ne&4&&r(re,"style",le.style,ce.style,z),ne&8){const ke=b.dynamicProps;for(let Re=0;Re{me&&Rt(me,C,b,v),fe&&un(b,v,C,"updated")},j)},Z=(v,b,C,j,z,H,oe)=>{for(let re=0;re{if(b!==C){if(b!==Ne)for(const H in b)!Jn(H)&&!(H in C)&&r(v,H,b[H],null,z,j);for(const H in C){if(Jn(H))continue;const oe=C[H],re=b[H];oe!==re&&H!=="value"&&r(v,H,re,oe,z,j)}"value"in C&&r(v,"value",b.value,C.value,z)}},de=(v,b,C,j,z,H,oe,re,ne)=>{const Y=b.el=v?v.el:o(""),fe=b.anchor=v?v.anchor:o("");let{patchFlag:le,dynamicChildren:ce,slotScopeIds:me}=b;me&&(re=re?re.concat(me):me),v==null?(a(Y,C,j),a(fe,C,j),A(b.children||[],C,fe,z,H,oe,re,ne)):le>0&&le&64&&ce&&v.dynamicChildren&&v.dynamicChildren.length===ce.length?(Z(v.dynamicChildren,ce,C,z,H,oe,re),(b.key!=null||z&&b===z.subTree)&&or(v,b,!0)):te(v,b,C,fe,z,H,oe,re,ne)},pe=(v,b,C,j,z,H,oe,re,ne)=>{b.slotScopeIds=re,v==null?b.shapeFlag&512?z.ctx.activate(b,C,j,oe,ne):B(b,C,j,z,H,oe,ne):q(v,b,ne)},B=(v,b,C,j,z,H,oe)=>{const re=v.component=Ec(v,j,z);if(xo(v)&&(re.ctx.renderer=x),Rc(re,!1,oe),re.asyncDep){if(z&&z.registerDep(re,X,oe),!v.el){const ne=re.subTree=I(Jt);P(null,ne,b,C),v.placeholder=ne.el}}else X(re,v,b,C,z,H,oe)},q=(v,b,C)=>{const j=b.component=v.component;if(uc(v,b,C))if(j.asyncDep&&!j.asyncResolved){W(j,b,C);return}else j.next=b,j.update();else b.el=v.el,j.vnode=b},X=(v,b,C,j,z,H,oe)=>{const re=()=>{if(v.isMounted){let{next:le,bu:ce,u:me,parent:ke,vnode:Re}=v;{const Ie=Ho(v);if(Ie){le&&(le.el=Re.el,W(v,le,oe)),Ie.asyncDep.then(()=>{ot(()=>{v.isUnmounted||Y()},z)});return}}let Pe=le,Be;cn(v,!1),le?(le.el=Re.el,W(v,le,oe)):le=Re,ce&&ss(ce),(Be=le.props&&le.props.onVnodeBeforeUpdate)&&Rt(Be,ke,le,Re),cn(v,!0);const ie=Br(v),O=v.subTree;v.subTree=ie,y(O,ie,d(O.el),M(O),v,z,H),le.el=ie.el,Pe===null&&cc(v,ie.el),me&&ot(me,z),(Be=le.props&&le.props.onVnodeUpdated)&&ot(()=>Rt(Be,ke,le,Re),z)}else{let le;const{el:ce,props:me}=b,{bm:ke,m:Re,parent:Pe,root:Be,type:ie}=v,O=Rn(b);cn(v,!1),ke&&ss(ke),!O&&(le=me&&me.onVnodeBeforeMount)&&Rt(le,Pe,b),cn(v,!0);{Be.ce&&Be.ce._hasShadowRoot()&&Be.ce._injectChildStyle(ie,v.parent?v.parent.type:void 0);const Ie=v.subTree=Br(v);y(null,Ie,C,j,v,z,H),b.el=Ie.el}if(Re&&ot(Re,z),!O&&(le=me&&me.onVnodeMounted)){const Ie=b;ot(()=>Rt(le,Pe,Ie),z)}(b.shapeFlag&256||Pe&&Rn(Pe.vnode)&&Pe.vnode.shapeFlag&256)&&v.a&&ot(v.a,z),v.isMounted=!0,b=C=j=null}};v.scope.on();const ne=v.effect=new Zi(re);v.scope.off();const Y=v.update=ne.run.bind(ne),fe=v.job=ne.runIfDirty.bind(ne);fe.i=v,fe.id=v.uid,ne.scheduler=()=>ar(fe),cn(v,!0),Y()},W=(v,b,C)=>{b.component=v;const j=v.vnode.props;v.vnode=b,v.next=null,fc(v,b.props,j,C),hc(v,b.children,C),qt(),Tr(v),zt()},te=(v,b,C,j,z,H,oe,re,ne=!1)=>{const Y=v&&v.children,fe=v?v.shapeFlag:0,le=b.children,{patchFlag:ce,shapeFlag:me}=b;if(ce>0){if(ce&128){Se(Y,le,C,j,z,H,oe,re,ne);return}else if(ce&256){ve(Y,le,C,j,z,H,oe,re,ne);return}}me&8?(fe&16&&Te(Y,z,H),le!==Y&&c(C,le)):fe&16?me&16?Se(Y,le,C,j,z,H,oe,re,ne):Te(Y,z,H,!0):(fe&8&&c(C,""),me&16&&A(le,C,j,z,H,oe,re,ne))},ve=(v,b,C,j,z,H,oe,re,ne)=>{v=v||xn,b=b||xn;const Y=v.length,fe=b.length,le=Math.min(Y,fe);let ce;for(ce=0;cefe?Te(v,z,H,!0,!1,le):A(b,C,j,z,H,oe,re,ne,le)},Se=(v,b,C,j,z,H,oe,re,ne)=>{let Y=0;const fe=b.length;let le=v.length-1,ce=fe-1;for(;Y<=le&&Y<=ce;){const me=v[Y],ke=b[Y]=ne?Vt(b[Y]):Dt(b[Y]);if(jn(me,ke))y(me,ke,C,null,z,H,oe,re,ne);else break;Y++}for(;Y<=le&&Y<=ce;){const me=v[le],ke=b[ce]=ne?Vt(b[ce]):Dt(b[ce]);if(jn(me,ke))y(me,ke,C,null,z,H,oe,re,ne);else break;le--,ce--}if(Y>le){if(Y<=ce){const me=ce+1,ke=mece)for(;Y<=le;)we(v[Y],z,H,!0),Y++;else{const me=Y,ke=Y,Re=new Map;for(Y=ke;Y<=ce;Y++){const We=b[Y]=ne?Vt(b[Y]):Dt(b[Y]);We.key!=null&&Re.set(We.key,Y)}let Pe,Be=0;const ie=ce-ke+1;let O=!1,Ie=0;const et=new Array(ie);for(Y=0;Y=ie){we(We,z,H,!0);continue}let Ke;if(We.key!=null)Ke=Re.get(We.key);else for(Pe=ke;Pe<=ce;Pe++)if(et[Pe-ke]===0&&jn(We,b[Pe])){Ke=Pe;break}Ke===void 0?we(We,z,H,!0):(et[Ke-ke]=Y+1,Ke>=Ie?Ie=Ke:O=!0,y(We,b[Ke],C,null,z,H,oe,re,ne),Be++)}const he=O?bc(et):xn;for(Pe=he.length-1,Y=ie-1;Y>=0;Y--){const We=ke+Y,Ke=b[We],Un=b[We+1],xr=We+1{const{el:H,type:oe,transition:re,children:ne,shapeFlag:Y}=v;if(Y&6){Ee(v.component.subTree,b,C,j);return}if(Y&128){v.suspense.move(b,C,j);return}if(Y&64){oe.move(v,b,C,x);return}if(oe===De){a(H,b,C);for(let le=0;lere.enter(H),z);else{const{leave:le,delayLeave:ce,afterLeave:me}=re,ke=()=>{v.ctx.isUnmounted?s(H):a(H,b,C)},Re=()=>{H._isLeaving&&H[Nu](!0),le(H,()=>{ke(),me&&me()})};ce?ce(H,ke,Re):Re()}else a(H,b,C)},we=(v,b,C,j=!1,z=!1)=>{const{type:H,props:oe,ref:re,children:ne,dynamicChildren:Y,shapeFlag:fe,patchFlag:le,dirs:ce,cacheIndex:me,memo:ke}=v;if(le===-2&&(z=!1),re!=null&&(qt(),Qn(re,null,C,v,!0),zt()),me!=null&&(b.renderCache[me]=void 0),fe&256){b.ctx.deactivate(v);return}const Re=fe&1&&ce,Pe=!Rn(v);let Be;if(Pe&&(Be=oe&&oe.onVnodeBeforeUnmount)&&Rt(Be,b,v),fe&6)Ve(v.component,C,j);else{if(fe&128){v.suspense.unmount(C,j);return}Re&&un(v,null,b,"beforeUnmount"),fe&64?v.type.remove(v,b,C,x,j):Y&&!Y.hasOnce&&(H!==De||le>0&&le&64)?Te(Y,b,C,!1,!0):(H===De&&le&384||!z&&fe&16)&&Te(ne,b,C),j&&Me(v)}const ie=ke!=null&&me==null;(Pe&&(Be=oe&&oe.onVnodeUnmounted)||Re||ie)&&ot(()=>{Be&&Rt(Be,b,v),Re&&un(v,null,b,"unmounted"),ie&&(v.el=null)},C)},Me=v=>{const{type:b,el:C,anchor:j,transition:z}=v;if(b===De){je(C,j);return}if(b===wa){E(v);return}const H=()=>{s(C),z&&!z.persisted&&z.afterLeave&&z.afterLeave()};if(v.shapeFlag&1&&z&&!z.persisted){const{leave:oe,delayLeave:re}=z,ne=()=>oe(C,H);re?re(v.el,H,ne):ne()}else H()},je=(v,b)=>{let C;for(;v!==b;)C=f(v),s(v),v=C;s(b)},Ve=(v,b,C)=>{const{bum:j,scope:z,job:H,subTree:oe,um:re,m:ne,a:Y}=v;Hr(ne),Hr(Y),j&&ss(j),z.stop(),H&&(H.flags|=8,we(oe,v,b,C)),re&&ot(re,b),ot(()=>{v.isUnmounted=!0},b)},Te=(v,b,C,j=!1,z=!1,H=0)=>{for(let oe=H;oe{if(v.shapeFlag&6)return M(v.component.subTree);if(v.shapeFlag&128)return v.suspense.next();const b=f(v.anchor||v.el),C=b&&b[ko];return C?f(C):b};let ae=!1;const $=(v,b,C)=>{let j;v==null?b._vnode&&(we(b._vnode,null,null,!0),j=b._vnode.component):y(b._vnode||null,v,b,null,null,null,C),b._vnode=v,ae||(ae=!0,Tr(j),yo(),ae=!1)},x={p:y,um:we,m:Ee,r:Me,mt:B,mc:A,pc:te,pbc:Z,n:M,o:e};return{render:$,hydrate:void 0,createApp:ac($)}}function cs({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 cn({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function _c(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function or(e,t,n=!1){const a=e.children,s=t.children;if(ye(a)&&ye(s))for(let r=0;r>1,e[n[o]]0&&(t[a]=n[r-1]),n[r]=a)}}for(r=n.length,i=n[r-1];r-- >0;)n[r]=i,i=t[i];return n}function Ho(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Ho(t)}function Hr(e){if(e)for(let t=0;te.__isSuspense;function wc(e,t){t&&t.pendingBranch?ye(e)?t.effects.push(...e):t.effects.push(e):Eu(e)}const De=Symbol.for("v-fgt"),Wa=Symbol.for("v-txt"),Jt=Symbol.for("v-cmt"),wa=Symbol.for("v-stc"),ta=[];let vt=null;function w(e=!1){ta.push(vt=e?null:[])}function Sc(){ta.pop(),vt=ta[ta.length-1]||null}let oa=1;function Ta(e,t=!1){oa+=e,e<0&&vt&&t&&(vt.hasOnce=!0)}function zo(e){return e.dynamicChildren=oa>0?vt||xn:null,Sc(),oa>0&&vt&&vt.push(e),e}function G(e,t,n,a,s,r){return zo(L(e,t,n,a,s,r,!0))}function K(e,t,n,a,s){return zo(I(e,t,n,a,s,!0))}function la(e){return e?e.__v_isVNode===!0:!1}function jn(e,t){return e.type===t.type&&e.key===t.key}const Ko=({key:e})=>e??null,Sa=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?He(e)||Ue(e)||be(e)?{i:dt,r:e,k:t,f:!!n}:e:null);function L(e,t=null,n=null,a=0,s=null,r=e===De?0:1,i=!1,o=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Ko(t),ref:t&&Sa(t),scopeId:bo,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 o?(lr(l,n),r&128&&e.normalize(l)):n&&(l.shapeFlag|=He(n)?8:16),oa>0&&!i&&vt&&(l.patchFlag>0||r&6)&&l.patchFlag!==32&&vt.push(l),l}const I=kc;function kc(e,t=null,n=null,a=0,s=null,r=!1){if((!e||e===Wu)&&(e=Jt),la(e)){const o=Pn(e,t,!0);return n&&lr(o,n),oa>0&&!r&&vt&&(o.shapeFlag&6?vt[vt.indexOf(e)]=o:vt.push(o)),o.patchFlag=-2,o}if(Dc(e)&&(e=e.__vccOpts),t){t=Ac(t);let{class:o,style:l}=t;o&&!He(o)&&(t.class=Ft(o)),$e(l)&&(Va(l)&&!ye(l)&&(l=tt({},l)),t.style=Ws(l))}const i=He(e)?1:qo(e)?128:Iu(e)?64:$e(e)?4:be(e)?2:0;return L(e,t,n,a,s,i,r,!0)}function Ac(e){return e?Va(e)||No(e)?tt({},e):e:null}function Pn(e,t,n=!1,a=!1){const{props:s,ref:r,patchFlag:i,children:o,transition:l}=e,u=t?Jo(s||{},t):s,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&Ko(u),ref:t&&t.ref?n&&r?ye(r)?r.concat(Sa(t)):[r,Sa(t)]:Sa(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==De?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:l,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Pn(e.ssContent),ssFallback:e.ssFallback&&Pn(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return l&&a&&sr(c,l.clone(c)),c}function U(e=" ",t=0){return I(Wa,null,e,t)}function Wo(e,t){const n=I(wa,null,e);return n.staticCount=t,n}function se(e="",t=!1){return t?(w(),K(Jt,null,e)):I(Jt,null,e)}function Dt(e){return e==null||typeof e=="boolean"?I(Jt):ye(e)?I(De,null,e.slice()):la(e)?Vt(e):I(Wa,null,String(e))}function Vt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Pn(e)}function lr(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),lr(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!No(t)?t._ctx=dt:s===3&&dt&&(dt.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else be(t)?(t={default:t,_ctx:dt},n=32):(t=String(t),a&64?(n=16,t=[U(t)]):n=8);e.children=t,e.shapeFlag|=n}function Jo(...e){const t={};for(let n=0;nst||dt;let Pa,Ds;{const e=Ba(),t=(n,a)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(a),r=>{s.length>1?s.forEach(i=>i(r)):s[0](r)}};Pa=t("__VUE_INSTANCE_SETTERS__",n=>st=n),Ds=t("__VUE_SSR_SETTERS__",n=>ua=n)}const va=e=>{const t=st;return Pa(e),e.scope.on(),()=>{e.scope.off(),Pa(t)}},Gr=()=>{st&&st.scope.off(),Pa(null)};function Yo(e){return e.vnode.shapeFlag&4}let ua=!1;function Rc(e,t=!1,n=!1){t&&Ds(t);const{props:a,children:s}=e.vnode,r=Yo(e);dc(e,a,r,t),gc(e,s,n||t);const i=r?$c(e,t):void 0;return t&&Ds(!1),i}function $c(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Yu);const{setup:a}=n;if(a){qt();const s=e.setupContext=a.length>1?Pc(e):null,r=va(e),i=fa(a,e,0,[e.props,s]),o=Vi(i);if(zt(),r(),(o||e.sp)&&!Rn(e)&&Ao(e),o){if(i.then(Gr,Gr),t)return i.then(l=>{qr(e,l)}).catch(l=>{Ha(l,e,0)});e.asyncDep=i}else qr(e,i)}else Xo(e)}function qr(e,t,n){be(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:$e(t)&&(e.setupState=go(t)),Xo(e)}function Xo(e,t,n){const a=e.type;e.render||(e.render=a.render||Ot);{const s=va(e);qt();try{Xu(e)}finally{zt(),s()}}}const Tc={get(e,t){return at(e,"get",""),e[t]}};function Pc(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Tc),slots:e.slots,emit:e.emit,expose:t}}function ur(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(go(nr(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in ea)return ea[n](e)},has(t,n){return n in t||n in ea}})):e.proxy}function Ic(e,t=!0){return be(e)?e.displayName||e.name:e.name||t&&e.__name}function Dc(e){return be(e)&&"__vccOpts"in e}const Q=(e,t)=>Su(e,t,ua);function V(e,t,n){try{Ta(-1);const a=arguments.length;return a===2?$e(t)&&!ye(t)?la(t)?I(e,null,[t]):I(e,t):I(e,null,t):(a>3?n=Array.prototype.slice.call(arguments,2):a===3&&la(n)&&(n=[n]),I(e,t,n))}finally{Ta(1)}}const Lc="3.5.33";/** +* @vue/runtime-dom v3.5.33 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Ls;const zr=typeof window<"u"&&window.trustedTypes;if(zr)try{Ls=zr.createPolicy("vue",{createHTML:e=>e})}catch{}const Zo=Ls?e=>Ls.createHTML(e):e=>e,Oc="http://www.w3.org/2000/svg",Fc="http://www.w3.org/1998/Math/MathML",jt=typeof document<"u"?document:null,Kr=jt&&jt.createElement("template"),Nc={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"?jt.createElementNS(Oc,e):t==="mathml"?jt.createElementNS(Fc,e):n?jt.createElement(e,{is:n}):jt.createElement(e);return e==="select"&&a&&a.multiple!=null&&s.setAttribute("multiple",a.multiple),s},createText:e=>jt.createTextNode(e),createComment:e=>jt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>jt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,a,s,r){const i=n?n.previousSibling:t.lastChild;if(s&&(s===r||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===r||!(s=s.nextSibling)););else{Kr.innerHTML=Zo(a==="svg"?`${e}`:a==="mathml"?`${e}`:e);const o=Kr.content;if(a==="svg"||a==="mathml"){const l=o.firstChild;for(;l.firstChild;)o.appendChild(l.firstChild);o.removeChild(l)}t.insertBefore(o,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Mc=Symbol("_vtc");function Uc(e,t,n){const a=e[Mc];a&&(t=(t?[t,...a]:[...a]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Wr=Symbol("_vod"),Bc=Symbol("_vsh"),jc=Symbol(""),Vc=/(?:^|;)\s*display\s*:/;function Hc(e,t,n){const a=e.style,s=He(n);let r=!1;if(n&&!s){if(t)if(He(t))for(const i of t.split(";")){const o=i.slice(0,i.indexOf(":")).trim();n[o]==null&&Wn(a,o,"")}else for(const i in t)n[i]==null&&Wn(a,i,"");for(const i in n){i==="display"&&(r=!0);const o=n[i];o!=null?qc(e,i,!He(t)&&t?t[i]:void 0,o)||Wn(a,i,o):Wn(a,i,"")}}else if(s){if(t!==n){const i=a[jc];i&&(n+=";"+i),a.cssText=n,r=Vc.test(n)}}else t&&e.removeAttribute("style");Wr in e&&(e[Wr]=r?a.display:"",e[Bc]&&(a.display="none"))}const Jr=/\s*!important$/;function Wn(e,t,n){if(ye(n))n.forEach(a=>Wn(e,t,a));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const a=Gc(e,t);Jr.test(n)?e.setProperty(on(a),n.replace(Jr,""),"important"):e[a]=n}}const Yr=["Webkit","Moz","ms"],ds={};function Gc(e,t){const n=ds[t];if(n)return n;let a=ft(t);if(a!=="filter"&&a in e)return ds[t]=a;a=Ua(a);for(let s=0;sfs||(Yc.then(()=>fs=0),fs=Date.now());function Zc(e,t){const n=a=>{if(!a._vts)a._vts=Date.now();else if(a._vts<=n.attached)return;Nt(Qc(a,n.value),t,5,[a])};return n.value=e,n.attached=Xc(),n}function Qc(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 ni=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ed=(e,t,n,a,s,r)=>{const i=s==="svg";t==="class"?Uc(e,a,i):t==="style"?Hc(e,n,a):Oa(t)?Fa(t)||Wc(e,t,n,a,r):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):td(e,t,a,i))?(Qr(e,t,a),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Zr(e,t,a,i,r,t!=="value")):e._isVueCE&&(nd(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!He(a)))?Qr(e,ft(t),a,r,t):(t==="true-value"?e._trueValue=a:t==="false-value"&&(e._falseValue=a),Zr(e,t,a,i))};function td(e,t,n,a){if(a)return!!(t==="innerHTML"||t==="textContent"||t in e&&ni(t)&&be(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 ni(t)&&He(n)?!1:t in e}function nd(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 ad=["ctrl","shift","alt","meta"],sd={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)=>ad.some(n=>e[`${n}Key`]&&!t.includes(n))},Ya=(e,t)=>{if(!e)return e;const n=e._withMods||(e._withMods={}),a=t.join(".");return n[a]||(n[a]=((s,...r)=>{for(let i=0;i{const n=e._withKeys||(e._withKeys={}),a=t.join(".");return n[a]||(n[a]=(s=>{if(!("key"in s))return;const r=on(s.key);if(t.some(i=>i===r||rd[i]===r))return e(s)}))},od=tt({patchProp:ed},Nc);let ai;function ld(){return ai||(ai=mc(od))}const ud=((...e)=>{const t=ld().createApp(...e),{mount:n}=t;return t.mount=a=>{const s=dd(a);if(!s)return;const r=t._component;!be(r)&&!r.render&&!r.template&&(r.template=s.innerHTML),s.nodeType===1&&(s.textContent="");const i=n(s,!1,cd(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t});function cd(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function dd(e){return He(e)?document.querySelector(e):e}/*! + * pinia v2.3.1 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */let Qo;const Xa=e=>Qo=e,el=Symbol();function Os(e){return e&&typeof e=="object"&&Object.prototype.toString.call(e)==="[object Object]"&&typeof e.toJSON!="function"}var na;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(na||(na={}));function fd(){const e=Yi(!0),t=e.run(()=>J({}));let n=[],a=[];const s=nr({install(r){Xa(s),s._a=r,r.provide(el,s),r.config.globalProperties.$pinia=s,a.forEach(i=>n.push(i)),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 tl=()=>{};function si(e,t,n,a=tl){e.push(t);const s=()=>{const r=e.indexOf(t);r>-1&&(e.splice(r,1),a())};return!n&&Xi()&&Jl(s),s}function wn(e,...t){e.slice().forEach(n=>{n(...t)})}const pd=e=>e(),ri=Symbol(),ps=Symbol();function Fs(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];Os(s)&&Os(a)&&e.hasOwnProperty(n)&&!Ue(a)&&!Gt(a)?e[n]=Fs(s,a):e[n]=a}return e}const vd=Symbol();function gd(e){return!Os(e)||!e.hasOwnProperty(vd)}const{assign:nn}=Object;function hd(e){return!!(Ue(e)&&e.effect)}function md(e,t,n,a){const{state:s,actions:r,getters:i}=t,o=n.state.value[e];let l;function u(){o||(n.state.value[e]=s?s():{});const c=yu(n.state.value[e]);return nn(c,r,Object.keys(i||{}).reduce((d,f)=>(d[f]=nr(Q(()=>{Xa(n);const h=n._s.get(e);return i[f].call(h,h)})),d),{}))}return l=nl(e,u,t,n,a,!0),l}function nl(e,t,n={},a,s,r){let i;const o=nn({actions:{}},n),l={deep:!0};let u,c,d=[],f=[],h;const g=a.state.value[e];!r&&!g&&(a.state.value[e]={});let y;function m(A){let R;u=c=!1,typeof A=="function"?(A(a.state.value[e]),R={type:na.patchFunction,storeId:e,events:h}):(Fs(a.state.value[e],A),R={type:na.patchObject,payload:A,storeId:e,events:h});const Z=y=Symbol();hn().then(()=>{y===Z&&(u=!0)}),c=!0,wn(d,R,a.state.value[e])}const P=r?function(){const{state:R}=n,Z=R?R():{};this.$patch(ue=>{nn(ue,Z)})}:tl;function _(){i.stop(),d=[],f=[],a._s.delete(e)}const S=(A,R="")=>{if(ri in A)return A[ps]=R,A;const Z=function(){Xa(a);const ue=Array.from(arguments),de=[],pe=[];function B(W){de.push(W)}function q(W){pe.push(W)}wn(f,{args:ue,name:Z[ps],store:F,after:B,onError:q});let X;try{X=A.apply(this&&this.$id===e?this:F,ue)}catch(W){throw wn(pe,W),W}return X instanceof Promise?X.then(W=>(wn(de,W),W)).catch(W=>(wn(pe,W),Promise.reject(W))):(wn(de,X),X)};return Z[ri]=!0,Z[ps]=R,Z},E={_p:a,$id:e,$onAction:si.bind(null,f),$patch:m,$reset:P,$subscribe(A,R={}){const Z=si(d,A,R.detached,()=>ue()),ue=i.run(()=>kt(()=>a.state.value[e],de=>{(R.flush==="sync"?c:u)&&A({storeId:e,type:na.direct,events:h},de)},nn({},l,R)));return Z},$dispose:_},F=Yt(E);a._s.set(e,F);const T=(a._a&&a._a.runWithContext||pd)(()=>a._e.run(()=>(i=Yi()).run(()=>t({action:S}))));for(const A in T){const R=T[A];if(Ue(R)&&!hd(R)||Gt(R))r||(g&&gd(R)&&(Ue(R)?R.value=g[A]:Fs(R,g[A])),a.state.value[e][A]=R);else if(typeof R=="function"){const Z=S(R,A);T[A]=Z,o.actions[A]=R}}return nn(F,T),nn(Ae(F),T),Object.defineProperty(F,"$state",{get:()=>a.state.value[e],set:A=>{m(R=>{nn(R,A)})}}),a._p.forEach(A=>{nn(F,i.run(()=>A({store:F,app:a._a,pinia:a,options:o})))}),g&&r&&n.hydrate&&n.hydrate(F.$state,g),u=!0,c=!0,F}/*! #__NO_SIDE_EFFECTS__ */function mn(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 i(o,l){const u=Ru();return o=o||(u?mt(el,null):null),o&&Xa(o),o=Qo,o._s.has(a)||(r?nl(a,t,s,o):md(a,s,o)),o._s.get(a)}return i.$id=a,i}/*! + * vue-router v4.6.4 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */const kn=typeof document<"u";function al(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function yd(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&al(e.default)}const xe=Object.assign;function vs(e,t){const n={};for(const a in t){const s=t[a];n[a]=Ct(s)?s.map(e):e(s)}return n}const aa=()=>{},Ct=Array.isArray;function ii(e,t){const n={};for(const a in e)n[a]=a in t?t[a]:e[a];return n}const sl=/#/g,_d=/&/g,bd=/\//g,wd=/=/g,Sd=/\?/g,rl=/\+/g,kd=/%5B/g,Ad=/%5D/g,il=/%5E/g,xd=/%60/g,ol=/%7B/g,Cd=/%7C/g,ll=/%7D/g,Ed=/%20/g;function cr(e){return e==null?"":encodeURI(""+e).replace(Cd,"|").replace(kd,"[").replace(Ad,"]")}function Rd(e){return cr(e).replace(ol,"{").replace(ll,"}").replace(il,"^")}function Ns(e){return cr(e).replace(rl,"%2B").replace(Ed,"+").replace(sl,"%23").replace(_d,"%26").replace(xd,"`").replace(ol,"{").replace(ll,"}").replace(il,"^")}function $d(e){return Ns(e).replace(wd,"%3D")}function Td(e){return cr(e).replace(sl,"%23").replace(Sd,"%3F")}function Pd(e){return Td(e).replace(bd,"%2F")}function ca(e){if(e==null)return null;try{return decodeURIComponent(""+e)}catch{}return""+e}const Id=/\/$/,Dd=e=>e.replace(Id,"");function gs(e,t,n="/"){let a,s={},r="",i="";const o=t.indexOf("#");let l=t.indexOf("?");return l=o>=0&&l>o?-1:l,l>=0&&(a=t.slice(0,l),r=t.slice(l,o>0?o:t.length),s=e(r.slice(1))),o>=0&&(a=a||t.slice(0,o),i=t.slice(o,t.length)),a=Nd(a??t,n),{fullPath:a+r+i,path:a,query:s,hash:ca(i)}}function Ld(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function oi(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Od(e,t,n){const a=t.matched.length-1,s=n.matched.length-1;return a>-1&&a===s&&In(t.matched[a],n.matched[s])&&ul(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function In(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function ul(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!Fd(e[n],t[n]))return!1;return!0}function Fd(e,t){return Ct(e)?li(e,t):Ct(t)?li(t,e):(e==null?void 0:e.valueOf())===(t==null?void 0:t.valueOf())}function li(e,t){return Ct(t)?e.length===t.length&&e.every((n,a)=>n===t[a]):e.length===1&&e[0]===t}function Nd(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,i,o;for(i=0;i1&&r--;else break;return n.slice(0,r).join("/")+"/"+a.slice(i).join("/")}const en={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};let Ms=(function(e){return e.pop="pop",e.push="push",e})({}),hs=(function(e){return e.back="back",e.forward="forward",e.unknown="",e})({});function Md(e){if(!e)if(kn){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Dd(e)}const Ud=/^[^#]+#/;function Bd(e,t){return e.replace(Ud,"#")+t}function jd(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 Za=()=>({left:window.scrollX,top:window.scrollY});function Vd(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=jd(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 ui(e,t){return(history.state?history.state.position-t:-1)+e}const Us=new Map;function Hd(e,t){Us.set(e,t)}function Gd(e){const t=Us.get(e);return Us.delete(e),t}function qd(e){return typeof e=="string"||e&&typeof e=="object"}function cl(e){return typeof e=="string"||typeof e=="symbol"}let Ge=(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 dl=Symbol("");Ge.MATCHER_NOT_FOUND+"",Ge.NAVIGATION_GUARD_REDIRECT+"",Ge.NAVIGATION_ABORTED+"",Ge.NAVIGATION_CANCELLED+"",Ge.NAVIGATION_DUPLICATED+"";function Dn(e,t){return xe(new Error,{type:e,[dl]:!0},t)}function Bt(e,t){return e instanceof Error&&dl in e&&(t==null||!!(e.type&t))}const zd=["params","query","hash"];function Kd(e){if(typeof e=="string")return e;if(e.path!=null)return e.path;const t={};for(const n of zd)n in e&&(t[n]=e[n]);return JSON.stringify(t,null,2)}function Wd(e){const t={};if(e===""||e==="?")return t;const n=(e[0]==="?"?e.slice(1):e).split("&");for(let a=0;as&&Ns(s)):[a&&Ns(a)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function Jd(e){const t={};for(const n in e){const a=e[n];a!==void 0&&(t[n]=Ct(a)?a.map(s=>s==null?null:""+s):a==null?a:""+a)}return t}const Yd=Symbol(""),di=Symbol(""),Qa=Symbol(""),dr=Symbol(""),Bs=Symbol("");function Vn(){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 sn(e,t,n,a,s,r=i=>i()){const i=a&&(a.enterCallbacks[s]=a.enterCallbacks[s]||[]);return()=>new Promise((o,l)=>{const u=f=>{f===!1?l(Dn(Ge.NAVIGATION_ABORTED,{from:n,to:t})):f instanceof Error?l(f):qd(f)?l(Dn(Ge.NAVIGATION_GUARD_REDIRECT,{from:t,to:f})):(i&&a.enterCallbacks[s]===i&&typeof f=="function"&&i.push(f),o())},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 ms(e,t,n,a,s=r=>r()){const r=[];for(const i of e)for(const o in i.components){let l=i.components[o];if(!(t!=="beforeRouteEnter"&&!i.instances[o]))if(al(l)){const u=(l.__vccOpts||l)[t];u&&r.push(sn(u,n,a,i,o,s))}else{let u=l();r.push(()=>u.then(c=>{if(!c)throw new Error(`Couldn't resolve component "${o}" at "${i.path}"`);const d=yd(c)?c.default:c;i.mods[o]=c,i.components[o]=d;const f=(d.__vccOpts||d)[t];return f&&sn(f,n,a,i,o,s)()}))}}return r}function Xd(e,t){const n=[],a=[],s=[],r=Math.max(t.matched.length,e.matched.length);for(let i=0;iIn(u,o))?a.push(o):n.push(o));const l=e.matched[i];l&&(t.matched.find(u=>In(u,l))||s.push(l))}return[n,a,s]}/*! + * vue-router v4.6.4 + * (c) 2025 Eduardo San Martin Morote + * @license MIT + */let Zd=()=>location.protocol+"//"+location.host;function fl(e,t){const{pathname:n,search:a,hash:s}=t,r=e.indexOf("#");if(r>-1){let i=s.includes(e.slice(r))?e.slice(r).length:1,o=s.slice(i);return o[0]!=="/"&&(o="/"+o),oi(o,"")}return oi(n,e)+a+s}function Qd(e,t,n,a){let s=[],r=[],i=null;const o=({state:f})=>{const h=fl(e,location),g=n.value,y=t.value;let m=0;if(f){if(n.value=h,t.value=f,i&&i===g){i=null;return}m=y?f.position-y.position:0}else a(h);s.forEach(P=>{P(n.value,g,{delta:m,type:Ms.pop,direction:m?m>0?hs.forward:hs.back:hs.unknown})})};function l(){i=n.value}function u(f){s.push(f);const h=()=>{const g=s.indexOf(f);g>-1&&s.splice(g,1)};return r.push(h),h}function c(){if(document.visibilityState==="hidden"){const{history:f}=window;if(!f.state)return;f.replaceState(xe({},f.state,{scroll:Za()}),"")}}function d(){for(const f of r)f();r=[],window.removeEventListener("popstate",o),window.removeEventListener("pagehide",c),document.removeEventListener("visibilitychange",c)}return window.addEventListener("popstate",o),window.addEventListener("pagehide",c),document.addEventListener("visibilitychange",c),{pauseListeners:l,listen:u,destroy:d}}function fi(e,t,n,a=!1,s=!1){return{back:e,current:t,forward:n,replaced:a,position:window.history.length,scroll:s?Za():null}}function ef(e){const{history:t,location:n}=window,a={value:fl(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:Zd()+e+l;try{t[c?"replaceState":"pushState"](u,"",f),s.value=u}catch(h){console.error(h),n[c?"replace":"assign"](f)}}function i(l,u){r(l,xe({},t.state,fi(s.value.back,l,s.value.forward,!0),u,{position:s.value.position}),!0),a.value=l}function o(l,u){const c=xe({},s.value,t.state,{forward:l,scroll:Za()});r(c.current,c,!0),r(l,xe({},fi(a.value,l,null),{position:c.position+1},u),!1),a.value=l}return{location:a,state:s,push:o,replace:i}}function tf(e){e=Md(e);const t=ef(e),n=Qd(e,t.state,t.location,t.replace);function a(r,i=!0){i||n.pauseListeners(),history.go(r)}const s=xe({location:"",base:e,go:a,createHref:Bd.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 nf(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),tf(e)}let pn=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.Group=2]="Group",e})({});var Je=(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})(Je||{});const af={type:pn.Static,value:""},sf=/[a-zA-Z0-9_]/;function rf(e){if(!e)return[[]];if(e==="/")return[[af]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(h){throw new Error(`ERR (${n})/"${u}": ${h}`)}let n=Je.Static,a=n;const s=[];let r;function i(){r&&s.push(r),r=[]}let o=0,l,u="",c="";function d(){u&&(n===Je.Static?r.push({type:pn.Static,value:u}):n===Je.Param||n===Je.ParamRegExp||n===Je.ParamRegExpEnd?(r.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),r.push({type:pn.Param,value:u,regexp:c,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),u="")}function f(){u+=l}for(;ot.length?t.length===1&&t[0]===lt.Static+lt.Segment?1:-1:0}function pl(e,t){let n=0;const a=e.score,s=t.score;for(;n0&&t[t.length-1]<0}const df={strict:!1,end:!0,sensitive:!1};function ff(e,t,n){const a=uf(rf(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 pf(e,t){const n=[],a=new Map;t=ii(df,t);function s(d){return a.get(d)}function r(d,f,h){const g=!h,y=hi(d);y.aliasOf=h&&h.record;const m=ii(t,d),P=[y];if("alias"in d){const E=typeof d.alias=="string"?[d.alias]:d.alias;for(const F of E)P.push(hi(xe({},y,{components:h?h.record.components:y.components,path:F,aliasOf:h?h.record:y})))}let _,S;for(const E of P){const{path:F}=E;if(f&&F[0]!=="/"){const D=f.record.path,T=D[D.length-1]==="/"?"":"/";E.path=f.record.path+(F&&T+F)}if(_=ff(E,f,m),h?h.alias.push(_):(S=S||_,S!==_&&S.alias.push(_),g&&d.name&&!mi(_)&&i(d.name)),vl(_)&&l(_),y.children){const D=y.children;for(let T=0;T{i(S)}:aa}function i(d){if(cl(d)){const f=a.get(d);f&&(a.delete(d),n.splice(n.indexOf(f),1),f.children.forEach(i),f.alias.forEach(i))}else{const f=n.indexOf(d);f>-1&&(n.splice(f,1),d.record.name&&a.delete(d.record.name),d.children.forEach(i),d.alias.forEach(i))}}function o(){return n}function l(d){const f=hf(d,n);n.splice(f,0,d),d.record.name&&!mi(d)&&a.set(d.record.name,d)}function u(d,f){let h,g={},y,m;if("name"in d&&d.name){if(h=a.get(d.name),!h)throw Dn(Ge.MATCHER_NOT_FOUND,{location:d});m=h.record.name,g=xe(gi(f.params,h.keys.filter(S=>!S.optional).concat(h.parent?h.parent.keys.filter(S=>S.optional):[]).map(S=>S.name)),d.params&&gi(d.params,h.keys.map(S=>S.name))),y=h.stringify(g)}else if(d.path!=null)y=d.path,h=n.find(S=>S.re.test(y)),h&&(g=h.parse(y),m=h.record.name);else{if(h=f.name?a.get(f.name):n.find(S=>S.re.test(f.path)),!h)throw Dn(Ge.MATCHER_NOT_FOUND,{location:d,currentLocation:f});m=h.record.name,g=xe({},f.params,d.params),y=h.stringify(g)}const P=[];let _=h;for(;_;)P.unshift(_.record),_=_.parent;return{name:m,path:y,params:g,matched:P,meta:gf(P)}}e.forEach(d=>r(d));function c(){n.length=0,a.clear()}return{addRoute:r,resolve:u,removeRoute:i,clearRoutes:c,getRoutes:o,getRecordMatcher:s}}function gi(e,t){const n={};for(const a of t)a in e&&(n[a]=e[a]);return n}function hi(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:vf(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 vf(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 mi(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function gf(e){return e.reduce((t,n)=>xe(t,n.meta),{})}function hf(e,t){let n=0,a=t.length;for(;n!==a;){const r=n+a>>1;pl(e,t[r])<0?a=r:n=r+1}const s=mf(e);return s&&(a=t.lastIndexOf(s,a-1)),a}function mf(e){let t=e;for(;t=t.parent;)if(vl(t)&&pl(e,t)===0)return t}function vl({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function yi(e){const t=mt(Qa),n=mt(dr),a=Q(()=>{const l=p(e.to);return t.resolve(l)}),s=Q(()=>{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(In.bind(null,c));if(f>-1)return f;const h=_i(l[u-2]);return u>1&&_i(c)===h&&d[d.length-1].path!==h?d.findIndex(In.bind(null,l[u-2])):f}),r=Q(()=>s.value>-1&&Sf(n.params,a.value.params)),i=Q(()=>s.value>-1&&s.value===n.matched.length-1&&ul(n.params,a.value.params));function o(l={}){if(wf(l)){const u=t[p(e.replace)?"replace":"push"](p(e.to)).catch(aa);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>u),u}return Promise.resolve()}return{route:a,href:Q(()=>a.value.href),isActive:r,isExactActive:i,navigate:o}}function yf(e){return e.length===1?e[0]:e}const _f=qe({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:yi,setup(e,{slots:t}){const n=Yt(yi(e)),{options:a}=mt(Qa),s=Q(()=>({[bi(e.activeClass,a.linkActiveClass,"router-link-active")]:n.isActive,[bi(e.exactActiveClass,a.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const r=t.default&&yf(t.default(n));return e.custom?r:V("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},r)}}}),bf=_f;function wf(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 Sf(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(!Ct(s)||s.length!==a.length||a.some((r,i)=>r.valueOf()!==s[i].valueOf()))return!1}return!0}function _i(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const bi=(e,t,n)=>e??t??n,kf=qe({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const a=mt(Bs),s=Q(()=>e.route||a.value),r=mt(di,0),i=Q(()=>{let u=p(r);const{matched:c}=s.value;let d;for(;(d=c[u])&&!d.components;)u++;return u}),o=Q(()=>s.value.matched[i.value]);Zn(di,Q(()=>i.value+1)),Zn(Yd,o),Zn(Bs,s);const l=J();return kt(()=>[l.value,o.value,e.name],([u,c,d],[f,h,g])=>{c&&(c.instances[d]=u,h&&h!==c&&u&&u===f&&(c.leaveGuards.size||(c.leaveGuards=h.leaveGuards),c.updateGuards.size||(c.updateGuards=h.updateGuards))),u&&c&&(!h||!In(c,h)||!f)&&(c.enterCallbacks[d]||[]).forEach(y=>y(u))},{flush:"post"}),()=>{const u=s.value,c=e.name,d=o.value,f=d&&d.components[c];if(!f)return wi(n.default,{Component:f,route:u});const h=d.props[c],g=h?h===!0?u.params:typeof h=="function"?h(u):h:null,m=V(f,xe({},g,t,{onVnodeUnmounted:P=>{P.component.isUnmounted&&(d.instances[c]=null)},ref:l}));return wi(n.default,{Component:m,route:u})||m}}});function wi(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const gl=kf;function Af(e){const t=pf(e.routes,e),n=e.parseQuery||Wd,a=e.stringifyQuery||ci,s=e.history,r=Vn(),i=Vn(),o=Vn(),l=gu(en);let u=en;kn&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=vs.bind(null,M=>""+M),d=vs.bind(null,Pd),f=vs.bind(null,ca);function h(M,ae){let $,x;return cl(M)?($=t.getRecordMatcher(M),x=ae):x=M,t.addRoute(x,$)}function g(M){const ae=t.getRecordMatcher(M);ae&&t.removeRoute(ae)}function y(){return t.getRoutes().map(M=>M.record)}function m(M){return!!t.getRecordMatcher(M)}function P(M,ae){if(ae=xe({},ae||l.value),typeof M=="string"){const C=gs(n,M,ae.path),j=t.resolve({path:C.path},ae),z=s.createHref(C.fullPath);return xe(C,j,{params:f(j.params),hash:ca(C.hash),redirectedFrom:void 0,href:z})}let $;if(M.path!=null)$=xe({},M,{path:gs(n,M.path,ae.path).path});else{const C=xe({},M.params);for(const j in C)C[j]==null&&delete C[j];$=xe({},M,{params:d(C)}),ae.params=d(ae.params)}const x=t.resolve($,ae),ee=M.hash||"";x.params=c(f(x.params));const v=Ld(a,xe({},M,{hash:Rd(ee),path:x.path})),b=s.createHref(v);return xe({fullPath:v,hash:ee,query:a===ci?Jd(M.query):M.query||{}},x,{redirectedFrom:void 0,href:b})}function _(M){return typeof M=="string"?gs(n,M,l.value.path):xe({},M)}function S(M,ae){if(u!==M)return Dn(Ge.NAVIGATION_CANCELLED,{from:ae,to:M})}function E(M){return T(M)}function F(M){return E(xe(_(M),{replace:!0}))}function D(M,ae){const $=M.matched[M.matched.length-1];if($&&$.redirect){const{redirect:x}=$;let ee=typeof x=="function"?x(M,ae):x;return typeof ee=="string"&&(ee=ee.includes("?")||ee.includes("#")?ee=_(ee):{path:ee},ee.params={}),xe({query:M.query,hash:M.hash,params:ee.path!=null?{}:M.params},ee)}}function T(M,ae){const $=u=P(M),x=l.value,ee=M.state,v=M.force,b=M.replace===!0,C=D($,x);if(C)return T(xe(_(C),{state:typeof C=="object"?xe({},ee,C.state):ee,force:v,replace:b}),ae||$);const j=$;j.redirectedFrom=ae;let z;return!v&&Od(a,x,$)&&(z=Dn(Ge.NAVIGATION_DUPLICATED,{to:j,from:x}),Ee(x,x,!0,!1)),(z?Promise.resolve(z):Z(j,x)).catch(H=>Bt(H)?Bt(H,Ge.NAVIGATION_GUARD_REDIRECT)?H:Se(H):te(H,j,x)).then(H=>{if(H){if(Bt(H,Ge.NAVIGATION_GUARD_REDIRECT))return T(xe({replace:b},_(H.to),{state:typeof H.to=="object"?xe({},ee,H.to.state):ee,force:v}),ae||j)}else H=de(j,x,!0,b,ee);return ue(j,x,H),H})}function A(M,ae){const $=S(M,ae);return $?Promise.reject($):Promise.resolve()}function R(M){const ae=je.values().next().value;return ae&&typeof ae.runWithContext=="function"?ae.runWithContext(M):M()}function Z(M,ae){let $;const[x,ee,v]=Xd(M,ae);$=ms(x.reverse(),"beforeRouteLeave",M,ae);for(const C of x)C.leaveGuards.forEach(j=>{$.push(sn(j,M,ae))});const b=A.bind(null,M,ae);return $.push(b),Te($).then(()=>{$=[];for(const C of r.list())$.push(sn(C,M,ae));return $.push(b),Te($)}).then(()=>{$=ms(ee,"beforeRouteUpdate",M,ae);for(const C of ee)C.updateGuards.forEach(j=>{$.push(sn(j,M,ae))});return $.push(b),Te($)}).then(()=>{$=[];for(const C of v)if(C.beforeEnter)if(Ct(C.beforeEnter))for(const j of C.beforeEnter)$.push(sn(j,M,ae));else $.push(sn(C.beforeEnter,M,ae));return $.push(b),Te($)}).then(()=>(M.matched.forEach(C=>C.enterCallbacks={}),$=ms(v,"beforeRouteEnter",M,ae,R),$.push(b),Te($))).then(()=>{$=[];for(const C of i.list())$.push(sn(C,M,ae));return $.push(b),Te($)}).catch(C=>Bt(C,Ge.NAVIGATION_CANCELLED)?C:Promise.reject(C))}function ue(M,ae,$){o.list().forEach(x=>R(()=>x(M,ae,$)))}function de(M,ae,$,x,ee){const v=S(M,ae);if(v)return v;const b=ae===en,C=kn?history.state:{};$&&(x||b?s.replace(M.fullPath,xe({scroll:b&&C&&C.scroll},ee)):s.push(M.fullPath,ee)),l.value=M,Ee(M,ae,$,b),Se()}let pe;function B(){pe||(pe=s.listen((M,ae,$)=>{if(!Ve.listening)return;const x=P(M),ee=D(x,Ve.currentRoute.value);if(ee){T(xe(ee,{replace:!0,force:!0}),x).catch(aa);return}u=x;const v=l.value;kn&&Hd(ui(v.fullPath,$.delta),Za()),Z(x,v).catch(b=>Bt(b,Ge.NAVIGATION_ABORTED|Ge.NAVIGATION_CANCELLED)?b:Bt(b,Ge.NAVIGATION_GUARD_REDIRECT)?(T(xe(_(b.to),{force:!0}),x).then(C=>{Bt(C,Ge.NAVIGATION_ABORTED|Ge.NAVIGATION_DUPLICATED)&&!$.delta&&$.type===Ms.pop&&s.go(-1,!1)}).catch(aa),Promise.reject()):($.delta&&s.go(-$.delta,!1),te(b,x,v))).then(b=>{b=b||de(x,v,!1),b&&($.delta&&!Bt(b,Ge.NAVIGATION_CANCELLED)?s.go(-$.delta,!1):$.type===Ms.pop&&Bt(b,Ge.NAVIGATION_ABORTED|Ge.NAVIGATION_DUPLICATED)&&s.go(-1,!1)),ue(x,v,b)}).catch(aa)}))}let q=Vn(),X=Vn(),W;function te(M,ae,$){Se(M);const x=X.list();return x.length?x.forEach(ee=>ee(M,ae,$)):console.error(M),Promise.reject(M)}function ve(){return W&&l.value!==en?Promise.resolve():new Promise((M,ae)=>{q.add([M,ae])})}function Se(M){return W||(W=!M,B(),q.list().forEach(([ae,$])=>M?$(M):ae()),q.reset()),M}function Ee(M,ae,$,x){const{scrollBehavior:ee}=e;if(!kn||!ee)return Promise.resolve();const v=!$&&Gd(ui(M.fullPath,0))||(x||!$)&&history.state&&history.state.scroll||null;return hn().then(()=>ee(M,ae,v)).then(b=>b&&Vd(b)).catch(b=>te(b,M,ae))}const we=M=>s.go(M);let Me;const je=new Set,Ve={currentRoute:l,listening:!0,addRoute:h,removeRoute:g,clearRoutes:t.clearRoutes,hasRoute:m,getRoutes:y,resolve:P,options:e,push:E,replace:F,go:we,back:()=>we(-1),forward:()=>we(1),beforeEach:r.add,beforeResolve:i.add,afterEach:o.add,onError:X.add,isReady:ve,install(M){M.component("RouterLink",bf),M.component("RouterView",gl),M.config.globalProperties.$router=Ve,Object.defineProperty(M.config.globalProperties,"$route",{enumerable:!0,get:()=>p(l)}),kn&&!Me&&l.value===en&&(Me=!0,E(s.location).catch(x=>{}));const ae={};for(const x in en)Object.defineProperty(ae,x,{get:()=>l.value[x],enumerable:!0});M.provide(Qa,Ve),M.provide(dr,po(ae)),M.provide(Bs,l);const $=M.unmount;je.add(M),M.unmount=function(){je.delete(M),je.size<1&&(u=en,pe&&pe(),pe=null,l.value=en,Me=!1,W=!1),$()}}};function Te(M){return M.reduce((ae,$)=>ae.then(()=>R($)),Promise.resolve())}return Ve}function Zt(){return mt(Qa)}function es(e){return mt(dr)}var xf={},Cf=new Set(["primary","secondary","accent","success","warning","danger","error","info"]);function Oe(...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 Nn(e,t="primary"){return Cf.has(e)?e:t}function Ye(e,t=""){if(!e)return null;const n=e.includes("ph ")||e.startsWith("ph-");n||typeof process<"u"&&xf&&console.warn(`[gnexus-ui-kit] Icon "${e}" is missing the required "ph-" prefix. Use "ph-${e}" instead.`);const a=n?e:`ph-${e}`;return V("i",{class:Oe("ph",a,t),"aria-hidden":"true"})}function hl(e){const t=e.target;return t.type==="checkbox"?t.checked:t.value}var Ef=["a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","[tabindex]:not([tabindex='-1'])"].join(",");function Rf(e,t){if(e.key!=="Tab"||!t)return;const n=[...t.querySelectorAll(Ef)].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 $f=qe({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 V("article",{class:"card action-card"},[V("div",{class:"card-content"},[(e.kicker||t.kicker)&&V("span",{class:"action-card-kicker"},((n=t.kicker)==null?void 0:n.call(t))||e.kicker),V("h3",{class:"action-card-title"},((a=t.title)==null?void 0:a.call(t))||e.title),(e.text||t.default)&&V("p",{class:"action-card-text"},((s=t.default)==null?void 0:s.call(t))||e.text),t.actions&&V("div",{class:"action-card-actions"},t.actions())])])}}}),Ze=qe({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=Nn(e.variant);return V("div",{...t,role:e.role,class:Oe("alert",`alert-${s}`,t.class)},(a=n.default)==null?void 0:a.call(n))}}}),Tf=qe({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=Nn(e.variant);return V("span",{...t,class:Oe("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?V("img",{src:e.src,alt:e.alt}):Ye(e.icon)||e.initials,e.status&&V("span",{class:"avatar-status","aria-hidden":"true"})])}}}),_e=qe({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=Nn(e.variant);return V("span",{...t,class:Oe("badge",e.outline&&s==="primary"?"badge-primary-outline":`badge-${s}`,t.class)},(a=n.default)==null?void 0:a.call(n))}}}),ge=qe({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=Nn(e.variant);return V("button",{...t,type:e.type,disabled:e.disabled||e.loading,class:Oe("btn",`btn-${r}`,{"btn-small":e.size==="sm","btn-large":e.size==="lg","with-icon":s,"loading-state":e.loading},t.class)},[e.loading?Ye("ph-bold ph-spinner"):Ye(e.icon),(a=n.default)==null?void 0:a.call(n)])}}}),Si=qe({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,i,o;const l=e.clickable?"button":"span",u=e.variant?Nn(e.variant):"",c=(i=(r=(s=a.default)==null?void 0:s.call(a))==null?void 0:r[0])==null?void 0:i.children;return V(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:Oe("chip",u&&`chip-${u}`,{"chip-selected":e.selected,"chip-disabled":e.disabled},t.class)},[Ye(e.icon),(o=a.default)==null?void 0:o.call(a),e.removable&&V("button",{class:"chip-remove",type:"button","aria-label":c?`Remove ${c}`:"Remove",onClick:d=>{d.stopPropagation(),n("remove")}},[Ye("ph-x")])])}}}),Pf=0,ut=qe({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-${++Pf}`,s=J(null),r=J(!1),i=J(!1);let o=null,l=null;const u=()=>{t("update:open",!1),t("close")},c=f=>{f.key==="Escape"?(f.preventDefault(),u()):Rf(f,s.value)},d=()=>{hn(()=>{var f;(f=s.value)==null||f.focus()})};return kt(()=>e.open,f=>{var h;f?(i.value=!0,r.value=!0,hn(()=>{requestAnimationFrame(()=>{i.value=!1})}),o=document.activeElement,document.addEventListener("keydown",c),d()):(i.value=!0,document.removeEventListener("keydown",c),(h=o==null?void 0:o.focus)==null||h.call(o),o=null,l=window.setTimeout(()=>{r.value=!1,i.value=!1},300))},{flush:"post"}),qa(()=>{document.removeEventListener("keydown",c),window.clearTimeout(l)}),()=>{var f,h,g;return r.value?V(Fu,{to:"body"},[V("div",{class:Oe("modal",i.value?"a-hide":"a-show"),"aria-hidden":"false"},[V("div",{class:"modal-backdrop",onClick:()=>e.closeOnBackdrop&&u()}),V("div",{ref:s,class:"modal-dialog",role:"dialog","aria-modal":"true","aria-labelledby":a,tabindex:"-1"},[V("header",{class:"modal-header"},[V("h4",{class:"modal-title",id:a},((f=n.title)==null?void 0:f.call(n))||e.title),V("button",{class:"btn-icon modal-close",type:"button","aria-label":"Close",onClick:u},[Ye("ph-x")])]),V("div",{class:"modal-panel"},[V("div",{class:"modal-body"},(h=n.default)==null?void 0:h.call(n)),(n.footer||n.actions)&&V("footer",{class:"modal-footer"},[(g=n.footer)==null?void 0:g.call(n),n.actions&&V("div",{class:"actions"},n.actions({close:u}))])])])])]):null}}}),If=qe({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=J(!1);let a=null;const s=async()=>{try{await navigator.clipboard.writeText(e.text)}catch{const i=document.createElement("textarea");i.value=e.text,i.style.position="fixed",i.style.opacity="0",document.body.appendChild(i),i.select(),document.execCommand("copy"),document.body.removeChild(i)}n.value=!0,window.clearTimeout(a),a=window.setTimeout(()=>{n.value=!1},e.duration),t("copy",e.text)};return()=>V("button",{class:Oe("btn-icon",{"btn-icon-sm":e.size==="sm"}),type:"button","aria-label":e.label,onClick:s},[Ye(n.value?e.successIcon:e.icon)])}}),Df=qe({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=J(!1),s=J(null),r=()=>{a.value=!1,document.removeEventListener("click",i),document.removeEventListener("keydown",o)},i=c=>{s.value&&!s.value.contains(c.target)&&r()},o=c=>{c.key==="Escape"&&(c.preventDefault(),r())},l=()=>{a.value=!a.value,a.value?(setTimeout(()=>document.addEventListener("click",i),0),document.addEventListener("keydown",o)):r()},u=c=>{var d;c.disabled||((d=c.onSelect)==null||d.call(c,c),t("select",c),r())};return qa(r),()=>{var c,d;return V("div",{ref:s,class:Oe("dropdown",{"is-open":a.value})},[((c=n.trigger)==null?void 0:c.call(n,{open:a.value,toggle:l}))||V(ge,{variant:e.variant,icon:e.icon,"aria-expanded":a.value?"true":"false",onClick:l},()=>e.label),V("div",{class:"dropdown-menu",role:"menu"},((d=n.default)==null?void 0:d.call(n,{close:r}))||e.items.map(f=>V("button",{class:Oe("dropdown-item",f.danger&&"dropdown-item-danger"),type:"button",role:"menuitem",disabled:f.disabled,onClick:()=>u(f)},[Ye(f.icon),f.label])))])}}}),Lf=qe({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 V("div",{...t,class:Oe("empty-state",e.variant&&`empty-state-${e.variant}`,t.class)},[V("div",{class:"empty-state-icon"},[Ye(e.icon)]),V("h3",{class:"empty-state-title"},((a=n.title)==null?void 0:a.call(n))||e.title),(e.text||n.default)&&V("p",{class:"empty-state-text"},((s=n.default)==null?void 0:s.call(n))||e.text),n.actions&&V("div",{class:"empty-state-actions"},n.actions())])}}}),At=qe({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=V("input",{...t,type:e.type,value:e.modelValue,class:Oe(e.bare?"":"input",t.class),onInput:s=>n("update:modelValue",hl(s))});return e.bare?a:V("div",{class:"form-group"},[V("label",{class:Oe("label",e.state)},[e.label,Ye(e.icon),a]),e.help&&V("div",{class:Oe("input-info",e.state==="error"&&"error")},e.help)])}}}),ml=qe({name:"GnLoader",inheritAttrs:!1,props:{circle:{type:Boolean,default:!1},label:{type:String,default:"Loading"}},setup(e,{attrs:t}){return()=>e.circle?V("div",{...t,class:Oe("circle-loader",t.class)},[Ye("ph-bold ph-spinner normalize"),e.label]):V("div",{...t,class:Oe("loader",t.class),role:"status","aria-label":e.label})}});function Of(){var e;const t=Ja();return((e=t==null?void 0:t.proxy)==null?void 0:e.$router)||null}function Ff(){var e;const t=Ja();return((e=t==null?void 0:t.proxy)==null?void 0:e.$route)||null}function Nf(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 Mf=qe({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=Of(),r=Ff(),i=!!(s&&r),o=u=>{if(u){if(typeof u=="string")return u;if(u.path)return u.path}},l=Q(()=>e.items.map(u=>{const c=!!u.to,d=c?i?s.resolve(u.to).href:o(u.to):u.href,f=c&&i?Nf(r,u.to,e.activeMatch):!!u.active;return{...u,resolvedHref:d,isActive:f,hasTo:c}}));return()=>V("ul",{...t,class:Oe("list list-nav",t.class)},l.value.map(u=>{var c,d;return V("li",{class:Oe("list-item",{"list-item-active":u.isActive})},[V(u.resolvedHref?"a":"button",{class:"list-action",href:u.resolvedHref,type:u.resolvedHref?void 0:"button",onClick:f=>{var h;u.hasTo&&i&&(f.preventDefault(),s.push(u.to)),(h=u.onSelect)==null||h.call(u,u,f),n("select",u)}},[V("span",{class:"list-label"},[Ye(u.icon),((c=a.label)==null?void 0:c.call(a,{item:u}))||u.label]),(u.meta||a.meta)&&V("span",{class:"list-meta"},((d=a.meta)==null?void 0:d.call(a,{item:u}))||u.meta)])])}))}}),Uf=0,Bf=qe({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=J(!1),s=`gn-nav-drawer-${++Uf}`,r=J(null);let i=null;const o=()=>{a.value=!1},l=()=>{a.value=!a.value},u=c=>{c.key==="Escape"&&(c.preventDefault(),o())};return kt(a,c=>{var d;c?(i=document.activeElement,document.body.classList.add("nav-drawer-open"),document.addEventListener("keydown",u),hn(()=>{var f;return(f=r.value)==null?void 0:f.focus()})):(document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u),(d=i==null?void 0:i.focus)==null||d.call(i),i=null)}),qa(()=>{document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u)}),()=>{var c,d,f,h,g,y,m;return[V("header",{class:"nav-topbar"},[V("button",{class:"nav-topbar-toggle",type:"button","aria-controls":s,"aria-expanded":a.value?"true":"false",onClick:l},[Ye("ph-sidebar-simple"),V("span",{},"Menu")]),V("div",{class:"nav-topbar-brand"},[e.logoSrc&&V("img",{src:e.logoSrc,alt:"","aria-hidden":"true"}),V("span",{},((c=n.brand)==null?void 0:c.call(n))||e.brand)]),V("div",{class:"nav-topbar-current"},((d=n.current)==null?void 0:d.call(n))||e.current)]),V("div",{class:"nav-drawer-backdrop",onClick:o}),V("aside",{ref:r,class:["nav-drawer",{"is-open":a.value}],id:s,"aria-label":"Navigation","aria-hidden":a.value?"false":"true",tabindex:"-1"},[V("header",{class:"nav-drawer-header"},[V("div",{},[V("div",{class:"nav-drawer-title"},((f=n.title)==null?void 0:f.call(n))||e.title),V("div",{class:"nav-drawer-subtitle"},((h=n.subtitle)==null?void 0:h.call(n))||e.subtitle)]),V("button",{class:"nav-drawer-close",type:"button","aria-label":"Close navigation",onClick:o},[Ye("ph-x")])]),V("nav",{class:"nav-drawer-body"},[((g=n.default)==null?void 0:g.call(n,{close:o}))||V(Mf,{items:e.items,activeMatch:e.activeMatch,onSelect:P=>{t("select",P),o()}})]),(n.footer||e.footerLeft||e.footerRight)&&V("footer",{class:"nav-drawer-footer"},((y=n.footer)==null?void 0:y.call(n))||[V("span",{},e.footerLeft),V("span",{},e.footerRight)])]),(m=n.content)==null?void 0:m.call(n)]}}}),Et=qe({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 V("header",{...t,class:Oe("page-header",{"page-header-compact":e.compact,"page-header-accent":e.accent},t.class)},[V("div",{class:"page-header-content"},[(e.kicker||n.kicker)&&V("div",{class:"page-header-kicker"},((a=n.kicker)==null?void 0:a.call(n))||e.kicker),V("h1",{class:"page-header-title"},((s=n.title)==null?void 0:s.call(n))||e.title),(e.subtitle||n.subtitle)&&V("p",{class:"page-header-subtitle"},((r=n.subtitle)==null?void 0:r.call(n))||e.subtitle),n.meta&&V("div",{class:"page-header-meta"},n.meta())]),n.actions&&V("div",{class:"page-header-actions"},n.actions())])}}}),fr=qe({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 i=typeof r=="object"?r.value:r,o=typeof r=="object"?r.label:r;return V("option",{value:i},o)});return()=>{var r;return V("div",{class:"form-group"},[V("label",{class:Oe("label",e.state)},[e.label,Ye(e.icon),V("div",{class:"select-wrap"},[V("select",{...t,value:e.modelValue,class:Oe("input select",t.class),onChange:i=>n("update:modelValue",hl(i))},((r=a.default)==null?void 0:r.call(a))||s())])]),e.help&&V("div",{class:Oe("input-info",e.state==="error"&&"error")},e.help)])}}}),jf=qe({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 V("label",{class:Oe("switch",t.class)},[V("input",{...t,type:"checkbox",checked:e.modelValue,disabled:e.disabled,onChange:r=>n("update:modelValue",r.target.checked)}),V("span",{class:"switch-control","aria-hidden":"true"}),V("span",{class:"switch-label"},((s=a.default)==null?void 0:s.call(a))||e.label)])}}}),Ln=qe({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 V("div",{class:"table-wrapper"},[V("table",{class:Oe("table data-list",{"table-empty":!e.rows.length},t.class)},[e.caption&&V("caption",{class:"table-caption"},e.caption),V("thead",{class:"table-head"},[V("tr",{class:"table-row"},e.columns.map(s=>V("th",{scope:"col"},s.label)))]),V("tbody",{class:"table-body"},e.rows.length?e.rows.map(s=>V("tr",{class:"table-row"},e.columns.map(r=>{var i;const o=`cell-${r.key}`;return V("td",{},((i=n[o])==null?void 0:i.call(n,{row:s,column:r,value:s[r.key]}))||s[r.key])}))):V("tr",{},[V("td",{class:"is-empty",colspan:e.columns.length},((a=n.empty)==null?void 0:a.call(n))||e.emptyText)]))])])}}}),yl=Symbol("gnexus-ui-kit-toast"),ki={info:"ph-info",success:"ph-check-circle",warning:"ph-warning",danger:"ph-warning-octagon",error:"ph-warning-octagon",primary:"ph-info",secondary:"ph-info"},Vf=qe({name:"GnToastProvider",props:{lifetime:{type:Number,default:4e3}},setup(e,{slots:t,expose:n}){const a=J(null),s=J(!1),r=J(!1);let i=null,o=null,l=null;const u=J(100),c=()=>{window.clearTimeout(o),window.clearInterval(l),s.value=!0,r.value=!1,o=window.setTimeout(()=>{a.value=null,s.value=!1,u.value=100,window.clearTimeout(i),i=null},300)},d=()=>{window.clearTimeout(o),window.clearTimeout(i),window.clearInterval(l),s.value=!1,r.value=!1,u.value=100,a.value=null},f=y=>{window.clearTimeout(o),window.clearInterval(l),s.value=!1,r.value=!1,u.value=100;const m=Nn(y.variant||y.type||"info","info"),P=y.lifetime!==void 0?y.lifetime:e.lifetime;if(a.value={id:Date.now(),variant:m==="error"?"danger":m,title:y.title||"",text:y.text||y.message||"",icon:y.icon||ki[m]||ki.info,lifetime:P},window.clearTimeout(i),P!==0){const S=P/100;u.value=100,l=window.setInterval(()=>{u.value-=100/S,u.value<=0&&window.clearInterval(l)},100),i=window.setTimeout(c,P)}hn(()=>{requestAnimationFrame(()=>{r.value=!0})})},h={show:f,close:d,info:y=>f({...y,variant:"info"}),success:y=>f({...y,variant:"success"}),warning:y=>f({...y,variant:"warning"}),danger:y=>f({...y,variant:"danger"}),error:y=>f({...y,variant:"danger"})};Zn(yl,h),n(h);const g=()=>s.value?"a-hide":r.value?"a-show":"";return()=>{var y;return[(y=t.default)==null?void 0:y.call(t),a.value&&V("div",{class:Oe("toast",g(),`toast-${a.value.variant}`),role:"alert"},[V("div",{class:"toast-content"},[V("div",{class:"toast-header"},[Ye(a.value.icon),a.value.title]),a.value.text&&V("p",{class:"toast-text"},a.value.text)]),V("button",{class:"btn-icon toast-close",type:"button","aria-label":"Close",onClick:c},[Ye("ph-x")]),a.value.lifetime!==0&&V("div",{class:"toast-progress"},[V("div",{class:"toast-progress-bar",style:{transform:`scaleX(${Math.max(0,u.value/100)})`}})])])]}}}),Hf=qe({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))||V(Tf,{...e.avatar,size:e.compact?"sm":"md"})},a=()=>V("span",{class:"identity"},[n(),V("span",{class:"identity-content"},[V("span",{class:"identity-title"},e.name),e.email&&V("span",{class:"identity-meta"},e.email)])]),s=()=>t.actions?t.actions():e.actions.length?V("div",{class:"user-card-actions"},e.actions.map(r=>{if(e.compact)return V("button",{class:"btn-icon",type:"button","aria-label":r.label,onClick:r.onClick},[Ye(r.icon)]);const i=!!r.icon,o=Oe("btn","btn-small",{[`btn-${r.variant}`]:r.variant,"btn-secondary":!r.variant,"with-icon":i});return V("button",{class:o,type:"button",onClick:r.onClick},[i&&Ye(r.icon),r.label])})):null;return()=>{const r=Oe("card","user-card",{"user-card-compact":e.compact}),i=[];e.href?i.push(V("a",{class:"profile-identity",href:e.href,target:"_blank",rel:"noopener noreferrer"},[a()])):i.push(a()),!e.compact&&e.role&&i.push(V("span",{class:"user-card-role"},e.role)),t.default&&!e.compact&&i.push(V("div",{class:"user-card-extra"},t.default()));const o=s();return o&&i.push(o),V("article",{class:r},[V("div",{class:"user-card-body"},i)])}}});function yn(){const e=mt(yl,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 Ia="shserv_access_token",Da="shserv_expires_at";let $n=null;function pr(e,t=null){$n=e||null;try{if($n){if(localStorage.setItem(Ia,$n),t!=null&&t>0){const n=Date.now()+t*1e3;localStorage.setItem(Da,String(n))}}else localStorage.removeItem(Ia),localStorage.removeItem(Da)}catch{}}function _l(){if($n)return $n;try{return localStorage.getItem(Ia)||null}catch{return null}}function Gf(){try{const e=localStorage.getItem(Da);return e?Number(e):null}catch{return null}}function An(){$n=null;try{localStorage.removeItem(Ia),localStorage.removeItem(Da)}catch{}}const qf="modulepreload",zf=function(e){return"/"+e},Ai={},bl=function(t,n,a){let s=Promise.resolve();if(n&&n.length>0){let i=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 o=document.querySelector("meta[property=csp-nonce]"),l=(o==null?void 0:o.nonce)||(o==null?void 0:o.getAttribute("nonce"));s=i(n.map(u=>{if(u=zf(u),u in Ai)return;Ai[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":qf,c||(f.as="script"),f.crossOrigin="",f.href=u,l&&f.setAttribute("nonce",l),document.head.appendChild(f),c)return new Promise((h,g)=>{f.addEventListener("load",h),f.addEventListener("error",()=>g(new Error(`Unable to preload CSS for ${u}`)))})}))}function r(i){const o=new Event("vite:preloadError",{cancelable:!0});if(o.payload=i,window.dispatchEvent(o),!o.defaultPrevented)throw i}return s.then(i=>{for(const o of i||[])o.status==="rejected"&&r(o.reason);return t().catch(r)})};/*! Capacitor: https://capacitorjs.com/ - MIT License */var On;(function(e){e.Unimplemented="UNIMPLEMENTED",e.Unavailable="UNAVAILABLE"})(On||(On={}));class ys extends Error{constructor(t,n,a){super(t),this.message=t,this.code=n,this.data=a}}const Kf=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"},Wf=e=>{const t=e.CapacitorCustomPlatform||null,n=e.Capacitor||{},a=n.Plugins=n.Plugins||{},s=()=>t!==null?t.name:Kf(e),r=()=>s()!=="web",i=d=>{const f=u.get(d);return!!(f!=null&&f.platforms.has(s())||o(d))},o=d=>{var f;return(f=n.PluginHeaders)===null||f===void 0?void 0:f.find(h=>h.name===d)},l=d=>e.console.error(d),u=new Map,c=(d,f={})=>{const h=u.get(d);if(h)return console.warn(`Capacitor plugin "${d}" already registered. Cannot register plugins twice.`),h.proxy;const g=s(),y=o(d);let m;const P=async()=>(!m&&g in f?m=typeof f[g]=="function"?m=await f[g]():m=f[g]:t!==null&&!m&&"web"in f&&(m=typeof f.web=="function"?m=await f.web():m=f.web),m),_=(A,R)=>{var Z,ue;if(y){const de=y==null?void 0:y.methods.find(pe=>R===pe.name);if(de)return de.rtype==="promise"?pe=>n.nativePromise(d,R.toString(),pe):(pe,B)=>n.nativeCallback(d,R.toString(),pe,B);if(A)return(Z=A[R])===null||Z===void 0?void 0:Z.bind(A)}else{if(A)return(ue=A[R])===null||ue===void 0?void 0:ue.bind(A);throw new ys(`"${d}" plugin is not implemented on ${g}`,On.Unimplemented)}},S=A=>{let R;const Z=(...ue)=>{const de=P().then(pe=>{const B=_(pe,A);if(B){const q=B(...ue);return R=q==null?void 0:q.remove,q}else throw new ys(`"${d}.${A}()" is not implemented on ${g}`,On.Unimplemented)});return A==="addListener"&&(de.remove=async()=>R()),de};return Z.toString=()=>`${A.toString()}() { [capacitor code] }`,Object.defineProperty(Z,"name",{value:A,writable:!1,configurable:!1}),Z},E=S("addListener"),F=S("removeListener"),D=(A,R)=>{const Z=E({eventName:A},R),ue=async()=>{const pe=await Z;F({eventName:A,callbackId:pe},R)},de=new Promise(pe=>Z.then(()=>pe({remove:ue})));return de.remove=async()=>{console.warn("Using addListener() without 'await' is deprecated."),await ue()},de},T=new Proxy({},{get(A,R){switch(R){case"$$typeof":return;case"toJSON":return()=>({});case"addListener":return y?D:E;case"removeListener":return F;default:return S(R)}}});return a[d]=T,u.set(d,{name:d,proxy:T,platforms:new Set([...Object.keys(f),...y?[g]:[]])}),T};return n.convertFileSrc||(n.convertFileSrc=d=>d),n.getPlatform=s,n.handleError=l,n.isNativePlatform=r,n.isPluginAvailable=i,n.registerPlugin=c,n.Exception=ys,n.DEBUG=!!n.DEBUG,n.isLoggingEnabled=!!n.isLoggingEnabled,n},Jf=e=>e.Capacitor=Wf(e),js=Jf(typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),ts=js.registerPlugin;class vr{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 i=async()=>this.removeListener(t,n);return Promise.resolve({remove:i})}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 js.Exception(t,On.Unimplemented)}unavailable(t="not available"){return new js.Exception(t,On.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 xi=e=>encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape),Ci=e=>e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent);class Yf extends vr{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=Ci(s).trim(),r=Ci(r).trim(),n[s]=r}),n}async setCookie(t){try{const n=xi(t.key),a=xi(t.value),s=t.expires?`; expires=${t.expires.replace("expires=","")}`:"",r=(t.path||"/").replace("path=",""),i=t.url!=null&&t.url.length>0?`domain=${t.url}`:"";document.cookie=`${n}=${a||""}${s}; path=${r}; ${i};`}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)}}}ts("CapacitorCookies",{web:()=>new Yf});const Xf=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)}),Zf=(e={})=>{const t=Object.keys(e);return Object.keys(e).map(s=>s.toLocaleLowerCase()).reduce((s,r,i)=>(s[r]=e[t[i]],s),{})},Qf=(e,t=!0)=>e?Object.entries(e).reduce((a,s)=>{const[r,i]=s;let o,l;return Array.isArray(i)?(l="",i.forEach(u=>{o=t?encodeURIComponent(u):u,l+=`${r}=${o}&`}),l.slice(0,-1)):(o=t?encodeURIComponent(i):i,l=`${r}=${o}`),`${a}&${l}`},"").substr(1):null,ep=(e,t={})=>{const n=Object.assign({method:e.method||"GET",headers:e.headers},t),s=Zf(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[i,o]of Object.entries(e.data||{}))r.set(i,o);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((o,l)=>{r.append(l,o)});else for(const o of Object.keys(e.data))r.append(o,e.data[o]);n.body=r;const i=new Headers(n.headers);i.delete("content-type"),n.headers=i}else(s.includes("application/json")||typeof e.data=="object")&&(n.body=JSON.stringify(e.data));return n};class tp extends vr{async request(t){const n=ep(t,t.webFetchExtra),a=Qf(t.params,t.shouldEncodeUrlParams),s=a?`${t.url}?${a}`:t.url,r=await fetch(s,n),i=r.headers.get("content-type")||"";let{responseType:o="text"}=r.ok?t:{};i.includes("application/json")&&(o="json");let l,u;switch(o){case"arraybuffer":case"blob":u=await r.blob(),l=await Xf(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"}))}}ts("CapacitorHttp",{web:()=>new tp});var Ei;(function(e){e.Dark="DARK",e.Light="LIGHT",e.Default="DEFAULT"})(Ei||(Ei={}));var Ri;(function(e){e.StatusBar="StatusBar",e.NavigationBar="NavigationBar"})(Ri||(Ri={}));class np extends vr{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")}}ts("SystemBars",{web:()=>new np});const gr=ts("Preferences",{web:()=>bl(()=>import("./web-BImqM6lN.js"),[]).then(e=>new e.PreferencesWeb)}),hr="shserv_server_url";let wl="";function Qt(){return typeof window<"u"&&window.Capacitor!==void 0}function Sl(){return wl}function ka(e){wl=String(e||"").replace(/\/+$/,"")}async function ap(){if(!Qt()){ka("");return}try{const{value:e}=await gr.get({key:hr});ka(e||"")}catch{ka("")}}async function sp(e){const t=String(e||"").replace(/\/+$/,"");if(ka(t),!!Qt())try{await gr.set({key:hr,value:t})}catch{}}function Fn(e){const t=Sl();if(!t)return e;const n=String(e||"").replace(/^\/+/,"");return n?`${t}/${n}`:t}async function rp(){if(!Qt())return!0;const{value:e}=await gr.get({key:hr});return!!e}const La={DEBUG:0,INFO:1,WARN:2,ERROR:3};function kl(){return La[void 0]??La.INFO}function mr(){return kl()<=La.DEBUG}function $i(e){return La[e]>=kl()}function Ti(e){return e<10?`${e.toFixed(1)}ms`:`${Math.round(e)}ms`}function Al(e,t=500){if(!e)return"";const n=String(e);return n.length>t?n.slice(0,t)+"…":n}function xl(e,t){try{const n=JSON.stringify(e);return t?Al(n,t):n}catch{return"[Circular]"}}const ip=1e4,_s="[vue:http]";function op(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 lp(e,t){const n=String(e||"").replace(/\/+$/,""),a=String(t||"").replace(/^\/+/,"");return n?`${n}/${a}`:`/${a}`}function up(e,t){return`${e}${op(t)}`}async function Pi(e,t,n,a={}){const s=Number(a.timeoutMs||ip),r=new AbortController,i=setTimeout(()=>r.abort(),s),o=Sl(),l=lp(o,up(t,a.query)),u={Accept:"application/json",...a.headers||{}},c=_l();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)),mr()&&console.debug(_s,e,l,n?xl(n,500):"");const f=performance.now();try{const h=await fetch(l,d),g=await h.text();let y=g;if(g)try{y=JSON.parse(g)}catch{y=g}const m=performance.now()-f,P=h.status>=500?"ERROR":h.status>=400?"WARN":"INFO";return $i(P)&&console[P.toLowerCase()](_s,`${e} ${l} — ${h.status} in ${Ti(m)}`,Al(g||"",200)),{response:h,data:y,meta:{url:l,method:e,statusCode:h.status,headers:h.headers}}}catch(h){const g=performance.now()-f;throw $i("ERROR")&&console.error(_s,`${e} ${l} — FAILED in ${Ti(g)}`,(h==null?void 0:h.message)||h),h}finally{clearTimeout(i)}}let bs=!1,Vs=[];function cp(e){Vs.push(e)}function Ii(e){Vs.forEach(t=>t(e)),Vs=[]}function Hn(e,t,n={}){return{type:e,message:t,...n}}async function yr(e,t,n,a){var s,r;try{const{response:i,data:o,meta:l}=await Pi(e,t,n,a);if(!i.ok){if(i.status===401&&!(a!=null&&a._retryOnce)){if(bs)await new Promise(c=>{cp(d=>c(d))});else{bs=!0;try{const c=await Pi("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)pr(d),Ii(d);else throw new Error("No token in refresh response")}else throw new Error("Refresh failed")}catch{return Ii(null),An(),window.location.hash.includes("/login")||(Qt()?window.location.href="/#/login":window.location.href=Fn(`/auth/login?return_to=${encodeURIComponent(window.location.href)}`)),{ok:!1,error:Hn("http_error","HTTP 401",{statusCode:401,raw:o}),meta:l}}finally{bs=!1}}return _l()?yr(e,t,n,{...a,_retryOnce:!0}):{ok:!1,error:Hn("http_error","HTTP 401",{statusCode:401,raw:o}),meta:l}}return{ok:!1,error:Hn("http_error",`HTTP ${i.status}`,{statusCode:i.status,raw:o}),meta:l}}return o&&typeof o=="object"&&(o.status===!1||o.status==="error")?{ok:!1,error:Hn("api_error",o.msg||o.message||"API error",{errorAlias:o.error_alias,failedFields:o.failed_fields||[],raw:o}),meta:l}:{ok:!0,data:o,meta:l}}catch(i){const o=(i==null?void 0:i.name)==="AbortError";return{ok:!1,error:Hn(o?"timeout":"network_error",(i==null?void 0:i.message)||"Network error",{details:i}),meta:{url:t,method:e,statusCode:0,headers:null}}}}function Le(e,t){return yr("GET",e,null,t)}function Qe(e,t,n){return yr("POST",e,t,n)}const Mn=mn("auth",()=>{const e=J(null),t=J([]),n=J(!1),a=J(null),s=Q(()=>!!e.value),r=Q(()=>new Set(t.value));function i(y){return r.value.has(y)}function o(y){return Array.isArray(y)?y.some(m=>r.value.has(m)):!1}function l(){a.value&&(clearTimeout(a.value),a.value=null);const y=Gf();if(!y)return;const m=y-Date.now()-6e4;m>0?a.value=setTimeout(()=>{f().then(()=>{l()})},m):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=Le("/auth/me").then(async y=>{var m,P,_;if(y.ok){const S=((m=y.data)==null?void 0:m.data)||{};e.value=S.user||null,t.value=S.permissions||[],l()}else if(((P=y.error)==null?void 0:P.statusCode)===401){await f();const S=await Le("/auth/me");if(S.ok){const E=((_=S.data)==null?void 0:_.data)||{};e.value=E.user||null,t.value=E.permissions||[],l()}else e.value=null,t.value=[],An(),u()}else e.value=null,t.value=[],An(),u()}).catch(()=>{e.value=null,t.value=[],An(),u()}).finally(()=>{n.value=!1}),c)}async function f(){var m,P,_,S;const y=await Qe("/auth/refresh");if(y.ok){const E=((P=(m=y.data)==null?void 0:m.data)==null?void 0:P.access_token)||null,F=((S=(_=y.data)==null?void 0:_.data)==null?void 0:S.expires_in)||null;pr(E,F),l()}else An(),u()}async function h(){try{await Qe("/auth/logout")}catch{}e.value=null,t.value=[],An(),u(),window.location.href="/#/login"}function g(){if(Qt()){window.location.href="/#/login";return}const y=window.location.href;window.location.href=Fn(`/auth/login?return_to=${encodeURIComponent(y)}`)}return{user:e,permissions:t,isLoading:n,isAuthenticated:s,hasPermission:i,hasAnyPermission:o,init:d,refreshToken:f,logout:h,redirectToLogin:g}}),dp={__name:"AppShell",setup(e){const t=es(),n=Mn(),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=Q(()=>{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"}],i=Q(()=>r.filter(f=>f.permission?n.hasPermission(f.permission):!0));function o(f){return f?f.split(/\s+/).slice(0,2).map(h=>{var g;return(g=h[0])==null?void 0:g.toUpperCase()}).join(""):""}function l(f){return f?f.charAt(0).toUpperCase()+f.slice(1):""}function u(){if(Qt()){window.location.href=Fn("/auth/login?return_to=/auth/mobile-bridge");return}const f=window.location.href;window.location.href=Fn(`/auth/login?return_to=${encodeURIComponent(f)}`)}function c(){const f=document.querySelector(".nav-drawer-backdrop");f&&f.click()}function d(){c(),n.logout()}return(f,h)=>(w(),K(p(Bf),{brand:"SHSERV","logo-src":"/logo-cube-square.svg",title:"Navigation",subtitle:"Smart Home",items:i.value,"active-match":"prefix",current:s.value},{content:k(()=>[za(f.$slots,"default")]),footer:k(()=>{var g,y,m,P,_,S;return[p(n).isAuthenticated?(w(),K(p(Hf),{key:0,name:((g=p(n).user)==null?void 0:g.display_name)||"User",email:((y=p(n).user)==null?void 0:y.email)||"",role:l((m=p(n).user)==null?void 0:m.system_role),avatar:{src:((P=p(n).user)==null?void 0:P.avatar_url)||"",initials:o((_=p(n).user)==null?void 0:_.display_name),size:"sm"},href:((S=p(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"])):(w(),K(p(ge),{key:1,variant:"primary",size:"sm",onClick:u},{icon:k(()=>[...h[0]||(h[0]=[L("i",{class:"ph ph-sign-in"},null,-1)])]),default:k(()=>[h[1]||(h[1]=U(" 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},fp={key:0},pp={key:1,class:"error-meta"},vp={class:"error-actions"},gp={__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=Q(()=>{var s;return t.message||((s=t.error)==null?void 0:s.message)||""}),a=Q(()=>{if(!t.error)return"";try{return JSON.stringify(t.error,null,2)}catch{return String(t.error)}});return(s,r)=>(w(),K(p(Ze),{variant:"danger",role:"alert"},{default:k(()=>[L("strong",null,N(e.title),1),n.value?(w(),G("p",fp,N(n.value),1)):se("",!0),e.error?(w(),G("div",pp,[e.error.type?(w(),K(p(_e),{key:0,variant:"secondary"},{default:k(()=>[U(N(e.error.type),1)]),_:1})):se("",!0),e.error.statusCode?(w(),K(p(_e),{key:1,variant:"secondary"},{default:k(()=>[U("HTTP "+N(e.error.statusCode),1)]),_:1})):se("",!0),e.error.errorAlias?(w(),K(p(_e),{key:2,variant:"warning"},{default:k(()=>[U(N(e.error.errorAlias),1)]),_:1})):se("",!0)])):se("",!0),L("div",vp,[e.error?(w(),K(p(If),{key:0,text:a.value,label:"Copy error details",size:"sm"},null,8,["text"])):se("",!0),e.retry?(w(),K(p(ge),{key:1,variant:"danger",onClick:e.retry},{default:k(()=>[...r[0]||(r[0]=[U("Retry",-1)])]),_:1},8,["onClick"])):se("",!0)])]),_:1}))}},pt=ze(gp,[["__scopeId","data-v-f1e6bcb8"]]),hp={key:0,class:"error-boundary",role:"alert"},mp={__name:"AppErrorBoundary",setup(e){const t=J(!1),n=J("");Eo((s,r,i)=>{const o=(s==null?void 0:s.message)||String(s);return console.error("[AppErrorBoundary] Caught Vue error:",o,"| info:",i,s),t.value=!0,n.value=o,!1});function a(){t.value=!1,n.value=""}return(s,r)=>t.value?(w(),G("div",hp,[I(pt,{title:"Something went wrong",message:n.value,retry:a},null,8,["message"])])):za(s.$slots,"default",{key:1},void 0,!0)}},yp=ze(mp,[["__scopeId","data-v-1e10ea7f"]]),_p={__name:"App",setup(e){return(t,n)=>(w(),K(dp,null,{default:k(()=>[I(p(Vf),null,{default:k(()=>[I(yp,null,{default:k(()=>[I(p(gl))]),_:1})]),_:1})]),_:1}))}},$t={list(e){return Le("/api/v1/areas/list",e)},innerList(e,t){return Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/list`,t)},newArea(e){return Qe("/api/v1/areas/new-area",e)},remove(e){return Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/remove`)},devices(e,t){return Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/devices`,t)},scripts(e,t){return Le(`/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 Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/unassign-from-area`)}};function gt(e={}){const t=J(null),n=J(!1),a=J(null);async function s(o){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 o(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 o;(o=t.value)==null||o.abort(),t.value=null}function i(){a.value=null,r()}return{abortController:t,isLoading:n,error:a,execute:s,abort:r,clear:i}}const Cl="sh:areas:expandedNodes";function bp(){try{const e=localStorage.getItem(Cl);if(e){const t=JSON.parse(e);if(Array.isArray(t))return new Set(t)}}catch{}return new Set}function wp(e){try{localStorage.setItem(Cl,JSON.stringify([...e]))}catch{}}function Sp(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,i=a.parent_id&&t[a.parent_id];!r&&i?t[a.parent_id].children.push(s):n.push(s)}return n.length===0&&e.length>0?Object.values(t):n}const wt=mn("areas",()=>{const e=J([]),t=J(null),n=J([]),a=J([]),s=gt(),r=gt(),i=Q(()=>Object.fromEntries(e.value.map(D=>[String(D.id),D]))),o=Q(()=>Sp(e.value)),l=J(bp());kt(l,D=>{wp(D)},{deep:!0});function u(D){const T=new Set(l.value);T.has(D)?T.delete(D):T.add(D),l.value=T}function c(D){return l.value.has(D)}async function d(){return s.execute(async D=>{var A,R;const T=await $t.list({signal:D});return T.ok&&(e.value=((R=(A=T.data)==null?void 0:A.data)==null?void 0:R.areas)||[]),T})}async function f(D){var A,R,Z,ue,de,pe;r.abort();const T=new AbortController;r.abortController.value=T,r.isLoading.value=!0,r.error.value=null,t.value=i.value[String(D)]||null,n.value=[],a.value=[];try{const[B,q]=await Promise.all([$t.devices(D,{signal:T.signal}),$t.scripts(D,{signal:T.signal})]);return r.abortController.value=null,r.isLoading.value=!1,B.ok?q.ok?(n.value=((ue=(Z=B.data)==null?void 0:Z.data)==null?void 0:ue.devices)||[],a.value=((pe=(de=q.data)==null?void 0:de.data)==null?void 0:pe.scripts)||[],{ok:!0}):(((R=q.error)==null?void 0:R.type)!=="timeout"&&(r.error.value=q.error),{ok:!1,error:r.error.value}):(((A=B.error)==null?void 0:A.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 h(){t.value=null,n.value=[],a.value=[],r.clear()}async function g(D){var A,R;const T=await $t.devices(D);return T.ok&&(n.value=((R=(A=T.data)==null?void 0:A.data)==null?void 0:R.devices)||[]),T}async function y(D){var A,R;const T=await $t.scripts(D);return T.ok&&(a.value=((R=(A=T.data)==null?void 0:A.data)==null?void 0:R.scripts)||[]),T}async function m(D){var A,R;const T=await $t.newArea(D);if(T.ok){const Z=(R=(A=T.data)==null?void 0:A.data)==null?void 0:R.area;Z&&e.value.push(Z)}return T}async function P(D,T){const A=await $t.updateDisplayName({area_id:D,display_name:T});if(A.ok){const R=e.value.findIndex(Z=>Z.id===D);R!==-1&&(e.value[R]={...e.value[R],display_name:T})}return A}async function _(D){const T=await $t.remove(D);return T.ok&&(e.value=e.value.filter(A=>A.id!==D)),T}function S(D){return!(D!=null&&D.parent_id)||D.parent_id<=0}async function E(D,T){const A=e.value.find(ue=>ue.id===D),R=e.value.filter(S).length;if(A&&S(A)&&R===1)return{ok:!1,error:{message:"Cannot assign the last root area as a child."}};const Z=await $t.placeInArea({target_id:D,place_in_area_id:T});if(Z.ok){const ue=e.value.findIndex(de=>de.id===D);ue!==-1&&e.value.splice(ue,1,{...e.value[ue],parent_id:Number(T)})}return Z}async function F(D){const T=await $t.unassign(D);if(T.ok){const A=e.value.findIndex(R=>R.id===D);A!==-1&&e.value.splice(A,1,{...e.value[A],parent_id:0})}return T}return{areas:e,isLoading:s.isLoading,error:s.error,currentArea:t,currentAreaDevices:n,currentAreaScripts:a,isLoadingAreaDetail:r.isLoading,errorAreaDetail:r.error,areasById:i,areaTree:o,expandedNodeIds:l,toggleNode:u,isNodeExpanded:c,loadAreas:d,loadAreaDetail:f,clearAreaDetail:h,loadAreaDevices:g,loadAreaScripts:y,createArea:m,renameArea:P,removeArea:_,assignToArea:E,unassignArea:F}}),El="sh_fav_areas";function kp(){try{return JSON.parse(localStorage.getItem(El)||"[]").map(String)}catch{return[]}}function Di(e){localStorage.setItem(El,JSON.stringify(e.map(String)))}const _r=mn("favorites",()=>{const e=J(kp());function t(r){return e.value.includes(String(r))}function n(r){const i=String(r);e.value.includes(i)||(e.value.push(i),Di(e.value))}function a(r){e.value=e.value.filter(i=>i!==String(r)),Di(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}}),Ap=["aria-label"],Rl={__name:"AreaFavoriteButton",props:{areaId:{type:[String,Number],required:!0}},setup(e){const t=e,n=_r(),a=Q(()=>n.has(t.areaId));return(s,r)=>(w(),G("button",{class:Ft(["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]=Ya(i=>p(n).toggle(e.areaId),["stop"]))},[L("i",{class:Ft(["ph",a.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple"])},null,2)],10,Ap))}},bt={__name:"AppLoadingState",props:{text:{type:String,default:"Loading"}},setup(e){return(t,n)=>(w(),K(p(ml),{circle:"",label:e.text},null,8,["label"]))}},rt={__name:"AppEmptyState",props:{title:{type:String,default:"Nothing here"},message:{type:String,default:""}},setup(e){return(t,n)=>(w(),K(p(Lf),{title:e.title,text:e.message,icon:"ph-package"},{actions:k(()=>[za(t.$slots,"action")]),_:3},8,["title","text"]))}},xp={class:"page"},Cp={key:3,class:"area-favorites-list"},Ep=["onClick"],Rp={class:"area-favorite-info"},$p={class:"area-favorite-title"},Tp={class:"area-favorite-meta"},Pp={key:0,class:"area-favorite-parent"},Ip={class:"area-favorite-actions"},Dp={__name:"AreaFavoritesPage",setup(e){const t=wt(),n=_r(),a=Zt(),s=Q(()=>{const o=new Set(n.ids.map(String));return t.areas.filter(l=>o.has(String(l.id)))});function r(o){if(!o.parent_id)return null;const l=t.areasById[String(o.parent_id)];return(l==null?void 0:l.display_name)||null}function i(o){a.push({name:"area-detail",params:{id:String(o.id)}})}return _t(()=>{t.areas.length===0&&t.loadAreas()}),(o,l)=>{const u=ln("router-link");return w(),G("section",xp,[I(p(Et),{title:"Favorites",kicker:"Areas"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(s.value.length)+" favorite areas",1)]),_:1})]),_:1}),p(t).isLoading?(w(),K(bt,{key:0,text:"Loading areas"})):p(t).error?(w(),K(pt,{key:1,title:"Areas loading failed",error:p(t).error,retry:p(t).loadAreas},null,8,["error","retry"])):s.value.length===0?(w(),K(rt,{key:2,title:"No favorite areas",message:"Favorite areas from the current client are preserved through localStorage."})):(w(),G("ul",Cp,[(w(!0),G(De,null,Wt(s.value,c=>(w(),G("li",{key:c.id,class:"area-favorite-item"},[L("article",{class:"area-favorite-card",onClick:d=>i(c)},[l[2]||(l[2]=L("div",{class:"area-favorite-icon"},[L("i",{class:"ph ph-fill ph-bookmark-simple"})],-1)),L("div",Rp,[L("h2",$p,N(c.display_name),1),L("p",Tp,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(c.type),1)]),_:2},1024),L("code",null,N(c.alias),1),r(c)?(w(),G("span",Pp,[l[1]||(l[1]=U(" in ",-1)),I(u,{to:{name:"area-detail",params:{id:String(c.parent_id)}},class:"parent-link",onClick:l[0]||(l[0]=Ya(()=>{},["stop"]))},{default:k(()=>[U(N(r(c)),1)]),_:2},1032,["to"])])):se("",!0)])]),L("div",Ip,[I(Rl,{"area-id":c.id},null,8,["area-id"])])],8,Ep)]))),128))]))])}}},Lp=ze(Dp,[["__scopeId","data-v-f8795944"]]);function Mt(){const e=Mn();return{has:t=>e.hasPermission(t),hasAny:t=>e.hasAnyPermission(t),permissions:e.permissions}}const Op=["disabled","aria-expanded"],Fp={class:"area-tree-info"},Np={class:"text-muted"},Mp={class:"area-tree-actions"},Up={key:0,class:"area-tree-children"},Bp={key:1,class:"area-tree-node"},jp={class:"area-tree-card area-tree-cycle text-danger"},Vp={__name:"AreaTreeNode",props:{area:{type:Object,required:!0},ancestors:{type:Array,default:()=>[]}},setup(e){const t=e,n=Zt(),a=wt(),s=Q(()=>a.isNodeExpanded(t.area.id)),r=Q(()=>{var c;return!((c=t.area.children)!=null&&c.length)}),i=Q(()=>t.ancestors.includes(String(t.area.id))),o=Q(()=>[...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 h;const f=ln("AreaTreeNode",!0);return i.value?(w(),G("li",Bp,[L("article",jp," Cycle skipped for area ID "+N(e.area.id),1)])):(w(),G("li",{key:0,class:Ft(["area-tree-node",{"is-open":s.value,"is-leaf":r.value}])},[L("article",{class:"area-tree-card",onClick:u},[L("button",{class:Ft(["tree-toggle",{"text-primary":!r.value,"text-muted":r.value}]),type:"button",disabled:r.value,"aria-expanded":s.value,onClick:Ya(l,["stop"])},N(r.value?"·":s.value?"−":"+"),11,Op),L("div",Fp,[L("h2",null,N(e.area.display_name),1),L("p",Np,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(e.area.type),1)]),_:1}),L("code",null,N(e.area.alias),1)])]),L("div",Mp,[I(Rl,{"area-id":e.area.id},null,8,["area-id"])])]),(h=e.area.children)!=null&&h.length&&s.value?(w(),G("ul",Up,[(w(!0),G(De,null,Wt(e.area.children,g=>(w(),K(f,{key:g.id,area:g,ancestors:o.value},null,8,["area","ancestors"]))),128))])):se("",!0)],2))}}},Hp={class:"page"},Gp={key:3,class:"area-tree"},qp={class:"form-group"},zp={class:"form-group"},Kp={class:"form-group"},Wp={key:0,class:"form-group"},Jp={__name:"AreaTreePage",setup(e){const t=wt(),n=yn(),a=Mt(),s=J(!1),r=J(!1),i=J(""),o=Yt({type:"",alias:"",display_name:""});function l(){o.type="",o.alias="",o.display_name="",i.value="",s.value=!0}async function u(){var d;r.value=!0,i.value="";const c=await t.createArea({...o});if(r.value=!1,!c.ok){i.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 _t(()=>{t.loadAreas()}),(c,d)=>(w(),G("section",Hp,[I(p(Et),{title:"Tree",kicker:"Areas"},{actions:k(()=>[p(a).has("areas.manage")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-plus",onClick:l},{default:k(()=>[...d[5]||(d[5]=[U("Create area",-1)])]),_:1})):se("",!0)]),_:1}),p(t).isLoading?(w(),K(bt,{key:0,text:"Loading areas tree"})):p(t).error?(w(),K(pt,{key:1,title:"Areas loading failed",error:p(t).error,retry:p(t).loadAreas},null,8,["error","retry"])):p(t).areaTree.length===0?(w(),K(rt,{key:2,title:"No areas",message:"No areas found. Create one to get started."})):(w(),G("ul",Gp,[(w(!0),G(De,null,Wt(p(t).areaTree,f=>(w(),K(Vp,{key:f.id,area:f},null,8,["area"]))),128))])),I(p(ut),{open:s.value,title:"Create area","onUpdate:open":d[4]||(d[4]=f=>s.value=f)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:d[3]||(d[3]=f=>s.value=!1)},{default:k(()=>[...d[6]||(d[6]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:u},{default:k(()=>[...d[7]||(d[7]=[U("Create",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",qp,[I(p(At),{modelValue:o.type,"onUpdate:modelValue":d[0]||(d[0]=f=>o.type=f),label:"Type",placeholder:"room"},null,8,["modelValue"])]),L("div",zp,[I(p(At),{modelValue:o.alias,"onUpdate:modelValue":d[1]||(d[1]=f=>o.alias=f),label:"Alias",placeholder:"kitchen"},null,8,["modelValue"])]),L("div",Kp,[I(p(At),{modelValue:o.display_name,"onUpdate:modelValue":d[2]||(d[2]=f=>o.display_name=f),label:"Display name",placeholder:"Kitchen"},null,8,["modelValue"])]),i.value?(w(),G("div",Wp,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(i.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"])]))}},Yp=ze(Jp,[["__scopeId","data-v-5f02f384"]]),Xp={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 Zp(e){const t={};for(const[n,a]of Object.entries(e||{}))t[Xp[n]||n]=a;return t}function Gn(e){return encodeURIComponent(String(e))}function Qp(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(Zp)}}}}const nt={async list(){return Qp(await Le("/api/v1/devices/list"))},status(e,t){return Le(`/api/v1/devices/id/${Gn(e)}/status`,t)},reboot(e){return Le(`/api/v1/devices/id/${Gn(e)}/reboot`)},action(e){return Qe("/api/v1/devices/action",e)},scanningSetup(e){return Le("/api/v1/devices/scanning/setup",{timeoutMs:12e4,...e})},scanningAll(e){return Le("/api/v1/devices/scanning/all",{timeoutMs:12e4,...e})},setupNewDevice(e){return Qe("/api/v1/devices/setup/new-device",e)},detail(e,t){return Le(`/api/v1/devices/id/${Gn(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 Le(`/api/v1/devices/id/${Gn(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 Le(`/api/v1/devices/id/${Gn(e)}/unassign-from-area`)},placeInArea(e){return Qe("/api/v1/devices/place-in-area",e)}},ev=4;function Hs(e){return String((e==null?void 0:e.id)||"")}function br(e,t){return{deviceId:Hs(e),status:"idle",message:"",response:null,connectionStatus:(e==null?void 0:e.connection_status)||"unknown",updatedAt:null,...t}}function tv(e,t){var s,r;const a=(((r=(s=t.data)==null?void 0:s.data)==null?void 0:r.device)||{}).device_response||{};return br(e,{status:"ready",message:a.status||"ok",response:a,connectionStatus:"active",updatedAt:new Date().toISOString()})}function nv(e,t){var s,r,i;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 br(e,{status:"error",message:((i=t.error)==null?void 0:i.message)||"Device state is unavailable",response:n,connectionStatus:a,updatedAt:new Date().toISOString()})}async function av(e,t,n){let a=0;const s=Math.max(1,Math.min(t,e.length));async function r(){for(;a{const e=J([]),t=J({}),n=J(0),a=J(new Set),s=J(null),r=J(null),i=J(null),o=J(!1),l=J(null),u=gt(),c=gt(),d=Q(()=>e.value.length),f=Q(()=>B=>a.value.has(String(B)));async function h(){return u.execute(async B=>{var X,W;const q=await nt.list({signal:B});return q.ok&&(e.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.devices)||[],i.value=new Date().toISOString()),q})}function g(B,q){const X=Hs(B);X&&(t.value={...t.value,[X]:br(B,q)})}async function y(B,q,X){const W=n.value+1;n.value=W,o.value=!0,l.value=null,X&&(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 av(te,q.concurrency||ev,async ve=>{const Se=await nt.status(ve.id);n.value===W&&(t.value={...t.value,[Hs(ve)]:Se.ok?tv(ve,Se):nv(ve,Se)})})}catch(ve){n.value===W&&(l.value={type:"state_loader_error",message:(ve==null?void 0:ve.message)||"Device states loader failed"})}finally{n.value===W&&(o.value=!1)}}async function m(B,q={}){return y(B,q,!1)}async function P(B={}){return y(e.value,B,!0)}async function _(B){const q=String(B);a.value=new Set(a.value).add(q);const X=await nt.reboot(B),W=new Set(a.value);return W.delete(q),a.value=W,X}async function S(B){return c.execute(async q=>{var W,te;const X=await nt.detail(B,{signal:q});return X.ok&&(s.value=((te=(W=X.data)==null?void 0:W.data)==null?void 0:te.device)||null),X})}async function E(B){var te,ve;const q=await nt.status(B);if(!q.ok)return r.value={ok:!1,error:q.error,channels:[]},q;const W=(((ve=(te=q.data)==null?void 0:te.data)==null?void 0:ve.device)||{}).device_response||{};return r.value={ok:!0,channels:W.channels||[],raw:W},q}async function F(B,q){const X=await nt.updateName(B,q);return X.ok&&s.value&&(s.value={...s.value,name:q}),X}async function D(B,q){const X=await nt.updateDescription(B,q);return X.ok&&s.value&&(s.value={...s.value,description:q}),X}async function T(B,q){const X=await nt.updateAlias(B,q);return X.ok&&s.value&&(s.value={...s.value,alias:q}),X}async function A(B){return nt.remove(B)}async function R(B){return nt.resetup(B)}async function Z(B){return nt.reset(B)}async function ue(B){const q=await nt.unassign(B);return q.ok&&s.value&&(s.value={...s.value,area_id:null}),q}async function de(B,q){const X=await nt.placeInArea({target_id:B,place_in_area_id:q});return X.ok&&s.value&&(s.value={...s.value,area_id:q}),X}function pe(){s.value=null,r.value=null,c.clear()}return{devices:e,isLoading:u.isLoading,error:u.error,isLoadingStates:o,stateError:l,stateByDeviceId:t,stateRunId:n,rebootingIds:a,lastLoadedAt:i,currentDevice:s,currentDeviceStatus:r,isLoadingDetail:c.isLoading,errorDetail:c.error,total:d,isRebooting:f,loadDevices:h,setDeviceState:g,loadDeviceStates:P,loadStatesFor:m,rebootDevice:_,loadDeviceDetail:S,loadDeviceStatus:E,updateDeviceName:F,updateDeviceDescription:D,updateDeviceAlias:T,removeDevice:A,unassignDevice:ue,assignToArea:de,resetupDevice:R,resetDevice:Z,clearDeviceDetail:pe}}),Tt={actionsList(e){return Le("/api/v1/scripts/actions/list",e)},regularList(e){return Le("/api/v1/scripts/regular/list",e)},scopesList(e){return Le("/api/v1/scripts/scopes/list",e)},runAction(e,t={}){return Qe("/api/v1/scripts/actions/run",{alias:e,params:t})},setActionState(e,t){return Le(`/api/v1/scripts/actions/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setRegularState(e,t){return Le(`/api/v1/scripts/regular/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setScopeState(e,t){return Le(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},scopeCode(e,t){return Le(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}`,t)},placeInArea(e){return Qe("/api/v1/scripts/place-in-area",e)},unassign(e){return Le(`/api/v1/scripts/id/${encodeURIComponent(String(e))}/unassign-from-area`)}},_n=mn("scripts",()=>{const e=J([]),t=J([]),n=J([]),a=J(new Set),s=J(null),r=J(""),i=gt(),o=gt(),l=gt(),u=gt(),c=Q(()=>e.value.length),d=Q(()=>t.value.length),f=Q(()=>n.value.length),h=Q(()=>B=>a.value.has(B)),g=Q(()=>B=>e.value.find(q=>q.alias===B)||null),y=Q(()=>B=>t.value.find(q=>q.alias===B)||null),m=Q(()=>B=>n.value.find(q=>q.name===B)||null),P=Q(()=>B=>e.value.filter(q=>q.scope===B)),_=Q(()=>B=>t.value.filter(q=>q.scope===B));async function S(){return i.execute(async B=>{var X,W;const q=await Tt.actionsList({signal:B});return q.ok&&(e.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.scripts)||[]),q})}async function E(){return o.execute(async B=>{var X,W;const q=await Tt.regularList({signal:B});return q.ok&&(t.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.scripts)||[]),q})}async function F(){return l.execute(async B=>{var X,W;const q=await Tt.scopesList({signal:B});return q.ok&&(n.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.scopes)||[]),q})}async function D(B,q={}){var te,ve,Se,Ee,we,Me;a.value=new Set(a.value).add(B),s.value=null;const X=await Tt.runAction(B,q),W=new Set(a.value);return W.delete(B),a.value=W,X.ok?(s.value={alias:B,ok:!0,data:(Se=(ve=(te=X.data)==null?void 0:te.data)==null?void 0:ve.return)==null?void 0:Se.result,execTime:(Me=(we=(Ee=X.data)==null?void 0:Ee.data)==null?void 0:we.return)==null?void 0:Me.exec_time},X):(s.value={alias:B,ok:!1,error:X.error},X)}async function T(B,q){const X=await Tt.setActionState(B,q);if(X.ok){const W=e.value.findIndex(te=>te.alias===B);W!==-1&&(e.value[W]={...e.value[W],state:q?"enabled":"disabled"})}return X}async function A(B,q){const X=await Tt.setRegularState(B,q);if(X.ok){const W=t.value.findIndex(te=>te.alias===B);W!==-1&&(t.value[W]={...t.value[W],state:q?"enabled":"disabled"})}return X}async function R(B,q){const X=await Tt.setScopeState(B,q);if(X.ok){const W=n.value.findIndex(te=>te.name===B);W!==-1&&(n.value[W]={...n.value[W],state:q?"enabled":"disabled"})}return X}async function Z(B,q){const X=await Tt.placeInArea({target_id:B,place_in_area_id:q});if(X.ok){const W=e.value.findIndex(ve=>ve.id===B);W!==-1&&e.value.splice(W,1,{...e.value[W],area_id:q});const te=t.value.findIndex(ve=>ve.id===B);te!==-1&&t.value.splice(te,1,{...t.value[te],area_id:q})}return X}async function ue(B){const q=await Tt.unassign(B);if(q.ok){const X=e.value.findIndex(te=>te.id===B);X!==-1&&e.value.splice(X,1,{...e.value[X],area_id:null});const W=t.value.findIndex(te=>te.id===B);W!==-1&&t.value.splice(W,1,{...t.value[W],area_id:null})}return q}async function de(B){return u.execute(async q=>{const X=await Tt.scopeCode(B,{signal:q});return X.ok&&(r.value=typeof X.data=="string"?X.data:""),X})}function pe(){r.value="",u.clear()}return{actions:e,regular:t,scopes:n,isLoadingActions:i.isLoading,isLoadingRegular:o.isLoading,isLoadingScopes:l.isLoading,errorActions:i.error,errorRegular:o.error,errorScopes:l.error,runningAliases:a,lastRunResult:s,currentScopeCode:r,isLoadingScopeCode:u.isLoading,errorScopeCode:u.error,totalActions:c,totalRegular:d,totalScopes:f,isRunning:h,actionByAlias:g,regularByAlias:y,scopeByName:m,actionsByScope:P,regularByScope:_,loadActions:S,loadRegular:E,loadScopes:F,runScript:D,setActionState:T,setRegularState:A,setScopeState:R,assignToArea:Z,unassignFromArea:ue,loadScopeCode:de,clearScopeCode:pe}});function wr(){const e=wt(),t=J(""),n=Q(()=>e.areas.filter(u=>String(u.id)!==String(t.value)).map(u=>({value:String(u.id),label:`${u.display_name} (${u.type})`}))),a=J(!1),s=J(""),r=J(!1),i=J("");function o(u){s.value=u?String(u):"",t.value=u?String(u):"",i.value="",a.value=!0}async function l(u,c){var f;if(!u||!c)return;r.value=!0,i.value="";const d=await c(u,s.value);return r.value=!1,d.ok?(a.value=!1,d):(i.value=((f=d.error)==null?void 0:f.message)||"Failed to assign area",d)}return{areaOptions:n,showAssignModal:a,selectedAreaId:s,assignLoading:r,assignError:i,openAssign:o,submitAssignCore:l}}const sv={key:1,class:"text-muted",style:{"font-size":"13px"}},rv={__name:"AreaBadgeLink",props:{area:{type:Object,default:null},areaId:{type:[Number,String],default:null}},setup(e){return(t,n)=>{const a=ln("router-link");return e.area?(w(),K(a,{key:0,to:{name:"area-detail",params:{id:e.area.id}},class:"area-link"},{default:k(()=>[I(p(_e),{variant:"info"},{default:k(()=>[U(N(e.area.display_name),1)]),_:1})]),_:1},8,["to"])):e.areaId?(w(),G("span",sv,"Area ID: "+N(e.areaId),1)):se("",!0)}}},Sr=ze(rv,[["__scopeId","data-v-91230b95"]]),iv={class:"devices-panel"},ov={class:"block-title"},lv={key:0,class:"area-assigned"},uv={class:"area-card-info"},cv={class:"text-muted"},dv={__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=wt(),r=Q(()=>{var o;const i=n.areaId!=null?n.areaId:(o=n.item)==null?void 0:o.area_id;return i&&s.areasById[String(i)]||null});return(i,o)=>{const l=ln("router-link");return w(),G("div",iv,[L("div",ov,N(e.title),1),r.value?(w(),G("div",lv,[I(l,{to:{name:"area-detail",params:{id:r.value.id}},class:"area-card"},{default:k(()=>[o[1]||(o[1]=L("div",{class:"area-card-icon text-primary"},[L("i",{class:"ph ph-map-trifold"})],-1)),L("div",uv,[L("strong",null,N(r.value.display_name),1),L("small",cv,N(r.value.type)+" — "+N(r.value.alias),1)])]),_:1},8,["to"])])):(w(),K(rt,{key:1,title:"Not assigned",message:e.emptyMessage},{action:k(()=>[za(i.$slots,"action",{},()=>[I(p(ge),{variant:"primary",icon:"ph-map-pin",onClick:o[0]||(o[0]=u=>a("assign"))},{default:k(()=>[...o[2]||(o[2]=[U("Assign to area",-1)])]),_:1})],!0)]),_:3},8,["message"]))])}}},kr=ze(dv,[["__scopeId","data-v-92cae82c"]]);function $l(e){if(!e)return"";const t=Tl(e);if(!t)return e;const a=new Date-t,s=Math.floor(a/1e3),r=Math.floor(s/60),i=Math.floor(r/60),o=Math.floor(i/24),l=Math.floor(o/7),u=Math.floor(o/30);if(s<10)return"just now";if(s<60)return`${s} sec ago`;if(r<60)return`${r} min ago`;if(i<24){const d=r%60;return d>0?`${i} hour${i>1?"s":""} ${d} min ago`:`${i} hour${i>1?"s":""} ago`}if(o<7)return`${o} day${o>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(o/365);return`${c} year${c>1?"s":""} ago`}function Gs(e){if(!e)return"";const t=Tl(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(),i=String(t.getHours()).padStart(2,"0"),o=String(t.getMinutes()).padStart(2,"0");return`${a} ${s}, ${r} ${i}:${o}`}function Tl(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,i,o,l,u]=n;return new Date(s,parseInt(r)-1,i,o,l,u)}const a=new Date(e);return isNaN(a.getTime())?null:a}const fv={class:"device-channels-state"},pv={key:3,class:"channels-grid"},vv={key:0,class:"ph ph-caret-up"},gv={key:1,class:"ph ph-caret-down"},hv={key:0,class:"ph ph-caret-up"},mv={key:1,class:"ph ph-caret-down"},yv={key:0,class:"ph ph-caret-up"},_v={key:1,class:"ph ph-caret-down"},bv={key:0,class:"ph ph-caret-up"},wv={key:1,class:"ph ph-caret-down"},Sv={key:0,class:"ph ph-caret-up"},kv={key:1,class:"ph ph-caret-down"},Av={key:0,class:"raw-json text-muted"},xv={__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=Q(()=>t.connectionStatus==="lost"),a=Q(()=>{var g;return((g=t.response)==null?void 0:g.channels)||[]}),s=Q(()=>{var g;return((g=t.response)==null?void 0:g.sensors)||{}}),r=Q(()=>{var g,y;return((y=(g=t.response)==null?void 0:g.hatch)==null?void 0:y.state)||"—"}),i=Q(()=>{var g,y;return((y=(g=t.response)==null?void 0:g.hatch)==null?void 0:y.position_pct)??"—"}),o=Q(()=>String(r.value).includes("open")?"warning":"primary"),l=Q(()=>String(r.value).includes("open")),u=Q(()=>{var g;return((g=t.response)==null?void 0:g.status)==="ok"}),c=Q(()=>{if(!t.response)return"";try{return JSON.stringify(t.response).slice(0,200)}catch{return""}}),d=Q(()=>{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 h(g){return{enabled:"success",disabled:"secondary",mute:"primary",waiting:"warning",error:"danger"}[g]||"secondary"}return(g,y)=>(w(),G("div",fv,[e.loading?(w(),K(p(ml),{key:0,circle:"",size:"sm",label:"Loading state"})):n.value?(w(),K(p(_e),{key:1,variant:"danger",size:"sm"},{default:k(()=>[...y[0]||(y[0]=[L("i",{class:"ph ph-wifi-slash"},null,-1),U(" Offline ",-1)])]),_:1})):e.error||!u.value?(w(),K(p(_e),{key:2,variant:"danger",size:"sm"},{default:k(()=>[y[1]||(y[1]=L("i",{class:"ph ph-warning-octagon"},null,-1)),typeof e.error=="string"?(w(),G(De,{key:0},[U(N(e.error),1)],64)):(w(),G(De,{key:1},[U("Error")],64))]),_:1})):d.value?(w(),G("div",pv,[e.deviceType==="relay"?(w(!0),G(De,{key:0},Wt(a.value,m=>(w(),K(p(_e),{key:f(m),variant:m.state==="on"||m.state===!0?"success":"secondary",size:"sm"},{default:k(()=>[a.value.length>1?(w(),G(De,{key:0},[U(N(f(m))+": ",1)],64)):se("",!0),L("b",null,N(m.state=="off"?"OFF":"ON"),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="button"?(w(!0),G(De,{key:1},Wt(a.value,m=>(w(),K(p(_e),{key:f(m),variant:h(m.indicator),size:"sm"},{default:k(()=>[U(N(f(m))+": ",1),L("b",null,N(m.indicator),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="sensor"?(w(),G(De,{key:2},[s.value.radar?(w(),K(p(_e),{key:0,variant:"primary",size:"sm"},{default:k(()=>[L("i",{class:Ft(["ph",s.value.radar.presence?"ph-user-square":"ph-square"])},null,2),s.value.radar.presence?(w(),G(De,{key:0},[U(N(s.value.radar.activity_score)+" ",1),s.value.radar.activity_score_dynamics==="increasing"?(w(),G("i",vv)):s.value.radar.activity_score_dynamics==="decreasing"?(w(),G("i",gv)):se("",!0)],64)):se("",!0)]),_:1})):se("",!0),s.value.temperature?(w(),K(p(_e),{key:1,variant:"primary",size:"sm"},{default:k(()=>[y[2]||(y[2]=L("i",{class:"ph ph-thermometer"},null,-1)),U(" "+N(s.value.temperature.current)+"°C ",1),s.value.temperature.dynamics==="increasing"?(w(),G("i",hv)):s.value.temperature.dynamics==="decreasing"?(w(),G("i",mv)):se("",!0)]),_:1})):se("",!0),s.value.humidity?(w(),K(p(_e),{key:2,variant:"primary",size:"sm"},{default:k(()=>[y[3]||(y[3]=L("i",{class:"ph ph-drop-half-bottom"},null,-1)),U(" "+N(s.value.humidity.current)+"% ",1),s.value.humidity.dynamics==="increasing"?(w(),G("i",yv)):s.value.humidity.dynamics==="decreasing"?(w(),G("i",_v)):se("",!0)]),_:1})):se("",!0),s.value.pressure?(w(),K(p(_e),{key:3,variant:"primary",size:"sm"},{default:k(()=>[U(N(s.value.pressure.current)+"hpa ",1),s.value.pressure.dynamics==="increasing"?(w(),G("i",bv)):s.value.pressure.dynamics==="decreasing"?(w(),G("i",wv)):se("",!0)]),_:1})):se("",!0),s.value.light?(w(),K(p(_e),{key:4,variant:"primary",size:"sm"},{default:k(()=>[y[4]||(y[4]=L("i",{class:"ph ph-lightbulb"},null,-1)),U(" "+N(s.value.light.percent)+"% ",1)]),_:1})):se("",!0),s.value.microphone?(w(),K(p(_e),{key:5,variant:"primary",size:"sm"},{default:k(()=>[y[5]||(y[5]=L("i",{class:"ph ph-ear"},null,-1)),U(" "+N(s.value.microphone.current_noise)+"dBi ",1),s.value.microphone.noise_dynamics==="increasing"?(w(),G("i",Sv)):s.value.microphone.noise_dynamics==="decreasing"?(w(),G("i",kv)):se("",!0)]),_:1})):se("",!0)],64)):e.deviceType==="hatch"?(w(),K(p(_e),{key:3,variant:o.value,size:"sm"},{default:k(()=>[U(N(r.value)+" ",1),l.value?(w(),G(De,{key:0},[U(" - "+N(i.value)+"%",1)],64)):se("",!0)]),_:1},8,["variant"])):(w(),G(De,{key:4},[y[6]||(y[6]=L("span",{class:"unknown-type text-muted"},"Unknown type",-1)),c.value?(w(),G("pre",Av,N(c.value),1)):se("",!0)],64))])):(w(),K(p(_e),{key:4,variant:"secondary",size:"sm"},{default:k(()=>[...y[7]||(y[7]=[U("No data",-1)])]),_:1}))]))}},Pl=ze(xv,[["__scopeId","data-v-08541c71"]]),Cv={class:"device-cell"},Ev=["innerHTML"],Rv={class:"device-info"},$v={class:"device-name-row"},Tv=["title"],Pv={class:"text-muted"},Iv=["title"],Dv={key:1,class:"text-muted"},Lv={__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=ns(),a=yn(),s=Mt(),r={relay:'',button:'',sensor:''},i=Q(()=>{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 o(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(y=>String(y.id)===String(d)),h=await n.rebootDevice(d);h.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=h.error)==null?void 0:g.message)||"Failed to reboot device"})}return(d,f)=>{const h=ln("router-link");return w(),K(p(Ln),{columns:i.value,rows:e.devices,caption:e.caption},Ro({"cell-device":k(({row:g})=>[I(h,{to:{name:"device-detail",params:{id:String(g.id)}},class:"device-link"},{default:k(()=>[L("div",Cv,[L("div",{class:"device-icon text-primary",innerHTML:o(g.device_type)},null,8,Ev),L("div",Rv,[L("div",$v,[L("strong",null,N(g.name||g.alias||`Device #${g.id}`),1),g.status&&g.status!=="active"?(w(),K(p(_e),{key:0,variant:l(g.status),size:"sm"},{default:k(()=>[U(N(g.status),1)]),_:2},1032,["variant"])):se("",!0),L("span",{class:Ft(["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,Tv)]),L("small",Pv,N(g.alias)+" — "+N(g.device_ip||"—"),1)])])]),_:2},1032,["to"])]),"cell-state":k(({row:g})=>[I(Pl,{"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":k(({row:g})=>[g.last_contact?(w(),G("span",{key:0,title:p(Gs)(g.last_contact)},N(p($l)(g.last_contact)),9,Iv)):(w(),G("span",Dv,"—"))]),_:2},[e.showActions&&p(s).has("devices.control")?{name:"cell-actions",fn:k(({row:g})=>[I(p(ge),{variant:"warning",icon:"ph-arrow-clockwise",size:"sm",loading:p(n).isRebooting(g.id),onClick:y=>c(g.id)},{default:k(()=>[...f[0]||(f[0]=[U(" Reboot ",-1)])]),_:1},8,["loading","onClick"])]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Il=ze(Lv,[["__scopeId","data-v-32549911"]]),Ov={class:"scope-name"},Fv={key:1,class:"muted"},Nv={key:1,class:"muted"},Mv={__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=_n(),a=wt(),s=Mt(),r=Q(()=>{const c={};for(const d of a.areas)c[d.id]=d;return c});function i(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 o(c){const d=c.type||t.scriptType;return d==="action"?"actions":d==="scope"?"scopes":d}const l=Q(()=>{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 h=f.type||t.scriptType;h==="action"?n.setActionState(c,d):h==="regular"&&n.setRegularState(c,d)}return(c,d)=>{const f=ln("router-link");return w(),K(p(Ln),{columns:l.value,rows:e.scripts,caption:e.caption},Ro({"cell-alias":k(({row:h})=>[I(f,{to:{name:"script-detail",params:{type:o(h),id:h.alias}},class:"script-link"},{default:k(()=>[U(N(h.alias),1)]),_:2},1032,["to"])]),"cell-scope":k(({row:h})=>[h.scope?(w(),K(f,{key:0,to:{name:"script-detail",params:{type:"scopes",id:h.scope}},class:"scope-link"},{default:k(()=>[d[0]||(d[0]=L("span",{class:"scope-label"},"Scope",-1)),L("span",Ov,N(h.scope),1),d[1]||(d[1]=L("i",{class:"ph ph-arrow-right"},null,-1))]),_:2},1032,["to"])):(w(),G("span",Fv,"—"))]),"cell-area":k(({row:h})=>[h.area_id?(w(),K(p(_e),{key:0,variant:"primary"},{default:k(()=>[U(N(i(h)),1)]),_:2},1024)):(w(),G("span",Nv,"—"))]),"cell-state":k(({row:h})=>[I(p(_e),{variant:h.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(h.state),1)]),_:2},1032,["variant"])]),_:2},[e.showActions&&p(s).has("scripts.edit")?{name:"cell-actions",fn:k(({row:h})=>[h.state==="enabled"?(w(),K(p(ge),{key:0,variant:"secondary",icon:"ph-pause",onClick:g=>u(h.alias,!1,h)},{default:k(()=>[...d[2]||(d[2]=[U(" Disable ",-1)])]),_:1},8,["onClick"])):(w(),K(p(ge),{key:1,variant:"primary",icon:"ph-play",onClick:g=>u(h.alias,!0,h)},{default:k(()=>[...d[3]||(d[3]=[U(" Enable ",-1)])]),_:1},8,["onClick"]))]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Dl=ze(Mv,[["__scopeId","data-v-1ead75a7"]]),Uv={class:"page-actions-dropdown"},Bv=["aria-expanded","onClick"],Ar={__name:"PageActionsDropdown",props:{items:{type:Array,required:!0}},setup(e){return(t,n)=>(w(),G("div",Uv,[I(p(Df),Jo({items:e.items},t.$attrs),{trigger:k(({toggle:a,open:s})=>[L("button",{class:"btn-icon",type:"button","aria-label":"Actions","aria-expanded":s?"true":"false",onClick:a},[...n[0]||(n[0]=[L("i",{class:"ph ph-dots-three-vertical"},null,-1)])],8,Bv)]),_:1},16,["items"])]))}},jv={class:"area-grid"},Vv=["innerHTML"],Hv={key:1},Gv={class:"script-meta"},qv={key:2},zv={__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=Zt(),r=_n(),i=wt(),o=yn(),l=Mt();function u(f){return!f.area_id||!n.showAreaBadge?null:i.areas.find(h=>h.id===f.area_id)||null}async function c(f){var g,y;const h=await r.runScript(f);h!=null&&h.ok?(o.success({title:`Ran ${f}`,text:(g=r.lastRunResult)!=null&&g.execTime?`Exec time: ${r.lastRunResult.execTime}`:void 0}),a("run-success",{alias:f})):o.error({title:`Failed ${f}`,text:((y=h==null?void 0:h.error)==null?void 0:y.message)||"Unknown error"})}function d(f){s.push({name:"script-detail",params:{type:"actions",id:f}})}return(f,h)=>(w(),G("div",jv,[(w(!0),G(De,null,Wt(e.scripts,g=>(w(),K(p($f),{key:g.alias,title:g.name,onClick:y=>d(g.alias)},{default:k(()=>[g.icon?(w(),G("div",{key:0,innerHTML:g.icon,class:"script-icon"},null,8,Vv)):se("",!0),g.description?(w(),G("p",Hv,N(g.description),1)):se("",!0),L("div",Gv,[I(p(_e),{variant:g.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(g.state),1)]),_:2},1032,["variant"]),g.scope?(w(),K(p(_e),{key:0,variant:"primary"},{default:k(()=>[U(N(g.scope),1)]),_:2},1024)):se("",!0),e.showAreaBadge&&u(g)?(w(),K(p(_e),{key:1,variant:"primary"},{default:k(()=>[U(N(u(g).display_name),1)]),_:2},1024)):se("",!0)]),g.created_by||g.author?(w(),G("small",qv,N(g.created_by||g.author),1)):se("",!0)]),actions:k(()=>[p(l).has("scripts.run")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-play",loading:p(r).isRunning(g.alias),disabled:g.state!=="enabled",onClick:Ya(y=>c(g.alias),["stop"])},{default:k(()=>[...h[0]||(h[0]=[U(" Run ",-1)])]),_:1},8,["loading","disabled","onClick"])):se("",!0)]),_:2},1032,["title","onClick"]))),128))]))}},Ll=ze(zv,[["__scopeId","data-v-aeab265d"]]),Kv={class:"page"},Wv={key:3},Jv={class:"area-meta"},Yv={class:"actions-panel"},Xv={class:"block-title"},Zv={class:"devices-panel"},Qv={class:"block-title"},eg={class:"scripts-panel"},tg={class:"block-title"},ng={class:"form-group"},ag={key:0,class:"form-group"},sg={key:1,class:"form-group"},rg={key:2,class:"form-group"},ig={key:0,class:"form-group"},og={key:0,class:"form-group"},lg={__name:"AreaDetailPage",setup(e){const t=es(),n=Zt(),a=wt(),s=ns(),r=_r();_n();const i=yn(),o=Mt(),{showAssignModal:l,selectedAreaId:u,assignLoading:c,assignError:d,openAssign:f,submitAssignCore:h}=wr(),g=Q(()=>a.areasById[String(t.params.id)]||null),y=Q(()=>g.value?r.has(g.value.id):!1),m=Q(()=>{var x;const $=[];return o.has("areas.manage")&&($.push({label:"Rename",icon:"ph-pencil",onSelect:ve}),((x=g.value)==null?void 0:x.parent_id)>0?$.push({label:"Change parent area",icon:"ph-map-pin",onSelect:Me},{label:"Unassign from parent",icon:"ph-x-circle",onSelect:Ve}):$.push({label:"Assign to area",icon:"ph-map-pin",onSelect:Me})),$.push({label:y.value?"Remove bookmark":"Bookmark",icon:y.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple",onSelect:()=>{var ee;return r.toggle((ee=g.value)==null?void 0:ee.id)}}),o.has("areas.manage")&&$.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:Ee}),$}),P=Q(()=>!g.value||g.value.parent_id<=0?null:a.areasById[String(g.value.parent_id)]||null),_=Q(()=>a.currentAreaScripts.filter($=>$.type==="action")),S=Q(()=>a.currentAreaScripts.filter($=>$.type!=="action")),E=Q(()=>{if(!g.value)return!1;const $=!g.value.parent_id||g.value.parent_id<=0,x=a.areas.filter(ee=>!ee.parent_id||ee.parent_id<=0).length;return $&&x===1});function F($){const x=new Set,ee=[$];for(;ee.length;){const v=ee.shift(),b=a.areas.filter(C=>C.parent_id===v);for(const C of b)x.add(C.id),ee.push(C.id)}return x}const D=Q(()=>{if(!g.value)return[];const $=new Set([g.value.id,...F(g.value.id)]);return a.areas.filter(x=>!$.has(x.id)).map(x=>({value:String(x.id),label:`${x.display_name} (${x.type})`}))}),T=J(!1),A=J(!1),R=J(""),Z=Yt({areaId:null,display_name:""}),ue=J(!1),de=J(""),pe=J(!1),B=J(""),q=J(!1),X=J(""),W=J(!1),te=J("");function ve(){g.value&&(Z.areaId=g.value.id,Z.display_name=g.value.display_name,R.value="",T.value=!0)}async function Se(){var x;A.value=!0,R.value="";const $=await a.renameArea(Z.areaId,Z.display_name);if(A.value=!1,!$.ok){R.value=((x=$.error)==null?void 0:x.message)||"Failed to rename area";return}T.value=!1,i.success({title:"Renamed",text:"Area renamed successfully"})}function Ee(){g.value&&(de.value=`Are you sure you want to remove area "${g.value.display_name}"?`,B.value="",ue.value=!0)}async function we(){var x;if(!g.value)return;pe.value=!0,B.value="";const $=await a.removeArea(g.value.id);if(pe.value=!1,!$.ok){B.value=((x=$.error)==null?void 0:x.message)||"Failed to remove area";return}ue.value=!1,i.success({title:"Removed",text:"Area removed successfully"}),n.push({name:"areas-tree"})}function Me(){var $;f((($=g.value)==null?void 0:$.parent_id)>0?g.value.parent_id:"")}async function je(){var ee;const $=(ee=g.value)==null?void 0:ee.id,x=await h($,(v,b)=>a.assignToArea(v,b));x!=null&&x.ok&&i.success({title:"Assigned",text:"Area assigned successfully"})}function Ve(){g.value&&(X.value=`Are you sure you want to unassign area "${g.value.display_name}" from its parent?`,te.value="",q.value=!0)}async function Te(){var x;if(!g.value)return;W.value=!0,te.value="";const $=await a.unassignArea(g.value.id);if(W.value=!1,!$.ok){te.value=((x=$.error)==null?void 0:x.message)||"Failed to unassign area";return}q.value=!1,i.success({title:"Unassigned",text:"Area unassigned from parent successfully"})}async function M(){a.currentAreaDevices.length>0&&await s.loadStatesFor(a.currentAreaDevices)}async function ae(){const $=t.params.id;$&&(a.areas.length===0&&await a.loadAreas(),a.areasById[String($)]&&(await a.loadAreaDetail($),await M()))}return kt(()=>t.params.id,async($,x)=>{$&&$!==x&&await ae()},{immediate:!1}),_t(()=>{ae()}),pa(()=>{a.clearAreaDetail()}),($,x)=>(w(),G("section",Kv,[p(a).isLoading||p(a).isLoadingAreaDetail?(w(),K(bt,{key:0,text:"Loading area"})):p(a).error&&!p(a).areas.length?(w(),K(pt,{key:1,title:"Areas loading failed",error:p(a).error,retry:ae},null,8,["error"])):p(a).errorAreaDetail?(w(),K(pt,{key:2,title:"Area loading failed",error:p(a).errorAreaDetail,retry:ae},null,8,["error"])):g.value?(w(),G("div",Wv,[I(p(Et),{title:g.value.display_name,kicker:"Area"},{actions:k(()=>[I(Ar,{items:m.value},null,8,["items"])]),_:1},8,["title"]),L("div",Jv,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(g.value.type),1)]),_:1}),L("code",null,N(g.value.alias),1),I(Sr,{area:P.value,areaId:g.value.parent_id},null,8,["area","areaId"])]),L("div",Yv,[L("div",Xv,"Actions ("+N(_.value.length)+")",1),_.value.length===0?(w(),K(rt,{key:0,title:"No actions",message:"No action scripts assigned to this area."})):(w(),K(Ll,{key:1,scripts:_.value,onRunSuccess:M},null,8,["scripts"]))]),L("div",Zv,[L("div",Qv,"Devices ("+N(p(a).currentAreaDevices.length)+")",1),p(a).currentAreaDevices.length===0?(w(),K(rt,{key:0,title:"No devices",message:"No devices assigned to this area."})):(w(),K(Il,{key:1,devices:p(a).currentAreaDevices,caption:"Area devices"},null,8,["devices"]))]),I(kr,{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:Me},{action:k(()=>[p(o).has("areas.manage")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-map-pin",onClick:Me},{default:k(()=>[U(N(g.value.parent_id>0?"Change parent area":"Assign to area"),1)]),_:1})):se("",!0)]),_:1},8,["areaId"]),L("div",eg,[L("div",tg,"Regular scripts ("+N(S.value.length)+")",1),S.value.length===0?(w(),K(rt,{key:0,title:"No regular scripts",message:"No regular scripts assigned to this area."})):(w(),K(Dl,{key:1,scripts:S.value,scriptType:"regular",showArea:!1,showActions:!1,showFilename:!1,caption:"Area regular scripts"},null,8,["scripts"]))])])):(w(),K(rt,{key:4,title:"Area not found",message:"The requested area does not exist."})),I(p(ut),{open:T.value,title:"Rename area","onUpdate:open":x[2]||(x[2]=ee=>T.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[1]||(x[1]=ee=>T.value=!1)},{default:k(()=>[...x[10]||(x[10]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:A.value,onClick:Se},{default:k(()=>[...x[11]||(x[11]=[U("Rename",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",ng,[I(p(At),{modelValue:Z.display_name,"onUpdate:modelValue":x[0]||(x[0]=ee=>Z.display_name=ee),label:"Display name"},null,8,["modelValue"])]),R.value?(w(),G("div",ag,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(R.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:p(l),title:"Assign to parent area","onUpdate:open":x[5]||(x[5]=ee=>l.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[4]||(x[4]=ee=>l.value=!1)},{default:k(()=>[...x[13]||(x[13]=[U("Cancel",-1)])]),_:1}),E.value?se("",!0):(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-check",loading:p(c),onClick:je},{default:k(()=>[...x[14]||(x[14]=[U(" Assign ",-1)])]),_:1},8,["loading"]))]),default:k(()=>[E.value?se("",!0):(w(),K(p(fr),{key:0,modelValue:p(u),"onUpdate:modelValue":x[3]||(x[3]=ee=>Ue(u)?u.value=ee:null),label:"Parent area",options:D.value,icon:"ph-map-trifold"},null,8,["modelValue","options"])),E.value?(w(),G("div",sg,[I(p(Ze),{variant:"warning"},{default:k(()=>[...x[12]||(x[12]=[U(" This is the last root area and cannot be assigned as a child. At least one root area must remain. ",-1)])]),_:1})])):se("",!0),p(d)?(w(),G("div",rg,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(p(d)),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:q.value,title:"Unassign from parent","onUpdate:open":x[7]||(x[7]=ee=>q.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[6]||(x[6]=ee=>q.value=!1)},{default:k(()=>[...x[15]||(x[15]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"warning",icon:"ph-x-circle",loading:W.value,onClick:Te},{default:k(()=>[...x[16]||(x[16]=[U(" Unassign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(X.value),1),te.value?(w(),G("div",ig,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(te.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:ue.value,title:"Remove area","onUpdate:open":x[9]||(x[9]=ee=>ue.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[8]||(x[8]=ee=>ue.value=!1)},{default:k(()=>[...x[17]||(x[17]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"danger",icon:"ph-trash",loading:pe.value,onClick:we},{default:k(()=>[...x[18]||(x[18]=[U(" Remove ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(de.value),1),B.value?(w(),G("div",og,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(B.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"])]))}},ug=ze(lg,[["__scopeId","data-v-757a0469"]]),cg={class:"page"},dg={key:3,class:"devices-panel"},fg={class:"devices-summary"},pg=300*1e3,vg={__name:"DevicesListPage",setup(e){const t=ns(),n=Q(()=>{if(!t.lastLoadedAt)return!1;const s=new Date(t.lastLoadedAt).getTime();return Date.now()-s>pg});async function a(){(await t.loadDevices()).ok&&await t.loadDeviceStates()}return _t(a),(s,r)=>(w(),G("section",cg,[I(p(Et),{title:"Device Matrix",kicker:"Devices"},{actions:k(()=>[I(p(ge),{loading:p(t).isLoading||p(t).isLoadingStates,icon:"ph-arrow-clockwise",onClick:a},{default:k(()=>[...r[0]||(r[0]=[U(" Refresh ",-1)])]),_:1},8,["loading"])]),_:1}),p(t).isLoading?(w(),K(bt,{key:0,text:"Loading devices"})):p(t).error?(w(),K(pt,{key:1,title:"Devices loading failed",error:p(t).error,retry:a},null,8,["error"])):p(t).devices.length===0?(w(),K(rt,{key:2,title:"No active devices",message:"No active devices found."})):(w(),G("div",dg,[L("div",fg,[I(p(_e),{variant:"primary"},{default:k(()=>[U("Total: "+N(p(t).total),1)]),_:1}),p(t).isLoadingStates?(w(),K(p(_e),{key:0,variant:"secondary"},{default:k(()=>[...r[1]||(r[1]=[U("States loading",-1)])]),_:1})):(w(),K(p(_e),{key:1,variant:"success"},{default:k(()=>[...r[2]||(r[2]=[U("States settled",-1)])]),_:1})),n.value?(w(),K(p(_e),{key:2,variant:"warning"},{default:k(()=>[...r[3]||(r[3]=[U("Stale data",-1)])]),_:1})):se("",!0)]),p(t).stateError?(w(),K(pt,{key:0,title:"Device states loading failed",error:p(t).stateError},null,8,["error"])):se("",!0),I(Il,{devices:p(t).devices,caption:"Registered devices"},null,8,["devices"])]))]))}},gg=ze(vg,[["__scopeId","data-v-635f3900"]]),hg=mn("scanning",()=>{const e=J("setup"),t=J([]),n=gt(),a=Q(()=>t.value.length);async function s(){return n.execute(async o=>{var u,c;const l=e.value==="setup"?await nt.scanningSetup({signal:o}):await nt.scanningAll({signal:o});return l.ok&&(t.value=((c=(u=l.data)==null?void 0:u.data)==null?void 0:c.devices)||[]),l})}function r(o){e.value=o,t.value=[],n.clear()}async function i(o){return nt.setupNewDevice(o)}return{mode:e,devices:t,isLoading:n.isLoading,error:n.error,total:a,scan:s,setMode:r,setupDevice:i}}),mg={class:"page"},yg={class:"scan-filters"},_g={key:3,class:"devices-panel"},bg={class:"devices-summary"},wg={class:"device-cell"},Sg=["innerHTML"],kg={class:"device-info"},Ag={class:"firmware"},xg={key:1,class:"muted"},Cg={class:"form-group"},Eg={class:"form-group"},Rg={class:"form-group"},$g={key:0,class:"form-group"},Tg={__name:"DevicesScanningPage",setup(e){const t=hg(),n=yn(),a=Mt(),s=J(!1),r=J(!1),i=J(""),o=Yt({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(y){return l[y]||l.relay}function d(y){t.setMode(y)}function f(){t.scan()}function h(y){o.device_ip=y.ip_address,o.alias="",o.name="",o.description="",i.value="",s.value=!0}async function g(){var m;r.value=!0,i.value="";const y=await t.setupDevice({...o});if(r.value=!1,!y.ok){i.value=((m=y.error)==null?void 0:m.message)||"Failed to setup device";return}s.value=!1,n.success({title:"Device added",text:`Device ${o.alias||o.name||""} added successfully`})}return(y,m)=>(w(),G("section",mg,[I(p(Et),{title:"Scanning",kicker:"Devices"},{actions:k(()=>[I(p(ge),{loading:p(t).isLoading,icon:"ph-magnifying-glass",onClick:f},{default:k(()=>[...m[7]||(m[7]=[U(" Scan ",-1)])]),_:1},8,["loading"])]),_:1}),L("div",yg,[m[10]||(m[10]=L("span",{class:"filter-label text-muted"},"Mode:",-1)),I(p(Si),{selected:p(t).mode==="setup",clickable:"",icon:"ph-plug",onClick:m[0]||(m[0]=P=>d("setup"))},{default:k(()=>[...m[8]||(m[8]=[U(" Setup ",-1)])]),_:1},8,["selected"]),I(p(Si),{selected:p(t).mode==="all",clickable:"",icon:"ph-scan",onClick:m[1]||(m[1]=P=>d("all"))},{default:k(()=>[...m[9]||(m[9]=[U(" All ",-1)])]),_:1},8,["selected"])]),p(t).isLoading?(w(),K(bt,{key:0,text:"Scanning network"})):p(t).error?(w(),K(pt,{key:1,title:"Scan failed",error:p(t).error,retry:f},null,8,["error"])):p(t).devices.length===0?(w(),K(rt,{key:2,title:"No devices found",message:"Choose scan mode and click Scan to discover devices."})):(w(),G("div",_g,[L("div",bg,[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).total)+" found",1)]),_:1})]),I(p(Ln),{columns:u,rows:p(t).devices,caption:"Discovered devices"},{"cell-device":k(({row:P})=>[L("div",wg,[L("div",{class:"device-icon",innerHTML:c(P.device_type)},null,8,Sg),L("div",kg,[L("strong",null,N(P.device_name||"Unknown"),1),L("small",null,N(P.device_type||"unknown")+" — "+N(P.ip_address||"—"),1)])])]),"cell-status":k(({row:P})=>[I(p(_e),{variant:P.status==="setup"?"warning":"success"},{default:k(()=>[U(N(P.status||"unknown"),1)]),_:2},1032,["variant"])]),"cell-firmware":k(({row:P})=>[L("span",Ag,N(P.firmware_version||"—"),1)]),"cell-actions":k(({row:P})=>[P.status==="setup"&&p(a).has("devices.setup")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-plus",size:"sm",onClick:_=>h(P)},{default:k(()=>[...m[11]||(m[11]=[U(" Add ",-1)])]),_:1},8,["onClick"])):(w(),G("span",xg,"—"))]),_:1},8,["rows"])])),I(p(ut),{open:s.value,title:"Setup new device","onUpdate:open":m[6]||(m[6]=P=>s.value=P)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:m[5]||(m[5]=P=>s.value=!1)},{default:k(()=>[...m[12]||(m[12]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:g},{default:k(()=>[...m[13]||(m[13]=[U(" Add device ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",Cg,[I(p(At),{modelValue:o.alias,"onUpdate:modelValue":m[2]||(m[2]=P=>o.alias=P),label:"Alias",placeholder:"kitchen_relay"},null,8,["modelValue"])]),L("div",Eg,[I(p(At),{modelValue:o.name,"onUpdate:modelValue":m[3]||(m[3]=P=>o.name=P),label:"Name",placeholder:"Kitchen Relay"},null,8,["modelValue"])]),L("div",Rg,[I(p(At),{modelValue:o.description,"onUpdate:modelValue":m[4]||(m[4]=P=>o.description=P),label:"Description"},null,8,["modelValue"])]),i.value?(w(),G("div",$g,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(i.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"])]))}},Pg=ze(Tg,[["__scopeId","data-v-1a01bb19"]]);function Li(e){return encodeURIComponent(String(e))}const qn={async list(){return Le("/api/v1/firmwares")},async detail(e){return Le(`/api/v1/firmwares/id/${Li(e)}`)},async refresh(){return Qe("/api/v1/firmwares/refresh")},async deviceCompatibility(e){return Le(`/api/v1/devices/id/${Li(e)}/firmware-compatibility`)},async updateDeviceFirmware(e,t){return Qe("/api/v1/devices/update-firmware",{device_id:e,firmware_id:t})}},Ol=mn("firmwares",()=>{const e=J([]),t=J(null),n=J(null),a=gt(),s=gt(),r=gt(),i=gt(),o=Q(()=>a.isLoading.value),l=Q(()=>s.isLoading.value),u=Q(()=>r.isLoading.value),c=Q(()=>i.isLoading.value);async function d(){return a.execute(async P=>{var S,E;const _=await qn.list({signal:P});return _.ok&&(e.value=((E=(S=_.data)==null?void 0:S.data)==null?void 0:E.firmwares)||[]),_})}async function f(){return r.execute(async()=>{const P=await qn.refresh();return P.ok&&await d(),P})}async function h(P){return s.execute(async _=>{var E,F;const S=await qn.detail(P,{signal:_});return S.ok&&(t.value=((F=(E=S.data)==null?void 0:E.data)==null?void 0:F.firmware)||null),S})}async function g(P){return i.execute(async _=>{var E,F,D,T;const S=await qn.deviceCompatibility(P,{signal:_});return S.ok&&(n.value={compatible:((F=(E=S.data)==null?void 0:E.data)==null?void 0:F.compatible)||[],currentVersion:((T=(D=S.data)==null?void 0:D.data)==null?void 0:T.current_version)||"unknown"}),S})}async function y(P,_){return r.execute(async()=>qn.updateDeviceFirmware(P,_))}function m(){n.value=null}return{firmwares:e,current:t,compatibility:n,isLoadingList:o,isLoadingDetail:l,isUpdating:u,isLoadingCompatibility:c,loadFirmwares:d,refreshFirmwares:f,loadFirmwareDetail:h,loadDeviceCompatibility:g,updateDeviceFirmware:y,clearCompatibility:m}}),Ig={class:"page"},Dg={key:2},Lg={class:"device-meta"},Og={class:"script-info-panel"},Fg={class:"info-row"},Ng={class:"info-value"},Mg={class:"info-row"},Ug={class:"info-value"},Bg={class:"info-row"},jg={class:"info-value"},Vg={class:"info-row"},Hg={class:"info-value"},Gg={class:"info-row"},qg={class:"info-value"},zg={class:"info-row"},Kg={class:"info-value"},Wg={class:"info-row"},Jg={class:"info-value"},Yg={key:0,class:"info-row"},Xg=["title"],Zg={key:1,class:"info-row"},Qg={class:"info-value"},eh={key:0,class:"devices-panel"},th={key:1,class:"devices-panel"},nh={class:"form-group"},ah={class:"form-group"},sh={class:"form-group"},rh={key:0,class:"form-group"},ih={key:0,class:"form-group"},oh={key:0,class:"form-group"},lh={key:0,class:"form-group"},uh={key:0,class:"form-group"},ch={key:0,class:"form-group"},dh={class:"firmware-options"},fh=["onClick"],ph={class:"fw-version"},vh={key:0,class:"fw-desc"},gh={key:0,class:"form-group"},hh={__name:"DeviceDetailPage",setup(e){const t=es(),n=Zt(),a=ns(),s=wt(),r=Ol(),i=yn(),o=Mt(),{areaOptions:l,showAssignModal:u,selectedAreaId:c,assignLoading:d,assignError:f,openAssign:h,submitAssignCore:g}=wr(),y=Q(()=>t.params.id),m=Q(()=>a.currentDevice),P=Q(()=>a.isLoadingDetail),_=Q(()=>a.errorDetail),S=J(!1),E=J(null),F=Q(()=>{var O;const ie=(O=m.value)==null?void 0:O.area_id;return ie&&s.areasById[String(ie)]||null}),D=J(!1),T=J(!1),A=J(""),R=Yt({name:"",description:"",alias:""}),Z=J(!1),ue=J(""),de=J(!1),pe=J(""),B=J(!1),q=J(""),X=J(!1),W=J(""),te=J(!1),ve=J(""),Se=J(!1),Ee=J(""),we=J(!1),Me=J(""),je=J(!1),Ve=J(""),Te=J(!1),M=J(null),ae=J(""),$=Q(()=>{var ie,O;return(((O=(ie=r.compatibility)==null?void 0:ie.compatible)==null?void 0:O.length)||0)>0}),x=Q(()=>{var ie;return((ie=r.compatibility)==null?void 0:ie.compatible)||[]}),ee=Q(()=>{var O,Ie;const ie=[];return o.has("devices.edit")&&(ie.push({label:"Edit",icon:"ph-pencil",onSelect:v}),(O=m.value)!=null&&O.area_id?ie.push({label:"Change area",icon:"ph-map-pin",onSelect:C},{label:"Unassign from area",icon:"ph-x-circle",onSelect:z}):ie.push({label:"Assign to area",icon:"ph-map-pin",onSelect:C})),o.has("devices.setup")&&ie.push({label:"ReSetup",icon:"ph-gear",onSelect:Y}),o.has("devices.control")&&ie.push({label:"Reboot",icon:"ph-arrow-clockwise",disabled:a.isRebooting((Ie=m.value)==null?void 0:Ie.id),onSelect:ne}),o.has("devices.edit")&&ie.push({label:"Reset",icon:"ph-x",danger:!0,onSelect:le}),o.has("devices.delete")&&ie.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:oe}),ie});function v(){m.value&&(R.name=m.value.name||"",R.description=m.value.description||"",R.alias=m.value.alias||"",A.value="",D.value=!0)}async function b(){var et,he,We,Ke;T.value=!0,A.value="";const ie=y.value,O=await Promise.all([R.name!==((et=m.value)==null?void 0:et.name)?a.updateDeviceName(ie,R.name):{ok:!0},R.description!==((he=m.value)==null?void 0:he.description)?a.updateDeviceDescription(ie,R.description):{ok:!0},R.alias!==((We=m.value)==null?void 0:We.alias)?a.updateDeviceAlias(ie,R.alias):{ok:!0}]);T.value=!1;const Ie=O.find(Un=>!Un.ok);if(Ie){A.value=((Ke=Ie.error)==null?void 0:Ke.message)||"Failed to update device";return}D.value=!1,i.success({title:"Updated",text:"Device updated successfully"})}function C(){var ie;h((ie=m.value)==null?void 0:ie.area_id)}async function j(){const ie=await g(y.value,a.assignToArea.bind(a));ie!=null&&ie.ok&&i.success({title:"Assigned",text:"Device assigned to area successfully"})}function z(){m.value&&(q.value=`Are you sure you want to unassign device "${m.value.name||m.value.alias}" from its area?`,W.value="",B.value=!0)}async function H(){var O;if(!m.value)return;X.value=!0,W.value="";const ie=await a.unassignDevice(y.value);if(X.value=!1,!ie.ok){W.value=((O=ie.error)==null?void 0:O.message)||"Failed to unassign device";return}B.value=!1,i.success({title:"Unassigned",text:"Device unassigned from area successfully"})}function oe(){m.value&&(ue.value=`Are you sure you want to remove device "${m.value.name||m.value.alias}"?`,pe.value="",Z.value=!0)}async function re(){var Ie;const ie=y.value;de.value=!0,pe.value="";const O=await a.removeDevice(ie);if(de.value=!1,!O.ok){pe.value=((Ie=O.error)==null?void 0:Ie.message)||"Failed to remove device";return}Z.value=!1,i.success({title:"Removed",text:"Device removed successfully"}),n.push({name:"devices"})}async function ne(){var O;if(!m.value)return;const ie=await a.rebootDevice(m.value.id);ie.ok?i.success({title:"Rebooting",text:`Device ${m.value.name||m.value.alias||"#"+m.value.id} is rebooting`}):i.error({title:"Reboot failed",text:((O=ie.error)==null?void 0:O.message)||"Failed to reboot device"})}function Y(){m.value&&(ve.value=`Are you sure you want to repeat setup for device "${m.value.name||m.value.alias}"?`,Ee.value="",te.value=!0)}async function fe(){var Ie,et,he;const ie=y.value;Se.value=!0,Ee.value="";const O=await a.resetupDevice(ie);if(Se.value=!1,!O.ok){Ee.value=((Ie=O.error)==null?void 0:Ie.message)||"Failed to repeat device setup";return}te.value=!1,i.success({title:"Success",text:`Device ${((et=m.value)==null?void 0:et.name)||((he=m.value)==null?void 0:he.alias)||"#"+ie} setup repeated`}),n.push({name:"devices"})}function le(){m.value&&(Me.value=`Are you sure you want to reset device "${m.value.name||m.value.alias}"?`,Ve.value="",we.value=!0)}async function ce(){var Ie,et,he;const ie=y.value;je.value=!0,Ve.value="";const O=await a.resetDevice(ie);if(je.value=!1,!O.ok){Ve.value=((Ie=O.error)==null?void 0:Ie.message)||"Failed to reset device";return}we.value=!1,i.success({title:"Success",text:`Device ${((et=m.value)==null?void 0:et.name)||((he=m.value)==null?void 0:he.alias)||"#"+ie} reset`}),n.push({name:"devices"})}function me(){var ie;M.value=((ie=x.value[0])==null?void 0:ie.id)||null,ae.value="",Te.value=!0}async function ke(){var O;if(!M.value||!m.value)return;const ie=await r.updateDeviceFirmware(m.value.id,M.value);if(!ie.ok){ae.value=((O=ie.error)==null?void 0:O.message)||"Firmware update failed";return}Te.value=!1,i.success({title:"Updated",text:"Firmware update pushed successfully"}),await a.loadDeviceDetail(y.value)}function Re(ie){return{active:"success",removed:"danger",freezed:"warning",setup:"primary"}[ie]||"secondary"}async function Pe(){const ie=y.value;if(!ie||!m.value||m.value.connection_status!=="active")return;S.value=!0,E.value=null;const O=await a.loadDeviceStatus(ie);S.value=!1,O.ok||(E.value=O.error)}async function Be(){var O;const ie=y.value;ie&&(s.areas.length===0&&await s.loadAreas(),await a.loadDeviceDetail(ie),((O=m.value)==null?void 0:O.connection_status)==="active"&&(await Pe(),await r.loadDeviceCompatibility(ie)))}return _t(()=>{Be()}),pa(()=>{a.clearDeviceDetail(),r.clearCompatibility()}),kt(()=>t.params.id,(ie,O)=>{ie!==O&&(a.clearDeviceDetail(),Be())}),(ie,O)=>{var Ie,et;return w(),G("section",Ig,[P.value?(w(),K(bt,{key:0,text:"Loading device details"})):_.value?(w(),K(pt,{key:1,title:"Device loading failed",error:_.value,retry:Be},null,8,["error"])):m.value?(w(),G("div",Dg,[I(p(Et),{title:m.value.name||m.value.alias||`Device #${m.value.id}`,kicker:"Device"},{actions:k(()=>[I(Ar,{items:ee.value},null,8,["items"])]),_:1},8,["title"]),L("div",Lg,[I(p(_e),{variant:m.value.connection_status==="active"?"success":"danger"},{default:k(()=>[U(N(m.value.connection_status==="active"?"Online":"Offline"),1)]),_:1},8,["variant"]),L("code",null,N(m.value.alias),1),I(Sr,{area:F.value,areaId:m.value.area_id},null,8,["area","areaId"])]),L("div",Og,[L("div",Fg,[O[18]||(O[18]=L("span",{class:"info-label text-muted"},"System status:",-1)),L("span",Ng,[I(p(_e),{variant:Re(m.value.status)},{default:k(()=>[U(N(m.value.status),1)]),_:1},8,["variant"])])]),L("div",Mg,[O[19]||(O[19]=L("span",{class:"info-label text-muted"},"Type:",-1)),L("span",Ug,N(m.value.device_type),1)]),L("div",Bg,[O[20]||(O[20]=L("span",{class:"info-label text-muted"},"State:",-1)),L("span",jg,[I(Pl,{"device-type":m.value.device_type,response:(Ie=p(a).currentDeviceStatus)==null?void 0:Ie.raw,loading:S.value,error:(et=E.value)==null?void 0:et.message,"connection-status":m.value.connection_status},null,8,["device-type","response","loading","error","connection-status"])])]),L("div",Vg,[O[21]||(O[21]=L("span",{class:"info-label text-muted"},"IP:",-1)),L("span",Hg,N(m.value.device_ip),1)]),L("div",Gg,[O[22]||(O[22]=L("span",{class:"info-label text-muted"},"MAC:",-1)),L("span",qg,N(m.value.device_mac),1)]),L("div",zg,[O[23]||(O[23]=L("span",{class:"info-label text-muted"},"Hard ID:",-1)),L("span",Kg,N(m.value.device_hard_id),1)]),L("div",Wg,[O[24]||(O[24]=L("span",{class:"info-label text-muted"},"Firmware:",-1)),L("span",Jg,N(m.value.firmware_version),1)]),m.value.last_contact?(w(),G("div",Yg,[O[25]||(O[25]=L("span",{class:"info-label text-muted"},"Last contact:",-1)),L("span",{class:"info-value",title:p(Gs)(m.value.last_contact)},N(p($l)(m.value.last_contact)),9,Xg)])):se("",!0),m.value.create_at?(w(),G("div",Zg,[O[26]||(O[26]=L("span",{class:"info-label text-muted"},"Created:",-1)),L("span",Qg,N(p(Gs)(m.value.create_at)),1)])):se("",!0)]),I(kr,{item:m.value,emptyMessage:"This device is not assigned to any area.",onAssign:C},{action:k(()=>[p(o).has("devices.edit")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-map-pin",onClick:C},{default:k(()=>{var he;return[U(N((he=m.value)!=null&&he.area_id?"Change area":"Assign to area"),1)]}),_:1})):se("",!0)]),_:1},8,["item"]),$.value&&p(o).has("firmware.upload")?(w(),G("div",eh,[O[29]||(O[29]=L("div",{class:"block-title"},"Firmware Update",-1)),I(p(Ze),{variant:"info"},{default:k(()=>[O[27]||(O[27]=U(" New firmware available: ",-1)),(w(!0),G(De,null,Wt(x.value,he=>(w(),K(p(_e),{key:he.id,variant:"success"},{default:k(()=>[U(N(he.version),1)]),_:2},1024))),128))]),_:1}),I(p(ge),{variant:"primary",icon:"ph-cloud-arrow-down",onClick:me},{default:k(()=>[...O[28]||(O[28]=[U(" Update Firmware ",-1)])]),_:1})])):se("",!0),m.value.description?(w(),G("div",th,[O[30]||(O[30]=L("div",{class:"block-title"},"Description",-1)),L("p",null,N(m.value.description),1)])):se("",!0)])):(w(),K(rt,{key:3,title:"Device not found",message:"The requested device does not exist."})),I(p(ut),{open:D.value,title:"Edit device","onUpdate:open":O[4]||(O[4]=he=>D.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[3]||(O[3]=he=>D.value=!1)},{default:k(()=>[...O[31]||(O[31]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:T.value,onClick:b},{default:k(()=>[...O[32]||(O[32]=[U(" Save ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",nh,[I(p(At),{modelValue:R.name,"onUpdate:modelValue":O[0]||(O[0]=he=>R.name=he),label:"Name"},null,8,["modelValue"])]),L("div",ah,[I(p(At),{modelValue:R.description,"onUpdate:modelValue":O[1]||(O[1]=he=>R.description=he),label:"Description"},null,8,["modelValue"])]),L("div",sh,[I(p(At),{modelValue:R.alias,"onUpdate:modelValue":O[2]||(O[2]=he=>R.alias=he),label:"Alias"},null,8,["modelValue"])]),A.value?(w(),G("div",rh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(A.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:p(u),title:"Assign to area","onUpdate:open":O[7]||(O[7]=he=>u.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[6]||(O[6]=he=>u.value=!1)},{default:k(()=>[...O[33]||(O[33]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:p(d),onClick:j},{default:k(()=>[...O[34]||(O[34]=[U(" Assign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[I(p(fr),{modelValue:p(c),"onUpdate:modelValue":O[5]||(O[5]=he=>Ue(c)?c.value=he:null),label:"Area",options:p(l),icon:"ph-map-trifold"},null,8,["modelValue","options"]),p(f)?(w(),G("div",ih,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(p(f)),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:B.value,title:"Unassign from area","onUpdate:open":O[9]||(O[9]=he=>B.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[8]||(O[8]=he=>B.value=!1)},{default:k(()=>[...O[35]||(O[35]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"warning",icon:"ph-x-circle",loading:X.value,onClick:H},{default:k(()=>[...O[36]||(O[36]=[U(" Unassign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(q.value),1),W.value?(w(),G("div",oh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(W.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:Z.value,title:"Remove device","onUpdate:open":O[11]||(O[11]=he=>Z.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[10]||(O[10]=he=>Z.value=!1)},{default:k(()=>[...O[37]||(O[37]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"danger",icon:"ph-trash",loading:de.value,onClick:re},{default:k(()=>[...O[38]||(O[38]=[U(" Remove ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(ue.value),1),pe.value?(w(),G("div",lh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(pe.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:te.value,title:"Repeat device setup","onUpdate:open":O[13]||(O[13]=he=>te.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[12]||(O[12]=he=>te.value=!1)},{default:k(()=>[...O[39]||(O[39]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-gear",loading:Se.value,onClick:fe},{default:k(()=>[...O[40]||(O[40]=[U(" ReSetup ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(ve.value),1),Ee.value?(w(),G("div",uh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(Ee.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:we.value,title:"Reset device","onUpdate:open":O[15]||(O[15]=he=>we.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[14]||(O[14]=he=>we.value=!1)},{default:k(()=>[...O[41]||(O[41]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"danger",icon:"ph-x",loading:je.value,onClick:ce},{default:k(()=>[...O[42]||(O[42]=[U(" Reset ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(Me.value),1),Ve.value?(w(),G("div",ch,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(Ve.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:Te.value,title:"Update Firmware","onUpdate:open":O[17]||(O[17]=he=>Te.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[16]||(O[16]=he=>Te.value=!1)},{default:k(()=>[...O[45]||(O[45]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:p(r).isUpdating,disabled:!M.value,onClick:ke},{default:k(()=>[...O[46]||(O[46]=[U(" Update ",-1)])]),_:1},8,["loading","disabled"])]),default:k(()=>{var he,We;return[L("p",null,[O[43]||(O[43]=U("Select firmware to install on ",-1)),L("strong",null,N(((he=m.value)==null?void 0:he.name)||((We=m.value)==null?void 0:We.alias)),1),O[44]||(O[44]=U(":",-1))]),L("div",dh,[(w(!0),G(De,null,Wt(x.value,Ke=>(w(),G("div",{key:Ke.id,class:Ft(["firmware-option",{active:M.value===Ke.id}]),onClick:Un=>M.value=Ke.id},[L("div",ph,N(Ke.version),1),Ke.description?(w(),G("div",vh,N(Ke.description),1)):se("",!0)],10,fh))),128))]),ae.value?(w(),G("div",gh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(ae.value),1)]),_:1})])):se("",!0)]}),_:1},8,["open"])])}}},mh=ze(hh,[["__scopeId","data-v-a9f83185"]]),yh={class:"page"},_h={__name:"ScriptsActionsPage",setup(e){const t=_n(),n=wt();return _t(()=>{t.loadActions(),n.areas.length===0&&n.loadAreas()}),(a,s)=>(w(),G("section",yh,[I(p(Et),{title:"Actions",kicker:"Scripts"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).totalActions)+" scripts",1)]),_:1})]),_:1}),p(t).isLoadingActions?(w(),K(bt,{key:0,text:"Loading actions"})):p(t).errorActions?(w(),K(pt,{key:1,title:"Actions loading failed",error:p(t).errorActions,retry:p(t).loadActions},null,8,["error","retry"])):p(t).actions.length===0?(w(),K(rt,{key:2,title:"No action scripts",message:"No action scripts registered."})):(w(),K(Ll,{key:3,scripts:p(t).actions,"show-area-badge":""},null,8,["scripts"]))]))}},bh=ze(_h,[["__scopeId","data-v-f336617a"]]),wh={class:"page"},Sh={key:3,class:"devices-panel"},kh={__name:"ScriptsRegularPage",setup(e){const t=_n(),n=wt();return _t(()=>{t.loadRegular(),n.areas.length===0&&n.loadAreas()}),(a,s)=>(w(),G("section",wh,[I(p(Et),{title:"Regular",kicker:"Scripts"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).totalRegular)+" scripts",1)]),_:1})]),_:1}),p(t).isLoadingRegular?(w(),K(bt,{key:0,text:"Loading regular scripts"})):p(t).errorRegular?(w(),K(pt,{key:1,title:"Regular scripts loading failed",error:p(t).errorRegular,retry:p(t).loadRegular},null,8,["error","retry"])):p(t).regular.length===0?(w(),K(rt,{key:2,title:"No regular scripts",message:"No regular scripts registered."})):(w(),G("div",Sh,[I(Dl,{scripts:p(t).regular,scriptType:"regular",showArea:!0,showScope:!0,showFilename:!0,showActions:!0,caption:"Regular scripts"},null,8,["scripts"])]))]))}},Ah={class:"page"},xh={key:3,class:"devices-panel"},Ch={__name:"ScriptsScopesPage",setup(e){Zt();const t=_n(),n=Mt(),a=[{key:"name",label:"Name"},{key:"filename",label:"File"},{key:"state",label:"State"},{key:"path",label:"Path"},{key:"actions",label:"Actions"}];function s(r,i){t.setScopeState(r,i)}return _t(()=>{t.loadScopes()}),(r,i)=>{const o=ln("router-link");return w(),G("section",Ah,[I(p(Et),{title:"Scopes",kicker:"Scripts"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).totalScopes)+" scopes",1)]),_:1})]),_:1}),p(t).isLoadingScopes?(w(),K(bt,{key:0,text:"Loading scopes"})):p(t).errorScopes?(w(),K(pt,{key:1,title:"Scopes loading failed",error:p(t).errorScopes,retry:p(t).loadScopes},null,8,["error","retry"])):p(t).scopes.length===0?(w(),K(rt,{key:2,title:"No scopes",message:"No script scopes registered."})):(w(),G("div",xh,[I(p(Ln),{columns:a,rows:p(t).scopes,caption:"Script scopes"},{"cell-name":k(({row:l})=>[I(o,{to:{name:"script-detail",params:{type:"scopes",id:l.name}},class:"script-link"},{default:k(()=>[U(N(l.name),1)]),_:2},1032,["to"])]),"cell-state":k(({row:l})=>[I(p(_e),{variant:l.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(l.state),1)]),_:2},1032,["variant"])]),"cell-actions":k(({row:l})=>[l.state==="enabled"&&p(n).has("scripts.edit")?(w(),K(p(ge),{key:0,variant:"secondary",icon:"ph-pause",onClick:u=>s(l.name,!1)},{default:k(()=>[...i[0]||(i[0]=[U(" Disable ",-1)])]),_:1},8,["onClick"])):p(n).has("scripts.edit")?(w(),K(p(ge),{key:1,variant:"primary",icon:"ph-play",onClick:u=>s(l.name,!0)},{default:k(()=>[...i[1]||(i[1]=[U(" Enable ",-1)])]),_:1},8,["onClick"])):se("",!0)]),_:1},8,["rows"])]))])}}},Eh=ze(Ch,[["__scopeId","data-v-c8486788"]]);var Oi=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Rh(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var ws={exports:{}},Fi;function $h(){return Fi||(Fi=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,i={},o={manual:a.Prism&&a.Prism.manual,disableWorkerMessageHandler:a.Prism&&a.Prism.disableWorkerMessageHandler,util:{encode:function _(S){return S instanceof l?new l(S.type,_(S.content),S.alias):Array.isArray(S)?S.map(_):S.replace(/&/g,"&").replace(/"u")return null;if(document.currentScript&&document.currentScript.tagName==="SCRIPT")return document.currentScript;try{throw new Error}catch(F){var _=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(F.stack)||[])[1];if(_){var S=document.getElementsByTagName("script");for(var E in S)if(S[E].src==_)return S[E]}return null}},isActive:function(_,S,E){for(var F="no-"+S;_;){var D=_.classList;if(D.contains(S))return!0;if(D.contains(F))return!1;_=_.parentElement}return!!E}},languages:{plain:i,plaintext:i,text:i,txt:i,extend:function(_,S){var E=o.util.clone(o.languages[_]);for(var F in S)E[F]=S[F];return E},insertBefore:function(_,S,E,F){F=F||o.languages;var D=F[_],T={};for(var A in D)if(D.hasOwnProperty(A)){if(A==S)for(var R in E)E.hasOwnProperty(R)&&(T[R]=E[R]);E.hasOwnProperty(A)||(T[A]=D[A])}var Z=F[_];return F[_]=T,o.languages.DFS(o.languages,function(ue,de){de===Z&&ue!=_&&(this[ue]=T)}),T},DFS:function _(S,E,F,D){D=D||{};var T=o.util.objId;for(var A in S)if(S.hasOwnProperty(A)){E.call(S,A,S[A],F||A);var R=S[A],Z=o.util.type(R);Z==="Object"&&!D[T(R)]?(D[T(R)]=!0,_(R,E,null,D)):Z==="Array"&&!D[T(R)]&&(D[T(R)]=!0,_(R,E,A,D))}}},plugins:{},highlightAll:function(_,S){o.highlightAllUnder(document,_,S)},highlightAllUnder:function(_,S,E){var F={callback:E,container:_,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};o.hooks.run("before-highlightall",F),F.elements=Array.prototype.slice.apply(F.container.querySelectorAll(F.selector)),o.hooks.run("before-all-elements-highlight",F);for(var D=0,T;T=F.elements[D++];)o.highlightElement(T,S===!0,F.callback)},highlightElement:function(_,S,E){var F=o.util.getLanguage(_),D=o.languages[F];o.util.setLanguage(_,F);var T=_.parentElement;T&&T.nodeName.toLowerCase()==="pre"&&o.util.setLanguage(T,F);var A=_.textContent,R={element:_,language:F,grammar:D,code:A};function Z(de){R.highlightedCode=de,o.hooks.run("before-insert",R),R.element.innerHTML=R.highlightedCode,o.hooks.run("after-highlight",R),o.hooks.run("complete",R),E&&E.call(R.element)}if(o.hooks.run("before-sanity-check",R),T=R.element.parentElement,T&&T.nodeName.toLowerCase()==="pre"&&!T.hasAttribute("tabindex")&&T.setAttribute("tabindex","0"),!R.code){o.hooks.run("complete",R),E&&E.call(R.element);return}if(o.hooks.run("before-highlight",R),!R.grammar){Z(o.util.encode(R.code));return}if(S&&a.Worker){var ue=new Worker(o.filename);ue.onmessage=function(de){Z(de.data)},ue.postMessage(JSON.stringify({language:R.language,code:R.code,immediateClose:!0}))}else Z(o.highlight(R.code,R.grammar,R.language))},highlight:function(_,S,E){var F={code:_,grammar:S,language:E};if(o.hooks.run("before-tokenize",F),!F.grammar)throw new Error('The language "'+F.language+'" has no grammar.');return F.tokens=o.tokenize(F.code,F.grammar),o.hooks.run("after-tokenize",F),l.stringify(o.util.encode(F.tokens),F.language)},tokenize:function(_,S){var E=S.rest;if(E){for(var F in E)S[F]=E[F];delete S.rest}var D=new d;return f(D,D.head,_),c(_,D,S,D.head,0),g(D)},hooks:{all:{},add:function(_,S){var E=o.hooks.all;E[_]=E[_]||[],E[_].push(S)},run:function(_,S){var E=o.hooks.all[_];if(!(!E||!E.length))for(var F=0,D;D=E[F++];)D(S)}},Token:l};a.Prism=o;function l(_,S,E,F){this.type=_,this.content=S,this.alias=E,this.length=(F||"").length|0}l.stringify=function _(S,E){if(typeof S=="string")return S;if(Array.isArray(S)){var F="";return S.forEach(function(Z){F+=_(Z,E)}),F}var D={type:S.type,content:_(S.content,E),tag:"span",classes:["token",S.type],attributes:{},language:E},T=S.alias;T&&(Array.isArray(T)?Array.prototype.push.apply(D.classes,T):D.classes.push(T)),o.hooks.run("wrap",D);var A="";for(var R in D.attributes)A+=" "+R+'="'+(D.attributes[R]||"").replace(/"/g,""")+'"';return"<"+D.tag+' class="'+D.classes.join(" ")+'"'+A+">"+D.content+""};function u(_,S,E,F){_.lastIndex=S;var D=_.exec(E);if(D&&F&&D[1]){var T=D[1].length;D.index+=T,D[0]=D[0].slice(T)}return D}function c(_,S,E,F,D,T){for(var A in E)if(!(!E.hasOwnProperty(A)||!E[A])){var R=E[A];R=Array.isArray(R)?R:[R];for(var Z=0;Z=T.reach);ve+=te.value.length,te=te.next){var Se=te.value;if(S.length>_.length)return;if(!(Se instanceof l)){var Ee=1,we;if(B){if(we=u(W,ve,_,pe),!we||we.index>=_.length)break;var Te=we.index,Me=we.index+we[0].length,je=ve;for(je+=te.value.length;Te>=je;)te=te.next,je+=te.value.length;if(je-=te.value.length,ve=je,te.value instanceof l)continue;for(var Ve=te;Ve!==S.tail&&(jeT.reach&&(T.reach=x);var ee=te.prev;ae&&(ee=f(S,ee,ae),ve+=ae.length),h(S,ee,Ee);var v=new l(A,de?o.tokenize(M,de):M,q,M);if(te=f(S,ee,v),$&&f(S,te,$),Ee>1){var b={cause:A+","+Z,reach:x};c(_,S,E,te.prev,ve,b),T&&b.reach>T.reach&&(T.reach=b.reach)}}}}}}function d(){var _={value:null,prev:null,next:null},S={value:null,prev:_,next:null};_.next=S,this.head=_,this.tail=S,this.length=0}function f(_,S,E){var F=S.next,D={value:E,prev:S,next:F};return S.next=D,F.prev=D,_.length++,D}function h(_,S,E){for(var F=S.next,D=0;D/,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 i={};i["language-"+r]={pattern:/(^$)/i,lookbehind:!0,inside:n.languages[r]},i.cdata=/^$/i;var o={"included-cdata":{pattern://i,inside:i}};o["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:o},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(y,m){return"✖ Error "+y+" while fetching file: "+m},r="✖ Error: File does not exist or is empty",i={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"},o="data-src-status",l="loading",u="loaded",c="failed",d="pre[data-src]:not(["+o+'="'+u+'"]):not(['+o+'="'+l+'"])';function f(y,m,P){var _=new XMLHttpRequest;_.open("GET",y,!0),_.onreadystatechange=function(){_.readyState==4&&(_.status<400&&_.responseText?m(_.responseText):_.status>=400?P(s(_.status,_.statusText)):P(r))},_.send(null)}function h(y){var m=/^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(y||"");if(m){var P=Number(m[1]),_=m[2],S=m[3];return _?S?[P,Number(S)]:[P,void 0]:[P,P]}}n.hooks.add("before-highlightall",function(y){y.selector+=", "+d}),n.hooks.add("before-sanity-check",function(y){var m=y.element;if(m.matches(d)){y.code="",m.setAttribute(o,l);var P=m.appendChild(document.createElement("CODE"));P.textContent=a;var _=m.getAttribute("data-src"),S=y.language;if(S==="none"){var E=(/\.(\w+)$/.exec(_)||[,"none"])[1];S=i[E]||E}n.util.setLanguage(P,S),n.util.setLanguage(m,S);var F=n.plugins.autoloader;F&&F.loadLanguages(S),f(_,function(D){m.setAttribute(o,u);var T=h(m.getAttribute("data-range"));if(T){var A=D.split(/\r\n?|\n/g),R=T[0],Z=T[1]==null?A.length:T[1];R<0&&(R+=A.length),R=Math.max(0,Math.min(R-1,A.length)),Z<0&&(Z+=A.length),Z=Math.max(0,Math.min(Z,A.length)),D=A.slice(R,Z).join(` +`),m.hasAttribute("data-start")||m.setAttribute("data-start",String(R+1))}P.textContent=D,n.highlightElement(P)},function(D){m.setAttribute(o,c),P.textContent=D})}}),n.plugins.fileHighlight={highlight:function(m){for(var P=(m||document).querySelectorAll(d),_=0,S;S=P[_++];)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)}})()})(ws)),ws.exports}var Th=$h();const Ni=Rh(Th);(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 i=n.tokenStack=[];n.code=n.code.replace(s,function(o){if(typeof r=="function"&&!r(o))return o;for(var l=i.length,u;n.code.indexOf(u=t(a,l))!==-1;)++l;return i[l]=o,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 i(o){for(var l=0;l=r.length);l++){var u=o[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,h=t(a,c),g=f.indexOf(h);if(g>-1){++s;var y=f.substring(0,g),m=new e.Token(a,e.tokenize(d,n.grammar),"language-"+a,d),P=f.substring(g+h.length),_=[];y&&_.push.apply(_,i([y])),_.push(m),P&&_.push.apply(_,i([P])),typeof u=="string"?o.splice.apply(o,[l,1].concat(_)):u.content=_}}else u.content&&i(u.content)}return o}i(n.tokens)}}})})(Prism);var Mi={},Ui;function Ph(){return Ui||(Ui=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 i={pattern:/\{\$(?:\{(?:\{[^{}]+\}|[^{}]+)\}|[^{}])+\}|(^|[^\\{])\$+(?:\w+(?:\[[^\r\n\[\]]+\]|->\w+)?)/,lookbehind:!0,inside:e.languages.php},o=[{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:i}},{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:i}}];e.languages.insertBefore("php","variable",{string:o,attribute:{pattern:/#\[(?:[^"'\/#]|\/(?![*/])|\/\/.*$|#(?!\[).*$|\/\*(?:[^*]|\*(?!\/))*\*\/|"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*')+\](?=\s*[a-z$#])/im,greedy:!0,inside:{"attribute-content":{pattern:/^(#\[)[\s\S]+(?=\]$)/,lookbehind:!0,inside:{comment:t,string:o,"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)),Mi}Ph();const Ih={class:"page"},Dh={key:2},Lh={class:"script-detail-meta"},Oh=["innerHTML"],Fh={key:1},Nh={class:"script-meta"},Mh={key:0},Uh={class:"scope-name"},Bh={class:"script-info-panel"},jh={key:0,class:"info-row"},Vh={class:"info-value"},Hh={key:1,class:"info-row"},Gh={class:"info-value"},qh={key:2,class:"info-row"},zh={class:"info-value"},Kh={key:1,class:"devices-panel"},Wh={class:"block-title"},Jh={key:2,class:"devices-panel"},Yh={class:"block-title"},Xh={key:3,class:"devices-panel"},Zh={key:2,class:"code-block"},Qh=["innerHTML"],em={key:0,class:"form-group"},tm={key:0,class:"form-group"},nm={__name:"ScriptDetailPage",setup(e){const t=es(),n=_n(),a=wt(),s=yn(),r=Mt(),{areaOptions:i,showAssignModal:o,selectedAreaId:l,assignLoading:u,assignError:c,openAssign:d,submitAssignCore:f}=wr(),h=Q(()=>t.params.type),g=Q(()=>t.params.id),y=Q(()=>h.value==="actions"),m=Q(()=>h.value==="regular"),P=Q(()=>h.value==="scopes"),_=Q(()=>{var x,ee,v;const $=[];return!P.value&&r.has("scripts.edit")&&((x=A.value)!=null&&x.area_id?$.push({label:"Change area",icon:"ph-map-pin",onSelect:te},{label:"Unassign from area",icon:"ph-x-circle",onSelect:je}):$.push({label:"Assign to area",icon:"ph-map-pin",onSelect:te})),y.value&&r.has("scripts.run")&&$.push({label:"Run",icon:"ph-play",disabled:((ee=A.value)==null?void 0:ee.state)!=="enabled"||n.isRunning((v=A.value)==null?void 0:v.alias),onSelect:X}),$}),S=Q(()=>y.value?"Actions":m.value?"Regular":P.value?"Scope":"Script"),E=Q(()=>`Loading ${S.value.toLowerCase()} details`),F=Q(()=>y.value?n.isLoadingActions:m.value?n.isLoadingRegular:P.value?n.isLoadingScopes||n.isLoadingActions||n.isLoadingRegular:!1),D=Q(()=>y.value?n.errorActions:m.value?n.errorRegular:P.value?n.errorScopes:null),T=Q(()=>y.value?n.actions.length>0:m.value?n.regular.length>0:P.value?n.scopes.length>0:!1),A=Q(()=>{const $=g.value;return $?y.value?n.actionByAlias($):m.value?n.regularByAlias($):P.value?n.scopeByName($):null:null}),R=Q(()=>{const $=g.value;return!$||!P.value?[]:n.actionsByScope($)}),Z=Q(()=>{const $=g.value;return!$||!P.value?[]:n.regularByScope($)}),ue=Q(()=>{var x;const $=(x=A.value)==null?void 0:x.area_id;return $&&a.areasById[String($)]||null}),de=Q(()=>P.value?n.isLoadingScopeCode:!1),pe=Q(()=>P.value?n.errorScopeCode:null),B=Q(()=>{var $;return y.value||m.value?(($=A.value)==null?void 0:$.code)||"":P.value?n.currentScopeCode:""}),q=Q(()=>{const $=B.value;return $?Ni.highlight($,Ni.languages.php,"php"):""});async function X(){var x,ee,v;if(!((x=A.value)!=null&&x.alias))return;const $=await n.runScript(A.value.alias);$!=null&&$.ok?s.success({title:`Ran ${A.value.alias}`,text:(ee=n.lastRunResult)!=null&&ee.execTime?`Exec time: ${n.lastRunResult.execTime}`:void 0}):s.error({title:`Failed ${A.value.alias}`,text:((v=$==null?void 0:$.error)==null?void 0:v.message)||"Unknown error"})}async function W($){var b,C;const x=g.value;if(!x)return;let ee;y.value?ee=await n.setActionState(x,$):m.value?ee=await n.setRegularState(x,$):P.value&&(ee=await n.setScopeState(x,$));const v=((b=A.value)==null?void 0:b.alias)||x;ee&&!ee.ok?s.error({title:`Failed to ${$?"enable":"disable"} ${v}`,text:((C=ee.error)==null?void 0:C.message)||"Unknown error"}):ee&&s.success({title:`${$?"Enabled":"Disabled"} ${v}`})}function te(){var $;d(($=A.value)==null?void 0:$.area_id)}async function ve(){var ee;const $=(ee=A.value)==null?void 0:ee.id,x=await f($,n.assignToArea.bind(n));x!=null&&x.ok&&s.success({title:"Assigned",text:"Script assigned to area successfully"})}const Se=J(!1),Ee=J(""),we=J(!1),Me=J("");function je(){A.value&&(Ee.value=`Are you sure you want to unassign script "${A.value.name||A.value.alias}" from its area?`,Me.value="",Se.value=!0)}async function Ve(){var x;if(!A.value)return;we.value=!0,Me.value="";const $=await n.unassignFromArea(A.value.id);if(we.value=!1,!$.ok){Me.value=((x=$.error)==null?void 0:x.message)||"Failed to unassign script";return}Se.value=!1,s.success({title:"Unassigned",text:"Script unassigned from area successfully"})}async function Te(){const $=g.value;!$||!P.value||await n.loadScopeCode($)}async function M(){g.value&&(y.value&&n.actions.length===0?await n.loadActions():m.value&&n.regular.length===0?await n.loadRegular():P.value&&n.scopes.length===0&&await n.loadScopes(),P.value&&(n.actions.length===0&&await n.loadActions(),n.regular.length===0&&await n.loadRegular(),await Te()),a.areas.length===0&&await a.loadAreas())}const ae=[{key:"alias",label:"Alias"},{key:"name",label:"Name"},{key:"state",label:"State"}];return _t(()=>{M()}),pa(()=>{n.clearScopeCode()}),kt(()=>[t.params.type,t.params.id],([$,x],[ee,v])=>{($!==ee||x!==v)&&(n.clearScopeCode(),M())}),($,x)=>{const ee=ln("router-link");return w(),G("section",Ih,[F.value?(w(),K(bt,{key:0,text:E.value},null,8,["text"])):D.value&&!T.value?(w(),K(pt,{key:1,title:`${S.value} loading failed`,error:D.value,retry:M},null,8,["title","error"])):A.value?(w(),G("div",Dh,[I(p(Et),{title:A.value.name||A.value.alias||A.value.name,kicker:S.value},{actions:k(()=>[p(r).has("scripts.edit")?(w(),K(p(jf),{key:0,"model-value":A.value.state==="enabled",label:"Enabled","onUpdate:modelValue":x[0]||(x[0]=v=>W(v))},null,8,["model-value"])):se("",!0),I(Ar,{items:_.value},null,8,["items"])]),_:1},8,["title","kicker"]),L("div",Lh,[A.value.icon?(w(),G("div",{key:0,innerHTML:A.value.icon,class:"script-icon"},null,8,Oh)):se("",!0),A.value.description?(w(),G("p",Fh,N(A.value.description),1)):se("",!0),L("div",Nh,[I(p(_e),{variant:A.value.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(A.value.state),1)]),_:1},8,["variant"]),L("code",null,N(A.value.alias||A.value.name),1),A.value.author?(w(),G("small",Mh,N(A.value.author),1)):se("",!0),I(Sr,{area:ue.value,areaId:A.value.area_id},null,8,["area","areaId"]),A.value.scope?(w(),K(ee,{key:1,to:{name:"script-detail",params:{type:"scopes",id:A.value.scope}},class:"scope-link"},{default:k(()=>[x[6]||(x[6]=L("span",{class:"scope-label"},"Scope",-1)),L("span",Uh,N(A.value.scope),1),x[7]||(x[7]=L("i",{class:"ph ph-arrow-right"},null,-1))]),_:1},8,["to"])):se("",!0)]),L("div",Bh,[A.value.filename?(w(),G("div",jh,[x[8]||(x[8]=L("span",{class:"info-label text-muted"},"File:",-1)),L("span",Vh,N(A.value.filename),1)])):se("",!0),A.value.path?(w(),G("div",Hh,[x[9]||(x[9]=L("span",{class:"info-label text-muted"},"Path:",-1)),L("span",Gh,N(A.value.path),1)])):se("",!0),A.value.created_by?(w(),G("div",qh,[x[10]||(x[10]=L("span",{class:"info-label text-muted"},"Author:",-1)),L("span",zh,N(A.value.created_by),1)])):se("",!0)])]),P.value?se("",!0):(w(),K(kr,{key:0,item:A.value,emptyMessage:"This script is not assigned to any area.",onAssign:te},{action:k(()=>[p(r).has("scripts.edit")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-map-pin",onClick:te},{default:k(()=>{var v;return[U(N((v=A.value)!=null&&v.area_id?"Change area":"Assign to area"),1)]}),_:1})):se("",!0)]),_:1},8,["item"])),P.value&&R.value.length>0?(w(),G("div",Kh,[L("div",Wh,"Action scripts ("+N(R.value.length)+")",1),I(p(Ln),{rows:R.value,columns:ae},{"cell-state":k(({row:v})=>[I(p(_e),{variant:v.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(v.state),1)]),_:2},1032,["variant"])]),"cell-alias":k(({row:v})=>[I(ee,{to:{name:"script-detail",params:{type:"actions",id:v.alias}},class:"script-link"},{default:k(()=>[U(N(v.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):se("",!0),P.value&&Z.value.length>0?(w(),G("div",Jh,[L("div",Yh,"Regular scripts ("+N(Z.value.length)+")",1),I(p(Ln),{rows:Z.value,columns:ae},{"cell-state":k(({row:v})=>[I(p(_e),{variant:v.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(v.state),1)]),_:2},1032,["variant"])]),"cell-alias":k(({row:v})=>[I(ee,{to:{name:"script-detail",params:{type:"regular",id:v.alias}},class:"script-link"},{default:k(()=>[U(N(v.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):se("",!0),A.value.code||P.value?(w(),G("div",Xh,[x[11]||(x[11]=L("div",{class:"block-title"},"Source code",-1)),de.value?(w(),K(bt,{key:0,text:"Loading source code"})):pe.value?(w(),K(pt,{key:1,title:"Code loading failed",error:pe.value,retry:Te},null,8,["error"])):B.value?(w(),G("pre",Zh,[L("code",{class:"language-php",innerHTML:q.value},null,8,Qh)])):(w(),K(rt,{key:3,title:"No code",message:"Source code is not available."}))])):se("",!0)])):(w(),K(rt,{key:3,title:"Not found",message:"The requested script does not exist."})),I(p(ut),{open:p(o),title:"Assign to area","onUpdate:open":x[3]||(x[3]=v=>o.value=v)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[2]||(x[2]=v=>o.value=!1)},{default:k(()=>[...x[12]||(x[12]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:p(u),onClick:ve},{default:k(()=>[...x[13]||(x[13]=[U(" Assign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[I(p(fr),{modelValue:p(l),"onUpdate:modelValue":x[1]||(x[1]=v=>Ue(l)?l.value=v:null),label:"Area",options:p(i),icon:"ph-map-trifold"},null,8,["modelValue","options"]),p(c)?(w(),G("div",em,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(p(c)),1)]),_:1})])):se("",!0)]),_:1},8,["open"]),I(p(ut),{open:Se.value,title:"Unassign from area","onUpdate:open":x[5]||(x[5]=v=>Se.value=v)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[4]||(x[4]=v=>Se.value=!1)},{default:k(()=>[...x[14]||(x[14]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"warning",icon:"ph-x-circle",loading:we.value,onClick:Ve},{default:k(()=>[...x[15]||(x[15]=[U(" Unassign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(Ee.value),1),Me.value?(w(),G("div",tm,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(Me.value),1)]),_:1})])):se("",!0)]),_:1},8,["open"])])}}},am=ze(nm,[["__scopeId","data-v-31cd836e"]]),sm={class:"page"},rm={key:3,class:"firmwares-panel"},im={class:"firmwares-summary"},om={class:"firmwares-list"},lm={class:"firmware-header"},um={class:"firmware-id"},cm={class:"firmware-meta"},dm={key:0,class:"firmware-desc"},fm={key:1,class:"firmware-changelog"},pm={__name:"FirmwaresListPage",setup(e){const t=Ol(),n=Mt(),a=J(null);async function s(){var o;a.value=null;const i=await t.loadFirmwares();i.ok||(a.value=((o=i.error)==null?void 0:o.message)||"Failed to load catalog")}async function r(){var o;a.value=null;const i=await t.refreshFirmwares();i.ok||(a.value=((o=i.error)==null?void 0:o.message)||"Failed to refresh catalog")}return _t(s),(i,o)=>(w(),G("section",sm,[I(p(Et),{title:"Firmware Catalog",kicker:"Firmwares"},{actions:k(()=>[p(n).has("firmware.upload")?(w(),K(p(ge),{key:0,loading:p(t).isUpdating,icon:"ph-arrow-clockwise",onClick:r},{default:k(()=>[...o[0]||(o[0]=[U(" Refresh Catalog ",-1)])]),_:1},8,["loading"])):se("",!0)]),_:1}),p(t).isLoadingList?(w(),K(bt,{key:0,text:"Loading firmware catalog"})):a.value?(w(),K(pt,{key:1,title:"Catalog loading failed",error:a.value,retry:s},null,8,["error"])):p(t).firmwares.length===0?(w(),K(rt,{key:2,title:"No firmwares found",message:"No firmware packages detected in the firmwares directory."})):(w(),G("div",rm,[L("div",im,[I(p(_e),{variant:"primary"},{default:k(()=>[U("Total: "+N(p(t).firmwares.length),1)]),_:1})]),L("div",om,[(w(!0),G(De,null,Wt(p(t).firmwares,l=>(w(),G("div",{key:l.id,class:"firmware-card"},[L("div",lm,[L("span",um,N(l.id),1),I(p(_e),{variant:"success"},{default:k(()=>[U(N(l.version),1)]),_:2},1024)]),L("div",cm,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(l.device_type),1)]),_:2},1024),l.platform?(w(),K(p(_e),{key:0,variant:"info"},{default:k(()=>[U(N(l.platform),1)]),_:2},1024)):se("",!0),l.channels?(w(),K(p(_e),{key:1,variant:"warning"},{default:k(()=>[U(N(l.channels)+" ch",1)]),_:2},1024)):se("",!0)]),l.description?(w(),G("p",dm,N(l.description),1)):se("",!0),l.changelog?(w(),G("pre",fm,N(l.changelog),1)):se("",!0)]))),128))])]))]))}},vm=ze(pm,[["__scopeId","data-v-c0c73f70"]]),Fl="/logo-cube-square.svg",gm={class:"login-page"},hm={class:"login-card"},mm={key:0,class:"login-loading text-muted"},ym={__name:"LoginPage",setup(e){const t=Zt(),n=Mn();_t(()=>{n.isAuthenticated&&t.replace({name:"areas-favorites"})});function a(){if(Qt()){window.location.href=Fn("/auth/login?return_to=/auth/mobile-bridge");return}const s=window.location.href;window.location.href=Fn(`/auth/login?return_to=${encodeURIComponent(s)}`)}return(s,r)=>(w(),G("div",gm,[L("div",hm,[r[3]||(r[3]=Wo('',3)),I(p(ge),{variant:"primary",size:"lg",class:"login-btn",onClick:a},{icon:k(()=>[...r[0]||(r[0]=[L("i",{class:"ph ph-sign-in"},null,-1)])]),default:k(()=>[r[1]||(r[1]=U(" Sign in with gnexus-auth ",-1))]),_:1}),p(n).isLoading?(w(),G("p",mm,[...r[2]||(r[2]=[L("i",{class:"ph ph-spinner ph-spin"},null,-1),U(" Checking session… ",-1)])])):se("",!0)])]))}},_m=ze(ym,[["__scopeId","data-v-37ec28cb"]]),bm={class:"setup-page"},wm={class:"setup-card"},Sm={class:"setup-form"},km={key:0,class:"setup-error text-danger"},Am={__name:"MobileSetupPage",setup(e){const t=Zt(),n=J(""),a=J(""),s=J(!1),r=J("");async function i(){a.value="",r.value="";const o=n.value.trim();if(!o){a.value="Server URL is required";return}let l=o;/^https?:\/\//i.test(l)||(l="http://"+l);try{new URL(l)}catch{a.value="Invalid URL format";return}s.value=!0;try{const u=[`${l}/api/v1/about`,`${l}/about`];let c=!1;for(const d of u)try{const f=new AbortController,h=setTimeout(()=>f.abort(),5e3),g=await fetch(d,{method:"GET",signal:f.signal});if(clearTimeout(h),g.ok||g.status===401){c=!0;break}}catch{}if(!c){r.value="Could not connect to server. Please check the address.",s.value=!1;return}await sp(l),Qt()?window.location.reload():t.replace("/login")}catch{r.value="Connection check failed. Please try again.",s.value=!1}}return(o,l)=>(w(),G("div",bm,[L("div",wm,[l[3]||(l[3]=Wo('

Smart Home

Mobile App Setup

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

',3)),L("div",Sm,[I(p(At),{modelValue:n.value,"onUpdate:modelValue":l[0]||(l[0]=u=>n.value=u),label:"Server URL",placeholder:"https://your-server.com",error:a.value,onKeyup:id(i,["enter"])},null,8,["modelValue","error"]),I(p(ge),{variant:"primary",size:"lg",class:"setup-btn",loading:s.value,onClick:i},{icon:k(()=>[...l[1]||(l[1]=[L("i",{class:"ph ph-check"},null,-1)])]),default:k(()=>[U(" "+N(s.value?"Checking connection…":"Save and continue"),1)]),_:1},8,["loading"])]),r.value?(w(),G("p",km,[l[2]||(l[2]=L("i",{class:"ph ph-warning-circle"},null,-1)),U(" "+N(r.value),1)])):se("",!0)])]))}},xm=ze(Am,[["__scopeId","data-v-22feb45a"]]),Cm={class:"mobile-auth-page"},Em={class:"mobile-auth-card"},Rm={class:"text-muted"},$m={__name:"MobileAuthPage",setup(e){const t=Zt(),n=Mn(),a=J("Authenticating…");return _t(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 i=new URLSearchParams(s.slice(r+1)),o=i.get("token"),l=i.get("expires_in");if(!o){a.value="No token received. Redirecting…",setTimeout(()=>t.replace({name:"login"}),1500);return}pr(o,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)=>(w(),G("div",Cm,[L("div",Em,[r[0]||(r[0]=L("div",{class:"spinner"},null,-1)),L("p",Rm,N(a.value),1)])]))}},Tm=ze($m,[["__scopeId","data-v-9c0afc74"]]),Pm=[{path:"/",redirect:"/areas/favorites"},{path:"/login",name:"login",component:_m,meta:{public:!0}},{path:"/mobile-setup",name:"mobile-setup",component:xm,meta:{public:!0}},{path:"/mobile-auth",name:"mobile-auth",component:Tm,meta:{public:!0}},{path:"/areas/favorites",name:"areas-favorites",component:Lp,meta:{permission:"areas.view"}},{path:"/areas/tree",name:"areas-tree",component:Yp,meta:{permission:"areas.view"}},{path:"/areas/:id",name:"area-detail",component:ug,meta:{permission:"areas.view"}},{path:"/devices",name:"devices",component:gg,meta:{permission:"devices.view"}},{path:"/devices/scanning",name:"devices-scanning",component:Pg,meta:{permission:"devices.scan"}},{path:"/devices/:id",name:"device-detail",component:mh,meta:{permission:"devices.view"}},{path:"/scripts/actions",name:"scripts-actions",component:bh,meta:{permission:"scripts.run"}},{path:"/scripts/regular",name:"scripts-regular",component:kh,meta:{permission:"scripts.view"}},{path:"/scripts/scopes",name:"scripts-scopes",component:Eh,meta:{permission:"scripts.view"}},{path:"/scripts/:type(actions|regular|scopes)/:id",name:"script-detail",component:am,meta:{permission:"scripts.view"}},{path:"/firmwares",name:"firmwares",component:vm,meta:{permission:"firmware.view"}},{path:"/:pathMatch(.*)*",name:"not-found",component:()=>bl(()=>import("./NotFoundPage-CAny2g0D.js"),[])}],_a="[vue:router]",ba=mr(),qs=Af({history:nf(),routes:Pm});qs.beforeEach(async(e,t,n)=>{var r,i;const a=Mn();if(ba&&console.debug(_a,`Navigate: ${t.fullPath||"init"} → ${e.fullPath}`),await a.init(),(r=e.meta)!=null&&r.public){if(e.name==="login"&&a.isAuthenticated){ba&&console.debug(_a,"Redirect: authenticated user at login → areas-favorites"),n({name:"areas-favorites"});return}n();return}if(!a.isAuthenticated){ba&&console.debug(_a,"Redirect: unauthenticated → login"),n({name:"login"});return}const s=(i=e.meta)==null?void 0:i.permission;if(s&&!a.hasPermission(s)){ba&&console.warn(_a,`Forbidden: ${e.fullPath} requires ${s}`),n({name:"areas-favorites"});return}n()});function Im(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 Ss="[vue:pinia]",Dm=e=>{if(!mr())return;const{store:t,options:n}=e,a=n.id,s=Object.keys(n.actions||{});for(const r of s){const i=t[r];t[r]=async function(...o){console.debug(Ss,`${a}.${r}(${o.map(u=>xl(u)).join(", ")})`);const l=performance.now();try{const u=await i.apply(this,o);return console.debug(Ss,`${a}.${r} completed in ${(performance.now()-l).toFixed(1)}ms`),u}catch(u){throw console.error(Ss,`${a}.${r} failed: ${(u==null?void 0:u.message)||u}`),u}}}};async function Lm(){await ap();const e=ud(_p);Im(e);const t=fd();t.use(Dm),e.use(t).use(qs),Qt()&&(await rp()||await qs.replace("/mobile-setup")),await Mn().init(),e.mount("#app")}Lm();export{Lf as G,vr as W,I as a,G as c,w as o,p as u}; diff --git a/server/dist/assets/index-DSElkzFl.js b/server/dist/assets/index-DSElkzFl.js deleted file mode 100644 index 9d0868b..0000000 --- a/server/dist/assets/index-DSElkzFl.js +++ /dev/null @@ -1,37 +0,0 @@ -(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const a of document.querySelectorAll('link[rel="modulepreload"]'))s(a);new MutationObserver(a=>{for(const r of a)if(r.type==="childList")for(const i of r.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&s(i)}).observe(document,{childList:!0,subtree:!0});function n(a){const r={};return a.integrity&&(r.integrity=a.integrity),a.referrerPolicy&&(r.referrerPolicy=a.referrerPolicy),a.crossOrigin==="use-credentials"?r.credentials="include":a.crossOrigin==="anonymous"?r.credentials="omit":r.credentials="same-origin",r}function s(a){if(a.ep)return;a.ep=!0;const r=n(a);fetch(a.href,r)}})();/** -* @vue/shared v3.5.33 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function za(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const Ne={},An=[],Ot=()=>{},Ui=()=>!1,Os=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Fs=e=>e.startsWith("onUpdate:"),tt=Object.assign,Ka=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Nl=Object.prototype.hasOwnProperty,Ce=(e,t)=>Nl.call(e,t),ye=Array.isArray,xn=e=>us(e)==="[object Map]",Bi=e=>us(e)==="[object Set]",xr=e=>us(e)==="[object Date]",be=e=>typeof e=="function",He=e=>typeof e=="string",yt=e=>typeof e=="symbol",$e=e=>e!==null&&typeof e=="object",ji=e=>($e(e)||be(e))&&be(e.then)&&be(e.catch),Vi=Object.prototype.toString,us=e=>Vi.call(e),Ml=e=>us(e).slice(8,-1),Hi=e=>us(e)==="[object Object]",Ns=e=>He(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,zn=za(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Ms=e=>{const t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},Ul=/-\w/g,ft=Ms(e=>e.replace(Ul,t=>t.slice(1).toUpperCase())),Bl=/\B([A-Z])/g,an=Ms(e=>e.replace(Bl,"-$1").toLowerCase()),Us=Ms(e=>e.charAt(0).toUpperCase()+e.slice(1)),sa=Ms(e=>e?`on${Us(e)}`:""),Lt=(e,t)=>!Object.is(e,t),aa=(e,...t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:n})},jl=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let Cr;const Bs=()=>Cr||(Cr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Wa(e){if(ye(e)){const t={};for(let n=0;n{if(n){const s=n.split(Hl);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function Ft(e){let t="";if(He(e))t=e;else if(ye(e))for(let n=0;n!!(e&&e.__v_isRef===!0),N=e=>He(e)?e:e==null?"":ye(e)||$e(e)&&(e.toString===Vi||!be(e.toString))?zi(e)?N(e.value):JSON.stringify(e,Ki,2):String(e),Ki=(e,t)=>zi(t)?Ki(e,t.value):xn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,a],r)=>(n[ra(s,r)+" =>"]=a,n),{})}:Bi(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>ra(n))}:yt(t)?ra(t):$e(t)&&!ye(t)&&!Hi(t)?String(t):t,ra=(e,t="")=>{var n;return yt(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 Wi{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,s;for(n=0,s=this.effects.length;n0)return;if(Wn){let t=Wn;for(Wn=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Kn;){let t=Kn;for(Kn=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(s){e||(e=s)}t=n}}if(e)throw e}function eo(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function to(e){let t,n=e.depsTail,s=n;for(;s;){const a=s.prevDep;s.version===-1?(s===n&&(n=a),Za(s),Yl(s)):t=s,s.dep.activeLink=s.prevActiveLink,s.prevActiveLink=void 0,s=a}e.deps=t,e.depsTail=n}function ka(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(no(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function no(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===ts)||(e.globalVersion=ts,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!ka(e))))return;e.flags|=2;const t=e.dep,n=Fe,s=St;Fe=e,St=!0;try{eo(e);const a=e.fn(e._value);(t.version===0||Lt(a,e._value))&&(e.flags|=128,e._value=a,t.version++)}catch(a){throw t.version++,a}finally{Fe=n,St=s,to(e),e.flags&=-3}}function Za(e,t=!1){const{dep:n,prevSub:s,nextSub:a}=e;if(s&&(s.nextSub=a,e.prevSub=void 0),a&&(a.prevSub=s,e.nextSub=void 0),n.subs===e&&(n.subs=s,!s&&n.computed)){n.computed.flags&=-5;for(let r=n.computed.deps;r;r=r.nextDep)Za(r,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function Yl(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let St=!0;const so=[];function qt(){so.push(St),St=!1}function zt(){const e=so.pop();St=e===void 0?!0:e}function Er(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=Fe;Fe=void 0;try{t()}finally{Fe=n}}}let ts=0;class Xl{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 Qa{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(!Fe||!St||Fe===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==Fe)n=this.activeLink=new Xl(Fe,this),Fe.deps?(n.prevDep=Fe.depsTail,Fe.depsTail.nextDep=n,Fe.depsTail=n):Fe.deps=Fe.depsTail=n,ao(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const s=n.nextDep;s.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=s),n.prevDep=Fe.depsTail,n.nextDep=void 0,Fe.depsTail.nextDep=n,Fe.depsTail=n,Fe.deps===n&&(Fe.deps=s)}return n}trigger(t){this.version++,ts++,this.notify(t)}notify(t){Ya();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{Xa()}}}function ao(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let s=t.deps;s;s=s.nextDep)ao(s)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const As=new WeakMap,pn=Symbol(""),Aa=Symbol(""),ns=Symbol("");function st(e,t,n){if(St&&Fe){let s=As.get(e);s||As.set(e,s=new Map);let a=s.get(n);a||(s.set(n,a=new Qa),a.map=s,a.key=n),a.track()}}function Ht(e,t,n,s,a,r){const i=As.get(e);if(!i){ts++;return}const o=l=>{l&&l.trigger()};if(Ya(),t==="clear")i.forEach(o);else{const l=ye(e),u=l&&Ns(n);if(l&&n==="length"){const c=Number(s);i.forEach((d,f)=>{(f==="length"||f===ns||!yt(f)&&f>=c)&&o(d)})}else switch((n!==void 0||i.has(void 0))&&o(i.get(n)),u&&o(i.get(ns)),t){case"add":l?u&&o(i.get("length")):(o(i.get(pn)),xn(e)&&o(i.get(Aa)));break;case"delete":l||(o(i.get(pn)),xn(e)&&o(i.get(Aa)));break;case"set":xn(e)&&o(i.get(pn));break}}Xa()}function Zl(e,t){const n=As.get(e);return n&&n.get(t)}function _n(e){const t=Ae(e);return t===e?t:(st(t,"iterate",ns),ht(e)?t:t.map(xt))}function js(e){return st(e=Ae(e),"iterate",ns),e}function It(e,t){return Kt(e)?$n(Gt(e)?xt(t):t):xt(t)}const Ql={__proto__:null,[Symbol.iterator](){return oa(this,Symbol.iterator,e=>It(this,e))},concat(...e){return _n(this).concat(...e.map(t=>ye(t)?_n(t):t))},entries(){return oa(this,"entries",e=>(e[1]=It(this,e[1]),e))},every(e,t){return Ut(this,"every",e,t,void 0,arguments)},filter(e,t){return Ut(this,"filter",e,t,n=>n.map(s=>It(this,s)),arguments)},find(e,t){return Ut(this,"find",e,t,n=>It(this,n),arguments)},findIndex(e,t){return Ut(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return Ut(this,"findLast",e,t,n=>It(this,n),arguments)},findLastIndex(e,t){return Ut(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return Ut(this,"forEach",e,t,void 0,arguments)},includes(...e){return la(this,"includes",e)},indexOf(...e){return la(this,"indexOf",e)},join(e){return _n(this).join(e)},lastIndexOf(...e){return la(this,"lastIndexOf",e)},map(e,t){return Ut(this,"map",e,t,void 0,arguments)},pop(){return Nn(this,"pop")},push(...e){return Nn(this,"push",e)},reduce(e,...t){return Rr(this,"reduce",e,t)},reduceRight(e,...t){return Rr(this,"reduceRight",e,t)},shift(){return Nn(this,"shift")},some(e,t){return Ut(this,"some",e,t,void 0,arguments)},splice(...e){return Nn(this,"splice",e)},toReversed(){return _n(this).toReversed()},toSorted(e){return _n(this).toSorted(e)},toSpliced(...e){return _n(this).toSpliced(...e)},unshift(...e){return Nn(this,"unshift",e)},values(){return oa(this,"values",e=>It(this,e))}};function oa(e,t,n){const s=js(e),a=s[t]();return s!==e&&!ht(e)&&(a._next=a.next,a.next=()=>{const r=a._next();return r.done||(r.value=n(r.value)),r}),a}const eu=Array.prototype;function Ut(e,t,n,s,a,r){const i=js(e),o=i!==e&&!ht(e),l=i[t];if(l!==eu[t]){const d=l.apply(e,r);return o?xt(d):d}let u=n;i!==e&&(o?u=function(d,f){return n.call(this,It(e,d),f,e)}:n.length>2&&(u=function(d,f){return n.call(this,d,f,e)}));const c=l.call(i,u,s);return o&&a?a(c):c}function Rr(e,t,n,s){const a=js(e),r=a!==e&&!ht(e);let i=n,o=!1;a!==e&&(r?(o=s.length===0,i=function(u,c,d){return o&&(o=!1,u=It(e,u)),n.call(this,u,It(e,c),d,e)}):n.length>3&&(i=function(u,c,d){return n.call(this,u,c,d,e)}));const l=a[t](i,...s);return o?It(e,l):l}function la(e,t,n){const s=Ae(e);st(s,"iterate",ns);const a=s[t](...n);return(a===-1||a===!1)&&Vs(n[0])?(n[0]=Ae(n[0]),s[t](...n)):a}function Nn(e,t,n=[]){qt(),Ya();const s=Ae(e)[t].apply(e,n);return Xa(),zt(),s}const tu=za("__proto__,__v_isRef,__isVue"),ro=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(yt));function nu(e){yt(e)||(e=String(e));const t=Ae(this);return st(t,"has",e),t.hasOwnProperty(e)}class io{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){if(n==="__v_skip")return t.__v_skip;const a=this._isReadonly,r=this._isShallow;if(n==="__v_isReactive")return!a;if(n==="__v_isReadonly")return a;if(n==="__v_isShallow")return r;if(n==="__v_raw")return s===(a?r?fu:co:r?uo:lo).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const i=ye(t);if(!a){let l;if(i&&(l=Ql[n]))return l;if(n==="hasOwnProperty")return nu}const o=Reflect.get(t,n,Ue(t)?t:s);if((yt(n)?ro.has(n):tu(n))||(a||st(t,"get",n),r))return o;if(Ue(o)){const l=i&&Ns(n)?o:o.value;return a&&$e(l)?Ca(l):l}return $e(o)?a?Ca(o):Yt(o):o}}class oo extends io{constructor(t=!1){super(!1,t)}set(t,n,s,a){let r=t[n];const i=ye(t)&&Ns(n);if(!this._isShallow){const u=Kt(r);if(!ht(s)&&!Kt(s)&&(r=Ae(r),s=Ae(s)),!i&&Ue(r)&&!Ue(s))return u||(r.value=s),!0}const o=i?Number(n)e,gs=e=>Reflect.getPrototypeOf(e);function ou(e,t,n){return function(...s){const a=this.__v_raw,r=Ae(a),i=xn(r),o=e==="entries"||e===Symbol.iterator&&i,l=e==="keys"&&i,u=a[e](...s),c=n?xa:t?$n:xt;return!t&&st(r,"iterate",l?Aa:pn),tt(Object.create(u),{next(){const{value:d,done:f}=u.next();return f?{value:d,done:f}:{value:o?[c(d[0]),c(d[1])]:c(d),done:f}}})}}function hs(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function lu(e,t){const n={get(a){const r=this.__v_raw,i=Ae(r),o=Ae(a);e||(Lt(a,o)&&st(i,"get",a),st(i,"get",o));const{has:l}=gs(i),u=t?xa:e?$n:xt;if(l.call(i,a))return u(r.get(a));if(l.call(i,o))return u(r.get(o));r!==i&&r.get(a)},get size(){const a=this.__v_raw;return!e&&st(Ae(a),"iterate",pn),a.size},has(a){const r=this.__v_raw,i=Ae(r),o=Ae(a);return e||(Lt(a,o)&&st(i,"has",a),st(i,"has",o)),a===o?r.has(a):r.has(a)||r.has(o)},forEach(a,r){const i=this,o=i.__v_raw,l=Ae(o),u=t?xa:e?$n:xt;return!e&&st(l,"iterate",pn),o.forEach((c,d)=>a.call(r,u(c),u(d),i))}};return tt(n,e?{add:hs("add"),set:hs("set"),delete:hs("delete"),clear:hs("clear")}:{add(a){const r=Ae(this),i=gs(r),o=Ae(a),l=!t&&!ht(a)&&!Kt(a)?o:a;return i.has.call(r,l)||Lt(a,l)&&i.has.call(r,a)||Lt(o,l)&&i.has.call(r,o)||(r.add(l),Ht(r,"add",l,l)),this},set(a,r){!t&&!ht(r)&&!Kt(r)&&(r=Ae(r));const i=Ae(this),{has:o,get:l}=gs(i);let u=o.call(i,a);u||(a=Ae(a),u=o.call(i,a));const c=l.call(i,a);return i.set(a,r),u?Lt(r,c)&&Ht(i,"set",a,r):Ht(i,"add",a,r),this},delete(a){const r=Ae(this),{has:i,get:o}=gs(r);let l=i.call(r,a);l||(a=Ae(a),l=i.call(r,a)),o&&o.call(r,a);const u=r.delete(a);return l&&Ht(r,"delete",a,void 0),u},clear(){const a=Ae(this),r=a.size!==0,i=a.clear();return r&&Ht(a,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(a=>{n[a]=ou(a,e,t)}),n}function er(e,t){const n=lu(e,t);return(s,a,r)=>a==="__v_isReactive"?!e:a==="__v_isReadonly"?e:a==="__v_raw"?s:Reflect.get(Ce(n,a)&&a in s?n:s,a,r)}const uu={get:er(!1,!1)},cu={get:er(!1,!0)},du={get:er(!0,!1)};const lo=new WeakMap,uo=new WeakMap,co=new WeakMap,fu=new WeakMap;function pu(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function vu(e){return e.__v_skip||!Object.isExtensible(e)?0:pu(Ml(e))}function Yt(e){return Kt(e)?e:tr(e,!1,au,uu,lo)}function fo(e){return tr(e,!1,iu,cu,uo)}function Ca(e){return tr(e,!0,ru,du,co)}function tr(e,t,n,s,a){if(!$e(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const r=vu(e);if(r===0)return e;const i=a.get(e);if(i)return i;const o=new Proxy(e,r===2?s:n);return a.set(e,o),o}function Gt(e){return Kt(e)?Gt(e.__v_raw):!!(e&&e.__v_isReactive)}function Kt(e){return!!(e&&e.__v_isReadonly)}function ht(e){return!!(e&&e.__v_isShallow)}function Vs(e){return e?!!e.__v_raw:!1}function Ae(e){const t=e&&e.__v_raw;return t?Ae(t):e}function nr(e){return!Ce(e,"__v_skip")&&Object.isExtensible(e)&&Gi(e,"__v_skip",!0),e}const xt=e=>$e(e)?Yt(e):e,$n=e=>$e(e)?Ca(e):e;function Ue(e){return e?e.__v_isRef===!0:!1}function J(e){return po(e,!1)}function gu(e){return po(e,!0)}function po(e,t){return Ue(e)?e:new hu(e,t)}class hu{constructor(t,n){this.dep=new Qa,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:Ae(t),this._value=n?t:xt(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,s=this.__v_isShallow||ht(t)||Kt(t);t=s?t:Ae(t),Lt(t,n)&&(this._rawValue=t,this._value=s?t:xt(t),this.dep.trigger())}}function p(e){return Ue(e)?e.value:e}const mu={get:(e,t,n)=>t==="__v_raw"?e:p(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const a=e[t];return Ue(a)&&!Ue(n)?(a.value=n,!0):Reflect.set(e,t,n,s)}};function vo(e){return Gt(e)?e:new Proxy(e,mu)}function yu(e){const t=ye(e)?new Array(e.length):{};for(const n in e)t[n]=bu(e,n);return t}class _u{constructor(t,n,s){this._object=t,this._defaultValue=s,this.__v_isRef=!0,this._value=void 0,this._key=yt(n)?n:String(n),this._raw=Ae(t);let a=!0,r=t;if(!ye(t)||yt(this._key)||!Ns(this._key))do a=!Vs(r)||ht(r);while(a&&(r=r.__v_raw));this._shallow=a}get value(){let t=this._object[this._key];return this._shallow&&(t=p(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&Ue(this._raw[this._key])){const n=this._object[this._key];if(Ue(n)){n.value=t;return}}this._object[this._key]=t}get dep(){return Zl(this._raw,this._key)}}function bu(e,t,n){return new _u(e,t,n)}class wu{constructor(t,n,s){this.fn=t,this.setter=n,this._value=void 0,this.dep=new Qa(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=ts-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=s}notify(){if(this.flags|=16,!(this.flags&8)&&Fe!==this)return Qi(this,!0),!0}get value(){const t=this.dep.track();return no(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function Su(e,t,n=!1){let s,a;return be(e)?s=e:(s=e.get,a=e.set),new wu(s,a,n)}const ms={},xs=new WeakMap;let cn;function ku(e,t=!1,n=cn){if(n){let s=xs.get(n);s||xs.set(n,s=[]),s.push(e)}}function Au(e,t,n=Ne){const{immediate:s,deep:a,once:r,scheduler:i,augmentJob:o,call:l}=n,u=E=>a?E:ht(E)||a===!1||a===0?sn(E,1):sn(E);let c,d,f,h,g=!1,y=!1;if(Ue(e)?(d=()=>e.value,g=ht(e)):Gt(e)?(d=()=>u(e),g=!0):ye(e)?(y=!0,g=e.some(E=>Gt(E)||ht(E)),d=()=>e.map(E=>{if(Ue(E))return E.value;if(Gt(E))return u(E);if(be(E))return l?l(E,2):E()})):be(e)?t?d=l?()=>l(e,2):e:d=()=>{if(f){qt();try{f()}finally{zt()}}const E=cn;cn=c;try{return l?l(e,3,[h]):e(h)}finally{cn=E}}:d=Ot,t&&a){const E=d,F=a===!0?1/0:a;d=()=>sn(E(),F)}const m=Yi(),P=()=>{c.stop(),m&&m.active&&Ka(m.effects,c)};if(r&&t){const E=t;t=(...F)=>{E(...F),P()}}let _=y?new Array(e.length).fill(ms):ms;const S=E=>{if(!(!(c.flags&1)||!c.dirty&&!E))if(t){const F=c.run();if(a||g||(y?F.some((D,T)=>Lt(D,_[T])):Lt(F,_))){f&&f();const D=cn;cn=c;try{const T=[F,_===ms?void 0:y&&_[0]===ms?[]:_,h];_=F,l?l(t,3,T):t(...T)}finally{cn=D}}}else c.run()};return o&&o(S),c=new Xi(d),c.scheduler=i?()=>i(S,!1):S,h=E=>ku(E,!1,c),f=c.onStop=()=>{const E=xs.get(c);if(E){if(l)l(E,4);else for(const F of E)F();xs.delete(c)}},t?s?S(!0):_=c.run():i?i(S.bind(null,!0),!0):c.run(),P.pause=c.pause.bind(c),P.resume=c.resume.bind(c),P.stop=P,P}function sn(e,t=1/0,n){if(t<=0||!$e(e)||e.__v_skip||(n=n||new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,Ue(e))sn(e.value,t,n);else if(ye(e))for(let s=0;s{sn(s,t,n)});else if(Hi(e)){for(const s in e)sn(e[s],t,n);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&sn(e[s],t,n)}return e}/** -* @vue/runtime-core v3.5.33 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function cs(e,t,n,s){try{return s?e(...s):e()}catch(a){Hs(a,t,n)}}function Nt(e,t,n,s){if(be(e)){const a=cs(e,t,n,s);return a&&ji(a)&&a.catch(r=>{Hs(r,t,n)}),a}if(ye(e)){const a=[];for(let r=0;r>>1,a=ct[s],r=ss(a);r=ss(n)?ct.push(e):ct.splice(Cu(t),0,e),e.flags|=1,ho()}}function ho(){Cs||(Cs=go.then(yo))}function Eu(e){ye(e)?Cn.push(...e):tn&&e.id===-1?tn.splice(wn+1,0,e):e.flags&1||(Cn.push(e),e.flags|=1),ho()}function $r(e,t,n=Pt+1){for(;nss(n)-ss(s));if(Cn.length=0,tn){tn.push(...t);return}for(tn=t,wn=0;wne.id==null?e.flags&2?-1:1/0:e.id;function yo(e){try{for(Pt=0;Pt{s._d&&Ts(-1);const r=Es(t);let i;try{i=e(...a)}finally{Es(r),s._d&&Ts(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function ln(e,t,n,s){const a=e.dirs,r=t&&t.dirs;for(let i=0;i1)return n&&be(t)?t.call(s&&s.proxy):t}}function Ru(){return!!(Js()||vn)}const $u=Symbol.for("v-scx"),Tu=()=>mt($u);function kt(e,t,n){return bo(e,t,n)}function bo(e,t,n=Ne){const{immediate:s,deep:a,flush:r,once:i}=n,o=tt({},n),l=t&&s||!t&&r!=="post";let u;if(is){if(r==="sync"){const h=Tu();u=h.__watcherHandles||(h.__watcherHandles=[])}else if(!l){const h=()=>{};return h.stop=Ot,h.resume=Ot,h.pause=Ot,h}}const c=at;o.call=(h,g,y)=>Nt(h,c,g,y);let d=!1;r==="post"?o.scheduler=h=>{ot(h,c&&c.suspense)}:r!=="sync"&&(d=!0,o.scheduler=(h,g)=>{g?h():sr(h)}),o.augmentJob=h=>{t&&(h.flags|=4),d&&(h.flags|=2,c&&(h.id=c.uid,h.i=c))};const f=Au(e,t,o);return is&&(u?u.push(f):l&&f()),f}function Pu(e,t,n){const s=this.proxy,a=He(e)?e.includes(".")?wo(s,e):()=>s[e]:e.bind(s,s);let r;be(t)?r=t:(r=t.handler,n=t);const i=fs(this),o=bo(a,r.bind(s),n);return i(),o}function wo(e,t){const n=t.split(".");return()=>{let s=e;for(let a=0;ae.__isTeleport,dn=e=>e&&(e.disabled||e.disabled===""),Du=e=>e&&(e.defer||e.defer===""),Tr=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Pr=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,Ea=(e,t)=>{const n=e&&e.to;return He(n)?t?t(n):null:n},Lu={name:"Teleport",__isTeleport:!0,process(e,t,n,s,a,r,i,o,l,u){const{mc:c,pc:d,pbc:f,o:{insert:h,querySelector:g,createText:y,createComment:m,parentNode:P}}=u,_=dn(t.props);let{dynamicChildren:S}=t;const E=(T,A,R)=>{T.shapeFlag&16&&c(T.children,A,R,a,r,i,o,l)},F=(T=t)=>{const A=dn(T.props),R=T.target=Ea(T.props,g),Z=Ra(R,T,y,h);R&&(i!=="svg"&&Tr(R)?i="svg":i!=="mathml"&&Pr(R)&&(i="mathml"),a&&a.isCE&&(a.ce._teleportTargets||(a.ce._teleportTargets=new Set)).add(R),A||(E(T,R,Z),Hn(T,!1)))},D=T=>{const A=()=>{if(Qt.get(T)===A){if(Qt.delete(T),dn(T.props)){const R=P(T.el)||n;E(T,R,T.anchor),Hn(T,!0)}F(T)}};Qt.set(T,A),ot(A,r)};if(e==null){const T=t.el=y(""),A=t.anchor=y("");if(h(T,n,s),h(A,n,s),Du(t.props)||r&&r.pendingBranch){D(t);return}_&&(E(t,n,A),Hn(t,!0)),F()}else{t.el=e.el;const T=t.anchor=e.anchor,A=Qt.get(e);if(A){A.flags|=8,Qt.delete(e),D(t);return}t.targetStart=e.targetStart;const R=t.target=e.target,Z=t.targetAnchor=e.targetAnchor,ue=dn(e.props),de=ue?n:R,pe=ue?T:Z;if(i==="svg"||Tr(R)?i="svg":(i==="mathml"||Pr(R))&&(i="mathml"),S?(f(e.dynamicChildren,S,de,a,r,i,o),or(e,t,!0)):l||d(e,t,de,pe,a,r,i,o,!1),_)ue?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):ys(t,n,T,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const B=t.target=Ea(t.props,g);B&&ys(t,B,null,u,0)}else ue&&ys(t,R,Z,u,1);Hn(t,_)}},remove(e,t,n,{um:s,o:{remove:a}},r){const{shapeFlag:i,children:o,anchor:l,targetStart:u,targetAnchor:c,target:d,props:f}=e;let h=r||!dn(f);const g=Qt.get(e);if(g&&(g.flags|=8,Qt.delete(e),h=!1),d&&(a(u),a(c)),r&&a(l),i&16)for(let y=0;yYn(y,t&&(ye(t)?t[m]:t),n,s,a));return}if(En(s)&&!a){s.shapeFlag&512&&s.type.__asyncResolved&&s.component.subTree.component&&Yn(e,t,n,s.component.subTree);return}const r=s.shapeFlag&4?ur(s.component):s.el,i=a?null:r,{i:o,r:l}=e,u=t&&t.r,c=o.refs===Ne?o.refs={}:o.refs,d=o.setupState,f=Ae(d),h=d===Ne?Ui:y=>Ir(c,y)?!1:Ce(f,y),g=(y,m)=>!(m&&Ir(c,m));if(u!=null&&u!==l){if(Dr(t),He(u))c[u]=null,h(u)&&(d[u]=null);else if(Ue(u)){const y=t;g(u,y.k)&&(u.value=null),y.k&&(c[y.k]=null)}}if(be(l))cs(l,o,12,[i,c]);else{const y=He(l),m=Ue(l);if(y||m){const P=()=>{if(e.f){const _=y?h(l)?d[l]:c[l]:g()||!e.k?l.value:c[e.k];if(a)ye(_)&&Ka(_,r);else if(ye(_))_.includes(r)||_.push(r);else if(y)c[l]=[r],h(l)&&(d[l]=c[l]);else{const S=[r];g(l,e.k)&&(l.value=S),e.k&&(c[e.k]=S)}}else y?(c[l]=i,h(l)&&(d[l]=i)):m&&(g(l,e.k)&&(l.value=i),e.k&&(c[e.k]=i))};if(i){const _=()=>{P(),Rs.delete(e)};_.id=-1,Rs.set(e,_),ot(_,n)}else Dr(e),P()}}}function Dr(e){const t=Rs.get(e);t&&(t.flags|=8,Rs.delete(e))}Bs().requestIdleCallback;Bs().cancelIdleCallback;const En=e=>!!e.type.__asyncLoader,Ao=e=>e.type.__isKeepAlive;function Mu(e,t){xo(e,"a",t)}function Uu(e,t){xo(e,"da",t)}function xo(e,t,n=at){const s=e.__wdc||(e.__wdc=()=>{let a=n;for(;a;){if(a.isDeactivated)return;a=a.parent}return e()});if(Gs(t,s,n),n){let a=n.parent;for(;a&&a.parent;)Ao(a.parent.vnode)&&Bu(s,t,n,a),a=a.parent}}function Bu(e,t,n,s){const a=Gs(t,e,s,!0);ds(()=>{Ka(s[t],a)},n)}function Gs(e,t,n=at,s=!1){if(n){const a=n[e]||(n[e]=[]),r=t.__weh||(t.__weh=(...i)=>{qt();const o=fs(n),l=Nt(t,n,e,i);return o(),zt(),l});return s?a.unshift(r):a.push(r),r}}const Xt=e=>(t,n=at)=>{(!is||e==="sp")&&Gs(e,(...s)=>t(...s),n)},ju=Xt("bm"),bt=Xt("m"),Vu=Xt("bu"),Hu=Xt("u"),qs=Xt("bum"),ds=Xt("um"),Gu=Xt("sp"),qu=Xt("rtg"),zu=Xt("rtc");function Co(e,t=at){Gs("ec",e,t)}const Ku="components";function rn(e,t){return Ju(Ku,e,!0,t)||e}const Wu=Symbol.for("v-ndc");function Ju(e,t,n=!0,s=!1){const a=dt||at;if(a){const r=a.type;{const o=Ic(r,!1);if(o&&(o===t||o===ft(t)||o===Us(ft(t))))return r}const i=Lr(a[e]||r[e],t)||Lr(a.appContext[e],t);return!i&&s?r:i}}function Lr(e,t){return e&&(e[t]||e[ft(t)]||e[Us(ft(t))])}function Wt(e,t,n,s){let a;const r=n,i=ye(e);if(i||He(e)){const o=i&&Gt(e);let l=!1,u=!1;o&&(l=!ht(e),u=Kt(e),e=js(e)),a=new Array(e.length);for(let c=0,d=e.length;ct(o,l,void 0,r));else{const o=Object.keys(e);a=new Array(o.length);for(let l=0,u=o.length;l{const r=s.fn(...a);return r&&(r.key=s.key),r}:s.fn)}return e}function zs(e,t,n={},s,a){if(dt.ce||dt.parent&&En(dt.parent)&&dt.parent.ce){const u=Object.keys(n).length>0;return t!=="default"&&(n.name=t),w(),K(De,null,[I("slot",n,s&&s())],u?-2:64)}let r=e[t];r&&r._c&&(r._d=!1),w();const i=r&&Ro(r(n)),o=n.key||i&&i.key,l=K(De,{key:(o&&!yt(o)?o:`_${t}`)+(!i&&s?"_fb":"")},i||(s?s():[]),i&&e._===1?64:-2);return!a&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),r&&r._c&&(r._d=!0),l}function Ro(e){return e.some(t=>rs(t)?!(t.type===Jt||t.type===De&&!Ro(t.children)):!0)?e:null}const $a=e=>e?Jo(e)?ur(e):$a(e.parent):null,Xn=tt(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=>$a(e.parent),$root:e=>$a(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>To(e),$forceUpdate:e=>e.f||(e.f=()=>{sr(e.update)}),$nextTick:e=>e.n||(e.n=gn.bind(e.proxy)),$watch:e=>Pu.bind(e)}),ua=(e,t)=>e!==Ne&&!e.__isScriptSetup&&Ce(e,t),Yu={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:s,data:a,props:r,accessCache:i,type:o,appContext:l}=e;if(t[0]!=="$"){const f=i[t];if(f!==void 0)switch(f){case 1:return s[t];case 2:return a[t];case 4:return n[t];case 3:return r[t]}else{if(ua(s,t))return i[t]=1,s[t];if(a!==Ne&&Ce(a,t))return i[t]=2,a[t];if(Ce(r,t))return i[t]=3,r[t];if(n!==Ne&&Ce(n,t))return i[t]=4,n[t];Ta&&(i[t]=0)}}const u=Xn[t];let c,d;if(u)return t==="$attrs"&&st(e.attrs,"get",""),u(e);if((c=o.__cssModules)&&(c=c[t]))return c;if(n!==Ne&&Ce(n,t))return i[t]=4,n[t];if(d=l.config.globalProperties,Ce(d,t))return d[t]},set({_:e},t,n){const{data:s,setupState:a,ctx:r}=e;return ua(a,t)?(a[t]=n,!0):s!==Ne&&Ce(s,t)?(s[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:s,appContext:a,props:r,type:i}},o){let l;return!!(n[o]||e!==Ne&&o[0]!=="$"&&Ce(e,o)||ua(t,o)||Ce(r,o)||Ce(s,o)||Ce(Xn,o)||Ce(a.config.globalProperties,o)||(l=i.__cssModules)&&l[o])},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 Or(e){return ye(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let Ta=!0;function Xu(e){const t=To(e),n=e.proxy,s=e.ctx;Ta=!1,t.beforeCreate&&Fr(t.beforeCreate,e,"bc");const{data:a,computed:r,methods:i,watch:o,provide:l,inject:u,created:c,beforeMount:d,mounted:f,beforeUpdate:h,updated:g,activated:y,deactivated:m,beforeDestroy:P,beforeUnmount:_,destroyed:S,unmounted:E,render:F,renderTracked:D,renderTriggered:T,errorCaptured:A,serverPrefetch:R,expose:Z,inheritAttrs:ue,components:de,directives:pe,filters:B}=t;if(u&&Zu(u,s,null),i)for(const W in i){const te=i[W];be(te)&&(s[W]=te.bind(n))}if(a){const W=a.call(n,n);$e(W)&&(e.data=Yt(W))}if(Ta=!0,r)for(const W in r){const te=r[W],ve=be(te)?te.bind(n,n):be(te.get)?te.get.bind(n,n):Ot,Se=!be(te)&&be(te.set)?te.set.bind(n):Ot,Ee=Q({get:ve,set:Se});Object.defineProperty(s,W,{enumerable:!0,configurable:!0,get:()=>Ee.value,set:we=>Ee.value=we})}if(o)for(const W in o)$o(o[W],s,n,W);if(l){const W=be(l)?l.call(n):l;Reflect.ownKeys(W).forEach(te=>{Jn(te,W[te])})}c&&Fr(c,e,"c");function X(W,te){ye(te)?te.forEach(ve=>W(ve.bind(n))):te&&W(te.bind(n))}if(X(ju,d),X(bt,f),X(Vu,h),X(Hu,g),X(Mu,y),X(Uu,m),X(Co,A),X(zu,D),X(qu,T),X(qs,_),X(ds,E),X(Gu,R),ye(Z))if(Z.length){const W=e.exposed||(e.exposed={});Z.forEach(te=>{Object.defineProperty(W,te,{get:()=>n[te],set:ve=>n[te]=ve,enumerable:!0})})}else e.exposed||(e.exposed={});F&&e.render===Ot&&(e.render=F),ue!=null&&(e.inheritAttrs=ue),de&&(e.components=de),pe&&(e.directives=pe),R&&ko(e)}function Zu(e,t,n=Ot){ye(e)&&(e=Pa(e));for(const s in e){const a=e[s];let r;$e(a)?"default"in a?r=mt(a.from||s,a.default,!0):r=mt(a.from||s):r=mt(a),Ue(r)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>r.value,set:i=>r.value=i}):t[s]=r}}function Fr(e,t,n){Nt(ye(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function $o(e,t,n,s){let a=s.includes(".")?wo(n,s):()=>n[s];if(He(e)){const r=t[e];be(r)&&kt(a,r)}else if(be(e))kt(a,e.bind(n));else if($e(e))if(ye(e))e.forEach(r=>$o(r,t,n,s));else{const r=be(e.handler)?e.handler.bind(n):t[e.handler];be(r)&&kt(a,r,e)}}function To(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:a,optionsCache:r,config:{optionMergeStrategies:i}}=e.appContext,o=r.get(t);let l;return o?l=o:!a.length&&!n&&!s?l=t:(l={},a.length&&a.forEach(u=>$s(l,u,i,!0)),$s(l,t,i)),$e(t)&&r.set(t,l),l}function $s(e,t,n,s=!1){const{mixins:a,extends:r}=t;r&&$s(e,r,n,!0),a&&a.forEach(i=>$s(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const o=Qu[i]||n&&n[i];e[i]=o?o(e[i],t[i]):t[i]}return e}const Qu={data:Nr,props:Mr,emits:Mr,methods:Gn,computed:Gn,beforeCreate:it,created:it,beforeMount:it,mounted:it,beforeUpdate:it,updated:it,beforeDestroy:it,beforeUnmount:it,destroyed:it,unmounted:it,activated:it,deactivated:it,errorCaptured:it,serverPrefetch:it,components:Gn,directives:Gn,watch:tc,provide:Nr,inject:ec};function Nr(e,t){return t?e?function(){return tt(be(e)?e.call(this,this):e,be(t)?t.call(this,this):t)}:t:e}function ec(e,t){return Gn(Pa(e),Pa(t))}function Pa(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[`${an(t)}Modifiers`];function rc(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||Ne;let a=n;const r=t.startsWith("update:"),i=r&&ac(s,t.slice(7));i&&(i.trim&&(a=n.map(c=>He(c)?c.trim():c)),i.number&&(a=n.map(jl)));let o,l=s[o=sa(t)]||s[o=sa(ft(t))];!l&&r&&(l=s[o=sa(an(t))]),l&&Nt(l,e,6,a);const u=s[o+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[o])return;e.emitted[o]=!0,Nt(u,e,6,a)}}const ic=new WeakMap;function Io(e,t,n=!1){const s=n?ic:t.emitsCache,a=s.get(e);if(a!==void 0)return a;const r=e.emits;let i={},o=!1;if(!be(e)){const l=u=>{const c=Io(u,t,!0);c&&(o=!0,tt(i,c))};!n&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}return!r&&!o?($e(e)&&s.set(e,null),null):(ye(r)?r.forEach(l=>i[l]=null):tt(i,r),$e(e)&&s.set(e,i),i)}function Ks(e,t){return!e||!Os(t)?!1:(t=t.slice(2).replace(/Once$/,""),Ce(e,t[0].toLowerCase()+t.slice(1))||Ce(e,an(t))||Ce(e,t))}function Ur(e){const{type:t,vnode:n,proxy:s,withProxy:a,propsOptions:[r],slots:i,attrs:o,emit:l,render:u,renderCache:c,props:d,data:f,setupState:h,ctx:g,inheritAttrs:y}=e,m=Es(e);let P,_;try{if(n.shapeFlag&4){const E=a||s,F=E;P=Dt(u.call(F,E,c,d,h,f,g)),_=o}else{const E=t;P=Dt(E.length>1?E(d,{attrs:o,slots:i,emit:l}):E(d,null)),_=t.props?o:oc(o)}}catch(E){Zn.length=0,Hs(E,e,1),P=I(Jt)}let S=P;if(_&&y!==!1){const E=Object.keys(_),{shapeFlag:F}=S;E.length&&F&7&&(r&&E.some(Fs)&&(_=lc(_,r)),S=Tn(S,_,!1,!0))}return n.dirs&&(S=Tn(S,null,!1,!0),S.dirs=S.dirs?S.dirs.concat(n.dirs):n.dirs),n.transition&&ar(S,n.transition),P=S,Es(m),P}const oc=e=>{let t;for(const n in e)(n==="class"||n==="style"||Os(n))&&((t||(t={}))[n]=e[n]);return t},lc=(e,t)=>{const n={};for(const s in e)(!Fs(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function uc(e,t,n){const{props:s,children:a,component:r}=e,{props:i,children:o,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 s?Br(s,i,u):!!i;if(l&8){const c=t.dynamicProps;for(let d=0;dObject.create(Lo),Fo=e=>Object.getPrototypeOf(e)===Lo;function dc(e,t,n,s=!1){const a={},r=Oo();e.propsDefaults=Object.create(null),No(e,t,a,r);for(const i in e.propsOptions[0])i in a||(a[i]=void 0);n?e.props=s?a:fo(a):e.type.props?e.props=a:e.props=r,e.attrs=r}function fc(e,t,n,s){const{props:a,attrs:r,vnode:{patchFlag:i}}=e,o=Ae(a),[l]=e.propsOptions;let u=!1;if((s||i>0)&&!(i&16)){if(i&8){const c=e.vnode.dynamicProps;for(let d=0;d{l=!0;const[f,h]=Mo(d,t,!0);tt(i,f),h&&o.push(...h)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!r&&!l)return $e(e)&&s.set(e,An),An;if(ye(r))for(let c=0;ce==="_"||e==="_ctx"||e==="$stable",ir=e=>ye(e)?e.map(Dt):[Dt(e)],vc=(e,t,n)=>{if(t._n)return t;const s=k((...a)=>ir(t(...a)),n);return s._c=!1,s},Uo=(e,t,n)=>{const s=e._ctx;for(const a in e){if(rr(a))continue;const r=e[a];if(be(r))t[a]=vc(a,r,s);else if(r!=null){const i=ir(r);t[a]=()=>i}}},Bo=(e,t)=>{const n=ir(t);e.slots.default=()=>n},jo=(e,t,n)=>{for(const s in t)(n||!rr(s))&&(e[s]=t[s])},gc=(e,t,n)=>{const s=e.slots=Oo();if(e.vnode.shapeFlag&32){const a=t._;a?(jo(s,t,n),n&&Gi(s,"_",a,!0)):Uo(t,s)}else t&&Bo(e,t)},hc=(e,t,n)=>{const{vnode:s,slots:a}=e;let r=!0,i=Ne;if(s.shapeFlag&32){const o=t._;o?n&&o===1?r=!1:jo(a,t,n):(r=!t.$stable,Uo(t,a)),i=t}else t&&(Bo(e,t),i={default:1});if(r)for(const o in a)!rr(o)&&i[o]==null&&delete a[o]},ot=wc;function mc(e){return yc(e)}function yc(e,t){const n=Bs();n.__VUE__=!0;const{insert:s,remove:a,patchProp:r,createElement:i,createText:o,createComment:l,setText:u,setElementText:c,parentNode:d,nextSibling:f,setScopeId:h=Ot,insertStaticContent:g}=e,y=(v,b,C,j=null,z=null,H=null,oe=void 0,re=null,ne=!!b.dynamicChildren)=>{if(v===b)return;v&&!Mn(v,b)&&(j=M(v),we(v,z,H,!0),v=null),b.patchFlag===-2&&(ne=!1,b.dynamicChildren=null);const{type:Y,ref:fe,shapeFlag:le}=b;switch(Y){case Ws:m(v,b,C,j);break;case Jt:P(v,b,C,j);break;case ws:v==null&&_(b,C,j,oe);break;case De:de(v,b,C,j,z,H,oe,re,ne);break;default:le&1?F(v,b,C,j,z,H,oe,re,ne):le&6?pe(v,b,C,j,z,H,oe,re,ne):(le&64||le&128)&&Y.process(v,b,C,j,z,H,oe,re,ne,x)}fe!=null&&z?Yn(fe,v&&v.ref,H,b||v,!b):fe==null&&v&&v.ref!=null&&Yn(v.ref,null,H,v,!0)},m=(v,b,C,j)=>{if(v==null)s(b.el=o(b.children),C,j);else{const z=b.el=v.el;b.children!==v.children&&u(z,b.children)}},P=(v,b,C,j)=>{v==null?s(b.el=l(b.children||""),C,j):b.el=v.el},_=(v,b,C,j)=>{[v.el,v.anchor]=g(v.children,b,C,j,v.el,v.anchor)},S=({el:v,anchor:b},C,j)=>{let z;for(;v&&v!==b;)z=f(v),s(v,C,j),v=z;s(b,C,j)},E=({el:v,anchor:b})=>{let C;for(;v&&v!==b;)C=f(v),a(v),v=C;a(b)},F=(v,b,C,j,z,H,oe,re,ne)=>{if(b.type==="svg"?oe="svg":b.type==="math"&&(oe="mathml"),v==null)D(b,C,j,z,H,oe,re,ne);else{const Y=v.el&&v.el._isVueCE?v.el:null;try{Y&&Y._beginPatch(),R(v,b,z,H,oe,re,ne)}finally{Y&&Y._endPatch()}}},D=(v,b,C,j,z,H,oe,re)=>{let ne,Y;const{props:fe,shapeFlag:le,transition:ce,dirs:me}=v;if(ne=v.el=i(v.type,H,fe&&fe.is,fe),le&8?c(ne,v.children):le&16&&A(v.children,ne,null,j,z,ca(v,H),oe,re),me&&ln(v,null,j,"created"),T(ne,v,v.scopeId,oe,j),fe){for(const Re in fe)Re!=="value"&&!zn(Re)&&r(ne,Re,null,fe[Re],H,j);"value"in fe&&r(ne,"value",null,fe.value,H),(Y=fe.onVnodeBeforeMount)&&Rt(Y,j,v)}me&&ln(v,null,j,"beforeMount");const ke=_c(z,ce);ke&&ce.beforeEnter(ne),s(ne,b,C),((Y=fe&&fe.onVnodeMounted)||ke||me)&&ot(()=>{try{Y&&Rt(Y,j,v),ke&&ce.enter(ne),me&&ln(v,null,j,"mounted")}finally{}},z)},T=(v,b,C,j,z)=>{if(C&&h(v,C),j)for(let H=0;H{for(let Y=ne;Y{const re=b.el=v.el;let{patchFlag:ne,dynamicChildren:Y,dirs:fe}=b;ne|=v.patchFlag&16;const le=v.props||Ne,ce=b.props||Ne;let me;if(C&&un(C,!1),(me=ce.onVnodeBeforeUpdate)&&Rt(me,C,b,v),fe&&ln(b,v,C,"beforeUpdate"),C&&un(C,!0),(le.innerHTML&&ce.innerHTML==null||le.textContent&&ce.textContent==null)&&c(re,""),Y?Z(v.dynamicChildren,Y,re,C,j,ca(b,z),H):oe||te(v,b,re,null,C,j,ca(b,z),H,!1),ne>0){if(ne&16)ue(re,le,ce,C,z);else if(ne&2&&le.class!==ce.class&&r(re,"class",null,ce.class,z),ne&4&&r(re,"style",le.style,ce.style,z),ne&8){const ke=b.dynamicProps;for(let Re=0;Re{me&&Rt(me,C,b,v),fe&&ln(b,v,C,"updated")},j)},Z=(v,b,C,j,z,H,oe)=>{for(let re=0;re{if(b!==C){if(b!==Ne)for(const H in b)!zn(H)&&!(H in C)&&r(v,H,b[H],null,z,j);for(const H in C){if(zn(H))continue;const oe=C[H],re=b[H];oe!==re&&H!=="value"&&r(v,H,re,oe,z,j)}"value"in C&&r(v,"value",b.value,C.value,z)}},de=(v,b,C,j,z,H,oe,re,ne)=>{const Y=b.el=v?v.el:o(""),fe=b.anchor=v?v.anchor:o("");let{patchFlag:le,dynamicChildren:ce,slotScopeIds:me}=b;me&&(re=re?re.concat(me):me),v==null?(s(Y,C,j),s(fe,C,j),A(b.children||[],C,fe,z,H,oe,re,ne)):le>0&&le&64&&ce&&v.dynamicChildren&&v.dynamicChildren.length===ce.length?(Z(v.dynamicChildren,ce,C,z,H,oe,re),(b.key!=null||z&&b===z.subTree)&&or(v,b,!0)):te(v,b,C,fe,z,H,oe,re,ne)},pe=(v,b,C,j,z,H,oe,re,ne)=>{b.slotScopeIds=re,v==null?b.shapeFlag&512?z.ctx.activate(b,C,j,oe,ne):B(b,C,j,z,H,oe,ne):q(v,b,ne)},B=(v,b,C,j,z,H,oe)=>{const re=v.component=Ec(v,j,z);if(Ao(v)&&(re.ctx.renderer=x),Rc(re,!1,oe),re.asyncDep){if(z&&z.registerDep(re,X,oe),!v.el){const ne=re.subTree=I(Jt);P(null,ne,b,C),v.placeholder=ne.el}}else X(re,v,b,C,z,H,oe)},q=(v,b,C)=>{const j=b.component=v.component;if(uc(v,b,C))if(j.asyncDep&&!j.asyncResolved){W(j,b,C);return}else j.next=b,j.update();else b.el=v.el,j.vnode=b},X=(v,b,C,j,z,H,oe)=>{const re=()=>{if(v.isMounted){let{next:le,bu:ce,u:me,parent:ke,vnode:Re}=v;{const Ie=Vo(v);if(Ie){le&&(le.el=Re.el,W(v,le,oe)),Ie.asyncDep.then(()=>{ot(()=>{v.isUnmounted||Y()},z)});return}}let Pe=le,Be;un(v,!1),le?(le.el=Re.el,W(v,le,oe)):le=Re,ce&&aa(ce),(Be=le.props&&le.props.onVnodeBeforeUpdate)&&Rt(Be,ke,le,Re),un(v,!0);const ie=Ur(v),O=v.subTree;v.subTree=ie,y(O,ie,d(O.el),M(O),v,z,H),le.el=ie.el,Pe===null&&cc(v,ie.el),me&&ot(me,z),(Be=le.props&&le.props.onVnodeUpdated)&&ot(()=>Rt(Be,ke,le,Re),z)}else{let le;const{el:ce,props:me}=b,{bm:ke,m:Re,parent:Pe,root:Be,type:ie}=v,O=En(b);un(v,!1),ke&&aa(ke),!O&&(le=me&&me.onVnodeBeforeMount)&&Rt(le,Pe,b),un(v,!0);{Be.ce&&Be.ce._hasShadowRoot()&&Be.ce._injectChildStyle(ie,v.parent?v.parent.type:void 0);const Ie=v.subTree=Ur(v);y(null,Ie,C,j,v,z,H),b.el=Ie.el}if(Re&&ot(Re,z),!O&&(le=me&&me.onVnodeMounted)){const Ie=b;ot(()=>Rt(le,Pe,Ie),z)}(b.shapeFlag&256||Pe&&En(Pe.vnode)&&Pe.vnode.shapeFlag&256)&&v.a&&ot(v.a,z),v.isMounted=!0,b=C=j=null}};v.scope.on();const ne=v.effect=new Xi(re);v.scope.off();const Y=v.update=ne.run.bind(ne),fe=v.job=ne.runIfDirty.bind(ne);fe.i=v,fe.id=v.uid,ne.scheduler=()=>sr(fe),un(v,!0),Y()},W=(v,b,C)=>{b.component=v;const j=v.vnode.props;v.vnode=b,v.next=null,fc(v,b.props,j,C),hc(v,b.children,C),qt(),$r(v),zt()},te=(v,b,C,j,z,H,oe,re,ne=!1)=>{const Y=v&&v.children,fe=v?v.shapeFlag:0,le=b.children,{patchFlag:ce,shapeFlag:me}=b;if(ce>0){if(ce&128){Se(Y,le,C,j,z,H,oe,re,ne);return}else if(ce&256){ve(Y,le,C,j,z,H,oe,re,ne);return}}me&8?(fe&16&&Te(Y,z,H),le!==Y&&c(C,le)):fe&16?me&16?Se(Y,le,C,j,z,H,oe,re,ne):Te(Y,z,H,!0):(fe&8&&c(C,""),me&16&&A(le,C,j,z,H,oe,re,ne))},ve=(v,b,C,j,z,H,oe,re,ne)=>{v=v||An,b=b||An;const Y=v.length,fe=b.length,le=Math.min(Y,fe);let ce;for(ce=0;cefe?Te(v,z,H,!0,!1,le):A(b,C,j,z,H,oe,re,ne,le)},Se=(v,b,C,j,z,H,oe,re,ne)=>{let Y=0;const fe=b.length;let le=v.length-1,ce=fe-1;for(;Y<=le&&Y<=ce;){const me=v[Y],ke=b[Y]=ne?Vt(b[Y]):Dt(b[Y]);if(Mn(me,ke))y(me,ke,C,null,z,H,oe,re,ne);else break;Y++}for(;Y<=le&&Y<=ce;){const me=v[le],ke=b[ce]=ne?Vt(b[ce]):Dt(b[ce]);if(Mn(me,ke))y(me,ke,C,null,z,H,oe,re,ne);else break;le--,ce--}if(Y>le){if(Y<=ce){const me=ce+1,ke=mece)for(;Y<=le;)we(v[Y],z,H,!0),Y++;else{const me=Y,ke=Y,Re=new Map;for(Y=ke;Y<=ce;Y++){const We=b[Y]=ne?Vt(b[Y]):Dt(b[Y]);We.key!=null&&Re.set(We.key,Y)}let Pe,Be=0;const ie=ce-ke+1;let O=!1,Ie=0;const et=new Array(ie);for(Y=0;Y=ie){we(We,z,H,!0);continue}let ze;if(We.key!=null)ze=Re.get(We.key);else for(Pe=ke;Pe<=ce;Pe++)if(et[Pe-ke]===0&&Mn(We,b[Pe])){ze=Pe;break}ze===void 0?we(We,z,H,!0):(et[ze-ke]=Y+1,ze>=Ie?Ie=ze:O=!0,y(We,b[ze],C,null,z,H,oe,re,ne),Be++)}const he=O?bc(et):An;for(Pe=he.length-1,Y=ie-1;Y>=0;Y--){const We=ke+Y,ze=b[We],Fn=b[We+1],Ar=We+1{const{el:H,type:oe,transition:re,children:ne,shapeFlag:Y}=v;if(Y&6){Ee(v.component.subTree,b,C,j);return}if(Y&128){v.suspense.move(b,C,j);return}if(Y&64){oe.move(v,b,C,x);return}if(oe===De){s(H,b,C);for(let le=0;lere.enter(H),z);else{const{leave:le,delayLeave:ce,afterLeave:me}=re,ke=()=>{v.ctx.isUnmounted?a(H):s(H,b,C)},Re=()=>{H._isLeaving&&H[Nu](!0),le(H,()=>{ke(),me&&me()})};ce?ce(H,ke,Re):Re()}else s(H,b,C)},we=(v,b,C,j=!1,z=!1)=>{const{type:H,props:oe,ref:re,children:ne,dynamicChildren:Y,shapeFlag:fe,patchFlag:le,dirs:ce,cacheIndex:me,memo:ke}=v;if(le===-2&&(z=!1),re!=null&&(qt(),Yn(re,null,C,v,!0),zt()),me!=null&&(b.renderCache[me]=void 0),fe&256){b.ctx.deactivate(v);return}const Re=fe&1&&ce,Pe=!En(v);let Be;if(Pe&&(Be=oe&&oe.onVnodeBeforeUnmount)&&Rt(Be,b,v),fe&6)Ve(v.component,C,j);else{if(fe&128){v.suspense.unmount(C,j);return}Re&&ln(v,null,b,"beforeUnmount"),fe&64?v.type.remove(v,b,C,x,j):Y&&!Y.hasOnce&&(H!==De||le>0&&le&64)?Te(Y,b,C,!1,!0):(H===De&&le&384||!z&&fe&16)&&Te(ne,b,C),j&&Me(v)}const ie=ke!=null&&me==null;(Pe&&(Be=oe&&oe.onVnodeUnmounted)||Re||ie)&&ot(()=>{Be&&Rt(Be,b,v),Re&&ln(v,null,b,"unmounted"),ie&&(v.el=null)},C)},Me=v=>{const{type:b,el:C,anchor:j,transition:z}=v;if(b===De){je(C,j);return}if(b===ws){E(v);return}const H=()=>{a(C),z&&!z.persisted&&z.afterLeave&&z.afterLeave()};if(v.shapeFlag&1&&z&&!z.persisted){const{leave:oe,delayLeave:re}=z,ne=()=>oe(C,H);re?re(v.el,H,ne):ne()}else H()},je=(v,b)=>{let C;for(;v!==b;)C=f(v),a(v),v=C;a(b)},Ve=(v,b,C)=>{const{bum:j,scope:z,job:H,subTree:oe,um:re,m:ne,a:Y}=v;Vr(ne),Vr(Y),j&&aa(j),z.stop(),H&&(H.flags|=8,we(oe,v,b,C)),re&&ot(re,b),ot(()=>{v.isUnmounted=!0},b)},Te=(v,b,C,j=!1,z=!1,H=0)=>{for(let oe=H;oe{if(v.shapeFlag&6)return M(v.component.subTree);if(v.shapeFlag&128)return v.suspense.next();const b=f(v.anchor||v.el),C=b&&b[So];return C?f(C):b};let se=!1;const $=(v,b,C)=>{let j;v==null?b._vnode&&(we(b._vnode,null,null,!0),j=b._vnode.component):y(b._vnode||null,v,b,null,null,null,C),b._vnode=v,se||(se=!0,$r(j),mo(),se=!1)},x={p:y,um:we,m:Ee,r:Me,mt:B,mc:A,pc:te,pbc:Z,n:M,o:e};return{render:$,hydrate:void 0,createApp:sc($)}}function ca({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 un({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function _c(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function or(e,t,n=!1){const s=e.children,a=t.children;if(ye(s)&&ye(a))for(let r=0;r>1,e[n[o]]0&&(t[s]=n[r-1]),n[r]=s)}}for(r=n.length,i=n[r-1];r-- >0;)n[r]=i,i=t[i];return n}function Vo(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:Vo(t)}function Vr(e){if(e)for(let t=0;te.__isSuspense;function wc(e,t){t&&t.pendingBranch?ye(e)?t.effects.push(...e):t.effects.push(e):Eu(e)}const De=Symbol.for("v-fgt"),Ws=Symbol.for("v-txt"),Jt=Symbol.for("v-cmt"),ws=Symbol.for("v-stc"),Zn=[];let vt=null;function w(e=!1){Zn.push(vt=e?null:[])}function Sc(){Zn.pop(),vt=Zn[Zn.length-1]||null}let as=1;function Ts(e,t=!1){as+=e,e<0&&vt&&t&&(vt.hasOnce=!0)}function qo(e){return e.dynamicChildren=as>0?vt||An:null,Sc(),as>0&&vt&&vt.push(e),e}function G(e,t,n,s,a,r){return qo(L(e,t,n,s,a,r,!0))}function K(e,t,n,s,a){return qo(I(e,t,n,s,a,!0))}function rs(e){return e?e.__v_isVNode===!0:!1}function Mn(e,t){return e.type===t.type&&e.key===t.key}const zo=({key:e})=>e??null,Ss=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?He(e)||Ue(e)||be(e)?{i:dt,r:e,k:t,f:!!n}:e:null);function L(e,t=null,n=null,s=0,a=null,r=e===De?0:1,i=!1,o=!1){const l={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&zo(t),ref:t&&Ss(t),scopeId:_o,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:s,dynamicProps:a,dynamicChildren:null,appContext:null,ctx:dt};return o?(lr(l,n),r&128&&e.normalize(l)):n&&(l.shapeFlag|=He(n)?8:16),as>0&&!i&&vt&&(l.patchFlag>0||r&6)&&l.patchFlag!==32&&vt.push(l),l}const I=kc;function kc(e,t=null,n=null,s=0,a=null,r=!1){if((!e||e===Wu)&&(e=Jt),rs(e)){const o=Tn(e,t,!0);return n&&lr(o,n),as>0&&!r&&vt&&(o.shapeFlag&6?vt[vt.indexOf(e)]=o:vt.push(o)),o.patchFlag=-2,o}if(Dc(e)&&(e=e.__vccOpts),t){t=Ac(t);let{class:o,style:l}=t;o&&!He(o)&&(t.class=Ft(o)),$e(l)&&(Vs(l)&&!ye(l)&&(l=tt({},l)),t.style=Wa(l))}const i=He(e)?1:Go(e)?128:Iu(e)?64:$e(e)?4:be(e)?2:0;return L(e,t,n,s,a,i,r,!0)}function Ac(e){return e?Vs(e)||Fo(e)?tt({},e):e:null}function Tn(e,t,n=!1,s=!1){const{props:a,ref:r,patchFlag:i,children:o,transition:l}=e,u=t?Wo(a||{},t):a,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:u,key:u&&zo(u),ref:t&&t.ref?n&&r?ye(r)?r.concat(Ss(t)):[r,Ss(t)]:Ss(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==De?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:l,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Tn(e.ssContent),ssFallback:e.ssFallback&&Tn(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return l&&s&&ar(c,l.clone(c)),c}function U(e=" ",t=0){return I(Ws,null,e,t)}function Ko(e,t){const n=I(ws,null,e);return n.staticCount=t,n}function ae(e="",t=!1){return t?(w(),K(Jt,null,e)):I(Jt,null,e)}function Dt(e){return e==null||typeof e=="boolean"?I(Jt):ye(e)?I(De,null,e.slice()):rs(e)?Vt(e):I(Ws,null,String(e))}function Vt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Tn(e)}function lr(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(ye(t))n=16;else if(typeof t=="object")if(s&65){const a=t.default;a&&(a._c&&(a._d=!1),lr(e,a()),a._c&&(a._d=!0));return}else{n=32;const a=t._;!a&&!Fo(t)?t._ctx=dt:a===3&&dt&&(dt.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else be(t)?(t={default:t,_ctx:dt},n=32):(t=String(t),s&64?(n=16,t=[U(t)]):n=8);e.children=t,e.shapeFlag|=n}function Wo(...e){const t={};for(let n=0;nat||dt;let Ps,Da;{const e=Bs(),t=(n,s)=>{let a;return(a=e[n])||(a=e[n]=[]),a.push(s),r=>{a.length>1?a.forEach(i=>i(r)):a[0](r)}};Ps=t("__VUE_INSTANCE_SETTERS__",n=>at=n),Da=t("__VUE_SSR_SETTERS__",n=>is=n)}const fs=e=>{const t=at;return Ps(e),e.scope.on(),()=>{e.scope.off(),Ps(t)}},Hr=()=>{at&&at.scope.off(),Ps(null)};function Jo(e){return e.vnode.shapeFlag&4}let is=!1;function Rc(e,t=!1,n=!1){t&&Da(t);const{props:s,children:a}=e.vnode,r=Jo(e);dc(e,s,r,t),gc(e,a,n||t);const i=r?$c(e,t):void 0;return t&&Da(!1),i}function $c(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Yu);const{setup:s}=n;if(s){qt();const a=e.setupContext=s.length>1?Pc(e):null,r=fs(e),i=cs(s,e,0,[e.props,a]),o=ji(i);if(zt(),r(),(o||e.sp)&&!En(e)&&ko(e),o){if(i.then(Hr,Hr),t)return i.then(l=>{Gr(e,l)}).catch(l=>{Hs(l,e,0)});e.asyncDep=i}else Gr(e,i)}else Yo(e)}function Gr(e,t,n){be(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:$e(t)&&(e.setupState=vo(t)),Yo(e)}function Yo(e,t,n){const s=e.type;e.render||(e.render=s.render||Ot);{const a=fs(e);qt();try{Xu(e)}finally{zt(),a()}}}const Tc={get(e,t){return st(e,"get",""),e[t]}};function Pc(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Tc),slots:e.slots,emit:e.emit,expose:t}}function ur(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(vo(nr(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Xn)return Xn[n](e)},has(t,n){return n in t||n in Xn}})):e.proxy}function Ic(e,t=!0){return be(e)?e.displayName||e.name:e.name||t&&e.__name}function Dc(e){return be(e)&&"__vccOpts"in e}const Q=(e,t)=>Su(e,t,is);function V(e,t,n){try{Ts(-1);const s=arguments.length;return s===2?$e(t)&&!ye(t)?rs(t)?I(e,null,[t]):I(e,t):I(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&rs(n)&&(n=[n]),I(e,t,n))}finally{Ts(1)}}const Lc="3.5.33";/** -* @vue/runtime-dom v3.5.33 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let La;const qr=typeof window<"u"&&window.trustedTypes;if(qr)try{La=qr.createPolicy("vue",{createHTML:e=>e})}catch{}const Xo=La?e=>La.createHTML(e):e=>e,Oc="http://www.w3.org/2000/svg",Fc="http://www.w3.org/1998/Math/MathML",jt=typeof document<"u"?document:null,zr=jt&&jt.createElement("template"),Nc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const a=t==="svg"?jt.createElementNS(Oc,e):t==="mathml"?jt.createElementNS(Fc,e):n?jt.createElement(e,{is:n}):jt.createElement(e);return e==="select"&&s&&s.multiple!=null&&a.setAttribute("multiple",s.multiple),a},createText:e=>jt.createTextNode(e),createComment:e=>jt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>jt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,a,r){const i=n?n.previousSibling:t.lastChild;if(a&&(a===r||a.nextSibling))for(;t.insertBefore(a.cloneNode(!0),n),!(a===r||!(a=a.nextSibling)););else{zr.innerHTML=Xo(s==="svg"?`${e}`:s==="mathml"?`${e}`:e);const o=zr.content;if(s==="svg"||s==="mathml"){const l=o.firstChild;for(;l.firstChild;)o.appendChild(l.firstChild);o.removeChild(l)}t.insertBefore(o,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},Mc=Symbol("_vtc");function Uc(e,t,n){const s=e[Mc];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Kr=Symbol("_vod"),Bc=Symbol("_vsh"),jc=Symbol(""),Vc=/(?:^|;)\s*display\s*:/;function Hc(e,t,n){const s=e.style,a=He(n);let r=!1;if(n&&!a){if(t)if(He(t))for(const i of t.split(";")){const o=i.slice(0,i.indexOf(":")).trim();n[o]==null&&qn(s,o,"")}else for(const i in t)n[i]==null&&qn(s,i,"");for(const i in n){i==="display"&&(r=!0);const o=n[i];o!=null?qc(e,i,!He(t)&&t?t[i]:void 0,o)||qn(s,i,o):qn(s,i,"")}}else if(a){if(t!==n){const i=s[jc];i&&(n+=";"+i),s.cssText=n,r=Vc.test(n)}}else t&&e.removeAttribute("style");Kr in e&&(e[Kr]=r?s.display:"",e[Bc]&&(s.display="none"))}const Wr=/\s*!important$/;function qn(e,t,n){if(ye(n))n.forEach(s=>qn(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Gc(e,t);Wr.test(n)?e.setProperty(an(s),n.replace(Wr,""),"important"):e[s]=n}}const Jr=["Webkit","Moz","ms"],da={};function Gc(e,t){const n=da[t];if(n)return n;let s=ft(t);if(s!=="filter"&&s in e)return da[t]=s;s=Us(s);for(let a=0;afa||(Yc.then(()=>fa=0),fa=Date.now());function Zc(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;Nt(Qc(s,n.value),t,5,[s])};return n.value=e,n.attached=Xc(),n}function Qc(e,t){if(ye(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>a=>!a._stopped&&s&&s(a))}else return t}const ti=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,ed=(e,t,n,s,a,r)=>{const i=a==="svg";t==="class"?Uc(e,s,i):t==="style"?Hc(e,n,s):Os(t)?Fs(t)||Wc(e,t,n,s,r):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):td(e,t,s,i))?(Zr(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Xr(e,t,s,i,r,t!=="value")):e._isVueCE&&(nd(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!He(s)))?Zr(e,ft(t),s,r,t):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Xr(e,t,s,i))};function td(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&ti(t)&&be(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 a=e.tagName;if(a==="IMG"||a==="VIDEO"||a==="CANVAS"||a==="SOURCE")return!1}return ti(t)&&He(n)?!1:t in e}function nd(e,t){const n=e._def.props;if(!n)return!1;const s=ft(t);return Array.isArray(n)?n.some(a=>ft(a)===s):Object.keys(n).some(a=>ft(a)===s)}const sd=["ctrl","shift","alt","meta"],ad={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)=>sd.some(n=>e[`${n}Key`]&&!t.includes(n))},Ys=(e,t)=>{if(!e)return e;const n=e._withMods||(e._withMods={}),s=t.join(".");return n[s]||(n[s]=((a,...r)=>{for(let i=0;i{const n=e._withKeys||(e._withKeys={}),s=t.join(".");return n[s]||(n[s]=(a=>{if(!("key"in a))return;const r=an(a.key);if(t.some(i=>i===r||rd[i]===r))return e(a)}))},od=tt({patchProp:ed},Nc);let ni;function ld(){return ni||(ni=mc(od))}const ud=((...e)=>{const t=ld().createApp(...e),{mount:n}=t;return t.mount=s=>{const a=dd(s);if(!a)return;const r=t._component;!be(r)&&!r.render&&!r.template&&(r.template=a.innerHTML),a.nodeType===1&&(a.textContent="");const i=n(a,!1,cd(a));return a instanceof Element&&(a.removeAttribute("v-cloak"),a.setAttribute("data-v-app","")),i},t});function cd(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function dd(e){return He(e)?document.querySelector(e):e}/*! - * pinia v2.3.1 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */let Zo;const Xs=e=>Zo=e,Qo=Symbol();function Oa(e){return e&&typeof e=="object"&&Object.prototype.toString.call(e)==="[object Object]"&&typeof e.toJSON!="function"}var Qn;(function(e){e.direct="direct",e.patchObject="patch object",e.patchFunction="patch function"})(Qn||(Qn={}));function fd(){const e=Ji(!0),t=e.run(()=>J({}));let n=[],s=[];const a=nr({install(r){Xs(a),a._a=r,r.provide(Qo,a),r.config.globalProperties.$pinia=a,s.forEach(i=>n.push(i)),s=[]},use(r){return this._a?n.push(r):s.push(r),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return a}const el=()=>{};function si(e,t,n,s=el){e.push(t);const a=()=>{const r=e.indexOf(t);r>-1&&(e.splice(r,1),s())};return!n&&Yi()&&Jl(a),a}function bn(e,...t){e.slice().forEach(n=>{n(...t)})}const pd=e=>e(),ai=Symbol(),pa=Symbol();function Fa(e,t){e instanceof Map&&t instanceof Map?t.forEach((n,s)=>e.set(s,n)):e instanceof Set&&t instanceof Set&&t.forEach(e.add,e);for(const n in t){if(!t.hasOwnProperty(n))continue;const s=t[n],a=e[n];Oa(a)&&Oa(s)&&e.hasOwnProperty(n)&&!Ue(s)&&!Gt(s)?e[n]=Fa(a,s):e[n]=s}return e}const vd=Symbol();function gd(e){return!Oa(e)||!e.hasOwnProperty(vd)}const{assign:en}=Object;function hd(e){return!!(Ue(e)&&e.effect)}function md(e,t,n,s){const{state:a,actions:r,getters:i}=t,o=n.state.value[e];let l;function u(){o||(n.state.value[e]=a?a():{});const c=yu(n.state.value[e]);return en(c,r,Object.keys(i||{}).reduce((d,f)=>(d[f]=nr(Q(()=>{Xs(n);const h=n._s.get(e);return i[f].call(h,h)})),d),{}))}return l=tl(e,u,t,n,s,!0),l}function tl(e,t,n={},s,a,r){let i;const o=en({actions:{}},n),l={deep:!0};let u,c,d=[],f=[],h;const g=s.state.value[e];!r&&!g&&(s.state.value[e]={});let y;function m(A){let R;u=c=!1,typeof A=="function"?(A(s.state.value[e]),R={type:Qn.patchFunction,storeId:e,events:h}):(Fa(s.state.value[e],A),R={type:Qn.patchObject,payload:A,storeId:e,events:h});const Z=y=Symbol();gn().then(()=>{y===Z&&(u=!0)}),c=!0,bn(d,R,s.state.value[e])}const P=r?function(){const{state:R}=n,Z=R?R():{};this.$patch(ue=>{en(ue,Z)})}:el;function _(){i.stop(),d=[],f=[],s._s.delete(e)}const S=(A,R="")=>{if(ai in A)return A[pa]=R,A;const Z=function(){Xs(s);const ue=Array.from(arguments),de=[],pe=[];function B(W){de.push(W)}function q(W){pe.push(W)}bn(f,{args:ue,name:Z[pa],store:F,after:B,onError:q});let X;try{X=A.apply(this&&this.$id===e?this:F,ue)}catch(W){throw bn(pe,W),W}return X instanceof Promise?X.then(W=>(bn(de,W),W)).catch(W=>(bn(pe,W),Promise.reject(W))):(bn(de,X),X)};return Z[ai]=!0,Z[pa]=R,Z},E={_p:s,$id:e,$onAction:si.bind(null,f),$patch:m,$reset:P,$subscribe(A,R={}){const Z=si(d,A,R.detached,()=>ue()),ue=i.run(()=>kt(()=>s.state.value[e],de=>{(R.flush==="sync"?c:u)&&A({storeId:e,type:Qn.direct,events:h},de)},en({},l,R)));return Z},$dispose:_},F=Yt(E);s._s.set(e,F);const T=(s._a&&s._a.runWithContext||pd)(()=>s._e.run(()=>(i=Ji()).run(()=>t({action:S}))));for(const A in T){const R=T[A];if(Ue(R)&&!hd(R)||Gt(R))r||(g&&gd(R)&&(Ue(R)?R.value=g[A]:Fa(R,g[A])),s.state.value[e][A]=R);else if(typeof R=="function"){const Z=S(R,A);T[A]=Z,o.actions[A]=R}}return en(F,T),en(Ae(F),T),Object.defineProperty(F,"$state",{get:()=>s.state.value[e],set:A=>{m(R=>{en(R,A)})}}),s._p.forEach(A=>{en(F,i.run(()=>A({store:F,app:s._a,pinia:s,options:o})))}),g&&r&&n.hydrate&&n.hydrate(F.$state,g),u=!0,c=!0,F}/*! #__NO_SIDE_EFFECTS__ */function hn(e,t,n){let s,a;const r=typeof t=="function";typeof e=="string"?(s=e,a=r?n:t):(a=e,s=e.id);function i(o,l){const u=Ru();return o=o||(u?mt(Qo,null):null),o&&Xs(o),o=Zo,o._s.has(s)||(r?tl(s,t,a,o):md(s,a,o)),o._s.get(s)}return i.$id=s,i}/*! - * vue-router v4.6.4 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */const Sn=typeof document<"u";function nl(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function yd(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&nl(e.default)}const xe=Object.assign;function va(e,t){const n={};for(const s in t){const a=t[s];n[s]=Ct(a)?a.map(e):e(a)}return n}const es=()=>{},Ct=Array.isArray;function ri(e,t){const n={};for(const s in e)n[s]=s in t?t[s]:e[s];return n}const sl=/#/g,_d=/&/g,bd=/\//g,wd=/=/g,Sd=/\?/g,al=/\+/g,kd=/%5B/g,Ad=/%5D/g,rl=/%5E/g,xd=/%60/g,il=/%7B/g,Cd=/%7C/g,ol=/%7D/g,Ed=/%20/g;function cr(e){return e==null?"":encodeURI(""+e).replace(Cd,"|").replace(kd,"[").replace(Ad,"]")}function Rd(e){return cr(e).replace(il,"{").replace(ol,"}").replace(rl,"^")}function Na(e){return cr(e).replace(al,"%2B").replace(Ed,"+").replace(sl,"%23").replace(_d,"%26").replace(xd,"`").replace(il,"{").replace(ol,"}").replace(rl,"^")}function $d(e){return Na(e).replace(wd,"%3D")}function Td(e){return cr(e).replace(sl,"%23").replace(Sd,"%3F")}function Pd(e){return Td(e).replace(bd,"%2F")}function os(e){if(e==null)return null;try{return decodeURIComponent(""+e)}catch{}return""+e}const Id=/\/$/,Dd=e=>e.replace(Id,"");function ga(e,t,n="/"){let s,a={},r="",i="";const o=t.indexOf("#");let l=t.indexOf("?");return l=o>=0&&l>o?-1:l,l>=0&&(s=t.slice(0,l),r=t.slice(l,o>0?o:t.length),a=e(r.slice(1))),o>=0&&(s=s||t.slice(0,o),i=t.slice(o,t.length)),s=Nd(s??t,n),{fullPath:s+r+i,path:s,query:a,hash:os(i)}}function Ld(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function ii(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Od(e,t,n){const s=t.matched.length-1,a=n.matched.length-1;return s>-1&&s===a&&Pn(t.matched[s],n.matched[a])&&ll(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Pn(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function ll(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!Fd(e[n],t[n]))return!1;return!0}function Fd(e,t){return Ct(e)?oi(e,t):Ct(t)?oi(t,e):(e==null?void 0:e.valueOf())===(t==null?void 0:t.valueOf())}function oi(e,t){return Ct(t)?e.length===t.length&&e.every((n,s)=>n===t[s]):e.length===1&&e[0]===t}function Nd(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),s=e.split("/"),a=s[s.length-1];(a===".."||a===".")&&s.push("");let r=n.length-1,i,o;for(i=0;i1&&r--;else break;return n.slice(0,r).join("/")+"/"+s.slice(i).join("/")}const Zt={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};let Ma=(function(e){return e.pop="pop",e.push="push",e})({}),ha=(function(e){return e.back="back",e.forward="forward",e.unknown="",e})({});function Md(e){if(!e)if(Sn){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Dd(e)}const Ud=/^[^#]+#/;function Bd(e,t){return e.replace(Ud,"#")+t}function jd(e,t){const n=document.documentElement.getBoundingClientRect(),s=e.getBoundingClientRect();return{behavior:t.behavior,left:s.left-n.left-(t.left||0),top:s.top-n.top-(t.top||0)}}const Zs=()=>({left:window.scrollX,top:window.scrollY});function Vd(e){let t;if("el"in e){const n=e.el,s=typeof n=="string"&&n.startsWith("#"),a=typeof n=="string"?s?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!a)return;t=jd(a,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 li(e,t){return(history.state?history.state.position-t:-1)+e}const Ua=new Map;function Hd(e,t){Ua.set(e,t)}function Gd(e){const t=Ua.get(e);return Ua.delete(e),t}function qd(e){return typeof e=="string"||e&&typeof e=="object"}function ul(e){return typeof e=="string"||typeof e=="symbol"}let Ge=(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 cl=Symbol("");Ge.MATCHER_NOT_FOUND+"",Ge.NAVIGATION_GUARD_REDIRECT+"",Ge.NAVIGATION_ABORTED+"",Ge.NAVIGATION_CANCELLED+"",Ge.NAVIGATION_DUPLICATED+"";function In(e,t){return xe(new Error,{type:e,[cl]:!0},t)}function Bt(e,t){return e instanceof Error&&cl in e&&(t==null||!!(e.type&t))}const zd=["params","query","hash"];function Kd(e){if(typeof e=="string")return e;if(e.path!=null)return e.path;const t={};for(const n of zd)n in e&&(t[n]=e[n]);return JSON.stringify(t,null,2)}function Wd(e){const t={};if(e===""||e==="?")return t;const n=(e[0]==="?"?e.slice(1):e).split("&");for(let s=0;sa&&Na(a)):[s&&Na(s)]).forEach(a=>{a!==void 0&&(t+=(t.length?"&":"")+n,a!=null&&(t+="="+a))})}return t}function Jd(e){const t={};for(const n in e){const s=e[n];s!==void 0&&(t[n]=Ct(s)?s.map(a=>a==null?null:""+a):s==null?s:""+s)}return t}const Yd=Symbol(""),ci=Symbol(""),Qs=Symbol(""),dr=Symbol(""),Ba=Symbol("");function Un(){let e=[];function t(s){return e.push(s),()=>{const a=e.indexOf(s);a>-1&&e.splice(a,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function nn(e,t,n,s,a,r=i=>i()){const i=s&&(s.enterCallbacks[a]=s.enterCallbacks[a]||[]);return()=>new Promise((o,l)=>{const u=f=>{f===!1?l(In(Ge.NAVIGATION_ABORTED,{from:n,to:t})):f instanceof Error?l(f):qd(f)?l(In(Ge.NAVIGATION_GUARD_REDIRECT,{from:t,to:f})):(i&&s.enterCallbacks[a]===i&&typeof f=="function"&&i.push(f),o())},c=r(()=>e.call(s&&s.instances[a],t,n,u));let d=Promise.resolve(c);e.length<3&&(d=d.then(u)),d.catch(f=>l(f))})}function ma(e,t,n,s,a=r=>r()){const r=[];for(const i of e)for(const o in i.components){let l=i.components[o];if(!(t!=="beforeRouteEnter"&&!i.instances[o]))if(nl(l)){const u=(l.__vccOpts||l)[t];u&&r.push(nn(u,n,s,i,o,a))}else{let u=l();r.push(()=>u.then(c=>{if(!c)throw new Error(`Couldn't resolve component "${o}" at "${i.path}"`);const d=yd(c)?c.default:c;i.mods[o]=c,i.components[o]=d;const f=(d.__vccOpts||d)[t];return f&&nn(f,n,s,i,o,a)()}))}}return r}function Xd(e,t){const n=[],s=[],a=[],r=Math.max(t.matched.length,e.matched.length);for(let i=0;iPn(u,o))?s.push(o):n.push(o));const l=e.matched[i];l&&(t.matched.find(u=>Pn(u,l))||a.push(l))}return[n,s,a]}/*! - * vue-router v4.6.4 - * (c) 2025 Eduardo San Martin Morote - * @license MIT - */let Zd=()=>location.protocol+"//"+location.host;function dl(e,t){const{pathname:n,search:s,hash:a}=t,r=e.indexOf("#");if(r>-1){let i=a.includes(e.slice(r))?e.slice(r).length:1,o=a.slice(i);return o[0]!=="/"&&(o="/"+o),ii(o,"")}return ii(n,e)+s+a}function Qd(e,t,n,s){let a=[],r=[],i=null;const o=({state:f})=>{const h=dl(e,location),g=n.value,y=t.value;let m=0;if(f){if(n.value=h,t.value=f,i&&i===g){i=null;return}m=y?f.position-y.position:0}else s(h);a.forEach(P=>{P(n.value,g,{delta:m,type:Ma.pop,direction:m?m>0?ha.forward:ha.back:ha.unknown})})};function l(){i=n.value}function u(f){a.push(f);const h=()=>{const g=a.indexOf(f);g>-1&&a.splice(g,1)};return r.push(h),h}function c(){if(document.visibilityState==="hidden"){const{history:f}=window;if(!f.state)return;f.replaceState(xe({},f.state,{scroll:Zs()}),"")}}function d(){for(const f of r)f();r=[],window.removeEventListener("popstate",o),window.removeEventListener("pagehide",c),document.removeEventListener("visibilitychange",c)}return window.addEventListener("popstate",o),window.addEventListener("pagehide",c),document.addEventListener("visibilitychange",c),{pauseListeners:l,listen:u,destroy:d}}function di(e,t,n,s=!1,a=!1){return{back:e,current:t,forward:n,replaced:s,position:window.history.length,scroll:a?Zs():null}}function ef(e){const{history:t,location:n}=window,s={value:dl(e,n)},a={value:t.state};a.value||r(s.value,{back:null,current:s.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:Zd()+e+l;try{t[c?"replaceState":"pushState"](u,"",f),a.value=u}catch(h){console.error(h),n[c?"replace":"assign"](f)}}function i(l,u){r(l,xe({},t.state,di(a.value.back,l,a.value.forward,!0),u,{position:a.value.position}),!0),s.value=l}function o(l,u){const c=xe({},a.value,t.state,{forward:l,scroll:Zs()});r(c.current,c,!0),r(l,xe({},di(s.value,l,null),{position:c.position+1},u),!1),s.value=l}return{location:s,state:a,push:o,replace:i}}function tf(e){e=Md(e);const t=ef(e),n=Qd(e,t.state,t.location,t.replace);function s(r,i=!0){i||n.pauseListeners(),history.go(r)}const a=xe({location:"",base:e,go:s,createHref:Bd.bind(null,e)},t,n);return Object.defineProperty(a,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(a,"state",{enumerable:!0,get:()=>t.state.value}),a}function nf(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),tf(e)}let fn=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.Group=2]="Group",e})({});var Je=(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})(Je||{});const sf={type:fn.Static,value:""},af=/[a-zA-Z0-9_]/;function rf(e){if(!e)return[[]];if(e==="/")return[[sf]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(h){throw new Error(`ERR (${n})/"${u}": ${h}`)}let n=Je.Static,s=n;const a=[];let r;function i(){r&&a.push(r),r=[]}let o=0,l,u="",c="";function d(){u&&(n===Je.Static?r.push({type:fn.Static,value:u}):n===Je.Param||n===Je.ParamRegExp||n===Je.ParamRegExpEnd?(r.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${u}) must be alone in its segment. eg: '/:ids+.`),r.push({type:fn.Param,value:u,regexp:c,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),u="")}function f(){u+=l}for(;ot.length?t.length===1&&t[0]===lt.Static+lt.Segment?1:-1:0}function fl(e,t){let n=0;const s=e.score,a=t.score;for(;n0&&t[t.length-1]<0}const df={strict:!1,end:!0,sensitive:!1};function ff(e,t,n){const s=uf(rf(e.path),n),a=xe(s,{record:e,parent:t,children:[],alias:[]});return t&&!a.record.aliasOf==!t.record.aliasOf&&t.children.push(a),a}function pf(e,t){const n=[],s=new Map;t=ri(df,t);function a(d){return s.get(d)}function r(d,f,h){const g=!h,y=gi(d);y.aliasOf=h&&h.record;const m=ri(t,d),P=[y];if("alias"in d){const E=typeof d.alias=="string"?[d.alias]:d.alias;for(const F of E)P.push(gi(xe({},y,{components:h?h.record.components:y.components,path:F,aliasOf:h?h.record:y})))}let _,S;for(const E of P){const{path:F}=E;if(f&&F[0]!=="/"){const D=f.record.path,T=D[D.length-1]==="/"?"":"/";E.path=f.record.path+(F&&T+F)}if(_=ff(E,f,m),h?h.alias.push(_):(S=S||_,S!==_&&S.alias.push(_),g&&d.name&&!hi(_)&&i(d.name)),pl(_)&&l(_),y.children){const D=y.children;for(let T=0;T{i(S)}:es}function i(d){if(ul(d)){const f=s.get(d);f&&(s.delete(d),n.splice(n.indexOf(f),1),f.children.forEach(i),f.alias.forEach(i))}else{const f=n.indexOf(d);f>-1&&(n.splice(f,1),d.record.name&&s.delete(d.record.name),d.children.forEach(i),d.alias.forEach(i))}}function o(){return n}function l(d){const f=hf(d,n);n.splice(f,0,d),d.record.name&&!hi(d)&&s.set(d.record.name,d)}function u(d,f){let h,g={},y,m;if("name"in d&&d.name){if(h=s.get(d.name),!h)throw In(Ge.MATCHER_NOT_FOUND,{location:d});m=h.record.name,g=xe(vi(f.params,h.keys.filter(S=>!S.optional).concat(h.parent?h.parent.keys.filter(S=>S.optional):[]).map(S=>S.name)),d.params&&vi(d.params,h.keys.map(S=>S.name))),y=h.stringify(g)}else if(d.path!=null)y=d.path,h=n.find(S=>S.re.test(y)),h&&(g=h.parse(y),m=h.record.name);else{if(h=f.name?s.get(f.name):n.find(S=>S.re.test(f.path)),!h)throw In(Ge.MATCHER_NOT_FOUND,{location:d,currentLocation:f});m=h.record.name,g=xe({},f.params,d.params),y=h.stringify(g)}const P=[];let _=h;for(;_;)P.unshift(_.record),_=_.parent;return{name:m,path:y,params:g,matched:P,meta:gf(P)}}e.forEach(d=>r(d));function c(){n.length=0,s.clear()}return{addRoute:r,resolve:u,removeRoute:i,clearRoutes:c,getRoutes:o,getRecordMatcher:a}}function vi(e,t){const n={};for(const s of t)s in e&&(n[s]=e[s]);return n}function gi(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:vf(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 vf(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const s in e.components)t[s]=typeof n=="object"?n[s]:n;return t}function hi(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function gf(e){return e.reduce((t,n)=>xe(t,n.meta),{})}function hf(e,t){let n=0,s=t.length;for(;n!==s;){const r=n+s>>1;fl(e,t[r])<0?s=r:n=r+1}const a=mf(e);return a&&(s=t.lastIndexOf(a,s-1)),s}function mf(e){let t=e;for(;t=t.parent;)if(pl(t)&&fl(e,t)===0)return t}function pl({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function mi(e){const t=mt(Qs),n=mt(dr),s=Q(()=>{const l=p(e.to);return t.resolve(l)}),a=Q(()=>{const{matched:l}=s.value,{length:u}=l,c=l[u-1],d=n.matched;if(!c||!d.length)return-1;const f=d.findIndex(Pn.bind(null,c));if(f>-1)return f;const h=yi(l[u-2]);return u>1&&yi(c)===h&&d[d.length-1].path!==h?d.findIndex(Pn.bind(null,l[u-2])):f}),r=Q(()=>a.value>-1&&Sf(n.params,s.value.params)),i=Q(()=>a.value>-1&&a.value===n.matched.length-1&&ll(n.params,s.value.params));function o(l={}){if(wf(l)){const u=t[p(e.replace)?"replace":"push"](p(e.to)).catch(es);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>u),u}return Promise.resolve()}return{route:s,href:Q(()=>s.value.href),isActive:r,isExactActive:i,navigate:o}}function yf(e){return e.length===1?e[0]:e}const _f=qe({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:mi,setup(e,{slots:t}){const n=Yt(mi(e)),{options:s}=mt(Qs),a=Q(()=>({[_i(e.activeClass,s.linkActiveClass,"router-link-active")]:n.isActive,[_i(e.exactActiveClass,s.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const r=t.default&&yf(t.default(n));return e.custom?r:V("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:a.value},r)}}}),bf=_f;function wf(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 Sf(e,t){for(const n in t){const s=t[n],a=e[n];if(typeof s=="string"){if(s!==a)return!1}else if(!Ct(a)||a.length!==s.length||s.some((r,i)=>r.valueOf()!==a[i].valueOf()))return!1}return!0}function yi(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const _i=(e,t,n)=>e??t??n,kf=qe({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const s=mt(Ba),a=Q(()=>e.route||s.value),r=mt(ci,0),i=Q(()=>{let u=p(r);const{matched:c}=a.value;let d;for(;(d=c[u])&&!d.components;)u++;return u}),o=Q(()=>a.value.matched[i.value]);Jn(ci,Q(()=>i.value+1)),Jn(Yd,o),Jn(Ba,a);const l=J();return kt(()=>[l.value,o.value,e.name],([u,c,d],[f,h,g])=>{c&&(c.instances[d]=u,h&&h!==c&&u&&u===f&&(c.leaveGuards.size||(c.leaveGuards=h.leaveGuards),c.updateGuards.size||(c.updateGuards=h.updateGuards))),u&&c&&(!h||!Pn(c,h)||!f)&&(c.enterCallbacks[d]||[]).forEach(y=>y(u))},{flush:"post"}),()=>{const u=a.value,c=e.name,d=o.value,f=d&&d.components[c];if(!f)return bi(n.default,{Component:f,route:u});const h=d.props[c],g=h?h===!0?u.params:typeof h=="function"?h(u):h:null,m=V(f,xe({},g,t,{onVnodeUnmounted:P=>{P.component.isUnmounted&&(d.instances[c]=null)},ref:l}));return bi(n.default,{Component:m,route:u})||m}}});function bi(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const vl=kf;function Af(e){const t=pf(e.routes,e),n=e.parseQuery||Wd,s=e.stringifyQuery||ui,a=e.history,r=Un(),i=Un(),o=Un(),l=gu(Zt);let u=Zt;Sn&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=va.bind(null,M=>""+M),d=va.bind(null,Pd),f=va.bind(null,os);function h(M,se){let $,x;return ul(M)?($=t.getRecordMatcher(M),x=se):x=M,t.addRoute(x,$)}function g(M){const se=t.getRecordMatcher(M);se&&t.removeRoute(se)}function y(){return t.getRoutes().map(M=>M.record)}function m(M){return!!t.getRecordMatcher(M)}function P(M,se){if(se=xe({},se||l.value),typeof M=="string"){const C=ga(n,M,se.path),j=t.resolve({path:C.path},se),z=a.createHref(C.fullPath);return xe(C,j,{params:f(j.params),hash:os(C.hash),redirectedFrom:void 0,href:z})}let $;if(M.path!=null)$=xe({},M,{path:ga(n,M.path,se.path).path});else{const C=xe({},M.params);for(const j in C)C[j]==null&&delete C[j];$=xe({},M,{params:d(C)}),se.params=d(se.params)}const x=t.resolve($,se),ee=M.hash||"";x.params=c(f(x.params));const v=Ld(s,xe({},M,{hash:Rd(ee),path:x.path})),b=a.createHref(v);return xe({fullPath:v,hash:ee,query:s===ui?Jd(M.query):M.query||{}},x,{redirectedFrom:void 0,href:b})}function _(M){return typeof M=="string"?ga(n,M,l.value.path):xe({},M)}function S(M,se){if(u!==M)return In(Ge.NAVIGATION_CANCELLED,{from:se,to:M})}function E(M){return T(M)}function F(M){return E(xe(_(M),{replace:!0}))}function D(M,se){const $=M.matched[M.matched.length-1];if($&&$.redirect){const{redirect:x}=$;let ee=typeof x=="function"?x(M,se):x;return typeof ee=="string"&&(ee=ee.includes("?")||ee.includes("#")?ee=_(ee):{path:ee},ee.params={}),xe({query:M.query,hash:M.hash,params:ee.path!=null?{}:M.params},ee)}}function T(M,se){const $=u=P(M),x=l.value,ee=M.state,v=M.force,b=M.replace===!0,C=D($,x);if(C)return T(xe(_(C),{state:typeof C=="object"?xe({},ee,C.state):ee,force:v,replace:b}),se||$);const j=$;j.redirectedFrom=se;let z;return!v&&Od(s,x,$)&&(z=In(Ge.NAVIGATION_DUPLICATED,{to:j,from:x}),Ee(x,x,!0,!1)),(z?Promise.resolve(z):Z(j,x)).catch(H=>Bt(H)?Bt(H,Ge.NAVIGATION_GUARD_REDIRECT)?H:Se(H):te(H,j,x)).then(H=>{if(H){if(Bt(H,Ge.NAVIGATION_GUARD_REDIRECT))return T(xe({replace:b},_(H.to),{state:typeof H.to=="object"?xe({},ee,H.to.state):ee,force:v}),se||j)}else H=de(j,x,!0,b,ee);return ue(j,x,H),H})}function A(M,se){const $=S(M,se);return $?Promise.reject($):Promise.resolve()}function R(M){const se=je.values().next().value;return se&&typeof se.runWithContext=="function"?se.runWithContext(M):M()}function Z(M,se){let $;const[x,ee,v]=Xd(M,se);$=ma(x.reverse(),"beforeRouteLeave",M,se);for(const C of x)C.leaveGuards.forEach(j=>{$.push(nn(j,M,se))});const b=A.bind(null,M,se);return $.push(b),Te($).then(()=>{$=[];for(const C of r.list())$.push(nn(C,M,se));return $.push(b),Te($)}).then(()=>{$=ma(ee,"beforeRouteUpdate",M,se);for(const C of ee)C.updateGuards.forEach(j=>{$.push(nn(j,M,se))});return $.push(b),Te($)}).then(()=>{$=[];for(const C of v)if(C.beforeEnter)if(Ct(C.beforeEnter))for(const j of C.beforeEnter)$.push(nn(j,M,se));else $.push(nn(C.beforeEnter,M,se));return $.push(b),Te($)}).then(()=>(M.matched.forEach(C=>C.enterCallbacks={}),$=ma(v,"beforeRouteEnter",M,se,R),$.push(b),Te($))).then(()=>{$=[];for(const C of i.list())$.push(nn(C,M,se));return $.push(b),Te($)}).catch(C=>Bt(C,Ge.NAVIGATION_CANCELLED)?C:Promise.reject(C))}function ue(M,se,$){o.list().forEach(x=>R(()=>x(M,se,$)))}function de(M,se,$,x,ee){const v=S(M,se);if(v)return v;const b=se===Zt,C=Sn?history.state:{};$&&(x||b?a.replace(M.fullPath,xe({scroll:b&&C&&C.scroll},ee)):a.push(M.fullPath,ee)),l.value=M,Ee(M,se,$,b),Se()}let pe;function B(){pe||(pe=a.listen((M,se,$)=>{if(!Ve.listening)return;const x=P(M),ee=D(x,Ve.currentRoute.value);if(ee){T(xe(ee,{replace:!0,force:!0}),x).catch(es);return}u=x;const v=l.value;Sn&&Hd(li(v.fullPath,$.delta),Zs()),Z(x,v).catch(b=>Bt(b,Ge.NAVIGATION_ABORTED|Ge.NAVIGATION_CANCELLED)?b:Bt(b,Ge.NAVIGATION_GUARD_REDIRECT)?(T(xe(_(b.to),{force:!0}),x).then(C=>{Bt(C,Ge.NAVIGATION_ABORTED|Ge.NAVIGATION_DUPLICATED)&&!$.delta&&$.type===Ma.pop&&a.go(-1,!1)}).catch(es),Promise.reject()):($.delta&&a.go(-$.delta,!1),te(b,x,v))).then(b=>{b=b||de(x,v,!1),b&&($.delta&&!Bt(b,Ge.NAVIGATION_CANCELLED)?a.go(-$.delta,!1):$.type===Ma.pop&&Bt(b,Ge.NAVIGATION_ABORTED|Ge.NAVIGATION_DUPLICATED)&&a.go(-1,!1)),ue(x,v,b)}).catch(es)}))}let q=Un(),X=Un(),W;function te(M,se,$){Se(M);const x=X.list();return x.length?x.forEach(ee=>ee(M,se,$)):console.error(M),Promise.reject(M)}function ve(){return W&&l.value!==Zt?Promise.resolve():new Promise((M,se)=>{q.add([M,se])})}function Se(M){return W||(W=!M,B(),q.list().forEach(([se,$])=>M?$(M):se()),q.reset()),M}function Ee(M,se,$,x){const{scrollBehavior:ee}=e;if(!Sn||!ee)return Promise.resolve();const v=!$&&Gd(li(M.fullPath,0))||(x||!$)&&history.state&&history.state.scroll||null;return gn().then(()=>ee(M,se,v)).then(b=>b&&Vd(b)).catch(b=>te(b,M,se))}const we=M=>a.go(M);let Me;const je=new Set,Ve={currentRoute:l,listening:!0,addRoute:h,removeRoute:g,clearRoutes:t.clearRoutes,hasRoute:m,getRoutes:y,resolve:P,options:e,push:E,replace:F,go:we,back:()=>we(-1),forward:()=>we(1),beforeEach:r.add,beforeResolve:i.add,afterEach:o.add,onError:X.add,isReady:ve,install(M){M.component("RouterLink",bf),M.component("RouterView",vl),M.config.globalProperties.$router=Ve,Object.defineProperty(M.config.globalProperties,"$route",{enumerable:!0,get:()=>p(l)}),Sn&&!Me&&l.value===Zt&&(Me=!0,E(a.location).catch(x=>{}));const se={};for(const x in Zt)Object.defineProperty(se,x,{get:()=>l.value[x],enumerable:!0});M.provide(Qs,Ve),M.provide(dr,fo(se)),M.provide(Ba,l);const $=M.unmount;je.add(M),M.unmount=function(){je.delete(M),je.size<1&&(u=Zt,pe&&pe(),pe=null,l.value=Zt,Me=!1,W=!1),$()}}};function Te(M){return M.reduce((se,$)=>se.then(()=>R($)),Promise.resolve())}return Ve}function on(){return mt(Qs)}function ea(e){return mt(dr)}var xf={},Cf=new Set(["primary","secondary","accent","success","warning","danger","error","info"]);function Oe(...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 On(e,t="primary"){return Cf.has(e)?e:t}function Ye(e,t=""){if(!e)return null;const n=e.includes("ph ")||e.startsWith("ph-");n||typeof process<"u"&&xf&&console.warn(`[gnexus-ui-kit] Icon "${e}" is missing the required "ph-" prefix. Use "ph-${e}" instead.`);const s=n?e:`ph-${e}`;return V("i",{class:Oe("ph",s,t),"aria-hidden":"true"})}function gl(e){const t=e.target;return t.type==="checkbox"?t.checked:t.value}var Ef=["a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","[tabindex]:not([tabindex='-1'])"].join(",");function Rf(e,t){if(e.key!=="Tab"||!t)return;const n=[...t.querySelectorAll(Ef)].filter(r=>!r.hasAttribute("disabled")&&r.offsetParent!==null);if(!n.length){e.preventDefault(),t.focus();return}const s=n[0],a=n[n.length-1];e.shiftKey&&document.activeElement===s?(e.preventDefault(),a.focus()):!e.shiftKey&&document.activeElement===a&&(e.preventDefault(),s.focus())}var $f=qe({name:"GnActionCard",props:{kicker:{type:String,default:""},title:{type:String,required:!0},text:{type:String,default:""}},setup(e,{slots:t}){return()=>{var n,s,a;return V("article",{class:"card action-card"},[V("div",{class:"card-content"},[(e.kicker||t.kicker)&&V("span",{class:"action-card-kicker"},((n=t.kicker)==null?void 0:n.call(t))||e.kicker),V("h3",{class:"action-card-title"},((s=t.title)==null?void 0:s.call(t))||e.title),(e.text||t.default)&&V("p",{class:"action-card-text"},((a=t.default)==null?void 0:a.call(t))||e.text),t.actions&&V("div",{class:"action-card-actions"},t.actions())])])}}}),Ze=qe({name:"GnAlert",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},role:{type:String,default:"status"}},setup(e,{attrs:t,slots:n}){return()=>{var s;const a=On(e.variant);return V("div",{...t,role:e.role,class:Oe("alert",`alert-${a}`,t.class)},(s=n.default)==null?void 0:s.call(n))}}}),Tf=qe({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=On(e.variant);return V("span",{...t,class:Oe("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?V("img",{src:e.src,alt:e.alt}):Ye(e.icon)||e.initials,e.status&&V("span",{class:"avatar-status","aria-hidden":"true"})])}}}),_e=qe({name:"GnBadge",inheritAttrs:!1,props:{variant:{type:String,default:"primary"},outline:{type:Boolean,default:!1}},setup(e,{attrs:t,slots:n}){return()=>{var s;const a=On(e.variant);return V("span",{...t,class:Oe("badge",e.outline&&a==="primary"?"badge-primary-outline":`badge-${a}`,t.class)},(s=n.default)==null?void 0:s.call(n))}}}),ge=qe({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 s;const a=!!(e.icon||e.loading),r=On(e.variant);return V("button",{...t,type:e.type,disabled:e.disabled||e.loading,class:Oe("btn",`btn-${r}`,{"btn-small":e.size==="sm","btn-large":e.size==="lg","with-icon":a,"loading-state":e.loading},t.class)},[e.loading?Ye("ph-bold ph-spinner"):Ye(e.icon),(s=n.default)==null?void 0:s.call(n)])}}}),wi=qe({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:s}){return()=>{var a,r,i,o;const l=e.clickable?"button":"span",u=e.variant?On(e.variant):"",c=(i=(r=(a=s.default)==null?void 0:a.call(s))==null?void 0:r[0])==null?void 0:i.children;return V(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:Oe("chip",u&&`chip-${u}`,{"chip-selected":e.selected,"chip-disabled":e.disabled},t.class)},[Ye(e.icon),(o=s.default)==null?void 0:o.call(s),e.removable&&V("button",{class:"chip-remove",type:"button","aria-label":c?`Remove ${c}`:"Remove",onClick:d=>{d.stopPropagation(),n("remove")}},[Ye("ph-x")])])}}}),Pf=0,ut=qe({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 s=`gn-modal-title-${++Pf}`,a=J(null),r=J(!1),i=J(!1);let o=null,l=null;const u=()=>{t("update:open",!1),t("close")},c=f=>{f.key==="Escape"?(f.preventDefault(),u()):Rf(f,a.value)},d=()=>{gn(()=>{var f;(f=a.value)==null||f.focus()})};return kt(()=>e.open,f=>{var h;f?(i.value=!0,r.value=!0,gn(()=>{requestAnimationFrame(()=>{i.value=!1})}),o=document.activeElement,document.addEventListener("keydown",c),d()):(i.value=!0,document.removeEventListener("keydown",c),(h=o==null?void 0:o.focus)==null||h.call(o),o=null,l=window.setTimeout(()=>{r.value=!1,i.value=!1},300))},{flush:"post"}),qs(()=>{document.removeEventListener("keydown",c),window.clearTimeout(l)}),()=>{var f,h,g;return r.value?V(Fu,{to:"body"},[V("div",{class:Oe("modal",i.value?"a-hide":"a-show"),"aria-hidden":"false"},[V("div",{class:"modal-backdrop",onClick:()=>e.closeOnBackdrop&&u()}),V("div",{ref:a,class:"modal-dialog",role:"dialog","aria-modal":"true","aria-labelledby":s,tabindex:"-1"},[V("header",{class:"modal-header"},[V("h4",{class:"modal-title",id:s},((f=n.title)==null?void 0:f.call(n))||e.title),V("button",{class:"btn-icon modal-close",type:"button","aria-label":"Close",onClick:u},[Ye("ph-x")])]),V("div",{class:"modal-panel"},[V("div",{class:"modal-body"},(h=n.default)==null?void 0:h.call(n)),(n.footer||n.actions)&&V("footer",{class:"modal-footer"},[(g=n.footer)==null?void 0:g.call(n),n.actions&&V("div",{class:"actions"},n.actions({close:u}))])])])])]):null}}}),If=qe({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=J(!1);let s=null;const a=async()=>{try{await navigator.clipboard.writeText(e.text)}catch{const i=document.createElement("textarea");i.value=e.text,i.style.position="fixed",i.style.opacity="0",document.body.appendChild(i),i.select(),document.execCommand("copy"),document.body.removeChild(i)}n.value=!0,window.clearTimeout(s),s=window.setTimeout(()=>{n.value=!1},e.duration),t("copy",e.text)};return()=>V("button",{class:Oe("btn-icon",{"btn-icon-sm":e.size==="sm"}),type:"button","aria-label":e.label,onClick:a},[Ye(n.value?e.successIcon:e.icon)])}}),Df=qe({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 s=J(!1),a=J(null),r=()=>{s.value=!1,document.removeEventListener("click",i),document.removeEventListener("keydown",o)},i=c=>{a.value&&!a.value.contains(c.target)&&r()},o=c=>{c.key==="Escape"&&(c.preventDefault(),r())},l=()=>{s.value=!s.value,s.value?(setTimeout(()=>document.addEventListener("click",i),0),document.addEventListener("keydown",o)):r()},u=c=>{var d;c.disabled||((d=c.onSelect)==null||d.call(c,c),t("select",c),r())};return qs(r),()=>{var c,d;return V("div",{ref:a,class:Oe("dropdown",{"is-open":s.value})},[((c=n.trigger)==null?void 0:c.call(n,{open:s.value,toggle:l}))||V(ge,{variant:e.variant,icon:e.icon,"aria-expanded":s.value?"true":"false",onClick:l},()=>e.label),V("div",{class:"dropdown-menu",role:"menu"},((d=n.default)==null?void 0:d.call(n,{close:r}))||e.items.map(f=>V("button",{class:Oe("dropdown-item",f.danger&&"dropdown-item-danger"),type:"button",role:"menuitem",disabled:f.disabled,onClick:()=>u(f)},[Ye(f.icon),f.label])))])}}}),Lf=qe({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 s,a;return V("div",{...t,class:Oe("empty-state",e.variant&&`empty-state-${e.variant}`,t.class)},[V("div",{class:"empty-state-icon"},[Ye(e.icon)]),V("h3",{class:"empty-state-title"},((s=n.title)==null?void 0:s.call(n))||e.title),(e.text||n.default)&&V("p",{class:"empty-state-text"},((a=n.default)==null?void 0:a.call(n))||e.text),n.actions&&V("div",{class:"empty-state-actions"},n.actions())])}}}),At=qe({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 s=V("input",{...t,type:e.type,value:e.modelValue,class:Oe(e.bare?"":"input",t.class),onInput:a=>n("update:modelValue",gl(a))});return e.bare?s:V("div",{class:"form-group"},[V("label",{class:Oe("label",e.state)},[e.label,Ye(e.icon),s]),e.help&&V("div",{class:Oe("input-info",e.state==="error"&&"error")},e.help)])}}}),hl=qe({name:"GnLoader",inheritAttrs:!1,props:{circle:{type:Boolean,default:!1},label:{type:String,default:"Loading"}},setup(e,{attrs:t}){return()=>e.circle?V("div",{...t,class:Oe("circle-loader",t.class)},[Ye("ph-bold ph-spinner normalize"),e.label]):V("div",{...t,class:Oe("loader",t.class),role:"status","aria-label":e.label})}});function Of(){var e;const t=Js();return((e=t==null?void 0:t.proxy)==null?void 0:e.$router)||null}function Ff(){var e;const t=Js();return((e=t==null?void 0:t.proxy)==null?void 0:e.$route)||null}function Nf(e,t,n="prefix"){if(!e)return!1;const s=e.value||e;return typeof t=="string"?n==="exact"?s.path===t:s.path===t||s.path.startsWith(t+"/"):t.path?n==="exact"?s.path===t.path:s.path===t.path||s.path.startsWith(t.path+"/"):t.name?s.name===t.name:!1}var Mf=qe({name:"GnNavList",inheritAttrs:!1,props:{items:{type:Array,default:()=>[]},activeMatch:{type:String,default:"prefix"}},emits:["select"],setup(e,{attrs:t,emit:n,slots:s}){const a=Of(),r=Ff(),i=!!(a&&r),o=u=>{if(u){if(typeof u=="string")return u;if(u.path)return u.path}},l=Q(()=>e.items.map(u=>{const c=!!u.to,d=c?i?a.resolve(u.to).href:o(u.to):u.href,f=c&&i?Nf(r,u.to,e.activeMatch):!!u.active;return{...u,resolvedHref:d,isActive:f,hasTo:c}}));return()=>V("ul",{...t,class:Oe("list list-nav",t.class)},l.value.map(u=>{var c,d;return V("li",{class:Oe("list-item",{"list-item-active":u.isActive})},[V(u.resolvedHref?"a":"button",{class:"list-action",href:u.resolvedHref,type:u.resolvedHref?void 0:"button",onClick:f=>{var h;u.hasTo&&i&&(f.preventDefault(),a.push(u.to)),(h=u.onSelect)==null||h.call(u,u,f),n("select",u)}},[V("span",{class:"list-label"},[Ye(u.icon),((c=s.label)==null?void 0:c.call(s,{item:u}))||u.label]),(u.meta||s.meta)&&V("span",{class:"list-meta"},((d=s.meta)==null?void 0:d.call(s,{item:u}))||u.meta)])])}))}}),Uf=0,Bf=qe({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 s=J(!1),a=`gn-nav-drawer-${++Uf}`,r=J(null);let i=null;const o=()=>{s.value=!1},l=()=>{s.value=!s.value},u=c=>{c.key==="Escape"&&(c.preventDefault(),o())};return kt(s,c=>{var d;c?(i=document.activeElement,document.body.classList.add("nav-drawer-open"),document.addEventListener("keydown",u),gn(()=>{var f;return(f=r.value)==null?void 0:f.focus()})):(document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u),(d=i==null?void 0:i.focus)==null||d.call(i),i=null)}),qs(()=>{document.body.classList.remove("nav-drawer-open"),document.removeEventListener("keydown",u)}),()=>{var c,d,f,h,g,y,m;return[V("header",{class:"nav-topbar"},[V("button",{class:"nav-topbar-toggle",type:"button","aria-controls":a,"aria-expanded":s.value?"true":"false",onClick:l},[Ye("ph-sidebar-simple"),V("span",{},"Menu")]),V("div",{class:"nav-topbar-brand"},[e.logoSrc&&V("img",{src:e.logoSrc,alt:"","aria-hidden":"true"}),V("span",{},((c=n.brand)==null?void 0:c.call(n))||e.brand)]),V("div",{class:"nav-topbar-current"},((d=n.current)==null?void 0:d.call(n))||e.current)]),V("div",{class:"nav-drawer-backdrop",onClick:o}),V("aside",{ref:r,class:["nav-drawer",{"is-open":s.value}],id:a,"aria-label":"Navigation","aria-hidden":s.value?"false":"true",tabindex:"-1"},[V("header",{class:"nav-drawer-header"},[V("div",{},[V("div",{class:"nav-drawer-title"},((f=n.title)==null?void 0:f.call(n))||e.title),V("div",{class:"nav-drawer-subtitle"},((h=n.subtitle)==null?void 0:h.call(n))||e.subtitle)]),V("button",{class:"nav-drawer-close",type:"button","aria-label":"Close navigation",onClick:o},[Ye("ph-x")])]),V("nav",{class:"nav-drawer-body"},[((g=n.default)==null?void 0:g.call(n,{close:o}))||V(Mf,{items:e.items,activeMatch:e.activeMatch,onSelect:P=>{t("select",P),o()}})]),(n.footer||e.footerLeft||e.footerRight)&&V("footer",{class:"nav-drawer-footer"},((y=n.footer)==null?void 0:y.call(n))||[V("span",{},e.footerLeft),V("span",{},e.footerRight)])]),(m=n.content)==null?void 0:m.call(n)]}}}),Et=qe({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 s,a,r;return V("header",{...t,class:Oe("page-header",{"page-header-compact":e.compact,"page-header-accent":e.accent},t.class)},[V("div",{class:"page-header-content"},[(e.kicker||n.kicker)&&V("div",{class:"page-header-kicker"},((s=n.kicker)==null?void 0:s.call(n))||e.kicker),V("h1",{class:"page-header-title"},((a=n.title)==null?void 0:a.call(n))||e.title),(e.subtitle||n.subtitle)&&V("p",{class:"page-header-subtitle"},((r=n.subtitle)==null?void 0:r.call(n))||e.subtitle),n.meta&&V("div",{class:"page-header-meta"},n.meta())]),n.actions&&V("div",{class:"page-header-actions"},n.actions())])}}}),fr=qe({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:s}){const a=()=>e.options.map(r=>{const i=typeof r=="object"?r.value:r,o=typeof r=="object"?r.label:r;return V("option",{value:i},o)});return()=>{var r;return V("div",{class:"form-group"},[V("label",{class:Oe("label",e.state)},[e.label,Ye(e.icon),V("div",{class:"select-wrap"},[V("select",{...t,value:e.modelValue,class:Oe("input select",t.class),onChange:i=>n("update:modelValue",gl(i))},((r=s.default)==null?void 0:r.call(s))||a())])]),e.help&&V("div",{class:Oe("input-info",e.state==="error"&&"error")},e.help)])}}}),jf=qe({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:s}){return()=>{var a;return V("label",{class:Oe("switch",t.class)},[V("input",{...t,type:"checkbox",checked:e.modelValue,disabled:e.disabled,onChange:r=>n("update:modelValue",r.target.checked)}),V("span",{class:"switch-control","aria-hidden":"true"}),V("span",{class:"switch-label"},((a=s.default)==null?void 0:a.call(s))||e.label)])}}}),Dn=qe({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 s;return V("div",{class:"table-wrapper"},[V("table",{class:Oe("table data-list",{"table-empty":!e.rows.length},t.class)},[e.caption&&V("caption",{class:"table-caption"},e.caption),V("thead",{class:"table-head"},[V("tr",{class:"table-row"},e.columns.map(a=>V("th",{scope:"col"},a.label)))]),V("tbody",{class:"table-body"},e.rows.length?e.rows.map(a=>V("tr",{class:"table-row"},e.columns.map(r=>{var i;const o=`cell-${r.key}`;return V("td",{},((i=n[o])==null?void 0:i.call(n,{row:a,column:r,value:a[r.key]}))||a[r.key])}))):V("tr",{},[V("td",{class:"is-empty",colspan:e.columns.length},((s=n.empty)==null?void 0:s.call(n))||e.emptyText)]))])])}}}),ml=Symbol("gnexus-ui-kit-toast"),Si={info:"ph-info",success:"ph-check-circle",warning:"ph-warning",danger:"ph-warning-octagon",error:"ph-warning-octagon",primary:"ph-info",secondary:"ph-info"},Vf=qe({name:"GnToastProvider",props:{lifetime:{type:Number,default:4e3}},setup(e,{slots:t,expose:n}){const s=J(null),a=J(!1),r=J(!1);let i=null,o=null,l=null;const u=J(100),c=()=>{window.clearTimeout(o),window.clearInterval(l),a.value=!0,r.value=!1,o=window.setTimeout(()=>{s.value=null,a.value=!1,u.value=100,window.clearTimeout(i),i=null},300)},d=()=>{window.clearTimeout(o),window.clearTimeout(i),window.clearInterval(l),a.value=!1,r.value=!1,u.value=100,s.value=null},f=y=>{window.clearTimeout(o),window.clearInterval(l),a.value=!1,r.value=!1,u.value=100;const m=On(y.variant||y.type||"info","info"),P=y.lifetime!==void 0?y.lifetime:e.lifetime;if(s.value={id:Date.now(),variant:m==="error"?"danger":m,title:y.title||"",text:y.text||y.message||"",icon:y.icon||Si[m]||Si.info,lifetime:P},window.clearTimeout(i),P!==0){const S=P/100;u.value=100,l=window.setInterval(()=>{u.value-=100/S,u.value<=0&&window.clearInterval(l)},100),i=window.setTimeout(c,P)}gn(()=>{requestAnimationFrame(()=>{r.value=!0})})},h={show:f,close:d,info:y=>f({...y,variant:"info"}),success:y=>f({...y,variant:"success"}),warning:y=>f({...y,variant:"warning"}),danger:y=>f({...y,variant:"danger"}),error:y=>f({...y,variant:"danger"})};Jn(ml,h),n(h);const g=()=>a.value?"a-hide":r.value?"a-show":"";return()=>{var y;return[(y=t.default)==null?void 0:y.call(t),s.value&&V("div",{class:Oe("toast",g(),`toast-${s.value.variant}`),role:"alert"},[V("div",{class:"toast-content"},[V("div",{class:"toast-header"},[Ye(s.value.icon),s.value.title]),s.value.text&&V("p",{class:"toast-text"},s.value.text)]),V("button",{class:"btn-icon toast-close",type:"button","aria-label":"Close",onClick:c},[Ye("ph-x")]),s.value.lifetime!==0&&V("div",{class:"toast-progress"},[V("div",{class:"toast-progress-bar",style:{transform:`scaleX(${Math.max(0,u.value/100)})`}})])])]}}}),Hf=qe({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))||V(Tf,{...e.avatar,size:e.compact?"sm":"md"})},s=()=>V("span",{class:"identity"},[n(),V("span",{class:"identity-content"},[V("span",{class:"identity-title"},e.name),e.email&&V("span",{class:"identity-meta"},e.email)])]),a=()=>t.actions?t.actions():e.actions.length?V("div",{class:"user-card-actions"},e.actions.map(r=>{if(e.compact)return V("button",{class:"btn-icon",type:"button","aria-label":r.label,onClick:r.onClick},[Ye(r.icon)]);const i=!!r.icon,o=Oe("btn","btn-small",{[`btn-${r.variant}`]:r.variant,"btn-secondary":!r.variant,"with-icon":i});return V("button",{class:o,type:"button",onClick:r.onClick},[i&&Ye(r.icon),r.label])})):null;return()=>{const r=Oe("card","user-card",{"user-card-compact":e.compact}),i=[];e.href?i.push(V("a",{class:"profile-identity",href:e.href,target:"_blank",rel:"noopener noreferrer"},[s()])):i.push(s()),!e.compact&&e.role&&i.push(V("span",{class:"user-card-role"},e.role)),t.default&&!e.compact&&i.push(V("div",{class:"user-card-extra"},t.default()));const o=a();return o&&i.push(o),V("article",{class:r},[V("div",{class:"user-card-body"},i)])}}});function mn(){const e=mt(ml,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 Is="shserv_access_token",Ds="shserv_expires_at";let Rn=null;function yl(e,t=null){Rn=e||null;try{if(Rn){if(localStorage.setItem(Is,Rn),t!=null&&t>0){const n=Date.now()+t*1e3;localStorage.setItem(Ds,String(n))}}else localStorage.removeItem(Is),localStorage.removeItem(Ds)}catch{}}function _l(){if(Rn)return Rn;try{return localStorage.getItem(Is)||null}catch{return null}}function Gf(){try{const e=localStorage.getItem(Ds);return e?Number(e):null}catch{return null}}function kn(){Rn=null;try{localStorage.removeItem(Is),localStorage.removeItem(Ds)}catch{}}const qf="modulepreload",zf=function(e){return"/"+e},ki={},bl=function(t,n,s){let a=Promise.resolve();if(n&&n.length>0){let i=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 o=document.querySelector("meta[property=csp-nonce]"),l=(o==null?void 0:o.nonce)||(o==null?void 0:o.getAttribute("nonce"));a=i(n.map(u=>{if(u=zf(u),u in ki)return;ki[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":qf,c||(f.as="script"),f.crossOrigin="",f.href=u,l&&f.setAttribute("nonce",l),document.head.appendChild(f),c)return new Promise((h,g)=>{f.addEventListener("load",h),f.addEventListener("error",()=>g(new Error(`Unable to preload CSS for ${u}`)))})}))}function r(i){const o=new Event("vite:preloadError",{cancelable:!0});if(o.payload=i,window.dispatchEvent(o),!o.defaultPrevented)throw i}return a.then(i=>{for(const o of i||[])o.status==="rejected"&&r(o.reason);return t().catch(r)})};/*! Capacitor: https://capacitorjs.com/ - MIT License */var Ln;(function(e){e.Unimplemented="UNIMPLEMENTED",e.Unavailable="UNAVAILABLE"})(Ln||(Ln={}));class ya extends Error{constructor(t,n,s){super(t),this.message=t,this.code=n,this.data=s}}const Kf=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"},Wf=e=>{const t=e.CapacitorCustomPlatform||null,n=e.Capacitor||{},s=n.Plugins=n.Plugins||{},a=()=>t!==null?t.name:Kf(e),r=()=>a()!=="web",i=d=>{const f=u.get(d);return!!(f!=null&&f.platforms.has(a())||o(d))},o=d=>{var f;return(f=n.PluginHeaders)===null||f===void 0?void 0:f.find(h=>h.name===d)},l=d=>e.console.error(d),u=new Map,c=(d,f={})=>{const h=u.get(d);if(h)return console.warn(`Capacitor plugin "${d}" already registered. Cannot register plugins twice.`),h.proxy;const g=a(),y=o(d);let m;const P=async()=>(!m&&g in f?m=typeof f[g]=="function"?m=await f[g]():m=f[g]:t!==null&&!m&&"web"in f&&(m=typeof f.web=="function"?m=await f.web():m=f.web),m),_=(A,R)=>{var Z,ue;if(y){const de=y==null?void 0:y.methods.find(pe=>R===pe.name);if(de)return de.rtype==="promise"?pe=>n.nativePromise(d,R.toString(),pe):(pe,B)=>n.nativeCallback(d,R.toString(),pe,B);if(A)return(Z=A[R])===null||Z===void 0?void 0:Z.bind(A)}else{if(A)return(ue=A[R])===null||ue===void 0?void 0:ue.bind(A);throw new ya(`"${d}" plugin is not implemented on ${g}`,Ln.Unimplemented)}},S=A=>{let R;const Z=(...ue)=>{const de=P().then(pe=>{const B=_(pe,A);if(B){const q=B(...ue);return R=q==null?void 0:q.remove,q}else throw new ya(`"${d}.${A}()" is not implemented on ${g}`,Ln.Unimplemented)});return A==="addListener"&&(de.remove=async()=>R()),de};return Z.toString=()=>`${A.toString()}() { [capacitor code] }`,Object.defineProperty(Z,"name",{value:A,writable:!1,configurable:!1}),Z},E=S("addListener"),F=S("removeListener"),D=(A,R)=>{const Z=E({eventName:A},R),ue=async()=>{const pe=await Z;F({eventName:A,callbackId:pe},R)},de=new Promise(pe=>Z.then(()=>pe({remove:ue})));return de.remove=async()=>{console.warn("Using addListener() without 'await' is deprecated."),await ue()},de},T=new Proxy({},{get(A,R){switch(R){case"$$typeof":return;case"toJSON":return()=>({});case"addListener":return y?D:E;case"removeListener":return F;default:return S(R)}}});return s[d]=T,u.set(d,{name:d,proxy:T,platforms:new Set([...Object.keys(f),...y?[g]:[]])}),T};return n.convertFileSrc||(n.convertFileSrc=d=>d),n.getPlatform=a,n.handleError=l,n.isNativePlatform=r,n.isPluginAvailable=i,n.registerPlugin=c,n.Exception=ya,n.DEBUG=!!n.DEBUG,n.isLoggingEnabled=!!n.isLoggingEnabled,n},Jf=e=>e.Capacitor=Wf(e),ja=Jf(typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),ta=ja.registerPlugin;class pr{constructor(){this.listeners={},this.retainedEventArguments={},this.windowListeners={}}addListener(t,n){let s=!1;this.listeners[t]||(this.listeners[t]=[],s=!0),this.listeners[t].push(n);const r=this.windowListeners[t];r&&!r.registered&&this.addWindowListener(r),s&&this.sendRetainedArgumentsForEvent(t);const i=async()=>this.removeListener(t,n);return Promise.resolve({remove:i})}async removeAllListeners(){this.listeners={};for(const t in this.windowListeners)this.removeWindowListener(this.windowListeners[t]);this.windowListeners={}}notifyListeners(t,n,s){const a=this.listeners[t];if(!a){if(s){let r=this.retainedEventArguments[t];r||(r=[]),r.push(n),this.retainedEventArguments[t]=r}return}a.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:s=>{this.notifyListeners(n,s)}}}unimplemented(t="not implemented"){return new ja.Exception(t,Ln.Unimplemented)}unavailable(t="not available"){return new ja.Exception(t,Ln.Unavailable)}async removeListener(t,n){const s=this.listeners[t];if(!s)return;const a=s.indexOf(n);this.listeners[t].splice(a,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(s=>{this.notifyListeners(t,s)}))}}const Ai=e=>encodeURIComponent(e).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape),xi=e=>e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent);class Yf extends pr{async getCookies(){const t=document.cookie,n={};return t.split(";").forEach(s=>{if(s.length<=0)return;let[a,r]=s.replace(/=/,"CAP_COOKIE").split("CAP_COOKIE");a=xi(a).trim(),r=xi(r).trim(),n[a]=r}),n}async setCookie(t){try{const n=Ai(t.key),s=Ai(t.value),a=t.expires?`; expires=${t.expires.replace("expires=","")}`:"",r=(t.path||"/").replace("path=",""),i=t.url!=null&&t.url.length>0?`domain=${t.url}`:"";document.cookie=`${n}=${s||""}${a}; path=${r}; ${i};`}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)}}}ta("CapacitorCookies",{web:()=>new Yf});const Xf=async e=>new Promise((t,n)=>{const s=new FileReader;s.onload=()=>{const a=s.result;t(a.indexOf(",")>=0?a.split(",")[1]:a)},s.onerror=a=>n(a),s.readAsDataURL(e)}),Zf=(e={})=>{const t=Object.keys(e);return Object.keys(e).map(a=>a.toLocaleLowerCase()).reduce((a,r,i)=>(a[r]=e[t[i]],a),{})},Qf=(e,t=!0)=>e?Object.entries(e).reduce((s,a)=>{const[r,i]=a;let o,l;return Array.isArray(i)?(l="",i.forEach(u=>{o=t?encodeURIComponent(u):u,l+=`${r}=${o}&`}),l.slice(0,-1)):(o=t?encodeURIComponent(i):i,l=`${r}=${o}`),`${s}&${l}`},"").substr(1):null,ep=(e,t={})=>{const n=Object.assign({method:e.method||"GET",headers:e.headers},t),a=Zf(e.headers)["content-type"]||"";if(typeof e.data=="string")n.body=e.data;else if(a.includes("application/x-www-form-urlencoded")){const r=new URLSearchParams;for(const[i,o]of Object.entries(e.data||{}))r.set(i,o);n.body=r.toString()}else if(a.includes("multipart/form-data")||e.data instanceof FormData){const r=new FormData;if(e.data instanceof FormData)e.data.forEach((o,l)=>{r.append(l,o)});else for(const o of Object.keys(e.data))r.append(o,e.data[o]);n.body=r;const i=new Headers(n.headers);i.delete("content-type"),n.headers=i}else(a.includes("application/json")||typeof e.data=="object")&&(n.body=JSON.stringify(e.data));return n};class tp extends pr{async request(t){const n=ep(t,t.webFetchExtra),s=Qf(t.params,t.shouldEncodeUrlParams),a=s?`${t.url}?${s}`:t.url,r=await fetch(a,n),i=r.headers.get("content-type")||"";let{responseType:o="text"}=r.ok?t:{};i.includes("application/json")&&(o="json");let l,u;switch(o){case"arraybuffer":case"blob":u=await r.blob(),l=await Xf(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"}))}}ta("CapacitorHttp",{web:()=>new tp});var Ci;(function(e){e.Dark="DARK",e.Light="LIGHT",e.Default="DEFAULT"})(Ci||(Ci={}));var Ei;(function(e){e.StatusBar="StatusBar",e.NavigationBar="NavigationBar"})(Ei||(Ei={}));class np extends pr{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")}}ta("SystemBars",{web:()=>new np});const vr=ta("Preferences",{web:()=>bl(()=>import("./web-CM9X8UBB.js"),[]).then(e=>new e.PreferencesWeb)}),gr="shserv_server_url";let wl="";function ps(){return typeof window<"u"&&window.Capacitor!==void 0}function Sl(){return wl}function ks(e){wl=String(e||"").replace(/\/+$/,"")}async function sp(){if(!ps()){ks("");return}try{const{value:e}=await vr.get({key:gr});ks(e||"")}catch{ks("")}}async function ap(e){const t=String(e||"").replace(/\/+$/,"");if(ks(t),!!ps())try{await vr.set({key:gr,value:t})}catch{}}function ls(e){const t=Sl();if(!t)return e;const n=String(e||"").replace(/^\/+/,"");return n?`${t}/${n}`:t}async function rp(){if(!ps())return!0;const{value:e}=await vr.get({key:gr});return!!e}const Ls={DEBUG:0,INFO:1,WARN:2,ERROR:3};function kl(){return Ls[void 0]??Ls.INFO}function hr(){return kl()<=Ls.DEBUG}function Ri(e){return Ls[e]>=kl()}function $i(e){return e<10?`${e.toFixed(1)}ms`:`${Math.round(e)}ms`}function Al(e,t=500){if(!e)return"";const n=String(e);return n.length>t?n.slice(0,t)+"…":n}function xl(e,t){try{const n=JSON.stringify(e);return t?Al(n,t):n}catch{return"[Circular]"}}const ip=1e4,_a="[vue:http]";function op(e){const t=new URLSearchParams;for(const[s,a]of Object.entries(e||{}))a!=null&&t.append(s,String(a));const n=t.toString();return n?`?${n}`:""}function lp(e,t){const n=String(e||"").replace(/\/+$/,""),s=String(t||"").replace(/^\/+/,"");return n?`${n}/${s}`:`/${s}`}function up(e,t){return`${e}${op(t)}`}async function Ti(e,t,n,s={}){const a=Number(s.timeoutMs||ip),r=new AbortController,i=setTimeout(()=>r.abort(),a),o=Sl(),l=lp(o,up(t,s.query)),u={Accept:"application/json",...s.headers||{}},c=_l();c&&(u.Authorization=`Bearer ${c}`);const d={method:e,headers:u,signal:r.signal,credentials:"include"};s.signal&&s.signal.addEventListener("abort",()=>r.abort(),{once:!0}),n!=null&&(u["Content-Type"]="application/json",d.body=JSON.stringify(n)),hr()&&console.debug(_a,e,l,n?xl(n,500):"");const f=performance.now();try{const h=await fetch(l,d),g=await h.text();let y=g;if(g)try{y=JSON.parse(g)}catch{y=g}const m=performance.now()-f,P=h.status>=500?"ERROR":h.status>=400?"WARN":"INFO";return Ri(P)&&console[P.toLowerCase()](_a,`${e} ${l} — ${h.status} in ${$i(m)}`,Al(g||"",200)),{response:h,data:y,meta:{url:l,method:e,statusCode:h.status,headers:h.headers}}}catch(h){const g=performance.now()-f;throw Ri("ERROR")&&console.error(_a,`${e} ${l} — FAILED in ${$i(g)}`,(h==null?void 0:h.message)||h),h}finally{clearTimeout(i)}}let ba=!1,Va=[];function cp(e){Va.push(e)}function Pi(e){Va.forEach(t=>t(e)),Va=[]}function Bn(e,t,n={}){return{type:e,message:t,...n}}async function mr(e,t,n,s){var a,r;try{const{response:i,data:o,meta:l}=await Ti(e,t,n,s);if(!i.ok){if(i.status===401&&!(s!=null&&s._retryOnce)){if(ba)await new Promise(c=>{cp(d=>c(d))});else{ba=!0;try{const c=await Ti("POST","/auth/refresh",null);if(c.response.ok){const d=(r=(a=c.data)==null?void 0:a.data)==null?void 0:r.access_token;if(d)yl(d),Pi(d);else throw new Error("No token in refresh response")}else throw new Error("Refresh failed")}catch{return Pi(null),kn(),window.location.hash.includes("/login")||(window.location.href=ls(`/auth/login?return_to=${encodeURIComponent(window.location.href)}`)),{ok:!1,error:Bn("http_error","HTTP 401",{statusCode:401,raw:o}),meta:l}}finally{ba=!1}}return _l()?mr(e,t,n,{...s,_retryOnce:!0}):{ok:!1,error:Bn("http_error","HTTP 401",{statusCode:401,raw:o}),meta:l}}return{ok:!1,error:Bn("http_error",`HTTP ${i.status}`,{statusCode:i.status,raw:o}),meta:l}}return o&&typeof o=="object"&&(o.status===!1||o.status==="error")?{ok:!1,error:Bn("api_error",o.msg||o.message||"API error",{errorAlias:o.error_alias,failedFields:o.failed_fields||[],raw:o}),meta:l}:{ok:!0,data:o,meta:l}}catch(i){const o=(i==null?void 0:i.name)==="AbortError";return{ok:!1,error:Bn(o?"timeout":"network_error",(i==null?void 0:i.message)||"Network error",{details:i}),meta:{url:t,method:e,statusCode:0,headers:null}}}}function Le(e,t){return mr("GET",e,null,t)}function Qe(e,t,n){return mr("POST",e,t,n)}const vs=hn("auth",()=>{const e=J(null),t=J([]),n=J(!1),s=J(null),a=Q(()=>!!e.value),r=Q(()=>new Set(t.value));function i(y){return r.value.has(y)}function o(y){return Array.isArray(y)?y.some(m=>r.value.has(m)):!1}function l(){s.value&&(clearTimeout(s.value),s.value=null);const y=Gf();if(!y)return;const m=y-Date.now()-6e4;m>0?s.value=setTimeout(()=>{f().then(()=>{l()})},m):f().then(()=>{l()})}function u(){s.value&&(clearTimeout(s.value),s.value=null)}let c=null;async function d(){return c||(n.value=!0,c=Le("/auth/me").then(async y=>{var m,P,_;if(y.ok){const S=((m=y.data)==null?void 0:m.data)||{};e.value=S.user||null,t.value=S.permissions||[],l()}else if(((P=y.error)==null?void 0:P.statusCode)===401){await f();const S=await Le("/auth/me");if(S.ok){const E=((_=S.data)==null?void 0:_.data)||{};e.value=E.user||null,t.value=E.permissions||[],l()}else e.value=null,t.value=[],kn(),u()}else e.value=null,t.value=[],kn(),u()}).catch(()=>{e.value=null,t.value=[],kn(),u()}).finally(()=>{n.value=!1}),c)}async function f(){var m,P,_,S;const y=await Qe("/auth/refresh");if(y.ok){const E=((P=(m=y.data)==null?void 0:m.data)==null?void 0:P.access_token)||null,F=((S=(_=y.data)==null?void 0:_.data)==null?void 0:S.expires_in)||null;yl(E,F),l()}else kn(),u()}async function h(){try{await Qe("/auth/logout")}catch{}e.value=null,t.value=[],kn(),u(),window.location.href=ls("/#/login")}function g(){const y=window.location.href;window.location.href=ls(`/auth/login?return_to=${encodeURIComponent(y)}`)}return{user:e,permissions:t,isLoading:n,isAuthenticated:a,hasPermission:i,hasAnyPermission:o,init:d,refreshToken:f,logout:h,redirectToLogin:g}}),dp={__name:"AppShell",setup(e){const t=ea(),n=vs(),s={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"},a=Q(()=>{const f=t==null?void 0:t.name;return f&&s[f]?s[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"}],i=Q(()=>r.filter(f=>f.permission?n.hasPermission(f.permission):!0));function o(f){return f?f.split(/\s+/).slice(0,2).map(h=>{var g;return(g=h[0])==null?void 0:g.toUpperCase()}).join(""):""}function l(f){return f?f.charAt(0).toUpperCase()+f.slice(1):""}function u(){const f=window.location.href;window.location.href=ls(`/auth/login?return_to=${encodeURIComponent(f)}`)}function c(){const f=document.querySelector(".nav-drawer-backdrop");f&&f.click()}function d(){c(),n.logout()}return(f,h)=>(w(),K(p(Bf),{brand:"SHSERV","logo-src":"/logo-cube-square.svg",title:"Navigation",subtitle:"Smart Home",items:i.value,"active-match":"prefix",current:a.value},{content:k(()=>[zs(f.$slots,"default")]),footer:k(()=>{var g,y,m,P,_,S;return[p(n).isAuthenticated?(w(),K(p(Hf),{key:0,name:((g=p(n).user)==null?void 0:g.display_name)||"User",email:((y=p(n).user)==null?void 0:y.email)||"",role:l((m=p(n).user)==null?void 0:m.system_role),avatar:{src:((P=p(n).user)==null?void 0:P.avatar_url)||"",initials:o((_=p(n).user)==null?void 0:_.display_name),size:"sm"},href:((S=p(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"])):(w(),K(p(ge),{key:1,variant:"primary",size:"sm",onClick:u},{icon:k(()=>[...h[0]||(h[0]=[L("i",{class:"ph ph-sign-in"},null,-1)])]),default:k(()=>[h[1]||(h[1]=U(" Sign in ",-1))]),_:1}))]}),_:3},8,["items","current"]))}},Ke=(e,t)=>{const n=e.__vccOpts||e;for(const[s,a]of t)n[s]=a;return n},fp={key:0},pp={key:1,class:"error-meta"},vp={class:"error-actions"},gp={__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=Q(()=>{var a;return t.message||((a=t.error)==null?void 0:a.message)||""}),s=Q(()=>{if(!t.error)return"";try{return JSON.stringify(t.error,null,2)}catch{return String(t.error)}});return(a,r)=>(w(),K(p(Ze),{variant:"danger",role:"alert"},{default:k(()=>[L("strong",null,N(e.title),1),n.value?(w(),G("p",fp,N(n.value),1)):ae("",!0),e.error?(w(),G("div",pp,[e.error.type?(w(),K(p(_e),{key:0,variant:"secondary"},{default:k(()=>[U(N(e.error.type),1)]),_:1})):ae("",!0),e.error.statusCode?(w(),K(p(_e),{key:1,variant:"secondary"},{default:k(()=>[U("HTTP "+N(e.error.statusCode),1)]),_:1})):ae("",!0),e.error.errorAlias?(w(),K(p(_e),{key:2,variant:"warning"},{default:k(()=>[U(N(e.error.errorAlias),1)]),_:1})):ae("",!0)])):ae("",!0),L("div",vp,[e.error?(w(),K(p(If),{key:0,text:s.value,label:"Copy error details",size:"sm"},null,8,["text"])):ae("",!0),e.retry?(w(),K(p(ge),{key:1,variant:"danger",onClick:e.retry},{default:k(()=>[...r[0]||(r[0]=[U("Retry",-1)])]),_:1},8,["onClick"])):ae("",!0)])]),_:1}))}},pt=Ke(gp,[["__scopeId","data-v-f1e6bcb8"]]),hp={key:0,class:"error-boundary",role:"alert"},mp={__name:"AppErrorBoundary",setup(e){const t=J(!1),n=J("");Co((a,r,i)=>{const o=(a==null?void 0:a.message)||String(a);return console.error("[AppErrorBoundary] Caught Vue error:",o,"| info:",i,a),t.value=!0,n.value=o,!1});function s(){t.value=!1,n.value=""}return(a,r)=>t.value?(w(),G("div",hp,[I(pt,{title:"Something went wrong",message:n.value,retry:s},null,8,["message"])])):zs(a.$slots,"default",{key:1},void 0,!0)}},yp=Ke(mp,[["__scopeId","data-v-1e10ea7f"]]),_p={__name:"App",setup(e){return(t,n)=>(w(),K(dp,null,{default:k(()=>[I(p(Vf),null,{default:k(()=>[I(yp,null,{default:k(()=>[I(p(vl))]),_:1})]),_:1})]),_:1}))}},$t={list(e){return Le("/api/v1/areas/list",e)},innerList(e,t){return Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/list`,t)},newArea(e){return Qe("/api/v1/areas/new-area",e)},remove(e){return Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/remove`)},devices(e,t){return Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/devices`,t)},scripts(e,t){return Le(`/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 Le(`/api/v1/areas/id/${encodeURIComponent(String(e))}/unassign-from-area`)}};function gt(e={}){const t=J(null),n=J(!1),s=J(null);async function a(o){var u,c;(u=t.value)==null||u.abort();const l=new AbortController;t.value=l,n.value=!0,s.value=null;try{const d=await o(l.signal);return t.value=null,n.value=!1,d.ok||e.ignoreTimeout!==!1&&((c=d.error)==null?void 0:c.type)==="timeout"||(s.value=d.error),d}catch(d){return t.value=null,n.value=!1,s.value={type:"network_error",message:(d==null?void 0:d.message)||"Network error"},{ok:!1,error:s.value}}}function r(){var o;(o=t.value)==null||o.abort(),t.value=null}function i(){s.value=null,r()}return{abortController:t,isLoading:n,error:s,execute:a,abort:r,clear:i}}const Cl="sh:areas:expandedNodes";function bp(){try{const e=localStorage.getItem(Cl);if(e){const t=JSON.parse(e);if(Array.isArray(t))return new Set(t)}}catch{}return new Set}function wp(e){try{localStorage.setItem(Cl,JSON.stringify([...e]))}catch{}}function Sp(e){const t={},n=[];for(const s of e)t[s.id]={...s,children:[]};for(const s of e){const a=t[s.id],r=s.parent_id&&s.parent_id==s.id,i=s.parent_id&&t[s.parent_id];!r&&i?t[s.parent_id].children.push(a):n.push(a)}return n.length===0&&e.length>0?Object.values(t):n}const wt=hn("areas",()=>{const e=J([]),t=J(null),n=J([]),s=J([]),a=gt(),r=gt(),i=Q(()=>Object.fromEntries(e.value.map(D=>[String(D.id),D]))),o=Q(()=>Sp(e.value)),l=J(bp());kt(l,D=>{wp(D)},{deep:!0});function u(D){const T=new Set(l.value);T.has(D)?T.delete(D):T.add(D),l.value=T}function c(D){return l.value.has(D)}async function d(){return a.execute(async D=>{var A,R;const T=await $t.list({signal:D});return T.ok&&(e.value=((R=(A=T.data)==null?void 0:A.data)==null?void 0:R.areas)||[]),T})}async function f(D){var A,R,Z,ue,de,pe;r.abort();const T=new AbortController;r.abortController.value=T,r.isLoading.value=!0,r.error.value=null,t.value=i.value[String(D)]||null,n.value=[],s.value=[];try{const[B,q]=await Promise.all([$t.devices(D,{signal:T.signal}),$t.scripts(D,{signal:T.signal})]);return r.abortController.value=null,r.isLoading.value=!1,B.ok?q.ok?(n.value=((ue=(Z=B.data)==null?void 0:Z.data)==null?void 0:ue.devices)||[],s.value=((pe=(de=q.data)==null?void 0:de.data)==null?void 0:pe.scripts)||[],{ok:!0}):(((R=q.error)==null?void 0:R.type)!=="timeout"&&(r.error.value=q.error),{ok:!1,error:r.error.value}):(((A=B.error)==null?void 0:A.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 h(){t.value=null,n.value=[],s.value=[],r.clear()}async function g(D){var A,R;const T=await $t.devices(D);return T.ok&&(n.value=((R=(A=T.data)==null?void 0:A.data)==null?void 0:R.devices)||[]),T}async function y(D){var A,R;const T=await $t.scripts(D);return T.ok&&(s.value=((R=(A=T.data)==null?void 0:A.data)==null?void 0:R.scripts)||[]),T}async function m(D){var A,R;const T=await $t.newArea(D);if(T.ok){const Z=(R=(A=T.data)==null?void 0:A.data)==null?void 0:R.area;Z&&e.value.push(Z)}return T}async function P(D,T){const A=await $t.updateDisplayName({area_id:D,display_name:T});if(A.ok){const R=e.value.findIndex(Z=>Z.id===D);R!==-1&&(e.value[R]={...e.value[R],display_name:T})}return A}async function _(D){const T=await $t.remove(D);return T.ok&&(e.value=e.value.filter(A=>A.id!==D)),T}function S(D){return!(D!=null&&D.parent_id)||D.parent_id<=0}async function E(D,T){const A=e.value.find(ue=>ue.id===D),R=e.value.filter(S).length;if(A&&S(A)&&R===1)return{ok:!1,error:{message:"Cannot assign the last root area as a child."}};const Z=await $t.placeInArea({target_id:D,place_in_area_id:T});if(Z.ok){const ue=e.value.findIndex(de=>de.id===D);ue!==-1&&e.value.splice(ue,1,{...e.value[ue],parent_id:Number(T)})}return Z}async function F(D){const T=await $t.unassign(D);if(T.ok){const A=e.value.findIndex(R=>R.id===D);A!==-1&&e.value.splice(A,1,{...e.value[A],parent_id:0})}return T}return{areas:e,isLoading:a.isLoading,error:a.error,currentArea:t,currentAreaDevices:n,currentAreaScripts:s,isLoadingAreaDetail:r.isLoading,errorAreaDetail:r.error,areasById:i,areaTree:o,expandedNodeIds:l,toggleNode:u,isNodeExpanded:c,loadAreas:d,loadAreaDetail:f,clearAreaDetail:h,loadAreaDevices:g,loadAreaScripts:y,createArea:m,renameArea:P,removeArea:_,assignToArea:E,unassignArea:F}}),El="sh_fav_areas";function kp(){try{return JSON.parse(localStorage.getItem(El)||"[]").map(String)}catch{return[]}}function Ii(e){localStorage.setItem(El,JSON.stringify(e.map(String)))}const yr=hn("favorites",()=>{const e=J(kp());function t(r){return e.value.includes(String(r))}function n(r){const i=String(r);e.value.includes(i)||(e.value.push(i),Ii(e.value))}function s(r){e.value=e.value.filter(i=>i!==String(r)),Ii(e.value)}function a(r){return t(r)?(s(r),!1):(n(r),!0)}return{ids:e,has:t,add:n,remove:s,toggle:a}}),Ap=["aria-label"],Rl={__name:"AreaFavoriteButton",props:{areaId:{type:[String,Number],required:!0}},setup(e){const t=e,n=yr(),s=Q(()=>n.has(t.areaId));return(a,r)=>(w(),G("button",{class:Ft(["btn-icon area-favorite-btn",{"is-active":s.value,"text-muted":!s.value,"text-warning":s.value}]),type:"button","aria-label":s.value?"Remove bookmark":"Bookmark",onClick:r[0]||(r[0]=Ys(i=>p(n).toggle(e.areaId),["stop"]))},[L("i",{class:Ft(["ph",s.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple"])},null,2)],10,Ap))}},_t={__name:"AppLoadingState",props:{text:{type:String,default:"Loading"}},setup(e){return(t,n)=>(w(),K(p(hl),{circle:"",label:e.text},null,8,["label"]))}},rt={__name:"AppEmptyState",props:{title:{type:String,default:"Nothing here"},message:{type:String,default:""}},setup(e){return(t,n)=>(w(),K(p(Lf),{title:e.title,text:e.message,icon:"ph-package"},{actions:k(()=>[zs(t.$slots,"action")]),_:3},8,["title","text"]))}},xp={class:"page"},Cp={key:3,class:"area-favorites-list"},Ep=["onClick"],Rp={class:"area-favorite-info"},$p={class:"area-favorite-title"},Tp={class:"area-favorite-meta"},Pp={key:0,class:"area-favorite-parent"},Ip={class:"area-favorite-actions"},Dp={__name:"AreaFavoritesPage",setup(e){const t=wt(),n=yr(),s=on(),a=Q(()=>{const o=new Set(n.ids.map(String));return t.areas.filter(l=>o.has(String(l.id)))});function r(o){if(!o.parent_id)return null;const l=t.areasById[String(o.parent_id)];return(l==null?void 0:l.display_name)||null}function i(o){s.push({name:"area-detail",params:{id:String(o.id)}})}return bt(()=>{t.areas.length===0&&t.loadAreas()}),(o,l)=>{const u=rn("router-link");return w(),G("section",xp,[I(p(Et),{title:"Favorites",kicker:"Areas"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(a.value.length)+" favorite areas",1)]),_:1})]),_:1}),p(t).isLoading?(w(),K(_t,{key:0,text:"Loading areas"})):p(t).error?(w(),K(pt,{key:1,title:"Areas loading failed",error:p(t).error,retry:p(t).loadAreas},null,8,["error","retry"])):a.value.length===0?(w(),K(rt,{key:2,title:"No favorite areas",message:"Favorite areas from the current client are preserved through localStorage."})):(w(),G("ul",Cp,[(w(!0),G(De,null,Wt(a.value,c=>(w(),G("li",{key:c.id,class:"area-favorite-item"},[L("article",{class:"area-favorite-card",onClick:d=>i(c)},[l[2]||(l[2]=L("div",{class:"area-favorite-icon"},[L("i",{class:"ph ph-fill ph-bookmark-simple"})],-1)),L("div",Rp,[L("h2",$p,N(c.display_name),1),L("p",Tp,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(c.type),1)]),_:2},1024),L("code",null,N(c.alias),1),r(c)?(w(),G("span",Pp,[l[1]||(l[1]=U(" in ",-1)),I(u,{to:{name:"area-detail",params:{id:String(c.parent_id)}},class:"parent-link",onClick:l[0]||(l[0]=Ys(()=>{},["stop"]))},{default:k(()=>[U(N(r(c)),1)]),_:2},1032,["to"])])):ae("",!0)])]),L("div",Ip,[I(Rl,{"area-id":c.id},null,8,["area-id"])])],8,Ep)]))),128))]))])}}},Lp=Ke(Dp,[["__scopeId","data-v-f8795944"]]);function Mt(){const e=vs();return{has:t=>e.hasPermission(t),hasAny:t=>e.hasAnyPermission(t),permissions:e.permissions}}const Op=["disabled","aria-expanded"],Fp={class:"area-tree-info"},Np={class:"text-muted"},Mp={class:"area-tree-actions"},Up={key:0,class:"area-tree-children"},Bp={key:1,class:"area-tree-node"},jp={class:"area-tree-card area-tree-cycle text-danger"},Vp={__name:"AreaTreeNode",props:{area:{type:Object,required:!0},ancestors:{type:Array,default:()=>[]}},setup(e){const t=e,n=on(),s=wt(),a=Q(()=>s.isNodeExpanded(t.area.id)),r=Q(()=>{var c;return!((c=t.area.children)!=null&&c.length)}),i=Q(()=>t.ancestors.includes(String(t.area.id))),o=Q(()=>[...t.ancestors,String(t.area.id)]);function l(){s.toggleNode(t.area.id)}function u(){n.push({name:"area-detail",params:{id:String(t.area.id)}})}return(c,d)=>{var h;const f=rn("AreaTreeNode",!0);return i.value?(w(),G("li",Bp,[L("article",jp," Cycle skipped for area ID "+N(e.area.id),1)])):(w(),G("li",{key:0,class:Ft(["area-tree-node",{"is-open":a.value,"is-leaf":r.value}])},[L("article",{class:"area-tree-card",onClick:u},[L("button",{class:Ft(["tree-toggle",{"text-primary":!r.value,"text-muted":r.value}]),type:"button",disabled:r.value,"aria-expanded":a.value,onClick:Ys(l,["stop"])},N(r.value?"·":a.value?"−":"+"),11,Op),L("div",Fp,[L("h2",null,N(e.area.display_name),1),L("p",Np,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(e.area.type),1)]),_:1}),L("code",null,N(e.area.alias),1)])]),L("div",Mp,[I(Rl,{"area-id":e.area.id},null,8,["area-id"])])]),(h=e.area.children)!=null&&h.length&&a.value?(w(),G("ul",Up,[(w(!0),G(De,null,Wt(e.area.children,g=>(w(),K(f,{key:g.id,area:g,ancestors:o.value},null,8,["area","ancestors"]))),128))])):ae("",!0)],2))}}},Hp={class:"page"},Gp={key:3,class:"area-tree"},qp={class:"form-group"},zp={class:"form-group"},Kp={class:"form-group"},Wp={key:0,class:"form-group"},Jp={__name:"AreaTreePage",setup(e){const t=wt(),n=mn(),s=Mt(),a=J(!1),r=J(!1),i=J(""),o=Yt({type:"",alias:"",display_name:""});function l(){o.type="",o.alias="",o.display_name="",i.value="",a.value=!0}async function u(){var d;r.value=!0,i.value="";const c=await t.createArea({...o});if(r.value=!1,!c.ok){i.value=((d=c.error)==null?void 0:d.message)||"Failed to create area";return}a.value=!1,n.success({title:"Created",text:"Area created successfully"})}return bt(()=>{t.loadAreas()}),(c,d)=>(w(),G("section",Hp,[I(p(Et),{title:"Tree",kicker:"Areas"},{actions:k(()=>[p(s).has("areas.manage")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-plus",onClick:l},{default:k(()=>[...d[5]||(d[5]=[U("Create area",-1)])]),_:1})):ae("",!0)]),_:1}),p(t).isLoading?(w(),K(_t,{key:0,text:"Loading areas tree"})):p(t).error?(w(),K(pt,{key:1,title:"Areas loading failed",error:p(t).error,retry:p(t).loadAreas},null,8,["error","retry"])):p(t).areaTree.length===0?(w(),K(rt,{key:2,title:"No areas",message:"No areas found. Create one to get started."})):(w(),G("ul",Gp,[(w(!0),G(De,null,Wt(p(t).areaTree,f=>(w(),K(Vp,{key:f.id,area:f},null,8,["area"]))),128))])),I(p(ut),{open:a.value,title:"Create area","onUpdate:open":d[4]||(d[4]=f=>a.value=f)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:d[3]||(d[3]=f=>a.value=!1)},{default:k(()=>[...d[6]||(d[6]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:u},{default:k(()=>[...d[7]||(d[7]=[U("Create",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",qp,[I(p(At),{modelValue:o.type,"onUpdate:modelValue":d[0]||(d[0]=f=>o.type=f),label:"Type",placeholder:"room"},null,8,["modelValue"])]),L("div",zp,[I(p(At),{modelValue:o.alias,"onUpdate:modelValue":d[1]||(d[1]=f=>o.alias=f),label:"Alias",placeholder:"kitchen"},null,8,["modelValue"])]),L("div",Kp,[I(p(At),{modelValue:o.display_name,"onUpdate:modelValue":d[2]||(d[2]=f=>o.display_name=f),label:"Display name",placeholder:"Kitchen"},null,8,["modelValue"])]),i.value?(w(),G("div",Wp,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(i.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"])]))}},Yp=Ke(Jp,[["__scopeId","data-v-5f02f384"]]),Xp={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 Zp(e){const t={};for(const[n,s]of Object.entries(e||{}))t[Xp[n]||n]=s;return t}function jn(e){return encodeURIComponent(String(e))}function Qp(e){var n,s,a;if(!e.ok)return e;const t=((s=(n=e.data)==null?void 0:n.data)==null?void 0:s.devices)||[];return{...e,data:{...e.data,data:{...(a=e.data)==null?void 0:a.data,devices:t.map(Zp)}}}}const nt={async list(){return Qp(await Le("/api/v1/devices/list"))},status(e,t){return Le(`/api/v1/devices/id/${jn(e)}/status`,t)},reboot(e){return Le(`/api/v1/devices/id/${jn(e)}/reboot`)},action(e){return Qe("/api/v1/devices/action",e)},scanningSetup(e){return Le("/api/v1/devices/scanning/setup",{timeoutMs:12e4,...e})},scanningAll(e){return Le("/api/v1/devices/scanning/all",{timeoutMs:12e4,...e})},setupNewDevice(e){return Qe("/api/v1/devices/setup/new-device",e)},detail(e,t){return Le(`/api/v1/devices/id/${jn(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 Le(`/api/v1/devices/id/${jn(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 Le(`/api/v1/devices/id/${jn(e)}/unassign-from-area`)},placeInArea(e){return Qe("/api/v1/devices/place-in-area",e)}},ev=4;function Ha(e){return String((e==null?void 0:e.id)||"")}function _r(e,t){return{deviceId:Ha(e),status:"idle",message:"",response:null,connectionStatus:(e==null?void 0:e.connection_status)||"unknown",updatedAt:null,...t}}function tv(e,t){var a,r;const s=(((r=(a=t.data)==null?void 0:a.data)==null?void 0:r.device)||{}).device_response||{};return _r(e,{status:"ready",message:s.status||"ok",response:s,connectionStatus:"active",updatedAt:new Date().toISOString()})}function nv(e,t){var a,r,i;const n=((a=t.error)==null?void 0:a.raw)||{},s=((r=n==null?void 0:n.data)==null?void 0:r.connection_status)||(e==null?void 0:e.connection_status)||"unknown";return _r(e,{status:"error",message:((i=t.error)==null?void 0:i.message)||"Device state is unavailable",response:n,connectionStatus:s,updatedAt:new Date().toISOString()})}async function sv(e,t,n){let s=0;const a=Math.max(1,Math.min(t,e.length));async function r(){for(;s{const e=J([]),t=J({}),n=J(0),s=J(new Set),a=J(null),r=J(null),i=J(null),o=J(!1),l=J(null),u=gt(),c=gt(),d=Q(()=>e.value.length),f=Q(()=>B=>s.value.has(String(B)));async function h(){return u.execute(async B=>{var X,W;const q=await nt.list({signal:B});return q.ok&&(e.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.devices)||[],i.value=new Date().toISOString()),q})}function g(B,q){const X=Ha(B);X&&(t.value={...t.value,[X]:_r(B,q)})}async function y(B,q,X){const W=n.value+1;n.value=W,o.value=!0,l.value=null,X&&(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 sv(te,q.concurrency||ev,async ve=>{const Se=await nt.status(ve.id);n.value===W&&(t.value={...t.value,[Ha(ve)]:Se.ok?tv(ve,Se):nv(ve,Se)})})}catch(ve){n.value===W&&(l.value={type:"state_loader_error",message:(ve==null?void 0:ve.message)||"Device states loader failed"})}finally{n.value===W&&(o.value=!1)}}async function m(B,q={}){return y(B,q,!1)}async function P(B={}){return y(e.value,B,!0)}async function _(B){const q=String(B);s.value=new Set(s.value).add(q);const X=await nt.reboot(B),W=new Set(s.value);return W.delete(q),s.value=W,X}async function S(B){return c.execute(async q=>{var W,te;const X=await nt.detail(B,{signal:q});return X.ok&&(a.value=((te=(W=X.data)==null?void 0:W.data)==null?void 0:te.device)||null),X})}async function E(B){var te,ve;const q=await nt.status(B);if(!q.ok)return r.value={ok:!1,error:q.error,channels:[]},q;const W=(((ve=(te=q.data)==null?void 0:te.data)==null?void 0:ve.device)||{}).device_response||{};return r.value={ok:!0,channels:W.channels||[],raw:W},q}async function F(B,q){const X=await nt.updateName(B,q);return X.ok&&a.value&&(a.value={...a.value,name:q}),X}async function D(B,q){const X=await nt.updateDescription(B,q);return X.ok&&a.value&&(a.value={...a.value,description:q}),X}async function T(B,q){const X=await nt.updateAlias(B,q);return X.ok&&a.value&&(a.value={...a.value,alias:q}),X}async function A(B){return nt.remove(B)}async function R(B){return nt.resetup(B)}async function Z(B){return nt.reset(B)}async function ue(B){const q=await nt.unassign(B);return q.ok&&a.value&&(a.value={...a.value,area_id:null}),q}async function de(B,q){const X=await nt.placeInArea({target_id:B,place_in_area_id:q});return X.ok&&a.value&&(a.value={...a.value,area_id:q}),X}function pe(){a.value=null,r.value=null,c.clear()}return{devices:e,isLoading:u.isLoading,error:u.error,isLoadingStates:o,stateError:l,stateByDeviceId:t,stateRunId:n,rebootingIds:s,lastLoadedAt:i,currentDevice:a,currentDeviceStatus:r,isLoadingDetail:c.isLoading,errorDetail:c.error,total:d,isRebooting:f,loadDevices:h,setDeviceState:g,loadDeviceStates:P,loadStatesFor:m,rebootDevice:_,loadDeviceDetail:S,loadDeviceStatus:E,updateDeviceName:F,updateDeviceDescription:D,updateDeviceAlias:T,removeDevice:A,unassignDevice:ue,assignToArea:de,resetupDevice:R,resetDevice:Z,clearDeviceDetail:pe}}),Tt={actionsList(e){return Le("/api/v1/scripts/actions/list",e)},regularList(e){return Le("/api/v1/scripts/regular/list",e)},scopesList(e){return Le("/api/v1/scripts/scopes/list",e)},runAction(e,t={}){return Qe("/api/v1/scripts/actions/run",{alias:e,params:t})},setActionState(e,t){return Le(`/api/v1/scripts/actions/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setRegularState(e,t){return Le(`/api/v1/scripts/regular/alias/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},setScopeState(e,t){return Le(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}/${t?"enable":"disable"}`)},scopeCode(e,t){return Le(`/api/v1/scripts/scopes/name/${encodeURIComponent(e)}`,t)},placeInArea(e){return Qe("/api/v1/scripts/place-in-area",e)},unassign(e){return Le(`/api/v1/scripts/id/${encodeURIComponent(String(e))}/unassign-from-area`)}},yn=hn("scripts",()=>{const e=J([]),t=J([]),n=J([]),s=J(new Set),a=J(null),r=J(""),i=gt(),o=gt(),l=gt(),u=gt(),c=Q(()=>e.value.length),d=Q(()=>t.value.length),f=Q(()=>n.value.length),h=Q(()=>B=>s.value.has(B)),g=Q(()=>B=>e.value.find(q=>q.alias===B)||null),y=Q(()=>B=>t.value.find(q=>q.alias===B)||null),m=Q(()=>B=>n.value.find(q=>q.name===B)||null),P=Q(()=>B=>e.value.filter(q=>q.scope===B)),_=Q(()=>B=>t.value.filter(q=>q.scope===B));async function S(){return i.execute(async B=>{var X,W;const q=await Tt.actionsList({signal:B});return q.ok&&(e.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.scripts)||[]),q})}async function E(){return o.execute(async B=>{var X,W;const q=await Tt.regularList({signal:B});return q.ok&&(t.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.scripts)||[]),q})}async function F(){return l.execute(async B=>{var X,W;const q=await Tt.scopesList({signal:B});return q.ok&&(n.value=((W=(X=q.data)==null?void 0:X.data)==null?void 0:W.scopes)||[]),q})}async function D(B,q={}){var te,ve,Se,Ee,we,Me;s.value=new Set(s.value).add(B),a.value=null;const X=await Tt.runAction(B,q),W=new Set(s.value);return W.delete(B),s.value=W,X.ok?(a.value={alias:B,ok:!0,data:(Se=(ve=(te=X.data)==null?void 0:te.data)==null?void 0:ve.return)==null?void 0:Se.result,execTime:(Me=(we=(Ee=X.data)==null?void 0:Ee.data)==null?void 0:we.return)==null?void 0:Me.exec_time},X):(a.value={alias:B,ok:!1,error:X.error},X)}async function T(B,q){const X=await Tt.setActionState(B,q);if(X.ok){const W=e.value.findIndex(te=>te.alias===B);W!==-1&&(e.value[W]={...e.value[W],state:q?"enabled":"disabled"})}return X}async function A(B,q){const X=await Tt.setRegularState(B,q);if(X.ok){const W=t.value.findIndex(te=>te.alias===B);W!==-1&&(t.value[W]={...t.value[W],state:q?"enabled":"disabled"})}return X}async function R(B,q){const X=await Tt.setScopeState(B,q);if(X.ok){const W=n.value.findIndex(te=>te.name===B);W!==-1&&(n.value[W]={...n.value[W],state:q?"enabled":"disabled"})}return X}async function Z(B,q){const X=await Tt.placeInArea({target_id:B,place_in_area_id:q});if(X.ok){const W=e.value.findIndex(ve=>ve.id===B);W!==-1&&e.value.splice(W,1,{...e.value[W],area_id:q});const te=t.value.findIndex(ve=>ve.id===B);te!==-1&&t.value.splice(te,1,{...t.value[te],area_id:q})}return X}async function ue(B){const q=await Tt.unassign(B);if(q.ok){const X=e.value.findIndex(te=>te.id===B);X!==-1&&e.value.splice(X,1,{...e.value[X],area_id:null});const W=t.value.findIndex(te=>te.id===B);W!==-1&&t.value.splice(W,1,{...t.value[W],area_id:null})}return q}async function de(B){return u.execute(async q=>{const X=await Tt.scopeCode(B,{signal:q});return X.ok&&(r.value=typeof X.data=="string"?X.data:""),X})}function pe(){r.value="",u.clear()}return{actions:e,regular:t,scopes:n,isLoadingActions:i.isLoading,isLoadingRegular:o.isLoading,isLoadingScopes:l.isLoading,errorActions:i.error,errorRegular:o.error,errorScopes:l.error,runningAliases:s,lastRunResult:a,currentScopeCode:r,isLoadingScopeCode:u.isLoading,errorScopeCode:u.error,totalActions:c,totalRegular:d,totalScopes:f,isRunning:h,actionByAlias:g,regularByAlias:y,scopeByName:m,actionsByScope:P,regularByScope:_,loadActions:S,loadRegular:E,loadScopes:F,runScript:D,setActionState:T,setRegularState:A,setScopeState:R,assignToArea:Z,unassignFromArea:ue,loadScopeCode:de,clearScopeCode:pe}});function br(){const e=wt(),t=J(""),n=Q(()=>e.areas.filter(u=>String(u.id)!==String(t.value)).map(u=>({value:String(u.id),label:`${u.display_name} (${u.type})`}))),s=J(!1),a=J(""),r=J(!1),i=J("");function o(u){a.value=u?String(u):"",t.value=u?String(u):"",i.value="",s.value=!0}async function l(u,c){var f;if(!u||!c)return;r.value=!0,i.value="";const d=await c(u,a.value);return r.value=!1,d.ok?(s.value=!1,d):(i.value=((f=d.error)==null?void 0:f.message)||"Failed to assign area",d)}return{areaOptions:n,showAssignModal:s,selectedAreaId:a,assignLoading:r,assignError:i,openAssign:o,submitAssignCore:l}}const av={key:1,class:"text-muted",style:{"font-size":"13px"}},rv={__name:"AreaBadgeLink",props:{area:{type:Object,default:null},areaId:{type:[Number,String],default:null}},setup(e){return(t,n)=>{const s=rn("router-link");return e.area?(w(),K(s,{key:0,to:{name:"area-detail",params:{id:e.area.id}},class:"area-link"},{default:k(()=>[I(p(_e),{variant:"info"},{default:k(()=>[U(N(e.area.display_name),1)]),_:1})]),_:1},8,["to"])):e.areaId?(w(),G("span",av,"Area ID: "+N(e.areaId),1)):ae("",!0)}}},wr=Ke(rv,[["__scopeId","data-v-91230b95"]]),iv={class:"devices-panel"},ov={class:"block-title"},lv={key:0,class:"area-assigned"},uv={class:"area-card-info"},cv={class:"text-muted"},dv={__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,s=t,a=wt(),r=Q(()=>{var o;const i=n.areaId!=null?n.areaId:(o=n.item)==null?void 0:o.area_id;return i&&a.areasById[String(i)]||null});return(i,o)=>{const l=rn("router-link");return w(),G("div",iv,[L("div",ov,N(e.title),1),r.value?(w(),G("div",lv,[I(l,{to:{name:"area-detail",params:{id:r.value.id}},class:"area-card"},{default:k(()=>[o[1]||(o[1]=L("div",{class:"area-card-icon text-primary"},[L("i",{class:"ph ph-map-trifold"})],-1)),L("div",uv,[L("strong",null,N(r.value.display_name),1),L("small",cv,N(r.value.type)+" — "+N(r.value.alias),1)])]),_:1},8,["to"])])):(w(),K(rt,{key:1,title:"Not assigned",message:e.emptyMessage},{action:k(()=>[zs(i.$slots,"action",{},()=>[I(p(ge),{variant:"primary",icon:"ph-map-pin",onClick:o[0]||(o[0]=u=>s("assign"))},{default:k(()=>[...o[2]||(o[2]=[U("Assign to area",-1)])]),_:1})],!0)]),_:3},8,["message"]))])}}},Sr=Ke(dv,[["__scopeId","data-v-92cae82c"]]);function $l(e){if(!e)return"";const t=Tl(e);if(!t)return e;const s=new Date-t,a=Math.floor(s/1e3),r=Math.floor(a/60),i=Math.floor(r/60),o=Math.floor(i/24),l=Math.floor(o/7),u=Math.floor(o/30);if(a<10)return"just now";if(a<60)return`${a} sec ago`;if(r<60)return`${r} min ago`;if(i<24){const d=r%60;return d>0?`${i} hour${i>1?"s":""} ${d} min ago`:`${i} hour${i>1?"s":""} ago`}if(o<7)return`${o} day${o>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(o/365);return`${c} year${c>1?"s":""} ago`}function Ga(e){if(!e)return"";const t=Tl(e);if(!t)return e;const s=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"][t.getMonth()],a=t.getDate(),r=t.getFullYear(),i=String(t.getHours()).padStart(2,"0"),o=String(t.getMinutes()).padStart(2,"0");return`${s} ${a}, ${r} ${i}:${o}`}function Tl(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[,a,r,i,o,l,u]=n;return new Date(a,parseInt(r)-1,i,o,l,u)}const s=new Date(e);return isNaN(s.getTime())?null:s}const fv={class:"device-channels-state"},pv={key:3,class:"channels-grid"},vv={key:0,class:"ph ph-caret-up"},gv={key:1,class:"ph ph-caret-down"},hv={key:0,class:"ph ph-caret-up"},mv={key:1,class:"ph ph-caret-down"},yv={key:0,class:"ph ph-caret-up"},_v={key:1,class:"ph ph-caret-down"},bv={key:0,class:"ph ph-caret-up"},wv={key:1,class:"ph ph-caret-down"},Sv={key:0,class:"ph ph-caret-up"},kv={key:1,class:"ph ph-caret-down"},Av={key:0,class:"raw-json text-muted"},xv={__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=Q(()=>t.connectionStatus==="lost"),s=Q(()=>{var g;return((g=t.response)==null?void 0:g.channels)||[]}),a=Q(()=>{var g;return((g=t.response)==null?void 0:g.sensors)||{}}),r=Q(()=>{var g,y;return((y=(g=t.response)==null?void 0:g.hatch)==null?void 0:y.state)||"—"}),i=Q(()=>{var g,y;return((y=(g=t.response)==null?void 0:g.hatch)==null?void 0:y.position_pct)??"—"}),o=Q(()=>String(r.value).includes("open")?"warning":"primary"),l=Q(()=>String(r.value).includes("open")),u=Q(()=>{var g;return((g=t.response)==null?void 0:g.status)==="ok"}),c=Q(()=>{if(!t.response)return"";try{return JSON.stringify(t.response).slice(0,200)}catch{return""}}),d=Q(()=>{var g;return u.value?t.deviceType==="relay"||t.deviceType==="button"?s.value.length>0:t.deviceType==="sensor"?Object.keys(a.value).length>0:t.deviceType==="hatch"?!!((g=t.response)!=null&&g.hatch):!1:!1});function f(g){return g.id??g.channel}function h(g){return{enabled:"success",disabled:"secondary",mute:"primary",waiting:"warning",error:"danger"}[g]||"secondary"}return(g,y)=>(w(),G("div",fv,[e.loading?(w(),K(p(hl),{key:0,circle:"",size:"sm",label:"Loading state"})):n.value?(w(),K(p(_e),{key:1,variant:"danger",size:"sm"},{default:k(()=>[...y[0]||(y[0]=[L("i",{class:"ph ph-wifi-slash"},null,-1),U(" Offline ",-1)])]),_:1})):e.error||!u.value?(w(),K(p(_e),{key:2,variant:"danger",size:"sm"},{default:k(()=>[y[1]||(y[1]=L("i",{class:"ph ph-warning-octagon"},null,-1)),typeof e.error=="string"?(w(),G(De,{key:0},[U(N(e.error),1)],64)):(w(),G(De,{key:1},[U("Error")],64))]),_:1})):d.value?(w(),G("div",pv,[e.deviceType==="relay"?(w(!0),G(De,{key:0},Wt(s.value,m=>(w(),K(p(_e),{key:f(m),variant:m.state==="on"||m.state===!0?"success":"secondary",size:"sm"},{default:k(()=>[s.value.length>1?(w(),G(De,{key:0},[U(N(f(m))+": ",1)],64)):ae("",!0),L("b",null,N(m.state=="off"?"OFF":"ON"),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="button"?(w(!0),G(De,{key:1},Wt(s.value,m=>(w(),K(p(_e),{key:f(m),variant:h(m.indicator),size:"sm"},{default:k(()=>[U(N(f(m))+": ",1),L("b",null,N(m.indicator),1)]),_:2},1032,["variant"]))),128)):e.deviceType==="sensor"?(w(),G(De,{key:2},[a.value.radar?(w(),K(p(_e),{key:0,variant:"primary",size:"sm"},{default:k(()=>[L("i",{class:Ft(["ph",a.value.radar.presence?"ph-user-square":"ph-square"])},null,2),a.value.radar.presence?(w(),G(De,{key:0},[U(N(a.value.radar.activity_score)+" ",1),a.value.radar.activity_score_dynamics==="increasing"?(w(),G("i",vv)):a.value.radar.activity_score_dynamics==="decreasing"?(w(),G("i",gv)):ae("",!0)],64)):ae("",!0)]),_:1})):ae("",!0),a.value.temperature?(w(),K(p(_e),{key:1,variant:"primary",size:"sm"},{default:k(()=>[y[2]||(y[2]=L("i",{class:"ph ph-thermometer"},null,-1)),U(" "+N(a.value.temperature.current)+"°C ",1),a.value.temperature.dynamics==="increasing"?(w(),G("i",hv)):a.value.temperature.dynamics==="decreasing"?(w(),G("i",mv)):ae("",!0)]),_:1})):ae("",!0),a.value.humidity?(w(),K(p(_e),{key:2,variant:"primary",size:"sm"},{default:k(()=>[y[3]||(y[3]=L("i",{class:"ph ph-drop-half-bottom"},null,-1)),U(" "+N(a.value.humidity.current)+"% ",1),a.value.humidity.dynamics==="increasing"?(w(),G("i",yv)):a.value.humidity.dynamics==="decreasing"?(w(),G("i",_v)):ae("",!0)]),_:1})):ae("",!0),a.value.pressure?(w(),K(p(_e),{key:3,variant:"primary",size:"sm"},{default:k(()=>[U(N(a.value.pressure.current)+"hpa ",1),a.value.pressure.dynamics==="increasing"?(w(),G("i",bv)):a.value.pressure.dynamics==="decreasing"?(w(),G("i",wv)):ae("",!0)]),_:1})):ae("",!0),a.value.light?(w(),K(p(_e),{key:4,variant:"primary",size:"sm"},{default:k(()=>[y[4]||(y[4]=L("i",{class:"ph ph-lightbulb"},null,-1)),U(" "+N(a.value.light.percent)+"% ",1)]),_:1})):ae("",!0),a.value.microphone?(w(),K(p(_e),{key:5,variant:"primary",size:"sm"},{default:k(()=>[y[5]||(y[5]=L("i",{class:"ph ph-ear"},null,-1)),U(" "+N(a.value.microphone.current_noise)+"dBi ",1),a.value.microphone.noise_dynamics==="increasing"?(w(),G("i",Sv)):a.value.microphone.noise_dynamics==="decreasing"?(w(),G("i",kv)):ae("",!0)]),_:1})):ae("",!0)],64)):e.deviceType==="hatch"?(w(),K(p(_e),{key:3,variant:o.value,size:"sm"},{default:k(()=>[U(N(r.value)+" ",1),l.value?(w(),G(De,{key:0},[U(" - "+N(i.value)+"%",1)],64)):ae("",!0)]),_:1},8,["variant"])):(w(),G(De,{key:4},[y[6]||(y[6]=L("span",{class:"unknown-type text-muted"},"Unknown type",-1)),c.value?(w(),G("pre",Av,N(c.value),1)):ae("",!0)],64))])):(w(),K(p(_e),{key:4,variant:"secondary",size:"sm"},{default:k(()=>[...y[7]||(y[7]=[U("No data",-1)])]),_:1}))]))}},Pl=Ke(xv,[["__scopeId","data-v-08541c71"]]),Cv={class:"device-cell"},Ev=["innerHTML"],Rv={class:"device-info"},$v={class:"device-name-row"},Tv=["title"],Pv={class:"text-muted"},Iv=["title"],Dv={key:1,class:"text-muted"},Lv={__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=na(),s=mn(),a=Mt(),r={relay:'',button:'',sensor:''},i=Q(()=>{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 o(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(y=>String(y.id)===String(d)),h=await n.rebootDevice(d);h.ok?s.success({title:"Rebooting",text:`Device ${(f==null?void 0:f.name)||(f==null?void 0:f.alias)||"#"+d} is rebooting`}):s.error({title:"Reboot failed",text:((g=h.error)==null?void 0:g.message)||"Failed to reboot device"})}return(d,f)=>{const h=rn("router-link");return w(),K(p(Dn),{columns:i.value,rows:e.devices,caption:e.caption},Eo({"cell-device":k(({row:g})=>[I(h,{to:{name:"device-detail",params:{id:String(g.id)}},class:"device-link"},{default:k(()=>[L("div",Cv,[L("div",{class:"device-icon text-primary",innerHTML:o(g.device_type)},null,8,Ev),L("div",Rv,[L("div",$v,[L("strong",null,N(g.name||g.alias||`Device #${g.id}`),1),g.status&&g.status!=="active"?(w(),K(p(_e),{key:0,variant:l(g.status),size:"sm"},{default:k(()=>[U(N(g.status),1)]),_:2},1032,["variant"])):ae("",!0),L("span",{class:Ft(["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,Tv)]),L("small",Pv,N(g.alias)+" — "+N(g.device_ip||"—"),1)])])]),_:2},1032,["to"])]),"cell-state":k(({row:g})=>[I(Pl,{"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":k(({row:g})=>[g.last_contact?(w(),G("span",{key:0,title:p(Ga)(g.last_contact)},N(p($l)(g.last_contact)),9,Iv)):(w(),G("span",Dv,"—"))]),_:2},[e.showActions&&p(a).has("devices.control")?{name:"cell-actions",fn:k(({row:g})=>[I(p(ge),{variant:"warning",icon:"ph-arrow-clockwise",size:"sm",loading:p(n).isRebooting(g.id),onClick:y=>c(g.id)},{default:k(()=>[...f[0]||(f[0]=[U(" Reboot ",-1)])]),_:1},8,["loading","onClick"])]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Il=Ke(Lv,[["__scopeId","data-v-32549911"]]),Ov={class:"scope-name"},Fv={key:1,class:"muted"},Nv={key:1,class:"muted"},Mv={__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=yn(),s=wt(),a=Mt(),r=Q(()=>{const c={};for(const d of s.areas)c[d.id]=d;return c});function i(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 o(c){const d=c.type||t.scriptType;return d==="action"?"actions":d==="scope"?"scopes":d}const l=Q(()=>{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 h=f.type||t.scriptType;h==="action"?n.setActionState(c,d):h==="regular"&&n.setRegularState(c,d)}return(c,d)=>{const f=rn("router-link");return w(),K(p(Dn),{columns:l.value,rows:e.scripts,caption:e.caption},Eo({"cell-alias":k(({row:h})=>[I(f,{to:{name:"script-detail",params:{type:o(h),id:h.alias}},class:"script-link"},{default:k(()=>[U(N(h.alias),1)]),_:2},1032,["to"])]),"cell-scope":k(({row:h})=>[h.scope?(w(),K(f,{key:0,to:{name:"script-detail",params:{type:"scopes",id:h.scope}},class:"scope-link"},{default:k(()=>[d[0]||(d[0]=L("span",{class:"scope-label"},"Scope",-1)),L("span",Ov,N(h.scope),1),d[1]||(d[1]=L("i",{class:"ph ph-arrow-right"},null,-1))]),_:2},1032,["to"])):(w(),G("span",Fv,"—"))]),"cell-area":k(({row:h})=>[h.area_id?(w(),K(p(_e),{key:0,variant:"primary"},{default:k(()=>[U(N(i(h)),1)]),_:2},1024)):(w(),G("span",Nv,"—"))]),"cell-state":k(({row:h})=>[I(p(_e),{variant:h.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(h.state),1)]),_:2},1032,["variant"])]),_:2},[e.showActions&&p(a).has("scripts.edit")?{name:"cell-actions",fn:k(({row:h})=>[h.state==="enabled"?(w(),K(p(ge),{key:0,variant:"secondary",icon:"ph-pause",onClick:g=>u(h.alias,!1,h)},{default:k(()=>[...d[2]||(d[2]=[U(" Disable ",-1)])]),_:1},8,["onClick"])):(w(),K(p(ge),{key:1,variant:"primary",icon:"ph-play",onClick:g=>u(h.alias,!0,h)},{default:k(()=>[...d[3]||(d[3]=[U(" Enable ",-1)])]),_:1},8,["onClick"]))]),key:"0"}:void 0]),1032,["columns","rows","caption"])}}},Dl=Ke(Mv,[["__scopeId","data-v-1ead75a7"]]),Uv={class:"page-actions-dropdown"},Bv=["aria-expanded","onClick"],kr={__name:"PageActionsDropdown",props:{items:{type:Array,required:!0}},setup(e){return(t,n)=>(w(),G("div",Uv,[I(p(Df),Wo({items:e.items},t.$attrs),{trigger:k(({toggle:s,open:a})=>[L("button",{class:"btn-icon",type:"button","aria-label":"Actions","aria-expanded":a?"true":"false",onClick:s},[...n[0]||(n[0]=[L("i",{class:"ph ph-dots-three-vertical"},null,-1)])],8,Bv)]),_:1},16,["items"])]))}},jv={class:"area-grid"},Vv=["innerHTML"],Hv={key:1},Gv={class:"script-meta"},qv={key:2},zv={__name:"ActionScriptsGrid",props:{scripts:{type:Array,required:!0},showAreaBadge:{type:Boolean,default:!1}},emits:["run-success"],setup(e,{emit:t}){const n=e,s=t,a=on(),r=yn(),i=wt(),o=mn(),l=Mt();function u(f){return!f.area_id||!n.showAreaBadge?null:i.areas.find(h=>h.id===f.area_id)||null}async function c(f){var g,y;const h=await r.runScript(f);h!=null&&h.ok?(o.success({title:`Ran ${f}`,text:(g=r.lastRunResult)!=null&&g.execTime?`Exec time: ${r.lastRunResult.execTime}`:void 0}),s("run-success",{alias:f})):o.error({title:`Failed ${f}`,text:((y=h==null?void 0:h.error)==null?void 0:y.message)||"Unknown error"})}function d(f){a.push({name:"script-detail",params:{type:"actions",id:f}})}return(f,h)=>(w(),G("div",jv,[(w(!0),G(De,null,Wt(e.scripts,g=>(w(),K(p($f),{key:g.alias,title:g.name,onClick:y=>d(g.alias)},{default:k(()=>[g.icon?(w(),G("div",{key:0,innerHTML:g.icon,class:"script-icon"},null,8,Vv)):ae("",!0),g.description?(w(),G("p",Hv,N(g.description),1)):ae("",!0),L("div",Gv,[I(p(_e),{variant:g.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(g.state),1)]),_:2},1032,["variant"]),g.scope?(w(),K(p(_e),{key:0,variant:"primary"},{default:k(()=>[U(N(g.scope),1)]),_:2},1024)):ae("",!0),e.showAreaBadge&&u(g)?(w(),K(p(_e),{key:1,variant:"primary"},{default:k(()=>[U(N(u(g).display_name),1)]),_:2},1024)):ae("",!0)]),g.created_by||g.author?(w(),G("small",qv,N(g.created_by||g.author),1)):ae("",!0)]),actions:k(()=>[p(l).has("scripts.run")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-play",loading:p(r).isRunning(g.alias),disabled:g.state!=="enabled",onClick:Ys(y=>c(g.alias),["stop"])},{default:k(()=>[...h[0]||(h[0]=[U(" Run ",-1)])]),_:1},8,["loading","disabled","onClick"])):ae("",!0)]),_:2},1032,["title","onClick"]))),128))]))}},Ll=Ke(zv,[["__scopeId","data-v-aeab265d"]]),Kv={class:"page"},Wv={key:3},Jv={class:"area-meta"},Yv={class:"actions-panel"},Xv={class:"block-title"},Zv={class:"devices-panel"},Qv={class:"block-title"},eg={class:"scripts-panel"},tg={class:"block-title"},ng={class:"form-group"},sg={key:0,class:"form-group"},ag={key:1,class:"form-group"},rg={key:2,class:"form-group"},ig={key:0,class:"form-group"},og={key:0,class:"form-group"},lg={__name:"AreaDetailPage",setup(e){const t=ea(),n=on(),s=wt(),a=na(),r=yr();yn();const i=mn(),o=Mt(),{showAssignModal:l,selectedAreaId:u,assignLoading:c,assignError:d,openAssign:f,submitAssignCore:h}=br(),g=Q(()=>s.areasById[String(t.params.id)]||null),y=Q(()=>g.value?r.has(g.value.id):!1),m=Q(()=>{var x;const $=[];return o.has("areas.manage")&&($.push({label:"Rename",icon:"ph-pencil",onSelect:ve}),((x=g.value)==null?void 0:x.parent_id)>0?$.push({label:"Change parent area",icon:"ph-map-pin",onSelect:Me},{label:"Unassign from parent",icon:"ph-x-circle",onSelect:Ve}):$.push({label:"Assign to area",icon:"ph-map-pin",onSelect:Me})),$.push({label:y.value?"Remove bookmark":"Bookmark",icon:y.value?"ph-fill ph-bookmark-simple":"ph-bookmark-simple",onSelect:()=>{var ee;return r.toggle((ee=g.value)==null?void 0:ee.id)}}),o.has("areas.manage")&&$.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:Ee}),$}),P=Q(()=>!g.value||g.value.parent_id<=0?null:s.areasById[String(g.value.parent_id)]||null),_=Q(()=>s.currentAreaScripts.filter($=>$.type==="action")),S=Q(()=>s.currentAreaScripts.filter($=>$.type!=="action")),E=Q(()=>{if(!g.value)return!1;const $=!g.value.parent_id||g.value.parent_id<=0,x=s.areas.filter(ee=>!ee.parent_id||ee.parent_id<=0).length;return $&&x===1});function F($){const x=new Set,ee=[$];for(;ee.length;){const v=ee.shift(),b=s.areas.filter(C=>C.parent_id===v);for(const C of b)x.add(C.id),ee.push(C.id)}return x}const D=Q(()=>{if(!g.value)return[];const $=new Set([g.value.id,...F(g.value.id)]);return s.areas.filter(x=>!$.has(x.id)).map(x=>({value:String(x.id),label:`${x.display_name} (${x.type})`}))}),T=J(!1),A=J(!1),R=J(""),Z=Yt({areaId:null,display_name:""}),ue=J(!1),de=J(""),pe=J(!1),B=J(""),q=J(!1),X=J(""),W=J(!1),te=J("");function ve(){g.value&&(Z.areaId=g.value.id,Z.display_name=g.value.display_name,R.value="",T.value=!0)}async function Se(){var x;A.value=!0,R.value="";const $=await s.renameArea(Z.areaId,Z.display_name);if(A.value=!1,!$.ok){R.value=((x=$.error)==null?void 0:x.message)||"Failed to rename area";return}T.value=!1,i.success({title:"Renamed",text:"Area renamed successfully"})}function Ee(){g.value&&(de.value=`Are you sure you want to remove area "${g.value.display_name}"?`,B.value="",ue.value=!0)}async function we(){var x;if(!g.value)return;pe.value=!0,B.value="";const $=await s.removeArea(g.value.id);if(pe.value=!1,!$.ok){B.value=((x=$.error)==null?void 0:x.message)||"Failed to remove area";return}ue.value=!1,i.success({title:"Removed",text:"Area removed successfully"}),n.push({name:"areas-tree"})}function Me(){var $;f((($=g.value)==null?void 0:$.parent_id)>0?g.value.parent_id:"")}async function je(){var ee;const $=(ee=g.value)==null?void 0:ee.id,x=await h($,(v,b)=>s.assignToArea(v,b));x!=null&&x.ok&&i.success({title:"Assigned",text:"Area assigned successfully"})}function Ve(){g.value&&(X.value=`Are you sure you want to unassign area "${g.value.display_name}" from its parent?`,te.value="",q.value=!0)}async function Te(){var x;if(!g.value)return;W.value=!0,te.value="";const $=await s.unassignArea(g.value.id);if(W.value=!1,!$.ok){te.value=((x=$.error)==null?void 0:x.message)||"Failed to unassign area";return}q.value=!1,i.success({title:"Unassigned",text:"Area unassigned from parent successfully"})}async function M(){s.currentAreaDevices.length>0&&await a.loadStatesFor(s.currentAreaDevices)}async function se(){const $=t.params.id;$&&(s.areas.length===0&&await s.loadAreas(),s.areasById[String($)]&&(await s.loadAreaDetail($),await M()))}return kt(()=>t.params.id,async($,x)=>{$&&$!==x&&await se()},{immediate:!1}),bt(()=>{se()}),ds(()=>{s.clearAreaDetail()}),($,x)=>(w(),G("section",Kv,[p(s).isLoading||p(s).isLoadingAreaDetail?(w(),K(_t,{key:0,text:"Loading area"})):p(s).error&&!p(s).areas.length?(w(),K(pt,{key:1,title:"Areas loading failed",error:p(s).error,retry:se},null,8,["error"])):p(s).errorAreaDetail?(w(),K(pt,{key:2,title:"Area loading failed",error:p(s).errorAreaDetail,retry:se},null,8,["error"])):g.value?(w(),G("div",Wv,[I(p(Et),{title:g.value.display_name,kicker:"Area"},{actions:k(()=>[I(kr,{items:m.value},null,8,["items"])]),_:1},8,["title"]),L("div",Jv,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(g.value.type),1)]),_:1}),L("code",null,N(g.value.alias),1),I(wr,{area:P.value,areaId:g.value.parent_id},null,8,["area","areaId"])]),L("div",Yv,[L("div",Xv,"Actions ("+N(_.value.length)+")",1),_.value.length===0?(w(),K(rt,{key:0,title:"No actions",message:"No action scripts assigned to this area."})):(w(),K(Ll,{key:1,scripts:_.value,onRunSuccess:M},null,8,["scripts"]))]),L("div",Zv,[L("div",Qv,"Devices ("+N(p(s).currentAreaDevices.length)+")",1),p(s).currentAreaDevices.length===0?(w(),K(rt,{key:0,title:"No devices",message:"No devices assigned to this area."})):(w(),K(Il,{key:1,devices:p(s).currentAreaDevices,caption:"Area devices"},null,8,["devices"]))]),I(Sr,{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:Me},{action:k(()=>[p(o).has("areas.manage")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-map-pin",onClick:Me},{default:k(()=>[U(N(g.value.parent_id>0?"Change parent area":"Assign to area"),1)]),_:1})):ae("",!0)]),_:1},8,["areaId"]),L("div",eg,[L("div",tg,"Regular scripts ("+N(S.value.length)+")",1),S.value.length===0?(w(),K(rt,{key:0,title:"No regular scripts",message:"No regular scripts assigned to this area."})):(w(),K(Dl,{key:1,scripts:S.value,scriptType:"regular",showArea:!1,showActions:!1,showFilename:!1,caption:"Area regular scripts"},null,8,["scripts"]))])])):(w(),K(rt,{key:4,title:"Area not found",message:"The requested area does not exist."})),I(p(ut),{open:T.value,title:"Rename area","onUpdate:open":x[2]||(x[2]=ee=>T.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[1]||(x[1]=ee=>T.value=!1)},{default:k(()=>[...x[10]||(x[10]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:A.value,onClick:Se},{default:k(()=>[...x[11]||(x[11]=[U("Rename",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",ng,[I(p(At),{modelValue:Z.display_name,"onUpdate:modelValue":x[0]||(x[0]=ee=>Z.display_name=ee),label:"Display name"},null,8,["modelValue"])]),R.value?(w(),G("div",sg,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(R.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:p(l),title:"Assign to parent area","onUpdate:open":x[5]||(x[5]=ee=>l.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[4]||(x[4]=ee=>l.value=!1)},{default:k(()=>[...x[13]||(x[13]=[U("Cancel",-1)])]),_:1}),E.value?ae("",!0):(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-check",loading:p(c),onClick:je},{default:k(()=>[...x[14]||(x[14]=[U(" Assign ",-1)])]),_:1},8,["loading"]))]),default:k(()=>[E.value?ae("",!0):(w(),K(p(fr),{key:0,modelValue:p(u),"onUpdate:modelValue":x[3]||(x[3]=ee=>Ue(u)?u.value=ee:null),label:"Parent area",options:D.value,icon:"ph-map-trifold"},null,8,["modelValue","options"])),E.value?(w(),G("div",ag,[I(p(Ze),{variant:"warning"},{default:k(()=>[...x[12]||(x[12]=[U(" This is the last root area and cannot be assigned as a child. At least one root area must remain. ",-1)])]),_:1})])):ae("",!0),p(d)?(w(),G("div",rg,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(p(d)),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:q.value,title:"Unassign from parent","onUpdate:open":x[7]||(x[7]=ee=>q.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[6]||(x[6]=ee=>q.value=!1)},{default:k(()=>[...x[15]||(x[15]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"warning",icon:"ph-x-circle",loading:W.value,onClick:Te},{default:k(()=>[...x[16]||(x[16]=[U(" Unassign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(X.value),1),te.value?(w(),G("div",ig,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(te.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:ue.value,title:"Remove area","onUpdate:open":x[9]||(x[9]=ee=>ue.value=ee)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[8]||(x[8]=ee=>ue.value=!1)},{default:k(()=>[...x[17]||(x[17]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"danger",icon:"ph-trash",loading:pe.value,onClick:we},{default:k(()=>[...x[18]||(x[18]=[U(" Remove ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(de.value),1),B.value?(w(),G("div",og,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(B.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"])]))}},ug=Ke(lg,[["__scopeId","data-v-757a0469"]]),cg={class:"page"},dg={key:3,class:"devices-panel"},fg={class:"devices-summary"},pg=300*1e3,vg={__name:"DevicesListPage",setup(e){const t=na(),n=Q(()=>{if(!t.lastLoadedAt)return!1;const a=new Date(t.lastLoadedAt).getTime();return Date.now()-a>pg});async function s(){(await t.loadDevices()).ok&&await t.loadDeviceStates()}return bt(s),(a,r)=>(w(),G("section",cg,[I(p(Et),{title:"Device Matrix",kicker:"Devices"},{actions:k(()=>[I(p(ge),{loading:p(t).isLoading||p(t).isLoadingStates,icon:"ph-arrow-clockwise",onClick:s},{default:k(()=>[...r[0]||(r[0]=[U(" Refresh ",-1)])]),_:1},8,["loading"])]),_:1}),p(t).isLoading?(w(),K(_t,{key:0,text:"Loading devices"})):p(t).error?(w(),K(pt,{key:1,title:"Devices loading failed",error:p(t).error,retry:s},null,8,["error"])):p(t).devices.length===0?(w(),K(rt,{key:2,title:"No active devices",message:"No active devices found."})):(w(),G("div",dg,[L("div",fg,[I(p(_e),{variant:"primary"},{default:k(()=>[U("Total: "+N(p(t).total),1)]),_:1}),p(t).isLoadingStates?(w(),K(p(_e),{key:0,variant:"secondary"},{default:k(()=>[...r[1]||(r[1]=[U("States loading",-1)])]),_:1})):(w(),K(p(_e),{key:1,variant:"success"},{default:k(()=>[...r[2]||(r[2]=[U("States settled",-1)])]),_:1})),n.value?(w(),K(p(_e),{key:2,variant:"warning"},{default:k(()=>[...r[3]||(r[3]=[U("Stale data",-1)])]),_:1})):ae("",!0)]),p(t).stateError?(w(),K(pt,{key:0,title:"Device states loading failed",error:p(t).stateError},null,8,["error"])):ae("",!0),I(Il,{devices:p(t).devices,caption:"Registered devices"},null,8,["devices"])]))]))}},gg=Ke(vg,[["__scopeId","data-v-635f3900"]]),hg=hn("scanning",()=>{const e=J("setup"),t=J([]),n=gt(),s=Q(()=>t.value.length);async function a(){return n.execute(async o=>{var u,c;const l=e.value==="setup"?await nt.scanningSetup({signal:o}):await nt.scanningAll({signal:o});return l.ok&&(t.value=((c=(u=l.data)==null?void 0:u.data)==null?void 0:c.devices)||[]),l})}function r(o){e.value=o,t.value=[],n.clear()}async function i(o){return nt.setupNewDevice(o)}return{mode:e,devices:t,isLoading:n.isLoading,error:n.error,total:s,scan:a,setMode:r,setupDevice:i}}),mg={class:"page"},yg={class:"scan-filters"},_g={key:3,class:"devices-panel"},bg={class:"devices-summary"},wg={class:"device-cell"},Sg=["innerHTML"],kg={class:"device-info"},Ag={class:"firmware"},xg={key:1,class:"muted"},Cg={class:"form-group"},Eg={class:"form-group"},Rg={class:"form-group"},$g={key:0,class:"form-group"},Tg={__name:"DevicesScanningPage",setup(e){const t=hg(),n=mn(),s=Mt(),a=J(!1),r=J(!1),i=J(""),o=Yt({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(y){return l[y]||l.relay}function d(y){t.setMode(y)}function f(){t.scan()}function h(y){o.device_ip=y.ip_address,o.alias="",o.name="",o.description="",i.value="",a.value=!0}async function g(){var m;r.value=!0,i.value="";const y=await t.setupDevice({...o});if(r.value=!1,!y.ok){i.value=((m=y.error)==null?void 0:m.message)||"Failed to setup device";return}a.value=!1,n.success({title:"Device added",text:`Device ${o.alias||o.name||""} added successfully`})}return(y,m)=>(w(),G("section",mg,[I(p(Et),{title:"Scanning",kicker:"Devices"},{actions:k(()=>[I(p(ge),{loading:p(t).isLoading,icon:"ph-magnifying-glass",onClick:f},{default:k(()=>[...m[7]||(m[7]=[U(" Scan ",-1)])]),_:1},8,["loading"])]),_:1}),L("div",yg,[m[10]||(m[10]=L("span",{class:"filter-label text-muted"},"Mode:",-1)),I(p(wi),{selected:p(t).mode==="setup",clickable:"",icon:"ph-plug",onClick:m[0]||(m[0]=P=>d("setup"))},{default:k(()=>[...m[8]||(m[8]=[U(" Setup ",-1)])]),_:1},8,["selected"]),I(p(wi),{selected:p(t).mode==="all",clickable:"",icon:"ph-scan",onClick:m[1]||(m[1]=P=>d("all"))},{default:k(()=>[...m[9]||(m[9]=[U(" All ",-1)])]),_:1},8,["selected"])]),p(t).isLoading?(w(),K(_t,{key:0,text:"Scanning network"})):p(t).error?(w(),K(pt,{key:1,title:"Scan failed",error:p(t).error,retry:f},null,8,["error"])):p(t).devices.length===0?(w(),K(rt,{key:2,title:"No devices found",message:"Choose scan mode and click Scan to discover devices."})):(w(),G("div",_g,[L("div",bg,[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).total)+" found",1)]),_:1})]),I(p(Dn),{columns:u,rows:p(t).devices,caption:"Discovered devices"},{"cell-device":k(({row:P})=>[L("div",wg,[L("div",{class:"device-icon",innerHTML:c(P.device_type)},null,8,Sg),L("div",kg,[L("strong",null,N(P.device_name||"Unknown"),1),L("small",null,N(P.device_type||"unknown")+" — "+N(P.ip_address||"—"),1)])])]),"cell-status":k(({row:P})=>[I(p(_e),{variant:P.status==="setup"?"warning":"success"},{default:k(()=>[U(N(P.status||"unknown"),1)]),_:2},1032,["variant"])]),"cell-firmware":k(({row:P})=>[L("span",Ag,N(P.firmware_version||"—"),1)]),"cell-actions":k(({row:P})=>[P.status==="setup"&&p(s).has("devices.setup")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-plus",size:"sm",onClick:_=>h(P)},{default:k(()=>[...m[11]||(m[11]=[U(" Add ",-1)])]),_:1},8,["onClick"])):(w(),G("span",xg,"—"))]),_:1},8,["rows"])])),I(p(ut),{open:a.value,title:"Setup new device","onUpdate:open":m[6]||(m[6]=P=>a.value=P)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:m[5]||(m[5]=P=>a.value=!1)},{default:k(()=>[...m[12]||(m[12]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-plus",loading:r.value,onClick:g},{default:k(()=>[...m[13]||(m[13]=[U(" Add device ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",Cg,[I(p(At),{modelValue:o.alias,"onUpdate:modelValue":m[2]||(m[2]=P=>o.alias=P),label:"Alias",placeholder:"kitchen_relay"},null,8,["modelValue"])]),L("div",Eg,[I(p(At),{modelValue:o.name,"onUpdate:modelValue":m[3]||(m[3]=P=>o.name=P),label:"Name",placeholder:"Kitchen Relay"},null,8,["modelValue"])]),L("div",Rg,[I(p(At),{modelValue:o.description,"onUpdate:modelValue":m[4]||(m[4]=P=>o.description=P),label:"Description"},null,8,["modelValue"])]),i.value?(w(),G("div",$g,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(i.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"])]))}},Pg=Ke(Tg,[["__scopeId","data-v-1a01bb19"]]);function Di(e){return encodeURIComponent(String(e))}const Vn={async list(){return Le("/api/v1/firmwares")},async detail(e){return Le(`/api/v1/firmwares/id/${Di(e)}`)},async refresh(){return Qe("/api/v1/firmwares/refresh")},async deviceCompatibility(e){return Le(`/api/v1/devices/id/${Di(e)}/firmware-compatibility`)},async updateDeviceFirmware(e,t){return Qe("/api/v1/devices/update-firmware",{device_id:e,firmware_id:t})}},Ol=hn("firmwares",()=>{const e=J([]),t=J(null),n=J(null),s=gt(),a=gt(),r=gt(),i=gt(),o=Q(()=>s.isLoading.value),l=Q(()=>a.isLoading.value),u=Q(()=>r.isLoading.value),c=Q(()=>i.isLoading.value);async function d(){return s.execute(async P=>{var S,E;const _=await Vn.list({signal:P});return _.ok&&(e.value=((E=(S=_.data)==null?void 0:S.data)==null?void 0:E.firmwares)||[]),_})}async function f(){return r.execute(async()=>{const P=await Vn.refresh();return P.ok&&await d(),P})}async function h(P){return a.execute(async _=>{var E,F;const S=await Vn.detail(P,{signal:_});return S.ok&&(t.value=((F=(E=S.data)==null?void 0:E.data)==null?void 0:F.firmware)||null),S})}async function g(P){return i.execute(async _=>{var E,F,D,T;const S=await Vn.deviceCompatibility(P,{signal:_});return S.ok&&(n.value={compatible:((F=(E=S.data)==null?void 0:E.data)==null?void 0:F.compatible)||[],currentVersion:((T=(D=S.data)==null?void 0:D.data)==null?void 0:T.current_version)||"unknown"}),S})}async function y(P,_){return r.execute(async()=>Vn.updateDeviceFirmware(P,_))}function m(){n.value=null}return{firmwares:e,current:t,compatibility:n,isLoadingList:o,isLoadingDetail:l,isUpdating:u,isLoadingCompatibility:c,loadFirmwares:d,refreshFirmwares:f,loadFirmwareDetail:h,loadDeviceCompatibility:g,updateDeviceFirmware:y,clearCompatibility:m}}),Ig={class:"page"},Dg={key:2},Lg={class:"device-meta"},Og={class:"script-info-panel"},Fg={class:"info-row"},Ng={class:"info-value"},Mg={class:"info-row"},Ug={class:"info-value"},Bg={class:"info-row"},jg={class:"info-value"},Vg={class:"info-row"},Hg={class:"info-value"},Gg={class:"info-row"},qg={class:"info-value"},zg={class:"info-row"},Kg={class:"info-value"},Wg={class:"info-row"},Jg={class:"info-value"},Yg={key:0,class:"info-row"},Xg=["title"],Zg={key:1,class:"info-row"},Qg={class:"info-value"},eh={key:0,class:"devices-panel"},th={key:1,class:"devices-panel"},nh={class:"form-group"},sh={class:"form-group"},ah={class:"form-group"},rh={key:0,class:"form-group"},ih={key:0,class:"form-group"},oh={key:0,class:"form-group"},lh={key:0,class:"form-group"},uh={key:0,class:"form-group"},ch={key:0,class:"form-group"},dh={class:"firmware-options"},fh=["onClick"],ph={class:"fw-version"},vh={key:0,class:"fw-desc"},gh={key:0,class:"form-group"},hh={__name:"DeviceDetailPage",setup(e){const t=ea(),n=on(),s=na(),a=wt(),r=Ol(),i=mn(),o=Mt(),{areaOptions:l,showAssignModal:u,selectedAreaId:c,assignLoading:d,assignError:f,openAssign:h,submitAssignCore:g}=br(),y=Q(()=>t.params.id),m=Q(()=>s.currentDevice),P=Q(()=>s.isLoadingDetail),_=Q(()=>s.errorDetail),S=J(!1),E=J(null),F=Q(()=>{var O;const ie=(O=m.value)==null?void 0:O.area_id;return ie&&a.areasById[String(ie)]||null}),D=J(!1),T=J(!1),A=J(""),R=Yt({name:"",description:"",alias:""}),Z=J(!1),ue=J(""),de=J(!1),pe=J(""),B=J(!1),q=J(""),X=J(!1),W=J(""),te=J(!1),ve=J(""),Se=J(!1),Ee=J(""),we=J(!1),Me=J(""),je=J(!1),Ve=J(""),Te=J(!1),M=J(null),se=J(""),$=Q(()=>{var ie,O;return(((O=(ie=r.compatibility)==null?void 0:ie.compatible)==null?void 0:O.length)||0)>0}),x=Q(()=>{var ie;return((ie=r.compatibility)==null?void 0:ie.compatible)||[]}),ee=Q(()=>{var O,Ie;const ie=[];return o.has("devices.edit")&&(ie.push({label:"Edit",icon:"ph-pencil",onSelect:v}),(O=m.value)!=null&&O.area_id?ie.push({label:"Change area",icon:"ph-map-pin",onSelect:C},{label:"Unassign from area",icon:"ph-x-circle",onSelect:z}):ie.push({label:"Assign to area",icon:"ph-map-pin",onSelect:C})),o.has("devices.setup")&&ie.push({label:"ReSetup",icon:"ph-gear",onSelect:Y}),o.has("devices.control")&&ie.push({label:"Reboot",icon:"ph-arrow-clockwise",disabled:s.isRebooting((Ie=m.value)==null?void 0:Ie.id),onSelect:ne}),o.has("devices.edit")&&ie.push({label:"Reset",icon:"ph-x",danger:!0,onSelect:le}),o.has("devices.delete")&&ie.push({label:"Remove",icon:"ph-trash",danger:!0,onSelect:oe}),ie});function v(){m.value&&(R.name=m.value.name||"",R.description=m.value.description||"",R.alias=m.value.alias||"",A.value="",D.value=!0)}async function b(){var et,he,We,ze;T.value=!0,A.value="";const ie=y.value,O=await Promise.all([R.name!==((et=m.value)==null?void 0:et.name)?s.updateDeviceName(ie,R.name):{ok:!0},R.description!==((he=m.value)==null?void 0:he.description)?s.updateDeviceDescription(ie,R.description):{ok:!0},R.alias!==((We=m.value)==null?void 0:We.alias)?s.updateDeviceAlias(ie,R.alias):{ok:!0}]);T.value=!1;const Ie=O.find(Fn=>!Fn.ok);if(Ie){A.value=((ze=Ie.error)==null?void 0:ze.message)||"Failed to update device";return}D.value=!1,i.success({title:"Updated",text:"Device updated successfully"})}function C(){var ie;h((ie=m.value)==null?void 0:ie.area_id)}async function j(){const ie=await g(y.value,s.assignToArea.bind(s));ie!=null&&ie.ok&&i.success({title:"Assigned",text:"Device assigned to area successfully"})}function z(){m.value&&(q.value=`Are you sure you want to unassign device "${m.value.name||m.value.alias}" from its area?`,W.value="",B.value=!0)}async function H(){var O;if(!m.value)return;X.value=!0,W.value="";const ie=await s.unassignDevice(y.value);if(X.value=!1,!ie.ok){W.value=((O=ie.error)==null?void 0:O.message)||"Failed to unassign device";return}B.value=!1,i.success({title:"Unassigned",text:"Device unassigned from area successfully"})}function oe(){m.value&&(ue.value=`Are you sure you want to remove device "${m.value.name||m.value.alias}"?`,pe.value="",Z.value=!0)}async function re(){var Ie;const ie=y.value;de.value=!0,pe.value="";const O=await s.removeDevice(ie);if(de.value=!1,!O.ok){pe.value=((Ie=O.error)==null?void 0:Ie.message)||"Failed to remove device";return}Z.value=!1,i.success({title:"Removed",text:"Device removed successfully"}),n.push({name:"devices"})}async function ne(){var O;if(!m.value)return;const ie=await s.rebootDevice(m.value.id);ie.ok?i.success({title:"Rebooting",text:`Device ${m.value.name||m.value.alias||"#"+m.value.id} is rebooting`}):i.error({title:"Reboot failed",text:((O=ie.error)==null?void 0:O.message)||"Failed to reboot device"})}function Y(){m.value&&(ve.value=`Are you sure you want to repeat setup for device "${m.value.name||m.value.alias}"?`,Ee.value="",te.value=!0)}async function fe(){var Ie,et,he;const ie=y.value;Se.value=!0,Ee.value="";const O=await s.resetupDevice(ie);if(Se.value=!1,!O.ok){Ee.value=((Ie=O.error)==null?void 0:Ie.message)||"Failed to repeat device setup";return}te.value=!1,i.success({title:"Success",text:`Device ${((et=m.value)==null?void 0:et.name)||((he=m.value)==null?void 0:he.alias)||"#"+ie} setup repeated`}),n.push({name:"devices"})}function le(){m.value&&(Me.value=`Are you sure you want to reset device "${m.value.name||m.value.alias}"?`,Ve.value="",we.value=!0)}async function ce(){var Ie,et,he;const ie=y.value;je.value=!0,Ve.value="";const O=await s.resetDevice(ie);if(je.value=!1,!O.ok){Ve.value=((Ie=O.error)==null?void 0:Ie.message)||"Failed to reset device";return}we.value=!1,i.success({title:"Success",text:`Device ${((et=m.value)==null?void 0:et.name)||((he=m.value)==null?void 0:he.alias)||"#"+ie} reset`}),n.push({name:"devices"})}function me(){var ie;M.value=((ie=x.value[0])==null?void 0:ie.id)||null,se.value="",Te.value=!0}async function ke(){var O;if(!M.value||!m.value)return;const ie=await r.updateDeviceFirmware(m.value.id,M.value);if(!ie.ok){se.value=((O=ie.error)==null?void 0:O.message)||"Firmware update failed";return}Te.value=!1,i.success({title:"Updated",text:"Firmware update pushed successfully"}),await s.loadDeviceDetail(y.value)}function Re(ie){return{active:"success",removed:"danger",freezed:"warning",setup:"primary"}[ie]||"secondary"}async function Pe(){const ie=y.value;if(!ie||!m.value||m.value.connection_status!=="active")return;S.value=!0,E.value=null;const O=await s.loadDeviceStatus(ie);S.value=!1,O.ok||(E.value=O.error)}async function Be(){var O;const ie=y.value;ie&&(a.areas.length===0&&await a.loadAreas(),await s.loadDeviceDetail(ie),((O=m.value)==null?void 0:O.connection_status)==="active"&&(await Pe(),await r.loadDeviceCompatibility(ie)))}return bt(()=>{Be()}),ds(()=>{s.clearDeviceDetail(),r.clearCompatibility()}),kt(()=>t.params.id,(ie,O)=>{ie!==O&&(s.clearDeviceDetail(),Be())}),(ie,O)=>{var Ie,et;return w(),G("section",Ig,[P.value?(w(),K(_t,{key:0,text:"Loading device details"})):_.value?(w(),K(pt,{key:1,title:"Device loading failed",error:_.value,retry:Be},null,8,["error"])):m.value?(w(),G("div",Dg,[I(p(Et),{title:m.value.name||m.value.alias||`Device #${m.value.id}`,kicker:"Device"},{actions:k(()=>[I(kr,{items:ee.value},null,8,["items"])]),_:1},8,["title"]),L("div",Lg,[I(p(_e),{variant:m.value.connection_status==="active"?"success":"danger"},{default:k(()=>[U(N(m.value.connection_status==="active"?"Online":"Offline"),1)]),_:1},8,["variant"]),L("code",null,N(m.value.alias),1),I(wr,{area:F.value,areaId:m.value.area_id},null,8,["area","areaId"])]),L("div",Og,[L("div",Fg,[O[18]||(O[18]=L("span",{class:"info-label text-muted"},"System status:",-1)),L("span",Ng,[I(p(_e),{variant:Re(m.value.status)},{default:k(()=>[U(N(m.value.status),1)]),_:1},8,["variant"])])]),L("div",Mg,[O[19]||(O[19]=L("span",{class:"info-label text-muted"},"Type:",-1)),L("span",Ug,N(m.value.device_type),1)]),L("div",Bg,[O[20]||(O[20]=L("span",{class:"info-label text-muted"},"State:",-1)),L("span",jg,[I(Pl,{"device-type":m.value.device_type,response:(Ie=p(s).currentDeviceStatus)==null?void 0:Ie.raw,loading:S.value,error:(et=E.value)==null?void 0:et.message,"connection-status":m.value.connection_status},null,8,["device-type","response","loading","error","connection-status"])])]),L("div",Vg,[O[21]||(O[21]=L("span",{class:"info-label text-muted"},"IP:",-1)),L("span",Hg,N(m.value.device_ip),1)]),L("div",Gg,[O[22]||(O[22]=L("span",{class:"info-label text-muted"},"MAC:",-1)),L("span",qg,N(m.value.device_mac),1)]),L("div",zg,[O[23]||(O[23]=L("span",{class:"info-label text-muted"},"Hard ID:",-1)),L("span",Kg,N(m.value.device_hard_id),1)]),L("div",Wg,[O[24]||(O[24]=L("span",{class:"info-label text-muted"},"Firmware:",-1)),L("span",Jg,N(m.value.firmware_version),1)]),m.value.last_contact?(w(),G("div",Yg,[O[25]||(O[25]=L("span",{class:"info-label text-muted"},"Last contact:",-1)),L("span",{class:"info-value",title:p(Ga)(m.value.last_contact)},N(p($l)(m.value.last_contact)),9,Xg)])):ae("",!0),m.value.create_at?(w(),G("div",Zg,[O[26]||(O[26]=L("span",{class:"info-label text-muted"},"Created:",-1)),L("span",Qg,N(p(Ga)(m.value.create_at)),1)])):ae("",!0)]),I(Sr,{item:m.value,emptyMessage:"This device is not assigned to any area.",onAssign:C},{action:k(()=>[p(o).has("devices.edit")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-map-pin",onClick:C},{default:k(()=>{var he;return[U(N((he=m.value)!=null&&he.area_id?"Change area":"Assign to area"),1)]}),_:1})):ae("",!0)]),_:1},8,["item"]),$.value&&p(o).has("firmware.upload")?(w(),G("div",eh,[O[29]||(O[29]=L("div",{class:"block-title"},"Firmware Update",-1)),I(p(Ze),{variant:"info"},{default:k(()=>[O[27]||(O[27]=U(" New firmware available: ",-1)),(w(!0),G(De,null,Wt(x.value,he=>(w(),K(p(_e),{key:he.id,variant:"success"},{default:k(()=>[U(N(he.version),1)]),_:2},1024))),128))]),_:1}),I(p(ge),{variant:"primary",icon:"ph-cloud-arrow-down",onClick:me},{default:k(()=>[...O[28]||(O[28]=[U(" Update Firmware ",-1)])]),_:1})])):ae("",!0),m.value.description?(w(),G("div",th,[O[30]||(O[30]=L("div",{class:"block-title"},"Description",-1)),L("p",null,N(m.value.description),1)])):ae("",!0)])):(w(),K(rt,{key:3,title:"Device not found",message:"The requested device does not exist."})),I(p(ut),{open:D.value,title:"Edit device","onUpdate:open":O[4]||(O[4]=he=>D.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[3]||(O[3]=he=>D.value=!1)},{default:k(()=>[...O[31]||(O[31]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:T.value,onClick:b},{default:k(()=>[...O[32]||(O[32]=[U(" Save ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("div",nh,[I(p(At),{modelValue:R.name,"onUpdate:modelValue":O[0]||(O[0]=he=>R.name=he),label:"Name"},null,8,["modelValue"])]),L("div",sh,[I(p(At),{modelValue:R.description,"onUpdate:modelValue":O[1]||(O[1]=he=>R.description=he),label:"Description"},null,8,["modelValue"])]),L("div",ah,[I(p(At),{modelValue:R.alias,"onUpdate:modelValue":O[2]||(O[2]=he=>R.alias=he),label:"Alias"},null,8,["modelValue"])]),A.value?(w(),G("div",rh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(A.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:p(u),title:"Assign to area","onUpdate:open":O[7]||(O[7]=he=>u.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[6]||(O[6]=he=>u.value=!1)},{default:k(()=>[...O[33]||(O[33]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:p(d),onClick:j},{default:k(()=>[...O[34]||(O[34]=[U(" Assign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[I(p(fr),{modelValue:p(c),"onUpdate:modelValue":O[5]||(O[5]=he=>Ue(c)?c.value=he:null),label:"Area",options:p(l),icon:"ph-map-trifold"},null,8,["modelValue","options"]),p(f)?(w(),G("div",ih,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(p(f)),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:B.value,title:"Unassign from area","onUpdate:open":O[9]||(O[9]=he=>B.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[8]||(O[8]=he=>B.value=!1)},{default:k(()=>[...O[35]||(O[35]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"warning",icon:"ph-x-circle",loading:X.value,onClick:H},{default:k(()=>[...O[36]||(O[36]=[U(" Unassign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(q.value),1),W.value?(w(),G("div",oh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(W.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:Z.value,title:"Remove device","onUpdate:open":O[11]||(O[11]=he=>Z.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[10]||(O[10]=he=>Z.value=!1)},{default:k(()=>[...O[37]||(O[37]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"danger",icon:"ph-trash",loading:de.value,onClick:re},{default:k(()=>[...O[38]||(O[38]=[U(" Remove ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(ue.value),1),pe.value?(w(),G("div",lh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(pe.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:te.value,title:"Repeat device setup","onUpdate:open":O[13]||(O[13]=he=>te.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[12]||(O[12]=he=>te.value=!1)},{default:k(()=>[...O[39]||(O[39]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-gear",loading:Se.value,onClick:fe},{default:k(()=>[...O[40]||(O[40]=[U(" ReSetup ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(ve.value),1),Ee.value?(w(),G("div",uh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(Ee.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:we.value,title:"Reset device","onUpdate:open":O[15]||(O[15]=he=>we.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[14]||(O[14]=he=>we.value=!1)},{default:k(()=>[...O[41]||(O[41]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"danger",icon:"ph-x",loading:je.value,onClick:ce},{default:k(()=>[...O[42]||(O[42]=[U(" Reset ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(Me.value),1),Ve.value?(w(),G("div",ch,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(Ve.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:Te.value,title:"Update Firmware","onUpdate:open":O[17]||(O[17]=he=>Te.value=he)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:O[16]||(O[16]=he=>Te.value=!1)},{default:k(()=>[...O[45]||(O[45]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:p(r).isUpdating,disabled:!M.value,onClick:ke},{default:k(()=>[...O[46]||(O[46]=[U(" Update ",-1)])]),_:1},8,["loading","disabled"])]),default:k(()=>{var he,We;return[L("p",null,[O[43]||(O[43]=U("Select firmware to install on ",-1)),L("strong",null,N(((he=m.value)==null?void 0:he.name)||((We=m.value)==null?void 0:We.alias)),1),O[44]||(O[44]=U(":",-1))]),L("div",dh,[(w(!0),G(De,null,Wt(x.value,ze=>(w(),G("div",{key:ze.id,class:Ft(["firmware-option",{active:M.value===ze.id}]),onClick:Fn=>M.value=ze.id},[L("div",ph,N(ze.version),1),ze.description?(w(),G("div",vh,N(ze.description),1)):ae("",!0)],10,fh))),128))]),se.value?(w(),G("div",gh,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(se.value),1)]),_:1})])):ae("",!0)]}),_:1},8,["open"])])}}},mh=Ke(hh,[["__scopeId","data-v-a9f83185"]]),yh={class:"page"},_h={__name:"ScriptsActionsPage",setup(e){const t=yn(),n=wt();return bt(()=>{t.loadActions(),n.areas.length===0&&n.loadAreas()}),(s,a)=>(w(),G("section",yh,[I(p(Et),{title:"Actions",kicker:"Scripts"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).totalActions)+" scripts",1)]),_:1})]),_:1}),p(t).isLoadingActions?(w(),K(_t,{key:0,text:"Loading actions"})):p(t).errorActions?(w(),K(pt,{key:1,title:"Actions loading failed",error:p(t).errorActions,retry:p(t).loadActions},null,8,["error","retry"])):p(t).actions.length===0?(w(),K(rt,{key:2,title:"No action scripts",message:"No action scripts registered."})):(w(),K(Ll,{key:3,scripts:p(t).actions,"show-area-badge":""},null,8,["scripts"]))]))}},bh=Ke(_h,[["__scopeId","data-v-f336617a"]]),wh={class:"page"},Sh={key:3,class:"devices-panel"},kh={__name:"ScriptsRegularPage",setup(e){const t=yn(),n=wt();return bt(()=>{t.loadRegular(),n.areas.length===0&&n.loadAreas()}),(s,a)=>(w(),G("section",wh,[I(p(Et),{title:"Regular",kicker:"Scripts"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).totalRegular)+" scripts",1)]),_:1})]),_:1}),p(t).isLoadingRegular?(w(),K(_t,{key:0,text:"Loading regular scripts"})):p(t).errorRegular?(w(),K(pt,{key:1,title:"Regular scripts loading failed",error:p(t).errorRegular,retry:p(t).loadRegular},null,8,["error","retry"])):p(t).regular.length===0?(w(),K(rt,{key:2,title:"No regular scripts",message:"No regular scripts registered."})):(w(),G("div",Sh,[I(Dl,{scripts:p(t).regular,scriptType:"regular",showArea:!0,showScope:!0,showFilename:!0,showActions:!0,caption:"Regular scripts"},null,8,["scripts"])]))]))}},Ah={class:"page"},xh={key:3,class:"devices-panel"},Ch={__name:"ScriptsScopesPage",setup(e){on();const t=yn(),n=Mt(),s=[{key:"name",label:"Name"},{key:"filename",label:"File"},{key:"state",label:"State"},{key:"path",label:"Path"},{key:"actions",label:"Actions"}];function a(r,i){t.setScopeState(r,i)}return bt(()=>{t.loadScopes()}),(r,i)=>{const o=rn("router-link");return w(),G("section",Ah,[I(p(Et),{title:"Scopes",kicker:"Scripts"},{actions:k(()=>[I(p(_e),{variant:"primary"},{default:k(()=>[U(N(p(t).totalScopes)+" scopes",1)]),_:1})]),_:1}),p(t).isLoadingScopes?(w(),K(_t,{key:0,text:"Loading scopes"})):p(t).errorScopes?(w(),K(pt,{key:1,title:"Scopes loading failed",error:p(t).errorScopes,retry:p(t).loadScopes},null,8,["error","retry"])):p(t).scopes.length===0?(w(),K(rt,{key:2,title:"No scopes",message:"No script scopes registered."})):(w(),G("div",xh,[I(p(Dn),{columns:s,rows:p(t).scopes,caption:"Script scopes"},{"cell-name":k(({row:l})=>[I(o,{to:{name:"script-detail",params:{type:"scopes",id:l.name}},class:"script-link"},{default:k(()=>[U(N(l.name),1)]),_:2},1032,["to"])]),"cell-state":k(({row:l})=>[I(p(_e),{variant:l.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(l.state),1)]),_:2},1032,["variant"])]),"cell-actions":k(({row:l})=>[l.state==="enabled"&&p(n).has("scripts.edit")?(w(),K(p(ge),{key:0,variant:"secondary",icon:"ph-pause",onClick:u=>a(l.name,!1)},{default:k(()=>[...i[0]||(i[0]=[U(" Disable ",-1)])]),_:1},8,["onClick"])):p(n).has("scripts.edit")?(w(),K(p(ge),{key:1,variant:"primary",icon:"ph-play",onClick:u=>a(l.name,!0)},{default:k(()=>[...i[1]||(i[1]=[U(" Enable ",-1)])]),_:1},8,["onClick"])):ae("",!0)]),_:1},8,["rows"])]))])}}},Eh=Ke(Ch,[["__scopeId","data-v-c8486788"]]);var Li=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Rh(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var wa={exports:{}},Oi;function $h(){return Oi||(Oi=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(s){var a=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,r=0,i={},o={manual:s.Prism&&s.Prism.manual,disableWorkerMessageHandler:s.Prism&&s.Prism.disableWorkerMessageHandler,util:{encode:function _(S){return S instanceof l?new l(S.type,_(S.content),S.alias):Array.isArray(S)?S.map(_):S.replace(/&/g,"&").replace(/"u")return null;if(document.currentScript&&document.currentScript.tagName==="SCRIPT")return document.currentScript;try{throw new Error}catch(F){var _=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(F.stack)||[])[1];if(_){var S=document.getElementsByTagName("script");for(var E in S)if(S[E].src==_)return S[E]}return null}},isActive:function(_,S,E){for(var F="no-"+S;_;){var D=_.classList;if(D.contains(S))return!0;if(D.contains(F))return!1;_=_.parentElement}return!!E}},languages:{plain:i,plaintext:i,text:i,txt:i,extend:function(_,S){var E=o.util.clone(o.languages[_]);for(var F in S)E[F]=S[F];return E},insertBefore:function(_,S,E,F){F=F||o.languages;var D=F[_],T={};for(var A in D)if(D.hasOwnProperty(A)){if(A==S)for(var R in E)E.hasOwnProperty(R)&&(T[R]=E[R]);E.hasOwnProperty(A)||(T[A]=D[A])}var Z=F[_];return F[_]=T,o.languages.DFS(o.languages,function(ue,de){de===Z&&ue!=_&&(this[ue]=T)}),T},DFS:function _(S,E,F,D){D=D||{};var T=o.util.objId;for(var A in S)if(S.hasOwnProperty(A)){E.call(S,A,S[A],F||A);var R=S[A],Z=o.util.type(R);Z==="Object"&&!D[T(R)]?(D[T(R)]=!0,_(R,E,null,D)):Z==="Array"&&!D[T(R)]&&(D[T(R)]=!0,_(R,E,A,D))}}},plugins:{},highlightAll:function(_,S){o.highlightAllUnder(document,_,S)},highlightAllUnder:function(_,S,E){var F={callback:E,container:_,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};o.hooks.run("before-highlightall",F),F.elements=Array.prototype.slice.apply(F.container.querySelectorAll(F.selector)),o.hooks.run("before-all-elements-highlight",F);for(var D=0,T;T=F.elements[D++];)o.highlightElement(T,S===!0,F.callback)},highlightElement:function(_,S,E){var F=o.util.getLanguage(_),D=o.languages[F];o.util.setLanguage(_,F);var T=_.parentElement;T&&T.nodeName.toLowerCase()==="pre"&&o.util.setLanguage(T,F);var A=_.textContent,R={element:_,language:F,grammar:D,code:A};function Z(de){R.highlightedCode=de,o.hooks.run("before-insert",R),R.element.innerHTML=R.highlightedCode,o.hooks.run("after-highlight",R),o.hooks.run("complete",R),E&&E.call(R.element)}if(o.hooks.run("before-sanity-check",R),T=R.element.parentElement,T&&T.nodeName.toLowerCase()==="pre"&&!T.hasAttribute("tabindex")&&T.setAttribute("tabindex","0"),!R.code){o.hooks.run("complete",R),E&&E.call(R.element);return}if(o.hooks.run("before-highlight",R),!R.grammar){Z(o.util.encode(R.code));return}if(S&&s.Worker){var ue=new Worker(o.filename);ue.onmessage=function(de){Z(de.data)},ue.postMessage(JSON.stringify({language:R.language,code:R.code,immediateClose:!0}))}else Z(o.highlight(R.code,R.grammar,R.language))},highlight:function(_,S,E){var F={code:_,grammar:S,language:E};if(o.hooks.run("before-tokenize",F),!F.grammar)throw new Error('The language "'+F.language+'" has no grammar.');return F.tokens=o.tokenize(F.code,F.grammar),o.hooks.run("after-tokenize",F),l.stringify(o.util.encode(F.tokens),F.language)},tokenize:function(_,S){var E=S.rest;if(E){for(var F in E)S[F]=E[F];delete S.rest}var D=new d;return f(D,D.head,_),c(_,D,S,D.head,0),g(D)},hooks:{all:{},add:function(_,S){var E=o.hooks.all;E[_]=E[_]||[],E[_].push(S)},run:function(_,S){var E=o.hooks.all[_];if(!(!E||!E.length))for(var F=0,D;D=E[F++];)D(S)}},Token:l};s.Prism=o;function l(_,S,E,F){this.type=_,this.content=S,this.alias=E,this.length=(F||"").length|0}l.stringify=function _(S,E){if(typeof S=="string")return S;if(Array.isArray(S)){var F="";return S.forEach(function(Z){F+=_(Z,E)}),F}var D={type:S.type,content:_(S.content,E),tag:"span",classes:["token",S.type],attributes:{},language:E},T=S.alias;T&&(Array.isArray(T)?Array.prototype.push.apply(D.classes,T):D.classes.push(T)),o.hooks.run("wrap",D);var A="";for(var R in D.attributes)A+=" "+R+'="'+(D.attributes[R]||"").replace(/"/g,""")+'"';return"<"+D.tag+' class="'+D.classes.join(" ")+'"'+A+">"+D.content+""};function u(_,S,E,F){_.lastIndex=S;var D=_.exec(E);if(D&&F&&D[1]){var T=D[1].length;D.index+=T,D[0]=D[0].slice(T)}return D}function c(_,S,E,F,D,T){for(var A in E)if(!(!E.hasOwnProperty(A)||!E[A])){var R=E[A];R=Array.isArray(R)?R:[R];for(var Z=0;Z=T.reach);ve+=te.value.length,te=te.next){var Se=te.value;if(S.length>_.length)return;if(!(Se instanceof l)){var Ee=1,we;if(B){if(we=u(W,ve,_,pe),!we||we.index>=_.length)break;var Te=we.index,Me=we.index+we[0].length,je=ve;for(je+=te.value.length;Te>=je;)te=te.next,je+=te.value.length;if(je-=te.value.length,ve=je,te.value instanceof l)continue;for(var Ve=te;Ve!==S.tail&&(jeT.reach&&(T.reach=x);var ee=te.prev;se&&(ee=f(S,ee,se),ve+=se.length),h(S,ee,Ee);var v=new l(A,de?o.tokenize(M,de):M,q,M);if(te=f(S,ee,v),$&&f(S,te,$),Ee>1){var b={cause:A+","+Z,reach:x};c(_,S,E,te.prev,ve,b),T&&b.reach>T.reach&&(T.reach=b.reach)}}}}}}function d(){var _={value:null,prev:null,next:null},S={value:null,prev:_,next:null};_.next=S,this.head=_,this.tail=S,this.length=0}function f(_,S,E){var F=S.next,D={value:E,prev:S,next:F};return S.next=D,F.prev=D,_.length++,D}function h(_,S,E){for(var F=S.next,D=0;D/,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(s){s.type==="entity"&&(s.attributes.title=s.content.replace(/&/,"&"))}),Object.defineProperty(n.languages.markup.tag,"addInlined",{value:function(a,r){var i={};i["language-"+r]={pattern:/(^$)/i,lookbehind:!0,inside:n.languages[r]},i.cdata=/^$/i;var o={"included-cdata":{pattern://i,inside:i}};o["language-"+r]={pattern:/[\s\S]+/,inside:n.languages[r]};var l={};l[a]={pattern:RegExp(/(<__[^>]*>)(?:))*\]\]>|(?!)/.source.replace(/__/g,function(){return a}),"i"),lookbehind:!0,greedy:!0,inside:o},n.languages.insertBefore("markup","cdata",l)}}),Object.defineProperty(n.languages.markup.tag,"addAttribute",{value:function(s,a){n.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+s+")"+/\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:[a,"language-"+a],inside:n.languages[a]},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(s){var a=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;s.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:RegExp("@[\\w-](?:"+/[^;{\s"']|\s+(?!\s)/.source+"|"+a.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\\((?:"+a.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+a.source+"$"),alias:"url"}}},selector:{pattern:RegExp(`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|`+a.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:a,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:/[(){};:,]/},s.languages.css.atrule.inside.rest=s.languages.css;var r=s.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 s="Loading…",a=function(y,m){return"✖ Error "+y+" while fetching file: "+m},r="✖ Error: File does not exist or is empty",i={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"},o="data-src-status",l="loading",u="loaded",c="failed",d="pre[data-src]:not(["+o+'="'+u+'"]):not(['+o+'="'+l+'"])';function f(y,m,P){var _=new XMLHttpRequest;_.open("GET",y,!0),_.onreadystatechange=function(){_.readyState==4&&(_.status<400&&_.responseText?m(_.responseText):_.status>=400?P(a(_.status,_.statusText)):P(r))},_.send(null)}function h(y){var m=/^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(y||"");if(m){var P=Number(m[1]),_=m[2],S=m[3];return _?S?[P,Number(S)]:[P,void 0]:[P,P]}}n.hooks.add("before-highlightall",function(y){y.selector+=", "+d}),n.hooks.add("before-sanity-check",function(y){var m=y.element;if(m.matches(d)){y.code="",m.setAttribute(o,l);var P=m.appendChild(document.createElement("CODE"));P.textContent=s;var _=m.getAttribute("data-src"),S=y.language;if(S==="none"){var E=(/\.(\w+)$/.exec(_)||[,"none"])[1];S=i[E]||E}n.util.setLanguage(P,S),n.util.setLanguage(m,S);var F=n.plugins.autoloader;F&&F.loadLanguages(S),f(_,function(D){m.setAttribute(o,u);var T=h(m.getAttribute("data-range"));if(T){var A=D.split(/\r\n?|\n/g),R=T[0],Z=T[1]==null?A.length:T[1];R<0&&(R+=A.length),R=Math.max(0,Math.min(R-1,A.length)),Z<0&&(Z+=A.length),Z=Math.max(0,Math.min(Z,A.length)),D=A.slice(R,Z).join(` -`),m.hasAttribute("data-start")||m.setAttribute("data-start",String(R+1))}P.textContent=D,n.highlightElement(P)},function(D){m.setAttribute(o,c),P.textContent=D})}}),n.plugins.fileHighlight={highlight:function(m){for(var P=(m||document).querySelectorAll(d),_=0,S;S=P[_++];)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)}})()})(wa)),wa.exports}var Th=$h();const Fi=Rh(Th);(function(e){function t(n,s){return"___"+n.toUpperCase()+s+"___"}Object.defineProperties(e.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,s,a,r){if(n.language===s){var i=n.tokenStack=[];n.code=n.code.replace(a,function(o){if(typeof r=="function"&&!r(o))return o;for(var l=i.length,u;n.code.indexOf(u=t(s,l))!==-1;)++l;return i[l]=o,u}),n.grammar=e.languages.markup}}},tokenizePlaceholders:{value:function(n,s){if(n.language!==s||!n.tokenStack)return;n.grammar=e.languages[s];var a=0,r=Object.keys(n.tokenStack);function i(o){for(var l=0;l=r.length);l++){var u=o[l];if(typeof u=="string"||u.content&&typeof u.content=="string"){var c=r[a],d=n.tokenStack[c],f=typeof u=="string"?u:u.content,h=t(s,c),g=f.indexOf(h);if(g>-1){++a;var y=f.substring(0,g),m=new e.Token(s,e.tokenize(d,n.grammar),"language-"+s,d),P=f.substring(g+h.length),_=[];y&&_.push.apply(_,i([y])),_.push(m),P&&_.push.apply(_,i([P])),typeof u=="string"?o.splice.apply(o,[l,1].concat(_)):u.content=_}}else u.content&&i(u.content)}return o}i(n.tokens)}}})})(Prism);var Ni={},Mi;function Ph(){return Mi||(Mi=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*\()/],s=/\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,a=/|\?\?=?|\.{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:s,operator:a,punctuation:r};var i={pattern:/\{\$(?:\{(?:\{[^{}]+\}|[^{}]+)\}|[^{}])+\}|(^|[^\\{])\$+(?:\w+(?:\[[^\r\n\[\]]+\]|->\w+)?)/,lookbehind:!0,inside:e.languages.php},o=[{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:i}},{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:i}}];e.languages.insertBefore("php","variable",{string:o,attribute:{pattern:/#\[(?:[^"'\/#]|\/(?![*/])|\/\/.*$|#(?!\[).*$|\/\*(?:[^*]|\*(?!\/))*\*\/|"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*')+\](?=\s*[a-z$#])/im,greedy:!0,inside:{"attribute-content":{pattern:/^(#\[)[\s\S]+(?=\]$)/,lookbehind:!0,inside:{comment:t,string:o,"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:s,operator:a,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)),Ni}Ph();const Ih={class:"page"},Dh={key:2},Lh={class:"script-detail-meta"},Oh=["innerHTML"],Fh={key:1},Nh={class:"script-meta"},Mh={key:0},Uh={class:"scope-name"},Bh={class:"script-info-panel"},jh={key:0,class:"info-row"},Vh={class:"info-value"},Hh={key:1,class:"info-row"},Gh={class:"info-value"},qh={key:2,class:"info-row"},zh={class:"info-value"},Kh={key:1,class:"devices-panel"},Wh={class:"block-title"},Jh={key:2,class:"devices-panel"},Yh={class:"block-title"},Xh={key:3,class:"devices-panel"},Zh={key:2,class:"code-block"},Qh=["innerHTML"],em={key:0,class:"form-group"},tm={key:0,class:"form-group"},nm={__name:"ScriptDetailPage",setup(e){const t=ea(),n=yn(),s=wt(),a=mn(),r=Mt(),{areaOptions:i,showAssignModal:o,selectedAreaId:l,assignLoading:u,assignError:c,openAssign:d,submitAssignCore:f}=br(),h=Q(()=>t.params.type),g=Q(()=>t.params.id),y=Q(()=>h.value==="actions"),m=Q(()=>h.value==="regular"),P=Q(()=>h.value==="scopes"),_=Q(()=>{var x,ee,v;const $=[];return!P.value&&r.has("scripts.edit")&&((x=A.value)!=null&&x.area_id?$.push({label:"Change area",icon:"ph-map-pin",onSelect:te},{label:"Unassign from area",icon:"ph-x-circle",onSelect:je}):$.push({label:"Assign to area",icon:"ph-map-pin",onSelect:te})),y.value&&r.has("scripts.run")&&$.push({label:"Run",icon:"ph-play",disabled:((ee=A.value)==null?void 0:ee.state)!=="enabled"||n.isRunning((v=A.value)==null?void 0:v.alias),onSelect:X}),$}),S=Q(()=>y.value?"Actions":m.value?"Regular":P.value?"Scope":"Script"),E=Q(()=>`Loading ${S.value.toLowerCase()} details`),F=Q(()=>y.value?n.isLoadingActions:m.value?n.isLoadingRegular:P.value?n.isLoadingScopes||n.isLoadingActions||n.isLoadingRegular:!1),D=Q(()=>y.value?n.errorActions:m.value?n.errorRegular:P.value?n.errorScopes:null),T=Q(()=>y.value?n.actions.length>0:m.value?n.regular.length>0:P.value?n.scopes.length>0:!1),A=Q(()=>{const $=g.value;return $?y.value?n.actionByAlias($):m.value?n.regularByAlias($):P.value?n.scopeByName($):null:null}),R=Q(()=>{const $=g.value;return!$||!P.value?[]:n.actionsByScope($)}),Z=Q(()=>{const $=g.value;return!$||!P.value?[]:n.regularByScope($)}),ue=Q(()=>{var x;const $=(x=A.value)==null?void 0:x.area_id;return $&&s.areasById[String($)]||null}),de=Q(()=>P.value?n.isLoadingScopeCode:!1),pe=Q(()=>P.value?n.errorScopeCode:null),B=Q(()=>{var $;return y.value||m.value?(($=A.value)==null?void 0:$.code)||"":P.value?n.currentScopeCode:""}),q=Q(()=>{const $=B.value;return $?Fi.highlight($,Fi.languages.php,"php"):""});async function X(){var x,ee,v;if(!((x=A.value)!=null&&x.alias))return;const $=await n.runScript(A.value.alias);$!=null&&$.ok?a.success({title:`Ran ${A.value.alias}`,text:(ee=n.lastRunResult)!=null&&ee.execTime?`Exec time: ${n.lastRunResult.execTime}`:void 0}):a.error({title:`Failed ${A.value.alias}`,text:((v=$==null?void 0:$.error)==null?void 0:v.message)||"Unknown error"})}async function W($){var b,C;const x=g.value;if(!x)return;let ee;y.value?ee=await n.setActionState(x,$):m.value?ee=await n.setRegularState(x,$):P.value&&(ee=await n.setScopeState(x,$));const v=((b=A.value)==null?void 0:b.alias)||x;ee&&!ee.ok?a.error({title:`Failed to ${$?"enable":"disable"} ${v}`,text:((C=ee.error)==null?void 0:C.message)||"Unknown error"}):ee&&a.success({title:`${$?"Enabled":"Disabled"} ${v}`})}function te(){var $;d(($=A.value)==null?void 0:$.area_id)}async function ve(){var ee;const $=(ee=A.value)==null?void 0:ee.id,x=await f($,n.assignToArea.bind(n));x!=null&&x.ok&&a.success({title:"Assigned",text:"Script assigned to area successfully"})}const Se=J(!1),Ee=J(""),we=J(!1),Me=J("");function je(){A.value&&(Ee.value=`Are you sure you want to unassign script "${A.value.name||A.value.alias}" from its area?`,Me.value="",Se.value=!0)}async function Ve(){var x;if(!A.value)return;we.value=!0,Me.value="";const $=await n.unassignFromArea(A.value.id);if(we.value=!1,!$.ok){Me.value=((x=$.error)==null?void 0:x.message)||"Failed to unassign script";return}Se.value=!1,a.success({title:"Unassigned",text:"Script unassigned from area successfully"})}async function Te(){const $=g.value;!$||!P.value||await n.loadScopeCode($)}async function M(){g.value&&(y.value&&n.actions.length===0?await n.loadActions():m.value&&n.regular.length===0?await n.loadRegular():P.value&&n.scopes.length===0&&await n.loadScopes(),P.value&&(n.actions.length===0&&await n.loadActions(),n.regular.length===0&&await n.loadRegular(),await Te()),s.areas.length===0&&await s.loadAreas())}const se=[{key:"alias",label:"Alias"},{key:"name",label:"Name"},{key:"state",label:"State"}];return bt(()=>{M()}),ds(()=>{n.clearScopeCode()}),kt(()=>[t.params.type,t.params.id],([$,x],[ee,v])=>{($!==ee||x!==v)&&(n.clearScopeCode(),M())}),($,x)=>{const ee=rn("router-link");return w(),G("section",Ih,[F.value?(w(),K(_t,{key:0,text:E.value},null,8,["text"])):D.value&&!T.value?(w(),K(pt,{key:1,title:`${S.value} loading failed`,error:D.value,retry:M},null,8,["title","error"])):A.value?(w(),G("div",Dh,[I(p(Et),{title:A.value.name||A.value.alias||A.value.name,kicker:S.value},{actions:k(()=>[p(r).has("scripts.edit")?(w(),K(p(jf),{key:0,"model-value":A.value.state==="enabled",label:"Enabled","onUpdate:modelValue":x[0]||(x[0]=v=>W(v))},null,8,["model-value"])):ae("",!0),I(kr,{items:_.value},null,8,["items"])]),_:1},8,["title","kicker"]),L("div",Lh,[A.value.icon?(w(),G("div",{key:0,innerHTML:A.value.icon,class:"script-icon"},null,8,Oh)):ae("",!0),A.value.description?(w(),G("p",Fh,N(A.value.description),1)):ae("",!0),L("div",Nh,[I(p(_e),{variant:A.value.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(A.value.state),1)]),_:1},8,["variant"]),L("code",null,N(A.value.alias||A.value.name),1),A.value.author?(w(),G("small",Mh,N(A.value.author),1)):ae("",!0),I(wr,{area:ue.value,areaId:A.value.area_id},null,8,["area","areaId"]),A.value.scope?(w(),K(ee,{key:1,to:{name:"script-detail",params:{type:"scopes",id:A.value.scope}},class:"scope-link"},{default:k(()=>[x[6]||(x[6]=L("span",{class:"scope-label"},"Scope",-1)),L("span",Uh,N(A.value.scope),1),x[7]||(x[7]=L("i",{class:"ph ph-arrow-right"},null,-1))]),_:1},8,["to"])):ae("",!0)]),L("div",Bh,[A.value.filename?(w(),G("div",jh,[x[8]||(x[8]=L("span",{class:"info-label text-muted"},"File:",-1)),L("span",Vh,N(A.value.filename),1)])):ae("",!0),A.value.path?(w(),G("div",Hh,[x[9]||(x[9]=L("span",{class:"info-label text-muted"},"Path:",-1)),L("span",Gh,N(A.value.path),1)])):ae("",!0),A.value.created_by?(w(),G("div",qh,[x[10]||(x[10]=L("span",{class:"info-label text-muted"},"Author:",-1)),L("span",zh,N(A.value.created_by),1)])):ae("",!0)])]),P.value?ae("",!0):(w(),K(Sr,{key:0,item:A.value,emptyMessage:"This script is not assigned to any area.",onAssign:te},{action:k(()=>[p(r).has("scripts.edit")?(w(),K(p(ge),{key:0,variant:"primary",icon:"ph-map-pin",onClick:te},{default:k(()=>{var v;return[U(N((v=A.value)!=null&&v.area_id?"Change area":"Assign to area"),1)]}),_:1})):ae("",!0)]),_:1},8,["item"])),P.value&&R.value.length>0?(w(),G("div",Kh,[L("div",Wh,"Action scripts ("+N(R.value.length)+")",1),I(p(Dn),{rows:R.value,columns:se},{"cell-state":k(({row:v})=>[I(p(_e),{variant:v.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(v.state),1)]),_:2},1032,["variant"])]),"cell-alias":k(({row:v})=>[I(ee,{to:{name:"script-detail",params:{type:"actions",id:v.alias}},class:"script-link"},{default:k(()=>[U(N(v.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):ae("",!0),P.value&&Z.value.length>0?(w(),G("div",Jh,[L("div",Yh,"Regular scripts ("+N(Z.value.length)+")",1),I(p(Dn),{rows:Z.value,columns:se},{"cell-state":k(({row:v})=>[I(p(_e),{variant:v.state==="enabled"?"success":"secondary"},{default:k(()=>[U(N(v.state),1)]),_:2},1032,["variant"])]),"cell-alias":k(({row:v})=>[I(ee,{to:{name:"script-detail",params:{type:"regular",id:v.alias}},class:"script-link"},{default:k(()=>[U(N(v.alias),1)]),_:2},1032,["to"])]),_:1},8,["rows"])])):ae("",!0),A.value.code||P.value?(w(),G("div",Xh,[x[11]||(x[11]=L("div",{class:"block-title"},"Source code",-1)),de.value?(w(),K(_t,{key:0,text:"Loading source code"})):pe.value?(w(),K(pt,{key:1,title:"Code loading failed",error:pe.value,retry:Te},null,8,["error"])):B.value?(w(),G("pre",Zh,[L("code",{class:"language-php",innerHTML:q.value},null,8,Qh)])):(w(),K(rt,{key:3,title:"No code",message:"Source code is not available."}))])):ae("",!0)])):(w(),K(rt,{key:3,title:"Not found",message:"The requested script does not exist."})),I(p(ut),{open:p(o),title:"Assign to area","onUpdate:open":x[3]||(x[3]=v=>o.value=v)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[2]||(x[2]=v=>o.value=!1)},{default:k(()=>[...x[12]||(x[12]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"primary",icon:"ph-check",loading:p(u),onClick:ve},{default:k(()=>[...x[13]||(x[13]=[U(" Assign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[I(p(fr),{modelValue:p(l),"onUpdate:modelValue":x[1]||(x[1]=v=>Ue(l)?l.value=v:null),label:"Area",options:p(i),icon:"ph-map-trifold"},null,8,["modelValue","options"]),p(c)?(w(),G("div",em,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(p(c)),1)]),_:1})])):ae("",!0)]),_:1},8,["open"]),I(p(ut),{open:Se.value,title:"Unassign from area","onUpdate:open":x[5]||(x[5]=v=>Se.value=v)},{footer:k(()=>[I(p(ge),{variant:"secondary",onClick:x[4]||(x[4]=v=>Se.value=!1)},{default:k(()=>[...x[14]||(x[14]=[U("Cancel",-1)])]),_:1}),I(p(ge),{variant:"warning",icon:"ph-x-circle",loading:we.value,onClick:Ve},{default:k(()=>[...x[15]||(x[15]=[U(" Unassign ",-1)])]),_:1},8,["loading"])]),default:k(()=>[L("p",null,N(Ee.value),1),Me.value?(w(),G("div",tm,[I(p(Ze),{variant:"danger"},{default:k(()=>[U(N(Me.value),1)]),_:1})])):ae("",!0)]),_:1},8,["open"])])}}},sm=Ke(nm,[["__scopeId","data-v-31cd836e"]]),am={class:"page"},rm={key:3,class:"firmwares-panel"},im={class:"firmwares-summary"},om={class:"firmwares-list"},lm={class:"firmware-header"},um={class:"firmware-id"},cm={class:"firmware-meta"},dm={key:0,class:"firmware-desc"},fm={key:1,class:"firmware-changelog"},pm={__name:"FirmwaresListPage",setup(e){const t=Ol(),n=Mt(),s=J(null);async function a(){var o;s.value=null;const i=await t.loadFirmwares();i.ok||(s.value=((o=i.error)==null?void 0:o.message)||"Failed to load catalog")}async function r(){var o;s.value=null;const i=await t.refreshFirmwares();i.ok||(s.value=((o=i.error)==null?void 0:o.message)||"Failed to refresh catalog")}return bt(a),(i,o)=>(w(),G("section",am,[I(p(Et),{title:"Firmware Catalog",kicker:"Firmwares"},{actions:k(()=>[p(n).has("firmware.upload")?(w(),K(p(ge),{key:0,loading:p(t).isUpdating,icon:"ph-arrow-clockwise",onClick:r},{default:k(()=>[...o[0]||(o[0]=[U(" Refresh Catalog ",-1)])]),_:1},8,["loading"])):ae("",!0)]),_:1}),p(t).isLoadingList?(w(),K(_t,{key:0,text:"Loading firmware catalog"})):s.value?(w(),K(pt,{key:1,title:"Catalog loading failed",error:s.value,retry:a},null,8,["error"])):p(t).firmwares.length===0?(w(),K(rt,{key:2,title:"No firmwares found",message:"No firmware packages detected in the firmwares directory."})):(w(),G("div",rm,[L("div",im,[I(p(_e),{variant:"primary"},{default:k(()=>[U("Total: "+N(p(t).firmwares.length),1)]),_:1})]),L("div",om,[(w(!0),G(De,null,Wt(p(t).firmwares,l=>(w(),G("div",{key:l.id,class:"firmware-card"},[L("div",lm,[L("span",um,N(l.id),1),I(p(_e),{variant:"success"},{default:k(()=>[U(N(l.version),1)]),_:2},1024)]),L("div",cm,[I(p(_e),{variant:"secondary"},{default:k(()=>[U(N(l.device_type),1)]),_:2},1024),l.platform?(w(),K(p(_e),{key:0,variant:"info"},{default:k(()=>[U(N(l.platform),1)]),_:2},1024)):ae("",!0),l.channels?(w(),K(p(_e),{key:1,variant:"warning"},{default:k(()=>[U(N(l.channels)+" ch",1)]),_:2},1024)):ae("",!0)]),l.description?(w(),G("p",dm,N(l.description),1)):ae("",!0),l.changelog?(w(),G("pre",fm,N(l.changelog),1)):ae("",!0)]))),128))])]))]))}},vm=Ke(pm,[["__scopeId","data-v-c0c73f70"]]),Fl="/logo-cube-square.svg",gm={class:"login-page"},hm={class:"login-card"},mm={key:0,class:"login-loading text-muted"},ym={__name:"LoginPage",setup(e){const t=on(),n=vs();bt(()=>{n.isAuthenticated&&t.replace({name:"areas-favorites"})});function s(){const a=window.location.href;window.location.href=ls(`/auth/login?return_to=${encodeURIComponent(a)}`)}return(a,r)=>(w(),G("div",gm,[L("div",hm,[r[3]||(r[3]=Ko('',3)),I(p(ge),{variant:"primary",size:"lg",class:"login-btn",onClick:s},{icon:k(()=>[...r[0]||(r[0]=[L("i",{class:"ph ph-sign-in"},null,-1)])]),default:k(()=>[r[1]||(r[1]=U(" Sign in with gnexus-auth ",-1))]),_:1}),p(n).isLoading?(w(),G("p",mm,[...r[2]||(r[2]=[L("i",{class:"ph ph-spinner ph-spin"},null,-1),U(" Checking session… ",-1)])])):ae("",!0)])]))}},_m=Ke(ym,[["__scopeId","data-v-9b9b8c35"]]),bm={class:"setup-page"},wm={class:"setup-card"},Sm={class:"setup-form"},km={key:0,class:"setup-error text-danger"},Am={__name:"MobileSetupPage",setup(e){const t=on(),n=J(""),s=J(""),a=J(!1),r=J("");async function i(){s.value="",r.value="";const o=n.value.trim();if(!o){s.value="Server URL is required";return}let l=o;/^https?:\/\//i.test(l)||(l="http://"+l);try{new URL(l)}catch{s.value="Invalid URL format";return}a.value=!0;try{const u=[`${l}/api/v1/about`,`${l}/about`];let c=!1;for(const d of u)try{const f=new AbortController,h=setTimeout(()=>f.abort(),5e3),g=await fetch(d,{method:"GET",signal:f.signal});if(clearTimeout(h),g.ok||g.status===401){c=!0;break}}catch{}if(!c){r.value="Could not connect to server. Please check the address.",a.value=!1;return}await ap(l),ps()?window.location.reload():t.replace("/login")}catch{r.value="Connection check failed. Please try again.",a.value=!1}}return(o,l)=>(w(),G("div",bm,[L("div",wm,[l[3]||(l[3]=Ko('

Smart Home

Mobile App Setup

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

',3)),L("div",Sm,[I(p(At),{modelValue:n.value,"onUpdate:modelValue":l[0]||(l[0]=u=>n.value=u),label:"Server URL",placeholder:"https://your-server.com",error:s.value,onKeyup:id(i,["enter"])},null,8,["modelValue","error"]),I(p(ge),{variant:"primary",size:"lg",class:"setup-btn",loading:a.value,onClick:i},{icon:k(()=>[...l[1]||(l[1]=[L("i",{class:"ph ph-check"},null,-1)])]),default:k(()=>[U(" "+N(a.value?"Checking connection…":"Save and continue"),1)]),_:1},8,["loading"])]),r.value?(w(),G("p",km,[l[2]||(l[2]=L("i",{class:"ph ph-warning-circle"},null,-1)),U(" "+N(r.value),1)])):ae("",!0)])]))}},xm=Ke(Am,[["__scopeId","data-v-22feb45a"]]),Cm=[{path:"/",redirect:"/areas/favorites"},{path:"/login",name:"login",component:_m,meta:{public:!0}},{path:"/mobile-setup",name:"mobile-setup",component:xm,meta:{public:!0}},{path:"/areas/favorites",name:"areas-favorites",component:Lp,meta:{permission:"areas.view"}},{path:"/areas/tree",name:"areas-tree",component:Yp,meta:{permission:"areas.view"}},{path:"/areas/:id",name:"area-detail",component:ug,meta:{permission:"areas.view"}},{path:"/devices",name:"devices",component:gg,meta:{permission:"devices.view"}},{path:"/devices/scanning",name:"devices-scanning",component:Pg,meta:{permission:"devices.scan"}},{path:"/devices/:id",name:"device-detail",component:mh,meta:{permission:"devices.view"}},{path:"/scripts/actions",name:"scripts-actions",component:bh,meta:{permission:"scripts.run"}},{path:"/scripts/regular",name:"scripts-regular",component:kh,meta:{permission:"scripts.view"}},{path:"/scripts/scopes",name:"scripts-scopes",component:Eh,meta:{permission:"scripts.view"}},{path:"/scripts/:type(actions|regular|scopes)/:id",name:"script-detail",component:sm,meta:{permission:"scripts.view"}},{path:"/firmwares",name:"firmwares",component:vm,meta:{permission:"firmware.view"}},{path:"/:pathMatch(.*)*",name:"not-found",component:()=>bl(()=>import("./NotFoundPage-CRjNvuG8.js"),[])}],_s="[vue:router]",bs=hr(),qa=Af({history:nf(),routes:Cm});qa.beforeEach(async(e,t,n)=>{var r,i;const s=vs();if(bs&&console.debug(_s,`Navigate: ${t.fullPath||"init"} → ${e.fullPath}`),await s.init(),(r=e.meta)!=null&&r.public){if(e.name==="login"&&s.isAuthenticated){bs&&console.debug(_s,"Redirect: authenticated user at login → areas-favorites"),n({name:"areas-favorites"});return}n();return}if(!s.isAuthenticated){bs&&console.debug(_s,"Redirect: unauthenticated → login"),n({name:"login"});return}const a=(i=e.meta)==null?void 0:i.permission;if(a&&!s.hasPermission(a)){bs&&console.warn(_s,`Forbidden: ${e.fullPath} requires ${a}`),n({name:"areas-favorites"});return}n()});function Em(e){const t="[vue:error]";e.config.errorHandler=(n,s,a)=>{const r=(n==null?void 0:n.message)||String(n);console.error(t,`Vue ${a}`,r,(n==null?void 0:n.stack)||"")},window.addEventListener("unhandledrejection",n=>{var r;const s=n.reason,a=(s==null?void 0:s.message)||((r=s==null?void 0:s.error)==null?void 0:r.message)||String(s);console.error(t,"Unhandled rejection:",a,(s==null?void 0:s.stack)||""),n.preventDefault()}),window.addEventListener("error",n=>{const s=n.error,a=(s==null?void 0:s.message)||n.message||"Unknown error";console.error(t,`Global error: ${a}`,`at ${n.filename}:${n.lineno}:${n.colno}`,(s==null?void 0:s.stack)||"")})}const Sa="[vue:pinia]",Rm=e=>{if(!hr())return;const{store:t,options:n}=e,s=n.id,a=Object.keys(n.actions||{});for(const r of a){const i=t[r];t[r]=async function(...o){console.debug(Sa,`${s}.${r}(${o.map(u=>xl(u)).join(", ")})`);const l=performance.now();try{const u=await i.apply(this,o);return console.debug(Sa,`${s}.${r} completed in ${(performance.now()-l).toFixed(1)}ms`),u}catch(u){throw console.error(Sa,`${s}.${r} failed: ${(u==null?void 0:u.message)||u}`),u}}}};async function $m(){await sp();const e=ud(_p);Em(e);const t=fd();t.use(Rm),e.use(t).use(qa),ps()&&(await rp()||await qa.replace("/mobile-setup")),await vs().init(),e.mount("#app")}$m();export{Lf as G,pr as W,I as a,G as c,w as o,p as u}; diff --git a/server/dist/assets/web-BImqM6lN.js b/server/dist/assets/web-BImqM6lN.js new file mode 100644 index 0000000..bfdfd24 --- /dev/null +++ b/server/dist/assets/web-BImqM6lN.js @@ -0,0 +1 @@ +import{W as p}from"./index-DLROONYU.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-CM9X8UBB.js b/server/dist/assets/web-CM9X8UBB.js deleted file mode 100644 index 20c7832..0000000 --- a/server/dist/assets/web-CM9X8UBB.js +++ /dev/null @@ -1 +0,0 @@ -import{W as p}from"./index-DSElkzFl.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 1c1de93..06943a5 100644 --- a/server/dist/index.html +++ b/server/dist/index.html @@ -12,8 +12,8 @@ - - + +
diff --git a/webclient/capacitor.config.json b/webclient/capacitor.config.json index 346f0f7..2b0ef08 100644 --- a/webclient/capacitor.config.json +++ b/webclient/capacitor.config.json @@ -11,6 +11,9 @@ "androidScheme": "https" }, "plugins": { + "CapacitorHttp": { + "enabled": true + }, "SplashScreen": { "launchShowDuration": 1500, "backgroundColor": "#0f172a", diff --git a/webclient/src/api/client.js b/webclient/src/api/client.js index e03d27d..9d4361c 100644 --- a/webclient/src/api/client.js +++ b/webclient/src/api/client.js @@ -1,6 +1,6 @@ import { requestHttp } from "./http"; import { getAccessToken, setAccessToken, clearAccessToken } from "./auth"; -import { buildServerUrl } from "./server-config"; +import { buildServerUrl, isNativeApp } from "./server-config"; let isRefreshing = false; let refreshSubscribers = []; @@ -48,7 +48,13 @@ clearAccessToken(); const isLoginPage = window.location.hash.includes("/login"); if (!isLoginPage) { - window.location.href = buildServerUrl(`/auth/login?return_to=${encodeURIComponent(window.location.href)}`); + if (isNativeApp()) { + // In native app: redirect to the app's login page. + // The login page will handle the OAuth redirect to the bridge page. + window.location.href = "/#/login"; + } else { + window.location.href = buildServerUrl(`/auth/login?return_to=${encodeURIComponent(window.location.href)}`); + } } return { ok: false, diff --git a/webclient/src/components/layout/AppShell.vue b/webclient/src/components/layout/AppShell.vue index 9673574..8f1f859 100644 --- a/webclient/src/components/layout/AppShell.vue +++ b/webclient/src/components/layout/AppShell.vue @@ -54,7 +54,7 @@ import { useRoute } from "vue-router"; import { GnNavigationShell, GnButton, GnUserCard } from "gnexus-ui-kit/vue"; import { useAuthStore } from "../../stores/auth.js"; -import { buildServerUrl } from "../../api/server-config"; +import { buildServerUrl, isNativeApp } from "../../api/server-config"; const route = useRoute(); const authStore = useAuthStore(); @@ -117,6 +117,13 @@ } function handleLogin() { + if (isNativeApp()) { + // In native app: navigate WebView to the server's OAuth login. + // The server will redirect to /auth/mobile-bridge after OAuth, + // which renders a page that redirects back to the app with the token. + window.location.href = buildServerUrl("/auth/login?return_to=/auth/mobile-bridge"); + return; + } const returnTo = window.location.href; window.location.href = buildServerUrl(`/auth/login?return_to=${encodeURIComponent(returnTo)}`); } diff --git a/webclient/src/features/auth/pages/LoginPage.vue b/webclient/src/features/auth/pages/LoginPage.vue index 561a680..3f4e949 100644 --- a/webclient/src/features/auth/pages/LoginPage.vue +++ b/webclient/src/features/auth/pages/LoginPage.vue @@ -37,7 +37,7 @@ import { useRouter } from "vue-router"; import { GnButton } from "gnexus-ui-kit/vue"; import { useAuthStore } from "../../../stores/auth.js"; -import { buildServerUrl } from "../../../api/server-config"; +import { buildServerUrl, isNativeApp } from "../../../api/server-config"; const router = useRouter(); const authStore = useAuthStore(); @@ -49,6 +49,14 @@ }); function handleLogin() { + if (isNativeApp()) { + // In the native app: navigate WebView to the server's OAuth login. + // The server will redirect to /auth/mobile-bridge after OAuth, + // which renders a page that redirects back to the app with the token. + window.location.href = buildServerUrl("/auth/login?return_to=/auth/mobile-bridge"); + return; + } + const returnTo = window.location.href; window.location.href = buildServerUrl(`/auth/login?return_to=${encodeURIComponent(returnTo)}`); } diff --git a/webclient/src/features/auth/pages/MobileAuthPage.vue b/webclient/src/features/auth/pages/MobileAuthPage.vue new file mode 100644 index 0000000..921e5e4 --- /dev/null +++ b/webclient/src/features/auth/pages/MobileAuthPage.vue @@ -0,0 +1,97 @@ + + + + + diff --git a/webclient/src/router/routes.js b/webclient/src/router/routes.js index 350c76f..7e890ce 100644 --- a/webclient/src/router/routes.js +++ b/webclient/src/router/routes.js @@ -11,6 +11,7 @@ import FirmwaresListPage from "../features/firmwares/pages/FirmwaresListPage.vue"; import LoginPage from "../features/auth/pages/LoginPage.vue"; import MobileSetupPage from "../features/auth/pages/MobileSetupPage.vue"; +import MobileAuthPage from "../features/auth/pages/MobileAuthPage.vue"; export const routes = [ { @@ -30,6 +31,12 @@ meta: { public: true }, }, { + path: "/mobile-auth", + name: "mobile-auth", + component: MobileAuthPage, + meta: { public: true }, + }, + { path: "/areas/favorites", name: "areas-favorites", component: AreaFavoritesPage, diff --git a/webclient/src/stores/auth.js b/webclient/src/stores/auth.js index 962c6df..ef0946b 100644 --- a/webclient/src/stores/auth.js +++ b/webclient/src/stores/auth.js @@ -2,7 +2,7 @@ import { defineStore } from "pinia"; import { apiGet, apiPost } from "../api/client"; import { setAccessToken, clearAccessToken, getExpiresAt } from "../api/auth"; -import { buildServerUrl } from "../api/server-config"; +import { buildServerUrl, isNativeApp } from "../api/server-config"; export const useAuthStore = defineStore("auth", () => { const user = ref(null); @@ -127,10 +127,15 @@ permissions.value = []; clearAccessToken(); cancelProactiveRefresh(); - window.location.href = buildServerUrl("/#/login"); + window.location.href = "/#/login"; } function redirectToLogin() { + if (isNativeApp()) { + // In native app: redirect to the app's login page. + window.location.href = "/#/login"; + return; + } const returnTo = window.location.href; window.location.href = buildServerUrl(`/auth/login?return_to=${encodeURIComponent(returnTo)}`); }