diff --git a/README.md b/README.md index dd0bf50..b0c4efd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Black Magic Probe for ESP32-S2 +# Black Magic Probe / DapLink for ESP32-S2 -WiFi/USB capable version of the famous Black Magic Probe debugger. +WiFi/USB capable version of the famous BlackMagicProbe (or DapLink) debugger. # Clone the Repository @@ -32,22 +32,26 @@ Run: idf.py -p flash ``` -## Test with ESP-IDF - -Connect to the dev board with: -```shell -idf.py -p monitor -``` - -You should not see errors in the logs if the firmware is installed and running correctly. - ## Web interface development Web interface is located in `components/svelte-portal` and written in Svelte. To build it, you need to install Node.js and run `npm install` in `components/svelte-portal` directory. Then you can run `npm run dev` to start development server or `npm run build` to build production version. -Typical workflow is to fix the board's IP address in `components/svelte-portal/src/App.svelte` and then run `npm run dev`. After that, you can open `http://localhost:5000` in your browser and see changes in the web interface in real time with live reload. +Typical workflow is to fix the board's IP address in `components/svelte-portal/src/lib/Api.svelte` and then run `npm run dev`. After that, you can open `http://localhost:5000` in your browser and see changes in the web interface in real time with live reload. + +If you want to change local ip or port, you need to run `export HOST={ip} PORT={port}` before `npm run dev`. + +```shell +export HOST=127.0.0.1 PORT=3000 +npm run dev +``` When you're done, you need to run `npm run build`, `idf.py build` and then `idf.py -p flash`. You can then open `http://blackmagic.local` in your browser and see the changes in the web interface. +```shell +npm run build +idf.py build +idf.py -p flash +``` + ## Schematic diff --git a/components/simple-uart/simple-uart.c b/components/simple-uart/simple-uart.c index 1ca861f..7d544e2 100644 --- a/components/simple-uart/simple-uart.c +++ b/components/simple-uart/simple-uart.c @@ -17,6 +17,13 @@ typedef struct { uart_isr rx_isr; } uart_context_t; +typedef struct { + uint32_t baud_rate; + uart_stop_bits_t stop_bits; + uart_parity_t parity; + uart_word_length_t data_bits; +} UartInnerConfig; + #define UART_CONTEX_INIT_DEF(uart_num) \ { \ .hal.dev = UART_LL_GET_HW(uart_num), .uart_index = uart_num, .isr_context = NULL, \ @@ -31,6 +38,11 @@ static uart_context_t uart_context[UART_NUM_MAX] = { #endif }; +static UartInnerConfig uart_config[UART_NUM_MAX] = { + {0}, + {0}, +}; + #define UART_HAL(uart_num) &(uart_context[uart_num].hal) /***********************************************/ @@ -173,17 +185,37 @@ static void simple_uart_isr(void* arg) { } void simple_uart_set_baud_rate(uint8_t uart_num, uint32_t baud_rate) { + uart_config[uart_num].baud_rate = baud_rate; uart_hal_set_baudrate(UART_HAL(uart_num), baud_rate); } void simple_uart_set_stop_bits(uint8_t uart_num, uart_stop_bits_t stop_bits) { + uart_config[uart_num].stop_bits = stop_bits; uart_hal_set_stop_bits(UART_HAL(uart_num), stop_bits); } void simple_uart_set_parity(uint8_t uart_num, uart_parity_t parity) { + uart_config[uart_num].parity = parity; uart_hal_set_parity(UART_HAL(uart_num), parity); } void simple_uart_set_data_bits(uint8_t uart_num, uart_word_length_t data_bits) { + uart_config[uart_num].data_bits = data_bits; uart_hal_set_data_bit_num(UART_HAL(uart_num), data_bits); +} + +uint32_t simple_uart_get_baud_rate(uint8_t uart_num) { + return uart_config[uart_num].baud_rate; +} + +uart_stop_bits_t simple_uart_get_stop_bits(uint8_t uart_num) { + return uart_config[uart_num].stop_bits; +} + +uart_parity_t simple_uart_get_parity(uint8_t uart_num) { + return uart_config[uart_num].parity; +} + +uart_word_length_t simple_uart_get_data_bits(uint8_t uart_num) { + return uart_config[uart_num].data_bits; } \ No newline at end of file diff --git a/components/simple-uart/simple-uart.h b/components/simple-uart/simple-uart.h index b80b78f..be2c6a0 100644 --- a/components/simple-uart/simple-uart.h +++ b/components/simple-uart/simple-uart.h @@ -87,4 +87,36 @@ void simple_uart_set_parity(uint8_t uart_num, uart_parity_t parity); * @param uart_num * @param data_bits */ -void simple_uart_set_data_bits(uint8_t uart_num, uart_word_length_t data_bits); \ No newline at end of file +void simple_uart_set_data_bits(uint8_t uart_num, uart_word_length_t data_bits); + +/** + * @brief Get the UART baud rate + * + * @param uart_num + * @return uint32_t + */ +uint32_t simple_uart_get_baud_rate(uint8_t uart_num); + +/** + * @brief Get the UART stop bits + * + * @param uart_num + * @return uart_stop_bits_t + */ +uart_stop_bits_t simple_uart_get_stop_bits(uint8_t uart_num); + +/** + * @brief Get the UART parity + * + * @param uart_num + * @return uart_parity_t + */ +uart_parity_t simple_uart_get_parity(uint8_t uart_num); + +/** + * @brief Get the UART data bits + * + * @param uart_num + * @return uart_word_length_t + */ +uart_word_length_t simple_uart_get_data_bits(uint8_t uart_num); \ No newline at end of file diff --git a/components/soft-uart/soft-uart.c b/components/soft-uart/soft-uart.c index 1b3d2e0..5c1fda9 100644 --- a/components/soft-uart/soft-uart.c +++ b/components/soft-uart/soft-uart.c @@ -14,7 +14,7 @@ struct SoftUart { #define wait_cycles(cycles) \ for(uint32_t start = cycle_count_get(); cycle_count_get() - start < cycles;) -static uint32_t cycle_count_get() { +static inline uint32_t __attribute__((always_inline)) cycle_count_get() { uint32_t ccount; __asm__ __volatile__("esync; rsr %0,ccount" : "=a"(ccount)); return ccount; diff --git a/components/svelte-portal/package-lock.json b/components/svelte-portal/package-lock.json index 02468b7..763a302 100644 --- a/components/svelte-portal/package-lock.json +++ b/components/svelte-portal/package-lock.json @@ -8,7 +8,8 @@ "name": "svelte-app", "version": "1.0.0", "dependencies": { - "sirv-cli": "^1.0.0" + "sirv-cli": "^1.0.0", + "stringview": "^3.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^17.0.0", @@ -57,6 +58,64 @@ "node": ">=6.9.0" } }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, "node_modules/@polka/url": { "version": "1.0.0-next.21", "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", @@ -160,6 +219,18 @@ "@types/node": "*" } }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", @@ -632,9 +703,9 @@ } }, "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { "brace-expansion": "^1.1.7" @@ -926,15 +997,6 @@ "node": ">= 10" } }, - "node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", @@ -960,6 +1022,11 @@ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", "dev": true }, + "node_modules/stringview": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/stringview/-/stringview-3.0.0.tgz", + "integrity": "sha512-eNPN9TLouSN5pMZRtBF8gB7PS+E+rx27LY4Qx4uWzxH18aXHpy6Jeoz4nRVMSTzYGRJ2kSDOac9YQvSprmDTrA==" + }, "node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -973,22 +1040,23 @@ } }, "node_modules/svelte": { - "version": "3.44.2", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.44.2.tgz", - "integrity": "sha512-jrZhZtmH3ZMweXg1Q15onb8QlWD+a5T5Oca4C1jYvSURp2oD35h4A5TV6t6MEa93K4LlX6BkafZPdQoFjw/ylA==", + "version": "3.59.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", + "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/terser": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", - "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.20.0.tgz", + "integrity": "sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==", "dev": true, "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", - "source-map": "~0.7.2", "source-map-support": "~0.5.20" }, "bin": { @@ -996,14 +1064,6 @@ }, "engines": { "node": ">=10" - }, - "peerDependencies": { - "acorn": "^8.5.0" - }, - "peerDependenciesMeta": { - "acorn": { - "optional": true - } } }, "node_modules/tinydate": { @@ -1089,6 +1149,55 @@ "js-tokens": "^4.0.0" } }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, "@polka/url": { "version": "1.0.0-next.21", "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", @@ -1173,6 +1282,12 @@ "@types/node": "*" } }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true + }, "ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", @@ -1542,9 +1657,9 @@ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { "brace-expansion": "^1.1.7" @@ -1759,12 +1874,6 @@ "tinydate": "^1.0.0" } }, - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true - }, "source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", @@ -1789,6 +1898,11 @@ "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", "dev": true }, + "stringview": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/stringview/-/stringview-3.0.0.tgz", + "integrity": "sha512-eNPN9TLouSN5pMZRtBF8gB7PS+E+rx27LY4Qx4uWzxH18aXHpy6Jeoz4nRVMSTzYGRJ2kSDOac9YQvSprmDTrA==" + }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -1799,19 +1913,20 @@ } }, "svelte": { - "version": "3.44.2", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.44.2.tgz", - "integrity": "sha512-jrZhZtmH3ZMweXg1Q15onb8QlWD+a5T5Oca4C1jYvSURp2oD35h4A5TV6t6MEa93K4LlX6BkafZPdQoFjw/ylA==", + "version": "3.59.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-3.59.2.tgz", + "integrity": "sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==", "dev": true }, "terser": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", - "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.20.0.tgz", + "integrity": "sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==", "dev": true, "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", - "source-map": "~0.7.2", "source-map-support": "~0.5.20" } }, diff --git a/components/svelte-portal/package.json b/components/svelte-portal/package.json index af6fc48..dd00406 100644 --- a/components/svelte-portal/package.json +++ b/components/svelte-portal/package.json @@ -19,6 +19,7 @@ "svelte": "^3.0.0" }, "dependencies": { - "sirv-cli": "^1.0.0" + "sirv-cli": "^1.0.0", + "stringview": "^3.0.0" } } diff --git a/components/svelte-portal/public/build/bundle.css b/components/svelte-portal/public/build/bundle.css index b2a54c7..3606f63 100644 --- a/components/svelte-portal/public/build/bundle.css +++ b/components/svelte-portal/public/build/bundle.css @@ -1 +1 @@ -main.svelte-121b41t.svelte-121b41t{border:4px dashed #000;margin:10px auto;padding:10px;max-width:800px;overflow:hidden}.svelte-121b41t.svelte-121b41t{-moz-user-select:none;-o-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}tabs.svelte-121b41t.svelte-121b41t{border-bottom:4px dashed #000;width:100%;display:block}tab.svelte-121b41t.svelte-121b41t{margin-right:10px;padding:5px 10px;margin-bottom:5px;display:inline-block}tab.svelte-121b41t.svelte-121b41t:hover,tab.selected.svelte-121b41t.svelte-121b41t:hover{background:rgb(255, 255, 255);color:#000000}tab.selected.svelte-121b41t.svelte-121b41t{background-color:black;color:white}tabs-content.svelte-121b41t.svelte-121b41t{display:block;margin-top:10px}error.svelte-121b41t.svelte-121b41t{padding:5px 10px;background-color:rgb(255, 0, 0);color:black}@font-face{font-family:"DOS";src:url("../assets/ega8.otf") format("opentype");font-weight:normal;font-style:normal;-webkit-font-kerning:none;font-kerning:none;font-synthesis:none;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;font-variant-numeric:tabular-nums}body{padding:0;margin:0;background-color:#ffa21c;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}.grid.svelte-121b41t.svelte-121b41t{display:inline-grid;grid-template-columns:auto auto}.grid.svelte-121b41t>div.svelte-121b41t{margin-top:10px}.value-name.svelte-121b41t.svelte-121b41t{text-align:right}task-list.svelte-121b41t.svelte-121b41t{display:inline-grid;grid-template-columns:auto auto auto auto auto;width:100%}@media(max-width: 768px){task-list.svelte-121b41t.svelte-121b41t{grid-template-columns:auto auto auto auto}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 3){display:none}}@media(max-width: 600px){task-list.svelte-121b41t.svelte-121b41t{grid-template-columns:auto auto auto}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 4){display:none}}@media(max-width: 520px){.grid.svelte-121b41t.svelte-121b41t{grid-template-columns:auto;width:100%}.mobile-hidden.svelte-121b41t.svelte-121b41t{display:none}.value-name.svelte-121b41t.svelte-121b41t{text-align:left}.splitter.svelte-121b41t.svelte-121b41t{background-color:#000;width:100%;color:#ffa21d;text-align:center}task-list.svelte-121b41t.svelte-121b41t{grid-template-columns:auto;text-align:center}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 1){padding-top:10px}task-list.svelte-121b41t>span.svelte-121b41t:nth-child(5n + 5){border-bottom:4px dashed #000}}input.svelte-13nd50t{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c;height:32px}input.svelte-13nd50t:focus-visible,input.svelte-13nd50t:hover{outline:0;background-color:white}@media(max-width: 520px){input.svelte-13nd50t{max-width:100%}}select.svelte-vofi9z.svelte-vofi9z{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c}select.svelte-vofi9z.svelte-vofi9z::-ms-expand{display:none}select.svelte-vofi9z.svelte-vofi9z:hover{background:rgb(255, 255, 255);color:#000000}select.svelte-vofi9z.svelte-vofi9z:focus{box-shadow:none;outline:none;background:rgb(255, 255, 255);color:#000000}select.svelte-vofi9z option.svelte-vofi9z{font-weight:normal}@media(max-width: 520px){select.svelte-vofi9z.svelte-vofi9z{width:100%}}@keyframes svelte-1471rey-spinner-animation{0%{content:"|"}25%{content:"/"}50%{content:"-"}75%{content:"\\"}100%{content:"|"}}spinner.svelte-1471rey::after{display:inline-block;animation:svelte-1471rey-spinner-animation 0.6s linear infinite alternate;content:"|"}.button.svelte-1rqr1h4{box-sizing:border-box;display:inline-block;font-size:28px;font-family:"DOS", monospace;line-height:1;border:0;padding:0 5px 0 5px;box-shadow:none;border-radius:0;display:inline-block;max-width:100%}.black.svelte-1rqr1h4{color:white;background-color:black;border-bottom:4px solid #000}.black.svelte-1rqr1h4:hover{background:#fff;color:#000}.normal.svelte-1rqr1h4{color:#000;background-color:#ffa21c;border-bottom:4px solid #ffa21c}.normal.svelte-1rqr1h4:hover{background:#000;color:#fff}popup-wrapper.svelte-1ufadaz{background-color:rgba(0, 0, 0, 0.863);width:100%;height:100%;display:table;table-layout:fixed;z-index:999;overflow:auto;position:fixed;top:0;left:0;right:0;bottom:0}popup-body.svelte-1ufadaz{margin:auto;display:table-cell;text-align:center;vertical-align:middle;width:100%}popup-content.svelte-1ufadaz{background-color:#ffa21c;display:inline-block;outline:none;position:relative;text-align:initial;max-width:100vw}popup-border.svelte-1ufadaz{display:block;border:4px dashed #000;margin:10px;padding:10px}popup-close.svelte-1ufadaz{background-color:#000;display:inline-block;color:#ffa21c;position:absolute;width:24px;right:0px;top:0px;text-align:center}popup-close.svelte-1ufadaz:hover{background-color:#fff;color:#000}.button-css.svelte-yar6m3{background-color:black;color:white;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);border:0;padding:5px 10px;display:inline-block;max-width:100%}.button-css.svelte-yar6m3:hover{background:rgb(255, 255, 255);color:#000000} \ No newline at end of file +main.svelte-12k48c6{border:4px dashed #000;margin:10px auto;padding:10px;max-width:800px;overflow:hidden}.svelte-12k48c6{-moz-user-select:none;-o-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.selectable{-moz-user-select:text;-o-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text}error{padding:5px 10px;background-color:rgb(255, 0, 0);color:black}@font-face{font-family:"DOS";src:url("../assets/ega8.otf") format("opentype");font-weight:normal;font-style:normal;-webkit-font-kerning:none;font-kerning:none;font-synthesis:none;-webkit-font-variant-ligatures:none;font-variant-ligatures:none;font-variant-numeric:tabular-nums}body{padding:0;margin:0;background-color:#ffa21c;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}tabs-content.uart-terminal.svelte-12k48c6{height:calc(var(--app-height) - 105px)}@media(max-width: 520px){.mobile-hidden{display:none !important}main.svelte-12k48c6{margin:0}tabs-content.uart-terminal.svelte-12k48c6{height:calc(var(--app-height) - 85px)}}tabs.svelte-12k48c6{border-bottom:4px dashed #000;width:100%;display:block}tab.svelte-12k48c6{margin-right:10px;padding:5px 10px;margin-bottom:5px;display:inline-block}tab.svelte-12k48c6:last-child{margin-right:0}tab.svelte-12k48c6:hover,tab.selected.svelte-12k48c6:hover{background:rgb(255, 255, 255);color:#000000}tab.selected.svelte-12k48c6{background-color:black;color:white}tabs-content.svelte-12k48c6{display:block;margin-top:10px}tab-content.svelte-12k48c6{display:block}tab-content.uart-terminal.svelte-12k48c6{height:100%}.indicatior.svelte-petsa3{position:fixed;top:0;right:0;background-color:green;color:white;padding:4px;visibility:hidden;pointer-events:none}.indicatior.active.svelte-petsa3{visibility:visible}task-list.svelte-stzvk8.svelte-stzvk8{display:inline-grid;grid-template-columns:auto auto auto auto auto;width:100%}@media(max-width: 768px){task-list.svelte-stzvk8.svelte-stzvk8{grid-template-columns:auto auto auto auto}task-list.svelte-stzvk8>span.svelte-stzvk8:nth-child(5n + 3){display:none}}@media(max-width: 600px){task-list.svelte-stzvk8.svelte-stzvk8{grid-template-columns:auto auto auto}task-list.svelte-stzvk8>span.svelte-stzvk8:nth-child(5n + 4){display:none}}@media(max-width: 520px){task-list.svelte-stzvk8.svelte-stzvk8{grid-template-columns:auto;text-align:center}task-list.svelte-stzvk8>span.svelte-stzvk8:nth-child(5n + 1){padding-top:10px}task-list.svelte-stzvk8>span.svelte-stzvk8:nth-child(5n + 5){border-bottom:4px dashed #000}}@keyframes svelte-1dkc3ve-blink{0%{opacity:1}49%{opacity:1}50%{opacity:0}99%{opacity:0}100%{opacity:1}}.cursor.svelte-1dkc3ve{animation:svelte-1dkc3ve-blink 1s infinite}.line.svelte-1dkc3ve{display:block}.terminal-wrapper.svelte-1dkc3ve{position:relative;height:100%}.terminal.svelte-1dkc3ve{height:100%;font-size:18px;overflow-y:scroll;overflow-x:clip;white-space:wrap}.config.svelte-1dkc3ve{position:absolute;top:0;right:0}.terminal.bold{font-weight:bold}.terminal.underline{text-decoration:underline}.terminal.blink{animation:svelte-1dkc3ve-blink 1s infinite}.terminal.invisible{display:none}.terminal-wrapper select{width:100%}.value.svelte-12p8u92{display:inline-flex}.value-name.svelte-12p8u92{text-align:right}@media(max-width: 520px){.value-name.svelte-12p8u92{text-align:left}.splitter.svelte-12p8u92{background-color:#000;width:100%;color:#ffa21d;text-align:center}}.grid.svelte-5oc0kc{display:inline-grid;grid-template-columns:auto auto}.grid > div{margin-top:10px}@media(max-width: 520px){.grid.svelte-5oc0kc{grid-template-columns:auto;width:100%}}@keyframes svelte-1471rey-spinner-animation{0%{content:"|"}25%{content:"/"}50%{content:"-"}75%{content:"\\"}100%{content:"|"}}spinner.svelte-1471rey::after{display:inline-block;animation:svelte-1471rey-spinner-animation 0.6s linear infinite alternate;content:"|"}.button-css.svelte-yar6m3{background-color:black;color:white;font-size:28px;font-family:"DOS", monospace;line-height:1;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);border:0;padding:5px 10px;display:inline-block;max-width:100%}.button-css.svelte-yar6m3:hover{background:rgb(255, 255, 255);color:#000000}select.svelte-vofi9z.svelte-vofi9z{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c}select.svelte-vofi9z.svelte-vofi9z::-ms-expand{display:none}select.svelte-vofi9z.svelte-vofi9z:hover{background:rgb(255, 255, 255);color:#000000}select.svelte-vofi9z.svelte-vofi9z:focus{box-shadow:none;outline:none;background:rgb(255, 255, 255);color:#000000}select.svelte-vofi9z option.svelte-vofi9z{font-weight:normal}@media(max-width: 520px){select.svelte-vofi9z.svelte-vofi9z{width:100%}}.button.svelte-9ok6y8{box-sizing:border-box;display:inline-block;font-size:28px;font-family:"DOS", monospace;line-height:1;border:0;padding:0 5px 0 5px;box-shadow:none;border-radius:0;max-width:100%}.black.svelte-9ok6y8{color:white;background-color:black;border-bottom:4px solid #000}.black.svelte-9ok6y8:hover{background:#fff;color:#000}.normal.svelte-9ok6y8{color:#000;background-color:#ffa21c;border-bottom:4px solid #ffa21c}.normal.svelte-9ok6y8:hover{background:#000;color:#fff}input.svelte-13nd50t{display:inline-block;color:#000;font-size:28px;font-family:"DOS", monospace;line-height:1;box-sizing:border-box;margin:0;border:0;border-bottom:4px solid #000;padding:0 5px 0 5px;box-shadow:none;border-radius:0;-moz-appearance:none;-webkit-appearance:none;appearance:none;background-color:#ffa21c;height:32px}input.svelte-13nd50t:focus-visible,input.svelte-13nd50t:hover{outline:0;background-color:white}@media(max-width: 520px){input.svelte-13nd50t{max-width:100%}}popup-wrapper.svelte-1ufadaz{background-color:rgba(0, 0, 0, 0.863);width:100%;height:100%;display:table;table-layout:fixed;z-index:999;overflow:auto;position:fixed;top:0;left:0;right:0;bottom:0}popup-body.svelte-1ufadaz{margin:auto;display:table-cell;text-align:center;vertical-align:middle;width:100%}popup-content.svelte-1ufadaz{background-color:#ffa21c;display:inline-block;outline:none;position:relative;text-align:initial;max-width:100vw}popup-border.svelte-1ufadaz{display:block;border:4px dashed #000;margin:10px;padding:10px}popup-close.svelte-1ufadaz{background-color:#000;display:inline-block;color:#ffa21c;position:absolute;width:24px;right:0px;top:0px;text-align:center}popup-close.svelte-1ufadaz:hover{background-color:#fff;color:#000} \ No newline at end of file diff --git a/components/svelte-portal/public/build/bundle.js b/components/svelte-portal/public/build/bundle.js index 0f20476..3f202d5 100644 --- a/components/svelte-portal/public/build/bundle.js +++ b/components/svelte-portal/public/build/bundle.js @@ -1,2 +1,2 @@ -var app=function(){"use strict";function t(){}function e(t){return t()}function n(){return Object.create(null)}function l(t){t.forEach(e)}function s(t){return"function"==typeof t}function o(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}function a(t,e,n,l){return t[1]&&l?function(t,e){for(const n in e)t[n]=e[n];return t}(n.ctx.slice(),t[1](l(e))):n.ctx}function c(t,e){t.appendChild(e)}function r(t,e,n){t.insertBefore(e,n||null)}function u(t){t.parentNode.removeChild(t)}function i(t,e){for(let n=0;nt.removeEventListener(e,n,l)}function $(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}function h(t,e,n){e in t?t[e]="boolean"==typeof t[e]&&""===n||n:$(t,e,n)}function g(t,e){e=""+e,t.wholeText!==e&&(t.data=e)}function b(t,e){for(let n=0;nt.call(this,e)))}const C=[],S=[],P=[],O=[],A=Promise.resolve();let E=!1;function I(t){P.push(t)}let N=!1;const z=new Set;function j(){if(!N){N=!0;do{for(let t=0;t{M.delete(t),l&&(n&&t.d(1),l())})),t.o(e)}}function Y(t,e){const n=e.token={};function l(t,l,s,o){if(e.token!==n)return;e.resolved=o;let a=e.ctx;void 0!==s&&(a=a.slice(),a[s]=o);const c=t&&(e.current=t)(a);let r=!1;e.block&&(e.blocks?e.blocks.forEach(((t,n)=>{n!==l&&t&&(D(),U(t,1,1,(()=>{e.blocks[n]===t&&(e.blocks[n]=null)})),T())})):e.block.d(1),c.c(),W(c,1),c.m(e.mount(),e.anchor),r=!0),e.block=c,e.blocks&&(e.blocks[l]=c),r&&j()}if((s=t)&&"object"==typeof s&&"function"==typeof s.then){const n=y();if(t.then((t=>{k(n),l(e.then,1,e.value,t),k(null)}),(t=>{if(k(n),l(e.catch,2,e.error,t),k(null),!e.hasCatch)throw t})),e.current!==e.pending)return l(e.pending,0),!0}else{if(e.current!==e.then)return l(e.then,1,e.value,t),!0;e.resolved=t}var s}function q(t,e,n){const l=e.slice(),{resolved:s}=t;t.current===t.then&&(l[t.value]=s),t.current===t.catch&&(l[t.error]=s),t.block.p(l,n)}function L(t){t&&t.c()}function H(t,n,o,a){const{fragment:c,on_mount:r,on_destroy:u,after_update:i}=t.$$;c&&c.m(n,o),a||I((()=>{const n=r.map(e).filter(s);u?u.push(...n):l(n),t.$$.on_mount=[]})),i.forEach(I)}function R(t,e){const n=t.$$;null!==n.fragment&&(l(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function V(t,e){-1===t.$$.dirty[0]&&(C.push(t),E||(E=!0,A.then(j)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const s=l.length?l[0]:n;return d.ctx&&c(d.ctx[t],d.ctx[t]=s)&&(!d.skip_bound&&d.bound[t]&&d.bound[t](s),m&&V(e,t)),n})):[],d.update(),m=!0,l(d.before_update),d.fragment=!!a&&a(d.ctx),s.target){if(s.hydrate){const t=function(t){return Array.from(t.childNodes)}(s.target);d.fragment&&d.fragment.l(t),t.forEach(u)}else d.fragment&&d.fragment.c();s.intro&&W(e.$$.fragment),H(e,s.target,s.anchor,s.customElement),j()}k(v)}class J{$destroy(){R(this,1),this.$destroy=t}$on(t,e){const n=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return n.push(e),()=>{const t=n.indexOf(e);-1!==t&&n.splice(t,1)}}$set(t){var e;this.$$set&&(e=t,0!==Object.keys(e).length)&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}}function K(e){let n,s,o,a;return{c(){n=f("input"),$(n,"type","button"),n.value=s=e[1]+e[0]+e[2],$(n,"class","button-css svelte-yar6m3")},m(t,l){r(t,n,l),o||(a=[p(n,"mouseenter",e[3]),p(n,"mouseleave",e[4]),p(n,"click",e[5])],o=!0)},p(t,[e]){7&e&&s!==(s=t[1]+t[0]+t[2])&&(n.value=s)},i:t,o:t,d(t){t&&u(n),o=!1,l(a)}}}function X(t,e,n){let{value:l="Value"}=e,s="",o="",a=null;function c(){n(1,s="["),n(2,o="]")}function r(){n(1,s=">"),n(2,o="<")}function u(){"["==s?r():c()}return c(),t.$$set=t=>{"value"in t&&n(0,l=t.value)},[l,s,o,function(){null==a&&(a=setInterval(u,400)),r()},function(){null!=a&&(clearInterval(a),a=null),c()},function(e){w.call(this,t,e)}]}class Q extends J{constructor(t){super(),G(this,t,X,K,o,{value:0})}}function Z(t){let e,n,l,s,o,i,v,m,$;const g=t[4].default,b=function(t,e,n,l){if(t){const s=a(t,e,n,l);return t[0](s)}}(g,t,t[3],null);return{c(){e=f("popup-wrapper"),n=f("popup-body"),l=f("popup-content"),s=f("popup-close"),s.textContent="X",o=d(),i=f("popup-border"),b&&b.c(),h(s,"class","svelte-1ufadaz"),h(i,"class","svelte-1ufadaz"),h(l,"class","svelte-1ufadaz"),h(n,"class","svelte-1ufadaz"),h(e,"class","svelte-1ufadaz")},m(a,u){r(a,e,u),c(e,n),c(n,l),c(l,s),c(l,o),c(l,i),b&&b.m(i,null),v=!0,m||($=p(s,"click",t[0]),m=!0)},p(t,e){b&&b.p&&(!v||8&e)&&function(t,e,n,l,s,o){if(s){const c=a(e,n,l,o);t.p(c,s)}}(b,g,t,t[3],v?function(t,e,n,l){if(t[2]&&l){const s=t[2](l(n));if(void 0===e.dirty)return s;if("object"==typeof s){const t=[],n=Math.max(e.dirty.length,s.length);for(let l=0;l32){const e=[],n=t.ctx.length/32;for(let t=0;t{l=null})),T()):l?(l.p(t,n),2&n&&W(l,1)):(l=Z(t),l.c(),W(l,1),l.m(e.parentNode,e))},i(t){n||(W(l),n=!0)},o(t){U(l),n=!1},d(t){l&&l.d(t),t&&u(e)}}}function et(t,e,n){let{$$slots:l={},$$scope:s}=e,o=!0;return t.$$set=t=>{"$$scope"in t&&n(3,s=t.$$scope)},[function(){n(1,o=!0)},o,function(){n(1,o=!1)},s,l]}class nt extends J{constructor(t){super(),G(this,t,et,tt,o,{close:0,show:2})}get close(){return this.$$.ctx[0]}get show(){return this.$$.ctx[2]}}function lt(e){let n,l,s,o;return{c(){n=f("input"),$(n,"autocorrect","off"),$(n,"autocapitalize","none"),$(n,"autocomplete","off"),$(n,"type","text"),n.value=e[0],$(n,"size",l=e[0].length>3?e[0].length:3),$(n,"class","svelte-13nd50t")},m(t,l){r(t,n,l),s||(o=p(n,"input",e[1]),s=!0)},p(t,[e]){1&e&&n.value!==t[0]&&(n.value=t[0]),1&e&&l!==(l=t[0].length>3?t[0].length:3)&&$(n,"size",l)},i:t,o:t,d(t){t&&u(n),s=!1,o()}}}function st(t,e,n){let{value:l=""}=e;return t.$$set=t=>{"value"in t&&n(0,l=t.value)},[l,function(){this.size=this.value.length>3?this.value.length:3,n(0,l=this.value)},function(t){n(0,l=t)},function(){return l}]}class ot extends J{constructor(t){super(),G(this,t,st,lt,o,{value:0,set_value:2,get_value:3})}get set_value(){return this.$$.ctx[2]}get get_value(){return this.$$.ctx[3]}}function at(e){let n;return{c(){n=f("spinner"),$(n,"class","svelte-1471rey")},m(t,e){r(t,n,e)},p:t,i:t,o:t,d(t){t&&u(n)}}}class ct extends J{constructor(t){super(),G(this,t,null,at,o,{})}}function rt(t,e,n){const l=t.slice();return l[4]=e[n],l}function ut(t,e,n){const l=t.slice();return l[7]=e[n],l[9]=n,l}function it(t){let e,n=t[7]+"";return{c(){e=v(n)},m(t,n){r(t,e,n)},p(t,l){1&l&&n!==(n=t[7]+"")&&g(e,n)},d(t){t&&u(e)}}}function ft(e){let n;return{c(){n=v(" ")},m(t,e){r(t,n,e)},p:t,d(t){t&&u(n)}}}function vt(t){let e,n;function l(t,e){return" "==t[7]?ft:it}let s=l(t),o=s(t),a=t[9]<3&&function(t){let e;return{c(){e=v(" ")},m(t,n){r(t,e,n)},d(t){t&&u(e)}}}();return{c(){o.c(),e=d(),a&&a.c(),n=m()},m(t,l){o.m(t,l),r(t,e,l),a&&a.m(t,l),r(t,n,l)},p(t,n){s===(s=l(t))&&o?o.p(t,n):(o.d(1),o=s(t),o&&(o.c(),o.m(e.parentNode,e)))},d(t){o.d(t),t&&u(e),a&&a.d(t),t&&u(n)}}}function dt(t){let e,n,l=t[4],s=[];for(let e=0;e=l.length&&(s=0),n(0,o=l[s])}var c;return c=()=>setInterval(a,100),y().$$.on_mount.push(c),[o]}class $t extends J{constructor(t){super(),G(this,t,pt,mt,o,{})}}function ht(t,e,n){const l=t.slice();return l[5]=e[n],l}function gt(t){let e,n,l,s,o=t[5].text+"";return{c(){e=f("option"),n=v(o),l=d(),e.__value=s=t[5].value,e.value=e.__value,$(e,"class","svelte-vofi9z")},m(t,s){r(t,e,s),c(e,n),c(e,l)},p(t,l){2&l&&o!==(o=t[5].text+"")&&g(n,o),2&l&&s!==(s=t[5].value)&&(e.__value=s,e.value=e.__value)},d(t){t&&u(e)}}}function bt(e){let n,s,o,a=e[1],c=[];for(let t=0;te[4].call(n)))},m(t,l){r(t,n,l);for(let t=0;t{"items"in t&&n(1,l=t.items),"value"in t&&n(0,s=t.value)},[s,l,function(){n(0,s=this.value)},function(){return s},function(){s=function(t){const e=t.querySelector(":checked")||t.options[0];return e&&e.__value}(this),n(0,s),n(1,l)}]}class _t extends J{constructor(t){super(),G(this,t,xt,bt,o,{items:1,value:0,get_value:3})}get get_value(){return this.$$.ctx[3]}}function kt(e){let n,l,s,o;return{c(){n=f("input"),$(n,"type","button"),n.value=e[0],$(n,"class",l="button "+e[1]+" svelte-1rqr1h4")},m(t,l){r(t,n,l),s||(o=p(n,"click",e[2]),s=!0)},p(t,[e]){1&e&&(n.value=t[0]),2&e&&l!==(l="button "+t[1]+" svelte-1rqr1h4")&&$(n,"class",l)},i:t,o:t,d(t){t&&u(n),s=!1,o()}}}function yt(t,e,n){let{value:l="Value"}=e,{style:s="black"}=e;return t.$$set=t=>{"value"in t&&n(0,l=t.value),"style"in t&&n(1,s=t.style)},[l,s,function(e){w.call(this,t,e)}]}class wt extends J{constructor(t){super(),G(this,t,yt,kt,o,{value:0,style:1})}}function Ct(t,e,n){const l=t.slice();return l[29]=e[n],l}function St(t,e,n){const l=t.slice();return l[33]=e[n],l}function Pt(t){let e,n,l,s,o,a,i,v,m,p={ctx:t,current:null,token:null,hasCatch:!0,pending:Et,then:At,catch:Ot,value:28,error:32,blocks:[,,,]};return Y(l=Kt(t[0]+"/api/v1/wifi/get_credentials"),p),a=new Q({props:{value:"SAVE"}}),a.$on("click",t[12]),v=new Q({props:{value:"REBOOT"}}),v.$on("click",t[13]),{c(){var t,l,c;e=f("tab-content"),n=f("div"),p.block.c(),s=d(),o=f("div"),L(a.$$.fragment),i=d(),L(v.$$.fragment),$(n,"class","grid svelte-121b41t"),t="margin-top",l="10px",o.style.setProperty(t,l,c?"important":""),$(o,"class","svelte-121b41t"),h(e,"class","svelte-121b41t")},m(t,l){r(t,e,l),c(e,n),p.block.m(n,p.anchor=null),p.mount=()=>n,p.anchor=null,c(e,s),c(e,o),H(a,o,null),c(o,i),H(v,o,null),m=!0},p(e,n){t=e,p.ctx=t,1&n[0]&&l!==(l=Kt(t[0]+"/api/v1/wifi/get_credentials"))&&Y(l,p)||q(p,t,n)},i(t){m||(W(p.block),W(a.$$.fragment,t),W(v.$$.fragment,t),m=!0)},o(t){for(let t=0;t<3;t+=1){U(p.blocks[t])}U(a.$$.fragment,t),U(v.$$.fragment,t),m=!1},d(t){t&&u(e),p.block.d(),p.token=null,p=null,R(a),R(v)}}}function Ot(e){let n,l,s=e[32].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-121b41t")},m(t,e){r(t,n,e),c(n,l)},p(t,e){1&e[0]&&s!==(s=t[32].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function At(t){let e,n,l,o,a,c,i,v,m,p,h,g,b,x,_,k,y,w,C,S,P,O,A,E,I,N,z,j,F,M,B,D,T,Y,q,V,G,J,K,X,Q,Z,tt,et,nt={items:[{text:"STA (join another network)",value:"STA"},{text:"AP (own access point)",value:"AP"},{text:"Disabled (do not use WiFi)",value:"Disabled"}],value:t[28].wifi_mode};o=new _t({props:nt}),t[18](o);let lt={value:t[28].sta_ssid};b=new ot({props:lt}),t[19](b),x=new wt({props:{value:"+"}}),x.$on("click",(function(){s(t[1].show)&&t[1].show.apply(this,arguments)}));let st={value:t[28].sta_pass};C=new ot({props:st}),t[20](C);let at={value:t[28].ap_ssid};j=new ot({props:at}),t[21](j);let ct={value:t[28].ap_pass};T=new ot({props:ct}),t[22](T);let rt={value:t[28].hostname};J=new ot({props:rt}),t[23](J);let ut={items:[{text:"BlackMagicProbe",value:"BM"},{text:"DapLink",value:"DAP"}],value:t[28].usb_mode};return tt=new _t({props:ut}),t[24](tt),{c(){e=f("div"),e.textContent="Mode:",n=d(),l=f("div"),L(o.$$.fragment),a=d(),c=f("div"),c.textContent="STA",i=d(),v=f("div"),v.textContent="(join another network)",m=d(),p=f("div"),p.textContent="SSID:",h=d(),g=f("div"),L(b.$$.fragment),L(x.$$.fragment),_=d(),k=f("div"),k.textContent="Pass:",y=d(),w=f("div"),L(C.$$.fragment),S=d(),P=f("div"),P.textContent="AP",O=d(),A=f("div"),A.textContent="(own access point)",E=d(),I=f("div"),I.textContent="SSID:",N=d(),z=f("div"),L(j.$$.fragment),F=d(),M=f("div"),M.textContent="Pass:",B=d(),D=f("div"),L(T.$$.fragment),Y=d(),q=f("div"),q.textContent="Hostname:",V=d(),G=f("div"),L(J.$$.fragment),K=d(),X=f("div"),X.textContent="USB mode:",Q=d(),Z=f("div"),L(tt.$$.fragment),$(e,"class","value-name svelte-121b41t"),$(l,"class","value svelte-121b41t"),$(c,"class","value-name splitter svelte-121b41t"),$(v,"class","value mobile-hidden svelte-121b41t"),$(p,"class","value-name svelte-121b41t"),$(g,"class","value svelte-121b41t"),$(k,"class","value-name svelte-121b41t"),$(w,"class","value svelte-121b41t"),$(P,"class","value-name splitter svelte-121b41t"),$(A,"class","value mobile-hidden svelte-121b41t"),$(I,"class","value-name svelte-121b41t"),$(z,"class","value svelte-121b41t"),$(M,"class","value-name svelte-121b41t"),$(D,"class","value svelte-121b41t"),$(q,"class","value-name svelte-121b41t"),$(G,"class","value svelte-121b41t"),$(X,"class","value-name svelte-121b41t"),$(Z,"class","value svelte-121b41t")},m(t,s){r(t,e,s),r(t,n,s),r(t,l,s),H(o,l,null),r(t,a,s),r(t,c,s),r(t,i,s),r(t,v,s),r(t,m,s),r(t,p,s),r(t,h,s),r(t,g,s),H(b,g,null),H(x,g,null),r(t,_,s),r(t,k,s),r(t,y,s),r(t,w,s),H(C,w,null),r(t,S,s),r(t,P,s),r(t,O,s),r(t,A,s),r(t,E,s),r(t,I,s),r(t,N,s),r(t,z,s),H(j,z,null),r(t,F,s),r(t,M,s),r(t,B,s),r(t,D,s),H(T,D,null),r(t,Y,s),r(t,q,s),r(t,V,s),r(t,G,s),H(J,G,null),r(t,K,s),r(t,X,s),r(t,Q,s),r(t,Z,s),H(tt,Z,null),et=!0},p(e,n){t=e;const l={};1&n[0]&&(l.value=t[28].wifi_mode),o.$set(l);const s={};1&n[0]&&(s.value=t[28].sta_ssid),b.$set(s);const a={};1&n[0]&&(a.value=t[28].sta_pass),C.$set(a);const c={};1&n[0]&&(c.value=t[28].ap_ssid),j.$set(c);const r={};1&n[0]&&(r.value=t[28].ap_pass),T.$set(r);const u={};1&n[0]&&(u.value=t[28].hostname),J.$set(u);const i={};1&n[0]&&(i.value=t[28].usb_mode),tt.$set(i)},i(t){et||(W(o.$$.fragment,t),W(b.$$.fragment,t),W(x.$$.fragment,t),W(C.$$.fragment,t),W(j.$$.fragment,t),W(T.$$.fragment,t),W(J.$$.fragment,t),W(tt.$$.fragment,t),et=!0)},o(t){U(o.$$.fragment,t),U(b.$$.fragment,t),U(x.$$.fragment,t),U(C.$$.fragment,t),U(j.$$.fragment,t),U(T.$$.fragment,t),U(J.$$.fragment,t),U(tt.$$.fragment,t),et=!1},d(s){s&&u(e),s&&u(n),s&&u(l),t[18](null),R(o),s&&u(a),s&&u(c),s&&u(i),s&&u(v),s&&u(m),s&&u(p),s&&u(h),s&&u(g),t[19](null),R(b),R(x),s&&u(_),s&&u(k),s&&u(y),s&&u(w),t[20](null),R(C),s&&u(S),s&&u(P),s&&u(O),s&&u(A),s&&u(E),s&&u(I),s&&u(N),s&&u(z),t[21](null),R(j),s&&u(F),s&&u(M),s&&u(B),s&&u(D),t[22](null),R(T),s&&u(Y),s&&u(q),s&&u(V),s&&u(G),t[23](null),R(J),s&&u(K),s&&u(X),s&&u(Q),s&&u(Z),t[24](null),R(tt)}}}function Et(e){let n,l,s,o,a,i,m,p,h,g,b,x,_,k,y,w,C,S,P,O,A,E,I,N,z,j,F,M,B,D,T,Y,q,V,G,J,K,X,Q,Z,tt,et,nt,lt;return o=new ct({}),_=new ct({}),S=new ct({}),F=new ct({}),q=new ct({}),X=new ct({}),nt=new ct({}),{c(){n=f("div"),n.textContent="Mode:",l=d(),s=f("div"),L(o.$$.fragment),a=d(),i=f("div"),i.textContent="STA",m=d(),p=f("div"),p.textContent="(join another network)",h=d(),g=f("div"),g.textContent="SSID:",b=d(),x=f("div"),L(_.$$.fragment),k=d(),y=f("div"),y.textContent="Pass:",w=d(),C=f("div"),L(S.$$.fragment),P=d(),O=f("div"),O.textContent="AP",A=d(),E=f("div"),E.textContent="(own access point)",I=d(),N=f("div"),N.textContent="SSID:",z=d(),j=f("div"),L(F.$$.fragment),M=d(),B=f("div"),B.textContent="Pass:",D=d(),T=f("div"),Y=v('class="value"'),L(q.$$.fragment),V=d(),G=f("div"),G.textContent="Hostname:",J=d(),K=f("div"),L(X.$$.fragment),Q=d(),Z=f("div"),Z.textContent="USB mode:",tt=d(),et=f("div"),L(nt.$$.fragment),$(n,"class","value-name svelte-121b41t"),$(s,"class","value svelte-121b41t"),$(i,"class","value-name splitter svelte-121b41t"),$(p,"class","value mobile-hidden svelte-121b41t"),$(g,"class","value-name svelte-121b41t"),$(x,"class","value svelte-121b41t"),$(y,"class","value-name svelte-121b41t"),$(C,"class","value svelte-121b41t"),$(O,"class","value-name splitter svelte-121b41t"),$(E,"class","value mobile-hidden svelte-121b41t"),$(N,"class","value-name svelte-121b41t"),$(j,"class","value svelte-121b41t"),$(B,"class","value-name svelte-121b41t"),$(T,"class","svelte-121b41t"),$(G,"class","value-name svelte-121b41t"),$(K,"class","value svelte-121b41t"),$(Z,"class","value-name svelte-121b41t"),$(et,"class","value svelte-121b41t")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),H(o,s,null),r(t,a,e),r(t,i,e),r(t,m,e),r(t,p,e),r(t,h,e),r(t,g,e),r(t,b,e),r(t,x,e),H(_,x,null),r(t,k,e),r(t,y,e),r(t,w,e),r(t,C,e),H(S,C,null),r(t,P,e),r(t,O,e),r(t,A,e),r(t,E,e),r(t,I,e),r(t,N,e),r(t,z,e),r(t,j,e),H(F,j,null),r(t,M,e),r(t,B,e),r(t,D,e),r(t,T,e),c(T,Y),H(q,T,null),r(t,V,e),r(t,G,e),r(t,J,e),r(t,K,e),H(X,K,null),r(t,Q,e),r(t,Z,e),r(t,tt,e),r(t,et,e),H(nt,et,null),lt=!0},p:t,i(t){lt||(W(o.$$.fragment,t),W(_.$$.fragment,t),W(S.$$.fragment,t),W(F.$$.fragment,t),W(q.$$.fragment,t),W(X.$$.fragment,t),W(nt.$$.fragment,t),lt=!0)},o(t){U(o.$$.fragment,t),U(_.$$.fragment,t),U(S.$$.fragment,t),U(F.$$.fragment,t),U(q.$$.fragment,t),U(X.$$.fragment,t),U(nt.$$.fragment,t),lt=!1},d(t){t&&u(n),t&&u(l),t&&u(s),R(o),t&&u(a),t&&u(i),t&&u(m),t&&u(p),t&&u(h),t&&u(g),t&&u(b),t&&u(x),R(_),t&&u(k),t&&u(y),t&&u(w),t&&u(C),R(S),t&&u(P),t&&u(O),t&&u(A),t&&u(E),t&&u(I),t&&u(N),t&&u(z),t&&u(j),R(F),t&&u(M),t&&u(B),t&&u(D),t&&u(T),R(q),t&&u(V),t&&u(G),t&&u(J),t&&u(K),R(X),t&&u(Q),t&&u(Z),t&&u(tt),t&&u(et),R(nt)}}}function It(t){let e,n,l,s,o={ctx:t,current:null,token:null,hasCatch:!0,pending:jt,then:zt,catch:Nt,value:28,error:32,blocks:[,,,]};return Y(l=Kt(t[0]+"/api/v1/system/info"),o),{c(){e=f("tab-content"),n=f("div"),o.block.c(),$(n,"class","grid svelte-121b41t"),h(e,"class","svelte-121b41t")},m(t,l){r(t,e,l),c(e,n),o.block.m(n,o.anchor=null),o.mount=()=>n,o.anchor=null,s=!0},p(e,n){t=e,o.ctx=t,1&n[0]&&l!==(l=Kt(t[0]+"/api/v1/system/info"))&&Y(l,o)||q(o,t,n)},i(t){s||(W(o.block),s=!0)},o(t){for(let t=0;t<3;t+=1){U(o.blocks[t])}s=!1},d(t){t&&u(e),o.block.d(),o.token=null,o=null}}}function Nt(e){let n,l,s=e[32].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-121b41t")},m(t,e){r(t,n,e),c(n,l)},p(t,e){1&e[0]&&s!==(s=t[32].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function zt(e){let n,l,s,o,a,i,m,p,h,b,x,_,k,y,w,C,S,P,O,A,E,I,N,z,j,F,M,B,D,T,W,U,Y,q,L,H,R,V,G,J,K,X,Q,Z,tt=Qt(e[28].ip)+"",et=Xt(e[28].mac)+"",nt=e[28].idf_version+"",lt=e[28].model+"",st=e[28].revision+"",ot=e[28].cores+"",at=e[28].heap.minimum_free_bytes+"",ct=e[28].heap.total_free_bytes+"",rt=e[28].heap.total_allocated_bytes+"",ut=e[28].heap.largest_free_block+"";return{c(){n=f("div"),n.textContent="IP:",l=d(),s=f("div"),o=v(tt),a=d(),i=f("div"),i.textContent="Mac:",m=d(),p=f("div"),h=v(et),b=d(),x=f("div"),x.textContent="IDF ver:",_=d(),k=f("div"),y=v(nt),w=d(),C=f("div"),C.textContent="Model:",S=d(),P=f("div"),O=v(lt),A=v("."),E=v(st),I=d(),N=v(ot),z=v("-core"),j=d(),F=f("div"),F.textContent="Min free:",M=d(),B=f("div"),D=v(at),T=d(),W=f("div"),W.textContent="Free:",U=d(),Y=f("div"),q=v(ct),L=d(),H=f("div"),H.textContent="Alloc:",R=d(),V=f("div"),G=v(rt),J=d(),K=f("div"),K.textContent="Max block:",X=d(),Q=f("div"),Z=v(ut),$(n,"class","value-name svelte-121b41t"),$(s,"class","value svelte-121b41t"),$(i,"class","value-name svelte-121b41t"),$(p,"class","value svelte-121b41t"),$(x,"class","value-name svelte-121b41t"),$(k,"class","value svelte-121b41t"),$(C,"class","value-name svelte-121b41t"),$(P,"class","value svelte-121b41t"),$(F,"class","value-name svelte-121b41t"),$(B,"class","value svelte-121b41t"),$(W,"class","value-name svelte-121b41t"),$(Y,"class","value svelte-121b41t"),$(H,"class","value-name svelte-121b41t"),$(V,"class","value svelte-121b41t"),$(K,"class","value-name svelte-121b41t"),$(Q,"class","value svelte-121b41t")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),c(s,o),r(t,a,e),r(t,i,e),r(t,m,e),r(t,p,e),c(p,h),r(t,b,e),r(t,x,e),r(t,_,e),r(t,k,e),c(k,y),r(t,w,e),r(t,C,e),r(t,S,e),r(t,P,e),c(P,O),c(P,A),c(P,E),c(P,I),c(P,N),c(P,z),r(t,j,e),r(t,F,e),r(t,M,e),r(t,B,e),c(B,D),r(t,T,e),r(t,W,e),r(t,U,e),r(t,Y,e),c(Y,q),r(t,L,e),r(t,H,e),r(t,R,e),r(t,V,e),c(V,G),r(t,J,e),r(t,K,e),r(t,X,e),r(t,Q,e),c(Q,Z)},p(t,e){1&e[0]&&tt!==(tt=Qt(t[28].ip)+"")&&g(o,tt),1&e[0]&&et!==(et=Xt(t[28].mac)+"")&&g(h,et),1&e[0]&&nt!==(nt=t[28].idf_version+"")&&g(y,nt),1&e[0]&<!==(lt=t[28].model+"")&&g(O,lt),1&e[0]&&st!==(st=t[28].revision+"")&&g(E,st),1&e[0]&&ot!==(ot=t[28].cores+"")&&g(N,ot),1&e[0]&&at!==(at=t[28].heap.minimum_free_bytes+"")&&g(D,at),1&e[0]&&ct!==(ct=t[28].heap.total_free_bytes+"")&&g(q,ct),1&e[0]&&rt!==(rt=t[28].heap.total_allocated_bytes+"")&&g(G,rt),1&e[0]&&ut!==(ut=t[28].heap.largest_free_block+"")&&g(Z,ut)},i:t,o:t,d(t){t&&u(n),t&&u(l),t&&u(s),t&&u(a),t&&u(i),t&&u(m),t&&u(p),t&&u(b),t&&u(x),t&&u(_),t&&u(k),t&&u(w),t&&u(C),t&&u(S),t&&u(P),t&&u(j),t&&u(F),t&&u(M),t&&u(B),t&&u(T),t&&u(W),t&&u(U),t&&u(Y),t&&u(L),t&&u(H),t&&u(R),t&&u(V),t&&u(J),t&&u(K),t&&u(X),t&&u(Q)}}}function jt(e){let n,l,s,o,a;return o=new ct({}),{c(){n=f("div"),n.textContent="IP:",l=d(),s=f("div"),L(o.$$.fragment),$(n,"class","value-name svelte-121b41t"),$(s,"class","value svelte-121b41t")},m(t,e){r(t,n,e),r(t,l,e),r(t,s,e),H(o,s,null),a=!0},p:t,i(t){a||(W(o.$$.fragment,t),a=!0)},o(t){U(o.$$.fragment,t),a=!1},d(t){t&&u(n),t&&u(l),t&&u(s),R(o)}}}function Ft(t){let e,n,l,s={ctx:t,current:null,token:null,hasCatch:!0,pending:Tt,then:Bt,catch:Mt,value:28,error:32,blocks:[,,,]};return Y(n=Kt(t[0]+"/api/v1/system/tasks"),s),{c(){e=f("tab-content"),s.block.c(),h(e,"class","svelte-121b41t")},m(t,n){r(t,e,n),s.block.m(e,s.anchor=null),s.mount=()=>e,s.anchor=null,l=!0},p(e,l){t=e,s.ctx=t,1&l[0]&&n!==(n=Kt(t[0]+"/api/v1/system/tasks"))&&Y(n,s)||q(s,t,l)},i(t){l||(W(s.block),l=!0)},o(t){for(let t=0;t<3;t+=1){U(s.blocks[t])}l=!1},d(t){t&&u(e),s.block.d(),s.token=null,s=null}}}function Mt(e){let n,l,s=e[32].message+"";return{c(){n=f("error"),l=v(s),$(n,"class","svelte-121b41t")},m(t,e){r(t,n,e),c(n,l)},p(t,e){1&e[0]&&s!==(s=t[32].message+"")&&g(l,s)},i:t,o:t,d(t){t&&u(n)}}}function Bt(e){let n,l,s,o,a,v,m,p,g,b,x,_=e[28].list.sort(Zt),k=[];for(let t=0;t<_.length;t+=1)k[t]=Dt(St(e,_,t));return{c(){n=f("task-list"),l=f("span"),l.textContent="Name",s=d(),o=f("span"),o.textContent="State",a=d(),v=f("span"),v.textContent="Handle",m=d(),p=f("span"),p.textContent="Stack base",g=d(),b=f("span"),b.textContent="WMRK",x=d();for(let t=0;tU(a[t],1,1,(()=>{a[t]=null}));return{c(){e=f("div"),e.textContent="Nets:",n=d();for(let t=0;te.parentNode,s.anchor=e,l=!0},p(e,l){t=e,s.ctx=t,1&l[0]&&n!==(n=Kt(t[0]+"/api/v1/wifi/list"))&&Y(n,s)||q(s,t,l)},i(t){l||(W(s.block),l=!0)},o(t){for(let t=0;t<3;t+=1){U(s.blocks[t])}l=!1},d(t){t&&u(e),s.block.d(t),s.token=null,s=null}}}function Ht(e){let n,l;return n=new ct({}),{c(){L(n.$$.fragment)},m(t,e){H(n,t,e),l=!0},p:t,i(t){l||(W(n.$$.fragment,t),l=!0)},o(t){U(n.$$.fragment,t),l=!1},d(t){R(n,t)}}}function Rt(e){let n;return{c(){n=v(e[3])},m(t,e){r(t,n,e)},p(t,e){8&e[0]&&g(n,t[3])},i:t,o:t,d(t){t&&u(n)}}}function Vt(t){let e,n,l,s;const o=[Rt,Ht],a=[];function c(t,e){return""!=t[3]?0:1}return e=c(t),n=a[e]=o[e](t),{c(){n.c(),l=m()},m(t,n){a[e].m(t,n),r(t,l,n),s=!0},p(t,s){let r=e;e=c(t),e===r?a[e].p(t,s):(D(),U(a[r],1,1,(()=>{a[r]=null})),T(),n=a[e],n?n.p(t,s):(n=a[e]=o[e](t),n.c()),W(n,1),n.m(l.parentNode,l))},i(t){s||(W(n),s=!0)},o(t){U(n),s=!1},d(t){a[e].d(t),t&&u(l)}}}function Gt(t){let e,n,s,o,a,i,v,m,g,b,_,k,y,w,C,S,P,O,A="WiFi"==t[11]&&Pt(t),E="SYS"==t[11]&&It(t),I="PS"==t[11]&&Ft(t);return y=new nt({props:{$$slots:{default:[Lt]},$$scope:{ctx:t}}}),t[26](y),C=new nt({props:{$$slots:{default:[Vt]},$$scope:{ctx:t}}}),t[27](C),{c(){e=f("main"),n=f("tabs"),s=f("tab"),s.textContent="WiFi",o=d(),a=f("tab"),a.textContent="SYS",i=d(),v=f("tab"),v.textContent="PS",m=d(),g=f("tabs-content"),A&&A.c(),b=d(),E&&E.c(),_=d(),I&&I.c(),k=d(),L(y.$$.fragment),w=d(),L(C.$$.fragment),$(s,"class","svelte-121b41t"),x(s,"selected","WiFi"==t[11]),$(a,"class","svelte-121b41t"),x(a,"selected","SYS"==t[11]),$(v,"class","svelte-121b41t"),x(v,"selected","PS"==t[11]),$(n,"class","svelte-121b41t"),h(g,"class","svelte-121b41t"),$(e,"class","svelte-121b41t")},m(l,u){r(l,e,u),c(e,n),c(n,s),c(n,o),c(n,a),c(n,i),c(n,v),c(e,m),c(e,g),A&&A.m(g,null),c(g,b),E&&E.m(g,null),c(g,_),I&&I.m(g,null),c(e,k),H(y,e,null),c(e,w),H(C,e,null),S=!0,P||(O=[p(s,"click",t[15]),p(a,"click",t[16]),p(v,"click",t[17])],P=!0)},p(t,e){2048&e[0]&&x(s,"selected","WiFi"==t[11]),2048&e[0]&&x(a,"selected","SYS"==t[11]),2048&e[0]&&x(v,"selected","PS"==t[11]),"WiFi"==t[11]?A?(A.p(t,e),2048&e[0]&&W(A,1)):(A=Pt(t),A.c(),W(A,1),A.m(g,b)):A&&(D(),U(A,1,1,(()=>{A=null})),T()),"SYS"==t[11]?E?(E.p(t,e),2048&e[0]&&W(E,1)):(E=It(t),E.c(),W(E,1),E.m(g,_)):E&&(D(),U(E,1,1,(()=>{E=null})),T()),"PS"==t[11]?I?(I.p(t,e),2048&e[0]&&W(I,1)):(I=Ft(t),I.c(),W(I,1),I.m(g,null)):I&&(D(),U(I,1,1,(()=>{I=null})),T());const n={};259&e[0]|32&e[1]&&(n.$$scope={dirty:e,ctx:t}),y.$set(n);const l={};8&e[0]|32&e[1]&&(l.$$scope={dirty:e,ctx:t}),C.$set(l)},i(t){S||(W(A),W(E),W(I),W(y.$$.fragment,t),W(C.$$.fragment,t),S=!0)},o(t){U(A),U(E),U(I),U(y.$$.fragment,t),U(C.$$.fragment,t),S=!1},d(n){n&&u(e),A&&A.d(),E&&E.d(),I&&I.d(),t[26](null),R(y),t[27](null),R(C),P=!1,l(O)}}}async function Jt(t,e){const n=await fetch(t,{method:"POST",body:JSON.stringify(e)});return await n.json()}async function Kt(t){const e=await fetch(t,{method:"GET"});return await e.json()}function Xt(t){let e="";for(let n=0;n>=8}return e.join(".")}const Zt=function(t,e){return t.number-e.number};function te(t,e,n){let l,s,o,a,c,r,u,i,f,v,d="WiFi";function m(t){n(11,d=t),localStorage.setItem("current_tab",d)}null!=localStorage.getItem("current_tab")&&(d=localStorage.getItem("current_tab"));return["",l,s,o,a,c,r,u,i,f,v,d,async function(){n(3,o=""),s.show(),await Jt("/api/v1/wifi/set_credentials",{wifi_mode:a.get_value(),usb_mode:c.get_value(),ap_ssid:r.get_value(),ap_pass:u.get_value(),sta_ssid:i.get_value(),sta_pass:f.get_value(),hostname:v.get_value()}).then((t=>{t.error?n(3,o=t.error):n(3,o="Saved!")}))},async function(){Jt("/api/v1/system/reboot",{}),n(3,o="Rebooted"),s.show()},m,()=>{m("WiFi")},()=>{m("SYS")},()=>{m("PS")},function(t){S[t?"unshift":"push"]((()=>{a=t,n(4,a)}))},function(t){S[t?"unshift":"push"]((()=>{i=t,n(8,i)}))},function(t){S[t?"unshift":"push"]((()=>{f=t,n(9,f)}))},function(t){S[t?"unshift":"push"]((()=>{r=t,n(6,r)}))},function(t){S[t?"unshift":"push"]((()=>{u=t,n(7,u)}))},function(t){S[t?"unshift":"push"]((()=>{v=t,n(10,v)}))},function(t){S[t?"unshift":"push"]((()=>{c=t,n(5,c)}))},t=>{l.close(),i.set_value(t.ssid)},function(t){S[t?"unshift":"push"]((()=>{l=t,n(1,l)}))},function(t){S[t?"unshift":"push"]((()=>{s=t,n(2,s)}))}]}return new class extends J{constructor(t){super(),G(this,t,te,Gt,o,{},null,[-1,-1])}}({target:document.body})}(); +var app=function(){"use strict";function t(){}function e(t){return t()}function n(){return Object.create(null)}function r(t){t.forEach(e)}function o(t){return"function"==typeof t}function l(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}function s(t,e,n,r){if(t){const o=c(t,e,n,r);return t[0](o)}}function c(t,e,n,r){return t[1]&&r?function(t,e){for(const n in e)t[n]=e[n];return t}(n.ctx.slice(),t[1](r(e))):n.ctx}function $(t,e,n,r){if(t[2]&&r){const o=t[2](r(n));if(void 0===e.dirty)return o;if("object"==typeof o){const t=[],n=Math.max(e.dirty.length,o.length);for(let r=0;r32){const e=[],n=t.ctx.length/32;for(let t=0;tt.removeEventListener(e,n,r)}function w(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}function y(t,e,n){e in t?t[e]="boolean"==typeof t[e]&&""===n||n:w(t,e,n)}function b(t,e){e=""+e,t.data!==e&&(t.data=e)}function k(t,e,n,r){null==n?t.style.removeProperty(e):t.style.setProperty(e,n,r?"important":"")}function _(t,e,n){for(let n=0;nt.call(this,e)))}const M=[],O=[];let I=[];const P=[],L=Promise.resolve();let U=!1;function F(t){I.push(t)}const D=new Set;let V=0;function j(){if(0!==V)return;const t=C;do{try{for(;V{B.delete(t),r&&(n&&t.d(1),r())})),t.o(e)}else r&&r()}function G(t,e){const n=e.token={};function r(t,r,o,l){if(e.token!==n)return;e.resolved=l;let s=e.ctx;void 0!==o&&(s=s.slice(),s[o]=l);const c=t&&(e.current=t)(s);let $=!1;e.block&&(e.blocks?e.blocks.forEach(((t,n)=>{n!==r&&t&&(W(),K(t,1,1,(()=>{e.blocks[n]===t&&(e.blocks[n]=null)})),q())})):e.block.d(1),c.c(),J(c,1),c.m(e.mount(),e.anchor),$=!0),e.block=c,e.blocks&&(e.blocks[r]=c),$&&j()}if(!(o=t)||"object"!=typeof o&&"function"!=typeof o||"function"!=typeof o.then){if(e.current!==e.then)return r(e.then,1,e.value,t),!0;e.resolved=t}else{const n=N();if(t.then((t=>{E(n),r(e.then,1,e.value,t),E(null)}),(t=>{if(E(n),r(e.catch,2,e.error,t),E(null),!e.hasCatch)throw t})),e.current!==e.pending)return r(e.pending,0),!0}var o}function X(t,e,n){const r=e.slice(),{resolved:o}=t;t.current===t.then&&(r[t.value]=o),t.current===t.catch&&(r[t.error]=o),t.block.p(r,n)}function Y(t){t&&t.c()}function Q(t,n,l,s){const{fragment:c,after_update:$}=t.$$;c&&c.m(n,l),s||F((()=>{const n=t.$$.on_mount.map(e).filter(o);t.$$.on_destroy?t.$$.on_destroy.push(...n):r(n),t.$$.on_mount=[]})),$.forEach(F)}function Z(t,e){const n=t.$$;null!==n.fragment&&(!function(t){const e=[],n=[];I.forEach((r=>-1===t.indexOf(r)?e.push(r):n.push(r))),n.forEach((t=>t())),I=e}(n.after_update),r(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function tt(t,e){-1===t.$$.dirty[0]&&(M.push(t),U||(U=!0,L.then(j)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<{const o=r.length?r[0]:n;return f.ctx&&c(f.ctx[t],f.ctx[t]=o)&&(!f.skip_bound&&f.bound[t]&&f.bound[t](o),m&&tt(e,t)),n})):[],f.update(),m=!0,r(f.before_update),f.fragment=!!s&&s(f.ctx),o.target){if(o.hydrate){const t=function(t){return Array.from(t.childNodes)}(o.target);f.fragment&&f.fragment.l(t),t.forEach(p)}else f.fragment&&f.fragment.c();o.intro&&J(e.$$.fragment),Q(e,o.target,o.anchor,o.customElement),j()}E(i)}class nt{$destroy(){Z(this,1),this.$destroy=t}$on(e,n){if(!o(n))return t;const r=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return r.push(n),()=>{const t=r.indexOf(n);-1!==t&&r.splice(t,1)}}$set(t){var e;this.$$set&&(e=t,0!==Object.keys(e).length)&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}}const rt={server:"",dev_mode:!1,async post(t,e){const n=await fetch(this.server+t,{method:"POST",body:JSON.stringify(e)});return await n.json()},async get(t){const e=await fetch(this.server+t,{method:"GET"});return await e.json()}};function ot(t){}function lt(t,e,n){let{receive:r=(()=>{})}=e;const o=function(t){l.send(t)};let l,s=`ws://${function(){let t=rt.server;return""==t&&(t=window.location.host),t=t.replaceAll("http://",""),t=t.replaceAll("https://",""),t}()}/api/v1/uart/websocket`;function c(t){setTimeout(a,1e3)}function $(t){let e=t.data;var n=new FileReader;n.onload=function(t){var e;e=new Uint8Array(t.target.result),r(e)},e instanceof Blob&&n.readAsArrayBuffer(e)}function a(){l=new WebSocket(s),l.onopen=ot,l.onclose=c,l.onmessage=$}var u;return T((()=>{a()})),u=()=>{l.onclose=function(){},l.close()},N().$$.on_destroy.push(u),t.$$set=t=>{"receive"in t&&n(0,r=t.receive)},[r,o]}class st extends nt{constructor(t){super(),et(this,t,lt,null,l,{receive:0,send:1})}get send(){return this.$$.ctx[1]}}const ct={7:null,8:null,"[20h":null,"[?1h":null,"[?3h":null,"[?4h":null,"[?5h":null,"[?6h":null,"[?7h":null,"[?8h":null,"[?9h":null,"[20l":null,"[?1l":null,"[?2l":null,"[?3l":null,"[?4l":null,"[?5l":null,"[?6l":null,"[?7l":null,"[?8l":null,"[?9l":null,"=":null,">":null,"(A":null,")A":null,"(B":null,")B":null,"(0":null,")0":null,"(1":null,")1":null,"(2":null,")2":null,N:null,O:null,"[;r":null,"[A":null,"[B":null,"[C":null,"[D":null,"[H":null,"[;H":null,"[f":null,"[;f":null,D:null,M:null,E:null,H:null,"[g":null,"[0g":null,"[3g":null,"#3":null,"#4":null,"#5":null,"#6":null,"[K":null,"[0K":null,"[1K":null,"[2K":null,"[J":null,"[0J":null,"[1J":null,"[2J":null,"5n":null,"0n":null,"3n":null,"6n":null,";R":null,"[c":null,"[0c":null,"[?1;0c":null,c:null,"#8":null,"[2;1y":null,"[2;2y":null,"[2;9y":null,"[2;10y":null,"[0q":null,"[1q":null,"[2q":null,"[3q":null,"[4q":null},$t={1:"bold",2:"light",3:"underline",4:"blink",5:"reverse",6:"invisible"},at={30:"color: black",31:"color: red",32:"color: green",33:"color: yellow",34:"color: blue",35:"color: magenta",36:"color: cyan",37:"color: white",40:"background-color: black",41:"background-color: red",42:"background-color: green",43:"background-color: yellow",44:"background-color: blue",45:"background-color: magenta",46:"background-color: cyan",47:"background-color: white"};function ut(t){return 1===t.length&&t.match(/[0-9]/i)}function it(t,e){if(t.startsWith("[")&&t.endsWith("m"))!function(t,e){var n=t.substring(1,t.length-1);if(n.length>0){n=n.split(";");for(let t=0;t0&&(e.output+="",e.spanCount--)}else e.spanCount>0&&(e.output+="",e.spanCount--)}(t,e);else{const n=ct[t];n&&null!==n&&("object"==typeof n?(n.class&&e.classes.push(n.class),n.style&&e.styles.push(n.stye)):"function"==typeof n&&n(e))}}function ft(t){var e,n="",r={output:"",spanCount:0,classes:[],styles:[]};for(let o=0;o0||r.styles.length>0)&&(r.output+=``,r.classes=[],r.styles=[],r.spanCount++),r.output+=" "===l?" ":l}r.output=r.output.replace(/ ([^&]+) /g," $1 "),r.output.startsWith(" ")&&(r.output=" "+r.output.substring(1));for(let t=0;t";return r.output}function pt(e){let n,o,l,s;return{c(){n=g("input"),w(n,"type","button"),n.value=o=e[1]+e[0]+e[2],w(n,"class","button-css svelte-yar6m3")},m(t,r){f(t,n,r),l||(s=[x(n,"mouseenter",e[3]),x(n,"mouseleave",e[4]),x(n,"click",e[5])],l=!0)},p(t,[e]){7&e&&o!==(o=t[1]+t[0]+t[2])&&(n.value=o)},i:t,o:t,d(t){t&&p(n),l=!1,r(s)}}}function mt(t,e,n){let{value:r="Value"}=e,o="",l="",s=null;function c(){n(1,o="["),n(2,l="]")}function $(){n(1,o=">"),n(2,l="<")}function a(){"["==o?$():c()}return c(),t.$$set=t=>{"value"in t&&n(0,r=t.value)},[r,o,l,function(){null==s&&(s=setInterval(a,400)),$()},function(){null!=s&&(clearInterval(s),s=null),c()},function(e){z.call(this,t,e)}]}class gt extends nt{constructor(t){super(),et(this,t,mt,pt,l,{value:0})}}function dt(t){let e,n,o,l,c,m,d,v,w;const b=t[4].default,k=s(b,t,t[3],null);return{c(){e=g("popup-wrapper"),n=g("popup-body"),o=g("popup-content"),l=g("popup-close"),l.textContent="X",c=h(),m=g("popup-border"),k&&k.c(),y(l,"class","svelte-1ufadaz"),y(m,"class","svelte-1ufadaz"),y(o,"class","svelte-1ufadaz"),y(n,"class","svelte-1ufadaz"),y(e,"class","svelte-1ufadaz")},m(r,s){f(r,e,s),i(e,n),i(n,o),i(o,l),i(o,c),i(o,m),k&&k.m(m,null),d=!0,v||(w=[x(l,"click",t[0]),x(l,"keypress",t[0])],v=!0)},p(t,e){k&&k.p&&(!d||8&e)&&a(k,b,t,t[3],d?$(b,t[3],e,null):u(t[3]),null)},i(t){d||(J(k,t),d=!0)},o(t){K(k,t),d=!1},d(t){t&&p(e),k&&k.d(t),v=!1,r(w)}}}function ht(t){let e,n,r=!t[1]&&dt(t);return{c(){r&&r.c(),e=v()},m(t,o){r&&r.m(t,o),f(t,e,o),n=!0},p(t,[n]){t[1]?r&&(W(),K(r,1,1,(()=>{r=null})),q()):r?(r.p(t,n),2&n&&J(r,1)):(r=dt(t),r.c(),J(r,1),r.m(e.parentNode,e))},i(t){n||(J(r),n=!0)},o(t){K(r),n=!1},d(t){r&&r.d(t),t&&p(e)}}}function vt(t,e,n){let{$$slots:r={},$$scope:o}=e,l=!0;return t.$$set=t=>{"$$scope"in t&&n(3,o=t.$$scope)},[function(){n(1,l=!0)},l,function(){n(1,l=!1)},o,r]}class xt extends nt{constructor(t){super(),et(this,t,vt,ht,l,{close:0,show:2})}get close(){return this.$$.ctx[0]}get show(){return this.$$.ctx[2]}}function wt(e){let n;return{c(){n=g("spinner"),w(n,"class","svelte-1471rey")},m(t,e){f(t,n,e)},p:t,i:t,o:t,d(t){t&&p(n)}}}class yt extends nt{constructor(t){super(),et(this,t,null,wt,l,{})}}function bt(t,e,n){const r=t.slice();return r[4]=e[n],r}function kt(t,e,n){const r=t.slice();return r[7]=e[n],r[9]=n,r}function _t(t){let e,n=t[7]+"";return{c(){e=d(n)},m(t,n){f(t,e,n)},p(t,r){1&r&&n!==(n=t[7]+"")&&b(e,n)},d(t){t&&p(e)}}}function St(e){let n;return{c(){n=d(" ")},m(t,e){f(t,n,e)},p:t,d(t){t&&p(n)}}}function At(t){let e,n;function r(t,e){return" "==t[7]?St:_t}let o=r(t),l=o(t),s=t[9]<3&&function(t){let e;return{c(){e=d(" ")},m(t,n){f(t,e,n)},d(t){t&&p(e)}}}();return{c(){l.c(),e=h(),s&&s.c(),n=v()},m(t,r){l.m(t,r),f(t,e,r),s&&s.m(t,r),f(t,n,r)},p(t,n){o===(o=r(t))&&l?l.p(t,n):(l.d(1),l=o(t),l&&(l.c(),l.m(e.parentNode,e)))},d(t){l.d(t),t&&p(e),s&&s.d(t),t&&p(n)}}}function Ct(t){let e,n,r=t[4],o=[];for(let e=0;e=r.length&&(o=0),n(0,l=r[o])}return T((()=>setInterval(s,100))),[l]}class Tt extends nt{constructor(t){super(),et(this,t,Nt,Et,l,{})}}function zt(t){let e,n;const r=t[1].default,o=s(r,t,t[0],null);return{c(){e=g("div"),o&&o.c(),w(e,"class","grid svelte-5oc0kc")},m(t,r){f(t,e,r),o&&o.m(e,null),n=!0},p(t,[e]){o&&o.p&&(!n||1&e)&&a(o,r,t,t[0],n?$(r,t[0],e,null):u(t[0]),null)},i(t){n||(J(o,t),n=!0)},o(t){K(o,t),n=!1},d(t){t&&p(e),o&&o.d(t)}}}function Mt(t,e,n){let{$$slots:r={},$$scope:o}=e;return t.$$set=t=>{"$$scope"in t&&n(0,o=t.$$scope)},[o,r]}class Ot extends nt{constructor(t){super(),et(this,t,Mt,zt,l,{})}}function It(t){let e,n,r,o,l,c;const m=t[4].default,v=s(m,t,t[3],null);return{c(){e=g("div"),n=d(t[0]),r=h(),o=g("div"),l=d(" "),v&&v.c(),w(e,"class","value-name splitter svelte-12p8u92"),w(o,"class","value mobile-hidden svelte-12p8u92")},m(t,s){f(t,e,s),i(e,n),f(t,r,s),f(t,o,s),i(o,l),v&&v.m(o,null),c=!0},p(t,e){(!c||1&e)&&b(n,t[0]),v&&v.p&&(!c||8&e)&&a(v,m,t,t[3],c?$(m,t[3],e,null):u(t[3]),null)},i(t){c||(J(v,t),c=!0)},o(t){K(v,t),c=!1},d(t){t&&p(e),t&&p(r),t&&p(o),v&&v.d(t)}}}function Pt(t){let e,n,r,o,l,c,m;const v=t[4].default,x=s(v,t,t[3],null);return{c(){e=g("div"),n=d(t[0]),r=d(":"),o=h(),l=g("div"),x&&x.c(),w(e,"class","value-name svelte-12p8u92"),w(l,"class",c="value "+(t[2]?"selectable":"")+" svelte-12p8u92")},m(t,s){f(t,e,s),i(e,n),i(e,r),f(t,o,s),f(t,l,s),x&&x.m(l,null),m=!0},p(t,e){(!m||1&e)&&b(n,t[0]),x&&x.p&&(!m||8&e)&&a(x,v,t,t[3],m?$(v,t[3],e,null):u(t[3]),null),(!m||4&e&&c!==(c="value "+(t[2]?"selectable":"")+" svelte-12p8u92"))&&w(l,"class",c)},i(t){m||(J(x,t),m=!0)},o(t){K(x,t),m=!1},d(t){t&&p(e),t&&p(o),t&&p(l),x&&x.d(t)}}}function Lt(t){let e,n,r,o;const l=[Pt,It],s=[];function c(t,e){return t[1]?1:0}return e=c(t),n=s[e]=l[e](t),{c(){n.c(),r=v()},m(t,n){s[e].m(t,n),f(t,r,n),o=!0},p(t,[o]){let $=e;e=c(t),e===$?s[e].p(t,o):(W(),K(s[$],1,1,(()=>{s[$]=null})),q(),n=s[e],n?n.p(t,o):(n=s[e]=l[e](t),n.c()),J(n,1),n.m(r.parentNode,r))},i(t){o||(J(n),o=!0)},o(t){K(n),o=!1},d(t){s[e].d(t),t&&p(r)}}}function Ut(t,e,n){let{$$slots:r={},$$scope:o}=e,{name:l="Name"}=e,{splitter:s=!1}=e,{selectable:c=!1}=e;return t.$$set=t=>{"name"in t&&n(0,l=t.name),"splitter"in t&&n(1,s=t.splitter),"selectable"in t&&n(2,c=t.selectable),"$$scope"in t&&n(3,o=t.$$scope)},[l,s,c,o,r]}class Ft extends nt{constructor(t){super(),et(this,t,Ut,Lt,l,{name:0,splitter:1,selectable:2})}}function Dt(e){let n,r,o,l;return{c(){n=g("input"),w(n,"autocorrect","off"),w(n,"autocapitalize","none"),w(n,"autocomplete","off"),w(n,"type",e[1]),n.value=e[0],w(n,"size",r=(e[0]+"").length>3?(e[0]+"").length:3),w(n,"class","svelte-13nd50t")},m(t,r){f(t,n,r),o||(l=x(n,"input",e[2]),o=!0)},p(t,[e]){2&e&&w(n,"type",t[1]),1&e&&n.value!==t[0]&&(n.value=t[0]),1&e&&r!==(r=(t[0]+"").length>3?(t[0]+"").length:3)&&w(n,"size",r)},i:t,o:t,d(t){t&&p(n),o=!1,l()}}}function Vt(t,e,n){let{value:r=""}=e,{type:o="text"}=e,{input:l}=e;return t.$$set=t=>{"value"in t&&n(0,r=t.value),"type"in t&&n(1,o=t.type),"input"in t&&n(3,l=t.input)},[r,o,function(){this.size=this.value.length>3?this.value.length:3,n(0,r=this.value),null!=l&&l(r)},l,function(t){n(0,r=t)},function(){return r}]}class jt extends nt{constructor(t){super(),et(this,t,Vt,Dt,l,{value:0,type:1,input:3,set_value:4,get_value:5})}get set_value(){return this.$$.ctx[4]}get get_value(){return this.$$.ctx[5]}}const Rt="UTF-8",Bt="ASCII",Ht=Rt,Wt=65533,qt=function(t,e){if(t<128)e.push(t);else{const n=[127,2047,65535,2097151];let r=0;for(;;){if(r++,r===n.length)return console.error("UTF-8 Write - attempted to encode illegally high code point - "+t),void qt(Wt,e);if(t<=n[r]){r+=1;let n,o=0;for(n=0;n>6*(r-1),e.push(o),n=1;n>6*(r-(n+1))&191,e.push(o);return}}}},Jt=function(t,e,n,r){const o=e.getUint8(n);if(t.bytesRead=1,t.charVal=0,128&o){let l=0,s=o;for(;128&s;)l++,s<<=1;if(1===l)return console.error("UTF-8 read - found continuation byte at beginning of character"),void(t.charVal=Wt);if(l>r)return console.error("UTF-8 read - attempted to read "+l+" byte character, "+(r-l)+" bytes past end of buffer"),void(t.charVal=Wt);t.charVal=o&255>>l+1;for(let r=1;r>e==0)return console.error("UTF-8 read - found overlong encoding"),t.charVal=Wt,void(t.bytesRead=1)}t.bytesRead++}if(t.charVal>1114111)return console.error("UTF-8 read - found illegally high code point "+t.charVal),t.charVal=Wt,void(t.bytesRead=1)}else t.charVal=o},Kt=function(t){const e=[];for(let n=0;n255&&(r="?".charCodeAt(0)),e.push(r)}return e},Xt=function(t,e,n,r){const o=void 0===n;let l=e||0;if(!o&&l+n>t.byteLength)throw new Error("Attempted to read "+(l+n-t.byteLength)+" bytes past end of buffer");const s=[],c={};for(;ll-e)&&(Jt(c,t,l,o?t.byteLength-(l+e):n-(l-e)),l+=c.bytesRead,!o||c.charVal!==r);)s.push(String.fromCharCode(c.charVal));return{str:s.join(""),byteLength:l-e}},Yt=function(t,e,n,r){const o=[];let l=0;e=e||0;let s=!1;void 0===n&&(s=!0,n=t.byteLength-t.byteOffset);for(let c=0;c=t.byteLength&&(o-=1),t.setUint8(e+o,0),o+1}};function Zt(t,e,n){const r=t.slice();return r[5]=e[n],r}function te(t){let e,n,r,o,l=t[5].text+"";return{c(){e=g("option"),n=d(l),r=h(),e.__value=o=t[5].value,e.value=e.__value,w(e,"class","svelte-vofi9z")},m(t,o){f(t,e,o),i(e,n),i(e,r)},p(t,r){2&r&&l!==(l=t[5].text+"")&&b(n,l),2&r&&o!==(o=t[5].value)&&(e.__value=o,e.value=e.__value)},d(t){t&&p(e)}}}function ee(e){let n,o,l,s=e[1],c=[];for(let t=0;te[4].call(n)))},m(t,r){f(t,n,r);for(let t=0;t{"items"in t&&n(1,r=t.items),"value"in t&&n(0,o=t.value)},[o,r,function(){n(0,o=this.value)},function(){return o},function(){o=function(t){const e=t.querySelector(":checked");return e&&e.__value}(this),n(0,o),n(1,r)}]}class re extends nt{constructor(t){super(),et(this,t,ne,ee,l,{items:1,value:0,get_value:3})}get get_value(){return this.$$.ctx[3]}}function oe(t,e,n){const r=t.slice();return r[24]=e[n],r}function le(t){let e,n,r=t[24]+"";return{c(){e=new A(!1),n=g("br"),e.a=n},m(t,o){e.m(r,t,o),f(t,n,o)},p(t,n){1&n&&r!==(r=t[24]+"")&&e.p(r)},d(t){t&&e.d(),t&&p(n)}}}function se(t){let e,n,r,o=t[0].last+"";return{c(){e=g("div"),n=new A(!1),r=g("span"),r.textContent="_",n.a=r,w(r,"class","cursor svelte-1dkc3ve"),w(e,"class","line svelte-1dkc3ve")},m(t,l){f(t,e,l),n.m(o,e),i(e,r)},p(t,e){1&e&&o!==(o=t[0].last+"")&&n.p(o)},d(t){t&&p(e)}}}function ce(e){let n,r,o=e[23].message+"";return{c(){n=g("error"),r=d(o)},m(t,e){f(t,n,e),i(n,r)},p:t,i:t,o:t,d(t){t&&p(n)}}}function $e(t){let e,n,r,o,l,s,c;return r=new Ot({props:{$$slots:{default:[pe]},$$scope:{ctx:t}}}),s=new gt({props:{value:"Save"}}),s.$on("click",t[5]),{c(){e=g("div"),e.textContent="UART config",n=h(),Y(r.$$.fragment),o=h(),l=g("div"),Y(s.$$.fragment),k(l,"margin-top","10px"),k(l,"text-align","center")},m(t,$){f(t,e,$),f(t,n,$),Q(r,t,$),f(t,o,$),f(t,l,$),Q(s,l,null),c=!0},p(t,e){const n={};134217732&e&&(n.$$scope={dirty:e,ctx:t}),r.$set(n)},i(t){c||(J(r.$$.fragment,t),J(s.$$.fragment,t),c=!0)},o(t){K(r.$$.fragment,t),K(s.$$.fragment,t),c=!1},d(t){t&&p(e),t&&p(n),Z(r,t),t&&p(o),t&&p(l),Z(s)}}}function ae(t){let e,n,r={type:"number",value:t[22].bit_rate};return e=new jt({props:r}),t[10](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[10](null),Z(e,n)}}}function ue(t){let e,n,r={items:[{text:"1",value:"0"},{text:"1.5",value:"1"},{text:"2",value:"2"}],value:t[22].stop_bits.toString()};return e=new re({props:r}),t[11](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[11](null),Z(e,n)}}}function ie(t){let e,n,r={items:[{text:"None",value:"0"},{text:"Odd",value:"1"},{text:"Even",value:"2"}],value:t[22].parity.toString()};return e=new re({props:r}),t[12](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[12](null),Z(e,n)}}}function fe(t){let e,n,r={items:[{text:"5",value:"5"},{text:"6",value:"6"},{text:"7",value:"7"},{text:"8",value:"8"}],value:t[22].data_bits.toString()};return e=new re({props:r}),t[13](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[13](null),Z(e,n)}}}function pe(t){let e,n,r,o,l,s,c,$;return e=new Ft({props:{name:"Rate",$$slots:{default:[ae]},$$scope:{ctx:t}}}),r=new Ft({props:{name:"Stop",$$slots:{default:[ue]},$$scope:{ctx:t}}}),l=new Ft({props:{name:"Prty",$$slots:{default:[ie]},$$scope:{ctx:t}}}),c=new Ft({props:{name:"Data",$$slots:{default:[fe]},$$scope:{ctx:t}}}),{c(){Y(e.$$.fragment),n=h(),Y(r.$$.fragment),o=h(),Y(l.$$.fragment),s=h(),Y(c.$$.fragment)},m(t,a){Q(e,t,a),f(t,n,a),Q(r,t,a),f(t,o,a),Q(l,t,a),f(t,s,a),Q(c,t,a),$=!0},p(t,n){const o={};134217732&n&&(o.$$scope={dirty:n,ctx:t}),e.$set(o);const s={};134217732&n&&(s.$$scope={dirty:n,ctx:t}),r.$set(s);const $={};134217732&n&&($.$$scope={dirty:n,ctx:t}),l.$set($);const a={};134217732&n&&(a.$$scope={dirty:n,ctx:t}),c.$set(a)},i(t){$||(J(e.$$.fragment,t),J(r.$$.fragment,t),J(l.$$.fragment,t),J(c.$$.fragment,t),$=!0)},o(t){K(e.$$.fragment,t),K(r.$$.fragment,t),K(l.$$.fragment,t),K(c.$$.fragment,t),$=!1},d(t){Z(e,t),t&&p(n),Z(r,t),t&&p(o),Z(l,t),t&&p(s),Z(c,t)}}}function me(e){let n,r;return n=new Tt({}),{c(){Y(n.$$.fragment)},m(t,e){Q(n,t,e),r=!0},p:t,i(t){r||(J(n.$$.fragment,t),r=!0)},o(t){K(n.$$.fragment,t),r=!1},d(t){Z(n,t)}}}function ge(t){let e,n,r={ctx:t,current:null,token:null,hasCatch:!0,pending:me,then:$e,catch:ce,value:22,error:23,blocks:[,,,]};return G(rt.get("/api/v1/uart/get_config",{}),r),{c(){e=v(),r.block.c()},m(t,o){f(t,e,o),r.block.m(t,r.anchor=o),r.mount=()=>e.parentNode,r.anchor=e,n=!0},p(e,n){X(r,t=e,n)},i(t){n||(J(r.block),n=!0)},o(t){for(let t=0;t<3;t+=1){K(r.blocks[t])}n=!1},d(t){t&&p(e),r.block.d(t),r.token=null,r=null}}}function de(e){let n,r;return n=new yt({}),{c(){Y(n.$$.fragment)},m(t,e){Q(n,t,e),r=!0},p:t,i(t){r||(J(n.$$.fragment,t),r=!0)},o(t){K(n.$$.fragment,t),r=!1},d(t){Z(n,t)}}}function he(e){let n,r=e[1].text+"";return{c(){n=d(r)},m(t,e){f(t,n,e)},p(t,e){2&e&&r!==(r=t[1].text+"")&&b(n,r)},i:t,o:t,d(t){t&&p(n)}}}function ve(t){let e,n,r,o;const l=[he,de],s=[];function c(t,e){return""!=t[1].text?0:1}return e=c(t),n=s[e]=l[e](t),{c(){n.c(),r=v()},m(t,n){s[e].m(t,n),f(t,r,n),o=!0},p(t,o){let $=e;e=c(t),e===$?s[e].p(t,o):(W(),K(s[$],1,1,(()=>{s[$]=null})),q(),n=s[e],n?n.p(t,o):(n=s[e]=l[e](t),n.c()),J(n,1),n.m(r.parentNode,r))},i(t){o||(J(n),o=!0)},o(t){K(n),o=!1},d(t){s[e].d(t),t&&p(r)}}}function xe(t){let e,n,r;return e=new jt({props:{value:t[3].data,input:t[16]}}),{c(){Y(e.$$.fragment),n=g("br")},m(t,o){Q(e,t,o),f(t,n,o),r=!0},p(t,n){const r={};8&n&&(r.value=t[3].data),8&n&&(r.input=t[16]),e.$set(r)},i(t){r||(J(e.$$.fragment,t),r=!0)},o(t){K(e.$$.fragment,t),r=!1},d(t){Z(e,t),t&&p(n)}}}function we(t){let e,n;return e=new jt({props:{value:t[3].eol,input:t[17]}}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){const r={};8&n&&(r.value=t[3].eol),8&n&&(r.input=t[17]),e.$set(r)},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function ye(t){let e,n,r,o;return e=new Ft({props:{name:"Data",$$slots:{default:[xe]},$$scope:{ctx:t}}}),r=new Ft({props:{name:"EOL",$$slots:{default:[we]},$$scope:{ctx:t}}}),{c(){Y(e.$$.fragment),n=h(),Y(r.$$.fragment)},m(t,l){Q(e,t,l),f(t,n,l),Q(r,t,l),o=!0},p(t,n){const o={};134217736&n&&(o.$$scope={dirty:n,ctx:t}),e.$set(o);const l={};134217736&n&&(l.$$scope={dirty:n,ctx:t}),r.$set(l)},i(t){o||(J(e.$$.fragment,t),J(r.$$.fragment,t),o=!0)},o(t){K(e.$$.fragment,t),K(r.$$.fragment,t),o=!1},d(t){Z(e,t),t&&p(n),Z(r,t)}}}function be(t){let e,n,r,o,l;return e=new Ot({props:{$$slots:{default:[ye]},$$scope:{ctx:t}}}),o=new gt({props:{value:"Send"}}),o.$on("click",t[6]),{c(){Y(e.$$.fragment),n=h(),r=g("div"),Y(o.$$.fragment),k(r,"margin-top","10px"),k(r,"text-align","center")},m(t,s){Q(e,t,s),f(t,n,s),f(t,r,s),Q(o,r,null),l=!0},p(t,n){const r={};134217736&n&&(r.$$scope={dirty:n,ctx:t}),e.$set(r)},i(t){l||(J(e.$$.fragment,t),J(o.$$.fragment,t),l=!0)},o(t){K(e.$$.fragment,t),K(o.$$.fragment,t),l=!1},d(t){Z(e,t),t&&p(n),t&&p(r),Z(o)}}}function ke(e){let n,r,l,s,c,$,a,u,d,v,x,y,b,k,_,S,A,C,E,N=e[0].lines,T=[];for(let t=0;t{})}=e,{send:l=(()=>{})}=e,s={lines:[],last:""};const c=()=>{const t=new DataView(r.buffer,r.byteOffset,r.byteLength),e="ASCII",o="\n".charCodeAt(0),l=r.lastIndexOf(o);if(-1!=l){let n=Qt.getString(t,0,l,e).split("\n");n=n.map((t=>ft(t))),s.lines.push(...n),r=r.subarray(l+1)}if(r.length>0){const o=Qt.getString(t,0,r.length,e);n(0,s.last=ft(o),s)}else n(0,s.last="",s)};T((()=>{o()}));let $={text:"",self:null},a={popup:null,bit_rate:null,stop_bits:null,parity:null,data_bits:null};let u={popup:null,data:"",eol:"\\r\\n"};return t.$$set=t=>{"on_mount"in t&&n(8,o=t.on_mount),"send"in t&&n(9,l=t.send)},[s,$,a,u,t=>{const e=()=>t.scroll({top:t.scrollHeight,behavior:"instant"});return e(),{update:e}},async function(){n(1,$.text="",$),$.self.show(),n(1,$),a.popup.close(),await rt.post("/api/v1/uart/set_config",{bit_rate:parseInt(a.bit_rate.get_value()),stop_bits:parseInt(a.stop_bits.get_value()),parity:parseInt(a.parity.get_value()),data_bits:parseInt(a.data_bits.get_value())}).then((t=>{t.error?n(1,$.text=t.error,$):n(1,$.text="Saved!",$)}))},async function(){u.popup.close();let t=u.eol.replaceAll("\\r","\r").replaceAll("\\n","\n"),e=u.data+t,n=[];for(;e.length>0;)n.push(e.slice(0,1024)),e=e.slice(1024);for(let t of n)l(t)},t=>{var e,n,o;n=t,(o=new(e=r).constructor(e.length+n.length)).set(e,0),o.set(n,e.length),r=o,c()},o,l,function(t){O[t?"unshift":"push"]((()=>{a.bit_rate=t,n(2,a)}))},function(t){O[t?"unshift":"push"]((()=>{a.stop_bits=t,n(2,a)}))},function(t){O[t?"unshift":"push"]((()=>{a.parity=t,n(2,a)}))},function(t){O[t?"unshift":"push"]((()=>{a.data_bits=t,n(2,a)}))},function(t){O[t?"unshift":"push"]((()=>{a.popup=t,n(2,a)}))},function(t){O[t?"unshift":"push"]((()=>{$.self=t,n(1,$)}))},t=>n(3,u.data=t,u),t=>n(3,u.eol=t,u),function(t){O[t?"unshift":"push"]((()=>{u.popup=t,n(3,u)}))}]}class Se extends nt{constructor(t){super(),et(this,t,_e,ke,l,{push:7,on_mount:8,send:9})}get push(){return this.$$.ctx[7]}}function Ae(e){let n,r,o,l;return{c(){n=g("input"),w(n,"type","button"),n.value=e[0],w(n,"class",r="button "+e[1]+" svelte-9ok6y8")},m(t,r){f(t,n,r),o||(l=x(n,"click",e[2]),o=!0)},p(t,[e]){1&e&&(n.value=t[0]),2&e&&r!==(r="button "+t[1]+" svelte-9ok6y8")&&w(n,"class",r)},i:t,o:t,d(t){t&&p(n),o=!1,l()}}}function Ce(t,e,n){let{value:r="Value"}=e,{style:o="black"}=e;return t.$$set=t=>{"value"in t&&n(0,r=t.value),"style"in t&&n(1,o=t.style)},[r,o,function(e){z.call(this,t,e)}]}class Ee extends nt{constructor(t){super(),et(this,t,Ce,Ae,l,{value:0,style:1})}}function Ne(t,e,n){const r=t.slice();return r[22]=e[n],r}function Te(e){let n,r,o=e[25].message+"";return{c(){n=g("error"),r=d(o)},m(t,e){f(t,n,e),i(n,r)},p:t,i:t,o:t,d(t){t&&p(n)}}}function ze(t){let e,n,r,o,l,s,c,$,a,u,i,m,g,d,v,x,w,y;return e=new Ft({props:{name:"Mode",$$slots:{default:[Me]},$$scope:{ctx:t}}}),r=new Ft({props:{name:"STA",splitter:!0,$$slots:{default:[Oe]},$$scope:{ctx:t}}}),l=new Ft({props:{name:"SSID",$$slots:{default:[Ie]},$$scope:{ctx:t}}}),c=new Ft({props:{name:"Pass",$$slots:{default:[Pe]},$$scope:{ctx:t}}}),a=new Ft({props:{name:"AP",splitter:!0,$$slots:{default:[Le]},$$scope:{ctx:t}}}),i=new Ft({props:{name:"SSID",$$slots:{default:[Ue]},$$scope:{ctx:t}}}),g=new Ft({props:{name:"Pass",$$slots:{default:[Fe]},$$scope:{ctx:t}}}),v=new Ft({props:{name:"Hostname",$$slots:{default:[De]},$$scope:{ctx:t}}}),w=new Ft({props:{name:"USB mode",$$slots:{default:[Ve]},$$scope:{ctx:t}}}),{c(){Y(e.$$.fragment),n=h(),Y(r.$$.fragment),o=h(),Y(l.$$.fragment),s=h(),Y(c.$$.fragment),$=h(),Y(a.$$.fragment),u=h(),Y(i.$$.fragment),m=h(),Y(g.$$.fragment),d=h(),Y(v.$$.fragment),x=h(),Y(w.$$.fragment)},m(t,p){Q(e,t,p),f(t,n,p),Q(r,t,p),f(t,o,p),Q(l,t,p),f(t,s,p),Q(c,t,p),f(t,$,p),Q(a,t,p),f(t,u,p),Q(i,t,p),f(t,m,p),Q(g,t,p),f(t,d,p),Q(v,t,p),f(t,x,p),Q(w,t,p),y=!0},p(t,n){const o={};67108865&n&&(o.$$scope={dirty:n,ctx:t}),e.$set(o);const s={};67108864&n&&(s.$$scope={dirty:n,ctx:t}),r.$set(s);const $={};67109008&n&&($.$$scope={dirty:n,ctx:t}),l.$set($);const u={};67108896&n&&(u.$$scope={dirty:n,ctx:t}),c.$set(u);const f={};67108864&n&&(f.$$scope={dirty:n,ctx:t}),a.$set(f);const p={};67108868&n&&(p.$$scope={dirty:n,ctx:t}),i.$set(p);const m={};67108872&n&&(m.$$scope={dirty:n,ctx:t}),g.$set(m);const d={};67108928&n&&(d.$$scope={dirty:n,ctx:t}),v.$set(d);const h={};67108866&n&&(h.$$scope={dirty:n,ctx:t}),w.$set(h)},i(t){y||(J(e.$$.fragment,t),J(r.$$.fragment,t),J(l.$$.fragment,t),J(c.$$.fragment,t),J(a.$$.fragment,t),J(i.$$.fragment,t),J(g.$$.fragment,t),J(v.$$.fragment,t),J(w.$$.fragment,t),y=!0)},o(t){K(e.$$.fragment,t),K(r.$$.fragment,t),K(l.$$.fragment,t),K(c.$$.fragment,t),K(a.$$.fragment,t),K(i.$$.fragment,t),K(g.$$.fragment,t),K(v.$$.fragment,t),K(w.$$.fragment,t),y=!1},d(t){Z(e,t),t&&p(n),Z(r,t),t&&p(o),Z(l,t),t&&p(s),Z(c,t),t&&p($),Z(a,t),t&&p(u),Z(i,t),t&&p(m),Z(g,t),t&&p(d),Z(v,t),t&&p(x),Z(w,t)}}}function Me(t){let e,n,r={items:[{text:"STA (join another network)",value:"STA"},{text:"AP (own access point)",value:"AP"},{text:"Disabled (do not use WiFi)",value:"Disabled"}],value:t[21].wifi_mode};return e=new re({props:r}),t[11](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[11](null),Z(e,n)}}}function Oe(t){let e;return{c(){e=d("(join another network)")},m(t,n){f(t,e,n)},d(t){t&&p(e)}}}function Ie(t){let e,n,r,l,s={value:t[21].sta_ssid};return e=new jt({props:s}),t[12](e),r=new Ee({props:{value:"+"}}),r.$on("click",(function(){o(t[7].show)&&t[7].show.apply(this,arguments)})),{c(){Y(e.$$.fragment),n=h(),Y(r.$$.fragment)},m(t,o){Q(e,t,o),f(t,n,o),Q(r,t,o),l=!0},p(n,r){t=n;e.$set({})},i(t){l||(J(e.$$.fragment,t),J(r.$$.fragment,t),l=!0)},o(t){K(e.$$.fragment,t),K(r.$$.fragment,t),l=!1},d(o){t[12](null),Z(e,o),o&&p(n),Z(r,o)}}}function Pe(t){let e,n,r={value:t[21].sta_pass};return e=new jt({props:r}),t[13](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[13](null),Z(e,n)}}}function Le(t){let e;return{c(){e=d("(own access point)")},m(t,n){f(t,e,n)},d(t){t&&p(e)}}}function Ue(t){let e,n,r={value:t[21].ap_ssid};return e=new jt({props:r}),t[14](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[14](null),Z(e,n)}}}function Fe(t){let e,n,r={value:t[21].ap_pass};return e=new jt({props:r}),t[15](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[15](null),Z(e,n)}}}function De(t){let e,n,r={value:t[21].hostname};return e=new jt({props:r}),t[16](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[16](null),Z(e,n)}}}function Ve(t){let e,n,r={items:[{text:"BlackMagicProbe",value:"BM"},{text:"DapLink",value:"DAP"}],value:t[21].usb_mode};return e=new re({props:r}),t[17](e),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,n){e.$set({})},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(n){t[17](null),Z(e,n)}}}function je(t){let e,n,r,o,l,s,c,$,a,u,i,m,g,d,v,x,w,y;return e=new Ft({props:{name:"Mode",$$slots:{default:[Re]},$$scope:{ctx:t}}}),r=new Ft({props:{name:"STA",splitter:!0,$$slots:{default:[Be]},$$scope:{ctx:t}}}),l=new Ft({props:{name:"SSID",$$slots:{default:[He]},$$scope:{ctx:t}}}),c=new Ft({props:{name:"Pass",$$slots:{default:[We]},$$scope:{ctx:t}}}),a=new Ft({props:{name:"AP",splitter:!0,$$slots:{default:[qe]},$$scope:{ctx:t}}}),i=new Ft({props:{name:"SSID",$$slots:{default:[Je]},$$scope:{ctx:t}}}),g=new Ft({props:{name:"Pass",$$slots:{default:[Ke]},$$scope:{ctx:t}}}),v=new Ft({props:{name:"Hostname",$$slots:{default:[Ge]},$$scope:{ctx:t}}}),w=new Ft({props:{name:"USB mode",$$slots:{default:[Xe]},$$scope:{ctx:t}}}),{c(){Y(e.$$.fragment),n=h(),Y(r.$$.fragment),o=h(),Y(l.$$.fragment),s=h(),Y(c.$$.fragment),$=h(),Y(a.$$.fragment),u=h(),Y(i.$$.fragment),m=h(),Y(g.$$.fragment),d=h(),Y(v.$$.fragment),x=h(),Y(w.$$.fragment)},m(t,p){Q(e,t,p),f(t,n,p),Q(r,t,p),f(t,o,p),Q(l,t,p),f(t,s,p),Q(c,t,p),f(t,$,p),Q(a,t,p),f(t,u,p),Q(i,t,p),f(t,m,p),Q(g,t,p),f(t,d,p),Q(v,t,p),f(t,x,p),Q(w,t,p),y=!0},p(t,n){const o={};67108864&n&&(o.$$scope={dirty:n,ctx:t}),e.$set(o);const s={};67108864&n&&(s.$$scope={dirty:n,ctx:t}),r.$set(s);const $={};67108864&n&&($.$$scope={dirty:n,ctx:t}),l.$set($);const u={};67108864&n&&(u.$$scope={dirty:n,ctx:t}),c.$set(u);const f={};67108864&n&&(f.$$scope={dirty:n,ctx:t}),a.$set(f);const p={};67108864&n&&(p.$$scope={dirty:n,ctx:t}),i.$set(p);const m={};67108864&n&&(m.$$scope={dirty:n,ctx:t}),g.$set(m);const d={};67108864&n&&(d.$$scope={dirty:n,ctx:t}),v.$set(d);const h={};67108864&n&&(h.$$scope={dirty:n,ctx:t}),w.$set(h)},i(t){y||(J(e.$$.fragment,t),J(r.$$.fragment,t),J(l.$$.fragment,t),J(c.$$.fragment,t),J(a.$$.fragment,t),J(i.$$.fragment,t),J(g.$$.fragment,t),J(v.$$.fragment,t),J(w.$$.fragment,t),y=!0)},o(t){K(e.$$.fragment,t),K(r.$$.fragment,t),K(l.$$.fragment,t),K(c.$$.fragment,t),K(a.$$.fragment,t),K(i.$$.fragment,t),K(g.$$.fragment,t),K(v.$$.fragment,t),K(w.$$.fragment,t),y=!1},d(t){Z(e,t),t&&p(n),Z(r,t),t&&p(o),Z(l,t),t&&p(s),Z(c,t),t&&p($),Z(a,t),t&&p(u),Z(i,t),t&&p(m),Z(g,t),t&&p(d),Z(v,t),t&&p(x),Z(w,t)}}}function Re(t){let e,n;return e=new yt({}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function Be(t){let e;return{c(){e=d("(join another network)")},m(t,n){f(t,e,n)},d(t){t&&p(e)}}}function He(t){let e,n;return e=new yt({}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function We(t){let e,n;return e=new yt({}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function qe(t){let e;return{c(){e=d("(own access point)")},m(t,n){f(t,e,n)},d(t){t&&p(e)}}}function Je(t){let e,n;return e=new yt({}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function Ke(t){let e,n;return e=new yt({}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function Ge(t){let e,n;return e=new yt({}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function Xe(t){let e,n;return e=new yt({}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}function Ye(t){let e,n,r={ctx:t,current:null,token:null,hasCatch:!0,pending:je,then:ze,catch:Te,value:21,error:25,blocks:[,,,]};return G(rt.get("/api/v1/wifi/get_credentials"),r),{c(){e=v(),r.block.c()},m(t,o){f(t,e,o),r.block.m(t,r.anchor=o),r.mount=()=>e.parentNode,r.anchor=e,n=!0},p(e,n){X(r,t=e,n)},i(t){n||(J(r.block),n=!0)},o(t){for(let t=0;t<3;t+=1){K(r.blocks[t])}n=!1},d(t){t&&p(e),r.block.d(t),r.token=null,r=null}}}function Qe(e){let n,r,o=e[25].message+"";return{c(){n=g("error"),r=d(o)},m(t,e){f(t,n,e),i(n,r)},p:t,i:t,o:t,d(t){t&&p(n)}}}function Ze(t){let e,n,r,o,l=t[21].net_list,s=[];for(let e=0;eK(s[t],1,1,(()=>{s[t]=null}));return{c(){e=g("div"),e.textContent="Nets:",n=h();for(let t=0;te.parentNode,r.anchor=e,n=!0},p(e,n){X(r,t=e,n)},i(t){n||(J(r.block),n=!0)},o(t){for(let t=0;t<3;t+=1){K(r.blocks[t])}n=!1},d(t){t&&p(e),r.block.d(t),r.token=null,r=null}}}function rn(e){let n,r;return n=new yt({}),{c(){Y(n.$$.fragment)},m(t,e){Q(n,t,e),r=!0},p:t,i(t){r||(J(n.$$.fragment,t),r=!0)},o(t){K(n.$$.fragment,t),r=!1},d(t){Z(n,t)}}}function on(e){let n,r=e[8].text+"";return{c(){n=d(r)},m(t,e){f(t,n,e)},p(t,e){256&e&&r!==(r=t[8].text+"")&&b(n,r)},i:t,o:t,d(t){t&&p(n)}}}function ln(t){let e,n,r,o;const l=[on,rn],s=[];function c(t,e){return""!=t[8].text?0:1}return e=c(t),n=s[e]=l[e](t),{c(){n.c(),r=v()},m(t,n){s[e].m(t,n),f(t,r,n),o=!0},p(t,o){let $=e;e=c(t),e===$?s[e].p(t,o):(W(),K(s[$],1,1,(()=>{s[$]=null})),q(),n=s[e],n?n.p(t,o):(n=s[e]=l[e](t),n.c()),J(n,1),n.m(r.parentNode,r))},i(t){o||(J(n),o=!0)},o(t){K(n),o=!1},d(t){s[e].d(t),t&&p(r)}}}function sn(t){let e,n,r,o,l,s,c,$,a,u,m;return e=new Ot({props:{$$slots:{default:[Ye]},$$scope:{ctx:t}}}),o=new gt({props:{value:"SAVE"}}),o.$on("click",t[10]),s=new gt({props:{value:"REBOOT"}}),s.$on("click",t[9]),$=new xt({props:{$$slots:{default:[nn]},$$scope:{ctx:t}}}),t[19]($),u=new xt({props:{$$slots:{default:[ln]},$$scope:{ctx:t}}}),t[20](u),{c(){Y(e.$$.fragment),n=h(),r=g("div"),Y(o.$$.fragment),l=h(),Y(s.$$.fragment),c=h(),Y($.$$.fragment),a=h(),Y(u.$$.fragment),k(r,"margin-top","10px")},m(t,p){Q(e,t,p),f(t,n,p),f(t,r,p),Q(o,r,null),i(r,l),Q(s,r,null),f(t,c,p),Q($,t,p),f(t,a,p),Q(u,t,p),m=!0},p(t,[n]){const r={};67109119&n&&(r.$$scope={dirty:n,ctx:t}),e.$set(r);const o={};67109008&n&&(o.$$scope={dirty:n,ctx:t}),$.$set(o);const l={};67109120&n&&(l.$$scope={dirty:n,ctx:t}),u.$set(l)},i(t){m||(J(e.$$.fragment,t),J(o.$$.fragment,t),J(s.$$.fragment,t),J($.$$.fragment,t),J(u.$$.fragment,t),m=!0)},o(t){K(e.$$.fragment,t),K(o.$$.fragment,t),K(s.$$.fragment,t),K($.$$.fragment,t),K(u.$$.fragment,t),m=!1},d(l){Z(e,l),l&&p(n),l&&p(r),Z(o),Z(s),l&&p(c),t[19](null),Z($,l),l&&p(a),t[20](null),Z(u,l)}}}function cn(t,e,n){let r,o,l,s,c,$,a,u,i={text:"",self:null};return[r,o,l,s,c,$,a,u,i,async function(){rt.post("/api/v1/system/reboot",{}),n(8,i.text="Rebooted",i),i.self.show()},async function(){n(8,i.text="",i),i.self.show(),n(8,i),await rt.post("/api/v1/wifi/set_credentials",{wifi_mode:r.get_value(),usb_mode:o.get_value(),ap_ssid:l.get_value(),ap_pass:s.get_value(),sta_ssid:c.get_value(),sta_pass:$.get_value(),hostname:a.get_value()}).then((t=>{t.error?n(8,i.text=t.error,i):n(8,i.text="Saved!",i)}))},function(t){O[t?"unshift":"push"]((()=>{r=t,n(0,r)}))},function(t){O[t?"unshift":"push"]((()=>{c=t,n(4,c)}))},function(t){O[t?"unshift":"push"]((()=>{$=t,n(5,$)}))},function(t){O[t?"unshift":"push"]((()=>{l=t,n(2,l)}))},function(t){O[t?"unshift":"push"]((()=>{s=t,n(3,s)}))},function(t){O[t?"unshift":"push"]((()=>{a=t,n(6,a)}))},function(t){O[t?"unshift":"push"]((()=>{o=t,n(1,o)}))},t=>{u.close(),c.set_value(t.ssid)},function(t){O[t?"unshift":"push"]((()=>{u=t,n(7,u)}))},function(t){O[t?"unshift":"push"]((()=>{i.self=t,n(8,i)}))}]}class $n extends nt{constructor(t){super(),et(this,t,cn,sn,l,{})}}function an(e){let n,r,o=e[1].message+"";return{c(){n=g("error"),r=d(o)},m(t,e){f(t,n,e),i(n,r)},p:t,i:t,o:t,d(t){t&&p(n)}}}function un(t){let e,n,r,o,l,s,c,$,a,u,i,m,g,d,v,x,w,y,b,k,_,S,A,C,E,N,T,z,M,O,I,P;return e=new Ft({props:{name:"IP",selectable:"true",$$slots:{default:[fn]},$$scope:{ctx:t}}}),r=new Ft({props:{name:"Mac",$$slots:{default:[pn]},$$scope:{ctx:t}}}),l=new Ft({props:{name:"IDF ver",$$slots:{default:[mn]},$$scope:{ctx:t}}}),c=new Ft({props:{name:"FW commit",$$slots:{default:[gn]},$$scope:{ctx:t}}}),a=new Ft({props:{name:"FW ver",$$slots:{default:[dn]},$$scope:{ctx:t}}}),i=new Ft({props:{name:"Model",$$slots:{default:[hn]},$$scope:{ctx:t}}}),g=new Ft({props:{name:"Heap",splitter:!0,$$slots:{default:[vn]},$$scope:{ctx:t}}}),v=new Ft({props:{name:"Min free",$$slots:{default:[xn]},$$scope:{ctx:t}}}),w=new Ft({props:{name:"Free",$$slots:{default:[wn]},$$scope:{ctx:t}}}),b=new Ft({props:{name:"Alloc",$$slots:{default:[yn]},$$scope:{ctx:t}}}),_=new Ft({props:{name:"Max block",$$slots:{default:[bn]},$$scope:{ctx:t}}}),A=new Ft({props:{name:"PSRAM",splitter:!0,$$slots:{default:[kn]},$$scope:{ctx:t}}}),E=new Ft({props:{name:"Min free",$$slots:{default:[_n]},$$scope:{ctx:t}}}),T=new Ft({props:{name:"Free",$$slots:{default:[Sn]},$$scope:{ctx:t}}}),M=new Ft({props:{name:"Alloc",$$slots:{default:[An]},$$scope:{ctx:t}}}),I=new Ft({props:{name:"Max block",$$slots:{default:[Cn]},$$scope:{ctx:t}}}),{c(){Y(e.$$.fragment),n=h(),Y(r.$$.fragment),o=h(),Y(l.$$.fragment),s=h(),Y(c.$$.fragment),$=h(),Y(a.$$.fragment),u=h(),Y(i.$$.fragment),m=h(),Y(g.$$.fragment),d=h(),Y(v.$$.fragment),x=h(),Y(w.$$.fragment),y=h(),Y(b.$$.fragment),k=h(),Y(_.$$.fragment),S=h(),Y(A.$$.fragment),C=h(),Y(E.$$.fragment),N=h(),Y(T.$$.fragment),z=h(),Y(M.$$.fragment),O=h(),Y(I.$$.fragment)},m(t,p){Q(e,t,p),f(t,n,p),Q(r,t,p),f(t,o,p),Q(l,t,p),f(t,s,p),Q(c,t,p),f(t,$,p),Q(a,t,p),f(t,u,p),Q(i,t,p),f(t,m,p),Q(g,t,p),f(t,d,p),Q(v,t,p),f(t,x,p),Q(w,t,p),f(t,y,p),Q(b,t,p),f(t,k,p),Q(_,t,p),f(t,S,p),Q(A,t,p),f(t,C,p),Q(E,t,p),f(t,N,p),Q(T,t,p),f(t,z,p),Q(M,t,p),f(t,O,p),Q(I,t,p),P=!0},p(t,n){const o={};4&n&&(o.$$scope={dirty:n,ctx:t}),e.$set(o);const s={};4&n&&(s.$$scope={dirty:n,ctx:t}),r.$set(s);const $={};4&n&&($.$$scope={dirty:n,ctx:t}),l.$set($);const u={};4&n&&(u.$$scope={dirty:n,ctx:t}),c.$set(u);const f={};4&n&&(f.$$scope={dirty:n,ctx:t}),a.$set(f);const p={};4&n&&(p.$$scope={dirty:n,ctx:t}),i.$set(p);const m={};4&n&&(m.$$scope={dirty:n,ctx:t}),g.$set(m);const d={};4&n&&(d.$$scope={dirty:n,ctx:t}),v.$set(d);const h={};4&n&&(h.$$scope={dirty:n,ctx:t}),w.$set(h);const x={};4&n&&(x.$$scope={dirty:n,ctx:t}),b.$set(x);const y={};4&n&&(y.$$scope={dirty:n,ctx:t}),_.$set(y);const k={};4&n&&(k.$$scope={dirty:n,ctx:t}),A.$set(k);const S={};4&n&&(S.$$scope={dirty:n,ctx:t}),E.$set(S);const C={};4&n&&(C.$$scope={dirty:n,ctx:t}),T.$set(C);const N={};4&n&&(N.$$scope={dirty:n,ctx:t}),M.$set(N);const z={};4&n&&(z.$$scope={dirty:n,ctx:t}),I.$set(z)},i(t){P||(J(e.$$.fragment,t),J(r.$$.fragment,t),J(l.$$.fragment,t),J(c.$$.fragment,t),J(a.$$.fragment,t),J(i.$$.fragment,t),J(g.$$.fragment,t),J(v.$$.fragment,t),J(w.$$.fragment,t),J(b.$$.fragment,t),J(_.$$.fragment,t),J(A.$$.fragment,t),J(E.$$.fragment,t),J(T.$$.fragment,t),J(M.$$.fragment,t),J(I.$$.fragment,t),P=!0)},o(t){K(e.$$.fragment,t),K(r.$$.fragment,t),K(l.$$.fragment,t),K(c.$$.fragment,t),K(a.$$.fragment,t),K(i.$$.fragment,t),K(g.$$.fragment,t),K(v.$$.fragment,t),K(w.$$.fragment,t),K(b.$$.fragment,t),K(_.$$.fragment,t),K(A.$$.fragment,t),K(E.$$.fragment,t),K(T.$$.fragment,t),K(M.$$.fragment,t),K(I.$$.fragment,t),P=!1},d(t){Z(e,t),t&&p(n),Z(r,t),t&&p(o),Z(l,t),t&&p(s),Z(c,t),t&&p($),Z(a,t),t&&p(u),Z(i,t),t&&p(m),Z(g,t),t&&p(d),Z(v,t),t&&p(x),Z(w,t),t&&p(y),Z(b,t),t&&p(k),Z(_,t),t&&p(S),Z(A,t),t&&p(C),Z(E,t),t&&p(N),Z(T,t),t&&p(z),Z(M,t),t&&p(O),Z(I,t)}}}function fn(e){let n,r=function(t){for(var e=[0,0,0,0],n=0;n>=8}return e.join(".")}(e[0].ip)+"";return{c(){n=d(r)},m(t,e){f(t,n,e)},p:t,d(t){t&&p(n)}}}function pn(e){let n,r=function(t){let e="";for(let n=0;ne.parentNode,r.anchor=e,n=!0},p(e,n){X(r,t=e,n)},i(t){n||(J(r.block),n=!0)},o(t){for(let t=0;t<3;t+=1){K(r.blocks[t])}n=!1},d(t){t&&p(e),r.block.d(t),r.token=null,r=null}}}function Hn(t){let e,n;return e=new Ot({props:{$$slots:{default:[Bn]},$$scope:{ctx:t}}}),{c(){Y(e.$$.fragment)},m(t,r){Q(e,t,r),n=!0},p(t,[n]){const r={};4&n&&(r.$$scope={dirty:n,ctx:t}),e.$set(r)},i(t){n||(J(e.$$.fragment,t),n=!0)},o(t){K(e.$$.fragment,t),n=!1},d(t){Z(e,t)}}}class Wn extends nt{constructor(t){super(),et(this,t,null,Hn,l,{})}}function qn(t,e,n){const r=t.slice();return r[1]=e[n],r}function Jn(e){let n,r,o=e[4].message+"";return{c(){n=g("error"),r=d(o)},m(t,e){f(t,n,e),i(n,r)},p:t,i:t,o:t,d(t){t&&p(n)}}}function Kn(e){let n,r,o,l,s,c,$,a,u,d,v,x=e[0].list.sort(Qn),b=[];for(let t=0;te.parentNode,r.anchor=e,n=!0},p(e,[n]){X(r,t=e,n)},i(t){n||(J(r.block),n=!0)},o(t){for(let t=0;t<3;t+=1){K(r.blocks[t])}n=!1},d(t){t&&p(e),r.block.d(t),r.token=null,r=null}}}const Qn=function(t,e){return t.number-e.number};class Zn extends nt{constructor(t){super(),et(this,t,null,Yn,l,{})}}function tr(t){let e,n,r=rt.dev_mode;return{c(){e=v()},m(t,r){f(t,e,r),n=!0},p(t,[e]){},i(t){n||(J(r),n=!0)},o(t){K(r),n=!1},d(t){t&&p(e)}}}function er(t){return[()=>{location.reload()}]}class nr extends nt{constructor(t){super(),et(this,t,er,tr,l,{})}}function rr(e){let n;return{c(){n=g("div"),n.textContent="U",w(n,"class","indicatior svelte-petsa3"),S(n,"active",e[0])},m(t,e){f(t,n,e)},p(t,[e]){1&e&&S(n,"active",t[0])},i:t,o:t,d(t){t&&p(n)}}}function or(t,e,n){let r,o=!1;return[o,function(){n(0,o=!0),null!=r&&clearTimeout(r),r=setTimeout((()=>{n(0,o=!1)}),100)}]}class lr extends nt{constructor(t){super(),et(this,t,or,rr,l,{activate:1})}get activate(){return this.$$.ctx[1]}}function sr(t,e,n){const r=t.slice();return r[18]=e[n],r}function cr(t){let e,n,o,l,s,c=t[18]+"";function $(){return t[9](t[18])}function a(){return t[10](t[18])}return{c(){e=g("tab"),n=d(c),o=h(),w(e,"class","svelte-12k48c6"),S(e,"selected",t[0]==t[18])},m(t,r){f(t,e,r),i(e,n),i(e,o),l||(s=[x(e,"click",$),x(e,"keypress",a)],l=!0)},p(n,r){t=n,257&r&&S(e,"selected",t[0]==t[18])},d(t){t&&p(e),l=!1,r(s)}}}function $r(t){let e,n,r,o={on_mount:t[6],send:t[7]};return n=new Se({props:o}),t[11](n),{c(){e=g("tab-content"),Y(n.$$.fragment),y(e,"class","uart-terminal svelte-12k48c6")},m(t,o){f(t,e,o),Q(n,e,null),r=!0},p(t,e){n.$set({})},i(t){r||(J(n.$$.fragment,t),r=!0)},o(t){K(n.$$.fragment,t),r=!1},d(r){r&&p(e),t[11](null),Z(n)}}}function ar(e){let n,r,o;return r=new Zn({}),{c(){n=g("tab-content"),Y(r.$$.fragment),y(n,"class","svelte-12k48c6")},m(t,e){f(t,n,e),Q(r,n,null),o=!0},p:t,i(t){o||(J(r.$$.fragment,t),o=!0)},o(t){K(r.$$.fragment,t),o=!1},d(t){t&&p(n),Z(r)}}}function ur(e){let n,r,o;return r=new Wn({}),{c(){n=g("tab-content"),Y(r.$$.fragment),y(n,"class","svelte-12k48c6")},m(t,e){f(t,n,e),Q(r,n,null),o=!0},p:t,i(t){o||(J(r.$$.fragment,t),o=!0)},o(t){K(r.$$.fragment,t),o=!1},d(t){t&&p(n),Z(r)}}}function ir(e){let n,r,o;return r=new $n({}),{c(){n=g("tab-content"),Y(r.$$.fragment),y(n,"class","svelte-12k48c6")},m(t,e){f(t,n,e),Q(r,n,null),o=!0},p:t,i(t){o||(J(r.$$.fragment,t),o=!0)},o(t){K(r.$$.fragment,t),o=!1},d(t){t&&p(n),Z(r)}}}function fr(t){let e,n,r,o,l,s,c,$,a,u,d,v,x,b=t[8],k=[];for(let e=0;e{A[r]=null})),q()),~l?(s=A[l],s?s.p(t,e):(s=A[l]=_[l](t),s.c()),J(s,1),s.m(o,null)):s=null),(!x||257&e)&&S(o,"uart-terminal",t[0]==t[8][3]);$.$set({});u.$set({})},i(t){x||(J(s),J($.$$.fragment,t),J(u.$$.fragment,t),J(v.$$.fragment,t),x=!0)},o(t){K(s),K($.$$.fragment,t),K(u.$$.fragment,t),K(v.$$.fragment,t),x=!1},d(n){n&&p(e),m(k,n),~l&&A[l].d(),t[12](null),Z($),t[13](null),Z(u),Z(v)}}}function pr(t,e,n){let r="WiFi";function o(t){n(0,r=t),localStorage.setItem("current_tab",r)}null!=localStorage.getItem("current_tab")&&(r=localStorage.getItem("current_tab"));let l,s,c,$=[];const a=()=>{document.documentElement.style.setProperty("--app-height",`${window.innerHeight}px`)};T((()=>{a(),window.addEventListener("resize",a),window.addEventListener("orientationchange",(function(){a()}))}));return[r,l,s,c,o,function(t){l.activate(),function(t){$.push(t)}(t),null!=s&&s.push(t)},function(){let t=$;for(let e=0;e{o(t)},t=>{o(t)},function(t){O[t?"unshift":"push"]((()=>{s=t,n(2,s)}))},function(t){O[t?"unshift":"push"]((()=>{l=t,n(1,l)}))},function(t){O[t?"unshift":"push"]((()=>{c=t,n(3,c)}))}]}return new class extends nt{constructor(t){super(),et(this,t,pr,fr,l,{})}}({target:document.body})}(); //# sourceMappingURL=bundle.js.map diff --git a/components/svelte-portal/public/build/bundle.js.map b/components/svelte-portal/public/build/bundle.js.map index c8e7aed..7534636 100644 --- a/components/svelte-portal/public/build/bundle.js.map +++ b/components/svelte-portal/public/build/bundle.js.map @@ -1 +1 @@ -{"version":3,"file":"bundle.js","sources":["../../node_modules/svelte/internal/index.mjs","../../src/Button.svelte","../../src/Popup.svelte","../../src/Input.svelte","../../src/Spinner.svelte","../../src/SpinnerBig.svelte","../../src/Select.svelte","../../src/ButtonInline.svelte","../../src/App.svelte","../../src/main.js"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\nfunction is_promise(value) {\n return value && typeof value === 'object' && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not \n let children = target.childNodes;\n // If target is , there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentElement !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n node.parentNode.removeChild(node);\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration();\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.wholeText !== data)\n text.data = data;\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n node.style.setProperty(key, value, important ? 'important' : '');\n}\nfunction select_option(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n select.selectedIndex = -1; // no option should be selected\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked') || select.options[0];\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, bubbles = false) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, false, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nclass HtmlTag {\n constructor() {\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n this.e = element(target.nodeName);\n this.t = target;\n this.c(html);\n }\n this.i(anchor);\n }\n h(html) {\n this.e.innerHTML = html;\n this.n = Array.from(this.e.childNodes);\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert(this.t, this.n[i], anchor);\n }\n }\n p(html) {\n this.d();\n this.h(html);\n this.i(this.a);\n }\n d() {\n this.n.forEach(detach);\n }\n}\nclass HtmlTagHydration extends HtmlTag {\n constructor(claimed_nodes) {\n super();\n this.e = this.n = null;\n this.l = claimed_nodes;\n }\n c(html) {\n if (this.l) {\n this.n = this.l;\n }\n else {\n super.c(html);\n }\n }\n i(anchor) {\n for (let i = 0; i < this.n.length; i += 1) {\n insert_hydration(this.t, this.n[i], anchor);\n }\n }\n}\nfunction attribute_to_object(attributes) {\n const result = {};\n for (const attribute of attributes) {\n result[attribute.name] = attribute.value;\n }\n return result;\n}\nfunction get_custom_elements_slots(element) {\n const result = {};\n element.childNodes.forEach((node) => {\n result[node.slot || 'default'] = true;\n });\n return result;\n}\n\nconst active_docs = new Set();\nlet active = 0;\n// https://github.com/darkskyapp/string-hash/blob/master/index.js\nfunction hash(str) {\n let hash = 5381;\n let i = str.length;\n while (i--)\n hash = ((hash << 5) - hash) ^ str.charCodeAt(i);\n return hash >>> 0;\n}\nfunction create_rule(node, a, b, duration, delay, ease, fn, uid = 0) {\n const step = 16.666 / duration;\n let keyframes = '{\\n';\n for (let p = 0; p <= 1; p += step) {\n const t = a + (b - a) * ease(p);\n keyframes += p * 100 + `%{${fn(t, 1 - t)}}\\n`;\n }\n const rule = keyframes + `100% {${fn(b, 1 - b)}}\\n}`;\n const name = `__svelte_${hash(rule)}_${uid}`;\n const doc = get_root_for_style(node);\n active_docs.add(doc);\n const stylesheet = doc.__svelte_stylesheet || (doc.__svelte_stylesheet = append_empty_stylesheet(node).sheet);\n const current_rules = doc.__svelte_rules || (doc.__svelte_rules = {});\n if (!current_rules[name]) {\n current_rules[name] = true;\n stylesheet.insertRule(`@keyframes ${name} ${rule}`, stylesheet.cssRules.length);\n }\n const animation = node.style.animation || '';\n node.style.animation = `${animation ? `${animation}, ` : ''}${name} ${duration}ms linear ${delay}ms 1 both`;\n active += 1;\n return name;\n}\nfunction delete_rule(node, name) {\n const previous = (node.style.animation || '').split(', ');\n const next = previous.filter(name\n ? anim => anim.indexOf(name) < 0 // remove specific animation\n : anim => anim.indexOf('__svelte') === -1 // remove all Svelte animations\n );\n const deleted = previous.length - next.length;\n if (deleted) {\n node.style.animation = next.join(', ');\n active -= deleted;\n if (!active)\n clear_rules();\n }\n}\nfunction clear_rules() {\n raf(() => {\n if (active)\n return;\n active_docs.forEach(doc => {\n const stylesheet = doc.__svelte_stylesheet;\n let i = stylesheet.cssRules.length;\n while (i--)\n stylesheet.deleteRule(i);\n doc.__svelte_rules = {};\n });\n active_docs.clear();\n });\n}\n\nfunction create_animation(node, from, fn, params) {\n if (!from)\n return noop;\n const to = node.getBoundingClientRect();\n if (from.left === to.left && from.right === to.right && from.top === to.top && from.bottom === to.bottom)\n return noop;\n const { delay = 0, duration = 300, easing = identity, \n // @ts-ignore todo: should this be separated from destructuring? Or start/end added to public api and documentation?\n start: start_time = now() + delay, \n // @ts-ignore todo:\n end = start_time + duration, tick = noop, css } = fn(node, { from, to }, params);\n let running = true;\n let started = false;\n let name;\n function start() {\n if (css) {\n name = create_rule(node, 0, 1, duration, delay, easing, css);\n }\n if (!delay) {\n started = true;\n }\n }\n function stop() {\n if (css)\n delete_rule(node, name);\n running = false;\n }\n loop(now => {\n if (!started && now >= start_time) {\n started = true;\n }\n if (started && now >= end) {\n tick(1, 0);\n stop();\n }\n if (!running) {\n return false;\n }\n if (started) {\n const p = now - start_time;\n const t = 0 + 1 * easing(p / duration);\n tick(t, 1 - t);\n }\n return true;\n });\n start();\n tick(0, 1);\n return stop;\n}\nfunction fix_position(node) {\n const style = getComputedStyle(node);\n if (style.position !== 'absolute' && style.position !== 'fixed') {\n const { width, height } = style;\n const a = node.getBoundingClientRect();\n node.style.position = 'absolute';\n node.style.width = width;\n node.style.height = height;\n add_transform(node, a);\n }\n}\nfunction add_transform(node, a) {\n const b = node.getBoundingClientRect();\n if (a.left !== b.left || a.top !== b.top) {\n const style = getComputedStyle(node);\n const transform = style.transform === 'none' ? '' : style.transform;\n node.style.transform = `${transform} translate(${a.left - b.left}px, ${a.top - b.top}px)`;\n }\n}\n\nlet current_component;\nfunction set_current_component(component) {\n current_component = component;\n}\nfunction get_current_component() {\n if (!current_component)\n throw new Error('Function called outside component initialization');\n return current_component;\n}\nfunction beforeUpdate(fn) {\n get_current_component().$$.before_update.push(fn);\n}\nfunction onMount(fn) {\n get_current_component().$$.on_mount.push(fn);\n}\nfunction afterUpdate(fn) {\n get_current_component().$$.after_update.push(fn);\n}\nfunction onDestroy(fn) {\n get_current_component().$$.on_destroy.push(fn);\n}\nfunction createEventDispatcher() {\n const component = get_current_component();\n return (type, detail) => {\n const callbacks = component.$$.callbacks[type];\n if (callbacks) {\n // TODO are there situations where events could be dispatched\n // in a server (non-DOM) environment?\n const event = custom_event(type, detail);\n callbacks.slice().forEach(fn => {\n fn.call(component, event);\n });\n }\n };\n}\nfunction setContext(key, context) {\n get_current_component().$$.context.set(key, context);\n}\nfunction getContext(key) {\n return get_current_component().$$.context.get(key);\n}\nfunction getAllContexts() {\n return get_current_component().$$.context;\n}\nfunction hasContext(key) {\n return get_current_component().$$.context.has(key);\n}\n// TODO figure out if we still want to support\n// shorthand events, or if we want to implement\n// a real bubbling mechanism\nfunction bubble(component, event) {\n const callbacks = component.$$.callbacks[event.type];\n if (callbacks) {\n // @ts-ignore\n callbacks.slice().forEach(fn => fn.call(this, event));\n }\n}\n\nconst dirty_components = [];\nconst intros = { enabled: false };\nconst binding_callbacks = [];\nconst render_callbacks = [];\nconst flush_callbacks = [];\nconst resolved_promise = Promise.resolve();\nlet update_scheduled = false;\nfunction schedule_update() {\n if (!update_scheduled) {\n update_scheduled = true;\n resolved_promise.then(flush);\n }\n}\nfunction tick() {\n schedule_update();\n return resolved_promise;\n}\nfunction add_render_callback(fn) {\n render_callbacks.push(fn);\n}\nfunction add_flush_callback(fn) {\n flush_callbacks.push(fn);\n}\nlet flushing = false;\nconst seen_callbacks = new Set();\nfunction flush() {\n if (flushing)\n return;\n flushing = true;\n do {\n // first, call beforeUpdate functions\n // and update components\n for (let i = 0; i < dirty_components.length; i += 1) {\n const component = dirty_components[i];\n set_current_component(component);\n update(component.$$);\n }\n set_current_component(null);\n dirty_components.length = 0;\n while (binding_callbacks.length)\n binding_callbacks.pop()();\n // then, once components are updated, call\n // afterUpdate functions. This may cause\n // subsequent updates...\n for (let i = 0; i < render_callbacks.length; i += 1) {\n const callback = render_callbacks[i];\n if (!seen_callbacks.has(callback)) {\n // ...so guard against infinite loops\n seen_callbacks.add(callback);\n callback();\n }\n }\n render_callbacks.length = 0;\n } while (dirty_components.length);\n while (flush_callbacks.length) {\n flush_callbacks.pop()();\n }\n update_scheduled = false;\n flushing = false;\n seen_callbacks.clear();\n}\nfunction update($$) {\n if ($$.fragment !== null) {\n $$.update();\n run_all($$.before_update);\n const dirty = $$.dirty;\n $$.dirty = [-1];\n $$.fragment && $$.fragment.p($$.ctx, dirty);\n $$.after_update.forEach(add_render_callback);\n }\n}\n\nlet promise;\nfunction wait() {\n if (!promise) {\n promise = Promise.resolve();\n promise.then(() => {\n promise = null;\n });\n }\n return promise;\n}\nfunction dispatch(node, direction, kind) {\n node.dispatchEvent(custom_event(`${direction ? 'intro' : 'outro'}${kind}`));\n}\nconst outroing = new Set();\nlet outros;\nfunction group_outros() {\n outros = {\n r: 0,\n c: [],\n p: outros // parent group\n };\n}\nfunction check_outros() {\n if (!outros.r) {\n run_all(outros.c);\n }\n outros = outros.p;\n}\nfunction transition_in(block, local) {\n if (block && block.i) {\n outroing.delete(block);\n block.i(local);\n }\n}\nfunction transition_out(block, local, detach, callback) {\n if (block && block.o) {\n if (outroing.has(block))\n return;\n outroing.add(block);\n outros.c.push(() => {\n outroing.delete(block);\n if (callback) {\n if (detach)\n block.d(1);\n callback();\n }\n });\n block.o(local);\n }\n}\nconst null_transition = { duration: 0 };\nfunction create_in_transition(node, fn, params) {\n let config = fn(node, params);\n let running = false;\n let animation_name;\n let task;\n let uid = 0;\n function cleanup() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 0, 1, duration, delay, easing, css, uid++);\n tick(0, 1);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n if (task)\n task.abort();\n running = true;\n add_render_callback(() => dispatch(node, true, 'start'));\n task = loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(1, 0);\n dispatch(node, true, 'end');\n cleanup();\n return running = false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(t, 1 - t);\n }\n }\n return running;\n });\n }\n let started = false;\n return {\n start() {\n if (started)\n return;\n started = true;\n delete_rule(node);\n if (is_function(config)) {\n config = config();\n wait().then(go);\n }\n else {\n go();\n }\n },\n invalidate() {\n started = false;\n },\n end() {\n if (running) {\n cleanup();\n running = false;\n }\n }\n };\n}\nfunction create_out_transition(node, fn, params) {\n let config = fn(node, params);\n let running = true;\n let animation_name;\n const group = outros;\n group.r += 1;\n function go() {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n if (css)\n animation_name = create_rule(node, 1, 0, duration, delay, easing, css);\n const start_time = now() + delay;\n const end_time = start_time + duration;\n add_render_callback(() => dispatch(node, false, 'start'));\n loop(now => {\n if (running) {\n if (now >= end_time) {\n tick(0, 1);\n dispatch(node, false, 'end');\n if (!--group.r) {\n // this will result in `end()` being called,\n // so we don't need to clean up here\n run_all(group.c);\n }\n return false;\n }\n if (now >= start_time) {\n const t = easing((now - start_time) / duration);\n tick(1 - t, t);\n }\n }\n return running;\n });\n }\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go();\n });\n }\n else {\n go();\n }\n return {\n end(reset) {\n if (reset && config.tick) {\n config.tick(1, 0);\n }\n if (running) {\n if (animation_name)\n delete_rule(node, animation_name);\n running = false;\n }\n }\n };\n}\nfunction create_bidirectional_transition(node, fn, params, intro) {\n let config = fn(node, params);\n let t = intro ? 0 : 1;\n let running_program = null;\n let pending_program = null;\n let animation_name = null;\n function clear_animation() {\n if (animation_name)\n delete_rule(node, animation_name);\n }\n function init(program, duration) {\n const d = (program.b - t);\n duration *= Math.abs(d);\n return {\n a: t,\n b: program.b,\n d,\n duration,\n start: program.start,\n end: program.start + duration,\n group: program.group\n };\n }\n function go(b) {\n const { delay = 0, duration = 300, easing = identity, tick = noop, css } = config || null_transition;\n const program = {\n start: now() + delay,\n b\n };\n if (!b) {\n // @ts-ignore todo: improve typings\n program.group = outros;\n outros.r += 1;\n }\n if (running_program || pending_program) {\n pending_program = program;\n }\n else {\n // if this is an intro, and there's a delay, we need to do\n // an initial tick and/or apply CSS animation immediately\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, b, duration, delay, easing, css);\n }\n if (b)\n tick(0, 1);\n running_program = init(program, duration);\n add_render_callback(() => dispatch(node, b, 'start'));\n loop(now => {\n if (pending_program && now > pending_program.start) {\n running_program = init(pending_program, duration);\n pending_program = null;\n dispatch(node, running_program.b, 'start');\n if (css) {\n clear_animation();\n animation_name = create_rule(node, t, running_program.b, running_program.duration, 0, easing, config.css);\n }\n }\n if (running_program) {\n if (now >= running_program.end) {\n tick(t = running_program.b, 1 - t);\n dispatch(node, running_program.b, 'end');\n if (!pending_program) {\n // we're done\n if (running_program.b) {\n // intro — we can tidy up immediately\n clear_animation();\n }\n else {\n // outro — needs to be coordinated\n if (!--running_program.group.r)\n run_all(running_program.group.c);\n }\n }\n running_program = null;\n }\n else if (now >= running_program.start) {\n const p = now - running_program.start;\n t = running_program.a + running_program.d * easing(p / running_program.duration);\n tick(t, 1 - t);\n }\n }\n return !!(running_program || pending_program);\n });\n }\n }\n return {\n run(b) {\n if (is_function(config)) {\n wait().then(() => {\n // @ts-ignore\n config = config();\n go(b);\n });\n }\n else {\n go(b);\n }\n },\n end() {\n clear_animation();\n running_program = pending_program = null;\n }\n };\n}\n\nfunction handle_promise(promise, info) {\n const token = info.token = {};\n function update(type, index, key, value) {\n if (info.token !== token)\n return;\n info.resolved = value;\n let child_ctx = info.ctx;\n if (key !== undefined) {\n child_ctx = child_ctx.slice();\n child_ctx[key] = value;\n }\n const block = type && (info.current = type)(child_ctx);\n let needs_flush = false;\n if (info.block) {\n if (info.blocks) {\n info.blocks.forEach((block, i) => {\n if (i !== index && block) {\n group_outros();\n transition_out(block, 1, 1, () => {\n if (info.blocks[i] === block) {\n info.blocks[i] = null;\n }\n });\n check_outros();\n }\n });\n }\n else {\n info.block.d(1);\n }\n block.c();\n transition_in(block, 1);\n block.m(info.mount(), info.anchor);\n needs_flush = true;\n }\n info.block = block;\n if (info.blocks)\n info.blocks[index] = block;\n if (needs_flush) {\n flush();\n }\n }\n if (is_promise(promise)) {\n const current_component = get_current_component();\n promise.then(value => {\n set_current_component(current_component);\n update(info.then, 1, info.value, value);\n set_current_component(null);\n }, error => {\n set_current_component(current_component);\n update(info.catch, 2, info.error, error);\n set_current_component(null);\n if (!info.hasCatch) {\n throw error;\n }\n });\n // if we previously had a then/catch block, destroy it\n if (info.current !== info.pending) {\n update(info.pending, 0);\n return true;\n }\n }\n else {\n if (info.current !== info.then) {\n update(info.then, 1, info.value, promise);\n return true;\n }\n info.resolved = promise;\n }\n}\nfunction update_await_block_branch(info, ctx, dirty) {\n const child_ctx = ctx.slice();\n const { resolved } = info;\n if (info.current === info.then) {\n child_ctx[info.value] = resolved;\n }\n if (info.current === info.catch) {\n child_ctx[info.error] = resolved;\n }\n info.block.p(child_ctx, dirty);\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\nfunction destroy_block(block, lookup) {\n block.d(1);\n lookup.delete(block.key);\n}\nfunction outro_and_destroy_block(block, lookup) {\n transition_out(block, 1, 1, () => {\n lookup.delete(block.key);\n });\n}\nfunction fix_and_destroy_block(block, lookup) {\n block.f();\n destroy_block(block, lookup);\n}\nfunction fix_and_outro_and_destroy_block(block, lookup) {\n block.f();\n outro_and_destroy_block(block, lookup);\n}\nfunction update_keyed_each(old_blocks, dirty, get_key, dynamic, ctx, list, lookup, node, destroy, create_each_block, next, get_context) {\n let o = old_blocks.length;\n let n = list.length;\n let i = o;\n const old_indexes = {};\n while (i--)\n old_indexes[old_blocks[i].key] = i;\n const new_blocks = [];\n const new_lookup = new Map();\n const deltas = new Map();\n i = n;\n while (i--) {\n const child_ctx = get_context(ctx, list, i);\n const key = get_key(child_ctx);\n let block = lookup.get(key);\n if (!block) {\n block = create_each_block(key, child_ctx);\n block.c();\n }\n else if (dynamic) {\n block.p(child_ctx, dirty);\n }\n new_lookup.set(key, new_blocks[i] = block);\n if (key in old_indexes)\n deltas.set(key, Math.abs(i - old_indexes[key]));\n }\n const will_move = new Set();\n const did_move = new Set();\n function insert(block) {\n transition_in(block, 1);\n block.m(node, next);\n lookup.set(block.key, block);\n next = block.first;\n n--;\n }\n while (o && n) {\n const new_block = new_blocks[n - 1];\n const old_block = old_blocks[o - 1];\n const new_key = new_block.key;\n const old_key = old_block.key;\n if (new_block === old_block) {\n // do nothing\n next = new_block.first;\n o--;\n n--;\n }\n else if (!new_lookup.has(old_key)) {\n // remove old block\n destroy(old_block, lookup);\n o--;\n }\n else if (!lookup.has(new_key) || will_move.has(new_key)) {\n insert(new_block);\n }\n else if (did_move.has(old_key)) {\n o--;\n }\n else if (deltas.get(new_key) > deltas.get(old_key)) {\n did_move.add(new_key);\n insert(new_block);\n }\n else {\n will_move.add(old_key);\n o--;\n }\n }\n while (o--) {\n const old_block = old_blocks[o];\n if (!new_lookup.has(old_block.key))\n destroy(old_block, lookup);\n }\n while (n)\n insert(new_blocks[n - 1]);\n return new_blocks;\n}\nfunction validate_each_keys(ctx, list, get_context, get_key) {\n const keys = new Set();\n for (let i = 0; i < list.length; i++) {\n const key = get_key(get_context(ctx, list, i));\n if (keys.has(key)) {\n throw new Error('Cannot have duplicate keys in a keyed each');\n }\n keys.add(key);\n }\n}\n\nfunction get_spread_update(levels, updates) {\n const update = {};\n const to_null_out = {};\n const accounted_for = { $$scope: 1 };\n let i = levels.length;\n while (i--) {\n const o = levels[i];\n const n = updates[i];\n if (n) {\n for (const key in o) {\n if (!(key in n))\n to_null_out[key] = 1;\n }\n for (const key in n) {\n if (!accounted_for[key]) {\n update[key] = n[key];\n accounted_for[key] = 1;\n }\n }\n levels[i] = n;\n }\n else {\n for (const key in o) {\n accounted_for[key] = 1;\n }\n }\n }\n for (const key in to_null_out) {\n if (!(key in update))\n update[key] = undefined;\n }\n return update;\n}\nfunction get_spread_object(spread_props) {\n return typeof spread_props === 'object' && spread_props !== null ? spread_props : {};\n}\n\n// source: https://html.spec.whatwg.org/multipage/indices.html\nconst boolean_attributes = new Set([\n 'allowfullscreen',\n 'allowpaymentrequest',\n 'async',\n 'autofocus',\n 'autoplay',\n 'checked',\n 'controls',\n 'default',\n 'defer',\n 'disabled',\n 'formnovalidate',\n 'hidden',\n 'ismap',\n 'loop',\n 'multiple',\n 'muted',\n 'nomodule',\n 'novalidate',\n 'open',\n 'playsinline',\n 'readonly',\n 'required',\n 'reversed',\n 'selected'\n]);\n\nconst invalid_attribute_name_character = /[\\s'\">/=\\u{FDD0}-\\u{FDEF}\\u{FFFE}\\u{FFFF}\\u{1FFFE}\\u{1FFFF}\\u{2FFFE}\\u{2FFFF}\\u{3FFFE}\\u{3FFFF}\\u{4FFFE}\\u{4FFFF}\\u{5FFFE}\\u{5FFFF}\\u{6FFFE}\\u{6FFFF}\\u{7FFFE}\\u{7FFFF}\\u{8FFFE}\\u{8FFFF}\\u{9FFFE}\\u{9FFFF}\\u{AFFFE}\\u{AFFFF}\\u{BFFFE}\\u{BFFFF}\\u{CFFFE}\\u{CFFFF}\\u{DFFFE}\\u{DFFFF}\\u{EFFFE}\\u{EFFFF}\\u{FFFFE}\\u{FFFFF}\\u{10FFFE}\\u{10FFFF}]/u;\n// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n// https://infra.spec.whatwg.org/#noncharacter\nfunction spread(args, classes_to_add) {\n const attributes = Object.assign({}, ...args);\n if (classes_to_add) {\n if (attributes.class == null) {\n attributes.class = classes_to_add;\n }\n else {\n attributes.class += ' ' + classes_to_add;\n }\n }\n let str = '';\n Object.keys(attributes).forEach(name => {\n if (invalid_attribute_name_character.test(name))\n return;\n const value = attributes[name];\n if (value === true)\n str += ' ' + name;\n else if (boolean_attributes.has(name.toLowerCase())) {\n if (value)\n str += ' ' + name;\n }\n else if (value != null) {\n str += ` ${name}=\"${value}\"`;\n }\n });\n return str;\n}\nconst escaped = {\n '\"': '"',\n \"'\": ''',\n '&': '&',\n '<': '<',\n '>': '>'\n};\nfunction escape(html) {\n return String(html).replace(/[\"'&<>]/g, match => escaped[match]);\n}\nfunction escape_attribute_value(value) {\n return typeof value === 'string' ? escape(value) : value;\n}\nfunction escape_object(obj) {\n const result = {};\n for (const key in obj) {\n result[key] = escape_attribute_value(obj[key]);\n }\n return result;\n}\nfunction each(items, fn) {\n let str = '';\n for (let i = 0; i < items.length; i += 1) {\n str += fn(items[i], i);\n }\n return str;\n}\nconst missing_component = {\n $$render: () => ''\n};\nfunction validate_component(component, name) {\n if (!component || !component.$$render) {\n if (name === 'svelte:component')\n name += ' this={...}';\n throw new Error(`<${name}> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules`);\n }\n return component;\n}\nfunction debug(file, line, column, values) {\n console.log(`{@debug} ${file ? file + ' ' : ''}(${line}:${column})`); // eslint-disable-line no-console\n console.log(values); // eslint-disable-line no-console\n return '';\n}\nlet on_destroy;\nfunction create_ssr_component(fn) {\n function $$render(result, props, bindings, slots, context) {\n const parent_component = current_component;\n const $$ = {\n on_destroy,\n context: new Map(context || (parent_component ? parent_component.$$.context : [])),\n // these will be immediately discarded\n on_mount: [],\n before_update: [],\n after_update: [],\n callbacks: blank_object()\n };\n set_current_component({ $$ });\n const html = fn(result, props, bindings, slots);\n set_current_component(parent_component);\n return html;\n }\n return {\n render: (props = {}, { $$slots = {}, context = new Map() } = {}) => {\n on_destroy = [];\n const result = { title: '', head: '', css: new Set() };\n const html = $$render(result, props, {}, $$slots, context);\n run_all(on_destroy);\n return {\n html,\n css: {\n code: Array.from(result.css).map(css => css.code).join('\\n'),\n map: null // TODO\n },\n head: result.title + result.head\n };\n },\n $$render\n };\n}\nfunction add_attribute(name, value, boolean) {\n if (value == null || (boolean && !value))\n return '';\n return ` ${name}${value === true ? '' : `=${typeof value === 'string' ? JSON.stringify(escape(value)) : `\"${value}\"`}`}`;\n}\nfunction add_classes(classes) {\n return classes ? ` class=\"${classes}\"` : '';\n}\n\nfunction bind(component, name, callback) {\n const index = component.$$.props[name];\n if (index !== undefined) {\n component.$$.bound[index] = callback;\n callback(component.$$.ctx[index]);\n }\n}\nfunction create_component(block) {\n block && block.c();\n}\nfunction claim_component(block, parent_nodes) {\n block && block.l(parent_nodes);\n}\nfunction mount_component(component, target, anchor, customElement) {\n const { fragment, on_mount, on_destroy, after_update } = component.$$;\n fragment && fragment.m(target, anchor);\n if (!customElement) {\n // onMount happens before the initial afterUpdate\n add_render_callback(() => {\n const new_on_destroy = on_mount.map(run).filter(is_function);\n if (on_destroy) {\n on_destroy.push(...new_on_destroy);\n }\n else {\n // Edge case - component was destroyed immediately,\n // most likely as a result of a binding initialising\n run_all(new_on_destroy);\n }\n component.$$.on_mount = [];\n });\n }\n after_update.forEach(add_render_callback);\n}\nfunction destroy_component(component, detaching) {\n const $$ = component.$$;\n if ($$.fragment !== null) {\n run_all($$.on_destroy);\n $$.fragment && $$.fragment.d(detaching);\n // TODO null out other refs, including component.$$ (but need to\n // preserve final state?)\n $$.on_destroy = $$.fragment = null;\n $$.ctx = [];\n }\n}\nfunction make_dirty(component, i) {\n if (component.$$.dirty[0] === -1) {\n dirty_components.push(component);\n schedule_update();\n component.$$.dirty.fill(0);\n }\n component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));\n}\nfunction init(component, options, instance, create_fragment, not_equal, props, append_styles, dirty = [-1]) {\n const parent_component = current_component;\n set_current_component(component);\n const $$ = component.$$ = {\n fragment: null,\n ctx: null,\n // state\n props,\n update: noop,\n not_equal,\n bound: blank_object(),\n // lifecycle\n on_mount: [],\n on_destroy: [],\n on_disconnect: [],\n before_update: [],\n after_update: [],\n context: new Map(options.context || (parent_component ? parent_component.$$.context : [])),\n // everything else\n callbacks: blank_object(),\n dirty,\n skip_bound: false,\n root: options.target || parent_component.$$.root\n };\n append_styles && append_styles($$.root);\n let ready = false;\n $$.ctx = instance\n ? instance(component, options.props || {}, (i, ret, ...rest) => {\n const value = rest.length ? rest[0] : ret;\n if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {\n if (!$$.skip_bound && $$.bound[i])\n $$.bound[i](value);\n if (ready)\n make_dirty(component, i);\n }\n return ret;\n })\n : [];\n $$.update();\n ready = true;\n run_all($$.before_update);\n // `false` as a special case of no DOM component\n $$.fragment = create_fragment ? create_fragment($$.ctx) : false;\n if (options.target) {\n if (options.hydrate) {\n start_hydrating();\n const nodes = children(options.target);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.l(nodes);\n nodes.forEach(detach);\n }\n else {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n $$.fragment && $$.fragment.c();\n }\n if (options.intro)\n transition_in(component.$$.fragment);\n mount_component(component, options.target, options.anchor, options.customElement);\n end_hydrating();\n flush();\n }\n set_current_component(parent_component);\n}\nlet SvelteElement;\nif (typeof HTMLElement === 'function') {\n SvelteElement = class extends HTMLElement {\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n }\n connectedCallback() {\n const { on_mount } = this.$$;\n this.$$.on_disconnect = on_mount.map(run).filter(is_function);\n // @ts-ignore todo: improve typings\n for (const key in this.$$.slotted) {\n // @ts-ignore todo: improve typings\n this.appendChild(this.$$.slotted[key]);\n }\n }\n attributeChangedCallback(attr, _oldValue, newValue) {\n this[attr] = newValue;\n }\n disconnectedCallback() {\n run_all(this.$$.on_disconnect);\n }\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n // TODO should this delegate to addEventListener?\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n };\n}\n/**\n * Base class for Svelte components. Used when dev=false.\n */\nclass SvelteComponent {\n $destroy() {\n destroy_component(this, 1);\n this.$destroy = noop;\n }\n $on(type, callback) {\n const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));\n callbacks.push(callback);\n return () => {\n const index = callbacks.indexOf(callback);\n if (index !== -1)\n callbacks.splice(index, 1);\n };\n }\n $set($$props) {\n if (this.$$set && !is_empty($$props)) {\n this.$$.skip_bound = true;\n this.$$set($$props);\n this.$$.skip_bound = false;\n }\n }\n}\n\nfunction dispatch_dev(type, detail) {\n document.dispatchEvent(custom_event(type, Object.assign({ version: '3.44.2' }, detail), true));\n}\nfunction append_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append(target, node);\n}\nfunction append_hydration_dev(target, node) {\n dispatch_dev('SvelteDOMInsert', { target, node });\n append_hydration(target, node);\n}\nfunction insert_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert(target, node, anchor);\n}\nfunction insert_hydration_dev(target, node, anchor) {\n dispatch_dev('SvelteDOMInsert', { target, node, anchor });\n insert_hydration(target, node, anchor);\n}\nfunction detach_dev(node) {\n dispatch_dev('SvelteDOMRemove', { node });\n detach(node);\n}\nfunction detach_between_dev(before, after) {\n while (before.nextSibling && before.nextSibling !== after) {\n detach_dev(before.nextSibling);\n }\n}\nfunction detach_before_dev(after) {\n while (after.previousSibling) {\n detach_dev(after.previousSibling);\n }\n}\nfunction detach_after_dev(before) {\n while (before.nextSibling) {\n detach_dev(before.nextSibling);\n }\n}\nfunction listen_dev(node, event, handler, options, has_prevent_default, has_stop_propagation) {\n const modifiers = options === true ? ['capture'] : options ? Array.from(Object.keys(options)) : [];\n if (has_prevent_default)\n modifiers.push('preventDefault');\n if (has_stop_propagation)\n modifiers.push('stopPropagation');\n dispatch_dev('SvelteDOMAddEventListener', { node, event, handler, modifiers });\n const dispose = listen(node, event, handler, options);\n return () => {\n dispatch_dev('SvelteDOMRemoveEventListener', { node, event, handler, modifiers });\n dispose();\n };\n}\nfunction attr_dev(node, attribute, value) {\n attr(node, attribute, value);\n if (value == null)\n dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });\n else\n dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });\n}\nfunction prop_dev(node, property, value) {\n node[property] = value;\n dispatch_dev('SvelteDOMSetProperty', { node, property, value });\n}\nfunction dataset_dev(node, property, value) {\n node.dataset[property] = value;\n dispatch_dev('SvelteDOMSetDataset', { node, property, value });\n}\nfunction set_data_dev(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n dispatch_dev('SvelteDOMSetData', { node: text, data });\n text.data = data;\n}\nfunction validate_each_argument(arg) {\n if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {\n let msg = '{#each} only iterates over array-like objects.';\n if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {\n msg += ' You can use a spread to convert this iterable into an array.';\n }\n throw new Error(msg);\n }\n}\nfunction validate_slots(name, slot, keys) {\n for (const slot_key of Object.keys(slot)) {\n if (!~keys.indexOf(slot_key)) {\n console.warn(`<${name}> received an unexpected slot \"${slot_key}\".`);\n }\n }\n}\n/**\n * Base class for Svelte components with some minor dev-enhancements. Used when dev=true.\n */\nclass SvelteComponentDev extends SvelteComponent {\n constructor(options) {\n if (!options || (!options.target && !options.$$inline)) {\n throw new Error(\"'target' is a required option\");\n }\n super();\n }\n $destroy() {\n super.$destroy();\n this.$destroy = () => {\n console.warn('Component was already destroyed'); // eslint-disable-line no-console\n };\n }\n $capture_state() { }\n $inject_state() { }\n}\n/**\n * Base class to create strongly typed Svelte components.\n * This only exists for typing purposes and should be used in `.d.ts` files.\n *\n * ### Example:\n *\n * You have component library on npm called `component-library`, from which\n * you export a component called `MyComponent`. For Svelte+TypeScript users,\n * you want to provide typings. Therefore you create a `index.d.ts`:\n * ```ts\n * import { SvelteComponentTyped } from \"svelte\";\n * export class MyComponent extends SvelteComponentTyped<{foo: string}> {}\n * ```\n * Typing this makes it possible for IDEs like VS Code with the Svelte extension\n * to provide intellisense and to use the component like this in a Svelte file\n * with TypeScript:\n * ```svelte\n * \n * \n * ```\n *\n * #### Why not make this part of `SvelteComponent(Dev)`?\n * Because\n * ```ts\n * class ASubclassOfSvelteComponent extends SvelteComponent<{foo: string}> {}\n * const component: typeof SvelteComponent = ASubclassOfSvelteComponent;\n * ```\n * will throw a type error, so we need to separate the more strictly typed class.\n */\nclass SvelteComponentTyped extends SvelteComponentDev {\n constructor(options) {\n super(options);\n }\n}\nfunction loop_guard(timeout) {\n const start = Date.now();\n return () => {\n if (Date.now() - start > timeout) {\n throw new Error('Infinite loop detected');\n }\n };\n}\n\nexport { HtmlTag, HtmlTagHydration, SvelteComponent, SvelteComponentDev, SvelteComponentTyped, SvelteElement, action_destroyer, add_attribute, add_classes, add_flush_callback, add_location, add_render_callback, add_resize_listener, add_transform, afterUpdate, append, append_dev, append_empty_stylesheet, append_hydration, append_hydration_dev, append_styles, assign, attr, attr_dev, attribute_to_object, beforeUpdate, bind, binding_callbacks, blank_object, bubble, check_outros, children, claim_component, claim_element, claim_html_tag, claim_space, claim_svg_element, claim_text, clear_loops, component_subscribe, compute_rest_props, compute_slots, createEventDispatcher, create_animation, create_bidirectional_transition, create_component, create_in_transition, create_out_transition, create_slot, create_ssr_component, current_component, custom_event, dataset_dev, debug, destroy_block, destroy_component, destroy_each, detach, detach_after_dev, detach_before_dev, detach_between_dev, detach_dev, dirty_components, dispatch_dev, each, element, element_is, empty, end_hydrating, escape, escape_attribute_value, escape_object, escaped, exclude_internal_props, fix_and_destroy_block, fix_and_outro_and_destroy_block, fix_position, flush, getAllContexts, getContext, get_all_dirty_from_scope, get_binding_group_value, get_current_component, get_custom_elements_slots, get_root_for_style, get_slot_changes, get_spread_object, get_spread_update, get_store_value, globals, group_outros, handle_promise, hasContext, has_prop, identity, init, insert, insert_dev, insert_hydration, insert_hydration_dev, intros, invalid_attribute_name_character, is_client, is_crossorigin, is_empty, is_function, is_promise, listen, listen_dev, loop, loop_guard, missing_component, mount_component, noop, not_equal, now, null_to_empty, object_without_properties, onDestroy, onMount, once, outro_and_destroy_block, prevent_default, prop_dev, query_selector_all, raf, run, run_all, safe_not_equal, schedule_update, select_multiple_value, select_option, select_options, select_value, self, setContext, set_attributes, set_current_component, set_custom_element_data, set_data, set_data_dev, set_input_type, set_input_value, set_now, set_raf, set_store_value, set_style, set_svg_attributes, space, spread, src_url_equal, start_hydrating, stop_propagation, subscribe, svg_element, text, tick, time_ranges_to_array, to_number, toggle_class, transition_in, transition_out, trusted, update_await_block_branch, update_keyed_each, update_slot, update_slot_base, validate_component, validate_each_argument, validate_each_keys, validate_slots, validate_store, xlink_attr };\n","\n\n\n\n\n","\n\n{#if !closed}\n \n \n \n X\n \n \n \n \n \n \n{/if}\n\n\n","\n\n 3 ? value.length : 3}\n on:input={text_input}\n/>\n\n\n","\n\n\n\n\n","\n\n
\n {#each text_pointer as text_line}\n {#each text_line as text, i}\n {#if text == \" \"} {:else}{text}{/if}\n {#if i < 3} {/if}\n {/each}\n
\n {/each}\n
\n","\n\n\n\n\n","\n\n\n\n\n","\n\n
\n \n {\n change_tab(\"WiFi\");\n }}\n >\n WiFi\n \n\n {\n change_tab(\"SYS\");\n }}\n >\n SYS\n \n\n {\n change_tab(\"PS\");\n }}\n >\n PS\n \n \n\n \n {#if current_tab == \"WiFi\"}\n \n
\n {#await api_get(server + \"/api/v1/wifi/get_credentials\")}\n
Mode:
\n
\n\n
STA
\n
(join another network)
\n\n
SSID:
\n
\n\n
Pass:
\n
\n\n
AP
\n
(own access point)
\n\n
SSID:
\n
\n\n
Pass:
\n
class=\"value\"
\n\n
Hostname:
\n
\n\n
USB mode:
\n
\n {:then json}\n
Mode:
\n
\n \n
\n\n
STA
\n
(join another network)
\n\n
SSID:
\n
\n \n
\n\n
Pass:
\n
\n \n
\n\n
AP
\n
(own access point)
\n\n
SSID:
\n
\n \n
\n\n
Pass:
\n
\n \n
\n\n
Hostname:
\n
\n \n
\n\n
USB mode:
\n
\n \n
\n {:catch error}\n {error.message}\n {/await}\n
\n
\n
\n
\n {/if}\n\n {#if current_tab == \"SYS\"}\n \n
\n {#await api_get(server + \"/api/v1/system/info\")}\n
IP:
\n
\n {:then json}\n
IP:
\n
{print_ip(json.ip)}
\n
Mac:
\n
{print_mac(json.mac)}
\n
IDF ver:
\n
{json.idf_version}
\n
Model:
\n
\n {json.model}.{json.revision}\n {json.cores}-core\n
\n
Min free:
\n
{json.heap.minimum_free_bytes}
\n
Free:
\n
{json.heap.total_free_bytes}
\n
Alloc:
\n
{json.heap.total_allocated_bytes}
\n
Max block:
\n
{json.heap.largest_free_block}
\n {:catch error}\n {error.message}\n {/await}\n
\n
\n {/if}\n\n {#if current_tab == \"PS\"}\n \n {#await api_get(server + \"/api/v1/system/tasks\")}\n Name\n \n {:then json}\n \n Name\n State\n Handle\n Stack base\n WMRK\n {#each json.list.sort(function (a, b) {\n return a.number - b.number;\n }) as task}\n {task.name}\n {task.state}\n 0x{task.handle.toString(16).toUpperCase()}\n 0x{task.stack_base.toString(16).toUpperCase()}\n {task.watermark}\n {/each}\n \n {:catch error}\n {error.message}\n {/await}\n \n {/if}\n
\n\n \n {#await api_get(server + \"/api/v1/wifi/list\", {})}\n
Nets:
\n {:then json}\n
Nets:
\n {#each json.net_list as net}\n
\n {\n popup_select_net.close();\n sta_ssid_input.set_value(net.ssid);\n }}\n />\n
\n {/each}\n {:catch error}\n {error.message}\n {/await}\n
\n\n \n {#if popup_message_text != \"\"}\n {popup_message_text}\n {:else}\n \n {/if}\n \n
\n\n\n","import App from './App.svelte';\n\nconst app = new App({\n\ttarget: document.body,\n});\n\nexport default app;"],"names":["noop","run","fn","blank_object","Object","create","run_all","fns","forEach","is_function","thing","safe_not_equal","a","b","get_slot_context","definition","ctx","$$scope","tar","src","k","assign","slice","append","target","node","appendChild","insert","anchor","insertBefore","detach","parentNode","removeChild","destroy_each","iterations","detaching","i","length","d","element","name","document","createElement","text","data","createTextNode","space","empty","listen","event","handler","options","addEventListener","removeEventListener","attr","attribute","value","removeAttribute","getAttribute","setAttribute","set_custom_element_data","prop","set_data","wholeText","select_option","select","option","__value","selected","selectedIndex","toggle_class","toggle","classList","current_component","set_current_component","component","get_current_component","Error","bubble","callbacks","$$","type","call","this","dirty_components","binding_callbacks","render_callbacks","flush_callbacks","resolved_promise","Promise","resolve","update_scheduled","add_render_callback","push","flushing","seen_callbacks","Set","flush","update","pop","callback","has","add","clear","fragment","before_update","dirty","p","after_update","outroing","outros","group_outros","r","c","check_outros","transition_in","block","local","delete","transition_out","o","handle_promise","promise","info","token","index","key","resolved","child_ctx","undefined","current","needs_flush","blocks","m","mount","then","error","catch","hasCatch","pending","update_await_block_branch","create_component","mount_component","customElement","on_mount","on_destroy","new_on_destroy","map","filter","destroy_component","make_dirty","fill","init","instance","create_fragment","not_equal","props","append_styles","parent_component","bound","on_disconnect","context","Map","skip_bound","root","ready","ret","rest","hydrate","nodes","Array","from","childNodes","children","l","intro","SvelteComponent","$destroy","$on","indexOf","splice","$set","$$props","obj","$$set","keys","left","right","timer","reset_brace","set_brace","timer_click","setInterval","clearInterval","slot_ctx","slot","slot_definition","slot_changes","get_slot_context_fn","slot_context","lets","merged","len","Math","max","closed","size","new_value","items","text_pointer","timer_tick","selected_option","querySelector","style","api_get","important","setProperty","message","wifi_mode","sta_ssid","show","sta_pass","ap_ssid","ap_pass","hostname","usb_mode","print_ip","ip","print_mac","mac","idf_version","model","revision","cores","heap","minimum_free_bytes","total_free_bytes","total_allocated_bytes","largest_free_block","list","sort","state","handle","toString","toUpperCase","stack_base","watermark","net_list","ssid","channel","rssi","auth","api_post","api","res","fetch","method","body","JSON","stringify","json","mac_array","str","padStart","ip_addr","byteArray","byte","join","number","popup_select_net","popup_message","popup_message_text","mode_select","usb_mode_select","ap_ssid_input","ap_pass_input","sta_ssid_input","sta_pass_input","hostname_input","current_tab","change_tab","tab","localStorage","setItem","getItem","get_value","close","set_value","net"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"bundle.js","sources":["../../node_modules/svelte/internal/index.mjs","../../src/lib/Api.svelte","../../src/lib/WebSocket.svelte","../../src/lib/terminal.js","../../src/lib/Button.svelte","../../src/lib/Popup.svelte","../../src/lib/Spinner.svelte","../../src/lib/SpinnerBig.svelte","../../src/lib/Grid.svelte","../../src/lib/Value.svelte","../../src/lib/Input.svelte","../../node_modules/stringview/StringView.mjs","../../src/lib/Select.svelte","../../src/lib/UartTerminal.svelte","../../src/lib/ButtonInline.svelte","../../src/tabs/TabWiFi.svelte","../../src/tabs/TabSys.svelte","../../src/tabs/TabPS.svelte","../../src/lib/Reload.svelte","../../src/lib/Indicator.svelte","../../src/App.svelte","../../src/main.js"],"sourcesContent":["function noop() { }\nconst identity = x => x;\nfunction assign(tar, src) {\n // @ts-ignore\n for (const k in src)\n tar[k] = src[k];\n return tar;\n}\n// Adapted from https://github.com/then/is-promise/blob/master/index.js\n// Distributed under MIT License https://github.com/then/is-promise/blob/master/LICENSE\nfunction is_promise(value) {\n return !!value && (typeof value === 'object' || typeof value === 'function') && typeof value.then === 'function';\n}\nfunction add_location(element, file, line, column, char) {\n element.__svelte_meta = {\n loc: { file, line, column, char }\n };\n}\nfunction run(fn) {\n return fn();\n}\nfunction blank_object() {\n return Object.create(null);\n}\nfunction run_all(fns) {\n fns.forEach(run);\n}\nfunction is_function(thing) {\n return typeof thing === 'function';\n}\nfunction safe_not_equal(a, b) {\n return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');\n}\nlet src_url_equal_anchor;\nfunction src_url_equal(element_src, url) {\n if (!src_url_equal_anchor) {\n src_url_equal_anchor = document.createElement('a');\n }\n src_url_equal_anchor.href = url;\n return element_src === src_url_equal_anchor.href;\n}\nfunction not_equal(a, b) {\n return a != a ? b == b : a !== b;\n}\nfunction is_empty(obj) {\n return Object.keys(obj).length === 0;\n}\nfunction validate_store(store, name) {\n if (store != null && typeof store.subscribe !== 'function') {\n throw new Error(`'${name}' is not a store with a 'subscribe' method`);\n }\n}\nfunction subscribe(store, ...callbacks) {\n if (store == null) {\n return noop;\n }\n const unsub = store.subscribe(...callbacks);\n return unsub.unsubscribe ? () => unsub.unsubscribe() : unsub;\n}\nfunction get_store_value(store) {\n let value;\n subscribe(store, _ => value = _)();\n return value;\n}\nfunction component_subscribe(component, store, callback) {\n component.$$.on_destroy.push(subscribe(store, callback));\n}\nfunction create_slot(definition, ctx, $$scope, fn) {\n if (definition) {\n const slot_ctx = get_slot_context(definition, ctx, $$scope, fn);\n return definition[0](slot_ctx);\n }\n}\nfunction get_slot_context(definition, ctx, $$scope, fn) {\n return definition[1] && fn\n ? assign($$scope.ctx.slice(), definition[1](fn(ctx)))\n : $$scope.ctx;\n}\nfunction get_slot_changes(definition, $$scope, dirty, fn) {\n if (definition[2] && fn) {\n const lets = definition[2](fn(dirty));\n if ($$scope.dirty === undefined) {\n return lets;\n }\n if (typeof lets === 'object') {\n const merged = [];\n const len = Math.max($$scope.dirty.length, lets.length);\n for (let i = 0; i < len; i += 1) {\n merged[i] = $$scope.dirty[i] | lets[i];\n }\n return merged;\n }\n return $$scope.dirty | lets;\n }\n return $$scope.dirty;\n}\nfunction update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn) {\n if (slot_changes) {\n const slot_context = get_slot_context(slot_definition, ctx, $$scope, get_slot_context_fn);\n slot.p(slot_context, slot_changes);\n }\n}\nfunction update_slot(slot, slot_definition, ctx, $$scope, dirty, get_slot_changes_fn, get_slot_context_fn) {\n const slot_changes = get_slot_changes(slot_definition, $$scope, dirty, get_slot_changes_fn);\n update_slot_base(slot, slot_definition, ctx, $$scope, slot_changes, get_slot_context_fn);\n}\nfunction get_all_dirty_from_scope($$scope) {\n if ($$scope.ctx.length > 32) {\n const dirty = [];\n const length = $$scope.ctx.length / 32;\n for (let i = 0; i < length; i++) {\n dirty[i] = -1;\n }\n return dirty;\n }\n return -1;\n}\nfunction exclude_internal_props(props) {\n const result = {};\n for (const k in props)\n if (k[0] !== '$')\n result[k] = props[k];\n return result;\n}\nfunction compute_rest_props(props, keys) {\n const rest = {};\n keys = new Set(keys);\n for (const k in props)\n if (!keys.has(k) && k[0] !== '$')\n rest[k] = props[k];\n return rest;\n}\nfunction compute_slots(slots) {\n const result = {};\n for (const key in slots) {\n result[key] = true;\n }\n return result;\n}\nfunction once(fn) {\n let ran = false;\n return function (...args) {\n if (ran)\n return;\n ran = true;\n fn.call(this, ...args);\n };\n}\nfunction null_to_empty(value) {\n return value == null ? '' : value;\n}\nfunction set_store_value(store, ret, value) {\n store.set(value);\n return ret;\n}\nconst has_prop = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);\nfunction action_destroyer(action_result) {\n return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;\n}\nfunction split_css_unit(value) {\n const split = typeof value === 'string' && value.match(/^\\s*(-?[\\d.]+)([^\\s]*)\\s*$/);\n return split ? [parseFloat(split[1]), split[2] || 'px'] : [value, 'px'];\n}\nconst contenteditable_truthy_values = ['', true, 1, 'true', 'contenteditable'];\n\nconst is_client = typeof window !== 'undefined';\nlet now = is_client\n ? () => window.performance.now()\n : () => Date.now();\nlet raf = is_client ? cb => requestAnimationFrame(cb) : noop;\n// used internally for testing\nfunction set_now(fn) {\n now = fn;\n}\nfunction set_raf(fn) {\n raf = fn;\n}\n\nconst tasks = new Set();\nfunction run_tasks(now) {\n tasks.forEach(task => {\n if (!task.c(now)) {\n tasks.delete(task);\n task.f();\n }\n });\n if (tasks.size !== 0)\n raf(run_tasks);\n}\n/**\n * For testing purposes only!\n */\nfunction clear_loops() {\n tasks.clear();\n}\n/**\n * Creates a new task that runs on each raf frame\n * until it returns a falsy value or is aborted\n */\nfunction loop(callback) {\n let task;\n if (tasks.size === 0)\n raf(run_tasks);\n return {\n promise: new Promise(fulfill => {\n tasks.add(task = { c: callback, f: fulfill });\n }),\n abort() {\n tasks.delete(task);\n }\n };\n}\n\nconst globals = (typeof window !== 'undefined'\n ? window\n : typeof globalThis !== 'undefined'\n ? globalThis\n : global);\n\n/**\n * Resize observer singleton.\n * One listener per element only!\n * https://groups.google.com/a/chromium.org/g/blink-dev/c/z6ienONUb5A/m/F5-VcUZtBAAJ\n */\nclass ResizeObserverSingleton {\n constructor(options) {\n this.options = options;\n this._listeners = 'WeakMap' in globals ? new WeakMap() : undefined;\n }\n observe(element, listener) {\n this._listeners.set(element, listener);\n this._getObserver().observe(element, this.options);\n return () => {\n this._listeners.delete(element);\n this._observer.unobserve(element); // this line can probably be removed\n };\n }\n _getObserver() {\n var _a;\n return (_a = this._observer) !== null && _a !== void 0 ? _a : (this._observer = new ResizeObserver((entries) => {\n var _a;\n for (const entry of entries) {\n ResizeObserverSingleton.entries.set(entry.target, entry);\n (_a = this._listeners.get(entry.target)) === null || _a === void 0 ? void 0 : _a(entry);\n }\n }));\n }\n}\n// Needs to be written like this to pass the tree-shake-test\nResizeObserverSingleton.entries = 'WeakMap' in globals ? new WeakMap() : undefined;\n\n// Track which nodes are claimed during hydration. Unclaimed nodes can then be removed from the DOM\n// at the end of hydration without touching the remaining nodes.\nlet is_hydrating = false;\nfunction start_hydrating() {\n is_hydrating = true;\n}\nfunction end_hydrating() {\n is_hydrating = false;\n}\nfunction upper_bound(low, high, key, value) {\n // Return first index of value larger than input value in the range [low, high)\n while (low < high) {\n const mid = low + ((high - low) >> 1);\n if (key(mid) <= value) {\n low = mid + 1;\n }\n else {\n high = mid;\n }\n }\n return low;\n}\nfunction init_hydrate(target) {\n if (target.hydrate_init)\n return;\n target.hydrate_init = true;\n // We know that all children have claim_order values since the unclaimed have been detached if target is not \n let children = target.childNodes;\n // If target is , there may be children without claim_order\n if (target.nodeName === 'HEAD') {\n const myChildren = [];\n for (let i = 0; i < children.length; i++) {\n const node = children[i];\n if (node.claim_order !== undefined) {\n myChildren.push(node);\n }\n }\n children = myChildren;\n }\n /*\n * Reorder claimed children optimally.\n * We can reorder claimed children optimally by finding the longest subsequence of\n * nodes that are already claimed in order and only moving the rest. The longest\n * subsequence of nodes that are claimed in order can be found by\n * computing the longest increasing subsequence of .claim_order values.\n *\n * This algorithm is optimal in generating the least amount of reorder operations\n * possible.\n *\n * Proof:\n * We know that, given a set of reordering operations, the nodes that do not move\n * always form an increasing subsequence, since they do not move among each other\n * meaning that they must be already ordered among each other. Thus, the maximal\n * set of nodes that do not move form a longest increasing subsequence.\n */\n // Compute longest increasing subsequence\n // m: subsequence length j => index k of smallest value that ends an increasing subsequence of length j\n const m = new Int32Array(children.length + 1);\n // Predecessor indices + 1\n const p = new Int32Array(children.length);\n m[0] = -1;\n let longest = 0;\n for (let i = 0; i < children.length; i++) {\n const current = children[i].claim_order;\n // Find the largest subsequence length such that it ends in a value less than our current value\n // upper_bound returns first greater value, so we subtract one\n // with fast path for when we are on the current longest subsequence\n const seqLen = ((longest > 0 && children[m[longest]].claim_order <= current) ? longest + 1 : upper_bound(1, longest, idx => children[m[idx]].claim_order, current)) - 1;\n p[i] = m[seqLen] + 1;\n const newLen = seqLen + 1;\n // We can guarantee that current is the smallest value. Otherwise, we would have generated a longer sequence.\n m[newLen] = i;\n longest = Math.max(newLen, longest);\n }\n // The longest increasing subsequence of nodes (initially reversed)\n const lis = [];\n // The rest of the nodes, nodes that will be moved\n const toMove = [];\n let last = children.length - 1;\n for (let cur = m[longest] + 1; cur != 0; cur = p[cur - 1]) {\n lis.push(children[cur - 1]);\n for (; last >= cur; last--) {\n toMove.push(children[last]);\n }\n last--;\n }\n for (; last >= 0; last--) {\n toMove.push(children[last]);\n }\n lis.reverse();\n // We sort the nodes being moved to guarantee that their insertion order matches the claim order\n toMove.sort((a, b) => a.claim_order - b.claim_order);\n // Finally, we move the nodes\n for (let i = 0, j = 0; i < toMove.length; i++) {\n while (j < lis.length && toMove[i].claim_order >= lis[j].claim_order) {\n j++;\n }\n const anchor = j < lis.length ? lis[j] : null;\n target.insertBefore(toMove[i], anchor);\n }\n}\nfunction append(target, node) {\n target.appendChild(node);\n}\nfunction append_styles(target, style_sheet_id, styles) {\n const append_styles_to = get_root_for_style(target);\n if (!append_styles_to.getElementById(style_sheet_id)) {\n const style = element('style');\n style.id = style_sheet_id;\n style.textContent = styles;\n append_stylesheet(append_styles_to, style);\n }\n}\nfunction get_root_for_style(node) {\n if (!node)\n return document;\n const root = node.getRootNode ? node.getRootNode() : node.ownerDocument;\n if (root && root.host) {\n return root;\n }\n return node.ownerDocument;\n}\nfunction append_empty_stylesheet(node) {\n const style_element = element('style');\n append_stylesheet(get_root_for_style(node), style_element);\n return style_element.sheet;\n}\nfunction append_stylesheet(node, style) {\n append(node.head || node, style);\n return style.sheet;\n}\nfunction append_hydration(target, node) {\n if (is_hydrating) {\n init_hydrate(target);\n if ((target.actual_end_child === undefined) || ((target.actual_end_child !== null) && (target.actual_end_child.parentNode !== target))) {\n target.actual_end_child = target.firstChild;\n }\n // Skip nodes of undefined ordering\n while ((target.actual_end_child !== null) && (target.actual_end_child.claim_order === undefined)) {\n target.actual_end_child = target.actual_end_child.nextSibling;\n }\n if (node !== target.actual_end_child) {\n // We only insert if the ordering of this node should be modified or the parent node is not target\n if (node.claim_order !== undefined || node.parentNode !== target) {\n target.insertBefore(node, target.actual_end_child);\n }\n }\n else {\n target.actual_end_child = node.nextSibling;\n }\n }\n else if (node.parentNode !== target || node.nextSibling !== null) {\n target.appendChild(node);\n }\n}\nfunction insert(target, node, anchor) {\n target.insertBefore(node, anchor || null);\n}\nfunction insert_hydration(target, node, anchor) {\n if (is_hydrating && !anchor) {\n append_hydration(target, node);\n }\n else if (node.parentNode !== target || node.nextSibling != anchor) {\n target.insertBefore(node, anchor || null);\n }\n}\nfunction detach(node) {\n if (node.parentNode) {\n node.parentNode.removeChild(node);\n }\n}\nfunction destroy_each(iterations, detaching) {\n for (let i = 0; i < iterations.length; i += 1) {\n if (iterations[i])\n iterations[i].d(detaching);\n }\n}\nfunction element(name) {\n return document.createElement(name);\n}\nfunction element_is(name, is) {\n return document.createElement(name, { is });\n}\nfunction object_without_properties(obj, exclude) {\n const target = {};\n for (const k in obj) {\n if (has_prop(obj, k)\n // @ts-ignore\n && exclude.indexOf(k) === -1) {\n // @ts-ignore\n target[k] = obj[k];\n }\n }\n return target;\n}\nfunction svg_element(name) {\n return document.createElementNS('http://www.w3.org/2000/svg', name);\n}\nfunction text(data) {\n return document.createTextNode(data);\n}\nfunction space() {\n return text(' ');\n}\nfunction empty() {\n return text('');\n}\nfunction comment(content) {\n return document.createComment(content);\n}\nfunction listen(node, event, handler, options) {\n node.addEventListener(event, handler, options);\n return () => node.removeEventListener(event, handler, options);\n}\nfunction prevent_default(fn) {\n return function (event) {\n event.preventDefault();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_propagation(fn) {\n return function (event) {\n event.stopPropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction stop_immediate_propagation(fn) {\n return function (event) {\n event.stopImmediatePropagation();\n // @ts-ignore\n return fn.call(this, event);\n };\n}\nfunction self(fn) {\n return function (event) {\n // @ts-ignore\n if (event.target === this)\n fn.call(this, event);\n };\n}\nfunction trusted(fn) {\n return function (event) {\n // @ts-ignore\n if (event.isTrusted)\n fn.call(this, event);\n };\n}\nfunction attr(node, attribute, value) {\n if (value == null)\n node.removeAttribute(attribute);\n else if (node.getAttribute(attribute) !== value)\n node.setAttribute(attribute, value);\n}\n/**\n * List of attributes that should always be set through the attr method,\n * because updating them through the property setter doesn't work reliably.\n * In the example of `width`/`height`, the problem is that the setter only\n * accepts numeric values, but the attribute can also be set to a string like `50%`.\n * If this list becomes too big, rethink this approach.\n */\nconst always_set_through_set_attribute = ['width', 'height'];\nfunction set_attributes(node, attributes) {\n // @ts-ignore\n const descriptors = Object.getOwnPropertyDescriptors(node.__proto__);\n for (const key in attributes) {\n if (attributes[key] == null) {\n node.removeAttribute(key);\n }\n else if (key === 'style') {\n node.style.cssText = attributes[key];\n }\n else if (key === '__value') {\n node.value = node[key] = attributes[key];\n }\n else if (descriptors[key] && descriptors[key].set && always_set_through_set_attribute.indexOf(key) === -1) {\n node[key] = attributes[key];\n }\n else {\n attr(node, key, attributes[key]);\n }\n }\n}\nfunction set_svg_attributes(node, attributes) {\n for (const key in attributes) {\n attr(node, key, attributes[key]);\n }\n}\nfunction set_custom_element_data_map(node, data_map) {\n Object.keys(data_map).forEach((key) => {\n set_custom_element_data(node, key, data_map[key]);\n });\n}\nfunction set_custom_element_data(node, prop, value) {\n if (prop in node) {\n node[prop] = typeof node[prop] === 'boolean' && value === '' ? true : value;\n }\n else {\n attr(node, prop, value);\n }\n}\nfunction set_dynamic_element_data(tag) {\n return (/-/.test(tag)) ? set_custom_element_data_map : set_attributes;\n}\nfunction xlink_attr(node, attribute, value) {\n node.setAttributeNS('http://www.w3.org/1999/xlink', attribute, value);\n}\nfunction get_binding_group_value(group, __value, checked) {\n const value = new Set();\n for (let i = 0; i < group.length; i += 1) {\n if (group[i].checked)\n value.add(group[i].__value);\n }\n if (!checked) {\n value.delete(__value);\n }\n return Array.from(value);\n}\nfunction init_binding_group(group) {\n let _inputs;\n return {\n /* push */ p(...inputs) {\n _inputs = inputs;\n _inputs.forEach(input => group.push(input));\n },\n /* remove */ r() {\n _inputs.forEach(input => group.splice(group.indexOf(input), 1));\n }\n };\n}\nfunction init_binding_group_dynamic(group, indexes) {\n let _group = get_binding_group(group);\n let _inputs;\n function get_binding_group(group) {\n for (let i = 0; i < indexes.length; i++) {\n group = group[indexes[i]] = group[indexes[i]] || [];\n }\n return group;\n }\n function push() {\n _inputs.forEach(input => _group.push(input));\n }\n function remove() {\n _inputs.forEach(input => _group.splice(_group.indexOf(input), 1));\n }\n return {\n /* update */ u(new_indexes) {\n indexes = new_indexes;\n const new_group = get_binding_group(group);\n if (new_group !== _group) {\n remove();\n _group = new_group;\n push();\n }\n },\n /* push */ p(...inputs) {\n _inputs = inputs;\n push();\n },\n /* remove */ r: remove\n };\n}\nfunction to_number(value) {\n return value === '' ? null : +value;\n}\nfunction time_ranges_to_array(ranges) {\n const array = [];\n for (let i = 0; i < ranges.length; i += 1) {\n array.push({ start: ranges.start(i), end: ranges.end(i) });\n }\n return array;\n}\nfunction children(element) {\n return Array.from(element.childNodes);\n}\nfunction init_claim_info(nodes) {\n if (nodes.claim_info === undefined) {\n nodes.claim_info = { last_index: 0, total_claimed: 0 };\n }\n}\nfunction claim_node(nodes, predicate, processNode, createNode, dontUpdateLastIndex = false) {\n // Try to find nodes in an order such that we lengthen the longest increasing subsequence\n init_claim_info(nodes);\n const resultNode = (() => {\n // We first try to find an element after the previous one\n for (let i = nodes.claim_info.last_index; i < nodes.length; i++) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n return node;\n }\n }\n // Otherwise, we try to find one before\n // We iterate in reverse so that we don't go too far back\n for (let i = nodes.claim_info.last_index - 1; i >= 0; i--) {\n const node = nodes[i];\n if (predicate(node)) {\n const replacement = processNode(node);\n if (replacement === undefined) {\n nodes.splice(i, 1);\n }\n else {\n nodes[i] = replacement;\n }\n if (!dontUpdateLastIndex) {\n nodes.claim_info.last_index = i;\n }\n else if (replacement === undefined) {\n // Since we spliced before the last_index, we decrease it\n nodes.claim_info.last_index--;\n }\n return node;\n }\n }\n // If we can't find any matching node, we create a new one\n return createNode();\n })();\n resultNode.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n return resultNode;\n}\nfunction claim_element_base(nodes, name, attributes, create_element) {\n return claim_node(nodes, (node) => node.nodeName === name, (node) => {\n const remove = [];\n for (let j = 0; j < node.attributes.length; j++) {\n const attribute = node.attributes[j];\n if (!attributes[attribute.name]) {\n remove.push(attribute.name);\n }\n }\n remove.forEach(v => node.removeAttribute(v));\n return undefined;\n }, () => create_element(name));\n}\nfunction claim_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, element);\n}\nfunction claim_svg_element(nodes, name, attributes) {\n return claim_element_base(nodes, name, attributes, svg_element);\n}\nfunction claim_text(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 3, (node) => {\n const dataStr = '' + data;\n if (node.data.startsWith(dataStr)) {\n if (node.data.length !== dataStr.length) {\n return node.splitText(dataStr.length);\n }\n }\n else {\n node.data = dataStr;\n }\n }, () => text(data), true // Text nodes should not update last index since it is likely not worth it to eliminate an increasing subsequence of actual elements\n );\n}\nfunction claim_space(nodes) {\n return claim_text(nodes, ' ');\n}\nfunction claim_comment(nodes, data) {\n return claim_node(nodes, (node) => node.nodeType === 8, (node) => {\n node.data = '' + data;\n return undefined;\n }, () => comment(data), true);\n}\nfunction find_comment(nodes, text, start) {\n for (let i = start; i < nodes.length; i += 1) {\n const node = nodes[i];\n if (node.nodeType === 8 /* comment node */ && node.textContent.trim() === text) {\n return i;\n }\n }\n return nodes.length;\n}\nfunction claim_html_tag(nodes, is_svg) {\n // find html opening tag\n const start_index = find_comment(nodes, 'HTML_TAG_START', 0);\n const end_index = find_comment(nodes, 'HTML_TAG_END', start_index);\n if (start_index === end_index) {\n return new HtmlTagHydration(undefined, is_svg);\n }\n init_claim_info(nodes);\n const html_tag_nodes = nodes.splice(start_index, end_index - start_index + 1);\n detach(html_tag_nodes[0]);\n detach(html_tag_nodes[html_tag_nodes.length - 1]);\n const claimed_nodes = html_tag_nodes.slice(1, html_tag_nodes.length - 1);\n for (const n of claimed_nodes) {\n n.claim_order = nodes.claim_info.total_claimed;\n nodes.claim_info.total_claimed += 1;\n }\n return new HtmlTagHydration(claimed_nodes, is_svg);\n}\nfunction set_data(text, data) {\n data = '' + data;\n if (text.data === data)\n return;\n text.data = data;\n}\nfunction set_data_contenteditable(text, data) {\n data = '' + data;\n if (text.wholeText === data)\n return;\n text.data = data;\n}\nfunction set_data_maybe_contenteditable(text, data, attr_value) {\n if (~contenteditable_truthy_values.indexOf(attr_value)) {\n set_data_contenteditable(text, data);\n }\n else {\n set_data(text, data);\n }\n}\nfunction set_input_value(input, value) {\n input.value = value == null ? '' : value;\n}\nfunction set_input_type(input, type) {\n try {\n input.type = type;\n }\n catch (e) {\n // do nothing\n }\n}\nfunction set_style(node, key, value, important) {\n if (value == null) {\n node.style.removeProperty(key);\n }\n else {\n node.style.setProperty(key, value, important ? 'important' : '');\n }\n}\nfunction select_option(select, value, mounting) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n if (option.__value === value) {\n option.selected = true;\n return;\n }\n }\n if (!mounting || value !== undefined) {\n select.selectedIndex = -1; // no option should be selected\n }\n}\nfunction select_options(select, value) {\n for (let i = 0; i < select.options.length; i += 1) {\n const option = select.options[i];\n option.selected = ~value.indexOf(option.__value);\n }\n}\nfunction select_value(select) {\n const selected_option = select.querySelector(':checked');\n return selected_option && selected_option.__value;\n}\nfunction select_multiple_value(select) {\n return [].map.call(select.querySelectorAll(':checked'), option => option.__value);\n}\n// unfortunately this can't be a constant as that wouldn't be tree-shakeable\n// so we cache the result instead\nlet crossorigin;\nfunction is_crossorigin() {\n if (crossorigin === undefined) {\n crossorigin = false;\n try {\n if (typeof window !== 'undefined' && window.parent) {\n void window.parent.document;\n }\n }\n catch (error) {\n crossorigin = true;\n }\n }\n return crossorigin;\n}\nfunction add_iframe_resize_listener(node, fn) {\n const computed_style = getComputedStyle(node);\n if (computed_style.position === 'static') {\n node.style.position = 'relative';\n }\n const iframe = element('iframe');\n iframe.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; ' +\n 'overflow: hidden; border: 0; opacity: 0; pointer-events: none; z-index: -1;');\n iframe.setAttribute('aria-hidden', 'true');\n iframe.tabIndex = -1;\n const crossorigin = is_crossorigin();\n let unsubscribe;\n if (crossorigin) {\n iframe.src = \"data:text/html,\";\n unsubscribe = listen(window, 'message', (event) => {\n if (event.source === iframe.contentWindow)\n fn();\n });\n }\n else {\n iframe.src = 'about:blank';\n iframe.onload = () => {\n unsubscribe = listen(iframe.contentWindow, 'resize', fn);\n // make sure an initial resize event is fired _after_ the iframe is loaded (which is asynchronous)\n // see https://github.com/sveltejs/svelte/issues/4233\n fn();\n };\n }\n append(node, iframe);\n return () => {\n if (crossorigin) {\n unsubscribe();\n }\n else if (unsubscribe && iframe.contentWindow) {\n unsubscribe();\n }\n detach(iframe);\n };\n}\nconst resize_observer_content_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'content-box' });\nconst resize_observer_border_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'border-box' });\nconst resize_observer_device_pixel_content_box = /* @__PURE__ */ new ResizeObserverSingleton({ box: 'device-pixel-content-box' });\nfunction toggle_class(element, name, toggle) {\n element.classList[toggle ? 'add' : 'remove'](name);\n}\nfunction custom_event(type, detail, { bubbles = false, cancelable = false } = {}) {\n const e = document.createEvent('CustomEvent');\n e.initCustomEvent(type, bubbles, cancelable, detail);\n return e;\n}\nfunction query_selector_all(selector, parent = document.body) {\n return Array.from(parent.querySelectorAll(selector));\n}\nfunction head_selector(nodeId, head) {\n const result = [];\n let started = 0;\n for (const node of head.childNodes) {\n if (node.nodeType === 8 /* comment node */) {\n const comment = node.textContent.trim();\n if (comment === `HEAD_${nodeId}_END`) {\n started -= 1;\n result.push(node);\n }\n else if (comment === `HEAD_${nodeId}_START`) {\n started += 1;\n result.push(node);\n }\n }\n else if (started > 0) {\n result.push(node);\n }\n }\n return result;\n}\nclass HtmlTag {\n constructor(is_svg = false) {\n this.is_svg = false;\n this.is_svg = is_svg;\n this.e = this.n = null;\n }\n c(html) {\n this.h(html);\n }\n m(html, target, anchor = null) {\n if (!this.e) {\n if (this.is_svg)\n this.e = svg_element(target.nodeName);\n /** #7364 target for