From 058c99727d596c69ac2527d0854968335171e56b Mon Sep 17 00:00:00 2001 From: kabykun Date: Mon, 31 Mar 2025 23:43:55 +0200 Subject: [PATCH] working --- .bolt/config.json | 3 - .bolt/prompt | 8 - .../20250322154510_aged_mode.sql | 53 ---- .../20250323001324_rapid_jungle.sql | 62 ---- .gitignore | 23 -- dist/assets/index-5jcJrdyB.css | 1 + dist/assets/index-D7GdPwQ6.js | 271 ++++++++++++++++++ .../proxmox-removebg-preview-DD3TFQ_P.svg | 215 ++++++++++++++ dist/index.html | 14 + img/proxmox-removebg-preview.svg | 215 ++++++++++++++ index.html | 4 +- server.sh | 2 + start.sh | 32 +++ 13 files changed, 752 insertions(+), 151 deletions(-) delete mode 100644 .bolt/config.json delete mode 100644 .bolt/prompt delete mode 100644 .bolt/supabase_discarded_migrations/20250322154510_aged_mode.sql delete mode 100644 .bolt/supabase_discarded_migrations/20250323001324_rapid_jungle.sql create mode 100644 dist/assets/index-5jcJrdyB.css create mode 100644 dist/assets/index-D7GdPwQ6.js create mode 100644 dist/assets/proxmox-removebg-preview-DD3TFQ_P.svg create mode 100644 dist/index.html create mode 100644 img/proxmox-removebg-preview.svg create mode 100755 server.sh create mode 100755 start.sh diff --git a/.bolt/config.json b/.bolt/config.json deleted file mode 100644 index 6b6787d..0000000 --- a/.bolt/config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "template": "bolt-vite-react-ts" -} diff --git a/.bolt/prompt b/.bolt/prompt deleted file mode 100644 index d0c0a8f..0000000 --- a/.bolt/prompt +++ /dev/null @@ -1,8 +0,0 @@ -For all designs I ask you to make, have them be beautiful, not cookie cutter. Make webpages that are fully featured and worthy for production. - -By default, this template supports JSX syntax with Tailwind CSS classes, React hooks, and Lucide React for icons. Do not install other packages for UI themes, icons, etc unless absolutely necessary or I request them. - -Use icons from lucide-react for logos. - -Use stock photos from unsplash where appropriate, only valid URLs you know exist. Do not download the images, only link to them in image tags. - diff --git a/.bolt/supabase_discarded_migrations/20250322154510_aged_mode.sql b/.bolt/supabase_discarded_migrations/20250322154510_aged_mode.sql deleted file mode 100644 index 8b4f52c..0000000 --- a/.bolt/supabase_discarded_migrations/20250322154510_aged_mode.sql +++ /dev/null @@ -1,53 +0,0 @@ -/* - # Create servers table for Proxmox dashboard - - 1. New Tables - - `servers` - - `id` (uuid, primary key) - - `name` (text, server name) - - `model` (text, server model) - - `cpu_model` (text, CPU model) - - `cpu_cores` (integer, number of CPU cores) - - `ram_gb` (integer, RAM in GB) - - `created_at` (timestamp) - - `updated_at` (timestamp) - - 2. Security - - Enable RLS on `servers` table - - Add policies for authenticated users to manage their servers -*/ - -CREATE TABLE IF NOT EXISTS servers ( - id uuid PRIMARY KEY DEFAULT gen_random_uuid(), - name text NOT NULL, - model text NOT NULL, - cpu_model text NOT NULL, - cpu_cores integer NOT NULL, - ram_gb integer NOT NULL, - created_at timestamptz DEFAULT now(), - updated_at timestamptz DEFAULT now() -); - -ALTER TABLE servers ENABLE ROW LEVEL SECURITY; - --- Allow authenticated users to read all servers -CREATE POLICY "Users can read all servers" - ON servers - FOR SELECT - TO authenticated - USING (true); - --- Allow authenticated users to insert their own servers -CREATE POLICY "Users can insert servers" - ON servers - FOR INSERT - TO authenticated - WITH CHECK (true); - --- Allow authenticated users to update their own servers -CREATE POLICY "Users can update their own servers" - ON servers - FOR UPDATE - TO authenticated - USING (true) - WITH CHECK (true); \ No newline at end of file diff --git a/.bolt/supabase_discarded_migrations/20250323001324_rapid_jungle.sql b/.bolt/supabase_discarded_migrations/20250323001324_rapid_jungle.sql deleted file mode 100644 index 15fee44..0000000 --- a/.bolt/supabase_discarded_migrations/20250323001324_rapid_jungle.sql +++ /dev/null @@ -1,62 +0,0 @@ -/* - # Create servers table - - 1. New Tables - - `servers` - - `id` (uuid, primary key) - - `name` (text) - - `model` (text) - - `cpus` (jsonb array) - - `ram_gb` (integer) - - `proxmox_url` (text) - - `user_id` (uuid, foreign key) - - `created_at` (timestamp) - - `status` (text) - - `specs` (jsonb) - - `last_ping` (integer) - - 2. Security - - Enable RLS on `servers` table - - Add policies for authenticated users to manage their own servers -*/ - -CREATE TABLE IF NOT EXISTS servers ( - id uuid PRIMARY KEY DEFAULT gen_random_uuid(), - name text NOT NULL, - model text NOT NULL, - cpus jsonb NOT NULL DEFAULT '[]'::jsonb, - ram_gb integer NOT NULL, - proxmox_url text NOT NULL, - user_id uuid NOT NULL REFERENCES auth.users(id), - created_at timestamptz DEFAULT now(), - status text NOT NULL DEFAULT 'checking', - specs jsonb NOT NULL DEFAULT '{}'::jsonb, - last_ping integer -); - -ALTER TABLE servers ENABLE ROW LEVEL SECURITY; - -CREATE POLICY "Users can read their own servers" - ON servers - FOR SELECT - TO authenticated - USING (auth.uid() = user_id); - -CREATE POLICY "Users can insert their own servers" - ON servers - FOR INSERT - TO authenticated - WITH CHECK (auth.uid() = user_id); - -CREATE POLICY "Users can update their own servers" - ON servers - FOR UPDATE - TO authenticated - USING (auth.uid() = user_id) - WITH CHECK (auth.uid() = user_id); - -CREATE POLICY "Users can delete their own servers" - ON servers - FOR DELETE - TO authenticated - USING (auth.uid() = user_id); \ No newline at end of file diff --git a/.gitignore b/.gitignore index a547bf3..3c3629e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/dist/assets/index-5jcJrdyB.css b/dist/assets/index-5jcJrdyB.css new file mode 100644 index 0000000..fa69b39 --- /dev/null +++ b/dist/assets/index-5jcJrdyB.css @@ -0,0 +1 @@ +*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.fixed{position:fixed}.inset-0{top:0;right:0;bottom:0;left:0}.z-50{z-index:50}.mx-auto{margin-left:auto;margin-right:auto}.mb-1\.5{margin-bottom:.375rem}.mb-12{margin-bottom:3rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mt-2{margin-top:.5rem}.mt-6{margin-top:1.5rem}.block{display:block}.flex{display:flex}.grid{display:grid}.min-h-screen{min-height:100vh}.w-full{width:100%}.min-w-\[1\.5rem\]{min-width:1.5rem}.min-w-\[4rem\]{min-width:4rem}.max-w-md{max-width:28rem}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-pointer{cursor:pointer}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.rounded-lg{border-radius:.5rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-t{border-top-width:1px}.border-gray-700\/50{border-color:#37415180}.bg-black\/70{background-color:#000000b3}.bg-gray-700\/30{background-color:#3741514d}.bg-gray-700\/50{background-color:#37415180}.bg-gray-800\/50{background-color:#1f293780}.bg-gray-800\/90{background-color:#1f2937e6}.bg-purple-600{--tw-bg-opacity: 1;background-color:rgb(147 51 234 / var(--tw-bg-opacity))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.from-purple-400{--tw-gradient-from: #c084fc var(--tw-gradient-from-position);--tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.to-pink-300{--tw-gradient-to: #f9a8d4 var(--tw-gradient-to-position)}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pt-2{padding-top:.5rem}.text-center{text-align:center}.text-2xl{font-size:1.5rem;line-height:2rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-purple-400{--tw-text-opacity: 1;color:rgb(192 132 252 / var(--tw-text-opacity))}.text-transparent{color:transparent}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.opacity-50{opacity:.5}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.backdrop-blur{--tw-backdrop-blur: blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}:root{color-scheme:dark}body{background:linear-gradient(to bottom right,#1a1a2e,#16213e);color:#fff;min-height:100vh}@keyframes gradient{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}.gradient-bg{background:linear-gradient(-45deg,#2d1b69,#1a1a2e,#16213e,#1f2937);background-size:400% 400%;animation:gradient 15s ease infinite}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideIn{0%{transform:translateY(10px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes glow{0%{box-shadow:0 0 5px #8b5cf633}50%{box-shadow:0 0 20px #8b5cf666}to{box-shadow:0 0 5px #8b5cf633}}@keyframes spin-slow{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes bounce-slow{0%,to{transform:translateY(0)}50%{transform:translateY(-5px)}}.animate-fadeIn{animation:fadeIn .5s ease-out}.animate-slideIn{animation:slideIn .5s ease-out}.animate-glow{animation:glow 2s ease-in-out infinite}.animate-spin-slow{animation:spin-slow 4s linear infinite}.animate-bounce-slow{animation:bounce-slow 2s ease-in-out infinite}.hover\:rotate-12:hover{--tw-rotate: 12deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:scale-105:hover{--tw-scale-x: 1.05;--tw-scale-y: 1.05;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:animate-none:hover{animation:none}.hover\:bg-gray-700\/50:hover{background-color:#37415180}.hover\:bg-purple-700:hover{--tw-bg-opacity: 1;background-color:rgb(126 34 206 / var(--tw-bg-opacity))}.hover\:bg-red-400\/10:hover{background-color:#f871711a}.hover\:text-red-400:hover{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.hover\:shadow-xl:hover{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hover\:shadow-purple-500\/10:hover{--tw-shadow-color: rgb(168 85 247 / .1);--tw-shadow: var(--tw-shadow-colored)}.hover\:shadow-purple-500\/20:hover{--tw-shadow-color: rgb(168 85 247 / .2);--tw-shadow: var(--tw-shadow-colored)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-purple-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity))}.group:hover .group-hover\:text-purple-300{--tw-text-opacity: 1;color:rgb(216 180 254 / var(--tw-text-opacity))}@media (min-width: 768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:flex-row{flex-direction:row}}@media (min-width: 1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}} diff --git a/dist/assets/index-D7GdPwQ6.js b/dist/assets/index-D7GdPwQ6.js new file mode 100644 index 0000000..8305c72 --- /dev/null +++ b/dist/assets/index-D7GdPwQ6.js @@ -0,0 +1,271 @@ +(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))r(l);new MutationObserver(l=>{for(const o of l)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&r(i)}).observe(document,{childList:!0,subtree:!0});function n(l){const o={};return l.integrity&&(o.integrity=l.integrity),l.referrerPolicy&&(o.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?o.credentials="include":l.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(l){if(l.ep)return;l.ep=!0;const o=n(l);fetch(l.href,o)}})();var aa={exports:{}},Al={},ca={exports:{}},z={};/** + * @license React + * react.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var wr=Symbol.for("react.element"),bf=Symbol.for("react.portal"),ed=Symbol.for("react.fragment"),td=Symbol.for("react.strict_mode"),nd=Symbol.for("react.profiler"),rd=Symbol.for("react.provider"),ld=Symbol.for("react.context"),od=Symbol.for("react.forward_ref"),id=Symbol.for("react.suspense"),sd=Symbol.for("react.memo"),ud=Symbol.for("react.lazy"),Is=Symbol.iterator;function ad(e){return e===null||typeof e!="object"?null:(e=Is&&e[Is]||e["@@iterator"],typeof e=="function"?e:null)}var fa={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},da=Object.assign,pa={};function Nn(e,t,n){this.props=e,this.context=t,this.refs=pa,this.updater=n||fa}Nn.prototype.isReactComponent={};Nn.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};Nn.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function ma(){}ma.prototype=Nn.prototype;function $i(e,t,n){this.props=e,this.context=t,this.refs=pa,this.updater=n||fa}var Bi=$i.prototype=new ma;Bi.constructor=$i;da(Bi,Nn.prototype);Bi.isPureReactComponent=!0;var $s=Array.isArray,ha=Object.prototype.hasOwnProperty,Hi={current:null},ya={key:!0,ref:!0,__self:!0,__source:!0};function ga(e,t,n){var r,l={},o=null,i=null;if(t!=null)for(r in t.ref!==void 0&&(i=t.ref),t.key!==void 0&&(o=""+t.key),t)ha.call(t,r)&&!ya.hasOwnProperty(r)&&(l[r]=t[r]);var s=arguments.length-2;if(s===1)l.children=n;else if(1>>1,b=R[X];if(0>>1;Xl(so,L))jtl(Rr,so)?(R[X]=Rr,R[jt]=L,X=jt):(R[X]=so,R[Ot]=L,X=Ot);else if(jtl(Rr,L))R[X]=Rr,R[jt]=L,X=jt;else break e}}return j}function l(R,j){var L=R.sortIndex-j.sortIndex;return L!==0?L:R.id-j.id}if(typeof performance=="object"&&typeof performance.now=="function"){var o=performance;e.unstable_now=function(){return o.now()}}else{var i=Date,s=i.now();e.unstable_now=function(){return i.now()-s}}var u=[],a=[],f=1,m=null,h=3,w=!1,g=!1,v=!1,C=typeof setTimeout=="function"?setTimeout:null,d=typeof clearTimeout=="function"?clearTimeout:null,c=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function p(R){for(var j=n(a);j!==null;){if(j.callback===null)r(a);else if(j.startTime<=R)r(a),j.sortIndex=j.expirationTime,t(u,j);else break;j=n(a)}}function x(R){if(v=!1,p(R),!g)if(n(u)!==null)g=!0,oo(E);else{var j=n(a);j!==null&&io(x,j.startTime-R)}}function E(R,j){g=!1,v&&(v=!1,d(T),T=-1),w=!0;var L=h;try{for(p(j),m=n(u);m!==null&&(!(m.expirationTime>j)||R&&!De());){var X=m.callback;if(typeof X=="function"){m.callback=null,h=m.priorityLevel;var b=X(m.expirationTime<=j);j=e.unstable_now(),typeof b=="function"?m.callback=b:m===n(u)&&r(u),p(j)}else r(u);m=n(u)}if(m!==null)var Pr=!0;else{var Ot=n(a);Ot!==null&&io(x,Ot.startTime-j),Pr=!1}return Pr}finally{m=null,h=L,w=!1}}var N=!1,P=null,T=-1,B=5,M=-1;function De(){return!(e.unstable_now()-MR||125X?(R.sortIndex=L,t(a,R),n(u)===null&&R===n(a)&&(v?(d(T),T=-1):v=!0,io(x,L-X))):(R.sortIndex=b,t(u,R),g||w||(g=!0,oo(E))),R},e.unstable_shouldYield=De,e.unstable_wrapCallback=function(R){var j=h;return function(){var L=h;h=j;try{return R.apply(this,arguments)}finally{h=L}}}})(ka);Sa.exports=ka;var xd=Sa.exports;/** + * @license React + * react-dom.production.min.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var Sd=D,Ne=xd;function k(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Io=Object.prototype.hasOwnProperty,kd=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Hs={},Vs={};function Ed(e){return Io.call(Vs,e)?!0:Io.call(Hs,e)?!1:kd.test(e)?Vs[e]=!0:(Hs[e]=!0,!1)}function Cd(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function Nd(e,t,n,r){if(t===null||typeof t>"u"||Cd(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function me(e,t,n,r,l,o,i){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var le={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){le[e]=new me(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];le[t]=new me(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){le[e]=new me(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){le[e]=new me(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){le[e]=new me(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){le[e]=new me(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){le[e]=new me(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){le[e]=new me(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){le[e]=new me(e,5,!1,e.toLowerCase(),null,!1,!1)});var Wi=/[\-:]([a-z])/g;function Qi(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(Wi,Qi);le[t]=new me(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(Wi,Qi);le[t]=new me(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(Wi,Qi);le[t]=new me(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){le[e]=new me(e,1,!1,e.toLowerCase(),null,!1,!1)});le.xlinkHref=new me("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){le[e]=new me(e,1,!1,e.toLowerCase(),null,!0,!0)});function Ki(e,t,n,r){var l=le.hasOwnProperty(t)?le[t]:null;(l!==null?l.type!==0:r||!(2s||l[i]!==o[s]){var u=` +`+l[i].replace(" at new "," at ");return e.displayName&&u.includes("")&&(u=u.replace("",e.displayName)),u}while(1<=i&&0<=s);break}}}finally{co=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Bn(e):""}function _d(e){switch(e.tag){case 5:return Bn(e.type);case 16:return Bn("Lazy");case 13:return Bn("Suspense");case 19:return Bn("SuspenseList");case 0:case 2:case 15:return e=fo(e.type,!1),e;case 11:return e=fo(e.type.render,!1),e;case 1:return e=fo(e.type,!0),e;default:return""}}function Vo(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case bt:return"Fragment";case Zt:return"Portal";case $o:return"Profiler";case qi:return"StrictMode";case Bo:return"Suspense";case Ho:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case Na:return(e.displayName||"Context")+".Consumer";case Ca:return(e._context.displayName||"Context")+".Provider";case Xi:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case Ji:return t=e.displayName||null,t!==null?t:Vo(e.type)||"Memo";case ut:t=e._payload,e=e._init;try{return Vo(e(t))}catch{}}return null}function Pd(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return Vo(t);case 8:return t===qi?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function Et(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Pa(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function Rd(e){var t=Pa(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var l=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return l.call(this)},set:function(i){r=""+i,o.call(this,i)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(i){r=""+i},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function jr(e){e._valueTracker||(e._valueTracker=Rd(e))}function Ra(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=Pa(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function al(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Wo(e,t){var n=t.checked;return Q({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function Qs(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=Et(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function Ta(e,t){t=t.checked,t!=null&&Ki(e,"checked",t,!1)}function Qo(e,t){Ta(e,t);var n=Et(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?Ko(e,t.type,n):t.hasOwnProperty("defaultValue")&&Ko(e,t.type,Et(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function Ks(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function Ko(e,t,n){(t!=="number"||al(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var Hn=Array.isArray;function fn(e,t,n,r){if(e=e.options,t){t={};for(var l=0;l"+t.valueOf().toString()+"",t=Lr.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function nr(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Qn={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Td=["Webkit","ms","Moz","O"];Object.keys(Qn).forEach(function(e){Td.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Qn[t]=Qn[e]})});function za(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Qn.hasOwnProperty(e)&&Qn[e]?(""+t).trim():t+"px"}function Da(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,l=za(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,l):e[n]=l}}var Od=Q({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Jo(e,t){if(t){if(Od[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(k(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(k(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(k(61))}if(t.style!=null&&typeof t.style!="object")throw Error(k(62))}}function Yo(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Go=null;function Yi(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Zo=null,dn=null,pn=null;function Js(e){if(e=kr(e)){if(typeof Zo!="function")throw Error(k(280));var t=e.stateNode;t&&(t=Bl(t),Zo(e.stateNode,e.type,t))}}function Ma(e){dn?pn?pn.push(e):pn=[e]:dn=e}function Aa(){if(dn){var e=dn,t=pn;if(pn=dn=null,Js(e),t)for(e=0;e>>=0,e===0?32:31-(Bd(e)/Hd|0)|0}var zr=64,Dr=4194304;function Vn(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function pl(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,l=e.suspendedLanes,o=e.pingedLanes,i=n&268435455;if(i!==0){var s=i&~l;s!==0?r=Vn(s):(o&=i,o!==0&&(r=Vn(o)))}else i=n&~l,i!==0?r=Vn(i):o!==0&&(r=Vn(o));if(r===0)return 0;if(t!==0&&t!==r&&!(t&l)&&(l=r&-r,o=t&-t,l>=o||l===16&&(o&4194240)!==0))return t;if(r&4&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function xr(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Ie(t),e[t]=n}function Kd(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=qn),lu=" ",ou=!1;function nc(e,t){switch(e){case"keyup":return xp.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function rc(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var en=!1;function kp(e,t){switch(e){case"compositionend":return rc(t);case"keypress":return t.which!==32?null:(ou=!0,lu);case"textInput":return e=t.data,e===lu&&ou?null:e;default:return null}}function Ep(e,t){if(en)return e==="compositionend"||!ls&&nc(e,t)?(e=ec(),Yr=ts=pt=null,en=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=au(n)}}function sc(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?sc(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function uc(){for(var e=window,t=al();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=al(e.document)}return t}function os(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function Lp(e){var t=uc(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&sc(n.ownerDocument.documentElement,n)){if(r!==null&&os(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var l=n.textContent.length,o=Math.min(r.start,l);r=r.end===void 0?o:Math.min(r.end,l),!e.extend&&o>r&&(l=r,r=o,o=l),l=cu(n,o);var i=cu(n,r);l&&i&&(e.rangeCount!==1||e.anchorNode!==l.node||e.anchorOffset!==l.offset||e.focusNode!==i.node||e.focusOffset!==i.offset)&&(t=t.createRange(),t.setStart(l.node,l.offset),e.removeAllRanges(),o>r?(e.addRange(t),e.extend(i.node,i.offset)):(t.setEnd(i.node,i.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,tn=null,li=null,Jn=null,oi=!1;function fu(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;oi||tn==null||tn!==al(r)||(r=tn,"selectionStart"in r&&os(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Jn&&ur(Jn,r)||(Jn=r,r=yl(li,"onSelect"),0ln||(e.current=fi[ln],fi[ln]=null,ln--)}function U(e,t){ln++,fi[ln]=e.current,e.current=t}var Ct={},ae=_t(Ct),ge=_t(!1),Ht=Ct;function wn(e,t){var n=e.type.contextTypes;if(!n)return Ct;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var l={},o;for(o in n)l[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=l),l}function ve(e){return e=e.childContextTypes,e!=null}function vl(){$(ge),$(ae)}function vu(e,t,n){if(ae.current!==Ct)throw Error(k(168));U(ae,t),U(ge,n)}function gc(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var l in r)if(!(l in t))throw Error(k(108,Pd(e)||"Unknown",l));return Q({},n,r)}function wl(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Ct,Ht=ae.current,U(ae,e),U(ge,ge.current),!0}function wu(e,t,n){var r=e.stateNode;if(!r)throw Error(k(169));n?(e=gc(e,t,Ht),r.__reactInternalMemoizedMergedChildContext=e,$(ge),$(ae),U(ae,e)):$(ge),U(ge,n)}var Ge=null,Hl=!1,_o=!1;function vc(e){Ge===null?Ge=[e]:Ge.push(e)}function Wp(e){Hl=!0,vc(e)}function Pt(){if(!_o&&Ge!==null){_o=!0;var e=0,t=F;try{var n=Ge;for(F=1;e>=i,l-=i,Ze=1<<32-Ie(t)+l|n<T?(B=P,P=null):B=P.sibling;var M=h(d,P,p[T],x);if(M===null){P===null&&(P=B);break}e&&P&&M.alternate===null&&t(d,P),c=o(M,c,T),N===null?E=M:N.sibling=M,N=M,P=B}if(T===p.length)return n(d,P),H&&Lt(d,T),E;if(P===null){for(;TT?(B=P,P=null):B=P.sibling;var De=h(d,P,M.value,x);if(De===null){P===null&&(P=B);break}e&&P&&De.alternate===null&&t(d,P),c=o(De,c,T),N===null?E=De:N.sibling=De,N=De,P=B}if(M.done)return n(d,P),H&&Lt(d,T),E;if(P===null){for(;!M.done;T++,M=p.next())M=m(d,M.value,x),M!==null&&(c=o(M,c,T),N===null?E=M:N.sibling=M,N=M);return H&&Lt(d,T),E}for(P=r(d,P);!M.done;T++,M=p.next())M=w(P,d,T,M.value,x),M!==null&&(e&&M.alternate!==null&&P.delete(M.key===null?T:M.key),c=o(M,c,T),N===null?E=M:N.sibling=M,N=M);return e&&P.forEach(function(On){return t(d,On)}),H&&Lt(d,T),E}function C(d,c,p,x){if(typeof p=="object"&&p!==null&&p.type===bt&&p.key===null&&(p=p.props.children),typeof p=="object"&&p!==null){switch(p.$$typeof){case Or:e:{for(var E=p.key,N=c;N!==null;){if(N.key===E){if(E=p.type,E===bt){if(N.tag===7){n(d,N.sibling),c=l(N,p.props.children),c.return=d,d=c;break e}}else if(N.elementType===E||typeof E=="object"&&E!==null&&E.$$typeof===ut&&ku(E)===N.type){n(d,N.sibling),c=l(N,p.props),c.ref=Fn(d,N,p),c.return=d,d=c;break e}n(d,N);break}else t(d,N);N=N.sibling}p.type===bt?(c=$t(p.props.children,d.mode,x,p.key),c.return=d,d=c):(x=ll(p.type,p.key,p.props,null,d.mode,x),x.ref=Fn(d,c,p),x.return=d,d=x)}return i(d);case Zt:e:{for(N=p.key;c!==null;){if(c.key===N)if(c.tag===4&&c.stateNode.containerInfo===p.containerInfo&&c.stateNode.implementation===p.implementation){n(d,c.sibling),c=l(c,p.children||[]),c.return=d,d=c;break e}else{n(d,c);break}else t(d,c);c=c.sibling}c=Do(p,d.mode,x),c.return=d,d=c}return i(d);case ut:return N=p._init,C(d,c,N(p._payload),x)}if(Hn(p))return g(d,c,p,x);if(Ln(p))return v(d,c,p,x);Br(d,p)}return typeof p=="string"&&p!==""||typeof p=="number"?(p=""+p,c!==null&&c.tag===6?(n(d,c.sibling),c=l(c,p),c.return=d,d=c):(n(d,c),c=zo(p,d.mode,x),c.return=d,d=c),i(d)):n(d,c)}return C}var Sn=kc(!0),Ec=kc(!1),kl=_t(null),El=null,un=null,as=null;function cs(){as=un=El=null}function fs(e){var t=kl.current;$(kl),e._currentValue=t}function mi(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,r!==null&&(r.childLanes|=t)):r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function hn(e,t){El=e,as=un=null,e=e.dependencies,e!==null&&e.firstContext!==null&&(e.lanes&t&&(ye=!0),e.firstContext=null)}function Le(e){var t=e._currentValue;if(as!==e)if(e={context:e,memoizedValue:t,next:null},un===null){if(El===null)throw Error(k(308));un=e,El.dependencies={lanes:0,firstContext:e}}else un=un.next=e;return t}var Mt=null;function ds(e){Mt===null?Mt=[e]:Mt.push(e)}function Cc(e,t,n,r){var l=t.interleaved;return l===null?(n.next=n,ds(t)):(n.next=l.next,l.next=n),t.interleaved=n,rt(e,r)}function rt(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var at=!1;function ps(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Nc(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function et(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function wt(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,A&2){var l=r.pending;return l===null?t.next=t:(t.next=l.next,l.next=t),r.pending=t,rt(e,n)}return l=r.interleaved,l===null?(t.next=t,ds(r)):(t.next=l.next,l.next=t),r.interleaved=t,rt(e,n)}function Zr(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194240)!==0)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Zi(e,n)}}function Eu(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var l=null,o=null;if(n=n.firstBaseUpdate,n!==null){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};o===null?l=o=i:o=o.next=i,n=n.next}while(n!==null);o===null?l=o=t:o=o.next=t}else l=o=t;n={baseState:r.baseState,firstBaseUpdate:l,lastBaseUpdate:o,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function Cl(e,t,n,r){var l=e.updateQueue;at=!1;var o=l.firstBaseUpdate,i=l.lastBaseUpdate,s=l.shared.pending;if(s!==null){l.shared.pending=null;var u=s,a=u.next;u.next=null,i===null?o=a:i.next=a,i=u;var f=e.alternate;f!==null&&(f=f.updateQueue,s=f.lastBaseUpdate,s!==i&&(s===null?f.firstBaseUpdate=a:s.next=a,f.lastBaseUpdate=u))}if(o!==null){var m=l.baseState;i=0,f=a=u=null,s=o;do{var h=s.lane,w=s.eventTime;if((r&h)===h){f!==null&&(f=f.next={eventTime:w,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});e:{var g=e,v=s;switch(h=t,w=n,v.tag){case 1:if(g=v.payload,typeof g=="function"){m=g.call(w,m,h);break e}m=g;break e;case 3:g.flags=g.flags&-65537|128;case 0:if(g=v.payload,h=typeof g=="function"?g.call(w,m,h):g,h==null)break e;m=Q({},m,h);break e;case 2:at=!0}}s.callback!==null&&s.lane!==0&&(e.flags|=64,h=l.effects,h===null?l.effects=[s]:h.push(s))}else w={eventTime:w,lane:h,tag:s.tag,payload:s.payload,callback:s.callback,next:null},f===null?(a=f=w,u=m):f=f.next=w,i|=h;if(s=s.next,s===null){if(s=l.shared.pending,s===null)break;h=s,s=h.next,h.next=null,l.lastBaseUpdate=h,l.shared.pending=null}}while(!0);if(f===null&&(u=m),l.baseState=u,l.firstBaseUpdate=a,l.lastBaseUpdate=f,t=l.shared.interleaved,t!==null){l=t;do i|=l.lane,l=l.next;while(l!==t)}else o===null&&(l.shared.lanes=0);Qt|=i,e.lanes=i,e.memoizedState=m}}function Cu(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;tn?n:4,e(!0);var r=Ro.transition;Ro.transition={};try{e(!1),t()}finally{F=n,Ro.transition=r}}function Hc(){return ze().memoizedState}function Xp(e,t,n){var r=St(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Vc(e))Wc(t,n);else if(n=Cc(e,t,n,r),n!==null){var l=de();$e(n,e,r,l),Qc(n,t,r)}}function Jp(e,t,n){var r=St(e),l={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Vc(e))Wc(t,l);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=t.lastRenderedReducer,o!==null))try{var i=t.lastRenderedState,s=o(i,n);if(l.hasEagerState=!0,l.eagerState=s,Be(s,i)){var u=t.interleaved;u===null?(l.next=l,ds(t)):(l.next=u.next,u.next=l),t.interleaved=l;return}}catch{}finally{}n=Cc(e,t,l,r),n!==null&&(l=de(),$e(n,e,r,l),Qc(n,t,r))}}function Vc(e){var t=e.alternate;return e===W||t!==null&&t===W}function Wc(e,t){Yn=_l=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Qc(e,t,n){if(n&4194240){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Zi(e,n)}}var Pl={readContext:Le,useCallback:oe,useContext:oe,useEffect:oe,useImperativeHandle:oe,useInsertionEffect:oe,useLayoutEffect:oe,useMemo:oe,useReducer:oe,useRef:oe,useState:oe,useDebugValue:oe,useDeferredValue:oe,useTransition:oe,useMutableSource:oe,useSyncExternalStore:oe,useId:oe,unstable_isNewReconciler:!1},Yp={readContext:Le,useCallback:function(e,t){return Qe().memoizedState=[e,t===void 0?null:t],e},useContext:Le,useEffect:_u,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,el(4194308,4,Fc.bind(null,t,e),n)},useLayoutEffect:function(e,t){return el(4194308,4,e,t)},useInsertionEffect:function(e,t){return el(4,2,e,t)},useMemo:function(e,t){var n=Qe();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Qe();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=Xp.bind(null,W,e),[r.memoizedState,e]},useRef:function(e){var t=Qe();return e={current:e},t.memoizedState=e},useState:Nu,useDebugValue:Ss,useDeferredValue:function(e){return Qe().memoizedState=e},useTransition:function(){var e=Nu(!1),t=e[0];return e=qp.bind(null,e[1]),Qe().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=W,l=Qe();if(H){if(n===void 0)throw Error(k(407));n=n()}else{if(n=t(),te===null)throw Error(k(349));Wt&30||Tc(r,t,n)}l.memoizedState=n;var o={value:n,getSnapshot:t};return l.queue=o,_u(jc.bind(null,r,o,e),[e]),r.flags|=2048,yr(9,Oc.bind(null,r,o,n,t),void 0,null),n},useId:function(){var e=Qe(),t=te.identifierPrefix;if(H){var n=be,r=Ze;n=(r&~(1<<32-Ie(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=mr++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=i.createElement(n,{is:r.is}):(e=i.createElement(n),n==="select"&&(i=e,r.multiple?i.multiple=!0:r.size&&(i.size=r.size))):e=i.createElementNS(e,n),e[Ke]=t,e[fr]=r,tf(e,t,!1,!1),t.stateNode=e;e:{switch(i=Yo(n,r),n){case"dialog":I("cancel",e),I("close",e),l=r;break;case"iframe":case"object":case"embed":I("load",e),l=r;break;case"video":case"audio":for(l=0;lCn&&(t.flags|=128,r=!0,Un(o,!1),t.lanes=4194304)}else{if(!r)if(e=Nl(i),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),Un(o,!0),o.tail===null&&o.tailMode==="hidden"&&!i.alternate&&!H)return ie(t),null}else 2*J()-o.renderingStartTime>Cn&&n!==1073741824&&(t.flags|=128,r=!0,Un(o,!1),t.lanes=4194304);o.isBackwards?(i.sibling=t.child,t.child=i):(n=o.last,n!==null?n.sibling=i:t.child=i,o.last=i)}return o.tail!==null?(t=o.tail,o.rendering=t,o.tail=t.sibling,o.renderingStartTime=J(),t.sibling=null,n=V.current,U(V,r?n&1|2:n&1),t):(ie(t),null);case 22:case 23:return Ps(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&t.mode&1?Se&1073741824&&(ie(t),t.subtreeFlags&6&&(t.flags|=8192)):ie(t),null;case 24:return null;case 25:return null}throw Error(k(156,t.tag))}function lm(e,t){switch(ss(t),t.tag){case 1:return ve(t.type)&&vl(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return kn(),$(ge),$(ae),ys(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 5:return hs(t),null;case 13:if($(V),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(k(340));xn()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return $(V),null;case 4:return kn(),null;case 10:return fs(t.type._context),null;case 22:case 23:return Ps(),null;case 24:return null;default:return null}}var Vr=!1,se=!1,om=typeof WeakSet=="function"?WeakSet:Set,_=null;function an(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){K(e,t,r)}else n.current=null}function Ei(e,t,n){try{n()}catch(r){K(e,t,r)}}var Fu=!1;function im(e,t){if(ii=ml,e=uc(),os(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var l=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break e}var i=0,s=-1,u=-1,a=0,f=0,m=e,h=null;t:for(;;){for(var w;m!==n||l!==0&&m.nodeType!==3||(s=i+l),m!==o||r!==0&&m.nodeType!==3||(u=i+r),m.nodeType===3&&(i+=m.nodeValue.length),(w=m.firstChild)!==null;)h=m,m=w;for(;;){if(m===e)break t;if(h===n&&++a===l&&(s=i),h===o&&++f===r&&(u=i),(w=m.nextSibling)!==null)break;m=h,h=m.parentNode}m=w}n=s===-1||u===-1?null:{start:s,end:u}}else n=null}n=n||{start:0,end:0}}else n=null;for(si={focusedElem:e,selectionRange:n},ml=!1,_=t;_!==null;)if(t=_,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,_=e;else for(;_!==null;){t=_;try{var g=t.alternate;if(t.flags&1024)switch(t.tag){case 0:case 11:case 15:break;case 1:if(g!==null){var v=g.memoizedProps,C=g.memoizedState,d=t.stateNode,c=d.getSnapshotBeforeUpdate(t.elementType===t.type?v:Ae(t.type,v),C);d.__reactInternalSnapshotBeforeUpdate=c}break;case 3:var p=t.stateNode.containerInfo;p.nodeType===1?p.textContent="":p.nodeType===9&&p.documentElement&&p.removeChild(p.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(k(163))}}catch(x){K(t,t.return,x)}if(e=t.sibling,e!==null){e.return=t.return,_=e;break}_=t.return}return g=Fu,Fu=!1,g}function Gn(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var l=r=r.next;do{if((l.tag&e)===e){var o=l.destroy;l.destroy=void 0,o!==void 0&&Ei(t,n,o)}l=l.next}while(l!==r)}}function Ql(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Ci(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function lf(e){var t=e.alternate;t!==null&&(e.alternate=null,lf(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[Ke],delete t[fr],delete t[ci],delete t[Hp],delete t[Vp])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function of(e){return e.tag===5||e.tag===3||e.tag===4}function Uu(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||of(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Ni(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=gl));else if(r!==4&&(e=e.child,e!==null))for(Ni(e,t,n),e=e.sibling;e!==null;)Ni(e,t,n),e=e.sibling}function _i(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(_i(e,t,n),e=e.sibling;e!==null;)_i(e,t,n),e=e.sibling}var ne=null,Fe=!1;function st(e,t,n){for(n=n.child;n!==null;)sf(e,t,n),n=n.sibling}function sf(e,t,n){if(qe&&typeof qe.onCommitFiberUnmount=="function")try{qe.onCommitFiberUnmount(Fl,n)}catch{}switch(n.tag){case 5:se||an(n,t);case 6:var r=ne,l=Fe;ne=null,st(e,t,n),ne=r,Fe=l,ne!==null&&(Fe?(e=ne,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):ne.removeChild(n.stateNode));break;case 18:ne!==null&&(Fe?(e=ne,n=n.stateNode,e.nodeType===8?No(e.parentNode,n):e.nodeType===1&&No(e,n),ir(e)):No(ne,n.stateNode));break;case 4:r=ne,l=Fe,ne=n.stateNode.containerInfo,Fe=!0,st(e,t,n),ne=r,Fe=l;break;case 0:case 11:case 14:case 15:if(!se&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){l=r=r.next;do{var o=l,i=o.destroy;o=o.tag,i!==void 0&&(o&2||o&4)&&Ei(n,t,i),l=l.next}while(l!==r)}st(e,t,n);break;case 1:if(!se&&(an(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(s){K(n,t,s)}st(e,t,n);break;case 21:st(e,t,n);break;case 22:n.mode&1?(se=(r=se)||n.memoizedState!==null,st(e,t,n),se=r):st(e,t,n);break;default:st(e,t,n)}}function Iu(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new om),t.forEach(function(r){var l=hm.bind(null,e,r);n.has(r)||(n.add(r),r.then(l,l))})}}function Me(e,t){var n=t.deletions;if(n!==null)for(var r=0;rl&&(l=i),r&=~o}if(r=l,r=J()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*um(r/1960))-r,10e?16:e,mt===null)var r=!1;else{if(e=mt,mt=null,Ol=0,A&6)throw Error(k(331));var l=A;for(A|=4,_=e.current;_!==null;){var o=_,i=o.child;if(_.flags&16){var s=o.deletions;if(s!==null){for(var u=0;uJ()-Ns?It(e,0):Cs|=n),we(e,t)}function hf(e,t){t===0&&(e.mode&1?(t=Dr,Dr<<=1,!(Dr&130023424)&&(Dr=4194304)):t=1);var n=de();e=rt(e,t),e!==null&&(xr(e,t,n),we(e,n))}function mm(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),hf(e,n)}function hm(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,l=e.memoizedState;l!==null&&(n=l.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(k(314))}r!==null&&r.delete(t),hf(e,n)}var yf;yf=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||ge.current)ye=!0;else{if(!(e.lanes&n)&&!(t.flags&128))return ye=!1,nm(e,t,n);ye=!!(e.flags&131072)}else ye=!1,H&&t.flags&1048576&&wc(t,Sl,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;tl(e,t),e=t.pendingProps;var l=wn(t,ae.current);hn(t,n),l=vs(null,t,r,e,l,n);var o=ws();return t.flags|=1,typeof l=="object"&&l!==null&&typeof l.render=="function"&&l.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,ve(r)?(o=!0,wl(t)):o=!1,t.memoizedState=l.state!==null&&l.state!==void 0?l.state:null,ps(t),l.updater=Wl,t.stateNode=l,l._reactInternals=t,yi(t,r,e,n),t=wi(null,t,r,!0,o,n)):(t.tag=0,H&&o&&is(t),ce(null,t,l,n),t=t.child),t;case 16:r=t.elementType;e:{switch(tl(e,t),e=t.pendingProps,l=r._init,r=l(r._payload),t.type=r,l=t.tag=gm(r),e=Ae(r,e),l){case 0:t=vi(null,t,r,e,n);break e;case 1:t=Du(null,t,r,e,n);break e;case 11:t=Lu(null,t,r,e,n);break e;case 14:t=zu(null,t,r,Ae(r.type,e),n);break e}throw Error(k(306,r,""))}return t;case 0:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ae(r,l),vi(e,t,r,l,n);case 1:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ae(r,l),Du(e,t,r,l,n);case 3:e:{if(Zc(t),e===null)throw Error(k(387));r=t.pendingProps,o=t.memoizedState,l=o.element,Nc(e,t),Cl(t,r,null,n);var i=t.memoizedState;if(r=i.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:i.cache,pendingSuspenseBoundaries:i.pendingSuspenseBoundaries,transitions:i.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){l=En(Error(k(423)),t),t=Mu(e,t,r,n,l);break e}else if(r!==l){l=En(Error(k(424)),t),t=Mu(e,t,r,n,l);break e}else for(ke=vt(t.stateNode.containerInfo.firstChild),Ee=t,H=!0,Ue=null,n=Ec(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(xn(),r===l){t=lt(e,t,n);break e}ce(e,t,r,n)}t=t.child}return t;case 5:return _c(t),e===null&&pi(t),r=t.type,l=t.pendingProps,o=e!==null?e.memoizedProps:null,i=l.children,ui(r,l)?i=null:o!==null&&ui(r,o)&&(t.flags|=32),Gc(e,t),ce(e,t,i,n),t.child;case 6:return e===null&&pi(t),null;case 13:return bc(e,t,n);case 4:return ms(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=Sn(t,null,r,n):ce(e,t,r,n),t.child;case 11:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ae(r,l),Lu(e,t,r,l,n);case 7:return ce(e,t,t.pendingProps,n),t.child;case 8:return ce(e,t,t.pendingProps.children,n),t.child;case 12:return ce(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,l=t.pendingProps,o=t.memoizedProps,i=l.value,U(kl,r._currentValue),r._currentValue=i,o!==null)if(Be(o.value,i)){if(o.children===l.children&&!ge.current){t=lt(e,t,n);break e}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var s=o.dependencies;if(s!==null){i=o.child;for(var u=s.firstContext;u!==null;){if(u.context===r){if(o.tag===1){u=et(-1,n&-n),u.tag=2;var a=o.updateQueue;if(a!==null){a=a.shared;var f=a.pending;f===null?u.next=u:(u.next=f.next,f.next=u),a.pending=u}}o.lanes|=n,u=o.alternate,u!==null&&(u.lanes|=n),mi(o.return,n,t),s.lanes|=n;break}u=u.next}}else if(o.tag===10)i=o.type===t.type?null:o.child;else if(o.tag===18){if(i=o.return,i===null)throw Error(k(341));i.lanes|=n,s=i.alternate,s!==null&&(s.lanes|=n),mi(i,n,t),i=o.sibling}else i=o.child;if(i!==null)i.return=o;else for(i=o;i!==null;){if(i===t){i=null;break}if(o=i.sibling,o!==null){o.return=i.return,i=o;break}i=i.return}o=i}ce(e,t,l.children,n),t=t.child}return t;case 9:return l=t.type,r=t.pendingProps.children,hn(t,n),l=Le(l),r=r(l),t.flags|=1,ce(e,t,r,n),t.child;case 14:return r=t.type,l=Ae(r,t.pendingProps),l=Ae(r.type,l),zu(e,t,r,l,n);case 15:return Jc(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ae(r,l),tl(e,t),t.tag=1,ve(r)?(e=!0,wl(t)):e=!1,hn(t,n),Kc(t,r,l),yi(t,r,l,n),wi(null,t,r,!0,e,n);case 19:return ef(e,t,n);case 22:return Yc(e,t,n)}throw Error(k(156,t.tag))};function gf(e,t){return Va(e,t)}function ym(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Oe(e,t,n,r){return new ym(e,t,n,r)}function Ts(e){return e=e.prototype,!(!e||!e.isReactComponent)}function gm(e){if(typeof e=="function")return Ts(e)?1:0;if(e!=null){if(e=e.$$typeof,e===Xi)return 11;if(e===Ji)return 14}return 2}function kt(e,t){var n=e.alternate;return n===null?(n=Oe(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function ll(e,t,n,r,l,o){var i=2;if(r=e,typeof e=="function")Ts(e)&&(i=1);else if(typeof e=="string")i=5;else e:switch(e){case bt:return $t(n.children,l,o,t);case qi:i=8,l|=8;break;case $o:return e=Oe(12,n,t,l|2),e.elementType=$o,e.lanes=o,e;case Bo:return e=Oe(13,n,t,l),e.elementType=Bo,e.lanes=o,e;case Ho:return e=Oe(19,n,t,l),e.elementType=Ho,e.lanes=o,e;case _a:return ql(n,l,o,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case Ca:i=10;break e;case Na:i=9;break e;case Xi:i=11;break e;case Ji:i=14;break e;case ut:i=16,r=null;break e}throw Error(k(130,e==null?e:typeof e,""))}return t=Oe(i,n,t,l),t.elementType=e,t.type=r,t.lanes=o,t}function $t(e,t,n,r){return e=Oe(7,e,r,t),e.lanes=n,e}function ql(e,t,n,r){return e=Oe(22,e,r,t),e.elementType=_a,e.lanes=n,e.stateNode={isHidden:!1},e}function zo(e,t,n){return e=Oe(6,e,null,t),e.lanes=n,e}function Do(e,t,n){return t=Oe(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function vm(e,t,n,r,l){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=mo(0),this.expirationTimes=mo(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=mo(0),this.identifierPrefix=r,this.onRecoverableError=l,this.mutableSourceEagerHydrationData=null}function Os(e,t,n,r,l,o,i,s,u){return e=new vm(e,t,n,s,u),t===1?(t=1,o===!0&&(t|=8)):t=0,o=Oe(3,null,null,t),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},ps(o),e}function wm(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Sf)}catch(e){console.error(e)}}Sf(),xa.exports=_e;var Cm=xa.exports,kf,qu=Cm;kf=qu.createRoot,qu.hydrateRoot;let Nm={data:""},_m=e=>typeof window=="object"?((e?e.querySelector("#_goober"):window._goober)||Object.assign((e||document.head).appendChild(document.createElement("style")),{innerHTML:" ",id:"_goober"})).firstChild:e||Nm,Pm=/(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(}\s*)/g,Rm=/\/\*[^]*?\*\/| +/g,Xu=/\n+/g,dt=(e,t)=>{let n="",r="",l="";for(let o in e){let i=e[o];o[0]=="@"?o[1]=="i"?n=o+" "+i+";":r+=o[1]=="f"?dt(i,o):o+"{"+dt(i,o[1]=="k"?"":t)+"}":typeof i=="object"?r+=dt(i,t?t.replace(/([^,])+/g,s=>o.replace(/([^,]*:\S+\([^)]*\))|([^,])+/g,u=>/&/.test(u)?u.replace(/&/g,s):s?s+" "+u:u)):o):i!=null&&(o=/^--/.test(o)?o:o.replace(/[A-Z]/g,"-$&").toLowerCase(),l+=dt.p?dt.p(o,i):o+":"+i+";")}return n+(t&&l?t+"{"+l+"}":l)+r},Je={},Ef=e=>{if(typeof e=="object"){let t="";for(let n in e)t+=n+Ef(e[n]);return t}return e},Tm=(e,t,n,r,l)=>{let o=Ef(e),i=Je[o]||(Je[o]=(u=>{let a=0,f=11;for(;a>>0;return"go"+f})(o));if(!Je[i]){let u=o!==e?e:(a=>{let f,m,h=[{}];for(;f=Pm.exec(a.replace(Rm,""));)f[4]?h.shift():f[3]?(m=f[3].replace(Xu," ").trim(),h.unshift(h[0][m]=h[0][m]||{})):h[0][f[1]]=f[2].replace(Xu," ").trim();return h[0]})(e);Je[i]=dt(l?{["@keyframes "+i]:u}:u,n?"":"."+i)}let s=n&&Je.g?Je.g:null;return n&&(Je.g=Je[i]),((u,a,f,m)=>{m?a.data=a.data.replace(m,u):a.data.indexOf(u)===-1&&(a.data=f?u+a.data:a.data+u)})(Je[i],t,r,s),i},Om=(e,t,n)=>e.reduce((r,l,o)=>{let i=t[o];if(i&&i.call){let s=i(n),u=s&&s.props&&s.props.className||/^go/.test(s)&&s;i=u?"."+u:s&&typeof s=="object"?s.props?"":dt(s,""):s===!1?"":s}return r+l+(i??"")},"");function Zl(e){let t=this||{},n=e.call?e(t.p):e;return Tm(n.unshift?n.raw?Om(n,[].slice.call(arguments,1),t.p):n.reduce((r,l)=>Object.assign(r,l&&l.call?l(t.p):l),{}):n,_m(t.target),t.g,t.o,t.k)}let Cf,ji,Li;Zl.bind({g:1});let ot=Zl.bind({k:1});function jm(e,t,n,r){dt.p=t,Cf=e,ji=n,Li=r}function Rt(e,t){let n=this||{};return function(){let r=arguments;function l(o,i){let s=Object.assign({},o),u=s.className||l.className;n.p=Object.assign({theme:ji&&ji()},s),n.o=/ *go\d+/.test(u),s.className=Zl.apply(n,r)+(u?" "+u:"");let a=e;return e[0]&&(a=s.as||e,delete s.as),Li&&a[0]&&Li(s),Cf(a,s)}return l}}var Lm=e=>typeof e=="function",zl=(e,t)=>Lm(e)?e(t):e,zm=(()=>{let e=0;return()=>(++e).toString()})(),Nf=(()=>{let e;return()=>{if(e===void 0&&typeof window<"u"){let t=matchMedia("(prefers-reduced-motion: reduce)");e=!t||t.matches}return e}})(),Dm=20,_f=(e,t)=>{switch(t.type){case 0:return{...e,toasts:[t.toast,...e.toasts].slice(0,Dm)};case 1:return{...e,toasts:e.toasts.map(o=>o.id===t.toast.id?{...o,...t.toast}:o)};case 2:let{toast:n}=t;return _f(e,{type:e.toasts.find(o=>o.id===n.id)?1:0,toast:n});case 3:let{toastId:r}=t;return{...e,toasts:e.toasts.map(o=>o.id===r||r===void 0?{...o,dismissed:!0,visible:!1}:o)};case 4:return t.toastId===void 0?{...e,toasts:[]}:{...e,toasts:e.toasts.filter(o=>o.id!==t.toastId)};case 5:return{...e,pausedAt:t.time};case 6:let l=t.time-(e.pausedAt||0);return{...e,pausedAt:void 0,toasts:e.toasts.map(o=>({...o,pauseDuration:o.pauseDuration+l}))}}},ol=[],Ft={toasts:[],pausedAt:void 0},Yt=e=>{Ft=_f(Ft,e),ol.forEach(t=>{t(Ft)})},Mm={blank:4e3,error:4e3,success:2e3,loading:1/0,custom:4e3},Am=(e={})=>{let[t,n]=D.useState(Ft),r=D.useRef(Ft);D.useEffect(()=>(r.current!==Ft&&n(Ft),ol.push(n),()=>{let o=ol.indexOf(n);o>-1&&ol.splice(o,1)}),[]);let l=t.toasts.map(o=>{var i,s,u;return{...e,...e[o.type],...o,removeDelay:o.removeDelay||((i=e[o.type])==null?void 0:i.removeDelay)||(e==null?void 0:e.removeDelay),duration:o.duration||((s=e[o.type])==null?void 0:s.duration)||(e==null?void 0:e.duration)||Mm[o.type],style:{...e.style,...(u=e[o.type])==null?void 0:u.style,...o.style}}});return{...t,toasts:l}},Fm=(e,t="blank",n)=>({createdAt:Date.now(),visible:!0,dismissed:!1,type:t,ariaProps:{role:"status","aria-live":"polite"},message:e,pauseDuration:0,...n,id:(n==null?void 0:n.id)||zm()}),Cr=e=>(t,n)=>{let r=Fm(t,e,n);return Yt({type:2,toast:r}),r.id},fe=(e,t)=>Cr("blank")(e,t);fe.error=Cr("error");fe.success=Cr("success");fe.loading=Cr("loading");fe.custom=Cr("custom");fe.dismiss=e=>{Yt({type:3,toastId:e})};fe.remove=e=>Yt({type:4,toastId:e});fe.promise=(e,t,n)=>{let r=fe.loading(t.loading,{...n,...n==null?void 0:n.loading});return typeof e=="function"&&(e=e()),e.then(l=>{let o=t.success?zl(t.success,l):void 0;return o?fe.success(o,{id:r,...n,...n==null?void 0:n.success}):fe.dismiss(r),l}).catch(l=>{let o=t.error?zl(t.error,l):void 0;o?fe.error(o,{id:r,...n,...n==null?void 0:n.error}):fe.dismiss(r)}),e};var Um=(e,t)=>{Yt({type:1,toast:{id:e,height:t}})},Im=()=>{Yt({type:5,time:Date.now()})},er=new Map,$m=1e3,Bm=(e,t=$m)=>{if(er.has(e))return;let n=setTimeout(()=>{er.delete(e),Yt({type:4,toastId:e})},t);er.set(e,n)},Hm=e=>{let{toasts:t,pausedAt:n}=Am(e);D.useEffect(()=>{if(n)return;let o=Date.now(),i=t.map(s=>{if(s.duration===1/0)return;let u=(s.duration||0)+s.pauseDuration-(o-s.createdAt);if(u<0){s.visible&&fe.dismiss(s.id);return}return setTimeout(()=>fe.dismiss(s.id),u)});return()=>{i.forEach(s=>s&&clearTimeout(s))}},[t,n]);let r=D.useCallback(()=>{n&&Yt({type:6,time:Date.now()})},[n]),l=D.useCallback((o,i)=>{let{reverseOrder:s=!1,gutter:u=8,defaultPosition:a}=i||{},f=t.filter(w=>(w.position||a)===(o.position||a)&&w.height),m=f.findIndex(w=>w.id===o.id),h=f.filter((w,g)=>gw.visible).slice(...s?[h+1]:[0,h]).reduce((w,g)=>w+(g.height||0)+u,0)},[t]);return D.useEffect(()=>{t.forEach(o=>{if(o.dismissed)Bm(o.id,o.removeDelay);else{let i=er.get(o.id);i&&(clearTimeout(i),er.delete(o.id))}})},[t]),{toasts:t,handlers:{updateHeight:Um,startPause:Im,endPause:r,calculateOffset:l}}},Vm=ot` +from { + transform: scale(0) rotate(45deg); + opacity: 0; +} +to { + transform: scale(1) rotate(45deg); + opacity: 1; +}`,Wm=ot` +from { + transform: scale(0); + opacity: 0; +} +to { + transform: scale(1); + opacity: 1; +}`,Qm=ot` +from { + transform: scale(0) rotate(90deg); + opacity: 0; +} +to { + transform: scale(1) rotate(90deg); + opacity: 1; +}`,Km=Rt("div")` + width: 20px; + opacity: 0; + height: 20px; + border-radius: 10px; + background: ${e=>e.primary||"#ff4b4b"}; + position: relative; + transform: rotate(45deg); + + animation: ${Vm} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) + forwards; + animation-delay: 100ms; + + &:after, + &:before { + content: ''; + animation: ${Wm} 0.15s ease-out forwards; + animation-delay: 150ms; + position: absolute; + border-radius: 3px; + opacity: 0; + background: ${e=>e.secondary||"#fff"}; + bottom: 9px; + left: 4px; + height: 2px; + width: 12px; + } + + &:before { + animation: ${Qm} 0.15s ease-out forwards; + animation-delay: 180ms; + transform: rotate(90deg); + } +`,qm=ot` + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +`,Xm=Rt("div")` + width: 12px; + height: 12px; + box-sizing: border-box; + border: 2px solid; + border-radius: 100%; + border-color: ${e=>e.secondary||"#e0e0e0"}; + border-right-color: ${e=>e.primary||"#616161"}; + animation: ${qm} 1s linear infinite; +`,Jm=ot` +from { + transform: scale(0) rotate(45deg); + opacity: 0; +} +to { + transform: scale(1) rotate(45deg); + opacity: 1; +}`,Ym=ot` +0% { + height: 0; + width: 0; + opacity: 0; +} +40% { + height: 0; + width: 6px; + opacity: 1; +} +100% { + opacity: 1; + height: 10px; +}`,Gm=Rt("div")` + width: 20px; + opacity: 0; + height: 20px; + border-radius: 10px; + background: ${e=>e.primary||"#61d345"}; + position: relative; + transform: rotate(45deg); + + animation: ${Jm} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) + forwards; + animation-delay: 100ms; + &:after { + content: ''; + box-sizing: border-box; + animation: ${Ym} 0.2s ease-out forwards; + opacity: 0; + animation-delay: 200ms; + position: absolute; + border-right: 2px solid; + border-bottom: 2px solid; + border-color: ${e=>e.secondary||"#fff"}; + bottom: 6px; + left: 6px; + height: 10px; + width: 6px; + } +`,Zm=Rt("div")` + position: absolute; +`,bm=Rt("div")` + position: relative; + display: flex; + justify-content: center; + align-items: center; + min-width: 20px; + min-height: 20px; +`,eh=ot` +from { + transform: scale(0.6); + opacity: 0.4; +} +to { + transform: scale(1); + opacity: 1; +}`,th=Rt("div")` + position: relative; + transform: scale(0.6); + opacity: 0.4; + min-width: 20px; + animation: ${eh} 0.3s 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275) + forwards; +`,nh=({toast:e})=>{let{icon:t,type:n,iconTheme:r}=e;return t!==void 0?typeof t=="string"?D.createElement(th,null,t):t:n==="blank"?null:D.createElement(bm,null,D.createElement(Xm,{...r}),n!=="loading"&&D.createElement(Zm,null,n==="error"?D.createElement(Km,{...r}):D.createElement(Gm,{...r})))},rh=e=>` +0% {transform: translate3d(0,${e*-200}%,0) scale(.6); opacity:.5;} +100% {transform: translate3d(0,0,0) scale(1); opacity:1;} +`,lh=e=>` +0% {transform: translate3d(0,0,-1px) scale(1); opacity:1;} +100% {transform: translate3d(0,${e*-150}%,-1px) scale(.6); opacity:0;} +`,oh="0%{opacity:0;} 100%{opacity:1;}",ih="0%{opacity:1;} 100%{opacity:0;}",sh=Rt("div")` + display: flex; + align-items: center; + background: #fff; + color: #363636; + line-height: 1.3; + will-change: transform; + box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05); + max-width: 350px; + pointer-events: auto; + padding: 8px 10px; + border-radius: 8px; +`,uh=Rt("div")` + display: flex; + justify-content: center; + margin: 4px 10px; + color: inherit; + flex: 1 1 auto; + white-space: pre-line; +`,ah=(e,t)=>{let n=e.includes("top")?1:-1,[r,l]=Nf()?[oh,ih]:[rh(n),lh(n)];return{animation:t?`${ot(r)} 0.35s cubic-bezier(.21,1.02,.73,1) forwards`:`${ot(l)} 0.4s forwards cubic-bezier(.06,.71,.55,1)`}},ch=D.memo(({toast:e,position:t,style:n,children:r})=>{let l=e.height?ah(e.position||t||"top-center",e.visible):{opacity:0},o=D.createElement(nh,{toast:e}),i=D.createElement(uh,{...e.ariaProps},zl(e.message,e));return D.createElement(sh,{className:e.className,style:{...l,...n,...e.style}},typeof r=="function"?r({icon:o,message:i}):D.createElement(D.Fragment,null,o,i))});jm(D.createElement);var fh=({id:e,className:t,style:n,onHeightUpdate:r,children:l})=>{let o=D.useCallback(i=>{if(i){let s=()=>{let u=i.getBoundingClientRect().height;r(e,u)};s(),new MutationObserver(s).observe(i,{subtree:!0,childList:!0,characterData:!0})}},[e,r]);return D.createElement("div",{ref:o,className:t,style:n},l)},dh=(e,t)=>{let n=e.includes("top"),r=n?{top:0}:{bottom:0},l=e.includes("center")?{justifyContent:"center"}:e.includes("right")?{justifyContent:"flex-end"}:{};return{left:0,right:0,display:"flex",position:"absolute",transition:Nf()?void 0:"all 230ms cubic-bezier(.21,1.02,.73,1)",transform:`translateY(${t*(n?1:-1)}px)`,...r,...l}},ph=Zl` + z-index: 9999; + > * { + pointer-events: auto; + } +`,Kr=16,mh=({reverseOrder:e,position:t="top-center",toastOptions:n,gutter:r,children:l,containerStyle:o,containerClassName:i})=>{let{toasts:s,handlers:u}=Hm(n);return D.createElement("div",{id:"_rht_toaster",style:{position:"fixed",zIndex:9999,top:Kr,left:Kr,right:Kr,bottom:Kr,pointerEvents:"none",...o},className:i,onMouseEnter:u.startPause,onMouseLeave:u.endPause},s.map(a=>{let f=a.position||t,m=u.calculateOffset(a,{reverseOrder:e,gutter:r,defaultPosition:t}),h=dh(f,m);return D.createElement(fh,{id:a.id,key:a.id,onHeightUpdate:u.updateHeight,className:a.visible?ph:"",style:h},a.type==="custom"?zl(a.message,a):l?l(a):D.createElement(ch,{toast:a,position:f}))}))},Ju=fe;/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */var hh={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const yh=e=>e.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase().trim(),Tt=(e,t)=>{const n=D.forwardRef(({color:r="currentColor",size:l=24,strokeWidth:o=2,absoluteStrokeWidth:i,className:s="",children:u,...a},f)=>D.createElement("svg",{ref:f,...hh,width:l,height:l,stroke:r,strokeWidth:i?Number(o)*24/Number(l):o,className:["lucide",`lucide-${yh(e)}`,s].join(" "),...a},[...t.map(([m,h])=>D.createElement(m,h)),...Array.isArray(u)?u:[u]]));return n.displayName=`${e}`,n};/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const Pf=Tt("Cpu",[["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",key:"1vbyd7"}],["rect",{x:"9",y:"9",width:"6",height:"6",key:"o3kz5p"}],["path",{d:"M15 2v2",key:"13l42r"}],["path",{d:"M15 20v2",key:"15mkzm"}],["path",{d:"M2 15h2",key:"1gxd5l"}],["path",{d:"M2 9h2",key:"1bbxkp"}],["path",{d:"M20 15h2",key:"19e6y8"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M9 2v2",key:"165o2o"}],["path",{d:"M9 20v2",key:"i2bqo8"}]]);/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const gh=Tt("ExternalLink",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]]);/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const vh=Tt("Link",[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]]);/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const Rf=Tt("MemoryStick",[["path",{d:"M6 19v-3",key:"1nvgqn"}],["path",{d:"M10 19v-3",key:"iu8nkm"}],["path",{d:"M14 19v-3",key:"kcehxu"}],["path",{d:"M18 19v-3",key:"1vh91z"}],["path",{d:"M8 11V9",key:"63erz4"}],["path",{d:"M16 11V9",key:"fru6f3"}],["path",{d:"M12 11V9",key:"ha00sb"}],["path",{d:"M2 15h20",key:"16ne18"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z",key:"lhddv3"}]]);/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const wh=Tt("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const gn=Tt("Server",[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]]);/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const xh=Tt("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);/** + * @license lucide-react v0.344.0 - ISC + * + * This source code is licensed under the ISC license. + * See the LICENSE file in the root directory of this source tree. + */const Sh=Tt("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);function Tf(e,t){return function(){return e.apply(t,arguments)}}const{toString:kh}=Object.prototype,{getPrototypeOf:Ds}=Object,bl=(e=>t=>{const n=kh.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),He=e=>(e=e.toLowerCase(),t=>bl(t)===e),eo=e=>t=>typeof t===e,{isArray:Rn}=Array,vr=eo("undefined");function Eh(e){return e!==null&&!vr(e)&&e.constructor!==null&&!vr(e.constructor)&&Ce(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Of=He("ArrayBuffer");function Ch(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&Of(e.buffer),t}const Nh=eo("string"),Ce=eo("function"),jf=eo("number"),to=e=>e!==null&&typeof e=="object",_h=e=>e===!0||e===!1,il=e=>{if(bl(e)!=="object")return!1;const t=Ds(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Ph=He("Date"),Rh=He("File"),Th=He("Blob"),Oh=He("FileList"),jh=e=>to(e)&&Ce(e.pipe),Lh=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||Ce(e.append)&&((t=bl(e))==="formdata"||t==="object"&&Ce(e.toString)&&e.toString()==="[object FormData]"))},zh=He("URLSearchParams"),[Dh,Mh,Ah,Fh]=["ReadableStream","Request","Response","Headers"].map(He),Uh=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Nr(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,l;if(typeof e!="object"&&(e=[e]),Rn(e))for(r=0,l=e.length;r0;)if(l=n[r],t===l.toLowerCase())return l;return null}const Ut=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,zf=e=>!vr(e)&&e!==Ut;function zi(){const{caseless:e}=zf(this)&&this||{},t={},n=(r,l)=>{const o=e&&Lf(t,l)||l;il(t[o])&&il(r)?t[o]=zi(t[o],r):il(r)?t[o]=zi({},r):Rn(r)?t[o]=r.slice():t[o]=r};for(let r=0,l=arguments.length;r(Nr(t,(l,o)=>{n&&Ce(l)?e[o]=Tf(l,n):e[o]=l},{allOwnKeys:r}),e),$h=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Bh=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Hh=(e,t,n,r)=>{let l,o,i;const s={};if(t=t||{},e==null)return t;do{for(l=Object.getOwnPropertyNames(e),o=l.length;o-- >0;)i=l[o],(!r||r(i,e,t))&&!s[i]&&(t[i]=e[i],s[i]=!0);e=n!==!1&&Ds(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Vh=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Wh=e=>{if(!e)return null;if(Rn(e))return e;let t=e.length;if(!jf(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Qh=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Ds(Uint8Array)),Kh=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let l;for(;(l=r.next())&&!l.done;){const o=l.value;t.call(e,o[0],o[1])}},qh=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Xh=He("HTMLFormElement"),Jh=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,l){return r.toUpperCase()+l}),Yu=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Yh=He("RegExp"),Df=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};Nr(n,(l,o)=>{let i;(i=t(l,o,e))!==!1&&(r[o]=i||l)}),Object.defineProperties(e,r)},Gh=e=>{Df(e,(t,n)=>{if(Ce(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(Ce(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Zh=(e,t)=>{const n={},r=l=>{l.forEach(o=>{n[o]=!0})};return Rn(e)?r(e):r(String(e).split(t)),n},bh=()=>{},e0=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function t0(e){return!!(e&&Ce(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const n0=e=>{const t=new Array(10),n=(r,l)=>{if(to(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[l]=r;const o=Rn(r)?[]:{};return Nr(r,(i,s)=>{const u=n(i,l+1);!vr(u)&&(o[s]=u)}),t[l]=void 0,o}}return r};return n(e,0)},r0=He("AsyncFunction"),l0=e=>e&&(to(e)||Ce(e))&&Ce(e.then)&&Ce(e.catch),Mf=((e,t)=>e?setImmediate:t?((n,r)=>(Ut.addEventListener("message",({source:l,data:o})=>{l===Ut&&o===n&&r.length&&r.shift()()},!1),l=>{r.push(l),Ut.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",Ce(Ut.postMessage)),o0=typeof queueMicrotask<"u"?queueMicrotask.bind(Ut):typeof process<"u"&&process.nextTick||Mf,y={isArray:Rn,isArrayBuffer:Of,isBuffer:Eh,isFormData:Lh,isArrayBufferView:Ch,isString:Nh,isNumber:jf,isBoolean:_h,isObject:to,isPlainObject:il,isReadableStream:Dh,isRequest:Mh,isResponse:Ah,isHeaders:Fh,isUndefined:vr,isDate:Ph,isFile:Rh,isBlob:Th,isRegExp:Yh,isFunction:Ce,isStream:jh,isURLSearchParams:zh,isTypedArray:Qh,isFileList:Oh,forEach:Nr,merge:zi,extend:Ih,trim:Uh,stripBOM:$h,inherits:Bh,toFlatObject:Hh,kindOf:bl,kindOfTest:He,endsWith:Vh,toArray:Wh,forEachEntry:Kh,matchAll:qh,isHTMLForm:Xh,hasOwnProperty:Yu,hasOwnProp:Yu,reduceDescriptors:Df,freezeMethods:Gh,toObjectSet:Zh,toCamelCase:Jh,noop:bh,toFiniteNumber:e0,findKey:Lf,global:Ut,isContextDefined:zf,isSpecCompliantForm:t0,toJSONObject:n0,isAsyncFn:r0,isThenable:l0,setImmediate:Mf,asap:o0};function O(e,t,n,r,l){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),l&&(this.response=l,this.status=l.status?l.status:null)}y.inherits(O,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:y.toJSONObject(this.config),code:this.code,status:this.status}}});const Af=O.prototype,Ff={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Ff[e]={value:e}});Object.defineProperties(O,Ff);Object.defineProperty(Af,"isAxiosError",{value:!0});O.from=(e,t,n,r,l,o)=>{const i=Object.create(Af);return y.toFlatObject(e,i,function(u){return u!==Error.prototype},s=>s!=="isAxiosError"),O.call(i,e.message,t,n,r,l),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const i0=null;function Di(e){return y.isPlainObject(e)||y.isArray(e)}function Uf(e){return y.endsWith(e,"[]")?e.slice(0,-2):e}function Gu(e,t,n){return e?e.concat(t).map(function(l,o){return l=Uf(l),!n&&o?"["+l+"]":l}).join(n?".":""):t}function s0(e){return y.isArray(e)&&!e.some(Di)}const u0=y.toFlatObject(y,{},null,function(t){return/^is[A-Z]/.test(t)});function no(e,t,n){if(!y.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=y.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(v,C){return!y.isUndefined(C[v])});const r=n.metaTokens,l=n.visitor||f,o=n.dots,i=n.indexes,u=(n.Blob||typeof Blob<"u"&&Blob)&&y.isSpecCompliantForm(t);if(!y.isFunction(l))throw new TypeError("visitor must be a function");function a(g){if(g===null)return"";if(y.isDate(g))return g.toISOString();if(!u&&y.isBlob(g))throw new O("Blob is not supported. Use a Buffer instead.");return y.isArrayBuffer(g)||y.isTypedArray(g)?u&&typeof Blob=="function"?new Blob([g]):Buffer.from(g):g}function f(g,v,C){let d=g;if(g&&!C&&typeof g=="object"){if(y.endsWith(v,"{}"))v=r?v:v.slice(0,-2),g=JSON.stringify(g);else if(y.isArray(g)&&s0(g)||(y.isFileList(g)||y.endsWith(v,"[]"))&&(d=y.toArray(g)))return v=Uf(v),d.forEach(function(p,x){!(y.isUndefined(p)||p===null)&&t.append(i===!0?Gu([v],x,o):i===null?v:v+"[]",a(p))}),!1}return Di(g)?!0:(t.append(Gu(C,v,o),a(g)),!1)}const m=[],h=Object.assign(u0,{defaultVisitor:f,convertValue:a,isVisitable:Di});function w(g,v){if(!y.isUndefined(g)){if(m.indexOf(g)!==-1)throw Error("Circular reference detected in "+v.join("."));m.push(g),y.forEach(g,function(d,c){(!(y.isUndefined(d)||d===null)&&l.call(t,d,y.isString(c)?c.trim():c,v,h))===!0&&w(d,v?v.concat(c):[c])}),m.pop()}}if(!y.isObject(e))throw new TypeError("data must be an object");return w(e),t}function Zu(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Ms(e,t){this._pairs=[],e&&no(e,this,t)}const If=Ms.prototype;If.append=function(t,n){this._pairs.push([t,n])};If.toString=function(t){const n=t?function(r){return t.call(this,r,Zu)}:Zu;return this._pairs.map(function(l){return n(l[0])+"="+n(l[1])},"").join("&")};function a0(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function $f(e,t,n){if(!t)return e;const r=n&&n.encode||a0;y.isFunction(n)&&(n={serialize:n});const l=n&&n.serialize;let o;if(l?o=l(t,n):o=y.isURLSearchParams(t)?t.toString():new Ms(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class bu{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){y.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Bf={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},c0=typeof URLSearchParams<"u"?URLSearchParams:Ms,f0=typeof FormData<"u"?FormData:null,d0=typeof Blob<"u"?Blob:null,p0={isBrowser:!0,classes:{URLSearchParams:c0,FormData:f0,Blob:d0},protocols:["http","https","file","blob","url","data"]},As=typeof window<"u"&&typeof document<"u",Mi=typeof navigator=="object"&&navigator||void 0,m0=As&&(!Mi||["ReactNative","NativeScript","NS"].indexOf(Mi.product)<0),h0=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",y0=As&&window.location.href||"http://localhost",g0=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:As,hasStandardBrowserEnv:m0,hasStandardBrowserWebWorkerEnv:h0,navigator:Mi,origin:y0},Symbol.toStringTag,{value:"Module"})),ue={...g0,...p0};function v0(e,t){return no(e,new ue.classes.URLSearchParams,Object.assign({visitor:function(n,r,l,o){return ue.isNode&&y.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function w0(e){return y.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function x0(e){const t={},n=Object.keys(e);let r;const l=n.length;let o;for(r=0;r=n.length;return i=!i&&y.isArray(l)?l.length:i,u?(y.hasOwnProp(l,i)?l[i]=[l[i],r]:l[i]=r,!s):((!l[i]||!y.isObject(l[i]))&&(l[i]=[]),t(n,r,l[i],o)&&y.isArray(l[i])&&(l[i]=x0(l[i])),!s)}if(y.isFormData(e)&&y.isFunction(e.entries)){const n={};return y.forEachEntry(e,(r,l)=>{t(w0(r),l,n,0)}),n}return null}function S0(e,t,n){if(y.isString(e))try{return(t||JSON.parse)(e),y.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(0,JSON.stringify)(e)}const _r={transitional:Bf,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",l=r.indexOf("application/json")>-1,o=y.isObject(t);if(o&&y.isHTMLForm(t)&&(t=new FormData(t)),y.isFormData(t))return l?JSON.stringify(Hf(t)):t;if(y.isArrayBuffer(t)||y.isBuffer(t)||y.isStream(t)||y.isFile(t)||y.isBlob(t)||y.isReadableStream(t))return t;if(y.isArrayBufferView(t))return t.buffer;if(y.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let s;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return v0(t,this.formSerializer).toString();if((s=y.isFileList(t))||r.indexOf("multipart/form-data")>-1){const u=this.env&&this.env.FormData;return no(s?{"files[]":t}:t,u&&new u,this.formSerializer)}}return o||l?(n.setContentType("application/json",!1),S0(t)):t}],transformResponse:[function(t){const n=this.transitional||_r.transitional,r=n&&n.forcedJSONParsing,l=this.responseType==="json";if(y.isResponse(t)||y.isReadableStream(t))return t;if(t&&y.isString(t)&&(r&&!this.responseType||l)){const i=!(n&&n.silentJSONParsing)&&l;try{return JSON.parse(t)}catch(s){if(i)throw s.name==="SyntaxError"?O.from(s,O.ERR_BAD_RESPONSE,this,null,this.response):s}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ue.classes.FormData,Blob:ue.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};y.forEach(["delete","get","head","post","put","patch"],e=>{_r.headers[e]={}});const k0=y.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),E0=e=>{const t={};let n,r,l;return e&&e.split(` +`).forEach(function(i){l=i.indexOf(":"),n=i.substring(0,l).trim().toLowerCase(),r=i.substring(l+1).trim(),!(!n||t[n]&&k0[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ea=Symbol("internals");function $n(e){return e&&String(e).trim().toLowerCase()}function sl(e){return e===!1||e==null?e:y.isArray(e)?e.map(sl):String(e)}function C0(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const N0=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Mo(e,t,n,r,l){if(y.isFunction(r))return r.call(this,t,n);if(l&&(t=n),!!y.isString(t)){if(y.isString(r))return t.indexOf(r)!==-1;if(y.isRegExp(r))return r.test(t)}}function _0(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function P0(e,t){const n=y.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(l,o,i){return this[r].call(this,t,l,o,i)},configurable:!0})})}class xe{constructor(t){t&&this.set(t)}set(t,n,r){const l=this;function o(s,u,a){const f=$n(u);if(!f)throw new Error("header name must be a non-empty string");const m=y.findKey(l,f);(!m||l[m]===void 0||a===!0||a===void 0&&l[m]!==!1)&&(l[m||u]=sl(s))}const i=(s,u)=>y.forEach(s,(a,f)=>o(a,f,u));if(y.isPlainObject(t)||t instanceof this.constructor)i(t,n);else if(y.isString(t)&&(t=t.trim())&&!N0(t))i(E0(t),n);else if(y.isHeaders(t))for(const[s,u]of t.entries())o(u,s,r);else t!=null&&o(n,t,r);return this}get(t,n){if(t=$n(t),t){const r=y.findKey(this,t);if(r){const l=this[r];if(!n)return l;if(n===!0)return C0(l);if(y.isFunction(n))return n.call(this,l,r);if(y.isRegExp(n))return n.exec(l);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=$n(t),t){const r=y.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||Mo(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let l=!1;function o(i){if(i=$n(i),i){const s=y.findKey(r,i);s&&(!n||Mo(r,r[s],s,n))&&(delete r[s],l=!0)}}return y.isArray(t)?t.forEach(o):o(t),l}clear(t){const n=Object.keys(this);let r=n.length,l=!1;for(;r--;){const o=n[r];(!t||Mo(this,this[o],o,t,!0))&&(delete this[o],l=!0)}return l}normalize(t){const n=this,r={};return y.forEach(this,(l,o)=>{const i=y.findKey(r,o);if(i){n[i]=sl(l),delete n[o];return}const s=t?_0(o):String(o).trim();s!==o&&delete n[o],n[s]=sl(l),r[s]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return y.forEach(this,(r,l)=>{r!=null&&r!==!1&&(n[l]=t&&y.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(l=>r.set(l)),r}static accessor(t){const r=(this[ea]=this[ea]={accessors:{}}).accessors,l=this.prototype;function o(i){const s=$n(i);r[s]||(P0(l,i),r[s]=!0)}return y.isArray(t)?t.forEach(o):o(t),this}}xe.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);y.reduceDescriptors(xe.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});y.freezeMethods(xe);function Ao(e,t){const n=this||_r,r=t||n,l=xe.from(r.headers);let o=r.data;return y.forEach(e,function(s){o=s.call(n,o,l.normalize(),t?t.status:void 0)}),l.normalize(),o}function Vf(e){return!!(e&&e.__CANCEL__)}function Tn(e,t,n){O.call(this,e??"canceled",O.ERR_CANCELED,t,n),this.name="CanceledError"}y.inherits(Tn,O,{__CANCEL__:!0});function Wf(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new O("Request failed with status code "+n.status,[O.ERR_BAD_REQUEST,O.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function R0(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function T0(e,t){e=e||10;const n=new Array(e),r=new Array(e);let l=0,o=0,i;return t=t!==void 0?t:1e3,function(u){const a=Date.now(),f=r[o];i||(i=a),n[l]=u,r[l]=a;let m=o,h=0;for(;m!==l;)h+=n[m++],m=m%e;if(l=(l+1)%e,l===o&&(o=(o+1)%e),a-i{n=f,l=null,o&&(clearTimeout(o),o=null),e.apply(null,a)};return[(...a)=>{const f=Date.now(),m=f-n;m>=r?i(a,f):(l=a,o||(o=setTimeout(()=>{o=null,i(l)},r-m)))},()=>l&&i(l)]}const Dl=(e,t,n=3)=>{let r=0;const l=T0(50,250);return O0(o=>{const i=o.loaded,s=o.lengthComputable?o.total:void 0,u=i-r,a=l(u),f=i<=s;r=i;const m={loaded:i,total:s,progress:s?i/s:void 0,bytes:u,rate:a||void 0,estimated:a&&s&&f?(s-i)/a:void 0,event:o,lengthComputable:s!=null,[t?"download":"upload"]:!0};e(m)},n)},ta=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},na=e=>(...t)=>y.asap(()=>e(...t)),j0=ue.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,ue.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(ue.origin),ue.navigator&&/(msie|trident)/i.test(ue.navigator.userAgent)):()=>!0,L0=ue.hasStandardBrowserEnv?{write(e,t,n,r,l,o){const i=[e+"="+encodeURIComponent(t)];y.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),y.isString(r)&&i.push("path="+r),y.isString(l)&&i.push("domain="+l),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function z0(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function D0(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function Qf(e,t,n){let r=!z0(t);return e&&(r||n==!1)?D0(e,t):t}const ra=e=>e instanceof xe?{...e}:e;function qt(e,t){t=t||{};const n={};function r(a,f,m,h){return y.isPlainObject(a)&&y.isPlainObject(f)?y.merge.call({caseless:h},a,f):y.isPlainObject(f)?y.merge({},f):y.isArray(f)?f.slice():f}function l(a,f,m,h){if(y.isUndefined(f)){if(!y.isUndefined(a))return r(void 0,a,m,h)}else return r(a,f,m,h)}function o(a,f){if(!y.isUndefined(f))return r(void 0,f)}function i(a,f){if(y.isUndefined(f)){if(!y.isUndefined(a))return r(void 0,a)}else return r(void 0,f)}function s(a,f,m){if(m in t)return r(a,f);if(m in e)return r(void 0,a)}const u={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:s,headers:(a,f,m)=>l(ra(a),ra(f),m,!0)};return y.forEach(Object.keys(Object.assign({},e,t)),function(f){const m=u[f]||l,h=m(e[f],t[f],f);y.isUndefined(h)&&m!==s||(n[f]=h)}),n}const Kf=e=>{const t=qt({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:l,xsrfCookieName:o,headers:i,auth:s}=t;t.headers=i=xe.from(i),t.url=$f(Qf(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),s&&i.set("Authorization","Basic "+btoa((s.username||"")+":"+(s.password?unescape(encodeURIComponent(s.password)):"")));let u;if(y.isFormData(n)){if(ue.hasStandardBrowserEnv||ue.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if((u=i.getContentType())!==!1){const[a,...f]=u?u.split(";").map(m=>m.trim()).filter(Boolean):[];i.setContentType([a||"multipart/form-data",...f].join("; "))}}if(ue.hasStandardBrowserEnv&&(r&&y.isFunction(r)&&(r=r(t)),r||r!==!1&&j0(t.url))){const a=l&&o&&L0.read(o);a&&i.set(l,a)}return t},M0=typeof XMLHttpRequest<"u",A0=M0&&function(e){return new Promise(function(n,r){const l=Kf(e);let o=l.data;const i=xe.from(l.headers).normalize();let{responseType:s,onUploadProgress:u,onDownloadProgress:a}=l,f,m,h,w,g;function v(){w&&w(),g&&g(),l.cancelToken&&l.cancelToken.unsubscribe(f),l.signal&&l.signal.removeEventListener("abort",f)}let C=new XMLHttpRequest;C.open(l.method.toUpperCase(),l.url,!0),C.timeout=l.timeout;function d(){if(!C)return;const p=xe.from("getAllResponseHeaders"in C&&C.getAllResponseHeaders()),E={data:!s||s==="text"||s==="json"?C.responseText:C.response,status:C.status,statusText:C.statusText,headers:p,config:e,request:C};Wf(function(P){n(P),v()},function(P){r(P),v()},E),C=null}"onloadend"in C?C.onloadend=d:C.onreadystatechange=function(){!C||C.readyState!==4||C.status===0&&!(C.responseURL&&C.responseURL.indexOf("file:")===0)||setTimeout(d)},C.onabort=function(){C&&(r(new O("Request aborted",O.ECONNABORTED,e,C)),C=null)},C.onerror=function(){r(new O("Network Error",O.ERR_NETWORK,e,C)),C=null},C.ontimeout=function(){let x=l.timeout?"timeout of "+l.timeout+"ms exceeded":"timeout exceeded";const E=l.transitional||Bf;l.timeoutErrorMessage&&(x=l.timeoutErrorMessage),r(new O(x,E.clarifyTimeoutError?O.ETIMEDOUT:O.ECONNABORTED,e,C)),C=null},o===void 0&&i.setContentType(null),"setRequestHeader"in C&&y.forEach(i.toJSON(),function(x,E){C.setRequestHeader(E,x)}),y.isUndefined(l.withCredentials)||(C.withCredentials=!!l.withCredentials),s&&s!=="json"&&(C.responseType=l.responseType),a&&([h,g]=Dl(a,!0),C.addEventListener("progress",h)),u&&C.upload&&([m,w]=Dl(u),C.upload.addEventListener("progress",m),C.upload.addEventListener("loadend",w)),(l.cancelToken||l.signal)&&(f=p=>{C&&(r(!p||p.type?new Tn(null,e,C):p),C.abort(),C=null)},l.cancelToken&&l.cancelToken.subscribe(f),l.signal&&(l.signal.aborted?f():l.signal.addEventListener("abort",f)));const c=R0(l.url);if(c&&ue.protocols.indexOf(c)===-1){r(new O("Unsupported protocol "+c+":",O.ERR_BAD_REQUEST,e));return}C.send(o||null)})},F0=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,l;const o=function(a){if(!l){l=!0,s();const f=a instanceof Error?a:this.reason;r.abort(f instanceof O?f:new Tn(f instanceof Error?f.message:f))}};let i=t&&setTimeout(()=>{i=null,o(new O(`timeout ${t} of ms exceeded`,O.ETIMEDOUT))},t);const s=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(a=>{a.unsubscribe?a.unsubscribe(o):a.removeEventListener("abort",o)}),e=null)};e.forEach(a=>a.addEventListener("abort",o));const{signal:u}=r;return u.unsubscribe=()=>y.asap(s),u}},U0=function*(e,t){let n=e.byteLength;if(n{const l=I0(e,t);let o=0,i,s=u=>{i||(i=!0,r&&r(u))};return new ReadableStream({async pull(u){try{const{done:a,value:f}=await l.next();if(a){s(),u.close();return}let m=f.byteLength;if(n){let h=o+=m;n(h)}u.enqueue(new Uint8Array(f))}catch(a){throw s(a),a}},cancel(u){return s(u),l.return()}},{highWaterMark:2})},ro=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",qf=ro&&typeof ReadableStream=="function",B0=ro&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),Xf=(e,...t)=>{try{return!!e(...t)}catch{return!1}},H0=qf&&Xf(()=>{let e=!1;const t=new Request(ue.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),oa=64*1024,Ai=qf&&Xf(()=>y.isReadableStream(new Response("").body)),Ml={stream:Ai&&(e=>e.body)};ro&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!Ml[t]&&(Ml[t]=y.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new O(`Response type '${t}' is not supported`,O.ERR_NOT_SUPPORT,r)})})})(new Response);const V0=async e=>{if(e==null)return 0;if(y.isBlob(e))return e.size;if(y.isSpecCompliantForm(e))return(await new Request(ue.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(y.isArrayBufferView(e)||y.isArrayBuffer(e))return e.byteLength;if(y.isURLSearchParams(e)&&(e=e+""),y.isString(e))return(await B0(e)).byteLength},W0=async(e,t)=>{const n=y.toFiniteNumber(e.getContentLength());return n??V0(t)},Q0=ro&&(async e=>{let{url:t,method:n,data:r,signal:l,cancelToken:o,timeout:i,onDownloadProgress:s,onUploadProgress:u,responseType:a,headers:f,withCredentials:m="same-origin",fetchOptions:h}=Kf(e);a=a?(a+"").toLowerCase():"text";let w=F0([l,o&&o.toAbortSignal()],i),g;const v=w&&w.unsubscribe&&(()=>{w.unsubscribe()});let C;try{if(u&&H0&&n!=="get"&&n!=="head"&&(C=await W0(f,r))!==0){let E=new Request(t,{method:"POST",body:r,duplex:"half"}),N;if(y.isFormData(r)&&(N=E.headers.get("content-type"))&&f.setContentType(N),E.body){const[P,T]=ta(C,Dl(na(u)));r=la(E.body,oa,P,T)}}y.isString(m)||(m=m?"include":"omit");const d="credentials"in Request.prototype;g=new Request(t,{...h,signal:w,method:n.toUpperCase(),headers:f.normalize().toJSON(),body:r,duplex:"half",credentials:d?m:void 0});let c=await fetch(g);const p=Ai&&(a==="stream"||a==="response");if(Ai&&(s||p&&v)){const E={};["status","statusText","headers"].forEach(B=>{E[B]=c[B]});const N=y.toFiniteNumber(c.headers.get("content-length")),[P,T]=s&&ta(N,Dl(na(s),!0))||[];c=new Response(la(c.body,oa,P,()=>{T&&T(),v&&v()}),E)}a=a||"text";let x=await Ml[y.findKey(Ml,a)||"text"](c,e);return!p&&v&&v(),await new Promise((E,N)=>{Wf(E,N,{data:x,headers:xe.from(c.headers),status:c.status,statusText:c.statusText,config:e,request:g})})}catch(d){throw v&&v(),d&&d.name==="TypeError"&&/fetch/i.test(d.message)?Object.assign(new O("Network Error",O.ERR_NETWORK,e,g),{cause:d.cause||d}):O.from(d,d&&d.code,e,g)}}),Fi={http:i0,xhr:A0,fetch:Q0};y.forEach(Fi,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const ia=e=>`- ${e}`,K0=e=>y.isFunction(e)||e===null||e===!1,Jf={getAdapter:e=>{e=y.isArray(e)?e:[e];const{length:t}=e;let n,r;const l={};for(let o=0;o`adapter ${s} `+(u===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : +`+o.map(ia).join(` +`):" "+ia(o[0]):"as no adapter specified";throw new O("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:Fi};function Fo(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Tn(null,e)}function sa(e){return Fo(e),e.headers=xe.from(e.headers),e.data=Ao.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Jf.getAdapter(e.adapter||_r.adapter)(e).then(function(r){return Fo(e),r.data=Ao.call(e,e.transformResponse,r),r.headers=xe.from(r.headers),r},function(r){return Vf(r)||(Fo(e),r&&r.response&&(r.response.data=Ao.call(e,e.transformResponse,r.response),r.response.headers=xe.from(r.response.headers))),Promise.reject(r)})}const Yf="1.8.4",lo={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{lo[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const ua={};lo.transitional=function(t,n,r){function l(o,i){return"[Axios v"+Yf+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,s)=>{if(t===!1)throw new O(l(i," has been removed"+(n?" in "+n:"")),O.ERR_DEPRECATED);return n&&!ua[i]&&(ua[i]=!0,console.warn(l(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,s):!0}};lo.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function q0(e,t,n){if(typeof e!="object")throw new O("options must be an object",O.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let l=r.length;for(;l-- >0;){const o=r[l],i=t[o];if(i){const s=e[o],u=s===void 0||i(s,o,e);if(u!==!0)throw new O("option "+o+" must be "+u,O.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new O("Unknown option "+o,O.ERR_BAD_OPTION)}}const ul={assertOptions:q0,validators:lo},We=ul.validators;class Bt{constructor(t){this.defaults=t,this.interceptors={request:new bu,response:new bu}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let l={};Error.captureStackTrace?Error.captureStackTrace(l):l=new Error;const o=l.stack?l.stack.replace(/^.+\n/,""):"";try{r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=` +`+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=qt(this.defaults,n);const{transitional:r,paramsSerializer:l,headers:o}=n;r!==void 0&&ul.assertOptions(r,{silentJSONParsing:We.transitional(We.boolean),forcedJSONParsing:We.transitional(We.boolean),clarifyTimeoutError:We.transitional(We.boolean)},!1),l!=null&&(y.isFunction(l)?n.paramsSerializer={serialize:l}:ul.assertOptions(l,{encode:We.function,serialize:We.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),ul.assertOptions(n,{baseUrl:We.spelling("baseURL"),withXsrfToken:We.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&y.merge(o.common,o[n.method]);o&&y.forEach(["delete","get","head","post","put","patch","common"],g=>{delete o[g]}),n.headers=xe.concat(i,o);const s=[];let u=!0;this.interceptors.request.forEach(function(v){typeof v.runWhen=="function"&&v.runWhen(n)===!1||(u=u&&v.synchronous,s.unshift(v.fulfilled,v.rejected))});const a=[];this.interceptors.response.forEach(function(v){a.push(v.fulfilled,v.rejected)});let f,m=0,h;if(!u){const g=[sa.bind(this),void 0];for(g.unshift.apply(g,s),g.push.apply(g,a),h=g.length,f=Promise.resolve(n);m{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](l);r._listeners=null}),this.promise.then=l=>{let o;const i=new Promise(s=>{r.subscribe(s),o=s}).then(l);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,s){r.reason||(r.reason=new Tn(o,i,s),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new Fs(function(l){t=l}),cancel:t}}}function X0(e){return function(n){return e.apply(null,n)}}function J0(e){return y.isObject(e)&&e.isAxiosError===!0}const Ui={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Ui).forEach(([e,t])=>{Ui[t]=e});function Gf(e){const t=new Bt(e),n=Tf(Bt.prototype.request,t);return y.extend(n,Bt.prototype,t,{allOwnKeys:!0}),y.extend(n,t,null,{allOwnKeys:!0}),n.create=function(l){return Gf(qt(e,l))},n}const q=Gf(_r);q.Axios=Bt;q.CanceledError=Tn;q.CancelToken=Fs;q.isCancel=Vf;q.VERSION=Yf;q.toFormData=no;q.AxiosError=O;q.Cancel=q.CanceledError;q.all=function(t){return Promise.all(t)};q.spread=X0;q.isAxiosError=J0;q.mergeConfig=qt;q.AxiosHeaders=xe;q.formToJSON=e=>Hf(y.isHTMLForm(e)?new FormData(e):e);q.getAdapter=Jf.getAdapter;q.HttpStatusCode=Ui;q.default=q;const Uo="/api",Ii={getServers:async()=>{try{return(await q.get(`${Uo}/servers`)).data}catch(e){return console.error("Error fetching servers:",e),[]}},addServer:async e=>{try{return(await q.post(`${Uo}/servers`,e)).data}catch(t){throw console.error("Error adding server:",t),t}},deleteServer:async e=>{try{await q.delete(`${Uo}/servers/${e}`)}catch(t){throw console.error("Error deleting server:",t),t}}};function Y0({isOpen:e,onClose:t,onServerAdded:n}){const[r,l]=D.useState({name:"",model:"",cpuModel:"",cpuCores:1,cpuCount:1,ram_gb:"",proxmox_url:""});if(!e)return null;const o=i=>{i.preventDefault();try{const s=Array(r.cpuCount).fill({model:r.cpuModel,cores:r.cpuCores});Ii.addServer({name:r.name,model:r.model,cpus:s,ram_gb:parseInt(r.ram_gb),proxmox_url:r.proxmox_url}),Ju.success("Server added successfully"),n(),t()}catch(s){Ju.error("Failed to add server"),console.error("Error:",s)}};return S.jsx("div",{className:"fixed inset-0 bg-black/70 backdrop-blur-sm flex items-center justify-center p-4 z-50 animate-fadeIn",children:S.jsxs("div",{className:"bg-gray-800/90 backdrop-blur rounded-xl p-6 w-full max-w-md border border-gray-700/50 animate-slideIn",children:[S.jsxs("div",{className:"flex justify-between items-center mb-6",children:[S.jsxs("h2",{className:"text-2xl font-semibold text-white flex items-center gap-2",children:[S.jsx(gn,{className:"text-purple-400",size:24}),"Add New Server"]}),S.jsx("button",{onClick:t,className:"text-gray-400 hover:text-white hover:bg-gray-700/50 p-2 rounded-lg transition-colors",children:S.jsx(Sh,{size:20})})]}),S.jsxs("form",{onSubmit:o,className:"space-y-5",children:[S.jsxs("div",{children:[S.jsx("label",{className:"block text-sm font-medium text-gray-300 mb-1.5",children:S.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[S.jsx(gn,{size:16,className:"text-purple-400"}),"Server Name"]})}),S.jsx("input",{type:"text",value:r.name,onChange:i=>l({...r,name:i.target.value}),className:"w-full bg-gray-700/50 text-white rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-purple-500 focus:outline-none transition-all duration-200",required:!0})]}),S.jsxs("div",{children:[S.jsx("label",{className:"block text-sm font-medium text-gray-300 mb-1.5",children:"Model"}),S.jsx("input",{type:"text",value:r.model,onChange:i=>l({...r,model:i.target.value}),className:"w-full bg-gray-700/50 text-white rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-purple-500 focus:outline-none transition-all duration-200",placeholder:"e.g. Dell R720",required:!0})]}),S.jsxs("div",{className:"bg-gray-700/30 p-4 rounded-lg space-y-4",children:[S.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[S.jsx(Pf,{size:18,className:"text-purple-400"}),S.jsx("span",{className:"text-gray-300 font-medium",children:"CPU Configuration"})]}),S.jsxs("div",{children:[S.jsx("label",{className:"block text-sm font-medium text-gray-300 mb-1.5",children:"CPU Model"}),S.jsx("input",{type:"text",value:r.cpuModel,onChange:i=>l({...r,cpuModel:i.target.value}),className:"w-full bg-gray-700/50 text-white rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-purple-500 focus:outline-none transition-all duration-200",placeholder:"e.g. Intel Xeon E5-2680 v2",required:!0})]}),S.jsxs("div",{children:[S.jsx("label",{className:"block text-sm font-medium text-gray-300 mb-1.5",children:"Cores per CPU"}),S.jsx("input",{type:"number",min:"1",value:r.cpuCores,onChange:i=>l({...r,cpuCores:parseInt(i.target.value)}),className:"w-full bg-gray-700/50 text-white rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-purple-500 focus:outline-none transition-all duration-200",required:!0})]}),S.jsxs("div",{children:[S.jsx("label",{className:"block text-sm font-medium text-gray-300 mb-1.5",children:"Number of CPUs"}),S.jsx("input",{type:"number",min:"1",max:"8",value:r.cpuCount,onChange:i=>l({...r,cpuCount:parseInt(i.target.value)}),className:"w-full bg-gray-700/50 text-white rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-purple-500 focus:outline-none transition-all duration-200",required:!0})]})]}),S.jsxs("div",{children:[S.jsx("label",{className:"block text-sm font-medium text-gray-300 mb-1.5",children:S.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[S.jsx(Rf,{size:16,className:"text-purple-400"}),"RAM (GB)"]})}),S.jsx("input",{type:"number",value:r.ram_gb,onChange:i=>l({...r,ram_gb:i.target.value}),className:"w-full bg-gray-700/50 text-white rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-purple-500 focus:outline-none transition-all duration-200",required:!0})]}),S.jsxs("div",{children:[S.jsx("label",{className:"block text-sm font-medium text-gray-300 mb-1.5",children:S.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[S.jsx(vh,{size:16,className:"text-purple-400"}),"Proxmox UI URL"]})}),S.jsx("input",{type:"url",value:r.proxmox_url,onChange:i=>l({...r,proxmox_url:i.target.value}),className:"w-full bg-gray-700/50 text-white rounded-lg px-4 py-2.5 focus:ring-2 focus:ring-purple-500 focus:outline-none transition-all duration-200",placeholder:"https://proxmox.example.com:8006",required:!0})]}),S.jsx("button",{type:"submit",className:"w-full bg-purple-600 hover:bg-purple-700 text-white font-medium py-3 px-4 rounded-lg transform hover:scale-102 transition-all duration-200 mt-6 animate-pulse hover:animate-none",children:"Add Server"})]})]})})}function G0({server:e,onDelete:t}){const n=()=>{window.open(e.proxmox_url,"_blank")},r=e.cpus.reduce((o,i)=>o+i.cores,0),l=e.cpus[0];return S.jsxs("div",{className:"bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 hover:bg-gray-700/50 transition-all duration-300 cursor-pointer transform hover:scale-102 hover:shadow-xl hover:shadow-purple-500/10 border border-gray-700/50 animate-fadeIn hover:animate-glow",onClick:n,children:[S.jsxs("div",{className:"flex items-center justify-between mb-6",children:[S.jsxs("h3",{className:"text-xl font-semibold text-white flex items-center gap-2 group",children:[S.jsx(gn,{className:"text-purple-400 group-hover:text-purple-300 transition-colors animate-pulse",size:24}),S.jsx("span",{className:"group-hover:text-purple-300 transition-colors",children:e.name}),S.jsx(gh,{size:16,className:"text-purple-400 group-hover:text-purple-300 transition-colors"})]}),S.jsx("button",{onClick:o=>{o.stopPropagation(),t(e.id)},className:"text-gray-400 hover:text-red-400 transition-colors p-2 hover:bg-red-400/10 rounded-lg",title:"Delete server",children:S.jsx(xh,{size:18,className:"transform hover:rotate-12 transition-transform"})})]}),S.jsxs("div",{className:"space-y-4",children:[S.jsxs("div",{className:"flex items-center gap-2 text-gray-300 bg-gray-800/50 p-3 rounded-lg hover:bg-gray-700/50 transition-all duration-300",children:[S.jsx("span",{className:"text-gray-400 min-w-[4rem]",children:"Model:"}),S.jsx("span",{className:"font-medium",children:e.model})]}),S.jsxs("div",{className:"bg-gray-800/50 p-4 rounded-lg space-y-3 hover:bg-gray-700/50 transition-all duration-300",children:[S.jsxs("div",{className:"flex items-center gap-2 mb-2",children:[S.jsx(Pf,{size:18,className:"text-purple-400 animate-spin-slow"}),S.jsx("span",{className:"text-gray-300 font-medium",children:"CPU Information"})]}),S.jsxs("div",{className:"space-y-2",children:[S.jsxs("div",{className:"flex items-center gap-2",children:[S.jsx("span",{className:"text-gray-400",children:"Model:"}),S.jsx("span",{className:"text-gray-200 font-medium",children:l.model}),S.jsxs("span",{className:"text-purple-400 font-bold",children:["×",e.cpus.length]})]}),S.jsxs("div",{className:"flex items-center gap-2",children:[S.jsx("span",{className:"text-gray-400",children:"Cores per CPU:"}),S.jsx("span",{className:"text-gray-200 font-medium",children:l.cores})]}),S.jsx("div",{className:"pt-2 border-t border-gray-700/50 mt-2",children:S.jsxs("div",{className:"flex items-center gap-2",children:[S.jsx("span",{className:"text-gray-400",children:"Total Cores:"}),S.jsx("span",{className:"text-purple-400 font-bold",children:r})]})})]})]}),S.jsxs("div",{className:"flex items-center gap-2 text-gray-300 bg-gray-800/50 p-3 rounded-lg hover:bg-gray-700/50 transition-all duration-300",children:[S.jsx(Rf,{size:18,className:"text-purple-400 min-w-[1.5rem] animate-bounce-slow"}),S.jsxs("div",{children:[S.jsxs("div",{className:"font-medium",children:[e.ram_gb," GB"]}),S.jsx("div",{className:"text-sm text-gray-400",children:"RAM"})]})]})]})]})}function Z0(){const[e,t]=D.useState(!1),[n,r]=D.useState([]),[l,o]=D.useState(!0),i=async()=>{try{o(!0);const u=await Ii.getServers();r(u)}catch(u){console.error("Error fetching servers:",u)}finally{o(!1)}},s=async u=>{try{await Ii.deleteServer(u),await i()}catch(a){console.error("Error deleting server:",a)}};return D.useEffect(()=>{i()},[]),S.jsxs("div",{className:"min-h-screen gradient-bg",children:[S.jsx(mh,{position:"top-right"}),S.jsxs("div",{className:"container mx-auto px-4 py-8",children:[S.jsxs("div",{className:"flex flex-col md:flex-row justify-between items-center mb-12 gap-4",children:[S.jsxs("div",{className:"flex items-center gap-3",children:[S.jsx(gn,{size:32,className:"text-purple-400"}),S.jsx("h1",{className:"text-4xl font-bold text-white bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-pink-300",children:"Proxmox Dashboard"})]}),S.jsxs("button",{onClick:()=>t(!0),className:"bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-lg flex items-center gap-2 transform hover:scale-105 transition-all duration-200 shadow-lg hover:shadow-purple-500/20",children:[S.jsx(wh,{size:20}),"Add Server"]})]}),l?S.jsxs("div",{className:"text-center py-16",children:[S.jsx("div",{className:"animate-spin text-purple-400 mb-4",children:S.jsx(gn,{size:48})}),S.jsx("p",{className:"text-gray-300",children:"Loading servers..."})]}):n.length===0?S.jsxs("div",{className:"text-center py-16",children:[S.jsx(gn,{size:48,className:"text-purple-400 mx-auto mb-4 opacity-50"}),S.jsx("h2",{className:"text-2xl font-semibold text-gray-300 mb-2",children:"No servers yet"}),S.jsx("p",{className:"text-gray-400",children:"Add your first Proxmox server to get started"})]}):S.jsx("div",{className:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6",children:n.map(u=>S.jsx(G0,{server:u,onDelete:s},u.id))})]}),S.jsx(Y0,{isOpen:e,onClose:()=>t(!1),onServerAdded:i})]})}kf(document.getElementById("root")).render(S.jsx(D.StrictMode,{children:S.jsx(Z0,{})})); diff --git a/dist/assets/proxmox-removebg-preview-DD3TFQ_P.svg b/dist/assets/proxmox-removebg-preview-DD3TFQ_P.svg new file mode 100644 index 0000000..b232249 --- /dev/null +++ b/dist/assets/proxmox-removebg-preview-DD3TFQ_P.svg @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dist/index.html b/dist/index.html new file mode 100644 index 0000000..a4c19b2 --- /dev/null +++ b/dist/index.html @@ -0,0 +1,14 @@ + + + + + + + Proxmox Dashboard + + + + +
+ + diff --git a/img/proxmox-removebg-preview.svg b/img/proxmox-removebg-preview.svg new file mode 100644 index 0000000..b232249 --- /dev/null +++ b/img/proxmox-removebg-preview.svg @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/index.html b/index.html index 0228893..3362388 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + Proxmox Dashboard @@ -10,4 +10,4 @@
- \ No newline at end of file + diff --git a/server.sh b/server.sh new file mode 100755 index 0000000..fb2ef9c --- /dev/null +++ b/server.sh @@ -0,0 +1,2 @@ +screen -S pve +npm run server diff --git a/start.sh b/start.sh new file mode 100755 index 0000000..f7c7a78 --- /dev/null +++ b/start.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +# Check if screen is installed +if ! command -v screen &> /dev/null; then + echo "Screen is not installed. Please install it first:" + echo "sudo apt-get update && sudo apt-get install screen" + exit 1 +fi + +# Kill existing screens if they exist +screen -X -S proxmox-api quit > /dev/null 2>&1 +screen -X -S proxmox-vite quit > /dev/null 2>&1 + +# Start the Node.js API server +echo "Starting API server..." +screen -dmS proxmox-api bash -c 'cd /var/www/proxmoxchoose/proxmox_choose_page && npm run server' + +# Wait a moment to ensure the API server is up +sleep 2 + +# Start the Vite development server +echo "Starting Vite server..." +screen -dmS proxmox-vite bash -c 'cd /var/www/proxmoxchoose/proxmox_choose_page && npm run dev' + +# Display running screens +echo "Checking running screens..." +screen -ls + +echo "Servers started successfully!" +echo "To attach to the screens:" +echo " API server: screen -r proxmox-api" +echo " Vite server: screen -r proxmox-vite"