diff --git a/scripts/generate-theme-css.mjs b/scripts/generate-theme-css.mjs index f7a6f34..280a5d2 100644 --- a/scripts/generate-theme-css.mjs +++ b/scripts/generate-theme-css.mjs @@ -693,13 +693,13 @@ const styleAccents = () => { "rgb(211, 79, 67)", "rgb(205, 73, 69)", ], + secondaryHover = cssVariable({ + name: "accent-secondary_hover", + value: "rgba(235, 87, 87, 0.1)", + }), secondaryContrast = cssVariable({ name: "accent-secondary_contrast", value: "white", - }), - secondaryTransparent = cssVariable({ - name: "accent-secondary_transparent", - value: "rgba(235, 87, 87, 0.1)", }); overrideStyle({ property: "color", @@ -746,7 +746,7 @@ const styleAccents = () => { }); overrideStyle({ property: "background", - variable: secondaryTransparent, + variable: secondaryHover, specificity: ["value"], }); diff --git a/scripts/vendor-dependencies.mjs b/scripts/vendor-dependencies.mjs index f5bae2c..237d672 100644 --- a/scripts/vendor-dependencies.mjs +++ b/scripts/vendor-dependencies.mjs @@ -12,7 +12,7 @@ import { fileURLToPath } from "node:url"; const dependencies = { "htm.min.js": "https://unpkg.com/htm@3.1.1/mini/index.js", "twind.min.js": "https://unpkg.com/@twind/cdn@1.0.7/cdn.global.js", - "lucide.min.js": "https://unpkg.com/lucide@0.104.0/dist/umd/lucide.min.js", + "lucide.min.js": "https://unpkg.com/lucide@0.105.0/dist/umd/lucide.min.js", "coloris.min.js": "https://cdn.jsdelivr.net/gh/mdbassit/Coloris@latest/dist/coloris.min.js", "coloris.min.css": diff --git a/src/api/browser.js b/src/api/browser.js index e856d10..c0a1c34 100644 --- a/src/api/browser.js +++ b/src/api/browser.js @@ -39,38 +39,35 @@ const sendMessage = (channel, message) => { const initDatabase = (namespace, fallbacks = {}) => { if (Array.isArray(namespace)) namespace = namespace.join("__"); namespace = namespace ? namespace + "__" : ""; + const namespaceify = (key) => + key.startsWith(namespace) ? key : namespace + key; return { get: async (key) => { const fallback = fallbacks[key]; - key = key.startsWith(namespace) ? key : namespace + key; - return new Promise((res, _rej) => { - chrome.storage.local.get([key], ({ [key]: value }) => { - return res(value ?? fallback); - }); - }); + key = namespaceify(key); + return (await chrome.storage.local.get([key]))[key] ?? fallback; }, - set: async (key, value) => { - key = key.startsWith(namespace) ? key : namespace + key; - return new Promise((res, _rej) => { - chrome.storage.local.set({ [key]: value }, () => res(true)); - }); + set: (key, value) => { + key = namespaceify(key); + return chrome.storage.local.set({ [key]: value }); + }, + remove: (keys) => { + keys = Array.isArray(keys) ? keys : [keys]; + keys = keys.map(namespaceify); + return chrome.storage.local.remove(keys); }, export: async () => { - const obj = await new Promise((res, _rej) => { - chrome.storage.local.get((value) => res(value)); - }); + const obj = await chrome.storage.local.get(); if (!namespace) return obj; const entries = Object.entries(obj) .filter(([key]) => key.startsWith(namespace)) .map(([key, value]) => [key.slice(namespace.length), value]); return Object.fromEntries(entries); }, - import: async (obj) => { + import: (obj) => { const entries = Object.entries(obj) // .map(([key, value]) => [namespace + key, value]); - return new Promise((res, _rej) => { - chrome.storage.local.set(Object.fromEntries(entries), () => res(true)); - }); + return chrome.storage.local.set(Object.fromEntries(entries)); }, }; }; diff --git a/src/api/electron.cjs b/src/api/electron.cjs index 479e704..a2a12ba 100644 --- a/src/api/electron.cjs +++ b/src/api/electron.cjs @@ -50,6 +50,8 @@ let __db; const initDatabase = (namespace, fallbacks = {}) => { if (Array.isArray(namespace)) namespace = namespace.join("__"); namespace = namespace ? namespace + "__" : ""; + const namespaceify = (key) => + key.startsWith(namespace) ? key : namespace + key; // schema: // - ("profileIds") = $profileId[] @@ -68,11 +70,11 @@ const initDatabase = (namespace, fallbacks = {}) => { init.run(); __db = db; - // prettier-ignore const insert = db.prepare(`INSERT INTO ${table} (key, value) VALUES (?, ?)`), - // prettier-ignore update = db.prepare(`UPDATE ${table} SET value = ? WHERE key = ?`), select = db.prepare(`SELECT * FROM ${table} WHERE key = ? LIMIT 1`), + remove = db.prepare(`DELETE FROM ${table} WHERE key = ?`), + removeMany = db.transaction((arr) => arr.forEach((key) => remove.run(key))), dump = db.prepare(`SELECT * FROM ${table}`), populate = db.transaction((obj) => { for (const key in obj) { @@ -85,7 +87,7 @@ const initDatabase = (namespace, fallbacks = {}) => { // wrap methods in promises for consistency w/ chrome.storage get: (key) => { const fallback = fallbacks[key]; - key = key.startsWith(namespace) ? key : namespace + key; + key = namespaceify(key); try { const value = JSON.parse(select.get(key)?.value); return Promise.resolve(value ?? fallback); @@ -93,13 +95,19 @@ const initDatabase = (namespace, fallbacks = {}) => { return Promise.resolve(fallback); }, set: (key, value) => { - key = key.startsWith(namespace) ? key : namespace + key; + key = namespaceify(key); value = JSON.stringify(value); if (select.get(key) === undefined) { insert.run(key, value); } else update.run(value, key); return Promise.resolve(true); }, + remove: (keys) => { + keys = Array.isArray(keys) ? keys : [keys]; + keys = keys.map(namespaceify); + removeMany(keys); + return Promise.resolve(true); + }, export: () => { const entries = dump .all() diff --git a/src/api/mods.js b/src/api/mods.js index 8434a91..8d7683f 100644 --- a/src/api/mods.js +++ b/src/api/mods.js @@ -51,7 +51,16 @@ const getProfile = async () => { enabledMods = initDatabase([await getProfile(), "enabledMods"]); return Boolean(await enabledMods.get(id)); }, - optionDefaults = async (id) => { + setEnabled = async (id, enabled) => { + const { initDatabase } = globalThis.__enhancerApi; + // prettier-ignore + return await initDatabase([ + await getProfile(), + "enabledMods" + ]).set(id, enabled); + }; + +const optionDefaults = async (id) => { const mod = (await getMods()).find((mod) => mod.id === id), optionEntries = mod.options .map((opt) => { @@ -64,6 +73,10 @@ const getProfile = async () => { }) .filter((opt) => opt); return Object.fromEntries(optionEntries); + }, + modDatabase = async (id) => { + const { initDatabase } = globalThis.__enhancerApi; + return initDatabase([await getProfile(), id], await optionDefaults(id)); }; globalThis.__enhancerApi ??= {}; @@ -75,5 +88,7 @@ Object.assign(globalThis.__enhancerApi, { getIntegrations, getProfile, isEnabled, + setEnabled, optionDefaults, + modDatabase, }); diff --git a/src/core/menu/components.mjs b/src/core/menu/components.mjs index 8134eb5..a62fb61 100644 --- a/src/core/menu/components.mjs +++ b/src/core/menu/components.mjs @@ -9,7 +9,7 @@ import { setState, useState, getState } from "./state.mjs"; // generic function _Button( - { type, size, icon, primary, class: cls = "", ...props }, + { type, size, variant, icon, class: cls = "", ...props }, ...children ) { const { html } = globalThis.__enhancerApi, @@ -20,10 +20,14 @@ function _Button( return html`<${type} class="flex gap-[8px] items-center px-[12px] shrink-0 rounded-[4px] ${size === "sm" ? "h-[28px]" : "h-[32px]"} - transition duration-[20ms] ${primary + transition duration-[20ms] ${variant === "primary" ? `text-[color:var(--theme--accent-primary\\_contrast)] font-medium bg-[color:var(--theme--accent-primary)] hover:bg-[color:var(--theme--accent-primary\\_hover)]` + : variant === "secondary" + ? `text-[color:var(--theme--accent-secondary)] + border-(& [color:var(--theme--accent-secondary)]) + hover:bg-[color:var(--theme--accent-secondary\\_hover)]` : `border-(& [color:var(--theme--fg-border)]) hover:bg-[color:var(--theme--bg-hover)]`} ${cls}" ...${props} @@ -211,6 +215,79 @@ function View({ id }, ...children) { return $el; } +function Popup( + { for: $trigger, onopen, onclose, onbeforeclose, ...props }, + ...children +) { + const { html } = globalThis.__enhancerApi, + $popup = html`
+
+
+ ${children} +
+
+
`; + + const { onclick, onkeydown } = $trigger, + enableTabbing = () => { + $popup + .querySelectorAll("[tabindex]") + .forEach(($el) => ($el.tabIndex = 0)); + }, + disableTabbing = () => { + $popup + .querySelectorAll("[tabindex]") + .forEach(($el) => ($el.tabIndex = -1)); + }, + openPopup = () => { + $popup.setAttribute("open", true); + enableTabbing(); + onopen?.(); + setState({ popupOpen: true }); + }, + closePopup = () => { + $popup.removeAttribute("open"); + disableTabbing(); + onbeforeclose?.(); + setTimeout(() => { + onclose?.(); + setState({ popupOpen: false }); + }, 200); + }; + disableTabbing(); + $trigger.onclick = (event) => { + onclick?.(event); + openPopup(); + }; + $trigger.onkeydown = (event) => { + onkeydown?.(event); + if (event.key === "Enter") openPopup(); + }; + useState(["rerender"], () => { + if ($popup.hasAttribute("open")) closePopup(); + }); + document.addEventListener("click", (event) => { + if (!$popup.hasAttribute("open")) return; + if ($popup.contains(event.target) || $popup === event.target) return; + if ($trigger.contains(event.target) || $trigger === event.target) return; + closePopup(); + }); + + return $popup; +} + // input function Input({ @@ -443,66 +520,26 @@ function Select({ values, _get, _set, ...props }) { >`, $options = values.map((value) => { return html`<${SelectOption} ...${{ value, _get, _set }} />`; - }), - $popup = html`
-
-
- ${$options} -
-
-
`; - - const { onclick, onkeydown } = $select, - openPopup = () => { - $popup.setAttribute("open", true); - $options.forEach(($opt) => ($opt.tabIndex = 0)); - setState({ popupOpen: true }); - }, - closePopup = (value) => { - $popup.removeAttribute("open"); - $options.forEach(($opt) => ($opt.tabIndex = -1)); - $select.style.width = `${$select.offsetWidth}px`; - $select.style.background = "transparent"; - if (value) $select.innerText = value; - setTimeout(() => { - $select.style.width = ""; - $select.style.background = ""; - setState({ popupOpen: false }); - }, 200); - }; - $select.onclick = (event) => { - onclick?.(event); - openPopup(); - }; - $select.onkeydown = (event) => { - onkeydown?.(event); - if (event.key === "Enter") openPopup(); - }; - useState(["rerender"], () => { - _get?.().then((value) => { - if ($popup.hasAttribute("open")) { - closePopup(value); - } else $select.innerText = value; }); - }); - document.addEventListener("click", (event) => { - if (!$popup.hasAttribute("open")) return; - if ($popup.contains(event.target) || event.target === $select) return; - closePopup(); + useState(["rerender"], () => { + _get?.().then((value) => ($select.innerText = value)); }); return html`
- ${$select}${$popup} + ${$select} + <${Popup} + for=${$select} + onbeforeclose=${() => { + $select.style.width = `${$select.offsetWidth}px`; + $select.style.background = "transparent"; + }} + onclose=${() => { + $select.style.width = ""; + $select.style.background = ""; + }} + > + ${$options} + `, $option = html`
${$input}
- +
`; } @@ -778,6 +819,7 @@ function Profile({ setActive, exportJson, importJson, + deleteProfile, ...props }) { const { html } = globalThis.__enhancerApi, @@ -812,6 +854,35 @@ function Profile({ $a.remove(); }; + const $delete = html`<${Icon} icon="x" />`, + $name = html``, + $confirmation = html`<${Popup} + for=${$delete} + onopen=${async () => ($name.innerText = await getName())} + > +

+ Are you sure you want to delete the profile ${$name} permanently? +

+
+ <${Button} + tabindex="0" + icon="trash" + class="justify-center" + variant="secondary" + onclick=${() => deleteProfile()} + > + Delete + + <${Button} + tabindex="0" + class="justify-center" + onclick=${() => setState({ rerender: true })} + > + Cancel + +
+ `; + return html`
  • <${Checkbox} ...${{ _get: isActive, _set: setActive }} @@ -834,8 +905,8 @@ function Profile({ /> Import - <${Button} size="sm" icon="upload" onclick=${downloadProfile}> Export - <${Icon} icon="x" /> + <${Button} size="sm" icon="upload" onclick=${downloadProfile}>Export +
    ${$delete}${$confirmation}
  • `; } diff --git a/src/core/menu/menu.css b/src/core/menu/menu.css index 90f0a8f..3fca979 100644 --- a/src/core/menu/menu.css +++ b/src/core/menu/menu.css @@ -94,7 +94,7 @@ body > #skeleton .row-group .shimmer { height: 11px; } -.notion-enhancer--menu-description mark { +mark { color: inherit; padding: 2px 4px; border-radius: 3px; diff --git a/src/core/menu/menu.mjs b/src/core/menu/menu.mjs index 3f5e157..c2cc8c3 100644 --- a/src/core/menu/menu.mjs +++ b/src/core/menu/menu.mjs @@ -4,13 +4,7 @@ * (https://notion-enhancer.github.io/) under the MIT license */ -import { - getState, - setState, - useState, - setEnabled, - modDatabase, -} from "./state.mjs"; +import { getState, setState, useState } from "./state.mjs"; import { Button, Description, @@ -72,7 +66,7 @@ const renderSidebar = (items, categories) => { return $sidebar; }, renderList = async (id, mods, description) => { - const { html, isEnabled } = globalThis.__enhancerApi; + const { html, isEnabled, setEnabled } = globalThis.__enhancerApi; mods = mods.map(async (mod) => { const _get = () => isEnabled(mod.id), _set = async (enabled) => { @@ -86,7 +80,7 @@ const renderSidebar = (items, categories) => { `; }, renderOptions = async (mod) => { - const { html, platform, getProfile } = globalThis.__enhancerApi; + const { html, platform, modDatabase } = globalThis.__enhancerApi; let options = mod.options.reduce((options, opt) => { if (!opt.key && (opt.type !== "heading" || !opt.label)) return options; if (opt.platforms && !opt.platforms.includes(platform)) return options; @@ -116,14 +110,26 @@ const renderSidebar = (items, categories) => { db = initDatabase(), $list = html``, renderProfile = (id) => { - const profile = initDatabase([id]); + const profile = initDatabase([id]), + isActive = async () => id === (await getProfile()), + deleteProfile = async () => { + const keys = Object.keys(await profile.export()); + profileIds.splice(profileIds.indexOf(id), 1); + await db.set("profileIds", profileIds); + await profile.remove(keys); + if (isActive()) { + await db.remove("activeProfile"); + setState({ databaseUpdated: true }); + } + setState({ rerender: true }); + }; return html`<${Profile} id=${id} getName=${async () => (await profile.get("profileName")) ?? (id === "default" ? "default" : "")} setName=${(name) => profile.set("profileName", name)} - isActive=${async () => id === (await getProfile())} + isActive=${isActive} setActive=${async () => { await db.set("activeProfile", id); setState({ rerender: true, databaseUpdated: true }); @@ -133,10 +139,12 @@ const renderSidebar = (items, categories) => { try { await profile.import(JSON.parse(json)); setState({ rerender: true, databaseUpdated: true }); + // success } catch { // error } }} + deleteProfile=${deleteProfile} />`; }, refreshProfiles = async () => { @@ -164,9 +172,6 @@ const renderSidebar = (items, categories) => { }; useState(["rerender"], () => refreshProfiles()); - // todo: deleting profiles inc. clearing db keys, - // throwing errors on invalid json upload - const $input = html`<${Input} size="md" type="text" @@ -198,7 +203,7 @@ const renderSidebar = (items, categories) => {
    `; }, renderMods = async (mods) => { - const { html, isEnabled } = globalThis.__enhancerApi; + const { html, isEnabled, setEnabled } = globalThis.__enhancerApi; mods = mods .filter((mod) => { return mod.options?.filter((opt) => opt.type !== "heading").length; @@ -325,8 +330,8 @@ const render = async () => { `; }); const $reload = html`<${Button} - primary class="ml-auto" + variant="primary" icon="refresh-cw" onclick=${() => reloadApp()} style="display: none" diff --git a/src/core/menu/state.mjs b/src/core/menu/state.mjs index e8e81d3..6c08fb5 100644 --- a/src/core/menu/state.mjs +++ b/src/core/menu/state.mjs @@ -21,18 +21,4 @@ const _state = {}, callback(getState(keys)); }; -const setEnabled = async (id, enabled) => { - const { getProfile, initDatabase } = globalThis.__enhancerApi; - // prettier-ignore - return await initDatabase([ - await getProfile(), - "enabledMods" - ]).set(id, enabled); - }, - modDatabase = async (id) => { - const { getProfile, initDatabase } = globalThis.__enhancerApi, - { optionDefaults } = globalThis.__enhancerApi; - return initDatabase([await getProfile(), id], await optionDefaults(id)); - }; - -export { setState, useState, getState, setEnabled, modDatabase }; +export { setState, useState, getState }; diff --git a/src/core/theme.css b/src/core/theme.css index 64a9627..629c077 100644 --- a/src/core/theme.css +++ b/src/core/theme.css @@ -3,5 +3,2559 @@ * (c) 2023 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ - -.notion-body:not(.dark) :is([style^="color: rgb(55, 53, 47)"],[style^="color:rgb(55, 53, 47)"],[style*=";color: rgb(55, 53, 47)"],[style*=";color:rgb(55, 53, 47)"],[style*=" color: rgb(55, 53, 47)"],[style*=" color:rgb(55, 53, 47)"],[style*="fill: rgb(55, 53, 47)"],[style*="fill:rgb(55, 53, 47)"],[style^="color: rgba(255, 255, 255, 0.9)"],[style^="color:rgba(255, 255, 255, 0.9)"],[style*=";color: rgba(255, 255, 255, 0.9)"],[style*=";color:rgba(255, 255, 255, 0.9)"],[style*=" color: rgba(255, 255, 255, 0.9)"],[style*=" color:rgba(255, 255, 255, 0.9)"],[style*="fill: rgba(255, 255, 255, 0.9)"],[style*="fill:rgba(255, 255, 255, 0.9)"],[style^="color: rgba(55, 53, 47, 0.8"],[style^="color:rgba(55, 53, 47, 0.8"],[style*=";color: rgba(55, 53, 47, 0.8"],[style*=";color:rgba(55, 53, 47, 0.8"],[style*=" color: rgba(55, 53, 47, 0.8"],[style*=" color:rgba(55, 53, 47, 0.8"],[style*="fill: rgba(55, 53, 47, 0.8"],[style*="fill:rgba(55, 53, 47, 0.8"],[style^="color: rgba(55, 53, 47, 0.9"],[style^="color:rgba(55, 53, 47, 0.9"],[style*=";color: rgba(55, 53, 47, 0.9"],[style*=";color:rgba(55, 53, 47, 0.9"],[style*=" color: rgba(55, 53, 47, 0.9"],[style*=" color:rgba(55, 53, 47, 0.9"],[style*="fill: rgba(55, 53, 47, 0.9"],[style*="fill:rgba(55, 53, 47, 0.9"],[style^="color: rgba(55, 53, 47, 1"],[style^="color:rgba(55, 53, 47, 1"],[style*=";color: rgba(55, 53, 47, 1"],[style*=";color:rgba(55, 53, 47, 1"],[style*=" color: rgba(55, 53, 47, 1"],[style*=" color:rgba(55, 53, 47, 1"],[style*="fill: rgba(55, 53, 47, 1"],[style*="fill:rgba(55, 53, 47, 1"]){caret-color:var(--theme--fg-primary,#37352f)!important;text-decoration-color:currentColor;fill:var(--theme--fg-primary,#37352f)!important;color:var(--theme--fg-primary,#37352f)!important}.notion-body:not(.dark) :is(.rdp-nav_icon,.rdp-head_cell,.rdp-day.rdp-day_outside,::placeholder),.notion-body:not(.dark) :is([style^="color: rgba(25, 23, 17, 0.6)"],[style^="color:rgba(25, 23, 17, 0.6)"],[style*=";color: rgba(25, 23, 17, 0.6)"],[style*=";color:rgba(25, 23, 17, 0.6)"],[style*=" color: rgba(25, 23, 17, 0.6)"],[style*=" color:rgba(25, 23, 17, 0.6)"],[style*="fill: rgba(25, 23, 17, 0.6)"],[style*="fill:rgba(25, 23, 17, 0.6)"],[style^="color: rgba(206, 205, 202, 0.6)"],[style^="color:rgba(206, 205, 202, 0.6)"],[style*=";color: rgba(206, 205, 202, 0.6)"],[style*=";color:rgba(206, 205, 202, 0.6)"],[style*=" color: rgba(206, 205, 202, 0.6)"],[style*=" color:rgba(206, 205, 202, 0.6)"],[style*="fill: rgba(206, 205, 202, 0.6)"],[style*="fill:rgba(206, 205, 202, 0.6)"],[style^="color: rgba(55, 53, 47, 0.0"],[style^="color:rgba(55, 53, 47, 0.0"],[style*=";color: rgba(55, 53, 47, 0.0"],[style*=";color:rgba(55, 53, 47, 0.0"],[style*=" color: rgba(55, 53, 47, 0.0"],[style*=" color:rgba(55, 53, 47, 0.0"],[style*="fill: rgba(55, 53, 47, 0.0"],[style*="fill:rgba(55, 53, 47, 0.0"],[style^="color: rgba(55, 53, 47, 0.1"],[style^="color:rgba(55, 53, 47, 0.1"],[style*=";color: rgba(55, 53, 47, 0.1"],[style*=";color:rgba(55, 53, 47, 0.1"],[style*=" color: rgba(55, 53, 47, 0.1"],[style*=" color:rgba(55, 53, 47, 0.1"],[style*="fill: rgba(55, 53, 47, 0.1"],[style*="fill:rgba(55, 53, 47, 0.1"],[style^="color: rgba(55, 53, 47, 0.2"],[style^="color:rgba(55, 53, 47, 0.2"],[style*=";color: rgba(55, 53, 47, 0.2"],[style*=";color:rgba(55, 53, 47, 0.2"],[style*=" color: rgba(55, 53, 47, 0.2"],[style*=" color:rgba(55, 53, 47, 0.2"],[style*="fill: rgba(55, 53, 47, 0.2"],[style*="fill:rgba(55, 53, 47, 0.2"],[style^="color: rgba(55, 53, 47, 0.3"],[style^="color:rgba(55, 53, 47, 0.3"],[style*=";color: rgba(55, 53, 47, 0.3"],[style*=";color:rgba(55, 53, 47, 0.3"],[style*=" color: rgba(55, 53, 47, 0.3"],[style*=" color:rgba(55, 53, 47, 0.3"],[style*="fill: rgba(55, 53, 47, 0.3"],[style*="fill:rgba(55, 53, 47, 0.3"],[style^="color: rgba(55, 53, 47, 0.4"],[style^="color:rgba(55, 53, 47, 0.4"],[style*=";color: rgba(55, 53, 47, 0.4"],[style*=";color:rgba(55, 53, 47, 0.4"],[style*=" color: rgba(55, 53, 47, 0.4"],[style*=" color:rgba(55, 53, 47, 0.4"],[style*="fill: rgba(55, 53, 47, 0.4"],[style*="fill:rgba(55, 53, 47, 0.4"],[style^="color: rgba(55, 53, 47, 0.5"],[style^="color:rgba(55, 53, 47, 0.5"],[style*=";color: rgba(55, 53, 47, 0.5"],[style*=";color:rgba(55, 53, 47, 0.5"],[style*=" color: rgba(55, 53, 47, 0.5"],[style*=" color:rgba(55, 53, 47, 0.5"],[style*="fill: rgba(55, 53, 47, 0.5"],[style*="fill:rgba(55, 53, 47, 0.5"],[style^="color: rgba(55, 53, 47, 0.6"],[style^="color:rgba(55, 53, 47, 0.6"],[style*=";color: rgba(55, 53, 47, 0.6"],[style*=";color:rgba(55, 53, 47, 0.6"],[style*=" color: rgba(55, 53, 47, 0.6"],[style*=" color:rgba(55, 53, 47, 0.6"],[style*="fill: rgba(55, 53, 47, 0.6"],[style*="fill:rgba(55, 53, 47, 0.6"],[style^="color: rgba(55, 53, 47, 0.7"],[style^="color:rgba(55, 53, 47, 0.7"],[style*=";color: rgba(55, 53, 47, 0.7"],[style*=";color:rgba(55, 53, 47, 0.7"],[style*=" color: rgba(55, 53, 47, 0.7"],[style*=" color:rgba(55, 53, 47, 0.7"],[style*="fill: rgba(55, 53, 47, 0.7"],[style*="fill:rgba(55, 53, 47, 0.7"]){caret-color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important;text-decoration-color:currentColor;fill:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important;color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important}.notion-body:not(.dark) :is([style*="caret-color: rgb(55, 53, 47)"],[style*="caret-color:rgb(55, 53, 47)"],[style*="caret-color: rgba(255, 255, 255, 0.9)"],[style*="caret-color:rgba(255, 255, 255, 0.9)"],[style*="caret-color: rgba(55, 53, 47, 0.8"],[style*="caret-color:rgba(55, 53, 47, 0.8"],[style*="caret-color: rgba(55, 53, 47, 0.9"],[style*="caret-color:rgba(55, 53, 47, 0.9"],[style*="caret-color: rgba(55, 53, 47, 1"],[style*="caret-color:rgba(55, 53, 47, 1"]){caret-color:var(--theme--fg-primary,#37352f)!important}.notion-body:not(.dark) :is([style*="caret-color: rgba(25, 23, 17, 0.6)"],[style*="caret-color:rgba(25, 23, 17, 0.6)"],[style*="caret-color: rgba(206, 205, 202, 0.6)"],[style*="caret-color:rgba(206, 205, 202, 0.6)"],[style*="caret-color: rgba(55, 53, 47, 0.0"],[style*="caret-color:rgba(55, 53, 47, 0.0"],[style*="caret-color: rgba(55, 53, 47, 0.1"],[style*="caret-color:rgba(55, 53, 47, 0.1"],[style*="caret-color: rgba(55, 53, 47, 0.2"],[style*="caret-color:rgba(55, 53, 47, 0.2"],[style*="caret-color: rgba(55, 53, 47, 0.3"],[style*="caret-color:rgba(55, 53, 47, 0.3"],[style*="caret-color: rgba(55, 53, 47, 0.4"],[style*="caret-color:rgba(55, 53, 47, 0.4"],[style*="caret-color: rgba(55, 53, 47, 0.5"],[style*="caret-color:rgba(55, 53, 47, 0.5"],[style*="caret-color: rgba(55, 53, 47, 0.6"],[style*="caret-color:rgba(55, 53, 47, 0.6"],[style*="caret-color: rgba(55, 53, 47, 0.7"],[style*="caret-color:rgba(55, 53, 47, 0.7"]){caret-color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important}.notion-body:not(.dark) [style*="-webkit-text-fill-color:"]{-webkit-text-fill-color:var(--theme--fg-secondary,rgba(25,23,17,0.6))!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(50, 48, 44);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(50, 48, 44);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(50, 48, 44);"]{color:var(--theme--fg-primary,#32302c)!important;fill:var(--theme--fg-primary,#32302c)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(68, 42, 30);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(68, 42, 30);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(68, 42, 30);"]{color:var(--theme--fg-primary,#442a1e)!important;fill:var(--theme--fg-primary,#442a1e)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(73, 41, 14);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(73, 41, 14);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(73, 41, 14);"]{color:var(--theme--fg-primary,#49290e)!important;fill:var(--theme--fg-primary,#49290e)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(64, 44, 27);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(64, 44, 27);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(64, 44, 27);"]{color:var(--theme--fg-primary,#402c1b)!important;fill:var(--theme--fg-primary,#402c1b)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(28, 56, 41);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(28, 56, 41);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(28, 56, 41);"]{color:var(--theme--fg-primary,#1c3829)!important;fill:var(--theme--fg-primary,#1c3829)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(24, 51, 71);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(24, 51, 71);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(24, 51, 71);"]{color:var(--theme--fg-primary,#183347)!important;fill:var(--theme--fg-primary,#183347)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(65, 36, 84);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(65, 36, 84);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(65, 36, 84);"]{color:var(--theme--fg-primary,#412454)!important;fill:var(--theme--fg-primary,#412454)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(76, 35, 55);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(76, 35, 55);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(76, 35, 55);"]{color:var(--theme--fg-primary,#4c2337)!important;fill:var(--theme--fg-primary,#4c2337)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(93, 23, 21);"],.notion-body:not(.dark) .notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(93, 23, 21);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(93, 23, 21);"]{color:var(--theme--fg-primary,#5d1715)!important;fill:var(--theme--fg-primary,#5d1715)!important}.notion-body:not(.dark) [style*="height: 1px;"][style*=background]{background:var(--theme--fg-border,#e9e9e7)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(120, 119, 116);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(120, 119, 116, 1);"]{color:var(--theme--fg-gray,#787774)!important;fill:var(--theme--fg-gray,#787774)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(159, 107, 83);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(159, 107, 83, 1);"]{color:var(--theme--fg-brown,#9f6b53)!important;fill:var(--theme--fg-brown,#9f6b53)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(217, 115, 13);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(217, 115, 13, 1);"]{color:var(--theme--fg-orange,#d9730d)!important;fill:var(--theme--fg-orange,#d9730d)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(203, 145, 47);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(203, 145, 47, 1);"]{color:var(--theme--fg-yellow,#cb912f)!important;fill:var(--theme--fg-yellow,#cb912f)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(68, 131, 97);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(68, 131, 97, 1);"]{color:var(--theme--fg-green,#448361)!important;fill:var(--theme--fg-green,#448361)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(51, 126, 169);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(51, 126, 169, 1);"]{color:var(--theme--fg-blue,#337ea9)!important;fill:var(--theme--fg-blue,#337ea9)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(144, 101, 176);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(144, 101, 176, 1);"]{color:var(--theme--fg-purple,#9065b0)!important;fill:var(--theme--fg-purple,#9065b0)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(193, 76, 138);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(193, 76, 138, 1);"]{color:var(--theme--fg-pink,#c14c8a)!important;fill:var(--theme--fg-pink,#c14c8a)!important}.notion-body:not(.dark) .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(212, 76, 71);"],.notion-body:not(.dark) :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(212, 76, 71, 1);"]{color:var(--theme--fg-red,#d44c47)!important;fill:var(--theme--fg-red,#d44c47)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(249, 249, 245, 0.5)"] [style*="height: 32px"],[style*="rgba(249, 249, 245, 0.5)"]>[style*=color]:nth-child(2),[style*="rgba(249, 249, 245, 0.5)"]>div>svg){color:var(--theme--fg-secondary,rgba(145,145,142,0.5))!important;fill:var(--theme--fg-secondary,rgba(145,145,142,0.5))!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(247, 247, 245, 0.7)"] [style*="height: 32px"],[style*="rgba(247, 247, 245, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(247, 247, 245, 0.7)"]>div>svg){color:var(--theme--fg-gray,#91918e)!important;fill:var(--theme--fg-gray,#91918e)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(250, 246, 245, 0.7)"] [style*="height: 32px"],[style*="rgba(250, 246, 245, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(250, 246, 245, 0.7)"]>div>svg){color:var(--theme--fg-brown,#bb846c)!important;fill:var(--theme--fg-brown,#bb846c)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(252, 245, 242, 0.7)"] [style*="height: 32px"],[style*="rgba(252, 245, 242, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(252, 245, 242, 0.7)"]>div>svg){color:var(--theme--fg-orange,#d7813a)!important;fill:var(--theme--fg-orange,#d7813a)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(250, 247, 237, 0.7)"] [style*="height: 32px"],[style*="rgba(250, 247, 237, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(250, 247, 237, 0.7)"]>div>svg){color:var(--theme--fg-yellow,#cb9433)!important;fill:var(--theme--fg-yellow,#cb9433)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(244, 248, 243, 0.7)"] [style*="height: 32px"],[style*="rgba(244, 248, 243, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(244, 248, 243, 0.7)"]>div>svg){color:var(--theme--fg-green,#6c9b7d)!important;fill:var(--theme--fg-green,#6c9b7d)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(241, 248, 251, 0.7)"] [style*="height: 32px"],[style*="rgba(241, 248, 251, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(241, 248, 251, 0.7)"]>div>svg){color:var(--theme--fg-blue,#5b97bd)!important;fill:var(--theme--fg-blue,#5b97bd)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(249, 246, 252, 0.7)"] [style*="height: 32px"],[style*="rgba(249, 246, 252, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(249, 246, 252, 0.7)"]>div>svg){color:var(--theme--fg-purple,#a782c3)!important;fill:var(--theme--fg-purple,#a782c3)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(251, 245, 251, 0.7)"] [style*="height: 32px"],[style*="rgba(251, 245, 251, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(251, 245, 251, 0.7)"]>div>svg){color:var(--theme--fg-pink,#cd749f)!important;fill:var(--theme--fg-pink,#cd749f)!important}.notion-body:not(.dark) .notion-board-view :is(.notion-board-group[style*="rgba(253, 245, 243, 0.7)"] [style*="height: 32px"],[style*="rgba(253, 245, 243, 0.7)"]>[style*=color]:nth-child(2),[style*="rgba(253, 245, 243, 0.7)"]>div>svg){color:var(--theme--fg-red,#e16f64)!important;fill:var(--theme--fg-red,#e16f64)!important}.notion-body:not(.dark) .notion-overlay-container [data-overlay] :is([style*="height: 100%; width: 275px;"][style*="flex-direction: column;"],.notion-space-settings [style*="flex-grow: 1"]>[style*=background-color]),.notion-body:not(.dark) .notion-timeline-view,.notion-body:not(.dark) :is([style*="background: white"],[style*="background:white"],[style*="background-color: white"],[style*="background-color:white"],[style*="background: rgb(255, 255, 255)"],[style*="background:rgb(255, 255, 255)"],[style*="background-color: rgb(255, 255, 255)"],[style*="background-color:rgb(255, 255, 255)"],[style*="background: rgb(247, 247, 247)"],[style*="background:rgb(247, 247, 247)"],[style*="background-color: rgb(247, 247, 247)"],[style*="background-color:rgb(247, 247, 247)"]):not(.notion-timeline-view){background:var(--theme--bg-primary,white)!important}.notion-body:not(.dark) .notion-overlay-container [data-overlay] :is([style*="height: 100%; width: 275px;"][style*="flex-direction: column;"]+[style*="width: 100%;"],.notion-space-settings [style*="height: 100%; background:"][style*="max-width: 250px;"]),.notion-body:not(.dark) :is(.notion-overlay-container [style*="border-radius: 4px;"][style*="position: relative; max-width: calc(100vw - 24px); box-shadow:"],[style*="font-size: 12px;"][style*="box-shadow:"][style*="border-radius: 3px; max-width: calc(100% - 16px); min-height: 24px; overflow: hidden;"][style*="position: absolute; right: 8px; bottom: 8px; z-index:"],[style*="height: 32px;"][style*="font-size: 14px; line-height: 1.2; border-radius: 5px; box-shadow:"],[style*="transition: background"][style*="cursor: pointer;"][style*="border-radius: 3px; height: 24px; width: 24px;"][style*="box-shadow:"],[style*="right: 6px; top: 4px;"][style*="border-radius: 4px;"][style*="gap: 1px;"][style*="box-shadow:"])[style*="; background: white;"],.notion-body:not(.dark) :is(.notion-timeline-item,.notion-calendar-view .notion-collection-item>a,.notion-gallery-view .notion-collection-item>a)[style*="; background: white;"],.notion-body:not(.dark) :is([style*="background: rgb(251, 251, 250)"],[style*="background:rgb(251, 251, 250)"],[style*="background-color: rgb(251, 251, 250)"],[style*="background-color:rgb(251, 251, 250)"],[style*="background: rgb(253, 253, 253)"],[style*="background:rgb(253, 253, 253)"],[style*="background-color: rgb(253, 253, 253)"],[style*="background-color:rgb(253, 253, 253)"]){background:var(--theme--bg-secondary,#fbfbfa)!important}.notion-body:not(.dark) :is([style*="background: rgba(55, 53, 47, 0.08)"],[style*="background:rgba(55, 53, 47, 0.08)"],[style*="background-color: rgba(55, 53, 47, 0.08)"],[style*="background-color:rgba(55, 53, 47, 0.08)"],[style*="background: rgba(242, 241, 238, 0.6)"],[style*="background:rgba(242, 241, 238, 0.6)"],[style*="background-color: rgba(242, 241, 238, 0.6)"],[style*="background-color:rgba(242, 241, 238, 0.6)"],[style*="background: rgb(225, 225, 225)"],[style*="background:rgb(225, 225, 225)"],[style*="background-color: rgb(225, 225, 225)"],[style*="background-color:rgb(225, 225, 225)"],[style*="background: rgb(239, 239, 238)"],[style*="background:rgb(239, 239, 238)"],[style*="background-color: rgb(239, 239, 238)"],[style*="background-color:rgb(239, 239, 238)"]),.notion-body:not(.dark) [style*="height: 14px; width: 26px; border-radius: 44px;"][style*=rgba]{background:var(--theme--bg-hover,rgba(55,53,47,0.08))!important}.notion-body:not(.dark) .notion-overlay-container [data-overlay]>div>[style*="position: absolute"]:first-child{background:var(--theme--bg-overlay,rgba(15,15,15,0.6))!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgba(227, 226, 224, 0.5);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgba(227, 226, 224, 0.5);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgba(227, 226, 224, 0.5);"]{background:var(--theme--bg-light_gray,rgba(227,226,224,0.5))!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(227, 226, 224);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(227, 226, 224);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(227, 226, 224);"]{background:var(--theme--bg-gray,#e3e2e0)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(238, 224, 218);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(238, 224, 218);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(238, 224, 218);"]{background:var(--theme--bg-brown,#eee0da)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(250, 222, 201);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(250, 222, 201);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(250, 222, 201);"]{background:var(--theme--bg-orange,#fadec9)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(253, 236, 200);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(253, 236, 200);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(253, 236, 200);"]{background:var(--theme--bg-yellow,#fdecc8)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(219, 237, 219);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(219, 237, 219);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(219, 237, 219);"]{background:var(--theme--bg-green,#dbeddb)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(211, 229, 239);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(211, 229, 239);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(211, 229, 239);"]{background:var(--theme--bg-blue,#d3e5ef)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(232, 222, 238);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(232, 222, 238);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(232, 222, 238);"]{background:var(--theme--bg-purple,#e8deee)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(245, 224, 233);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(245, 224, 233);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(245, 224, 233);"]{background:var(--theme--bg-pink,#f5e0e9)!important}.notion-body:not(.dark) .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(255, 226, 221);"],.notion-body:not(.dark) :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(255, 226, 221);"],.notion-body:not(.dark) [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(255, 226, 221);"]{background:var(--theme--bg-red,#ffe2dd)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(241, 241, 239, 1)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(241, 241, 239);"]{background:var(--theme--bg-gray,#f1f1ef)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(244, 238, 238, 1)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(244, 238, 238);"]{background:var(--theme--bg-brown,#f4eeee)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(251, 236, 221, 1)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(251, 236, 221);"]{background:var(--theme--bg-orange,#fbecdd)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(251, 243, 219, 1)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(251, 243, 219);"]{background:var(--theme--bg-yellow,#fbf3db)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(237, 243, 236, 1)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(237, 243, 236);"]{background:var(--theme--bg-green,#edf3ec)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(231, 243, 248, 1)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(231, 243, 248);"]{background:var(--theme--bg-blue,#e7f3f8)!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(244, 240, 247, 0.8)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgba(244, 240, 247, 0.8);"]{background:var(--theme--bg-purple,rgba(244,240,247,0.8))!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(249, 238, 243, 0.8)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgba(249, 238, 243, 0.8);"]{background:var(--theme--bg-pink,rgba(249,238,243,0.8))!important}.notion-body:not(.dark) .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(253, 235, 236, 1)"],.notion-body:not(.dark) :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(253, 235, 236);"]{background:var(--theme--bg-red,#fdebec)!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(249, 249, 245, 0.5)"] a{background:var(--theme--bg-light_gray,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(249, 249, 245, 0.5)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-light_gray,rgba(249,249,245,0.5))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(247, 247, 245, 0.7)"] a{background:var(--theme--bg-gray,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(247, 247, 245, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-gray,rgba(247,247,245,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(250, 246, 245, 0.7)"] a{background:var(--theme--bg-brown,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(250, 246, 245, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-brown,rgba(250,246,245,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(252, 245, 242, 0.7)"] a{background:var(--theme--bg-orange,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(252, 245, 242, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-orange,rgba(252,245,242,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(250, 247, 237, 0.7)"] a{background:var(--theme--bg-yellow,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(250, 247, 237, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-yellow,rgba(250,247,237,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(244, 248, 243, 0.7)"] a{background:var(--theme--bg-green,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(244, 248, 243, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-green,rgba(244,248,243,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(241, 248, 251, 0.7)"] a{background:var(--theme--bg-blue,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(241, 248, 251, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-blue,rgba(241,248,251,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(249, 246, 252, 0.7)"] a{background:var(--theme--bg-purple,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(249, 246, 252, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-purple,rgba(249,246,252,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(251, 245, 251, 0.7)"] a{background:var(--theme--bg-pink,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(251, 245, 251, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-pink,rgba(251,245,251,0.7))!important}.notion-body:not(.dark) .notion-board-view .notion-board-group[style*="rgba(253, 245, 243, 0.7)"] a{background:var(--theme--bg-red,white)!important}.notion-body:not(.dark) .notion-board-view [style*="rgba(253, 245, 243, 0.7)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-red,rgba(253,245,243,0.7))!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgb(241, 241, 239);"]{background:var(--theme--dim-gray,#f1f1ef)!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgb(244, 238, 238);"]{background:var(--theme--dim-brown,#f4eeee)!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgb(251, 236, 221);"]{background:var(--theme--dim-orange,#fbecdd)!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgb(251, 243, 219);"]{background:var(--theme--dim-yellow,#fbf3db)!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgb(237, 243, 236);"]{background:var(--theme--dim-green,#edf3ec)!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgb(231, 243, 248);"]{background:var(--theme--dim-blue,#e7f3f8)!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgba(244, 240, 247, 0.8);"]{background:var(--theme--dim-purple,rgba(244,240,247,0.8))!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgba(249, 238, 243, 0.8);"]{background:var(--theme--dim-pink,rgba(249,238,243,0.8))!important}.notion-body:not(.dark) .notion-callout-block>div>div[style*="; background: rgb(253, 235, 236);"]{background:var(--theme--dim-red,#fdebec)!important}.notion-body:not(.dark) [style*="height: 18px; border-radius: 3px; background"][style*="; background: rgba(206, 205, 202, 0.5);"]{background:var(--theme--bg-light_gray,rgba(206,205,202,0.5))!important}[style*="background-color: rgb(35, 131, 226)"] svg[style*=fill],[style*="background: rgb(35, 131, 226)"] svg[style*=fill]{fill:var(--theme--accent-primary_contrast,#fff)!important}.notion-body:not(.dark) ::-webkit-scrollbar-corner,.notion-body:not(.dark) ::-webkit-scrollbar-track{background:var(--theme--scrollbar-track,#edece9)!important}.notion-body:not(.dark) ::-webkit-scrollbar-thumb{background:var(--theme--scrollbar-thumb,#d3d1cb)!important}.notion-body:not(.dark) ::-webkit-scrollbar-thumb:hover{background:var(--theme--scrollbar-thumb_hover,#aeaca6)!important}.notion-body:not(.dark) .notion-text-block .notion-enable-hover[style*=mono][style*=";color:#EB5757;"]{color:var(--theme--code-inline_fg,#eb5757)!important;fill:var(--theme--code-inline_fg,#eb5757)!important}.notion-body:not(.dark) .notion-text-block .notion-enable-hover[style*=mono][style*=";background:rgba(135,131,120,0.15);"]{background:var(--theme--code-inline_bg,rgba(135,131,120,0.15))!important}.notion-body:not(.dark) .notion-code-block>[style*=mono][style*="; color: rgb(55, 53, 47);"]{color:var(--theme--code-block_fg,#37352f)!important;fill:var(--theme--code-block_fg,#37352f)!important}.notion-body:not(.dark) .notion-code-block>div>[style*=background][style*="; background: rgb(247, 246, 243);"]{background:var(--theme--code-block_bg,#f7f6f3)!important}.notion-body:not(.dark) .notion-code-block .token.keyword{color:var(--theme--code-keyword,#07a)!important;fill:var(--theme--code-keyword,#07a)!important}.notion-body:not(.dark) .notion-code-block .token.builtin{color:var(--theme--code-builtin,#690)!important;fill:var(--theme--code-builtin,#690)!important}.notion-body:not(.dark) .notion-code-block .token.class-name{color:var(--theme--code-class_name,#dd4a68)!important;fill:var(--theme--code-class_name,#dd4a68)!important}.notion-body:not(.dark) .notion-code-block .token.function{color:var(--theme--code-function,#dd4a68)!important;fill:var(--theme--code-function,#dd4a68)!important}.notion-body:not(.dark) .notion-code-block .token.boolean{color:var(--theme--code-boolean,#905)!important;fill:var(--theme--code-boolean,#905)!important}.notion-body:not(.dark) .notion-code-block .token.number{color:var(--theme--code-number,#905)!important;fill:var(--theme--code-number,#905)!important}.notion-body:not(.dark) .notion-code-block .token.string{color:var(--theme--code-string,#690)!important;fill:var(--theme--code-string,#690)!important}.notion-body:not(.dark) .notion-code-block .token.char{color:var(--theme--code-char,#690)!important;fill:var(--theme--code-char,#690)!important}.notion-body:not(.dark) .notion-code-block .token.symbol{color:var(--theme--code-symbol,#905)!important;fill:var(--theme--code-symbol,#905)!important}.notion-body:not(.dark) .notion-code-block .token.regex{color:var(--theme--code-regex,#e90)!important;fill:var(--theme--code-regex,#e90)!important}.notion-body:not(.dark) .notion-code-block .token.url{color:var(--theme--code-url,#9a6e3a)!important;fill:var(--theme--code-url,#9a6e3a)!important}.notion-body:not(.dark) .notion-code-block .token.operator{color:var(--theme--code-operator,#9a6e3a)!important;fill:var(--theme--code-operator,#9a6e3a)!important}.notion-body:not(.dark) .notion-code-block .token.variable{color:var(--theme--code-variable,#e90)!important;fill:var(--theme--code-variable,#e90)!important}.notion-body:not(.dark) .notion-code-block .token.constant{color:var(--theme--code-constant,#905)!important;fill:var(--theme--code-constant,#905)!important}.notion-body:not(.dark) .notion-code-block .token.property{color:var(--theme--code-property,#905)!important;fill:var(--theme--code-property,#905)!important}.notion-body:not(.dark) .notion-code-block .token.punctuation{color:var(--theme--code-punctuation,#999)!important;fill:var(--theme--code-punctuation,#999)!important}.notion-body:not(.dark) .notion-code-block .token.important{color:var(--theme--code-important,#e90)!important;fill:var(--theme--code-important,#e90)!important}.notion-body:not(.dark) .notion-code-block .token.comment{color:var(--theme--code-comment,#708090)!important;fill:var(--theme--code-comment,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.tag{color:var(--theme--code-tag,#905)!important;fill:var(--theme--code-tag,#905)!important}.notion-body:not(.dark) .notion-code-block .token.attr-name{color:var(--theme--code-attr_name,#690)!important;fill:var(--theme--code-attr_name,#690)!important}.notion-body:not(.dark) .notion-code-block .token.attr-value{color:var(--theme--code-attr_value,#07a)!important;fill:var(--theme--code-attr_value,#07a)!important}.notion-body:not(.dark) .notion-code-block .token.namespace{color:var(--theme--code-namespace,#37352f)!important;fill:var(--theme--code-namespace,#37352f)!important}.notion-body:not(.dark) .notion-code-block .token.prolog{color:var(--theme--code-prolog,#708090)!important;fill:var(--theme--code-prolog,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.doctype{color:var(--theme--code-doctype,#708090)!important;fill:var(--theme--code-doctype,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.cdata{color:var(--theme--code-cdata,#708090)!important;fill:var(--theme--code-cdata,#708090)!important}.notion-body:not(.dark) .notion-code-block .token.entity{color:var(--theme--code-entity,#9a6e3a)!important;fill:var(--theme--code-entity,#9a6e3a)!important}.notion-body:not(.dark) .notion-code-block .token.atrule{color:var(--theme--code-atrule,#07a)!important;fill:var(--theme--code-atrule,#07a)!important}.notion-body:not(.dark) .notion-code-block .token.selector{color:var(--theme--code-selector,#690)!important;fill:var(--theme--code-selector,#690)!important}.notion-body:not(.dark) .notion-code-block .token.inserted{color:var(--theme--code-inserted,#690)!important;fill:var(--theme--code-inserted,#690)!important}.notion-body:not(.dark) .notion-code-block .token.deleted{color:var(--theme--code-deleted,#905)!important;fill:var(--theme--code-deleted,#905)!important}.notion-body:not(.dark) :is([style*="px solid rgb(233, 233, 231"],[style*="px solid rgba(233, 233, 231"],[style*="px solid rgb(238, 238, 237"],[style*="px solid rgba(238, 238, 237"],[style*="px solid rgb(55, 53, 47"],[style*="px solid rgba(55, 53, 47"]):is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]){border-color:var(--theme--fg-border,#e9e9e7)!important}.notion-body:not(.dark) [style*=" box-shadow: rgba(55, 53, 47, 0.09) 0px -1px 0px;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0-1px 0!important}.notion-body:not(.dark) [style*=" box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px inset;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0 0 0 1px inset!important}.notion-body:not(.dark) [style*=" box-shadow: white -3px 0px 0px, rgb(233, 233, 231) 0px 1px 0px;"]{box-shadow:#fff -3px 0 0,transparent 0 1px 0!important}.notion-body:not(.dark) [style*=" box-shadow: rgb(233, 233, 231) 0px -1px 0px inset;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0-1px 0 inset!important}.notion-body:not(.dark) [style*=" box-shadow: rgba(55, 53, 47, 0.16) 1px 0px 0px inset;"]{box-shadow:var(--theme--fg-border,#e9e9e7) 1px 0 0 inset!important}.notion-body:not(.dark) [style*=" box-shadow: rgb(233, 233, 231) 0px 1px 0px;"]{box-shadow:var(--theme--fg-border,#e9e9e7)0 1px 0!important}.notion-body:not(.dark) [style*="box-shadow: rgb(233, 233, 231) -1px 0px 0px;"]{box-shadow:var(--theme--fg-border,#e9e9e7) -1px 0 0!important}[style*="linear-gradient(to left, white 20%, rgba(255, 255, 255, 0) 100%)"]{background-image:linear-gradient(to left,var(--theme--bg-primary,white) 20%,transparent 100%)!important}[style*="linear-gradient(to right, white 20%, rgba(255, 255, 255, 0) 100%)"]{background-image:linear-gradient(to right,var(--theme--bg-primary,white) 20%,transparent 100%)!important}[style*="Segoe UI"]{font-family:var(--theme--font-sans, ui-sans-serif),-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,"Apple Color Emoji",Arial,sans-serif,"Segoe UI Emoji","Segoe UI Symbol"!important}[style*=Georgia]{font-family:var(--theme--font-serif, Lyon-Text),Georgia,ui-serif,serif!important}[style*=iawriter-mono]{font-family:var(--theme--font-mono, iawriter-mono),Nitti,Menlo,Courier,monospace!important}[style*=SFMono-Regular]{font-family:var(--theme--font-code, "SFMono-Regular"),Menlo,Consolas,"PT Mono","Liberation Mono",Courier,monospace!important}.notion-body.dark :is([style^="color: rgba(255, 255, 255, 0.81)"],[style^="color:rgba(255, 255, 255, 0.81)"],[style*=";color: rgba(255, 255, 255, 0.81)"],[style*=";color:rgba(255, 255, 255, 0.81)"],[style*=" color: rgba(255, 255, 255, 0.81)"],[style*=" color:rgba(255, 255, 255, 0.81)"],[style*="fill: rgba(255, 255, 255, 0.81)"],[style*="fill:rgba(255, 255, 255, 0.81)"],[style^="color: rgb(211, 211, 211)"],[style^="color:rgb(211, 211, 211)"],[style*=";color: rgb(211, 211, 211)"],[style*=";color:rgb(211, 211, 211)"],[style*=" color: rgb(211, 211, 211)"],[style*=" color:rgb(211, 211, 211)"],[style*="fill: rgb(211, 211, 211)"],[style*="fill:rgb(211, 211, 211)"],[style^="color: rgb(255, 255, 255)"],[style^="color:rgb(255, 255, 255)"],[style*=";color: rgb(255, 255, 255)"],[style*=";color:rgb(255, 255, 255)"],[style*=" color: rgb(255, 255, 255)"],[style*=" color:rgb(255, 255, 255)"],[style*="fill: rgb(255, 255, 255)"],[style*="fill:rgb(255, 255, 255)"],[style^="color: rgba(255, 255, 255, 0.8"],[style^="color:rgba(255, 255, 255, 0.8"],[style*=";color: rgba(255, 255, 255, 0.8"],[style*=";color:rgba(255, 255, 255, 0.8"],[style*=" color: rgba(255, 255, 255, 0.8"],[style*=" color:rgba(255, 255, 255, 0.8"],[style*="fill: rgba(255, 255, 255, 0.8"],[style*="fill:rgba(255, 255, 255, 0.8"],[style^="color: rgba(255, 255, 255, 0.9"],[style^="color:rgba(255, 255, 255, 0.9"],[style*=";color: rgba(255, 255, 255, 0.9"],[style*=";color:rgba(255, 255, 255, 0.9"],[style*=" color: rgba(255, 255, 255, 0.9"],[style*=" color:rgba(255, 255, 255, 0.9"],[style*="fill: rgba(255, 255, 255, 0.9"],[style*="fill:rgba(255, 255, 255, 0.9"],[style^="color: rgba(255, 255, 255, 1"],[style^="color:rgba(255, 255, 255, 1"],[style*=";color: rgba(255, 255, 255, 1"],[style*=";color:rgba(255, 255, 255, 1"],[style*=" color: rgba(255, 255, 255, 1"],[style*=" color:rgba(255, 255, 255, 1"],[style*="fill: rgba(255, 255, 255, 1"],[style*="fill:rgba(255, 255, 255, 1"]){caret-color:var(--theme--fg-primary,rgba(255,255,255,0.81))!important;text-decoration-color:currentColor;fill:var(--theme--fg-primary,rgba(255,255,255,0.81))!important;color:var(--theme--fg-primary,rgba(255,255,255,0.81))!important}.notion-body.dark :is(.rdp-nav_icon,.rdp-head_cell,.rdp-day.rdp-day_outside,::placeholder),.notion-body.dark :is([style^="color: rgb(155, 155, 155)"],[style^="color:rgb(155, 155, 155)"],[style*=";color: rgb(155, 155, 155)"],[style*=";color:rgb(155, 155, 155)"],[style*=" color: rgb(155, 155, 155)"],[style*=" color:rgb(155, 155, 155)"],[style*="fill: rgb(155, 155, 155)"],[style*="fill:rgb(155, 155, 155)"],[style^="color: rgb(127, 127, 127)"],[style^="color:rgb(127, 127, 127)"],[style*=";color: rgb(127, 127, 127)"],[style*=";color:rgb(127, 127, 127)"],[style*=" color: rgb(127, 127, 127)"],[style*=" color:rgb(127, 127, 127)"],[style*="fill: rgb(127, 127, 127)"],[style*="fill:rgb(127, 127, 127)"],[style^="color: rgba(255, 255, 255, 0.0"],[style^="color:rgba(255, 255, 255, 0.0"],[style*=";color: rgba(255, 255, 255, 0.0"],[style*=";color:rgba(255, 255, 255, 0.0"],[style*=" color: rgba(255, 255, 255, 0.0"],[style*=" color:rgba(255, 255, 255, 0.0"],[style*="fill: rgba(255, 255, 255, 0.0"],[style*="fill:rgba(255, 255, 255, 0.0"],[style^="color: rgba(255, 255, 255, 0.1"],[style^="color:rgba(255, 255, 255, 0.1"],[style*=";color: rgba(255, 255, 255, 0.1"],[style*=";color:rgba(255, 255, 255, 0.1"],[style*=" color: rgba(255, 255, 255, 0.1"],[style*=" color:rgba(255, 255, 255, 0.1"],[style*="fill: rgba(255, 255, 255, 0.1"],[style*="fill:rgba(255, 255, 255, 0.1"],[style^="color: rgba(255, 255, 255, 0.2"],[style^="color:rgba(255, 255, 255, 0.2"],[style*=";color: rgba(255, 255, 255, 0.2"],[style*=";color:rgba(255, 255, 255, 0.2"],[style*=" color: rgba(255, 255, 255, 0.2"],[style*=" color:rgba(255, 255, 255, 0.2"],[style*="fill: rgba(255, 255, 255, 0.2"],[style*="fill:rgba(255, 255, 255, 0.2"],[style^="color: rgba(255, 255, 255, 0.3"],[style^="color:rgba(255, 255, 255, 0.3"],[style*=";color: rgba(255, 255, 255, 0.3"],[style*=";color:rgba(255, 255, 255, 0.3"],[style*=" color: rgba(255, 255, 255, 0.3"],[style*=" color:rgba(255, 255, 255, 0.3"],[style*="fill: rgba(255, 255, 255, 0.3"],[style*="fill:rgba(255, 255, 255, 0.3"],[style^="color: rgba(255, 255, 255, 0.4"],[style^="color:rgba(255, 255, 255, 0.4"],[style*=";color: rgba(255, 255, 255, 0.4"],[style*=";color:rgba(255, 255, 255, 0.4"],[style*=" color: rgba(255, 255, 255, 0.4"],[style*=" color:rgba(255, 255, 255, 0.4"],[style*="fill: rgba(255, 255, 255, 0.4"],[style*="fill:rgba(255, 255, 255, 0.4"],[style^="color: rgba(255, 255, 255, 0.5"],[style^="color:rgba(255, 255, 255, 0.5"],[style*=";color: rgba(255, 255, 255, 0.5"],[style*=";color:rgba(255, 255, 255, 0.5"],[style*=" color: rgba(255, 255, 255, 0.5"],[style*=" color:rgba(255, 255, 255, 0.5"],[style*="fill: rgba(255, 255, 255, 0.5"],[style*="fill:rgba(255, 255, 255, 0.5"],[style^="color: rgba(255, 255, 255, 0.6"],[style^="color:rgba(255, 255, 255, 0.6"],[style*=";color: rgba(255, 255, 255, 0.6"],[style*=";color:rgba(255, 255, 255, 0.6"],[style*=" color: rgba(255, 255, 255, 0.6"],[style*=" color:rgba(255, 255, 255, 0.6"],[style*="fill: rgba(255, 255, 255, 0.6"],[style*="fill:rgba(255, 255, 255, 0.6"],[style^="color: rgba(255, 255, 255, 0.7"],[style^="color:rgba(255, 255, 255, 0.7"],[style*=";color: rgba(255, 255, 255, 0.7"],[style*=";color:rgba(255, 255, 255, 0.7"],[style*=" color: rgba(255, 255, 255, 0.7"],[style*=" color:rgba(255, 255, 255, 0.7"],[style*="fill: rgba(255, 255, 255, 0.7"],[style*="fill:rgba(255, 255, 255, 0.7"]){caret-color:var(--theme--fg-secondary,#9b9b9b)!important;text-decoration-color:currentColor;fill:var(--theme--fg-secondary,#9b9b9b)!important;color:var(--theme--fg-secondary,#9b9b9b)!important}.notion-body.dark :is([style*="caret-color: rgba(255, 255, 255, 0.81)"],[style*="caret-color:rgba(255, 255, 255, 0.81)"],[style*="caret-color: rgb(211, 211, 211)"],[style*="caret-color:rgb(211, 211, 211)"],[style*="caret-color: rgb(255, 255, 255)"],[style*="caret-color:rgb(255, 255, 255)"],[style*="caret-color: rgba(255, 255, 255, 0.8"],[style*="caret-color:rgba(255, 255, 255, 0.8"],[style*="caret-color: rgba(255, 255, 255, 0.9"],[style*="caret-color:rgba(255, 255, 255, 0.9"],[style*="caret-color: rgba(255, 255, 255, 1"],[style*="caret-color:rgba(255, 255, 255, 1"]){caret-color:var(--theme--fg-primary,rgba(255,255,255,0.81))!important}.notion-body.dark :is([style*="caret-color: rgb(155, 155, 155)"],[style*="caret-color:rgb(155, 155, 155)"],[style*="caret-color: rgb(127, 127, 127)"],[style*="caret-color:rgb(127, 127, 127)"],[style*="caret-color: rgba(255, 255, 255, 0.0"],[style*="caret-color:rgba(255, 255, 255, 0.0"],[style*="caret-color: rgba(255, 255, 255, 0.1"],[style*="caret-color:rgba(255, 255, 255, 0.1"],[style*="caret-color: rgba(255, 255, 255, 0.2"],[style*="caret-color:rgba(255, 255, 255, 0.2"],[style*="caret-color: rgba(255, 255, 255, 0.3"],[style*="caret-color:rgba(255, 255, 255, 0.3"],[style*="caret-color: rgba(255, 255, 255, 0.4"],[style*="caret-color:rgba(255, 255, 255, 0.4"],[style*="caret-color: rgba(255, 255, 255, 0.5"],[style*="caret-color:rgba(255, 255, 255, 0.5"],[style*="caret-color: rgba(255, 255, 255, 0.6"],[style*="caret-color:rgba(255, 255, 255, 0.6"],[style*="caret-color: rgba(255, 255, 255, 0.7"],[style*="caret-color:rgba(255, 255, 255, 0.7"]){caret-color:var(--theme--fg-secondary,#9b9b9b)!important}.notion-body.dark [style*="-webkit-text-fill-color:"]{-webkit-text-fill-color:var(--theme--fg-secondary,#9b9b9b)!important}.notion-body.dark [style*="height: 1px;"][style*=background]{background:var(--theme--fg-border,#2f2f2f)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(155, 155, 155);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(155, 155, 155, 1);"]{color:var(--theme--fg-gray,#9b9b9b)!important;fill:var(--theme--fg-gray,#9b9b9b)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(186, 133, 111);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(186, 133, 111, 1);"]{color:var(--theme--fg-brown,#ba856f)!important;fill:var(--theme--fg-brown,#ba856f)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(199, 125, 72);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(199, 125, 72, 1);"]{color:var(--theme--fg-orange,#c77d48)!important;fill:var(--theme--fg-orange,#c77d48)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(202, 152, 73);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(202, 152, 73, 1);"]{color:var(--theme--fg-yellow,#ca9849)!important;fill:var(--theme--fg-yellow,#ca9849)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(82, 158, 114);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(82, 158, 114, 1);"]{color:var(--theme--fg-green,#529e72)!important;fill:var(--theme--fg-green,#529e72)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(94, 135, 201);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(94, 135, 201, 1);"]{color:var(--theme--fg-blue,#5e87c9)!important;fill:var(--theme--fg-blue,#5e87c9)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(157, 104, 211);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(157, 104, 211, 1);"]{color:var(--theme--fg-purple,#9d68d3)!important;fill:var(--theme--fg-purple,#9d68d3)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(209, 87, 150);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(209, 87, 150, 1);"]{color:var(--theme--fg-pink,#d15796)!important;fill:var(--theme--fg-pink,#d15796)!important}.notion-body.dark .notion-text-block>[style*="color:"][style*="fill:"][style*="color: rgb(223, 84, 82);"],.notion-body.dark :is(.notion-selectable .notion-enable-hover,.notion-code-block span.token)[style*="color:rgba(223, 84, 82, 1);"]{color:var(--theme--fg-red,#df5452)!important;fill:var(--theme--fg-red,#df5452)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(28, 28, 28)"] [style*="height: 32px"],[style*="rgb(28, 28, 28)"]>[style*=color]:nth-child(2),[style*="rgb(28, 28, 28)"]>div>svg){color:var(--theme--fg-secondary,#7f7f7f)!important;fill:var(--theme--fg-secondary,#7f7f7f)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(32, 32, 32)"] [style*="height: 32px"],[style*="rgb(32, 32, 32)"]>[style*=color]:nth-child(2),[style*="rgb(32, 32, 32)"]>div>svg){color:var(--theme--fg-gray,#7f7f7f)!important;fill:var(--theme--fg-gray,#7f7f7f)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(35, 30, 28)"] [style*="height: 32px"],[style*="rgb(35, 30, 28)"]>[style*=color]:nth-child(2),[style*="rgb(35, 30, 28)"]>div>svg){color:var(--theme--fg-brown,#845641)!important;fill:var(--theme--fg-brown,#845641)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(37, 31, 27)"] [style*="height: 32px"],[style*="rgb(37, 31, 27)"]>[style*=color]:nth-child(2),[style*="rgb(37, 31, 27)"]>div>svg){color:var(--theme--fg-orange,#a75b1a)!important;fill:var(--theme--fg-orange,#a75b1a)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(35, 31, 26)"] [style*="height: 32px"],[style*="rgb(35, 31, 26)"]>[style*=color]:nth-child(2),[style*="rgb(35, 31, 26)"]>div>svg){color:var(--theme--fg-yellow,#9b6e23)!important;fill:var(--theme--fg-yellow,#9b6e23)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(29, 34, 32)"] [style*="height: 32px"],[style*="rgb(29, 34, 32)"]>[style*=color]:nth-child(2),[style*="rgb(29, 34, 32)"]>div>svg){color:var(--theme--fg-green,#2d7650)!important;fill:var(--theme--fg-green,#2d7650)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(27, 31, 34)"] [style*="height: 32px"],[style*="rgb(27, 31, 34)"]>[style*=color]:nth-child(2),[style*="rgb(27, 31, 34)"]>div>svg){color:var(--theme--fg-blue,#295a95)!important;fill:var(--theme--fg-blue,#295a95)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(31, 29, 33)"] [style*="height: 32px"],[style*="rgb(31, 29, 33)"]>[style*=color]:nth-child(2),[style*="rgb(31, 29, 33)"]>div>svg){color:var(--theme--fg-purple,#704a96)!important;fill:var(--theme--fg-purple,#704a96)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(35, 28, 31)"] [style*="height: 32px"],[style*="rgb(35, 28, 31)"]>[style*=color]:nth-child(2),[style*="rgb(35, 28, 31)"]>div>svg){color:var(--theme--fg-pink,#903a65)!important;fill:var(--theme--fg-pink,#903a65)!important}.notion-body.dark .notion-board-view :is(.notion-board-group[style*="rgb(36, 30, 29)"] [style*="height: 32px"],[style*="rgb(36, 30, 29)"]>[style*=color]:nth-child(2),[style*="rgb(36, 30, 29)"]>div>svg){color:var(--theme--fg-red,#8f3a35)!important;fill:var(--theme--fg-red,#8f3a35)!important}.notion-body.dark .notion-overlay-container [data-overlay] :is([style*="height: 100%; width: 275px;"][style*="flex-direction: column;"],.notion-space-settings [style*="flex-grow: 1"]>[style*=background-color]),.notion-body.dark .notion-timeline-view,.notion-body.dark :is([style*="background: rgb(25, 25, 25)"],[style*="background:rgb(25, 25, 25)"],[style*="background-color: rgb(25, 25, 25)"],[style*="background-color:rgb(25, 25, 25)"]):not(.notion-timeline-view){background:var(--theme--bg-primary,#191919)!important}.notion-body.dark .notion-overlay-container [data-overlay] :is([style*="height: 100%; width: 275px;"][style*="flex-direction: column;"]+[style*="width: 100%;"],.notion-space-settings [style*="height: 100%; background:"][style*="max-width: 250px;"]),.notion-body.dark :is(.notion-overlay-container [style*="border-radius: 4px;"][style*="position: relative; max-width: calc(100vw - 24px); box-shadow:"],[style*="font-size: 12px;"][style*="box-shadow:"][style*="border-radius: 3px; max-width: calc(100% - 16px); min-height: 24px; overflow: hidden;"][style*="position: absolute; right: 8px; bottom: 8px; z-index:"],[style*="height: 32px;"][style*="font-size: 14px; line-height: 1.2; border-radius: 5px; box-shadow:"],[style*="transition: background"][style*="cursor: pointer;"][style*="border-radius: 3px; height: 24px; width: 24px;"][style*="box-shadow:"],[style*="right: 6px; top: 4px;"][style*="border-radius: 4px;"][style*="gap: 1px;"][style*="box-shadow:"])[style*="; background: rgb(37, 37, 37);"],.notion-body.dark :is(.notion-timeline-item,.notion-calendar-view .notion-collection-item>a,.notion-gallery-view .notion-collection-item>a)[style*="; background: rgb(37, 37, 37);"],.notion-body.dark :is([style*="background: rgb(32, 32, 32)"],[style*="background:rgb(32, 32, 32)"],[style*="background-color: rgb(32, 32, 32)"],[style*="background-color:rgb(32, 32, 32)"],[style*="background: rgb(37, 37, 37)"],[style*="background:rgb(37, 37, 37)"],[style*="background-color: rgb(37, 37, 37)"],[style*="background-color:rgb(37, 37, 37)"],[style*="background: rgb(47, 47, 47)"],[style*="background:rgb(47, 47, 47)"],[style*="background-color: rgb(47, 47, 47)"],[style*="background-color:rgb(47, 47, 47)"]){background:var(--theme--bg-secondary,#202020)!important}.notion-body.dark :is([style*="background: rgb(47, 47, 47)"],[style*="background-color: rgb(47, 47, 47)"])[style*="transition: background"]:hover,.notion-body.dark :is([style*="background: rgba(255, 255, 255, 0.055)"],[style*="background:rgba(255, 255, 255, 0.055)"],[style*="background-color: rgba(255, 255, 255, 0.055)"],[style*="background-color:rgba(255, 255, 255, 0.055)"]),.notion-body.dark [style*="height: 14px; width: 26px; border-radius: 44px;"][style*=rgba]{background:var(--theme--bg-hover,rgba(255,255,255,0.055))!important}.notion-body.dark .notion-overlay-container [data-overlay]>div>[style*="position: absolute"]:first-child{background:var(--theme--bg-overlay,rgba(15,15,15,0.8))!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(55, 55, 55);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(55, 55, 55);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(55, 55, 55);"]{background:var(--theme--bg-light_gray,#373737)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(90, 90, 90);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(90, 90, 90);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(90, 90, 90);"]{background:var(--theme--bg-gray,#5a5a5a)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(96, 59, 44);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(96, 59, 44);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(96, 59, 44);"]{background:var(--theme--bg-brown,#603b2c)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(133, 76, 29);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(133, 76, 29);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(133, 76, 29);"]{background:var(--theme--bg-orange,#854c1d)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(137, 99, 42);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(137, 99, 42);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(137, 99, 42);"]{background:var(--theme--bg-yellow,#89632a)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(43, 89, 63);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(43, 89, 63);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(43, 89, 63);"]{background:var(--theme--bg-green,#2b593f)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(40, 69, 108);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(40, 69, 108);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(40, 69, 108);"]{background:var(--theme--bg-blue,#28456c)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(73, 47, 100);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(73, 47, 100);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(73, 47, 100);"]{background:var(--theme--bg-purple,#492f64)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(105, 49, 76);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(105, 49, 76);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(105, 49, 76);"]{background:var(--theme--bg-pink,#69314c)!important}.notion-body.dark .notion-collection_view-block [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(110, 54, 48);"],.notion-body.dark :is(.notion-timeline-item-properties [style*="height: 18px; border-radius: 3px; padding-left: 8px;"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="; background: rgb(110, 54, 48);"],.notion-body.dark [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(110, 54, 48);"]{background:var(--theme--bg-red,#6e3630)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(32, 32, 32)"] a,.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(47, 47, 47, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(47, 47, 47);"]{background:var(--theme--bg-gray,#2f2f2f)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(74, 50, 40, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(74, 50, 40);"]{background:var(--theme--bg-brown,#4a3228)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(92, 59, 35, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(92, 59, 35);"]{background:var(--theme--bg-orange,#5c3b23)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(86, 67, 40, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(86, 67, 40);"]{background:var(--theme--bg-yellow,#564328)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(36, 61, 48, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(36, 61, 48);"]{background:var(--theme--bg-green,#243d30)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(20, 58, 78, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(20, 58, 78);"]{background:var(--theme--bg-blue,#143a4e)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(60, 45, 73, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(60, 45, 73);"]{background:var(--theme--bg-purple,#3c2d49)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(78, 44, 60, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(78, 44, 60);"]{background:var(--theme--bg-pink,#4e2c3c)!important}.notion-body.dark .notion-selectable .notion-enable-hover[style*="background:"][style*="background:rgba(82, 46, 42, 1)"],.notion-body.dark :is(.notion-text-block>[style*="background:"],.notion-collection_view-block .notion-collection-item a>.notion-focusable)[style*="background: rgb(82, 46, 42);"]{background:var(--theme--bg-red,#522e2a)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(28, 28, 28)"] a{background:var(--theme--bg-light_gray,#2f2f2f)!important}.notion-body.dark .notion-board-view [style*="rgb(28, 28, 28)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-light_gray,#1c1c1c)!important}.notion-body.dark .notion-board-view [style*="rgb(32, 32, 32)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-gray,#202020)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(35, 30, 28)"] a{background:var(--theme--bg-brown,#362822)!important}.notion-body.dark .notion-board-view [style*="rgb(35, 30, 28)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-brown,#231e1c)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(37, 31, 27)"] a{background:var(--theme--bg-orange,#422f22)!important}.notion-body.dark .notion-board-view [style*="rgb(37, 31, 27)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-orange,#251f1b)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(35, 31, 26)"] a{background:var(--theme--bg-yellow,#403324)!important}.notion-body.dark .notion-board-view [style*="rgb(35, 31, 26)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-yellow,#231f1a)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(29, 34, 32)"] a{background:var(--theme--bg-green,#23312a)!important}.notion-body.dark .notion-board-view [style*="rgb(29, 34, 32)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-green,#1d2220)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(27, 31, 34)"] a{background:var(--theme--bg-blue,#1b2d38)!important}.notion-body.dark .notion-board-view [style*="rgb(27, 31, 34)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-blue,#1b1f22)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(31, 29, 33)"] a{background:var(--theme--bg-purple,#302739)!important}.notion-body.dark .notion-board-view [style*="rgb(31, 29, 33)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-purple,#1f1d21)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(35, 28, 31)"] a{background:var(--theme--bg-pink,#3b2730)!important}.notion-body.dark .notion-board-view [style*="rgb(35, 28, 31)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-pink,#231c1f)!important}.notion-body.dark .notion-board-view .notion-board-group[style*="rgb(36, 30, 29)"] a{background:var(--theme--bg-red,#3e2825)!important}.notion-body.dark .notion-board-view [style*="rgb(36, 30, 29)"]:is(.notion-board-group,[style*="border-top-left-radius: 5px;"]){background:var(--theme--dim-red,#241e1d)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(37, 37, 37);"]{background:var(--theme--dim-gray,#252525)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(47, 39, 35);"]{background:var(--theme--dim-brown,#2f2723)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(56, 40, 30);"]{background:var(--theme--dim-orange,#38281e)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(57, 46, 30);"]{background:var(--theme--dim-yellow,#392e1e)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(34, 43, 38);"]{background:var(--theme--dim-green,#222b26)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(29, 40, 46);"]{background:var(--theme--dim-blue,#1d282e)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(43, 36, 49);"]{background:var(--theme--dim-purple,#2b2431)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(48, 34, 40);"]{background:var(--theme--dim-pink,#302228)!important}.notion-body.dark .notion-callout-block>div>div[style*="; background: rgb(54, 36, 34);"]{background:var(--theme--dim-red,#362422)!important}[style*="background-color: rgba(255, 212, 0, 0.14)"],[style*="background-color:rgba(255, 212, 0, 0.14)"],[style*="background: rgba(255, 212, 0, 0.14)"],[style*="background:rgba(255, 212, 0, 0.14)"]{background:var(--theme--bg-yellow,rgba(255,212,0,0.14))!important}.notion-body.dark [style*="height: 18px; border-radius: 3px; background"][style*="; background: rgba(255, 255, 255, 0.094);"]{background:var(--theme--bg-light_gray,rgba(255,255,255,0.094))!important}[style*=" color: rgb(35, 131, 226)"],[style*=" color:rgb(35, 131, 226)"],[style*=";color: rgb(35, 131, 226)"],[style*=";color:rgb(35, 131, 226)"],[style*="fill: rgb(35, 131, 226)"],[style*="fill:rgb(35, 131, 226)"],[style^="color: rgb(35, 131, 226)"],[style^="color:rgb(35, 131, 226)"]{color:var(--theme--accent-primary,#2383e2)!important;fill:var(--theme--accent-primary,#2383e2)!important}[style*="background-color: rgb(35, 131, 226)"],[style*="background-color:rgb(35, 131, 226)"],[style*="background: rgb(35, 131, 226)"],[style*="background:rgb(35, 131, 226)"]{fill:var(--theme--accent-primary_contrast,#fff)!important;color:var(--theme--accent-primary_contrast,#fff)!important;background:var(--theme--accent-primary,#2383e2)!important}[style*="background-color: rgb(0, 117, 211)"],[style*="background-color:rgb(0, 117, 211)"],[style*="background: rgb(0, 117, 211)"],[style*="background:rgb(0, 117, 211)"]{fill:var(--theme--accent-primary_contrast,#fff)!important;color:var(--theme--accent-primary_contrast,#fff)!important;background:var(--theme--accent-primary_hover,#0075d3)!important}.notion-table-selection-overlay [style*="border: 2px solid"]{border-color:var(--theme--accent-primary,#2383e2)!important}[style*="border-radius: 44px;"]>[style*="border-radius: 44px; background: white;"]{background:var(--theme--accent-primary_contrast,#fff)!important}#notion-app .rdp-day:not(.rdp-day_disabled):not(.rdp-day_selected):not(.rdp-day_value):not(.rdp-day_start):not(.rdp-day_end):hover,.notion-selectable-halo,::selection,[style*="background-color: rgba(35, 131, 226, 0."],[style*="background-color:rgba(35, 131, 226, 0."],[style*="background: rgba(35, 131, 226, 0."],[style*="background:rgba(35, 131, 226, 0."]{background:var(--theme--accent-primary_transparent,rgba(35,131,226,0.14))!important}[style*=" color: rgb(180, 65, 60)"],[style*=" color: rgb(205, 73, 69)"],[style*=" color: rgb(211, 79, 67)"],[style*=" color: rgb(235, 87, 87)"],[style*=" color:rgb(180, 65, 60)"],[style*=" color:rgb(205, 73, 69)"],[style*=" color:rgb(211, 79, 67)"],[style*=" color:rgb(235, 87, 87)"],[style*=";color: rgb(180, 65, 60)"],[style*=";color: rgb(205, 73, 69)"],[style*=";color: rgb(211, 79, 67)"],[style*=";color: rgb(235, 87, 87)"],[style*=";color:rgb(180, 65, 60)"],[style*=";color:rgb(205, 73, 69)"],[style*=";color:rgb(211, 79, 67)"],[style*=";color:rgb(235, 87, 87)"],[style*="fill: rgb(180, 65, 60)"],[style*="fill: rgb(205, 73, 69)"],[style*="fill: rgb(211, 79, 67)"],[style*="fill: rgb(235, 87, 87)"],[style*="fill:rgb(180, 65, 60)"],[style*="fill:rgb(205, 73, 69)"],[style*="fill:rgb(211, 79, 67)"],[style*="fill:rgb(235, 87, 87)"],[style^="color: rgb(180, 65, 60)"],[style^="color: rgb(205, 73, 69)"],[style^="color: rgb(211, 79, 67)"],[style^="color: rgb(235, 87, 87)"],[style^="color:rgb(180, 65, 60)"],[style^="color:rgb(205, 73, 69)"],[style^="color:rgb(211, 79, 67)"],[style^="color:rgb(235, 87, 87)"]{color:var(--theme--accent-secondary,#eb5757)!important;fill:var(--theme--accent-secondary,#eb5757)!important}#notion-app .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not(.rdp-day_start):not(.rdp-day_end)::after,[style*="background-color: rgb(180, 65, 60)"],[style*="background-color: rgb(205, 73, 69)"],[style*="background-color: rgb(211, 79, 67)"],[style*="background-color: rgb(235, 87, 87)"],[style*="background-color:rgb(180, 65, 60)"],[style*="background-color:rgb(205, 73, 69)"],[style*="background-color:rgb(211, 79, 67)"],[style*="background-color:rgb(235, 87, 87)"],[style*="background: rgb(180, 65, 60)"],[style*="background: rgb(205, 73, 69)"],[style*="background: rgb(211, 79, 67)"],[style*="background: rgb(235, 87, 87)"],[style*="background:rgb(180, 65, 60)"],[style*="background:rgb(205, 73, 69)"],[style*="background:rgb(211, 79, 67)"],[style*="background:rgb(235, 87, 87)"]{fill:var(--theme--accent-secondary_contrast,white)!important;color:var(--theme--accent-secondary_contrast,white)!important;background:var(--theme--accent-secondary,#eb5757)!important}#notion-app .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not(.rdp-day_start):not(.rdp-day_end),:is([style*="background: rgb(235, 87, 87)"],[style*="background:rgb(235, 87, 87)"],[style*="background-color: rgb(235, 87, 87)"],[style*="background-color:rgb(235, 87, 87)"],[style*="background: rgb(180, 65, 60)"],[style*="background:rgb(180, 65, 60)"],[style*="background-color: rgb(180, 65, 60)"],[style*="background-color:rgb(180, 65, 60)"],[style*="background: rgb(211, 79, 67)"],[style*="background:rgb(211, 79, 67)"],[style*="background-color: rgb(211, 79, 67)"],[style*="background-color:rgb(211, 79, 67)"],[style*="background: rgb(205, 73, 69)"],[style*="background:rgb(205, 73, 69)"],[style*="background-color: rgb(205, 73, 69)"],[style*="background-color:rgb(205, 73, 69)"]) :is([style*="fill: white;"],[style*="color: white;"]),:is([style*="background: rgb(235, 87, 87)"],[style*="background:rgb(235, 87, 87)"],[style*="background-color: rgb(235, 87, 87)"],[style*="background-color:rgb(235, 87, 87)"],[style*="background: rgb(180, 65, 60)"],[style*="background:rgb(180, 65, 60)"],[style*="background-color: rgb(180, 65, 60)"],[style*="background-color:rgb(180, 65, 60)"],[style*="background: rgb(211, 79, 67)"],[style*="background:rgb(211, 79, 67)"],[style*="background-color: rgb(211, 79, 67)"],[style*="background-color:rgb(211, 79, 67)"],[style*="background: rgb(205, 73, 69)"],[style*="background:rgb(205, 73, 69)"],[style*="background-color: rgb(205, 73, 69)"],[style*="background-color:rgb(205, 73, 69)"])+:is([style*="fill: white;"],[style*="color: white;"]){fill:var(--theme--accent-secondary_contrast,white)!important;color:var(--theme--accent-secondary_contrast,white)!important}[style*="background-color: rgba(235, 87, 87, 0.1)"],[style*="background-color:rgba(235, 87, 87, 0.1)"],[style*="background: rgba(235, 87, 87, 0.1)"],[style*="background:rgba(235, 87, 87, 0.1)"]{background:var(--theme--accent-secondary_transparent,rgba(235,87,87,0.1))!important}.notion-body.dark ::-webkit-scrollbar-corner,.notion-body.dark ::-webkit-scrollbar-track{background:var(--theme--scrollbar-track,rgba(202,204,206,0.04))!important}.notion-body.dark ::-webkit-scrollbar-thumb{background:var(--theme--scrollbar-thumb,#474c50)!important}.notion-body.dark ::-webkit-scrollbar-thumb:hover{background:var(--theme--scrollbar-thumb_hover,rgba(202,204,206,0.3))!important}.notion-body.dark .notion-text-block .notion-enable-hover[style*=mono][style*=";color:#EB5757;"]{color:var(--theme--code-inline_fg,#eb5757)!important;fill:var(--theme--code-inline_fg,#eb5757)!important}.notion-body.dark .notion-text-block .notion-enable-hover[style*=mono][style*=";background:rgba(135,131,120,0.15);"]{background:var(--theme--code-inline_bg,rgba(135,131,120,0.15))!important}.notion-body.dark .notion-code-block>[style*=mono][style*="; color: rgba(255, 255, 255, 0.81);"]{color:var(--theme--code-block_fg,rgba(255,255,255,0.81))!important;fill:var(--theme--code-block_fg,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block>div>[style*=background][style*="; background: rgba(255, 255, 255, 0.03);"]{background:var(--theme--code-block_bg,rgba(255,255,255,0.03))!important}.notion-body.dark .notion-code-block .token.keyword{color:var(--theme--code-keyword,#d1949e)!important;fill:var(--theme--code-keyword,#d1949e)!important}.notion-body.dark .notion-code-block .token.builtin{color:var(--theme--code-builtin,#bde052)!important;fill:var(--theme--code-builtin,#bde052)!important}.notion-body.dark .notion-code-block .token.class-name{color:var(--theme--code-class_name,rgba(255,255,255,0.81))!important;fill:var(--theme--code-class_name,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.function{color:var(--theme--code-function,rgba(255,255,255,0.81))!important;fill:var(--theme--code-function,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.boolean{color:var(--theme--code-boolean,#d1949e)!important;fill:var(--theme--code-boolean,#d1949e)!important}.notion-body.dark .notion-code-block .token.number{color:var(--theme--code-number,#d1949e)!important;fill:var(--theme--code-number,#d1949e)!important}.notion-body.dark .notion-code-block .token.string{color:var(--theme--code-string,#bde052)!important;fill:var(--theme--code-string,#bde052)!important}.notion-body.dark .notion-code-block .token.char{color:var(--theme--code-char,#bde052)!important;fill:var(--theme--code-char,#bde052)!important}.notion-body.dark .notion-code-block .token.symbol{color:var(--theme--code-symbol,#d1949e)!important;fill:var(--theme--code-symbol,#d1949e)!important}.notion-body.dark .notion-code-block .token.regex{color:var(--theme--code-regex,#e90)!important;fill:var(--theme--code-regex,#e90)!important}.notion-body.dark .notion-code-block .token.url{color:var(--theme--code-url,#f5b83d)!important;fill:var(--theme--code-url,#f5b83d)!important}.notion-body.dark .notion-code-block .token.operator{color:var(--theme--code-operator,#f5b83d)!important;fill:var(--theme--code-operator,#f5b83d)!important}.notion-body.dark .notion-code-block .token.variable{color:var(--theme--code-variable,#f5b83d)!important;fill:var(--theme--code-variable,#f5b83d)!important}.notion-body.dark .notion-code-block .token.constant{color:var(--theme--code-constant,#d1949e)!important;fill:var(--theme--code-constant,#d1949e)!important}.notion-body.dark .notion-code-block .token.property{color:var(--theme--code-property,#d1949e)!important;fill:var(--theme--code-property,#d1949e)!important}.notion-body.dark .notion-code-block .token.punctuation{color:var(--theme--code-punctuation,rgba(255,255,255,0.81))!important;fill:var(--theme--code-punctuation,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.important{color:var(--theme--code-important,#e90)!important;fill:var(--theme--code-important,#e90)!important}.notion-body.dark .notion-code-block .token.comment{color:var(--theme--code-comment,#998066)!important;fill:var(--theme--code-comment,#998066)!important}.notion-body.dark .notion-code-block .token.tag{color:var(--theme--code-tag,#d1949e)!important;fill:var(--theme--code-tag,#d1949e)!important}.notion-body.dark .notion-code-block .token.attr-name{color:var(--theme--code-attr_name,#bde052)!important;fill:var(--theme--code-attr_name,#bde052)!important}.notion-body.dark .notion-code-block .token.attr-value{color:var(--theme--code-attr_value,#d1949e)!important;fill:var(--theme--code-attr_value,#d1949e)!important}.notion-body.dark .notion-code-block .token.namespace{color:var(--theme--code-namespace,rgba(255,255,255,0.81))!important;fill:var(--theme--code-namespace,rgba(255,255,255,0.81))!important}.notion-body.dark .notion-code-block .token.prolog{color:var(--theme--code-prolog,#998066)!important;fill:var(--theme--code-prolog,#998066)!important}.notion-body.dark .notion-code-block .token.doctype{color:var(--theme--code-doctype,#998066)!important;fill:var(--theme--code-doctype,#998066)!important}.notion-body.dark .notion-code-block .token.cdata{color:var(--theme--code-cdata,#998066)!important;fill:var(--theme--code-cdata,#998066)!important}.notion-body.dark .notion-code-block .token.entity{color:var(--theme--code-entity,#f5b83d)!important;fill:var(--theme--code-entity,#f5b83d)!important}.notion-body.dark .notion-code-block .token.atrule{color:var(--theme--code-atrule,#d1949e)!important;fill:var(--theme--code-atrule,#d1949e)!important}.notion-body.dark .notion-code-block .token.selector{color:var(--theme--code-selector,#bde052)!important;fill:var(--theme--code-selector,#bde052)!important}.notion-body.dark .notion-code-block .token.inserted{color:var(--theme--code-inserted,#bde052)!important;fill:var(--theme--code-inserted,#bde052)!important}.notion-body.dark .notion-code-block .token.deleted{color:var(--theme--code-deleted,red)!important;fill:var(--theme--code-deleted,red)!important}.notion-body.dark :is([style*="px solid rgb(47, 47, 47"],[style*="px solid rgba(47, 47, 47"],[style*="px solid rgb(37, 37, 37"],[style*="px solid rgba(37, 37, 37"],[style*="px solid rgb(255, 255, 255"],[style*="px solid rgba(255, 255, 255"]):is([style*="border:"],[style*="border-top:"],[style*="border-left:"],[style*="border-bottom:"],[style*="border-right:"]){border-color:var(--theme--fg-border,#2f2f2f)!important}.notion-body.dark [style*=" box-shadow: rgba(255, 255, 255, 0.094) 0px -1px 0px;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0-1px 0!important}.notion-body.dark [style*=" box-shadow: rgba(15, 15, 15, 0.2) 0px 0px 0px 1px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0 0 0 1px inset!important}.notion-body.dark [style*=" box-shadow: rgb(25, 25, 25) -3px 0px 0px, rgb(47, 47, 47) 0px 1px 0px;"]{box-shadow:transparent -3px 0 0,transparent 0 1px 0!important}.notion-body.dark [style*=" box-shadow: rgba(255, 255, 255, 0.05) -1px 0px 0px 0px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f) -1px 0 0 0 inset!important}.notion-body.dark [style*=" box-shadow: rgb(47, 47, 47) 0px -1px 0px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0-1px 0 inset!important}.notion-body.dark [style*=" box-shadow: rgba(255, 255, 255, 0.13) 1px 0px 0px inset;"]{box-shadow:var(--theme--fg-border,#2f2f2f) 1px 0 0 inset!important}.notion-body.dark [style*=" box-shadow: rgb(47, 47, 47) 0px 1px 0px;"]{box-shadow:var(--theme--fg-border,#2f2f2f)0 1px 0!important}.notion-body.dark [style*="box-shadow: rgb(47, 47, 47) -1px 0px 0px;"]{box-shadow:var(--theme--fg-border,#2f2f2f) -1px 0 0!important}[style*="linear-gradient(to left, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"]{background-image:linear-gradient(to left,var(--theme--bg-primary,#191919) 20%,transparent 100%)!important}[style*="linear-gradient(to right, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"]{background-image:linear-gradient(to right,var(--theme--bg-primary,#191919) 20%,transparent 100%)!important}.notion-overlay-container [style*="border-radius: 3px; background:"][style*="max-width: calc(100vw - 24px); box-shadow:"][style*="padding: 4px 8px; font-size: 12px; line-height: 1.4; font-weight: 500;"]{background:#0f0f0f!important;color:rgba(255,255,255,.9)!important}.notion-overlay-container [style*="border-radius: 3px; background:"][style*="max-width: calc(100vw - 24px); box-shadow:"][style*="padding: 4px 8px; font-size: 12px; line-height: 1.4; font-weight: 500;"]>[style*=color]{color:#7f7f7f!important}.notion-focusable-within:focus-within{box-shadow:var(--theme--accent-primary,#2383e2)0 0 0 1px inset,var(--theme--accent-primary,#2383e2)0 0 0 2px!important}.notion-focusable:focus-visible{box-shadow:var(--theme--accent-primary,#2383e2)0 0 0 1px inset,var(--theme--accent-primary,#2383e2)0 0 0 2px!important}[style*="box-shadow: rgb(35, 131, 226) 0px 0px 0px 2px inset"]{box-shadow:var(--theme--accent-primary,#2383e2)0 0 0 2px inset!important}[style*="border-right: 1px solid rgb(180, 65, 60)"],[style*="border-right: 1px solid rgb(211, 79, 67)"],[style*="border: 1px solid rgb(110, 54, 48)"],[style*="border: 1px solid rgba(235, 87, 87, 0.5)"],[style*="border: 2px solid rgb(110, 54, 48)"],[style*="border: 2px solid rgb(227, 134, 118)"]{border-color:var(--theme--accent-secondary,#eb5757)!important}.token:is(.operator,.entity,.url,:is(.language-css,.style) .string){background:0 0!important} \ No newline at end of file + +.notion-body:not(.dark) + :is( + [style^="color: rgb(55, 53, 47)"], + [style^="color:rgb(55, 53, 47)"], + [style*=";color: rgb(55, 53, 47)"], + [style*=";color:rgb(55, 53, 47)"], + [style*=" color: rgb(55, 53, 47)"], + [style*=" color:rgb(55, 53, 47)"], + [style*="fill: rgb(55, 53, 47)"], + [style*="fill:rgb(55, 53, 47)"], + [style^="color: rgba(255, 255, 255, 0.9)"], + [style^="color:rgba(255, 255, 255, 0.9)"], + [style*=";color: rgba(255, 255, 255, 0.9)"], + [style*=";color:rgba(255, 255, 255, 0.9)"], + [style*=" color: rgba(255, 255, 255, 0.9)"], + [style*=" color:rgba(255, 255, 255, 0.9)"], + [style*="fill: rgba(255, 255, 255, 0.9)"], + [style*="fill:rgba(255, 255, 255, 0.9)"], + [style^="color: rgba(55, 53, 47, 0.8"], + [style^="color:rgba(55, 53, 47, 0.8"], + [style*=";color: rgba(55, 53, 47, 0.8"], + [style*=";color:rgba(55, 53, 47, 0.8"], + [style*=" color: rgba(55, 53, 47, 0.8"], + [style*=" color:rgba(55, 53, 47, 0.8"], + [style*="fill: rgba(55, 53, 47, 0.8"], + [style*="fill:rgba(55, 53, 47, 0.8"], + [style^="color: rgba(55, 53, 47, 0.9"], + [style^="color:rgba(55, 53, 47, 0.9"], + [style*=";color: rgba(55, 53, 47, 0.9"], + [style*=";color:rgba(55, 53, 47, 0.9"], + [style*=" color: rgba(55, 53, 47, 0.9"], + [style*=" color:rgba(55, 53, 47, 0.9"], + [style*="fill: rgba(55, 53, 47, 0.9"], + [style*="fill:rgba(55, 53, 47, 0.9"], + [style^="color: rgba(55, 53, 47, 1"], + [style^="color:rgba(55, 53, 47, 1"], + [style*=";color: rgba(55, 53, 47, 1"], + [style*=";color:rgba(55, 53, 47, 1"], + [style*=" color: rgba(55, 53, 47, 1"], + [style*=" color:rgba(55, 53, 47, 1"], + [style*="fill: rgba(55, 53, 47, 1"], + [style*="fill:rgba(55, 53, 47, 1"] + ) { + caret-color: var(--theme--fg-primary, #37352f) !important; + text-decoration-color: currentColor; + fill: var(--theme--fg-primary, #37352f) !important; + color: var(--theme--fg-primary, #37352f) !important; +} +.notion-body:not(.dark) + :is(.rdp-nav_icon, .rdp-head_cell, .rdp-day.rdp-day_outside, ::placeholder), +.notion-body:not(.dark) + :is( + [style^="color: rgba(25, 23, 17, 0.6)"], + [style^="color:rgba(25, 23, 17, 0.6)"], + [style*=";color: rgba(25, 23, 17, 0.6)"], + [style*=";color:rgba(25, 23, 17, 0.6)"], + [style*=" color: rgba(25, 23, 17, 0.6)"], + [style*=" color:rgba(25, 23, 17, 0.6)"], + [style*="fill: rgba(25, 23, 17, 0.6)"], + [style*="fill:rgba(25, 23, 17, 0.6)"], + [style^="color: rgba(206, 205, 202, 0.6)"], + [style^="color:rgba(206, 205, 202, 0.6)"], + [style*=";color: rgba(206, 205, 202, 0.6)"], + [style*=";color:rgba(206, 205, 202, 0.6)"], + [style*=" color: rgba(206, 205, 202, 0.6)"], + [style*=" color:rgba(206, 205, 202, 0.6)"], + [style*="fill: rgba(206, 205, 202, 0.6)"], + [style*="fill:rgba(206, 205, 202, 0.6)"], + [style^="color: rgba(55, 53, 47, 0.0"], + [style^="color:rgba(55, 53, 47, 0.0"], + [style*=";color: rgba(55, 53, 47, 0.0"], + [style*=";color:rgba(55, 53, 47, 0.0"], + [style*=" color: rgba(55, 53, 47, 0.0"], + [style*=" color:rgba(55, 53, 47, 0.0"], + [style*="fill: rgba(55, 53, 47, 0.0"], + [style*="fill:rgba(55, 53, 47, 0.0"], + [style^="color: rgba(55, 53, 47, 0.1"], + [style^="color:rgba(55, 53, 47, 0.1"], + [style*=";color: rgba(55, 53, 47, 0.1"], + [style*=";color:rgba(55, 53, 47, 0.1"], + [style*=" color: rgba(55, 53, 47, 0.1"], + [style*=" color:rgba(55, 53, 47, 0.1"], + [style*="fill: rgba(55, 53, 47, 0.1"], + [style*="fill:rgba(55, 53, 47, 0.1"], + [style^="color: rgba(55, 53, 47, 0.2"], + [style^="color:rgba(55, 53, 47, 0.2"], + [style*=";color: rgba(55, 53, 47, 0.2"], + [style*=";color:rgba(55, 53, 47, 0.2"], + [style*=" color: rgba(55, 53, 47, 0.2"], + [style*=" color:rgba(55, 53, 47, 0.2"], + [style*="fill: rgba(55, 53, 47, 0.2"], + [style*="fill:rgba(55, 53, 47, 0.2"], + [style^="color: rgba(55, 53, 47, 0.3"], + [style^="color:rgba(55, 53, 47, 0.3"], + [style*=";color: rgba(55, 53, 47, 0.3"], + [style*=";color:rgba(55, 53, 47, 0.3"], + [style*=" color: rgba(55, 53, 47, 0.3"], + [style*=" color:rgba(55, 53, 47, 0.3"], + [style*="fill: rgba(55, 53, 47, 0.3"], + [style*="fill:rgba(55, 53, 47, 0.3"], + [style^="color: rgba(55, 53, 47, 0.4"], + [style^="color:rgba(55, 53, 47, 0.4"], + [style*=";color: rgba(55, 53, 47, 0.4"], + [style*=";color:rgba(55, 53, 47, 0.4"], + [style*=" color: rgba(55, 53, 47, 0.4"], + [style*=" color:rgba(55, 53, 47, 0.4"], + [style*="fill: rgba(55, 53, 47, 0.4"], + [style*="fill:rgba(55, 53, 47, 0.4"], + [style^="color: rgba(55, 53, 47, 0.5"], + [style^="color:rgba(55, 53, 47, 0.5"], + [style*=";color: rgba(55, 53, 47, 0.5"], + [style*=";color:rgba(55, 53, 47, 0.5"], + [style*=" color: rgba(55, 53, 47, 0.5"], + [style*=" color:rgba(55, 53, 47, 0.5"], + [style*="fill: rgba(55, 53, 47, 0.5"], + [style*="fill:rgba(55, 53, 47, 0.5"], + [style^="color: rgba(55, 53, 47, 0.6"], + [style^="color:rgba(55, 53, 47, 0.6"], + [style*=";color: rgba(55, 53, 47, 0.6"], + [style*=";color:rgba(55, 53, 47, 0.6"], + [style*=" color: rgba(55, 53, 47, 0.6"], + [style*=" color:rgba(55, 53, 47, 0.6"], + [style*="fill: rgba(55, 53, 47, 0.6"], + [style*="fill:rgba(55, 53, 47, 0.6"], + [style^="color: rgba(55, 53, 47, 0.7"], + [style^="color:rgba(55, 53, 47, 0.7"], + [style*=";color: rgba(55, 53, 47, 0.7"], + [style*=";color:rgba(55, 53, 47, 0.7"], + [style*=" color: rgba(55, 53, 47, 0.7"], + [style*=" color:rgba(55, 53, 47, 0.7"], + [style*="fill: rgba(55, 53, 47, 0.7"], + [style*="fill:rgba(55, 53, 47, 0.7"] + ) { + caret-color: var(--theme--fg-secondary, rgba(25, 23, 17, 0.6)) !important; + text-decoration-color: currentColor; + fill: var(--theme--fg-secondary, rgba(25, 23, 17, 0.6)) !important; + color: var(--theme--fg-secondary, rgba(25, 23, 17, 0.6)) !important; +} +.notion-body:not(.dark) + :is( + [style*="caret-color: rgb(55, 53, 47)"], + [style*="caret-color:rgb(55, 53, 47)"], + [style*="caret-color: rgba(255, 255, 255, 0.9)"], + [style*="caret-color:rgba(255, 255, 255, 0.9)"], + [style*="caret-color: rgba(55, 53, 47, 0.8"], + [style*="caret-color:rgba(55, 53, 47, 0.8"], + [style*="caret-color: rgba(55, 53, 47, 0.9"], + [style*="caret-color:rgba(55, 53, 47, 0.9"], + [style*="caret-color: rgba(55, 53, 47, 1"], + [style*="caret-color:rgba(55, 53, 47, 1"] + ) { + caret-color: var(--theme--fg-primary, #37352f) !important; +} +.notion-body:not(.dark) + :is( + [style*="caret-color: rgba(25, 23, 17, 0.6)"], + [style*="caret-color:rgba(25, 23, 17, 0.6)"], + [style*="caret-color: rgba(206, 205, 202, 0.6)"], + [style*="caret-color:rgba(206, 205, 202, 0.6)"], + [style*="caret-color: rgba(55, 53, 47, 0.0"], + [style*="caret-color:rgba(55, 53, 47, 0.0"], + [style*="caret-color: rgba(55, 53, 47, 0.1"], + [style*="caret-color:rgba(55, 53, 47, 0.1"], + [style*="caret-color: rgba(55, 53, 47, 0.2"], + [style*="caret-color:rgba(55, 53, 47, 0.2"], + [style*="caret-color: rgba(55, 53, 47, 0.3"], + [style*="caret-color:rgba(55, 53, 47, 0.3"], + [style*="caret-color: rgba(55, 53, 47, 0.4"], + [style*="caret-color:rgba(55, 53, 47, 0.4"], + [style*="caret-color: rgba(55, 53, 47, 0.5"], + [style*="caret-color:rgba(55, 53, 47, 0.5"], + [style*="caret-color: rgba(55, 53, 47, 0.6"], + [style*="caret-color:rgba(55, 53, 47, 0.6"], + [style*="caret-color: rgba(55, 53, 47, 0.7"], + [style*="caret-color:rgba(55, 53, 47, 0.7"] + ) { + caret-color: var(--theme--fg-secondary, rgba(25, 23, 17, 0.6)) !important; +} +.notion-body:not(.dark) [style*="-webkit-text-fill-color:"] { + -webkit-text-fill-color: var( + --theme--fg-secondary, + rgba(25, 23, 17, 0.6) + ) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(50, 48, 44);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(50, 48, 44);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(50, 48, 44);"] { + color: var(--theme--fg-primary, #32302c) !important; + fill: var(--theme--fg-primary, #32302c) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(68, 42, 30);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(68, 42, 30);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(68, 42, 30);"] { + color: var(--theme--fg-primary, #442a1e) !important; + fill: var(--theme--fg-primary, #442a1e) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(73, 41, 14);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(73, 41, 14);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(73, 41, 14);"] { + color: var(--theme--fg-primary, #49290e) !important; + fill: var(--theme--fg-primary, #49290e) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(64, 44, 27);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(64, 44, 27);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(64, 44, 27);"] { + color: var(--theme--fg-primary, #402c1b) !important; + fill: var(--theme--fg-primary, #402c1b) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(28, 56, 41);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(28, 56, 41);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(28, 56, 41);"] { + color: var(--theme--fg-primary, #1c3829) !important; + fill: var(--theme--fg-primary, #1c3829) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(24, 51, 71);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(24, 51, 71);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(24, 51, 71);"] { + color: var(--theme--fg-primary, #183347) !important; + fill: var(--theme--fg-primary, #183347) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(65, 36, 84);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(65, 36, 84);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(65, 36, 84);"] { + color: var(--theme--fg-primary, #412454) !important; + fill: var(--theme--fg-primary, #412454) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(76, 35, 55);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(76, 35, 55);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(76, 35, 55);"] { + color: var(--theme--fg-primary, #4c2337) !important; + fill: var(--theme--fg-primary, #4c2337) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; color: rgb(93, 23, 21);"], +.notion-body:not(.dark) + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"][style*="; color: rgb(93, 23, 21);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="background:"][style*="; color: rgb(93, 23, 21);"] { + color: var(--theme--fg-primary, #5d1715) !important; + fill: var(--theme--fg-primary, #5d1715) !important; +} +.notion-body:not(.dark) [style*="height: 1px;"][style*="background"] { + background: var(--theme--fg-border, #e9e9e7) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(120, 119, 116);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(120, 119, 116, 1);"] { + color: var(--theme--fg-gray, #787774) !important; + fill: var(--theme--fg-gray, #787774) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(159, 107, 83);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(159, 107, 83, 1);"] { + color: var(--theme--fg-brown, #9f6b53) !important; + fill: var(--theme--fg-brown, #9f6b53) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(217, 115, 13);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(217, 115, 13, 1);"] { + color: var(--theme--fg-orange, #d9730d) !important; + fill: var(--theme--fg-orange, #d9730d) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(203, 145, 47);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(203, 145, 47, 1);"] { + color: var(--theme--fg-yellow, #cb912f) !important; + fill: var(--theme--fg-yellow, #cb912f) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(68, 131, 97);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(68, 131, 97, 1);"] { + color: var(--theme--fg-green, #448361) !important; + fill: var(--theme--fg-green, #448361) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(51, 126, 169);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(51, 126, 169, 1);"] { + color: var(--theme--fg-blue, #337ea9) !important; + fill: var(--theme--fg-blue, #337ea9) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(144, 101, 176);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(144, 101, 176, 1);"] { + color: var(--theme--fg-purple, #9065b0) !important; + fill: var(--theme--fg-purple, #9065b0) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(193, 76, 138);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(193, 76, 138, 1);"] { + color: var(--theme--fg-pink, #c14c8a) !important; + fill: var(--theme--fg-pink, #c14c8a) !important; +} +.notion-body:not(.dark) + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(212, 76, 71);"], +.notion-body:not(.dark) + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(212, 76, 71, 1);"] { + color: var(--theme--fg-red, #d44c47) !important; + fill: var(--theme--fg-red, #d44c47) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(249, 249, 245, 0.5)"] + [style*="height: 32px"], + [style*="rgba(249, 249, 245, 0.5)"] > [style*="color"]:nth-child(2), + [style*="rgba(249, 249, 245, 0.5)"] > div > svg + ) { + color: var(--theme--fg-secondary, rgba(145, 145, 142, 0.5)) !important; + fill: var(--theme--fg-secondary, rgba(145, 145, 142, 0.5)) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(247, 247, 245, 0.7)"] + [style*="height: 32px"], + [style*="rgba(247, 247, 245, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(247, 247, 245, 0.7)"] > div > svg + ) { + color: var(--theme--fg-gray, #91918e) !important; + fill: var(--theme--fg-gray, #91918e) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(250, 246, 245, 0.7)"] + [style*="height: 32px"], + [style*="rgba(250, 246, 245, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(250, 246, 245, 0.7)"] > div > svg + ) { + color: var(--theme--fg-brown, #bb846c) !important; + fill: var(--theme--fg-brown, #bb846c) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(252, 245, 242, 0.7)"] + [style*="height: 32px"], + [style*="rgba(252, 245, 242, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(252, 245, 242, 0.7)"] > div > svg + ) { + color: var(--theme--fg-orange, #d7813a) !important; + fill: var(--theme--fg-orange, #d7813a) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(250, 247, 237, 0.7)"] + [style*="height: 32px"], + [style*="rgba(250, 247, 237, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(250, 247, 237, 0.7)"] > div > svg + ) { + color: var(--theme--fg-yellow, #cb9433) !important; + fill: var(--theme--fg-yellow, #cb9433) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(244, 248, 243, 0.7)"] + [style*="height: 32px"], + [style*="rgba(244, 248, 243, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(244, 248, 243, 0.7)"] > div > svg + ) { + color: var(--theme--fg-green, #6c9b7d) !important; + fill: var(--theme--fg-green, #6c9b7d) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(241, 248, 251, 0.7)"] + [style*="height: 32px"], + [style*="rgba(241, 248, 251, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(241, 248, 251, 0.7)"] > div > svg + ) { + color: var(--theme--fg-blue, #5b97bd) !important; + fill: var(--theme--fg-blue, #5b97bd) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(249, 246, 252, 0.7)"] + [style*="height: 32px"], + [style*="rgba(249, 246, 252, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(249, 246, 252, 0.7)"] > div > svg + ) { + color: var(--theme--fg-purple, #a782c3) !important; + fill: var(--theme--fg-purple, #a782c3) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(251, 245, 251, 0.7)"] + [style*="height: 32px"], + [style*="rgba(251, 245, 251, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(251, 245, 251, 0.7)"] > div > svg + ) { + color: var(--theme--fg-pink, #cd749f) !important; + fill: var(--theme--fg-pink, #cd749f) !important; +} +.notion-body:not(.dark) + .notion-board-view + :is( + .notion-board-group[style*="rgba(253, 245, 243, 0.7)"] + [style*="height: 32px"], + [style*="rgba(253, 245, 243, 0.7)"] > [style*="color"]:nth-child(2), + [style*="rgba(253, 245, 243, 0.7)"] > div > svg + ) { + color: var(--theme--fg-red, #e16f64) !important; + fill: var(--theme--fg-red, #e16f64) !important; +} +.notion-body:not(.dark) + .notion-overlay-container + [data-overlay] + :is( + [style*="height: 100%; width: 275px;"][style*="flex-direction: column;"], + .notion-space-settings [style*="flex-grow: 1"] > [style*="background-color"] + ), +.notion-body:not(.dark) .notion-timeline-view, +.notion-body:not(.dark) + :is( + [style*="background: white"], + [style*="background:white"], + [style*="background-color: white"], + [style*="background-color:white"], + [style*="background: rgb(255, 255, 255)"], + [style*="background:rgb(255, 255, 255)"], + [style*="background-color: rgb(255, 255, 255)"], + [style*="background-color:rgb(255, 255, 255)"], + [style*="background: rgb(247, 247, 247)"], + [style*="background:rgb(247, 247, 247)"], + [style*="background-color: rgb(247, 247, 247)"], + [style*="background-color:rgb(247, 247, 247)"] + ):not(.notion-timeline-view) { + background: var(--theme--bg-primary, white) !important; +} +.notion-body:not(.dark) + .notion-overlay-container + [data-overlay] + :is( + [style*="height: 100%; width: 275px;"][style*="flex-direction: column;"] + + [style*="width: 100%;"], + .notion-space-settings + [style*="height: 100%; background:"][style*="max-width: 250px;"] + ), +.notion-body:not(.dark) + :is( + .notion-overlay-container + [style*="border-radius: 4px;"][style*="position: relative; max-width: calc(100vw - 24px); box-shadow:"], + [style*="font-size: 12px;"][style*="box-shadow:"][style*="border-radius: 3px; max-width: calc(100% - 16px); min-height: 24px; overflow: hidden;"][style*="position: absolute; right: 8px; bottom: 8px; z-index:"], + [style*="height: 32px;"][style*="font-size: 14px; line-height: 1.2; border-radius: 5px; box-shadow:"], + [style*="transition: background"][style*="cursor: pointer;"][style*="border-radius: 3px; height: 24px; width: 24px;"][style*="box-shadow:"], + [style*="right: 6px; top: 4px;"][style*="border-radius: 4px;"][style*="gap: 1px;"][style*="box-shadow:"] + )[style*="; background: white;"], +.notion-body:not(.dark) + :is( + .notion-timeline-item, + .notion-calendar-view .notion-collection-item > a, + .notion-gallery-view .notion-collection-item > a + )[style*="; background: white;"], +.notion-body:not(.dark) + :is( + [style*="background: rgb(251, 251, 250)"], + [style*="background:rgb(251, 251, 250)"], + [style*="background-color: rgb(251, 251, 250)"], + [style*="background-color:rgb(251, 251, 250)"], + [style*="background: rgb(253, 253, 253)"], + [style*="background:rgb(253, 253, 253)"], + [style*="background-color: rgb(253, 253, 253)"], + [style*="background-color:rgb(253, 253, 253)"] + ) { + background: var(--theme--bg-secondary, #fbfbfa) !important; +} +.notion-body:not(.dark) + :is( + [style*="background: rgba(55, 53, 47, 0.08)"], + [style*="background:rgba(55, 53, 47, 0.08)"], + [style*="background-color: rgba(55, 53, 47, 0.08)"], + [style*="background-color:rgba(55, 53, 47, 0.08)"], + [style*="background: rgba(242, 241, 238, 0.6)"], + [style*="background:rgba(242, 241, 238, 0.6)"], + [style*="background-color: rgba(242, 241, 238, 0.6)"], + [style*="background-color:rgba(242, 241, 238, 0.6)"], + [style*="background: rgb(225, 225, 225)"], + [style*="background:rgb(225, 225, 225)"], + [style*="background-color: rgb(225, 225, 225)"], + [style*="background-color:rgb(225, 225, 225)"], + [style*="background: rgb(239, 239, 238)"], + [style*="background:rgb(239, 239, 238)"], + [style*="background-color: rgb(239, 239, 238)"], + [style*="background-color:rgb(239, 239, 238)"] + ), +.notion-body:not(.dark) + [style*="height: 14px; width: 26px; border-radius: 44px;"][style*="rgba"] { + background: var(--theme--bg-hover, rgba(55, 53, 47, 0.08)) !important; +} +.notion-body:not(.dark) + .notion-overlay-container + [data-overlay] + > div + > [style*="position: absolute"]:first-child { + background: var(--theme--bg-overlay, rgba(15, 15, 15, 0.6)) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgba(227, 226, 224, 0.5);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgba(227, 226, 224, 0.5);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgba(227, 226, 224, 0.5);"] { + background: var(--theme--bg-light_gray, rgba(227, 226, 224, 0.5)) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(227, 226, 224);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(227, 226, 224);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(227, 226, 224);"] { + background: var(--theme--bg-gray, #e3e2e0) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(238, 224, 218);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(238, 224, 218);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(238, 224, 218);"] { + background: var(--theme--bg-brown, #eee0da) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(250, 222, 201);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(250, 222, 201);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(250, 222, 201);"] { + background: var(--theme--bg-orange, #fadec9) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(253, 236, 200);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(253, 236, 200);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(253, 236, 200);"] { + background: var(--theme--bg-yellow, #fdecc8) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(219, 237, 219);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(219, 237, 219);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(219, 237, 219);"] { + background: var(--theme--bg-green, #dbeddb) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(211, 229, 239);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(211, 229, 239);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(211, 229, 239);"] { + background: var(--theme--bg-blue, #d3e5ef) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(232, 222, 238);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(232, 222, 238);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(232, 222, 238);"] { + background: var(--theme--bg-purple, #e8deee) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(245, 224, 233);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(245, 224, 233);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(245, 224, 233);"] { + background: var(--theme--bg-pink, #f5e0e9) !important; +} +.notion-body:not(.dark) + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(255, 226, 221);"], +.notion-body:not(.dark) + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(255, 226, 221);"], +.notion-body:not(.dark) + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(255, 226, 221);"] { + background: var(--theme--bg-red, #ffe2dd) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(241, 241, 239, 1)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(241, 241, 239);"] { + background: var(--theme--bg-gray, #f1f1ef) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(244, 238, 238, 1)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(244, 238, 238);"] { + background: var(--theme--bg-brown, #f4eeee) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(251, 236, 221, 1)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(251, 236, 221);"] { + background: var(--theme--bg-orange, #fbecdd) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(251, 243, 219, 1)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(251, 243, 219);"] { + background: var(--theme--bg-yellow, #fbf3db) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(237, 243, 236, 1)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(237, 243, 236);"] { + background: var(--theme--bg-green, #edf3ec) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(231, 243, 248, 1)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(231, 243, 248);"] { + background: var(--theme--bg-blue, #e7f3f8) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(244, 240, 247, 0.8)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgba(244, 240, 247, 0.8);"] { + background: var(--theme--bg-purple, rgba(244, 240, 247, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(249, 238, 243, 0.8)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgba(249, 238, 243, 0.8);"] { + background: var(--theme--bg-pink, rgba(249, 238, 243, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(253, 235, 236, 1)"], +.notion-body:not(.dark) + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(253, 235, 236);"] { + background: var(--theme--bg-red, #fdebec) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(249, 249, 245, 0.5)"] + a { + background: var(--theme--bg-light_gray, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(249, 249, 245, 0.5)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-light_gray, rgba(249, 249, 245, 0.5)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(247, 247, 245, 0.7)"] + a { + background: var(--theme--bg-gray, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(247, 247, 245, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-gray, rgba(247, 247, 245, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(250, 246, 245, 0.7)"] + a { + background: var(--theme--bg-brown, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(250, 246, 245, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-brown, rgba(250, 246, 245, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(252, 245, 242, 0.7)"] + a { + background: var(--theme--bg-orange, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(252, 245, 242, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-orange, rgba(252, 245, 242, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(250, 247, 237, 0.7)"] + a { + background: var(--theme--bg-yellow, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(250, 247, 237, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-yellow, rgba(250, 247, 237, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(244, 248, 243, 0.7)"] + a { + background: var(--theme--bg-green, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(244, 248, 243, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-green, rgba(244, 248, 243, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(241, 248, 251, 0.7)"] + a { + background: var(--theme--bg-blue, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(241, 248, 251, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-blue, rgba(241, 248, 251, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(249, 246, 252, 0.7)"] + a { + background: var(--theme--bg-purple, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(249, 246, 252, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-purple, rgba(249, 246, 252, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(251, 245, 251, 0.7)"] + a { + background: var(--theme--bg-pink, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(251, 245, 251, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-pink, rgba(251, 245, 251, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-board-view + .notion-board-group[style*="rgba(253, 245, 243, 0.7)"] + a { + background: var(--theme--bg-red, white) !important; +} +.notion-body:not(.dark) + .notion-board-view + [style*="rgba(253, 245, 243, 0.7)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-red, rgba(253, 245, 243, 0.7)) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgb(241, 241, 239);"] { + background: var(--theme--dim-gray, #f1f1ef) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgb(244, 238, 238);"] { + background: var(--theme--dim-brown, #f4eeee) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgb(251, 236, 221);"] { + background: var(--theme--dim-orange, #fbecdd) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgb(251, 243, 219);"] { + background: var(--theme--dim-yellow, #fbf3db) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgb(237, 243, 236);"] { + background: var(--theme--dim-green, #edf3ec) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgb(231, 243, 248);"] { + background: var(--theme--dim-blue, #e7f3f8) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgba(244, 240, 247, 0.8);"] { + background: var(--theme--dim-purple, rgba(244, 240, 247, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgba(249, 238, 243, 0.8);"] { + background: var(--theme--dim-pink, rgba(249, 238, 243, 0.8)) !important; +} +.notion-body:not(.dark) + .notion-callout-block + > div + > div[style*="; background: rgb(253, 235, 236);"] { + background: var(--theme--dim-red, #fdebec) !important; +} +.notion-body:not(.dark) + [style*="height: 18px; border-radius: 3px; background"][style*="; background: rgba(206, 205, 202, 0.5);"] { + background: var(--theme--bg-light_gray, rgba(206, 205, 202, 0.5)) !important; +} +[style*="background-color: rgb(35, 131, 226)"] svg[style*="fill"], +[style*="background: rgb(35, 131, 226)"] svg[style*="fill"] { + fill: var(--theme--accent-primary_contrast, #fff) !important; +} +.notion-body:not(.dark) ::-webkit-scrollbar-corner, +.notion-body:not(.dark) ::-webkit-scrollbar-track { + background: var(--theme--scrollbar-track, #edece9) !important; +} +.notion-body:not(.dark) ::-webkit-scrollbar-thumb { + background: var(--theme--scrollbar-thumb, #d3d1cb) !important; +} +.notion-body:not(.dark) ::-webkit-scrollbar-thumb:hover { + background: var(--theme--scrollbar-thumb_hover, #aeaca6) !important; +} +.notion-body:not(.dark) + .notion-text-block + .notion-enable-hover[style*="mono"][style*=";color:#EB5757;"] { + color: var(--theme--code-inline_fg, #eb5757) !important; + fill: var(--theme--code-inline_fg, #eb5757) !important; +} +.notion-body:not(.dark) + .notion-text-block + .notion-enable-hover[style*="mono"][style*=";background:rgba(135,131,120,0.15);"] { + background: var( + --theme--code-inline_bg, + rgba(135, 131, 120, 0.15) + ) !important; +} +.notion-body:not(.dark) + .notion-code-block + > [style*="mono"][style*="; color: rgb(55, 53, 47);"] { + color: var(--theme--code-block_fg, #37352f) !important; + fill: var(--theme--code-block_fg, #37352f) !important; +} +.notion-body:not(.dark) + .notion-code-block + > div + > [style*="background"][style*="; background: rgb(247, 246, 243);"] { + background: var(--theme--code-block_bg, #f7f6f3) !important; +} +.notion-body:not(.dark) .notion-code-block .token.keyword { + color: var(--theme--code-keyword, #07a) !important; + fill: var(--theme--code-keyword, #07a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.builtin { + color: var(--theme--code-builtin, #690) !important; + fill: var(--theme--code-builtin, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.class-name { + color: var(--theme--code-class_name, #dd4a68) !important; + fill: var(--theme--code-class_name, #dd4a68) !important; +} +.notion-body:not(.dark) .notion-code-block .token.function { + color: var(--theme--code-function, #dd4a68) !important; + fill: var(--theme--code-function, #dd4a68) !important; +} +.notion-body:not(.dark) .notion-code-block .token.boolean { + color: var(--theme--code-boolean, #905) !important; + fill: var(--theme--code-boolean, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.number { + color: var(--theme--code-number, #905) !important; + fill: var(--theme--code-number, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.string { + color: var(--theme--code-string, #690) !important; + fill: var(--theme--code-string, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.char { + color: var(--theme--code-char, #690) !important; + fill: var(--theme--code-char, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.symbol { + color: var(--theme--code-symbol, #905) !important; + fill: var(--theme--code-symbol, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.regex { + color: var(--theme--code-regex, #e90) !important; + fill: var(--theme--code-regex, #e90) !important; +} +.notion-body:not(.dark) .notion-code-block .token.url { + color: var(--theme--code-url, #9a6e3a) !important; + fill: var(--theme--code-url, #9a6e3a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.operator { + color: var(--theme--code-operator, #9a6e3a) !important; + fill: var(--theme--code-operator, #9a6e3a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.variable { + color: var(--theme--code-variable, #e90) !important; + fill: var(--theme--code-variable, #e90) !important; +} +.notion-body:not(.dark) .notion-code-block .token.constant { + color: var(--theme--code-constant, #905) !important; + fill: var(--theme--code-constant, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.property { + color: var(--theme--code-property, #905) !important; + fill: var(--theme--code-property, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.punctuation { + color: var(--theme--code-punctuation, #999) !important; + fill: var(--theme--code-punctuation, #999) !important; +} +.notion-body:not(.dark) .notion-code-block .token.important { + color: var(--theme--code-important, #e90) !important; + fill: var(--theme--code-important, #e90) !important; +} +.notion-body:not(.dark) .notion-code-block .token.comment { + color: var(--theme--code-comment, #708090) !important; + fill: var(--theme--code-comment, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.tag { + color: var(--theme--code-tag, #905) !important; + fill: var(--theme--code-tag, #905) !important; +} +.notion-body:not(.dark) .notion-code-block .token.attr-name { + color: var(--theme--code-attr_name, #690) !important; + fill: var(--theme--code-attr_name, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.attr-value { + color: var(--theme--code-attr_value, #07a) !important; + fill: var(--theme--code-attr_value, #07a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.namespace { + color: var(--theme--code-namespace, #37352f) !important; + fill: var(--theme--code-namespace, #37352f) !important; +} +.notion-body:not(.dark) .notion-code-block .token.prolog { + color: var(--theme--code-prolog, #708090) !important; + fill: var(--theme--code-prolog, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.doctype { + color: var(--theme--code-doctype, #708090) !important; + fill: var(--theme--code-doctype, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.cdata { + color: var(--theme--code-cdata, #708090) !important; + fill: var(--theme--code-cdata, #708090) !important; +} +.notion-body:not(.dark) .notion-code-block .token.entity { + color: var(--theme--code-entity, #9a6e3a) !important; + fill: var(--theme--code-entity, #9a6e3a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.atrule { + color: var(--theme--code-atrule, #07a) !important; + fill: var(--theme--code-atrule, #07a) !important; +} +.notion-body:not(.dark) .notion-code-block .token.selector { + color: var(--theme--code-selector, #690) !important; + fill: var(--theme--code-selector, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.inserted { + color: var(--theme--code-inserted, #690) !important; + fill: var(--theme--code-inserted, #690) !important; +} +.notion-body:not(.dark) .notion-code-block .token.deleted { + color: var(--theme--code-deleted, #905) !important; + fill: var(--theme--code-deleted, #905) !important; +} +.notion-body:not(.dark) + :is( + [style*="px solid rgb(233, 233, 231"], + [style*="px solid rgba(233, 233, 231"], + [style*="px solid rgb(238, 238, 237"], + [style*="px solid rgba(238, 238, 237"], + [style*="px solid rgb(55, 53, 47"], + [style*="px solid rgba(55, 53, 47"] + ):is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ) { + border-color: var(--theme--fg-border, #e9e9e7) !important; +} +.notion-body:not(.dark) + [style*=" box-shadow: rgba(55, 53, 47, 0.09) 0px -1px 0px;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0-1px 0 !important; +} +.notion-body:not(.dark) + [style*=" box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px inset;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0 0 0 1px inset !important; +} +.notion-body:not(.dark) + [style*=" box-shadow: white -3px 0px 0px, rgb(233, 233, 231) 0px 1px 0px;"] { + box-shadow: #fff -3px 0 0, transparent 0 1px 0 !important; +} +.notion-body:not(.dark) + [style*=" box-shadow: rgb(233, 233, 231) 0px -1px 0px inset;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0-1px 0 inset !important; +} +.notion-body:not(.dark) + [style*=" box-shadow: rgba(55, 53, 47, 0.16) 1px 0px 0px inset;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 1px 0 0 inset !important; +} +.notion-body:not(.dark) + [style*=" box-shadow: rgb(233, 233, 231) 0px 1px 0px;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) 0 1px 0 !important; +} +.notion-body:not(.dark) + [style*="box-shadow: rgb(233, 233, 231) -1px 0px 0px;"] { + box-shadow: var(--theme--fg-border, #e9e9e7) -1px 0 0 !important; +} +[style*="linear-gradient(to left, white 20%, rgba(255, 255, 255, 0) 100%)"] { + background-image: linear-gradient( + to left, + var(--theme--bg-primary, white) 20%, + transparent 100% + ) !important; +} +[style*="linear-gradient(to right, white 20%, rgba(255, 255, 255, 0) 100%)"] { + background-image: linear-gradient( + to right, + var(--theme--bg-primary, white) 20%, + transparent 100% + ) !important; +} +[style*="Segoe UI"] { + font-family: var(--theme--font-sans, ui-sans-serif), -apple-system, + BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, + sans-serif, "Segoe UI Emoji", "Segoe UI Symbol" !important; +} +[style*="Georgia"] { + font-family: var(--theme--font-serif, Lyon-Text), Georgia, ui-serif, serif !important; +} +[style*="iawriter-mono"] { + font-family: var(--theme--font-mono, iawriter-mono), Nitti, Menlo, Courier, + monospace !important; +} +[style*="SFMono-Regular"] { + font-family: var(--theme--font-code, "SFMono-Regular"), Menlo, Consolas, + "PT Mono", "Liberation Mono", Courier, monospace !important; +} +.notion-body.dark + :is( + [style^="color: rgba(255, 255, 255, 0.81)"], + [style^="color:rgba(255, 255, 255, 0.81)"], + [style*=";color: rgba(255, 255, 255, 0.81)"], + [style*=";color:rgba(255, 255, 255, 0.81)"], + [style*=" color: rgba(255, 255, 255, 0.81)"], + [style*=" color:rgba(255, 255, 255, 0.81)"], + [style*="fill: rgba(255, 255, 255, 0.81)"], + [style*="fill:rgba(255, 255, 255, 0.81)"], + [style^="color: rgb(211, 211, 211)"], + [style^="color:rgb(211, 211, 211)"], + [style*=";color: rgb(211, 211, 211)"], + [style*=";color:rgb(211, 211, 211)"], + [style*=" color: rgb(211, 211, 211)"], + [style*=" color:rgb(211, 211, 211)"], + [style*="fill: rgb(211, 211, 211)"], + [style*="fill:rgb(211, 211, 211)"], + [style^="color: rgb(255, 255, 255)"], + [style^="color:rgb(255, 255, 255)"], + [style*=";color: rgb(255, 255, 255)"], + [style*=";color:rgb(255, 255, 255)"], + [style*=" color: rgb(255, 255, 255)"], + [style*=" color:rgb(255, 255, 255)"], + [style*="fill: rgb(255, 255, 255)"], + [style*="fill:rgb(255, 255, 255)"], + [style^="color: rgba(255, 255, 255, 0.8"], + [style^="color:rgba(255, 255, 255, 0.8"], + [style*=";color: rgba(255, 255, 255, 0.8"], + [style*=";color:rgba(255, 255, 255, 0.8"], + [style*=" color: rgba(255, 255, 255, 0.8"], + [style*=" color:rgba(255, 255, 255, 0.8"], + [style*="fill: rgba(255, 255, 255, 0.8"], + [style*="fill:rgba(255, 255, 255, 0.8"], + [style^="color: rgba(255, 255, 255, 0.9"], + [style^="color:rgba(255, 255, 255, 0.9"], + [style*=";color: rgba(255, 255, 255, 0.9"], + [style*=";color:rgba(255, 255, 255, 0.9"], + [style*=" color: rgba(255, 255, 255, 0.9"], + [style*=" color:rgba(255, 255, 255, 0.9"], + [style*="fill: rgba(255, 255, 255, 0.9"], + [style*="fill:rgba(255, 255, 255, 0.9"], + [style^="color: rgba(255, 255, 255, 1"], + [style^="color:rgba(255, 255, 255, 1"], + [style*=";color: rgba(255, 255, 255, 1"], + [style*=";color:rgba(255, 255, 255, 1"], + [style*=" color: rgba(255, 255, 255, 1"], + [style*=" color:rgba(255, 255, 255, 1"], + [style*="fill: rgba(255, 255, 255, 1"], + [style*="fill:rgba(255, 255, 255, 1"] + ) { + caret-color: var(--theme--fg-primary, rgba(255, 255, 255, 0.81)) !important; + text-decoration-color: currentColor; + fill: var(--theme--fg-primary, rgba(255, 255, 255, 0.81)) !important; + color: var(--theme--fg-primary, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark + :is(.rdp-nav_icon, .rdp-head_cell, .rdp-day.rdp-day_outside, ::placeholder), +.notion-body.dark + :is( + [style^="color: rgb(155, 155, 155)"], + [style^="color:rgb(155, 155, 155)"], + [style*=";color: rgb(155, 155, 155)"], + [style*=";color:rgb(155, 155, 155)"], + [style*=" color: rgb(155, 155, 155)"], + [style*=" color:rgb(155, 155, 155)"], + [style*="fill: rgb(155, 155, 155)"], + [style*="fill:rgb(155, 155, 155)"], + [style^="color: rgb(127, 127, 127)"], + [style^="color:rgb(127, 127, 127)"], + [style*=";color: rgb(127, 127, 127)"], + [style*=";color:rgb(127, 127, 127)"], + [style*=" color: rgb(127, 127, 127)"], + [style*=" color:rgb(127, 127, 127)"], + [style*="fill: rgb(127, 127, 127)"], + [style*="fill:rgb(127, 127, 127)"], + [style^="color: rgba(255, 255, 255, 0.0"], + [style^="color:rgba(255, 255, 255, 0.0"], + [style*=";color: rgba(255, 255, 255, 0.0"], + [style*=";color:rgba(255, 255, 255, 0.0"], + [style*=" color: rgba(255, 255, 255, 0.0"], + [style*=" color:rgba(255, 255, 255, 0.0"], + [style*="fill: rgba(255, 255, 255, 0.0"], + [style*="fill:rgba(255, 255, 255, 0.0"], + [style^="color: rgba(255, 255, 255, 0.1"], + [style^="color:rgba(255, 255, 255, 0.1"], + [style*=";color: rgba(255, 255, 255, 0.1"], + [style*=";color:rgba(255, 255, 255, 0.1"], + [style*=" color: rgba(255, 255, 255, 0.1"], + [style*=" color:rgba(255, 255, 255, 0.1"], + [style*="fill: rgba(255, 255, 255, 0.1"], + [style*="fill:rgba(255, 255, 255, 0.1"], + [style^="color: rgba(255, 255, 255, 0.2"], + [style^="color:rgba(255, 255, 255, 0.2"], + [style*=";color: rgba(255, 255, 255, 0.2"], + [style*=";color:rgba(255, 255, 255, 0.2"], + [style*=" color: rgba(255, 255, 255, 0.2"], + [style*=" color:rgba(255, 255, 255, 0.2"], + [style*="fill: rgba(255, 255, 255, 0.2"], + [style*="fill:rgba(255, 255, 255, 0.2"], + [style^="color: rgba(255, 255, 255, 0.3"], + [style^="color:rgba(255, 255, 255, 0.3"], + [style*=";color: rgba(255, 255, 255, 0.3"], + [style*=";color:rgba(255, 255, 255, 0.3"], + [style*=" color: rgba(255, 255, 255, 0.3"], + [style*=" color:rgba(255, 255, 255, 0.3"], + [style*="fill: rgba(255, 255, 255, 0.3"], + [style*="fill:rgba(255, 255, 255, 0.3"], + [style^="color: rgba(255, 255, 255, 0.4"], + [style^="color:rgba(255, 255, 255, 0.4"], + [style*=";color: rgba(255, 255, 255, 0.4"], + [style*=";color:rgba(255, 255, 255, 0.4"], + [style*=" color: rgba(255, 255, 255, 0.4"], + [style*=" color:rgba(255, 255, 255, 0.4"], + [style*="fill: rgba(255, 255, 255, 0.4"], + [style*="fill:rgba(255, 255, 255, 0.4"], + [style^="color: rgba(255, 255, 255, 0.5"], + [style^="color:rgba(255, 255, 255, 0.5"], + [style*=";color: rgba(255, 255, 255, 0.5"], + [style*=";color:rgba(255, 255, 255, 0.5"], + [style*=" color: rgba(255, 255, 255, 0.5"], + [style*=" color:rgba(255, 255, 255, 0.5"], + [style*="fill: rgba(255, 255, 255, 0.5"], + [style*="fill:rgba(255, 255, 255, 0.5"], + [style^="color: rgba(255, 255, 255, 0.6"], + [style^="color:rgba(255, 255, 255, 0.6"], + [style*=";color: rgba(255, 255, 255, 0.6"], + [style*=";color:rgba(255, 255, 255, 0.6"], + [style*=" color: rgba(255, 255, 255, 0.6"], + [style*=" color:rgba(255, 255, 255, 0.6"], + [style*="fill: rgba(255, 255, 255, 0.6"], + [style*="fill:rgba(255, 255, 255, 0.6"], + [style^="color: rgba(255, 255, 255, 0.7"], + [style^="color:rgba(255, 255, 255, 0.7"], + [style*=";color: rgba(255, 255, 255, 0.7"], + [style*=";color:rgba(255, 255, 255, 0.7"], + [style*=" color: rgba(255, 255, 255, 0.7"], + [style*=" color:rgba(255, 255, 255, 0.7"], + [style*="fill: rgba(255, 255, 255, 0.7"], + [style*="fill:rgba(255, 255, 255, 0.7"] + ) { + caret-color: var(--theme--fg-secondary, #9b9b9b) !important; + text-decoration-color: currentColor; + fill: var(--theme--fg-secondary, #9b9b9b) !important; + color: var(--theme--fg-secondary, #9b9b9b) !important; +} +.notion-body.dark + :is( + [style*="caret-color: rgba(255, 255, 255, 0.81)"], + [style*="caret-color:rgba(255, 255, 255, 0.81)"], + [style*="caret-color: rgb(211, 211, 211)"], + [style*="caret-color:rgb(211, 211, 211)"], + [style*="caret-color: rgb(255, 255, 255)"], + [style*="caret-color:rgb(255, 255, 255)"], + [style*="caret-color: rgba(255, 255, 255, 0.8"], + [style*="caret-color:rgba(255, 255, 255, 0.8"], + [style*="caret-color: rgba(255, 255, 255, 0.9"], + [style*="caret-color:rgba(255, 255, 255, 0.9"], + [style*="caret-color: rgba(255, 255, 255, 1"], + [style*="caret-color:rgba(255, 255, 255, 1"] + ) { + caret-color: var(--theme--fg-primary, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark + :is( + [style*="caret-color: rgb(155, 155, 155)"], + [style*="caret-color:rgb(155, 155, 155)"], + [style*="caret-color: rgb(127, 127, 127)"], + [style*="caret-color:rgb(127, 127, 127)"], + [style*="caret-color: rgba(255, 255, 255, 0.0"], + [style*="caret-color:rgba(255, 255, 255, 0.0"], + [style*="caret-color: rgba(255, 255, 255, 0.1"], + [style*="caret-color:rgba(255, 255, 255, 0.1"], + [style*="caret-color: rgba(255, 255, 255, 0.2"], + [style*="caret-color:rgba(255, 255, 255, 0.2"], + [style*="caret-color: rgba(255, 255, 255, 0.3"], + [style*="caret-color:rgba(255, 255, 255, 0.3"], + [style*="caret-color: rgba(255, 255, 255, 0.4"], + [style*="caret-color:rgba(255, 255, 255, 0.4"], + [style*="caret-color: rgba(255, 255, 255, 0.5"], + [style*="caret-color:rgba(255, 255, 255, 0.5"], + [style*="caret-color: rgba(255, 255, 255, 0.6"], + [style*="caret-color:rgba(255, 255, 255, 0.6"], + [style*="caret-color: rgba(255, 255, 255, 0.7"], + [style*="caret-color:rgba(255, 255, 255, 0.7"] + ) { + caret-color: var(--theme--fg-secondary, #9b9b9b) !important; +} +.notion-body.dark [style*="-webkit-text-fill-color:"] { + -webkit-text-fill-color: var(--theme--fg-secondary, #9b9b9b) !important; +} +.notion-body.dark [style*="height: 1px;"][style*="background"] { + background: var(--theme--fg-border, #2f2f2f) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(155, 155, 155);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(155, 155, 155, 1);"] { + color: var(--theme--fg-gray, #9b9b9b) !important; + fill: var(--theme--fg-gray, #9b9b9b) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(186, 133, 111);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(186, 133, 111, 1);"] { + color: var(--theme--fg-brown, #ba856f) !important; + fill: var(--theme--fg-brown, #ba856f) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(199, 125, 72);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(199, 125, 72, 1);"] { + color: var(--theme--fg-orange, #c77d48) !important; + fill: var(--theme--fg-orange, #c77d48) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(202, 152, 73);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(202, 152, 73, 1);"] { + color: var(--theme--fg-yellow, #ca9849) !important; + fill: var(--theme--fg-yellow, #ca9849) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(82, 158, 114);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(82, 158, 114, 1);"] { + color: var(--theme--fg-green, #529e72) !important; + fill: var(--theme--fg-green, #529e72) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(94, 135, 201);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(94, 135, 201, 1);"] { + color: var(--theme--fg-blue, #5e87c9) !important; + fill: var(--theme--fg-blue, #5e87c9) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(157, 104, 211);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(157, 104, 211, 1);"] { + color: var(--theme--fg-purple, #9d68d3) !important; + fill: var(--theme--fg-purple, #9d68d3) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(209, 87, 150);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(209, 87, 150, 1);"] { + color: var(--theme--fg-pink, #d15796) !important; + fill: var(--theme--fg-pink, #d15796) !important; +} +.notion-body.dark + .notion-text-block + > [style*="color:"][style*="fill:"][style*="color: rgb(223, 84, 82);"], +.notion-body.dark + :is( + .notion-selectable .notion-enable-hover, + .notion-code-block span.token + )[style*="color:rgba(223, 84, 82, 1);"] { + color: var(--theme--fg-red, #df5452) !important; + fill: var(--theme--fg-red, #df5452) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(28, 28, 28)"] [style*="height: 32px"], + [style*="rgb(28, 28, 28)"] > [style*="color"]:nth-child(2), + [style*="rgb(28, 28, 28)"] > div > svg + ) { + color: var(--theme--fg-secondary, #7f7f7f) !important; + fill: var(--theme--fg-secondary, #7f7f7f) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(32, 32, 32)"] [style*="height: 32px"], + [style*="rgb(32, 32, 32)"] > [style*="color"]:nth-child(2), + [style*="rgb(32, 32, 32)"] > div > svg + ) { + color: var(--theme--fg-gray, #7f7f7f) !important; + fill: var(--theme--fg-gray, #7f7f7f) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(35, 30, 28)"] [style*="height: 32px"], + [style*="rgb(35, 30, 28)"] > [style*="color"]:nth-child(2), + [style*="rgb(35, 30, 28)"] > div > svg + ) { + color: var(--theme--fg-brown, #845641) !important; + fill: var(--theme--fg-brown, #845641) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(37, 31, 27)"] [style*="height: 32px"], + [style*="rgb(37, 31, 27)"] > [style*="color"]:nth-child(2), + [style*="rgb(37, 31, 27)"] > div > svg + ) { + color: var(--theme--fg-orange, #a75b1a) !important; + fill: var(--theme--fg-orange, #a75b1a) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(35, 31, 26)"] [style*="height: 32px"], + [style*="rgb(35, 31, 26)"] > [style*="color"]:nth-child(2), + [style*="rgb(35, 31, 26)"] > div > svg + ) { + color: var(--theme--fg-yellow, #9b6e23) !important; + fill: var(--theme--fg-yellow, #9b6e23) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(29, 34, 32)"] [style*="height: 32px"], + [style*="rgb(29, 34, 32)"] > [style*="color"]:nth-child(2), + [style*="rgb(29, 34, 32)"] > div > svg + ) { + color: var(--theme--fg-green, #2d7650) !important; + fill: var(--theme--fg-green, #2d7650) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(27, 31, 34)"] [style*="height: 32px"], + [style*="rgb(27, 31, 34)"] > [style*="color"]:nth-child(2), + [style*="rgb(27, 31, 34)"] > div > svg + ) { + color: var(--theme--fg-blue, #295a95) !important; + fill: var(--theme--fg-blue, #295a95) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(31, 29, 33)"] [style*="height: 32px"], + [style*="rgb(31, 29, 33)"] > [style*="color"]:nth-child(2), + [style*="rgb(31, 29, 33)"] > div > svg + ) { + color: var(--theme--fg-purple, #704a96) !important; + fill: var(--theme--fg-purple, #704a96) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(35, 28, 31)"] [style*="height: 32px"], + [style*="rgb(35, 28, 31)"] > [style*="color"]:nth-child(2), + [style*="rgb(35, 28, 31)"] > div > svg + ) { + color: var(--theme--fg-pink, #903a65) !important; + fill: var(--theme--fg-pink, #903a65) !important; +} +.notion-body.dark + .notion-board-view + :is( + .notion-board-group[style*="rgb(36, 30, 29)"] [style*="height: 32px"], + [style*="rgb(36, 30, 29)"] > [style*="color"]:nth-child(2), + [style*="rgb(36, 30, 29)"] > div > svg + ) { + color: var(--theme--fg-red, #8f3a35) !important; + fill: var(--theme--fg-red, #8f3a35) !important; +} +.notion-body.dark + .notion-overlay-container + [data-overlay] + :is( + [style*="height: 100%; width: 275px;"][style*="flex-direction: column;"], + .notion-space-settings [style*="flex-grow: 1"] > [style*="background-color"] + ), +.notion-body.dark .notion-timeline-view, +.notion-body.dark + :is( + [style*="background: rgb(25, 25, 25)"], + [style*="background:rgb(25, 25, 25)"], + [style*="background-color: rgb(25, 25, 25)"], + [style*="background-color:rgb(25, 25, 25)"] + ):not(.notion-timeline-view) { + background: var(--theme--bg-primary, #191919) !important; +} +.notion-body.dark + .notion-overlay-container + [data-overlay] + :is( + [style*="height: 100%; width: 275px;"][style*="flex-direction: column;"] + + [style*="width: 100%;"], + .notion-space-settings + [style*="height: 100%; background:"][style*="max-width: 250px;"] + ), +.notion-body.dark + :is( + .notion-overlay-container + [style*="border-radius: 4px;"][style*="position: relative; max-width: calc(100vw - 24px); box-shadow:"], + [style*="font-size: 12px;"][style*="box-shadow:"][style*="border-radius: 3px; max-width: calc(100% - 16px); min-height: 24px; overflow: hidden;"][style*="position: absolute; right: 8px; bottom: 8px; z-index:"], + [style*="height: 32px;"][style*="font-size: 14px; line-height: 1.2; border-radius: 5px; box-shadow:"], + [style*="transition: background"][style*="cursor: pointer;"][style*="border-radius: 3px; height: 24px; width: 24px;"][style*="box-shadow:"], + [style*="right: 6px; top: 4px;"][style*="border-radius: 4px;"][style*="gap: 1px;"][style*="box-shadow:"] + )[style*="; background: rgb(37, 37, 37);"], +.notion-body.dark + :is( + .notion-timeline-item, + .notion-calendar-view .notion-collection-item > a, + .notion-gallery-view .notion-collection-item > a + )[style*="; background: rgb(37, 37, 37);"], +.notion-body.dark + :is( + [style*="background: rgb(32, 32, 32)"], + [style*="background:rgb(32, 32, 32)"], + [style*="background-color: rgb(32, 32, 32)"], + [style*="background-color:rgb(32, 32, 32)"], + [style*="background: rgb(37, 37, 37)"], + [style*="background:rgb(37, 37, 37)"], + [style*="background-color: rgb(37, 37, 37)"], + [style*="background-color:rgb(37, 37, 37)"], + [style*="background: rgb(47, 47, 47)"], + [style*="background:rgb(47, 47, 47)"], + [style*="background-color: rgb(47, 47, 47)"], + [style*="background-color:rgb(47, 47, 47)"] + ) { + background: var(--theme--bg-secondary, #202020) !important; +} +.notion-body.dark + :is( + [style*="background: rgb(47, 47, 47)"], + [style*="background-color: rgb(47, 47, 47)"] + )[style*="transition: background"]:hover, +.notion-body.dark + :is( + [style*="background: rgba(255, 255, 255, 0.055)"], + [style*="background:rgba(255, 255, 255, 0.055)"], + [style*="background-color: rgba(255, 255, 255, 0.055)"], + [style*="background-color:rgba(255, 255, 255, 0.055)"] + ), +.notion-body.dark + [style*="height: 14px; width: 26px; border-radius: 44px;"][style*="rgba"] { + background: var(--theme--bg-hover, rgba(255, 255, 255, 0.055)) !important; +} +.notion-body.dark + .notion-overlay-container + [data-overlay] + > div + > [style*="position: absolute"]:first-child { + background: var(--theme--bg-overlay, rgba(15, 15, 15, 0.8)) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(55, 55, 55);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(55, 55, 55);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(55, 55, 55);"] { + background: var(--theme--bg-light_gray, #373737) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(90, 90, 90);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(90, 90, 90);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(90, 90, 90);"] { + background: var(--theme--bg-gray, #5a5a5a) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(96, 59, 44);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(96, 59, 44);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(96, 59, 44);"] { + background: var(--theme--bg-brown, #603b2c) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(133, 76, 29);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(133, 76, 29);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(133, 76, 29);"] { + background: var(--theme--bg-orange, #854c1d) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(137, 99, 42);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(137, 99, 42);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(137, 99, 42);"] { + background: var(--theme--bg-yellow, #89632a) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(43, 89, 63);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(43, 89, 63);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(43, 89, 63);"] { + background: var(--theme--bg-green, #2b593f) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(40, 69, 108);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(40, 69, 108);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(40, 69, 108);"] { + background: var(--theme--bg-blue, #28456c) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(73, 47, 100);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(73, 47, 100);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(73, 47, 100);"] { + background: var(--theme--bg-purple, #492f64) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(105, 49, 76);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(105, 49, 76);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(105, 49, 76);"] { + background: var(--theme--bg-pink, #69314c) !important; +} +.notion-body.dark + .notion-collection_view-block + [style*="height: 14px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(110, 54, 48);"], +.notion-body.dark + :is( + .notion-timeline-item-properties + [style*="height: 18px; border-radius: 3px; padding-left: 8px;"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="; background: rgb(110, 54, 48);"], +.notion-body.dark + [style*="height: 20px; border-radius: 3px; padding-left: 6px;"][style*="; background: rgb(110, 54, 48);"] { + background: var(--theme--bg-red, #6e3630) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(32, 32, 32)"] + a, +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(47, 47, 47, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(47, 47, 47);"] { + background: var(--theme--bg-gray, #2f2f2f) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(74, 50, 40, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(74, 50, 40);"] { + background: var(--theme--bg-brown, #4a3228) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(92, 59, 35, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(92, 59, 35);"] { + background: var(--theme--bg-orange, #5c3b23) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(86, 67, 40, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(86, 67, 40);"] { + background: var(--theme--bg-yellow, #564328) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(36, 61, 48, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(36, 61, 48);"] { + background: var(--theme--bg-green, #243d30) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(20, 58, 78, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(20, 58, 78);"] { + background: var(--theme--bg-blue, #143a4e) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(60, 45, 73, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(60, 45, 73);"] { + background: var(--theme--bg-purple, #3c2d49) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(78, 44, 60, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(78, 44, 60);"] { + background: var(--theme--bg-pink, #4e2c3c) !important; +} +.notion-body.dark + .notion-selectable + .notion-enable-hover[style*="background:"][style*="background:rgba(82, 46, 42, 1)"], +.notion-body.dark + :is( + .notion-text-block > [style*="background:"], + .notion-collection_view-block .notion-collection-item a > .notion-focusable + )[style*="background: rgb(82, 46, 42);"] { + background: var(--theme--bg-red, #522e2a) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(28, 28, 28)"] + a { + background: var(--theme--bg-light_gray, #2f2f2f) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(28, 28, 28)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-light_gray, #1c1c1c) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(32, 32, 32)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-gray, #202020) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(35, 30, 28)"] + a { + background: var(--theme--bg-brown, #362822) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(35, 30, 28)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-brown, #231e1c) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(37, 31, 27)"] + a { + background: var(--theme--bg-orange, #422f22) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(37, 31, 27)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-orange, #251f1b) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(35, 31, 26)"] + a { + background: var(--theme--bg-yellow, #403324) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(35, 31, 26)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-yellow, #231f1a) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(29, 34, 32)"] + a { + background: var(--theme--bg-green, #23312a) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(29, 34, 32)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-green, #1d2220) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(27, 31, 34)"] + a { + background: var(--theme--bg-blue, #1b2d38) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(27, 31, 34)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-blue, #1b1f22) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(31, 29, 33)"] + a { + background: var(--theme--bg-purple, #302739) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(31, 29, 33)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-purple, #1f1d21) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(35, 28, 31)"] + a { + background: var(--theme--bg-pink, #3b2730) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(35, 28, 31)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-pink, #231c1f) !important; +} +.notion-body.dark + .notion-board-view + .notion-board-group[style*="rgb(36, 30, 29)"] + a { + background: var(--theme--bg-red, #3e2825) !important; +} +.notion-body.dark + .notion-board-view + [style*="rgb(36, 30, 29)"]:is( + .notion-board-group, + [style*="border-top-left-radius: 5px;"] + ) { + background: var(--theme--dim-red, #241e1d) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(37, 37, 37);"] { + background: var(--theme--dim-gray, #252525) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(47, 39, 35);"] { + background: var(--theme--dim-brown, #2f2723) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(56, 40, 30);"] { + background: var(--theme--dim-orange, #38281e) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(57, 46, 30);"] { + background: var(--theme--dim-yellow, #392e1e) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(34, 43, 38);"] { + background: var(--theme--dim-green, #222b26) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(29, 40, 46);"] { + background: var(--theme--dim-blue, #1d282e) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(43, 36, 49);"] { + background: var(--theme--dim-purple, #2b2431) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(48, 34, 40);"] { + background: var(--theme--dim-pink, #302228) !important; +} +.notion-body.dark + .notion-callout-block + > div + > div[style*="; background: rgb(54, 36, 34);"] { + background: var(--theme--dim-red, #362422) !important; +} +[style*="background-color: rgba(255, 212, 0, 0.14)"], +[style*="background-color:rgba(255, 212, 0, 0.14)"], +[style*="background: rgba(255, 212, 0, 0.14)"], +[style*="background:rgba(255, 212, 0, 0.14)"] { + background: var(--theme--bg-yellow, rgba(255, 212, 0, 0.14)) !important; +} +.notion-body.dark + [style*="height: 18px; border-radius: 3px; background"][style*="; background: rgba(255, 255, 255, 0.094);"] { + background: var( + --theme--bg-light_gray, + rgba(255, 255, 255, 0.094) + ) !important; +} +[style*=" color: rgb(35, 131, 226)"], +[style*=" color:rgb(35, 131, 226)"], +[style*=";color: rgb(35, 131, 226)"], +[style*=";color:rgb(35, 131, 226)"], +[style*="fill: rgb(35, 131, 226)"], +[style*="fill:rgb(35, 131, 226)"], +[style^="color: rgb(35, 131, 226)"], +[style^="color:rgb(35, 131, 226)"] { + color: var(--theme--accent-primary, #2383e2) !important; + fill: var(--theme--accent-primary, #2383e2) !important; +} +[style*="background-color: rgb(35, 131, 226)"], +[style*="background-color:rgb(35, 131, 226)"], +[style*="background: rgb(35, 131, 226)"], +[style*="background:rgb(35, 131, 226)"] { + fill: var(--theme--accent-primary_contrast, #fff) !important; + color: var(--theme--accent-primary_contrast, #fff) !important; + background: var(--theme--accent-primary, #2383e2) !important; +} +[style*="background-color: rgb(0, 117, 211)"], +[style*="background-color:rgb(0, 117, 211)"], +[style*="background: rgb(0, 117, 211)"], +[style*="background:rgb(0, 117, 211)"] { + fill: var(--theme--accent-primary_contrast, #fff) !important; + color: var(--theme--accent-primary_contrast, #fff) !important; + background: var(--theme--accent-primary_hover, #0075d3) !important; +} +.notion-table-selection-overlay [style*="border: 2px solid"] { + border-color: var(--theme--accent-primary, #2383e2) !important; +} +[style*="border-radius: 44px;"] + > [style*="border-radius: 44px; background: white;"] { + background: var(--theme--accent-primary_contrast, #fff) !important; +} +#notion-app + .rdp-day:not(.rdp-day_disabled):not(.rdp-day_selected):not( + .rdp-day_value + ):not(.rdp-day_start):not(.rdp-day_end):hover, +.notion-selectable-halo, +::selection, +[style*="background-color: rgba(35, 131, 226, 0."], +[style*="background-color:rgba(35, 131, 226, 0."], +[style*="background: rgba(35, 131, 226, 0."], +[style*="background:rgba(35, 131, 226, 0."] { + background: var( + --theme--accent-primary_transparent, + rgba(35, 131, 226, 0.14) + ) !important; +} +[style*=" color: rgb(180, 65, 60)"], +[style*=" color: rgb(205, 73, 69)"], +[style*=" color: rgb(211, 79, 67)"], +[style*=" color: rgb(235, 87, 87)"], +[style*=" color:rgb(180, 65, 60)"], +[style*=" color:rgb(205, 73, 69)"], +[style*=" color:rgb(211, 79, 67)"], +[style*=" color:rgb(235, 87, 87)"], +[style*=";color: rgb(180, 65, 60)"], +[style*=";color: rgb(205, 73, 69)"], +[style*=";color: rgb(211, 79, 67)"], +[style*=";color: rgb(235, 87, 87)"], +[style*=";color:rgb(180, 65, 60)"], +[style*=";color:rgb(205, 73, 69)"], +[style*=";color:rgb(211, 79, 67)"], +[style*=";color:rgb(235, 87, 87)"], +[style*="fill: rgb(180, 65, 60)"], +[style*="fill: rgb(205, 73, 69)"], +[style*="fill: rgb(211, 79, 67)"], +[style*="fill: rgb(235, 87, 87)"], +[style*="fill:rgb(180, 65, 60)"], +[style*="fill:rgb(205, 73, 69)"], +[style*="fill:rgb(211, 79, 67)"], +[style*="fill:rgb(235, 87, 87)"], +[style^="color: rgb(180, 65, 60)"], +[style^="color: rgb(205, 73, 69)"], +[style^="color: rgb(211, 79, 67)"], +[style^="color: rgb(235, 87, 87)"], +[style^="color:rgb(180, 65, 60)"], +[style^="color:rgb(205, 73, 69)"], +[style^="color:rgb(211, 79, 67)"], +[style^="color:rgb(235, 87, 87)"] { + color: var(--theme--accent-secondary, #eb5757) !important; + fill: var(--theme--accent-secondary, #eb5757) !important; +} +#notion-app + .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not( + .rdp-day_start + ):not(.rdp-day_end)::after, +[style*="background-color: rgb(180, 65, 60)"], +[style*="background-color: rgb(205, 73, 69)"], +[style*="background-color: rgb(211, 79, 67)"], +[style*="background-color: rgb(235, 87, 87)"], +[style*="background-color:rgb(180, 65, 60)"], +[style*="background-color:rgb(205, 73, 69)"], +[style*="background-color:rgb(211, 79, 67)"], +[style*="background-color:rgb(235, 87, 87)"], +[style*="background: rgb(180, 65, 60)"], +[style*="background: rgb(205, 73, 69)"], +[style*="background: rgb(211, 79, 67)"], +[style*="background: rgb(235, 87, 87)"], +[style*="background:rgb(180, 65, 60)"], +[style*="background:rgb(205, 73, 69)"], +[style*="background:rgb(211, 79, 67)"], +[style*="background:rgb(235, 87, 87)"] { + fill: var(--theme--accent-secondary_contrast, white) !important; + color: var(--theme--accent-secondary_contrast, white) !important; + background: var(--theme--accent-secondary, #eb5757) !important; +} +#notion-app + .rdp-day_today:not(.rdp-day_selected):not(.rdp-day_value):not( + .rdp-day_start + ):not(.rdp-day_end), +:is( + [style*="background: rgb(235, 87, 87)"], + [style*="background:rgb(235, 87, 87)"], + [style*="background-color: rgb(235, 87, 87)"], + [style*="background-color:rgb(235, 87, 87)"], + [style*="background: rgb(180, 65, 60)"], + [style*="background:rgb(180, 65, 60)"], + [style*="background-color: rgb(180, 65, 60)"], + [style*="background-color:rgb(180, 65, 60)"], + [style*="background: rgb(211, 79, 67)"], + [style*="background:rgb(211, 79, 67)"], + [style*="background-color: rgb(211, 79, 67)"], + [style*="background-color:rgb(211, 79, 67)"], + [style*="background: rgb(205, 73, 69)"], + [style*="background:rgb(205, 73, 69)"], + [style*="background-color: rgb(205, 73, 69)"], + [style*="background-color:rgb(205, 73, 69)"] + ) + :is([style*="fill: white;"], [style*="color: white;"]), +:is( + [style*="background: rgb(235, 87, 87)"], + [style*="background:rgb(235, 87, 87)"], + [style*="background-color: rgb(235, 87, 87)"], + [style*="background-color:rgb(235, 87, 87)"], + [style*="background: rgb(180, 65, 60)"], + [style*="background:rgb(180, 65, 60)"], + [style*="background-color: rgb(180, 65, 60)"], + [style*="background-color:rgb(180, 65, 60)"], + [style*="background: rgb(211, 79, 67)"], + [style*="background:rgb(211, 79, 67)"], + [style*="background-color: rgb(211, 79, 67)"], + [style*="background-color:rgb(211, 79, 67)"], + [style*="background: rgb(205, 73, 69)"], + [style*="background:rgb(205, 73, 69)"], + [style*="background-color: rgb(205, 73, 69)"], + [style*="background-color:rgb(205, 73, 69)"] + ) + + :is([style*="fill: white;"], [style*="color: white;"]) { + fill: var(--theme--accent-secondary_contrast, white) !important; + color: var(--theme--accent-secondary_contrast, white) !important; +} +[style*="background-color: rgba(235, 87, 87, 0.1)"], +[style*="background-color:rgba(235, 87, 87, 0.1)"], +[style*="background: rgba(235, 87, 87, 0.1)"], +[style*="background:rgba(235, 87, 87, 0.1)"] { + background: var( + --theme--accent-secondary_hover, + rgba(235, 87, 87, 0.1) + ) !important; +} +.notion-body.dark ::-webkit-scrollbar-corner, +.notion-body.dark ::-webkit-scrollbar-track { + background: var( + --theme--scrollbar-track, + rgba(202, 204, 206, 0.04) + ) !important; +} +.notion-body.dark ::-webkit-scrollbar-thumb { + background: var(--theme--scrollbar-thumb, #474c50) !important; +} +.notion-body.dark ::-webkit-scrollbar-thumb:hover { + background: var( + --theme--scrollbar-thumb_hover, + rgba(202, 204, 206, 0.3) + ) !important; +} +.notion-body.dark + .notion-text-block + .notion-enable-hover[style*="mono"][style*=";color:#EB5757;"] { + color: var(--theme--code-inline_fg, #eb5757) !important; + fill: var(--theme--code-inline_fg, #eb5757) !important; +} +.notion-body.dark + .notion-text-block + .notion-enable-hover[style*="mono"][style*=";background:rgba(135,131,120,0.15);"] { + background: var( + --theme--code-inline_bg, + rgba(135, 131, 120, 0.15) + ) !important; +} +.notion-body.dark + .notion-code-block + > [style*="mono"][style*="; color: rgba(255, 255, 255, 0.81);"] { + color: var(--theme--code-block_fg, rgba(255, 255, 255, 0.81)) !important; + fill: var(--theme--code-block_fg, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark + .notion-code-block + > div + > [style*="background"][style*="; background: rgba(255, 255, 255, 0.03);"] { + background: var(--theme--code-block_bg, rgba(255, 255, 255, 0.03)) !important; +} +.notion-body.dark .notion-code-block .token.keyword { + color: var(--theme--code-keyword, #d1949e) !important; + fill: var(--theme--code-keyword, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.builtin { + color: var(--theme--code-builtin, #bde052) !important; + fill: var(--theme--code-builtin, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.class-name { + color: var(--theme--code-class_name, rgba(255, 255, 255, 0.81)) !important; + fill: var(--theme--code-class_name, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.function { + color: var(--theme--code-function, rgba(255, 255, 255, 0.81)) !important; + fill: var(--theme--code-function, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.boolean { + color: var(--theme--code-boolean, #d1949e) !important; + fill: var(--theme--code-boolean, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.number { + color: var(--theme--code-number, #d1949e) !important; + fill: var(--theme--code-number, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.string { + color: var(--theme--code-string, #bde052) !important; + fill: var(--theme--code-string, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.char { + color: var(--theme--code-char, #bde052) !important; + fill: var(--theme--code-char, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.symbol { + color: var(--theme--code-symbol, #d1949e) !important; + fill: var(--theme--code-symbol, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.regex { + color: var(--theme--code-regex, #e90) !important; + fill: var(--theme--code-regex, #e90) !important; +} +.notion-body.dark .notion-code-block .token.url { + color: var(--theme--code-url, #f5b83d) !important; + fill: var(--theme--code-url, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.operator { + color: var(--theme--code-operator, #f5b83d) !important; + fill: var(--theme--code-operator, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.variable { + color: var(--theme--code-variable, #f5b83d) !important; + fill: var(--theme--code-variable, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.constant { + color: var(--theme--code-constant, #d1949e) !important; + fill: var(--theme--code-constant, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.property { + color: var(--theme--code-property, #d1949e) !important; + fill: var(--theme--code-property, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.punctuation { + color: var(--theme--code-punctuation, rgba(255, 255, 255, 0.81)) !important; + fill: var(--theme--code-punctuation, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.important { + color: var(--theme--code-important, #e90) !important; + fill: var(--theme--code-important, #e90) !important; +} +.notion-body.dark .notion-code-block .token.comment { + color: var(--theme--code-comment, #998066) !important; + fill: var(--theme--code-comment, #998066) !important; +} +.notion-body.dark .notion-code-block .token.tag { + color: var(--theme--code-tag, #d1949e) !important; + fill: var(--theme--code-tag, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.attr-name { + color: var(--theme--code-attr_name, #bde052) !important; + fill: var(--theme--code-attr_name, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.attr-value { + color: var(--theme--code-attr_value, #d1949e) !important; + fill: var(--theme--code-attr_value, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.namespace { + color: var(--theme--code-namespace, rgba(255, 255, 255, 0.81)) !important; + fill: var(--theme--code-namespace, rgba(255, 255, 255, 0.81)) !important; +} +.notion-body.dark .notion-code-block .token.prolog { + color: var(--theme--code-prolog, #998066) !important; + fill: var(--theme--code-prolog, #998066) !important; +} +.notion-body.dark .notion-code-block .token.doctype { + color: var(--theme--code-doctype, #998066) !important; + fill: var(--theme--code-doctype, #998066) !important; +} +.notion-body.dark .notion-code-block .token.cdata { + color: var(--theme--code-cdata, #998066) !important; + fill: var(--theme--code-cdata, #998066) !important; +} +.notion-body.dark .notion-code-block .token.entity { + color: var(--theme--code-entity, #f5b83d) !important; + fill: var(--theme--code-entity, #f5b83d) !important; +} +.notion-body.dark .notion-code-block .token.atrule { + color: var(--theme--code-atrule, #d1949e) !important; + fill: var(--theme--code-atrule, #d1949e) !important; +} +.notion-body.dark .notion-code-block .token.selector { + color: var(--theme--code-selector, #bde052) !important; + fill: var(--theme--code-selector, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.inserted { + color: var(--theme--code-inserted, #bde052) !important; + fill: var(--theme--code-inserted, #bde052) !important; +} +.notion-body.dark .notion-code-block .token.deleted { + color: var(--theme--code-deleted, red) !important; + fill: var(--theme--code-deleted, red) !important; +} +.notion-body.dark + :is( + [style*="px solid rgb(47, 47, 47"], + [style*="px solid rgba(47, 47, 47"], + [style*="px solid rgb(37, 37, 37"], + [style*="px solid rgba(37, 37, 37"], + [style*="px solid rgb(255, 255, 255"], + [style*="px solid rgba(255, 255, 255"] + ):is( + [style*="border:"], + [style*="border-top:"], + [style*="border-left:"], + [style*="border-bottom:"], + [style*="border-right:"] + ) { + border-color: var(--theme--fg-border, #2f2f2f) !important; +} +.notion-body.dark + [style*=" box-shadow: rgba(255, 255, 255, 0.094) 0px -1px 0px;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0-1px 0 !important; +} +.notion-body.dark + [style*=" box-shadow: rgba(15, 15, 15, 0.2) 0px 0px 0px 1px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0 0 0 1px inset !important; +} +.notion-body.dark + [style*=" box-shadow: rgb(25, 25, 25) -3px 0px 0px, rgb(47, 47, 47) 0px 1px 0px;"] { + box-shadow: transparent -3px 0 0, transparent 0 1px 0 !important; +} +.notion-body.dark + [style*=" box-shadow: rgba(255, 255, 255, 0.05) -1px 0px 0px 0px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) -1px 0 0 0 inset !important; +} +.notion-body.dark [style*=" box-shadow: rgb(47, 47, 47) 0px -1px 0px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0-1px 0 inset !important; +} +.notion-body.dark + [style*=" box-shadow: rgba(255, 255, 255, 0.13) 1px 0px 0px inset;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 1px 0 0 inset !important; +} +.notion-body.dark [style*=" box-shadow: rgb(47, 47, 47) 0px 1px 0px;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) 0 1px 0 !important; +} +.notion-body.dark [style*="box-shadow: rgb(47, 47, 47) -1px 0px 0px;"] { + box-shadow: var(--theme--fg-border, #2f2f2f) -1px 0 0 !important; +} +[style*="linear-gradient(to left, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"] { + background-image: linear-gradient( + to left, + var(--theme--bg-primary, #191919) 20%, + transparent 100% + ) !important; +} +[style*="linear-gradient(to right, rgb(25, 25, 25) 20%, rgba(25, 25, 25, 0) 100%)"] { + background-image: linear-gradient( + to right, + var(--theme--bg-primary, #191919) 20%, + transparent 100% + ) !important; +} +.notion-overlay-container + [style*="border-radius: 3px; background:"][style*="max-width: calc(100vw - 24px); box-shadow:"][style*="padding: 4px 8px; font-size: 12px; line-height: 1.4; font-weight: 500;"] { + background: #0f0f0f !important; + color: rgba(255, 255, 255, 0.9) !important; +} +.notion-overlay-container + [style*="border-radius: 3px; background:"][style*="max-width: calc(100vw - 24px); box-shadow:"][style*="padding: 4px 8px; font-size: 12px; line-height: 1.4; font-weight: 500;"] + > [style*="color"] { + color: #7f7f7f !important; +} +.notion-focusable-within:focus-within { + box-shadow: var(--theme--accent-primary, #2383e2) 0 0 0 1px inset, + var(--theme--accent-primary, #2383e2) 0 0 0 2px !important; +} +.notion-focusable:focus-visible { + box-shadow: var(--theme--accent-primary, #2383e2) 0 0 0 1px inset, + var(--theme--accent-primary, #2383e2) 0 0 0 2px !important; +} +[style*="box-shadow: rgb(35, 131, 226) 0px 0px 0px 2px inset"] { + box-shadow: var(--theme--accent-primary, #2383e2) 0 0 0 2px inset !important; +} +[style*="border-right: 1px solid rgb(180, 65, 60)"], +[style*="border-right: 1px solid rgb(211, 79, 67)"], +[style*="border: 1px solid rgb(110, 54, 48)"], +[style*="border: 1px solid rgba(235, 87, 87, 0.5)"], +[style*="border: 2px solid rgb(110, 54, 48)"], +[style*="border: 2px solid rgb(227, 134, 118)"] { + border-color: var(--theme--accent-secondary, #eb5757) !important; +} +.token:is(.operator, .entity, .url, :is(.language-css, .style) .string) { + background: 0 0 !important; +} diff --git a/src/core/variables.css b/src/core/variables.css index 2abf99f..63229b6 100644 --- a/src/core/variables.css +++ b/src/core/variables.css @@ -57,8 +57,8 @@ body.dark { --theme--accent-primary_contrast: #fff; --theme--accent-primary_transparent: rgba(35, 131, 226, 0.14); --theme--accent-secondary: #eb5757; + --theme--accent-secondary_hover: rgba(235, 87, 87, 0.1); --theme--accent-secondary_contrast: #fff; - --theme--accent-secondary_transparent: rgba(235, 87, 87, 0.1); --theme--scrollbar-track: rgba(202, 204, 206, 0.04); --theme--scrollbar-thumb: #474c50; @@ -154,7 +154,7 @@ body:not(.dark) { --theme--accent-primary_transparent: rgba(35, 131, 226, 0.14); --theme--accent-secondary: #eb5757; --theme--accent-secondary_contrast: #fff; - --theme--accent-secondary_transparent: rgba(235, 87, 87, 0.1); + --theme--accent-secondary_hover: rgba(235, 87, 87, 0.1); --theme--scrollbar-track: #edece9; --theme--scrollbar-thumb: #d3d1cb; diff --git a/src/themes/classic-dark/client.css b/src/themes/classic-dark/client.css index 16afb43..e114edb 100644 --- a/src/themes/classic-dark/client.css +++ b/src/themes/classic-dark/client.css @@ -48,8 +48,8 @@ body.dark { --theme--accent-primary_contrast: #fff; --theme--accent-primary_transparent: rgb(46, 170, 220, 0.25); --theme--accent-secondary: #eb5757; + --theme--accent-secondary_hover: rgba(235, 87, 87, 0.1); --theme--accent-secondary_contrast: #fff; - --theme--accent-secondary_transparent: rgba(235, 87, 87, 0.1); --theme--scrollbar-track: rgba(202, 204, 206, 0.04); --theme--scrollbar-thumb: #474c50; diff --git a/src/vendor/coloris.min.css b/src/vendor/coloris.min.css index 9f78627..236fe27 100644 --- a/src/vendor/coloris.min.css +++ b/src/vendor/coloris.min.css @@ -1 +1 @@ -.clr-picker{display:none;flex-wrap:wrap;position:absolute;width:200px;z-index:1000;border-radius:10px;background-color:#fff;justify-content:space-between;box-shadow:0 0 5px rgba(0,0,0,.05),0 5px 20px rgba(0,0,0,.1);-moz-user-select:none;-webkit-user-select:none;user-select:none}.clr-picker.clr-open,.clr-picker[data-inline=true]{display:flex}.clr-picker[data-inline=true]{position:relative}.clr-gradient{position:relative;width:100%;height:100px;margin-bottom:15px;border-radius:3px 3px 0 0;background-image:linear-gradient(rgba(0,0,0,0),#000),linear-gradient(90deg,#fff,currentColor);cursor:pointer}.clr-marker{position:absolute;width:12px;height:12px;margin:-6px 0 0 -6px;border:1px solid #fff;border-radius:50%;background-color:currentColor;cursor:pointer}.clr-picker input[type=range]::-webkit-slider-runnable-track{width:100%;height:8px}.clr-picker input[type=range]::-webkit-slider-thumb{width:8px;height:8px;-webkit-appearance:none}.clr-picker input[type=range]::-moz-range-track{width:100%;height:8px;border:0}.clr-picker input[type=range]::-moz-range-thumb{width:8px;height:8px;border:0}.clr-hue{background-image:linear-gradient(to right,red 0,#ff0 16.66%,#0f0 33.33%,#0ff 50%,#00f 66.66%,#f0f 83.33%,red 100%)}.clr-alpha,.clr-hue{position:relative;width:calc(100% - 40px);height:8px;margin:5px 20px;border-radius:4px}.clr-alpha span{display:block;height:100%;width:100%;border-radius:inherit;background-image:linear-gradient(90deg,rgba(0,0,0,0),currentColor)}.clr-alpha input,.clr-hue input{position:absolute;width:calc(100% + 16px);height:16px;left:-8px;top:-4px;margin:0;background-color:transparent;opacity:0;cursor:pointer;appearance:none;-webkit-appearance:none}.clr-alpha div,.clr-hue div{position:absolute;width:16px;height:16px;left:0;top:50%;margin-left:-8px;transform:translateY(-50%);border:2px solid #fff;border-radius:50%;background-color:currentColor;box-shadow:0 0 1px #888;pointer-events:none}.clr-alpha div:before{content:'';position:absolute;height:100%;width:100%;left:0;top:0;border-radius:50%;background-color:currentColor}.clr-format{display:none;order:1;width:calc(100% - 40px);margin:0 20px 20px}.clr-segmented{display:flex;position:relative;width:100%;margin:0;padding:0;border:1px solid #ddd;border-radius:15px;box-sizing:border-box;color:#999;font-size:12px}.clr-segmented input,.clr-segmented legend{position:absolute;width:100%;height:100%;margin:0;padding:0;border:0;left:0;top:0;opacity:0;pointer-events:none}.clr-segmented label{flex-grow:1;padding:4px 0;text-align:center;cursor:pointer}.clr-segmented label:first-of-type{border-radius:10px 0 0 10px}.clr-segmented label:last-of-type{border-radius:0 10px 10px 0}.clr-segmented input:checked+label{color:#fff;background-color:#666}.clr-swatches{order:2;width:calc(100% - 32px);margin:0 16px}.clr-swatches div{display:flex;flex-wrap:wrap;padding-bottom:12px;justify-content:center}.clr-swatches button{position:relative;width:20px;height:20px;margin:0 4px 6px 4px;border:0;border-radius:50%;color:inherit;text-indent:-1000px;white-space:nowrap;overflow:hidden;cursor:pointer}.clr-swatches button:after{content:'';display:block;position:absolute;width:100%;height:100%;left:0;top:0;border-radius:inherit;background-color:currentColor;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}input.clr-color{order:1;width:calc(100% - 80px);height:32px;margin:15px 20px 20px 0;padding:0 10px;border:1px solid #ddd;border-radius:16px;color:#444;background-color:#fff;font-family:sans-serif;font-size:14px;text-align:center;box-shadow:none}input.clr-color:focus{outline:0;border:1px solid #1e90ff}.clr-clear{display:none;order:2;height:24px;margin:0 20px 20px auto;padding:0 20px;border:0;border-radius:12px;color:#fff;background-color:#666;font-family:inherit;font-size:12px;font-weight:400;cursor:pointer}.clr-preview{position:relative;width:32px;height:32px;margin:15px 0 20px 20px;border:0;border-radius:50%;overflow:hidden;cursor:pointer}.clr-preview:after,.clr-preview:before{content:'';position:absolute;height:100%;width:100%;left:0;top:0;border:1px solid #fff;border-radius:50%}.clr-preview:after{border:0;background-color:currentColor;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.clr-alpha div,.clr-color,.clr-hue div,.clr-marker{box-sizing:border-box}.clr-field{display:inline-block;position:relative;color:transparent}.clr-field button{position:absolute;width:30px;height:100%;right:0;top:50%;transform:translateY(-50%);border:0;color:inherit;text-indent:-1000px;white-space:nowrap;overflow:hidden;pointer-events:none}.clr-field button:after{content:'';display:block;position:absolute;width:100%;height:100%;left:0;top:0;border-radius:inherit;background-color:currentColor;box-shadow:inset 0 0 1px rgba(0,0,0,.5)}.clr-alpha,.clr-alpha div,.clr-field button,.clr-preview:before,.clr-swatches button{background-image:repeating-linear-gradient(45deg,#aaa 25%,transparent 25%,transparent 75%,#aaa 75%,#aaa),repeating-linear-gradient(45deg,#aaa 25%,#fff 25%,#fff 75%,#aaa 75%,#aaa);background-position:0 0,4px 4px;background-size:8px 8px}.clr-marker:focus{outline:0}.clr-keyboard-nav .clr-alpha input:focus+div,.clr-keyboard-nav .clr-hue input:focus+div,.clr-keyboard-nav .clr-marker:focus,.clr-keyboard-nav .clr-segmented input:focus+label{outline:0;box-shadow:0 0 0 2px #1e90ff,0 0 2px 2px #fff}.clr-picker[data-alpha=false] .clr-alpha{display:none}.clr-picker[data-minimal=true]{padding-top:16px}.clr-picker[data-minimal=true] .clr-alpha,.clr-picker[data-minimal=true] .clr-color,.clr-picker[data-minimal=true] .clr-gradient,.clr-picker[data-minimal=true] .clr-hue,.clr-picker[data-minimal=true] .clr-preview{display:none}.clr-dark{background-color:#444}.clr-dark .clr-segmented{border-color:#777}.clr-dark .clr-swatches button:after{box-shadow:inset 0 0 0 1px rgba(255,255,255,.3)}.clr-dark input.clr-color{color:#fff;border-color:#777;background-color:#555}.clr-dark input.clr-color:focus{border-color:#1e90ff}.clr-dark .clr-preview:after{box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.clr-dark .clr-alpha,.clr-dark .clr-alpha div,.clr-dark .clr-preview:before,.clr-dark .clr-swatches button{background-image:repeating-linear-gradient(45deg,#666 25%,transparent 25%,transparent 75%,#888 75%,#888),repeating-linear-gradient(45deg,#888 25%,#444 25%,#444 75%,#888 75%,#888)}.clr-picker.clr-polaroid{border-radius:6px;box-shadow:0 0 5px rgba(0,0,0,.1),0 5px 30px rgba(0,0,0,.2)}.clr-picker.clr-polaroid:before{content:'';display:block;position:absolute;width:16px;height:10px;left:20px;top:-10px;border:solid transparent;border-width:0 8px 10px 8px;border-bottom-color:currentColor;box-sizing:border-box;color:#fff;filter:drop-shadow(0 -4px 3px rgba(0,0,0,.1));pointer-events:none}.clr-picker.clr-polaroid.clr-dark:before{color:#444}.clr-picker.clr-polaroid.clr-left:before{left:auto;right:20px}.clr-picker.clr-polaroid.clr-top:before{top:auto;bottom:-10px;transform:rotateZ(180deg)}.clr-polaroid .clr-gradient{width:calc(100% - 20px);height:120px;margin:10px;border-radius:3px}.clr-polaroid .clr-alpha,.clr-polaroid .clr-hue{width:calc(100% - 30px);height:10px;margin:6px 15px;border-radius:5px}.clr-polaroid .clr-alpha div,.clr-polaroid .clr-hue div{box-shadow:0 0 5px rgba(0,0,0,.2)}.clr-polaroid .clr-format{width:calc(100% - 20px);margin:0 10px 15px}.clr-polaroid .clr-swatches{width:calc(100% - 12px);margin:0 6px}.clr-polaroid .clr-swatches div{padding-bottom:10px}.clr-polaroid .clr-swatches button{width:22px;height:22px}.clr-polaroid input.clr-color{width:calc(100% - 60px);margin:10px 10px 15px 0}.clr-polaroid .clr-clear{margin:0 10px 15px auto}.clr-polaroid .clr-preview{margin:10px 0 15px 10px}.clr-picker.clr-large{width:275px}.clr-large .clr-gradient{height:150px}.clr-large .clr-swatches button{width:22px;height:22px}.clr-picker.clr-pill{width:380px;padding-left:180px;box-sizing:border-box}.clr-pill .clr-gradient{position:absolute;width:180px;height:100%;left:0;top:0;margin-bottom:0;border-radius:3px 0 0 3px}.clr-pill .clr-hue{margin-top:20px} \ No newline at end of file +.clr-picker{display:none;flex-wrap:wrap;position:absolute;width:200px;z-index:1000;border-radius:10px;background-color:#fff;justify-content:flex-end;box-shadow:0 0 5px rgba(0,0,0,.05),0 5px 20px rgba(0,0,0,.1);-moz-user-select:none;-webkit-user-select:none;user-select:none}.clr-picker.clr-open,.clr-picker[data-inline=true]{display:flex}.clr-picker[data-inline=true]{position:relative}.clr-gradient{position:relative;width:100%;height:100px;margin-bottom:15px;border-radius:3px 3px 0 0;background-image:linear-gradient(rgba(0,0,0,0),#000),linear-gradient(90deg,#fff,currentColor);cursor:pointer}.clr-marker{position:absolute;width:12px;height:12px;margin:-6px 0 0 -6px;border:1px solid #fff;border-radius:50%;background-color:currentColor;cursor:pointer}.clr-picker input[type=range]::-webkit-slider-runnable-track{width:100%;height:8px}.clr-picker input[type=range]::-webkit-slider-thumb{width:8px;height:8px;-webkit-appearance:none}.clr-picker input[type=range]::-moz-range-track{width:100%;height:8px;border:0}.clr-picker input[type=range]::-moz-range-thumb{width:8px;height:8px;border:0}.clr-hue{background-image:linear-gradient(to right,red 0,#ff0 16.66%,#0f0 33.33%,#0ff 50%,#00f 66.66%,#f0f 83.33%,red 100%)}.clr-alpha,.clr-hue{position:relative;width:calc(100% - 40px);height:8px;margin:5px 20px;border-radius:4px}.clr-alpha span{display:block;height:100%;width:100%;border-radius:inherit;background-image:linear-gradient(90deg,rgba(0,0,0,0),currentColor)}.clr-alpha input,.clr-hue input{position:absolute;width:calc(100% + 16px);height:16px;left:-8px;top:-4px;margin:0;background-color:transparent;opacity:0;cursor:pointer;appearance:none;-webkit-appearance:none}.clr-alpha div,.clr-hue div{position:absolute;width:16px;height:16px;left:0;top:50%;margin-left:-8px;transform:translateY(-50%);border:2px solid #fff;border-radius:50%;background-color:currentColor;box-shadow:0 0 1px #888;pointer-events:none}.clr-alpha div:before{content:'';position:absolute;height:100%;width:100%;left:0;top:0;border-radius:50%;background-color:currentColor}.clr-format{display:none;order:1;width:calc(100% - 40px);margin:0 20px 20px}.clr-segmented{display:flex;position:relative;width:100%;margin:0;padding:0;border:1px solid #ddd;border-radius:15px;box-sizing:border-box;color:#999;font-size:12px}.clr-segmented input,.clr-segmented legend{position:absolute;width:100%;height:100%;margin:0;padding:0;border:0;left:0;top:0;opacity:0;pointer-events:none}.clr-segmented label{flex-grow:1;margin:0;padding:4px 0;font-size:inherit;font-weight:400;line-height:initial;text-align:center;cursor:pointer}.clr-segmented label:first-of-type{border-radius:10px 0 0 10px}.clr-segmented label:last-of-type{border-radius:0 10px 10px 0}.clr-segmented input:checked+label{color:#fff;background-color:#666}.clr-swatches{order:2;width:calc(100% - 32px);margin:0 16px}.clr-swatches div{display:flex;flex-wrap:wrap;padding-bottom:12px;justify-content:center}.clr-swatches button{position:relative;width:20px;height:20px;margin:0 4px 6px 4px;padding:0;border:0;border-radius:50%;color:inherit;text-indent:-1000px;white-space:nowrap;overflow:hidden;cursor:pointer}.clr-swatches button:after{content:'';display:block;position:absolute;width:100%;height:100%;left:0;top:0;border-radius:inherit;background-color:currentColor;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}input.clr-color{order:1;width:calc(100% - 80px);height:32px;margin:15px 20px 20px auto;padding:0 10px;border:1px solid #ddd;border-radius:16px;color:#444;background-color:#fff;font-family:sans-serif;font-size:14px;text-align:center;box-shadow:none}input.clr-color:focus{outline:0;border:1px solid #1e90ff}.clr-clear,.clr-close{display:none;order:2;height:24px;margin:0 20px 20px;padding:0 20px;border:0;border-radius:12px;color:#fff;background-color:#666;font-family:inherit;font-size:12px;font-weight:400;cursor:pointer}.clr-close{display:block;margin:0 20px 20px auto}.clr-preview{position:relative;width:32px;height:32px;margin:15px 0 20px 20px;border-radius:50%;overflow:hidden}.clr-preview:after,.clr-preview:before{content:'';position:absolute;height:100%;width:100%;left:0;top:0;border:1px solid #fff;border-radius:50%}.clr-preview:after{border:0;background-color:currentColor;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.clr-preview button{position:absolute;width:100%;height:100%;z-index:1;margin:0;padding:0;border:0;background-color:transparent;text-indent:-9999px;cursor:pointer}.clr-alpha div,.clr-color,.clr-hue div,.clr-marker{box-sizing:border-box}.clr-field{display:inline-block;position:relative;color:transparent}.clr-field input{margin:0}.clr-field button{position:absolute;width:30px;height:100%;right:0;top:50%;transform:translateY(-50%);margin:0;padding:0;border:0;color:inherit;text-indent:-1000px;white-space:nowrap;overflow:hidden;pointer-events:none}.clr-field button:after{content:'';display:block;position:absolute;width:100%;height:100%;left:0;top:0;border-radius:inherit;background-color:currentColor;box-shadow:inset 0 0 1px rgba(0,0,0,.5)}.clr-alpha,.clr-alpha div,.clr-field button,.clr-preview:before,.clr-swatches button{background-image:repeating-linear-gradient(45deg,#aaa 25%,transparent 25%,transparent 75%,#aaa 75%,#aaa),repeating-linear-gradient(45deg,#aaa 25%,#fff 25%,#fff 75%,#aaa 75%,#aaa);background-position:0 0,4px 4px;background-size:8px 8px}.clr-marker:focus{outline:0}.clr-keyboard-nav .clr-alpha input:focus+div,.clr-keyboard-nav .clr-hue input:focus+div,.clr-keyboard-nav .clr-marker:focus,.clr-keyboard-nav .clr-segmented input:focus+label{outline:0;box-shadow:0 0 0 2px #1e90ff,0 0 2px 2px #fff}.clr-picker[data-alpha=false] .clr-alpha{display:none}.clr-picker[data-minimal=true]{padding-top:16px}.clr-picker[data-minimal=true] .clr-alpha,.clr-picker[data-minimal=true] .clr-color,.clr-picker[data-minimal=true] .clr-gradient,.clr-picker[data-minimal=true] .clr-hue,.clr-picker[data-minimal=true] .clr-preview{display:none}.clr-dark{background-color:#444}.clr-dark .clr-segmented{border-color:#777}.clr-dark .clr-swatches button:after{box-shadow:inset 0 0 0 1px rgba(255,255,255,.3)}.clr-dark input.clr-color{color:#fff;border-color:#777;background-color:#555}.clr-dark input.clr-color:focus{border-color:#1e90ff}.clr-dark .clr-preview:after{box-shadow:inset 0 0 0 1px rgba(255,255,255,.5)}.clr-dark .clr-alpha,.clr-dark .clr-alpha div,.clr-dark .clr-preview:before,.clr-dark .clr-swatches button{background-image:repeating-linear-gradient(45deg,#666 25%,transparent 25%,transparent 75%,#888 75%,#888),repeating-linear-gradient(45deg,#888 25%,#444 25%,#444 75%,#888 75%,#888)}.clr-picker.clr-polaroid{border-radius:6px;box-shadow:0 0 5px rgba(0,0,0,.1),0 5px 30px rgba(0,0,0,.2)}.clr-picker.clr-polaroid:before{content:'';display:block;position:absolute;width:16px;height:10px;left:20px;top:-10px;border:solid transparent;border-width:0 8px 10px 8px;border-bottom-color:currentColor;box-sizing:border-box;color:#fff;filter:drop-shadow(0 -4px 3px rgba(0,0,0,.1));pointer-events:none}.clr-picker.clr-polaroid.clr-dark:before{color:#444}.clr-picker.clr-polaroid.clr-left:before{left:auto;right:20px}.clr-picker.clr-polaroid.clr-top:before{top:auto;bottom:-10px;transform:rotateZ(180deg)}.clr-polaroid .clr-gradient{width:calc(100% - 20px);height:120px;margin:10px;border-radius:3px}.clr-polaroid .clr-alpha,.clr-polaroid .clr-hue{width:calc(100% - 30px);height:10px;margin:6px 15px;border-radius:5px}.clr-polaroid .clr-alpha div,.clr-polaroid .clr-hue div{box-shadow:0 0 5px rgba(0,0,0,.2)}.clr-polaroid .clr-format{width:calc(100% - 20px);margin:0 10px 15px}.clr-polaroid .clr-swatches{width:calc(100% - 12px);margin:0 6px}.clr-polaroid .clr-swatches div{padding-bottom:10px}.clr-polaroid .clr-swatches button{width:22px;height:22px}.clr-polaroid input.clr-color{width:calc(100% - 60px);margin:10px 10px 15px auto}.clr-polaroid .clr-clear{margin:0 10px 15px 10px}.clr-polaroid .clr-close{margin:0 10px 15px auto}.clr-polaroid .clr-preview{margin:10px 0 15px 10px}.clr-picker.clr-large{width:275px}.clr-large .clr-gradient{height:150px}.clr-large .clr-swatches button{width:22px;height:22px}.clr-picker.clr-pill{width:380px;padding-left:180px;box-sizing:border-box}.clr-pill .clr-gradient{position:absolute;width:180px;height:100%;left:0;top:0;margin-bottom:0;border-radius:3px 0 0 3px}.clr-pill .clr-hue{margin-top:20px} \ No newline at end of file diff --git a/src/vendor/coloris.min.js b/src/vendor/coloris.min.js index 81625fb..8d597f2 100644 --- a/src/vendor/coloris.min.js +++ b/src/vendor/coloris.min.js @@ -3,4 +3,4 @@ * Licensed under the MIT License (MIT) * https://github.com/mdbassit/Coloris */ -!function(u,p,s){var d,f,h,b,c,v,y,i,g,l,m,w,k,x,a,r=p.createElement("canvas").getContext("2d"),L={r:0,g:0,b:0,h:0,s:0,v:0,a:1},E={el:"[data-coloris]",parent:"body",theme:"default",themeMode:"light",wrap:!0,margin:2,format:"hex",formatToggle:!1,swatches:[],swatchesOnly:!1,alpha:!0,forceAlpha:!1,focusInput:!0,selectInput:!1,inline:!1,defaultColor:"#000000",clearButton:!1,clearLabel:"Clear",a11y:{open:"Open color picker",close:"Close color picker",marker:"Saturation: {s}. Brightness: {v}.",hueSlider:"Hue slider",alphaSlider:"Opacity slider",input:"Color value field",format:"Color format",swatch:"Color swatch",instruction:"Saturation and brightness selector. Use up, down, left and right arrow keys to select."}},n={},o="",S={},A=!1;function T(e){if("object"==typeof e)for(var t in e)switch(t){case"el":H(e.el),!1!==e.wrap&&N(e.el);break;case"parent":(d=p.querySelector(e.parent))&&(d.appendChild(f),E.parent=e.parent,d===p.body&&(d=null));break;case"themeMode":E.themeMode=e.themeMode,"auto"===e.themeMode&&u.matchMedia&&u.matchMedia("(prefers-color-scheme: dark)").matches&&(E.themeMode="dark");case"theme":e.theme&&(E.theme=e.theme),f.className="clr-picker clr-"+E.theme+" clr-"+E.themeMode,E.inline&&O();break;case"margin":e.margin*=1,E.margin=(isNaN(e.margin)?E:e).margin;break;case"wrap":e.el&&e.wrap&&N(e.el);break;case"formatToggle":E.formatToggle=!!e.formatToggle,X("clr-format").style.display=E.formatToggle?"block":"none",E.formatToggle&&(E.format="auto");break;case"swatches":Array.isArray(e.swatches)&&function(){var a=[];e.swatches.forEach(function(e,t){a.push('")}),X("clr-swatches").innerHTML=a.length?"
    "+a.join("")+"
    ":"",E.swatches=e.swatches.slice()}();break;case"swatchesOnly":E.swatchesOnly=!!e.swatchesOnly,f.setAttribute("data-minimal",E.swatchesOnly);break;case"alpha":E.alpha=!!e.alpha,f.setAttribute("data-alpha",E.alpha);break;case"inline":E.inline=!!e.inline,f.setAttribute("data-inline",E.inline),E.inline&&(l=e.defaultColor||E.defaultColor,x=D(l),O(),j(l));break;case"clearButton":"object"==typeof e.clearButton&&(e.clearButton.label&&(E.clearLabel=e.clearButton.label,i.innerHTML=E.clearLabel),e.clearButton=e.clearButton.show),E.clearButton=!!e.clearButton,i.style.display=E.clearButton?"block":"none";break;case"clearLabel":E.clearLabel=e.clearLabel,i.innerHTML=E.clearLabel;break;case"a11y":var a,l,r=e.a11y,n=!1;if("object"==typeof r)for(var o in r)r[o]&&E.a11y[o]&&(E.a11y[o]=r[o],n=!0);n&&(a=X("clr-open-label"),l=X("clr-swatch-label"),a.innerHTML=E.a11y.open,l.innerHTML=E.a11y.swatch,v.setAttribute("aria-label",E.a11y.close),g.setAttribute("aria-label",E.a11y.hueSlider),m.setAttribute("aria-label",E.a11y.alphaSlider),y.setAttribute("aria-label",E.a11y.input),h.setAttribute("aria-label",E.a11y.instruction));default:E[t]=e[t]}}function C(e,t){"string"==typeof e&&"object"==typeof t&&(n[e]=t,A=!0)}function M(e){delete n[e],0===Object.keys(n).length&&(A=!1,e===o&&B())}function t(l){if(A){var e,r=["el","wrap","inline","defaultColor","a11y"];for(e in n)if("break"===function(e){var t=n[e];if(l.matches(e)){for(var a in o=e,S={},r.forEach(function(e){return delete t[e]}),t)S[a]=Array.isArray(E[a])?E[a].slice():E[a];return T(t),"break"}}(e))break}}function B(){0r.clientWidth&&(a+=t.width-o,c.left=!0),l+i>r.clientHeight-e&&i+E.margin<=t.top-(s.y-n)&&(l-=t.height+i+2*E.margin,c.top=!0),l+=r.scrollTop):(a+o>p.documentElement.clientWidth&&(a+=t.width-o,c.left=!0),l+i-n>p.documentElement.clientHeight&&i+E.margin<=t.top&&(l=n+t.y-i-E.margin,c.top=!0)),f.classList.toggle("clr-left",c.left),f.classList.toggle("clr-top",c.top),f.style.left=a+"px",f.style.top=l+"px"),b={width:h.offsetWidth,height:h.offsetHeight,x:f.offsetLeft+h.offsetLeft+s.x,y:f.offsetTop+h.offsetTop+s.y}}function N(e){p.querySelectorAll(e).forEach(function(e){var t,a=e.parentNode;a.classList.contains("clr-field")||((t=p.createElement("div")).innerHTML='',a.insertBefore(t,e),t.setAttribute("class","clr-field"),t.style.color=e.value,t.appendChild(e))})}function I(e){var t;k&&!E.inline&&(t=k,e&&(k=null,a!==t.value&&(t.value=a,t.dispatchEvent(new Event("input",{bubbles:!0})))),setTimeout(function(){a!==t.value&&t.dispatchEvent(new Event("change",{bubbles:!0}))}),f.classList.remove("clr-open"),A&&B(),t.dispatchEvent(new Event("close",{bubbles:!0})),E.focusInput&&t.focus({preventScroll:!0}),k=null)}function j(e){var t=function(e){var t;r.fillStyle="#000",r.fillStyle=e,(e=/^((rgba)|rgb)[\D]+([\d.]+)[\D]+([\d.]+)[\D]+([\d.]+)[\D]*?([\d.]+|$)/i.exec(r.fillStyle))?(t={r:+e[3],g:+e[4],b:+e[5],a:+e[6]}).a=+t.a.toFixed(2):(e=r.fillStyle.replace("#","").match(/.{2}/g).map(function(e){return parseInt(e,16)}),t={r:e[0],g:e[1],b:e[2],a:1});return t}(e),e=function(e){var t=e.r/255,a=e.g/255,l=e.b/255,r=s.max(t,a,l),n=s.min(t,a,l),o=r-n,i=r,c=0,n=0;o&&(r===t&&(c=(a-l)/o),r===a&&(c=2+(l-t)/o),r===l&&(c=4+(t-a)/o),r&&(n=o/r));return{h:(c=s.floor(60*c))<0?c+360:c,s:s.round(100*n),v:s.round(100*i),a:e.a}}(t);R(e.s,e.v),q(t,e),g.value=e.h,f.style.color="hsl("+e.h+", 100%, 50%)",l.style.left=e.h/360*100+"%",c.style.left=b.width*e.s/100+"px",c.style.top=b.height-b.height*e.v/100+"px",m.value=100*e.a,w.style.left=100*e.a+"%"}function D(e){e=e.substring(0,3).toLowerCase();return"rgb"===e||"hsl"===e?e:"hex"}function F(e){e=void 0!==e?e:y.value,k&&(k.value=e,k.dispatchEvent(new Event("input",{bubbles:!0}))),p.dispatchEvent(new CustomEvent("coloris:pick",{detail:{color:e}}))}function W(e,t){e={h:+g.value,s:e/b.width*100,v:100-t/b.height*100,a:m.value/100},t=function(e){var t=e.s/100,a=e.v/100,l=t*a,r=e.h/60,n=l*(1-s.abs(r%2-1)),o=a-l;l+=o,n+=o;t=s.floor(r)%6,a=[l,n,o,o,n,l][t],r=[n,l,l,n,o,o][t],t=[o,o,n,l,l,n][t];return{r:s.round(255*a),g:s.round(255*r),b:s.round(255*t),a:e.a}}(e);R(e.s,e.v),q(t,e),F()}function R(e,t){var a=E.a11y.marker;e=+e.toFixed(1),t=+t.toFixed(1),a=(a=a.replace("{s}",e)).replace("{v}",t),c.setAttribute("aria-label",a)}function Y(e){var t={pageX:((a=e).changedTouches?a.changedTouches[0]:a).pageX,pageY:(a.changedTouches?a.changedTouches[0]:a).pageY},a=t.pageX-b.x,t=t.pageY-b.y;d&&(t+=d.scrollTop),a=a<0?0:a>b.width?b.width:a,t=t<0?0:t>b.height?b.height:t,c.style.left=a+"px",c.style.top=t+"px",W(a,t),e.preventDefault(),e.stopPropagation()}function q(e,t){void 0===t&&(t={});var a,l,r=E.format;for(a in e=void 0===e?{}:e)L[a]=e[a];for(l in t)L[l]=t[l];var n,o=function(e){var t=e.r.toString(16),a=e.g.toString(16),l=e.b.toString(16),r="";e.r<16&&(t="0"+t);e.g<16&&(a="0"+a);e.b<16&&(l="0"+l);E.alpha&&(e.a<1||E.forceAlpha)&&(e=255*e.a|0,r=e.toString(16),e<16&&(r="0"+r));return"#"+t+a+l+r}(L),i=o.substring(0,7);switch(c.style.color=i,w.parentNode.style.color=i,w.style.color=o,v.style.color=o,h.style.display="none",h.offsetHeight,h.style.display="",w.nextElementSibling.style.display="none",w.nextElementSibling.offsetHeight,w.nextElementSibling.style.display="","mixed"===r?r=1===L.a?"hex":"rgb":"auto"===r&&(r=x),r){case"hex":y.value=o;break;case"rgb":y.value=(n=L,!E.alpha||1===n.a&&!E.forceAlpha?"rgb("+n.r+", "+n.g+", "+n.b+")":"rgba("+n.r+", "+n.g+", "+n.b+", "+n.a+")");break;case"hsl":y.value=(n=function(e){var t,a=e.v/100,l=a*(1-e.s/100/2);0
    '+E.a11y.format+'
    ",p.body.appendChild(f),h=X("clr-color-area"),c=X("clr-color-marker"),i=X("clr-clear"),v=X("clr-color-preview"),y=X("clr-color-value"),g=X("clr-hue-slider"),l=X("clr-hue-marker"),m=X("clr-alpha-slider"),w=X("clr-alpha-marker"),H(E.el),N(E.el),U(f,"mousedown",function(e){f.classList.remove("clr-keyboard-nav"),e.stopPropagation()}),U(h,"mousedown",function(e){U(p,"mousemove",Y)}),U(h,"touchstart",function(e){p.addEventListener("touchmove",Y,{passive:!1})}),U(c,"mousedown",function(e){U(p,"mousemove",Y)}),U(c,"touchstart",function(e){p.addEventListener("touchmove",Y,{passive:!1})}),U(y,"change",function(e){(k||E.inline)&&(j(y.value),F())}),U(i,"click",function(e){F(""),I()}),U(v,"click",function(e){F(),I()}),U(p,"click",".clr-format input",function(e){x=e.target.value,q(),F()}),U(f,"click",".clr-swatches button",function(e){j(e.target.textContent),F(),E.swatchesOnly&&I()}),U(p,"mouseup",function(e){p.removeEventListener("mousemove",Y)}),U(p,"touchend",function(e){p.removeEventListener("touchmove",Y)}),U(p,"mousedown",function(e){f.classList.remove("clr-keyboard-nav"),I()}),U(p,"keydown",function(e){"Escape"===e.key?I(!0):"Tab"===e.key&&f.classList.add("clr-keyboard-nav")}),U(p,"click",".clr-field button",function(e){A&&B(),e.target.nextElementSibling.dispatchEvent(new Event("click",{bubbles:!0}))}),U(c,"keydown",function(e){var t={ArrowUp:[0,-1],ArrowDown:[0,1],ArrowLeft:[-1,0],ArrowRight:[1,0]};-1!==Object.keys(t).indexOf(e.key)&&(!function(e,t){e=+c.style.left.replace("px","")+e,t=+c.style.top.replace("px","")+t,c.style.left=e+"px",c.style.top=t+"px",W(e,t)}.apply(void 0,t[e.key]),e.preventDefault())}),U(h,"click",Y),U(g,"input",e),U(m,"input",P)})}(window,document,Math); \ No newline at end of file +!function(u,d,s){var p,f,h,b,i,v,y,c,g,m,l,w,k,L,E,a,r=d.createElement("canvas").getContext("2d"),x={r:0,g:0,b:0,h:0,s:0,v:0,a:1},A={el:"[data-coloris]",parent:"body",theme:"default",themeMode:"light",wrap:!0,margin:2,format:"hex",formatToggle:!1,swatches:[],swatchesOnly:!1,alpha:!0,forceAlpha:!1,focusInput:!0,selectInput:!1,inline:!1,defaultColor:"#000000",clearButton:!1,clearLabel:"Clear",closeButton:!1,closeLabel:"Close",a11y:{open:"Open color picker",close:"Close color picker",clear:"Clear the selected color",marker:"Saturation: {s}. Brightness: {v}.",hueSlider:"Hue slider",alphaSlider:"Opacity slider",input:"Color value field",format:"Color format",swatch:"Color swatch",instruction:"Saturation and brightness selector. Use up, down, left and right arrow keys to select."}},n={},o="",S={},T=!1;function C(e){if("object"==typeof e)for(var t in e)switch(t){case"el":O(e.el),!1!==e.wrap&&I(e.el);break;case"parent":(p=d.querySelector(e.parent))&&(p.appendChild(f),A.parent=e.parent,p===d.body&&(p=null));break;case"themeMode":A.themeMode=e.themeMode,"auto"===e.themeMode&&u.matchMedia&&u.matchMedia("(prefers-color-scheme: dark)").matches&&(A.themeMode="dark");case"theme":e.theme&&(A.theme=e.theme),f.className="clr-picker clr-"+A.theme+" clr-"+A.themeMode,A.inline&&N();break;case"margin":e.margin*=1,A.margin=(isNaN(e.margin)?A:e).margin;break;case"wrap":e.el&&e.wrap&&I(e.el);break;case"formatToggle":A.formatToggle=!!e.formatToggle,G("clr-format").style.display=A.formatToggle?"block":"none",A.formatToggle&&(A.format="auto");break;case"swatches":Array.isArray(e.swatches)&&function(){var a=[];e.swatches.forEach(function(e,t){a.push('")}),G("clr-swatches").innerHTML=a.length?"
    "+a.join("")+"
    ":"",A.swatches=e.swatches.slice()}();break;case"swatchesOnly":A.swatchesOnly=!!e.swatchesOnly,f.setAttribute("data-minimal",A.swatchesOnly);break;case"alpha":A.alpha=!!e.alpha,f.setAttribute("data-alpha",A.alpha);break;case"inline":A.inline=!!e.inline,f.setAttribute("data-inline",A.inline),A.inline&&(l=e.defaultColor||A.defaultColor,E=F(l),N(),j(l));break;case"clearButton":"object"==typeof e.clearButton&&(e.clearButton.label&&(A.clearLabel=e.clearButton.label,c.innerHTML=A.clearLabel),e.clearButton=e.clearButton.show),A.clearButton=!!e.clearButton,c.style.display=A.clearButton?"block":"none";break;case"clearLabel":A.clearLabel=e.clearLabel,c.innerHTML=A.clearLabel;break;case"closeButton":A.closeButton=!!e.closeButton,A.closeButton?f.insertBefore(g,v):v.appendChild(g);break;case"closeLabel":A.closeLabel=e.closeLabel,g.innerHTML=A.closeLabel;break;case"a11y":var a,l,r=e.a11y,n=!1;if("object"==typeof r)for(var o in r)r[o]&&A.a11y[o]&&(A.a11y[o]=r[o],n=!0);n&&(a=G("clr-open-label"),l=G("clr-swatch-label"),a.innerHTML=A.a11y.open,l.innerHTML=A.a11y.swatch,g.setAttribute("aria-label",A.a11y.close),c.setAttribute("aria-label",A.a11y.clear),m.setAttribute("aria-label",A.a11y.hueSlider),w.setAttribute("aria-label",A.a11y.alphaSlider),y.setAttribute("aria-label",A.a11y.input),h.setAttribute("aria-label",A.a11y.instruction));default:A[t]=e[t]}}function B(e,t){"string"==typeof e&&"object"==typeof t&&(n[e]=t,T=!0)}function M(e){delete n[e],0===Object.keys(n).length&&(T=!1,e===o&&H())}function t(l){if(T){var e,r=["el","wrap","inline","defaultColor","a11y"];for(e in n)if("break"===function(e){var t=n[e];if(l.matches(e)){for(var a in o=e,S={},r.forEach(function(e){return delete t[e]}),t)S[a]=Array.isArray(A[a])?A[a].slice():A[a];return C(t),"break"}}(e))break}}function H(){0r.clientWidth&&(a+=t.width-o,i.left=!0),l+c>r.clientHeight-e&&c+A.margin<=t.top-(s.y-n)&&(l-=t.height+c+2*A.margin,i.top=!0),l+=r.scrollTop):(a+o>d.documentElement.clientWidth&&(a+=t.width-o,i.left=!0),l+c-n>d.documentElement.clientHeight&&c+A.margin<=t.top&&(l=n+t.y-c-A.margin,i.top=!0)),f.classList.toggle("clr-left",i.left),f.classList.toggle("clr-top",i.top),f.style.left=a+"px",f.style.top=l+"px"),b={width:h.offsetWidth,height:h.offsetHeight,x:f.offsetLeft+h.offsetLeft+s.x,y:f.offsetTop+h.offsetTop+s.y}}function I(e){d.querySelectorAll(e).forEach(function(e){var t,a=e.parentNode;a.classList.contains("clr-field")||((t=d.createElement("div")).innerHTML='',a.insertBefore(t,e),t.setAttribute("class","clr-field"),t.style.color=e.value,t.appendChild(e))})}function D(e){var t;L&&!A.inline&&(t=L,e&&(L=null,a!==t.value&&(t.value=a,t.dispatchEvent(new Event("input",{bubbles:!0})))),setTimeout(function(){a!==t.value&&t.dispatchEvent(new Event("change",{bubbles:!0}))}),f.classList.remove("clr-open"),T&&H(),t.dispatchEvent(new Event("close",{bubbles:!0})),A.focusInput&&t.focus({preventScroll:!0}),L=null)}function j(e){var t=function(e){var t;r.fillStyle="#000",r.fillStyle=e,(e=/^((rgba)|rgb)[\D]+([\d.]+)[\D]+([\d.]+)[\D]+([\d.]+)[\D]*?([\d.]+|$)/i.exec(r.fillStyle))?(t={r:+e[3],g:+e[4],b:+e[5],a:+e[6]}).a=+t.a.toFixed(2):(e=r.fillStyle.replace("#","").match(/.{2}/g).map(function(e){return parseInt(e,16)}),t={r:e[0],g:e[1],b:e[2],a:1});return t}(e),e=function(e){var t=e.r/255,a=e.g/255,l=e.b/255,r=s.max(t,a,l),n=s.min(t,a,l),o=r-n,c=r,i=0,n=0;o&&(r===t&&(i=(a-l)/o),r===a&&(i=2+(l-t)/o),r===l&&(i=4+(t-a)/o),r&&(n=o/r));return{h:(i=s.floor(60*i))<0?i+360:i,s:s.round(100*n),v:s.round(100*c),a:e.a}}(t);Y(e.s,e.v),U(t,e),m.value=e.h,f.style.color="hsl("+e.h+", 100%, 50%)",l.style.left=e.h/360*100+"%",i.style.left=b.width*e.s/100+"px",i.style.top=b.height-b.height*e.v/100+"px",w.value=100*e.a,k.style.left=100*e.a+"%"}function F(e){e=e.substring(0,3).toLowerCase();return"rgb"===e||"hsl"===e?e:"hex"}function R(e){e=void 0!==e?e:y.value,L&&(L.value=e,L.dispatchEvent(new Event("input",{bubbles:!0}))),d.dispatchEvent(new CustomEvent("coloris:pick",{detail:{color:e}}))}function W(e,t){e={h:+m.value,s:e/b.width*100,v:100-t/b.height*100,a:w.value/100},t=function(e){var t=e.s/100,a=e.v/100,l=t*a,r=e.h/60,n=l*(1-s.abs(r%2-1)),o=a-l;l+=o,n+=o;t=s.floor(r)%6,a=[l,n,o,o,n,l][t],r=[n,l,l,n,o,o][t],t=[o,o,n,l,l,n][t];return{r:s.round(255*a),g:s.round(255*r),b:s.round(255*t),a:e.a}}(e);Y(e.s,e.v),U(t,e),R()}function Y(e,t){var a=A.a11y.marker;e=+e.toFixed(1),t=+t.toFixed(1),a=(a=a.replace("{s}",e)).replace("{v}",t),i.setAttribute("aria-label",a)}function q(e){var t={pageX:((a=e).changedTouches?a.changedTouches[0]:a).pageX,pageY:(a.changedTouches?a.changedTouches[0]:a).pageY},a=t.pageX-b.x,t=t.pageY-b.y;p&&(t+=p.scrollTop),P(a,t),e.preventDefault(),e.stopPropagation()}function P(e,t){e=e<0?0:e>b.width?b.width:e,t=t<0?0:t>b.height?b.height:t,i.style.left=e+"px",i.style.top=t+"px",W(e,t),i.focus()}function U(e,t){void 0===t&&(t={});var a,l,r=A.format;for(a in e=void 0===e?{}:e)x[a]=e[a];for(l in t)x[l]=t[l];var n,o=function(e){var t=e.r.toString(16),a=e.g.toString(16),l=e.b.toString(16),r="";e.r<16&&(t="0"+t);e.g<16&&(a="0"+a);e.b<16&&(l="0"+l);A.alpha&&(e.a<1||A.forceAlpha)&&(e=255*e.a|0,r=e.toString(16),e<16&&(r="0"+r));return"#"+t+a+l+r}(x),c=o.substring(0,7);switch(i.style.color=c,k.parentNode.style.color=c,k.style.color=o,v.style.color=o,h.style.display="none",h.offsetHeight,h.style.display="",k.nextElementSibling.style.display="none",k.nextElementSibling.offsetHeight,k.nextElementSibling.style.display="","mixed"===r?r=1===x.a?"hex":"rgb":"auto"===r&&(r=E),r){case"hex":y.value=o;break;case"rgb":y.value=(n=x,!A.alpha||1===n.a&&!A.forceAlpha?"rgb("+n.r+", "+n.g+", "+n.b+")":"rgba("+n.r+", "+n.g+", "+n.b+", "+n.a+")");break;case"hsl":y.value=(n=function(e){var t,a=e.v/100,l=a*(1-e.s/100/2);0
    '+A.a11y.format+'
    ",d.body.appendChild(f),h=G("clr-color-area"),i=G("clr-color-marker"),c=G("clr-clear"),g=G("clr-close"),v=G("clr-color-preview"),y=G("clr-color-value"),m=G("clr-hue-slider"),l=G("clr-hue-marker"),w=G("clr-alpha-slider"),k=G("clr-alpha-marker"),O(A.el),I(A.el),$(f,"mousedown",function(e){f.classList.remove("clr-keyboard-nav"),e.stopPropagation()}),$(h,"mousedown",function(e){$(d,"mousemove",q)}),$(h,"touchstart",function(e){d.addEventListener("touchmove",q,{passive:!1})}),$(i,"mousedown",function(e){$(d,"mousemove",q)}),$(i,"touchstart",function(e){d.addEventListener("touchmove",q,{passive:!1})}),$(y,"change",function(e){(L||A.inline)&&(j(y.value),R())}),$(c,"click",function(e){R(""),D()}),$(g,"click",function(e){R(),D()}),$(d,"click",".clr-format input",function(e){E=e.target.value,U(),R()}),$(f,"click",".clr-swatches button",function(e){j(e.target.textContent),R(),A.swatchesOnly&&D()}),$(d,"mouseup",function(e){d.removeEventListener("mousemove",q)}),$(d,"touchend",function(e){d.removeEventListener("touchmove",q)}),$(d,"mousedown",function(e){f.classList.remove("clr-keyboard-nav"),D()}),$(d,"keydown",function(e){"Escape"===e.key?D(!0):["Tab","ArrowUp","ArrowDown","ArrowLeft","ArrowRight"].includes(e.key)&&f.classList.add("clr-keyboard-nav")}),$(d,"click",".clr-field button",function(e){T&&H(),e.target.nextElementSibling.dispatchEvent(new Event("click",{bubbles:!0}))}),$(i,"keydown",function(e){var t={ArrowUp:[0,-1],ArrowDown:[0,1],ArrowLeft:[-1,0],ArrowRight:[1,0]};Object.keys(t).includes(e.key)&&(!function(e,t){P(+i.style.left.replace("px","")+e,+i.style.top.replace("px","")+t)}.apply(void 0,t[e.key]),e.preventDefault())}),$(h,"click",q),$(m,"input",e),$(w,"input",X)})}(window,document,Math); \ No newline at end of file diff --git a/src/vendor/lucide.min.js b/src/vendor/lucide.min.js index 273f0f9..d232dcb 100644 --- a/src/vendor/lucide.min.js +++ b/src/vendor/lucide.min.js @@ -1,5 +1,5 @@ /** - * lucide v0.104.0 - ISC + * lucide v0.105.0 - ISC */ (function(a,l){typeof exports=="object"&&typeof module<"u"?l(exports):typeof define=="function"&&define.amd?define(["exports"],l):(a=typeof globalThis<"u"?globalThis:a||self,l(a.lucide={}))})(this,function(a){"use strict";const l=(t,c,d=[])=>{const n=document.createElementNS("http://www.w3.org/2000/svg",t);return Object.keys(c).forEach(i=>{n.setAttribute(i,String(c[i]))}),d.length&&d.forEach(i=>{const e=l(...i);n.appendChild(e)}),n};var p=([t,c,d])=>l(t,c,d);const Ci=t=>Array.from(t.attributes).reduce((c,d)=>(c[d.name]=d.value,c),{}),Vi=t=>typeof t=="string"?t:!t||!t.class?"":t.class&&typeof t.class=="string"?t.class.split(" "):t.class&&Array.isArray(t.class)?t.class:"",ui=t=>t.flatMap(Vi).map(c=>c.trim()).filter(Boolean).filter((c,d,n)=>n.indexOf(c)===d).join(" "),Li=t=>t.replace(/(\w)(\w*)(_|-|\s*)/g,(c,d,n)=>d.toUpperCase()+n.toLowerCase()),Ai=(t,{nameAttr:c,icons:d,attrs:n})=>{const i=t.getAttribute(c);if(i==null)return;const e=Li(i),$i=d[e];if(!$i)return console.warn(`${t.outerHTML} icon name was not found in the provided icons object.`);const mi=Ci(t),[fi,Si,Fi]=$i,xi={...Si,"icon-name":i,...n,...mi},Hi=ui(["lucide",`lucide-${i}`,mi,n]);Hi&&Object.assign(xi,{class:Hi});const ki=p([fi,xi,Fi]);return t.parentNode?.replaceChild(ki,t)},h={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"},M=["svg",h,[["circle",{cx:"16",cy:"4",r:"1"}],["path",{d:"m18 19 1-7-5.87.94"}],["path",{d:"m5 8 3-3 5.5 3-2.21 3.1"}],["path",{d:"M4.24 14.48c-.19.58-.27 1.2-.23 1.84a5 5 0 0 0 5.31 4.67c.65-.04 1.25-.2 1.8-.46"}],["path",{d:"M13.76 17.52c.19-.58.27-1.2.23-1.84a5 5 0 0 0-5.31-4.67c-.65.04-1.25.2-1.8.46"}]]],v=["svg",h,[["polyline",{points:"22 12 18 12 15 21 9 3 6 12 2 12"}]]],o=["svg",h,[["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 8h12"}],["path",{d:"M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12"}],["path",{d:"M6.6 15.6A2 2 0 1 0 10 17v-5"}]]],y=["svg",h,[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}],["polygon",{points:"12 15 17 21 7 21 12 15"}]]],s=["svg",h,[["path",{d:"M12 21a8 8 0 1 0 0-16 8 8 0 0 0 0 16z"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"m6 19-2 2"}],["path",{d:"m18 19 2 2"}],["path",{d:"m9 13 2 2 4-4"}]]],g=["svg",h,[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26"}],["path",{d:"M19.9 14.25A7.44 7.44 0 0 0 20 13a8 8 0 0 0-8-8 7.44 7.44 0 0 0-1.25.1"}],["path",{d:"m22 6-3-3"}],["path",{d:"m6 19-2 2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 4 2 6"}]]],r=["svg",h,[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M12 9v4l2 2"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"m6 19-2 2"}],["path",{d:"m18 19 2 2"}]]],$=["svg",h,[["path",{d:"M12 21a8 8 0 1 0 0-16 8 8 0 0 0 0 16z"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"m6 19-2 2"}],["path",{d:"m18 19 2 2"}],["path",{d:"M9 13h6"}]]],m=["svg",h,[["path",{d:"M12 21a8 8 0 1 0 0-16 8 8 0 0 0 0 16z"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"m6 19-2 2"}],["path",{d:"m18 19 2 2"}],["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}]]],x=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3"}]]],H=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",y1:"8",x2:"12",y2:"12"}],["line",{x1:"12",y1:"16",x2:"12.01",y2:"16"}]]],C=["svg",h,[["polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}],["line",{x1:"12",y1:"8",x2:"12",y2:"12"}],["line",{x1:"12",y1:"16",x2:"12.01",y2:"16"}]]],V=["svg",h,[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}],["line",{x1:"12",y1:"9",x2:"12",y2:"13"}],["line",{x1:"12",y1:"17",x2:"12.01",y2:"17"}]]],u=["svg",h,[["path",{d:"M2 12h20"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1"}]]],L=["svg",h,[["path",{d:"M12 2v20"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1"}]]],A=["svg",h,[["line",{x1:"21",y1:"6",x2:"3",y2:"6"}],["line",{x1:"17",y1:"12",x2:"7",y2:"12"}],["line",{x1:"19",y1:"18",x2:"5",y2:"18"}]]],w=["svg",h,[["rect",{x:"4",y:"2",width:"6",height:"16",rx:"2"}],["rect",{x:"14",y:"9",width:"6",height:"9",rx:"2"}],["path",{d:"M22 22H2"}]]],f=["svg",h,[["rect",{x:"2",y:"4",width:"16",height:"6",rx:"2"}],["rect",{x:"9",y:"14",width:"9",height:"6",rx:"2"}],["path",{d:"M22 22V2"}]]],S=["svg",h,[["rect",{x:"4",y:"5",width:"6",height:"14",rx:"2"}],["rect",{x:"14",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M17 22v-5"}],["path",{d:"M17 7V2"}],["path",{d:"M7 22v-3"}],["path",{d:"M7 5V2"}]]],F=["svg",h,[["rect",{x:"4",y:"5",width:"6",height:"14",rx:"2"}],["rect",{x:"14",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M10 2v20"}],["path",{d:"M20 2v20"}]]],k=["svg",h,[["rect",{x:"4",y:"5",width:"6",height:"14",rx:"2"}],["rect",{x:"14",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M4 2v20"}],["path",{d:"M14 2v20"}]]],z=["svg",h,[["rect",{x:"2",y:"5",width:"6",height:"14",rx:"2"}],["rect",{x:"16",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M12 2v20"}]]],Z=["svg",h,[["rect",{x:"2",y:"5",width:"6",height:"14",rx:"2"}],["rect",{x:"12",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M22 2v20"}]]],P=["svg",h,[["rect",{x:"6",y:"5",width:"6",height:"14",rx:"2"}],["rect",{x:"16",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M2 2v20"}]]],B=["svg",h,[["rect",{x:"9",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]]],b=["svg",h,[["rect",{x:"3",y:"5",width:"6",height:"14",rx:"2"}],["rect",{x:"15",y:"7",width:"6",height:"10",rx:"2"}],["path",{d:"M3 2v20"}],["path",{d:"M21 2v20"}]]],D=["svg",h,[["line",{x1:"3",y1:"6",x2:"21",y2:"6"}],["line",{x1:"3",y1:"12",x2:"21",y2:"12"}],["line",{x1:"3",y1:"18",x2:"21",y2:"18"}]]],O=["svg",h,[["line",{x1:"21",y1:"6",x2:"3",y2:"6"}],["line",{x1:"15",y1:"12",x2:"3",y2:"12"}],["line",{x1:"17",y1:"18",x2:"3",y2:"18"}]]],R=["svg",h,[["line",{x1:"21",y1:"6",x2:"3",y2:"6"}],["line",{x1:"21",y1:"12",x2:"9",y2:"12"}],["line",{x1:"21",y1:"18",x2:"7",y2:"18"}]]],T=["svg",h,[["rect",{x:"4",y:"6",width:"6",height:"16",rx:"2"}],["rect",{x:"14",y:"6",width:"6",height:"9",rx:"2"}],["path",{d:"M22 2H2"}]]],U=["svg",h,[["rect",{x:"6",y:"14",width:"9",height:"6",rx:"2"}],["rect",{x:"6",y:"4",width:"16",height:"6",rx:"2"}],["path",{d:"M2 2v20"}]]],E=["svg",h,[["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}],["path",{d:"M22 7h-5"}],["path",{d:"M7 7H1"}],["path",{d:"M22 17h-3"}],["path",{d:"M5 17H2"}]]],G=["svg",h,[["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}],["path",{d:"M2 20h20"}],["path",{d:"M2 10h20"}]]],I=["svg",h,[["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M2 4h20"}]]],W=["svg",h,[["rect",{x:"5",y:"16",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"2",width:"10",height:"6",rx:"2"}],["path",{d:"M2 12h20"}]]],X=["svg",h,[["rect",{x:"5",y:"12",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"2",width:"10",height:"6",rx:"2"}],["path",{d:"M2 22h20"}]]],q=["svg",h,[["rect",{x:"5",y:"16",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"6",width:"10",height:"6",rx:"2"}],["path",{d:"M2 2h20"}]]],N=["svg",h,[["rect",{x:"7",y:"9",width:"10",height:"6",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]]],J=["svg",h,[["rect",{x:"5",y:"15",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"3",width:"10",height:"6",rx:"2"}],["path",{d:"M2 21h20"}],["path",{d:"M2 3h20"}]]],j=["svg",h,[["circle",{cx:"12",cy:"5",r:"3"}],["line",{x1:"12",y1:"22",x2:"12",y2:"8"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}]]],K=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["path",{d:"M7.5 8 10 9"}],["path",{d:"m14 9 2.5-1"}],["path",{d:"M9 10h0"}],["path",{d:"M15 10h0"}]]],Q=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]]],_=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"14.31",y1:"8",x2:"20.05",y2:"17.94"}],["line",{x1:"9.69",y1:"8",x2:"21.17",y2:"8"}],["line",{x1:"7.38",y1:"12",x2:"13.12",y2:"2.06"}],["line",{x1:"9.69",y1:"16",x2:"3.95",y2:"6.06"}],["line",{x1:"14.31",y1:"16",x2:"2.83",y2:"16"}],["line",{x1:"16.62",y1:"12",x2:"10.88",y2:"21.94"}]]],Y=["svg",h,[["path",{d:"M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z"}],["path",{d:"M10 2c1 .5 2 2 2 5"}]]],a1=["svg",h,[["rect",{x:"2",y:"4",width:"20",height:"5",rx:"2"}],["path",{d:"M12 13v7"}],["path",{d:"m9 16 3-3 3 3"}],["path",{d:"M4 9v9a2 2 0 0 0 2 2h2"}],["path",{d:"M20 9v9a2 2 0 0 1-2 2h-2"}]]],h1=["svg",h,[["rect",{x:"2",y:"4",width:"20",height:"5",rx:"2"}],["path",{d:"M4 9v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9"}],["path",{d:"M10 13h4"}]]],t1=["svg",h,[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{d:"M3 11v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v2H7v-2a2 2 0 0 0-4 0Z"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]]],c1=["svg",h,[["path",{d:"M9 3h6v11h4l-7 7-7-7h4z"}]]],d1=["svg",h,[["path",{d:"m3 12 7-7v4h11v6H10v4z"}]]],n1=["svg",h,[["path",{d:"m21 12-7-7v4H3v6h11v4z"}]]],i1=["svg",h,[["path",{d:"M9 21V10H5l7-7 7 7h-4v11z"}]]],l1=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"8 12 12 16 16 12"}],["line",{x1:"12",y1:"8",x2:"12",y2:"16"}]]],e1=["svg",h,[["line",{x1:"17",y1:"7",x2:"7",y2:"17"}],["polyline",{points:"17 17 7 17 7 7"}]]],p1=["svg",h,[["line",{x1:"7",y1:"7",x2:"17",y2:"17"}],["polyline",{points:"17 7 17 17 7 17"}]]],M1=["svg",h,[["line",{x1:"12",y1:"5",x2:"12",y2:"19"}],["polyline",{points:"19 12 12 19 5 12"}]]],v1=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 8 8 12 12 16"}],["line",{x1:"16",y1:"12",x2:"8",y2:"12"}]]],o1=["svg",h,[["polyline",{points:"17 11 21 7 17 3"}],["line",{x1:"21",y1:"7",x2:"9",y2:"7"}],["polyline",{points:"7 21 3 17 7 13"}],["line",{x1:"15",y1:"17",x2:"3",y2:"17"}]]],y1=["svg",h,[["line",{x1:"19",y1:"12",x2:"5",y2:"12"}],["polyline",{points:"12 19 5 12 12 5"}]]],s1=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 16 16 12 12 8"}],["line",{x1:"8",y1:"12",x2:"16",y2:"12"}]]],g1=["svg",h,[["line",{x1:"5",y1:"12",x2:"19",y2:"12"}],["polyline",{points:"12 5 19 12 12 19"}]]],r1=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"16 12 12 8 8 12"}],["line",{x1:"12",y1:"16",x2:"12",y2:"8"}]]],$1=["svg",h,[["polyline",{points:"11 17 7 21 3 17"}],["line",{x1:"7",y1:"21",x2:"7",y2:"9"}],["polyline",{points:"21 7 17 3 13 7"}],["line",{x1:"17",y1:"15",x2:"17",y2:"3"}]]],m1=["svg",h,[["line",{x1:"17",y1:"17",x2:"7",y2:"7"}],["polyline",{points:"7 17 7 7 17 7"}]]],x1=["svg",h,[["line",{x1:"7",y1:"17",x2:"17",y2:"7"}],["polyline",{points:"7 7 17 7 17 17"}]]],H1=["svg",h,[["line",{x1:"12",y1:"19",x2:"12",y2:"5"}],["polyline",{points:"5 12 12 5 19 12"}]]],C1=["svg",h,[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]]],V1=["svg",h,[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"}]]],u1=["svg",h,[["circle",{cx:"12",cy:"8",r:"6"}],["path",{d:"M15.477 12.89 17 22l-5-3-5 3 1.523-9.11"}]]],L1=["svg",h,[["path",{d:"m14 12-8.501 8.501a2.12 2.12 0 0 1-2.998 0h-.002a2.12 2.12 0 0 1 0-2.998L11 9.002"}],["path",{d:"m9 7 4-4 6 6h3l-.13.648a7.648 7.648 0 0 1-5.081 5.756L15 16v-3z"}]]],A1=["svg",h,[["path",{d:"M4 4v16h16"}],["path",{d:"m4 20 7-7"}]]],w1=["svg",h,[["path",{d:"M9 12h0.01"}],["path",{d:"M15 12h0.01"}],["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"}],["path",{d:"M19 6.3a9 9 0 0 1 1.8 3.9 2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"}]]],f1=["svg",h,[["path",{d:"M4 20V10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2"}],["path",{d:"M8 21v-5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v5"}],["path",{d:"M8 10h8"}],["path",{d:"M8 18h8"}]]],S1=["svg",h,[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10"}],["rect",{x:"8",y:"6",width:"13",height:"8",rx:"1"}],["circle",{cx:"18",cy:"20",r:"2"}],["circle",{cx:"9",cy:"20",r:"2"}]]],F1=["svg",h,[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z"}]]],k1=["svg",h,[["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M6 12h.01M18 12h.01"}]]],z1=["svg",h,[["line",{x1:"18",y1:"20",x2:"18",y2:"10"}],["line",{x1:"12",y1:"20",x2:"12",y2:"4"}],["line",{x1:"6",y1:"20",x2:"6",y2:"14"}]]],Z1=["svg",h,[["path",{d:"M3 3v18h18"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]]],P1=["svg",h,[["path",{d:"M3 3v18h18"}],["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M8 17v-3"}]]],B1=["svg",h,[["path",{d:"M3 3v18h18"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]]],b1=["svg",h,[["line",{x1:"12",y1:"20",x2:"12",y2:"10"}],["line",{x1:"18",y1:"20",x2:"18",y2:"4"}],["line",{x1:"6",y1:"20",x2:"6",y2:"16"}]]],D1=["svg",h,[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]]],O1=["svg",h,[["path",{d:"M9 6 6.5 3.5a1.5 1.5 0 0 0-1-.5C4.683 3 4 3.683 4 4.5V17a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5"}],["line",{x1:"10",y1:"5",x2:"8",y2:"7"}],["line",{x1:"2",y1:"12",x2:"22",y2:"12"}],["line",{x1:"7",y1:"19",x2:"7",y2:"21"}],["line",{x1:"17",y1:"19",x2:"17",y2:"21"}]]],R1=["svg",h,[["path",{d:"M15 7h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1"}],["path",{d:"m11 7-3 5h4l-3 5"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13"}]]],T1=["svg",h,[["rect",{x:"2",y:"7",width:"16",height:"10",rx:"2",ry:"2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13"}],["line",{x1:"10",x2:"10",y1:"11",y2:"13"}],["line",{x1:"14",x2:"14",y1:"11",y2:"13"}]]],U1=["svg",h,[["rect",{x:"2",y:"7",width:"16",height:"10",rx:"2",ry:"2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13"}]]],E1=["svg",h,[["rect",{x:"2",y:"7",width:"16",height:"10",rx:"2",ry:"2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13"}],["line",{x1:"10",x2:"10",y1:"11",y2:"13"}]]],G1=["svg",h,[["rect",{x:"2",y:"7",width:"16",height:"10",rx:"2",ry:"2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13"}]]],I1=["svg",h,[["path",{d:"M4.5 3h15"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3"}],["path",{d:"M6 14h12"}]]],W1=["svg",h,[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],X1=["svg",h,[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28"}]]],q1=["svg",h,[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M12 4v6"}],["path",{d:"M2 18h20"}]]],N1=["svg",h,[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4"}],["path",{d:"M3 18h18"}]]],J1=["svg",h,[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]]],j1=["svg",h,[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1"}],["path",{d:"M9 12v6"}],["path",{d:"M13 12v6"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"}]]],K1=["svg",h,[["path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}],["path",{d:"M21 5h-6"}],["path",{d:"M18.021 9C18.29 15.193 21 17 21 17H3s3-2 3-9a6 6 0 0 1 7-5.916"}]]],Q1=["svg",h,[["path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}],["path",{d:"M18.63 13A17.888 17.888 0 0 1 18 8"}],["path",{d:"M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"}],["path",{d:"M18 8a6 6 0 0 0-9.33-5"}],["path",{d:"m2 2 20 20"}]]],_1=["svg",h,[["path",{d:"M18.387 12C19.198 15.799 21 17 21 17H3s3-2 3-9a6 6 0 0 1 7-5.916"}],["path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}],["path",{d:"M18 2v6"}],["path",{d:"M21 5h-6"}]]],Y1=["svg",h,[["path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}],["path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}],["path",{d:"M2 8c0-2.2.7-4.3 2-6"}],["path",{d:"M22 8a10 10 0 0 0-2-6"}]]],a2=["svg",h,[["path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}],["path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}]]],h2=["svg",h,[["circle",{cx:"5.5",cy:"17.5",r:"3.5"}],["circle",{cx:"18.5",cy:"17.5",r:"3.5"}],["path",{d:"M15 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm-3 11.5V14l-3-3 4-3 2 3h2"}]]],t2=["svg",h,[["path",{d:"M6 20h4"}],["path",{d:"M14 10h4"}],["path",{d:"M6 14h2v6"}],["path",{d:"M14 4h2v6"}],["rect",{x:"6",y:"4",width:"4",height:"6"}],["rect",{x:"14",y:"14",width:"4",height:"6"}]]],c2=["svg",h,[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727"}]]],d2=["svg",h,[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["line",{x1:"18",y1:"12",y2:"12",x2:"21"}],["line",{x1:"3",y1:"12",y2:"12",x2:"6"}]]],n2=["svg",h,[["path",{d:"m17 17-5 5V12l-5 5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5"}]]],i2=["svg",h,[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66"}],["path",{d:"M18 12h.01"}]]],l2=["svg",h,[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}]]],e2=["svg",h,[["path",{d:"M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"}],["path",{d:"M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"}]]],p2=["svg",h,[["circle",{cx:"11",cy:"13",r:"9"}],["path",{d:"m19.5 9.5 1.8-1.8a2.4 2.4 0 0 0 0-3.4l-1.6-1.6a2.41 2.41 0 0 0-3.4 0l-1.8 1.8"}],["path",{d:"m22 2-1.5 1.5"}]]],M2=["svg",h,[["path",{d:"M18.6 9.82c-.52-.21-1.15-.25-1.54.15l-7.07 7.06c-.39.39-.36 1.03-.15 1.54.12.3.16.6.16.93a2.5 2.5 0 0 1-5 0c0-.26-.24-.5-.5-.5a2.5 2.5 0 1 1 .96-4.82c.5.21 1.14.25 1.53-.15l7.07-7.06c.39-.39.36-1.03.15-1.54-.12-.3-.21-.6-.21-.93a2.5 2.5 0 0 1 5 0c.01.26.24.49.5.5a2.5 2.5 0 1 1-.9 4.82Z"}]]],v2=["svg",h,[["path",{d:"M8 3H2v15h7c1.7 0 3 1.3 3 3V7c0-2.2-1.8-4-4-4Z"}],["path",{d:"m16 12 2 2 4-4"}],["path",{d:"M22 6V3h-6c-2.2 0-4 1.8-4 4v14c0-1.7 1.3-3 3-3h7v-2.3"}]]],o2=["svg",h,[["path",{d:"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"}],["path",{d:"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"}]]],y2=["svg",h,[["path",{d:"M4 19.5A2.5 2.5 0 0 1 6.5 17H20"}],["path",{d:"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"}]]],s2=["svg",h,[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]]],g2=["svg",h,[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]]],r2=["svg",h,[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}]]],$2=["svg",h,[["rect",{x:"3",y:"11",width:"18",height:"10",rx:"2"}],["circle",{cx:"12",cy:"5",r:"2"}],["path",{d:"M12 7v4"}],["line",{x1:"8",y1:"16",x2:"8",y2:"16"}],["line",{x1:"16",y1:"16",x2:"16",y2:"16"}]]],m2=["svg",h,[["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M14 21h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M21 14v1"}]]],x2=["svg",h,[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",y1:"22",x2:"12",y2:"12"}]]],H2=["svg",h,[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z"}],["path",{d:"m7 16.5-4.74-2.85"}],["path",{d:"m7 16.5 5-3"}],["path",{d:"M7 16.5v5.17"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z"}],["path",{d:"m17 16.5-5-3"}],["path",{d:"m17 16.5 4.74-2.85"}],["path",{d:"M17 16.5v5.17"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z"}],["path",{d:"M12 8 7.26 5.15"}],["path",{d:"m12 8 4.74-2.85"}],["path",{d:"M12 13.5V8"}]]],C2=["svg",h,[["rect",{x:"2",y:"7",width:"20",height:"14",rx:"2",ry:"2"}],["path",{d:"M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}]]],V2=["svg",h,[["path",{d:"m9.06 11.9 8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08"}],["path",{d:"M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02z"}]]],u2=["svg",h,[["rect",{width:"8",height:"14",x:"8",y:"6",rx:"4"}],["path",{d:"m19 7-3 2"}],["path",{d:"m5 7 3 2"}],["path",{d:"m19 19-3-2"}],["path",{d:"m5 19 3-2"}],["path",{d:"M20 13h-4"}],["path",{d:"M4 13h4"}],["path",{d:"m10 4 1 2"}],["path",{d:"m14 4-1 2"}]]],L2=["svg",h,[["path",{d:"M6 22V4c0-.27 0-.55.07-.82a1.477 1.477 0 0 1 1.1-1.11C7.46 2 8.73 2 9 2h7c.27 0 .55 0 .82.07a1.477 1.477 0 0 1 1.11 1.1c.07.28.07.56.07.83v18H6Z"}],["path",{d:"M2 14v6c0 1.1.9 2 2 2h2V12H4c-.27 0-.55 0-.82.07-.27.07-.52.2-.72.4-.19.19-.32.44-.39.71A3.4 3.4 0 0 0 2 14Z"}],["path",{d:"M20.82 9.07A3.4 3.4 0 0 0 20 9h-2v13h2a2 2 0 0 0 2-2v-9c0-.28 0-.55-.07-.82-.07-.27-.2-.52-.4-.72-.19-.19-.44-.32-.71-.39Z"}],["path",{d:"M10 6h4"}],["path",{d:"M10 10h4"}],["path",{d:"M10 14h4"}],["path",{d:"M10 18h4"}]]],A2=["svg",h,[["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}],["path",{d:"M9 22v-4h6v4"}],["path",{d:"M8 6h.01"}],["path",{d:"M16 6h.01"}],["path",{d:"M12 6h.01"}],["path",{d:"M12 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M16 10h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M8 14h.01"}]]],w2=["svg",h,[["path",{d:"M19 17h2l.64-2.54c.24-.959.24-1.962 0-2.92l-1.07-4.27A3 3 0 0 0 17.66 5H4a2 2 0 0 0-2 2v10h2"}],["path",{d:"M14 17H9"}],["circle",{cx:"6.5",cy:"17.5",r:"2.5"}],["circle",{cx:"16.5",cy:"17.5",r:"2.5"}]]],f2=["svg",h,[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1"}],["path",{d:"M2 21h20"}],["path",{d:"M7 8v2"}],["path",{d:"M12 8v2"}],["path",{d:"M17 8v2"}],["path",{d:"M7 4h.01"}],["path",{d:"M12 4h.01"}],["path",{d:"M17 4h.01"}]]],S2=["svg",h,[["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18"}],["path",{d:"M16 10h.01"}],["path",{d:"M12 10h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M8 18h.01"}]]],F2=["svg",h,[["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["path",{d:"m16 20 2 2 4-4"}]]],k2=["svg",h,[["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["path",{d:"m9 16 2 2 4-4"}]]],z2=["svg",h,[["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5"}],["path",{d:"M16 2v4"}],["path",{d:"M8 2v4"}],["path",{d:"M3 10h5"}],["path",{d:"M17.5 17.5 16 16.25V14"}],["path",{d:"M22 16a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z"}]]],Z2=["svg",h,[["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M8 18h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M16 18h.01"}]]],P2=["svg",h,[["path",{d:"M21 10V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h7"}],["path",{d:"M16 2v4"}],["path",{d:"M8 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M21.29 14.7a2.43 2.43 0 0 0-2.65-.52c-.3.12-.57.3-.8.53l-.34.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L17.5 22l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z"}]]],B2=["svg",h,[["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["line",{x1:"16",y1:"19",x2:"22",y2:"19"}]]],b2=["svg",h,[["path",{d:"M4.18 4.18A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h7"}],["path",{d:"M21 10h-5.5"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],D2=["svg",h,[["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["line",{x1:"19",y1:"16",x2:"19",y2:"22"}],["line",{x1:"16",y1:"19",x2:"22",y2:"19"}]]],O2=["svg",h,[["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["path",{d:"M17 14h-6"}],["path",{d:"M13 18H7"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 18h.01"}]]],R2=["svg",h,[["path",{d:"M21 12V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h7.5"}],["path",{d:"M16 2v4"}],["path",{d:"M8 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6v0Z"}],["path",{d:"m22 22-1.5-1.5"}]]],T2=["svg",h,[["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["line",{x1:"17",y1:"17",x2:"22",y2:"22"}],["line",{x1:"17",y1:"22",x2:"22",y2:"17"}]]],U2=["svg",h,[["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}],["line",{x1:"10",y1:"14",x2:"14",y2:"18"}],["line",{x1:"14",y1:"14",x2:"10",y2:"18"}]]],E2=["svg",h,[["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"16",y1:"2",x2:"16",y2:"6"}],["line",{x1:"8",y1:"2",x2:"8",y2:"6"}],["line",{x1:"3",y1:"10",x2:"21",y2:"10"}]]],G2=["svg",h,[["line",{x1:"2",y1:"2",x2:"22",y2:"22"}],["path",{d:"M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16"}],["path",{d:"M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5"}],["path",{d:"M14.121 15.121A3 3 0 1 1 9.88 10.88"}]]],I2=["svg",h,[["path",{d:"M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z"}],["circle",{cx:"12",cy:"13",r:"3"}]]],W2=["svg",h,[["path",{d:"m8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1"}],["path",{d:"M11.843 6.187A4.947 4.947 0 0 1 16.5 7.5a4.947 4.947 0 0 1 1.313 4.657"}],["path",{d:"M14 16.5V14"}],["path",{d:"M14 6.5v1.843"}],["path",{d:"M10 10v7.5"}],["path",{d:"m16 7 1-5 1.367.683A3 3 0 0 0 19.708 3H21v1.292a3 3 0 0 0 .317 1.341L22 7l-5 1"}],["path",{d:"m8 17-1 5-1.367-.683A3 3 0 0 0 4.292 21H3v-1.292a3 3 0 0 0-.317-1.341L2 17l5-1"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],X2=["svg",h,[["path",{d:"m9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z"}],["path",{d:"M14 6.5v10"}],["path",{d:"M10 7.5v10"}],["path",{d:"m16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1"}],["path",{d:"m8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1"}]]],q2=["svg",h,[["path",{d:"M14 16H9m10 0h3v-3.15a1 1 0 0 0-.84-.99L16 11l-2.7-3.6a1 1 0 0 0-.8-.4H5.24a2 2 0 0 0-1.8 1.1l-.8 1.63A6 6 0 0 0 2 12.42V16h2"}],["circle",{cx:"6.5",cy:"16.5",r:"2.5"}],["circle",{cx:"16.5",cy:"16.5",r:"2.5"}]]],N2=["svg",h,[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z"}]]],J2=["svg",h,[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}],["path",{d:"M2 12a9 9 0 0 1 8 8"}],["path",{d:"M2 16a5 5 0 0 1 4 4"}],["line",{x1:"2",y1:"20",x2:"2.01",y2:"20"}]]],j2=["svg",h,[["path",{d:"M14 5.256A8.148 8.148 0 0 0 12 5a9.04 9.04 0 0 0-2 .227M20.098 10c.572 1.068.902 2.24.902 3.444C21 17.89 16.97 21 12 21s-9-3-9-7.556c0-1.251.288-2.41.792-3.444"}],["path",{d:"M3.75 10S2.11 3.58 3.5 3C4.89 2.42 8 3 9.781 5"}],["path",{d:"M20.172 10.002s1.64-6.42.25-7c-1.39-.58-4.5 0-6.282 2"}],["path",{d:"M8 14v.5"}],["path",{d:"M16 14v.5"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z"}]]],K2=["svg",h,[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]]],Q2=["svg",h,[["path",{d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"}],["path",{d:"m9 12 2 2 4-4"}]]],_2=["svg",h,[["path",{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"}],["polyline",{points:"22 4 12 14.01 9 11.01"}]]],Y2=["svg",h,[["polyline",{points:"9 11 12 14 22 4"}],["path",{d:"M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"}]]],a0=["svg",h,[["polyline",{points:"20 6 9 17 4 12"}]]],h0=["svg",h,[["path",{d:"M6 13.87A4 4 0 0 1 7.41 6a5.11 5.11 0 0 1 1.05-1.54 5 5 0 0 1 7.08 0A5.11 5.11 0 0 1 16.59 6 4 4 0 0 1 18 13.87V21H6Z"}],["line",{x1:"6",y1:"17",x2:"18",y2:"17"}]]],t0=["svg",h,[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z"}]]],c0=["svg",h,[["polyline",{points:"6 9 12 15 18 9"}]]],d0=["svg",h,[["polyline",{points:"17 18 11 12 17 6"}],["path",{d:"M7 6v12"}]]],n0=["svg",h,[["polyline",{points:"7 18 13 12 7 6"}],["path",{d:"M17 6v12"}]]],i0=["svg",h,[["polyline",{points:"15 18 9 12 15 6"}]]],l0=["svg",h,[["polyline",{points:"9 18 15 12 9 6"}]]],e0=["svg",h,[["polyline",{points:"18 15 12 9 6 15"}]]],p0=["svg",h,[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]]],M0=["svg",h,[["polyline",{points:"7 13 12 18 17 13"}],["polyline",{points:"7 6 12 11 17 6"}]]],v0=["svg",h,[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]]],o0=["svg",h,[["polyline",{points:"11 17 6 12 11 7"}],["polyline",{points:"18 17 13 12 18 7"}]]],y0=["svg",h,[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]]],s0=["svg",h,[["polyline",{points:"13 17 18 12 13 7"}],["polyline",{points:"6 17 11 12 6 7"}]]],g0=["svg",h,[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]]],r0=["svg",h,[["polyline",{points:"17 11 12 6 7 11"}],["polyline",{points:"17 18 12 13 7 18"}]]],$0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["line",{x1:"21.17",y1:"8",x2:"12",y2:"8"}],["line",{x1:"3.95",y1:"6.06",x2:"8.54",y2:"14"}],["line",{x1:"10.88",y1:"21.94",x2:"15.46",y2:"14"}]]],m0=["svg",h,[["line",{x1:"2",y1:"2",x2:"22",y2:"22"}],["path",{d:"M12 12H2v4h14"}],["path",{d:"M22 12v4"}],["path",{d:"M18 12h-.5"}],["path",{d:"M7 12v4"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}]]],x0=["svg",h,[["path",{d:"M18 12H2v4h16"}],["path",{d:"M22 12v4"}],["path",{d:"M7 12v4"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}]]],H0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]]],C0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]]],V0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M22 2 2 22"}]]],u0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}]]],L0=["svg",h,[["path",{d:"M5.51 18.49a12 12 0 0 0 16.12.78c.49-.41.49-1.15.03-1.6L6.34 2.33a1.08 1.08 0 0 0-1.6.03A12 12 0 0 0 5.5 18.5Z"}],["path",{d:"M8.34 15.66a8 8 0 0 0 10.4.78c.54-.4.54-1.16.06-1.64L9.2 5.2c-.48-.48-1.25-.48-1.64.06a8 8 0 0 0 .78 10.4Z"}],["path",{d:"m14 10-5.5 5.5"}],["path",{d:"M14 10v8"}],["path",{d:"M14 10H6"}]]],A0=["svg",h,[["path",{d:"M4 11v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8H4Z"}],["path",{d:"m4 11-.88-2.87a2 2 0 0 1 1.33-2.5l11.48-3.5a2 2 0 0 1 2.5 1.32l.87 2.87L4 11.01Z"}],["path",{d:"m6.6 4.99 3.38 4.2"}],["path",{d:"m11.86 3.38 3.38 4.2"}]]],w0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m9 14 2 2 4-4"}]]],f0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4"}],["path",{d:"M21 14H11"}],["path",{d:"m15 10-4 4 4 4"}]]],S0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M10.42 12.61a2.1 2.1 0 1 1 2.97 2.97L7.95 21 4 22l.99-3.95 5.43-5.44Z"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5"}],["path",{d:"M4 13.5V6a2 2 0 0 1 2-2h2"}]]],F0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M12 11h4"}],["path",{d:"M12 16h4"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 16h.01"}]]],k0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1"}],["path",{d:"M18.42 9.61a2.1 2.1 0 1 1 2.97 2.97L16.95 17 13 18l.99-3.95 4.43-4.44Z"}],["path",{d:"M8 18h1"}]]],z0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"M9 12v-1h6v1"}],["path",{d:"M11 17h2"}],["path",{d:"M12 11v6"}]]],Z0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}],["path",{d:"m15 11-6 6"}],["path",{d:"m9 11 6 6"}]]],P0=["svg",h,[["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}]]],B0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 14.5 8"}]]],b0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 8 10"}]]],D0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 9.5 8"}]]],O0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12"}]]],R0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 16 10"}]]],T0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 16.5 12"}]]],U0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 16 14"}]]],E0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 14.5 16"}]]],G0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 12 16.5"}]]],I0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 9.5 16"}]]],W0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 8 14"}]]],X0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 7.5 12"}]]],q0=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polyline",{points:"12 6 12 12 16 14"}]]],N0=["svg",h,[["path",{d:"M20 16.2A4.5 4.5 0 0 0 17.5 8h-1.8A7 7 0 1 0 4 14.9"}],["circle",{cx:"12",cy:"17",r:"3"}],["path",{d:"M12 13v1"}],["path",{d:"M12 20v1"}],["path",{d:"M16 17h-1"}],["path",{d:"M9 17H8"}],["path",{d:"m15 14-.88.88"}],["path",{d:"M9.88 19.12 9 20"}],["path",{d:"m15 20-.88-.88"}],["path",{d:"M9.88 14.88 9 14"}]]],J0=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 19v1"}],["path",{d:"M8 14v1"}],["path",{d:"M16 19v1"}],["path",{d:"M16 14v1"}],["path",{d:"M12 21v1"}],["path",{d:"M12 16v1"}]]],j0=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 17H7"}],["path",{d:"M17 21H9"}]]],K0=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v2"}],["path",{d:"M8 14v2"}],["path",{d:"M16 20h.01"}],["path",{d:"M8 20h.01"}],["path",{d:"M12 16v2"}],["path",{d:"M12 22h.01"}]]],Q0=["svg",h,[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973"}],["path",{d:"m13 12-3 5h4l-3 5"}]]],_0=["svg",h,[["path",{d:"M10.083 9A6.002 6.002 0 0 1 16 4a4.243 4.243 0 0 0 6 6c0 2.22-1.206 4.16-3 5.197"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M11 20v2"}],["path",{d:"M7 19v2"}]]],Y0=["svg",h,[["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"}],["path",{d:"M10.083 9A6.002 6.002 0 0 1 16 4a4.243 4.243 0 0 0 6 6c0 2.22-1.206 4.16-3 5.197"}]]],aa=["svg",h,[["path",{d:"m2 2 20 20"}],["path",{d:"M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193"}],["path",{d:"M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07"}]]],ha=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m9.2 22 3-7"}],["path",{d:"m9 13-3 7"}],["path",{d:"m17 13-3 7"}]]],ta=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v6"}],["path",{d:"M8 14v6"}],["path",{d:"M12 16v6"}]]],ca=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 15h.01"}],["path",{d:"M8 19h.01"}],["path",{d:"M12 17h.01"}],["path",{d:"M12 21h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M16 19h.01"}]]],da=["svg",h,[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M11 20v2"}],["path",{d:"M7 19v2"}]]],na=["svg",h,[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"}]]],ia=["svg",h,[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]]],la=["svg",h,[["path",{d:"M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}],["path",{d:"M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5"}]]],ea=["svg",h,[["path",{d:"M16.2 3.8a2.7 2.7 0 0 0-3.81 0l-.4.38-.4-.4a2.7 2.7 0 0 0-3.82 0C6.73 4.85 6.67 6.64 8 8l4 4 4-4c1.33-1.36 1.27-3.15.2-4.2z"}],["path",{d:"M8 8c-1.36-1.33-3.15-1.27-4.2-.2a2.7 2.7 0 0 0 0 3.81l.38.4-.4.4a2.7 2.7 0 0 0 0 3.82C4.85 17.27 6.64 17.33 8 16"}],["path",{d:"M16 16c1.36 1.33 3.15 1.27 4.2.2a2.7 2.7 0 0 0 0-3.81l-.38-.4.4-.4a2.7 2.7 0 0 0 0-3.82C19.15 6.73 17.36 6.67 16 8"}],["path",{d:"M7.8 20.2a2.7 2.7 0 0 0 3.81 0l.4-.38.4.4a2.7 2.7 0 0 0 3.82 0c1.06-1.06 1.12-2.85-.21-4.21l-4-4-4 4c-1.33 1.36-1.27 3.15-.2 4.2z"}],["path",{d:"m7 17-5 5"}]]],pa=["svg",h,[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]]],Ma=["svg",h,[["polyline",{points:"16 18 22 12 16 6"}],["polyline",{points:"8 6 2 12 8 18"}]]],va=["svg",h,[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}],["line",{x1:"12",y1:"22",x2:"12",y2:"15.5"}],["polyline",{points:"22 8.5 12 15.5 2 8.5"}],["polyline",{points:"2 15.5 12 8.5 22 15.5"}],["line",{x1:"12",y1:"2",x2:"12",y2:"8.5"}]]],oa=["svg",h,[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}],["line",{x1:"12",y1:"22.08",x2:"12",y2:"12"}]]],ya=["svg",h,[["path",{d:"M17 8h1a4 4 0 1 1 0 8h-1"}],["path",{d:"M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4Z"}],["line",{x1:"6",y1:"2",x2:"6",y2:"4"}],["line",{x1:"10",y1:"2",x2:"10",y2:"4"}],["line",{x1:"14",y1:"2",x2:"14",y2:"4"}]]],sa=["svg",h,[["path",{d:"M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z"}],["path",{d:"M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"}],["path",{d:"M12 2v2"}],["path",{d:"M12 22v-2"}],["path",{d:"m17 20.66-1-1.73"}],["path",{d:"M11 10.27 7 3.34"}],["path",{d:"m20.66 17-1.73-1"}],["path",{d:"m3.34 7 1.73 1"}],["path",{d:"M14 12h8"}],["path",{d:"M2 12h2"}],["path",{d:"m20.66 7-1.73 1"}],["path",{d:"m3.34 17 1.73-1"}],["path",{d:"m17 3.34-1 1.73"}],["path",{d:"m11 13.73-4 6.93"}]]],ga=["svg",h,[["circle",{cx:"8",cy:"8",r:"6"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18"}],["path",{d:"M7 6h1v4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82"}]]],ra=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"12",y1:"3",x2:"12",y2:"21"}]]],$a=["svg",h,[["path",{d:"M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"}]]],ma=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polygon",{points:"16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"}]]],xa=["svg",h,[["path",{d:"M5.5 8.5 9 12l-3.5 3.5L2 12l3.5-3.5Z"}],["path",{d:"m12 2 3.5 3.5L12 9 8.5 5.5 12 2Z"}],["path",{d:"M18.5 8.5 22 12l-3.5 3.5L15 12l3.5-3.5Z"}],["path",{d:"m12 15 3.5 3.5L12 22l-3.5-3.5L12 15Z"}]]],Ha=["svg",h,[["path",{d:"M2 18a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2H2v-2Z"}],["path",{d:"M20 16a8 8 0 1 0-16 0"}],["path",{d:"M12 4v4"}],["path",{d:"M10 4h4"}]]],Ca=["svg",h,[["path",{d:"M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}],["circle",{cx:"12",cy:"10",r:"2"}],["line",{x1:"8",y1:"2",x2:"8",y2:"4"}],["line",{x1:"16",y1:"2",x2:"16",y2:"4"}]]],Va=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]]],ua=["svg",h,[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"}],["path",{d:"M8.5 8.5v.01"}],["path",{d:"M16 15.5v.01"}],["path",{d:"M12 12v.01"}],["path",{d:"M11 17v.01"}],["path",{d:"M7 14v.01"}]]],La=["svg",h,[["rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}],["path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"}]]],Aa=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 9.35a4 4 0 1 1 0 5.3"}]]],wa=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M15 9.354a4 4 0 1 0 0 5.292"}]]],fa=["svg",h,[["polyline",{points:"9 10 4 15 9 20"}],["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}]]],Sa=["svg",h,[["polyline",{points:"15 10 20 15 15 20"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]]],Fa=["svg",h,[["polyline",{points:"14 15 9 20 4 15"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]]],ka=["svg",h,[["polyline",{points:"14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]]],za=["svg",h,[["polyline",{points:"10 15 15 20 20 15"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]]],Za=["svg",h,[["polyline",{points:"10 9 15 4 20 9"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]]],Pa=["svg",h,[["polyline",{points:"9 14 4 9 9 4"}],["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}]]],Ba=["svg",h,[["polyline",{points:"15 14 20 9 15 4"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]]],ba=["svg",h,[["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",ry:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6"}],["line",{x1:"9",y1:"2",x2:"9",y2:"4"}],["line",{x1:"15",y1:"2",x2:"15",y2:"4"}],["line",{x1:"9",y1:"21",x2:"9",y2:"22"}],["line",{x1:"15",y1:"20",x2:"15",y2:"22"}],["line",{x1:"20",y1:"9",x2:"22",y2:"9"}],["line",{x1:"20",y1:"14",x2:"22",y2:"14"}],["line",{x1:"2",y1:"9",x2:"4",y2:"9"}],["line",{x1:"2",y1:"14",x2:"4",y2:"14"}]]],Da=["svg",h,[["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}],["line",{x1:"2",y1:"10",x2:"22",y2:"10"}]]],Oa=["svg",h,[["path",{d:"m4.6 13.11 5.79-3.21c1.89-1.05 4.79 1.78 3.71 3.71l-3.22 5.81C8.8 23.16.79 15.23 4.6 13.11Z"}],["path",{d:"m10.5 9.5-1-2.29C9.2 6.48 8.8 6 8 6H4.5C2.79 6 2 6.5 2 8.5a7.71 7.71 0 0 0 2 4.83"}],["path",{d:"M8 6c0-1.55.24-4-2-4-2 0-2.5 2.17-2.5 4"}],["path",{d:"m14.5 13.5 2.29 1c.73.3 1.21.7 1.21 1.5v3.5c0 1.71-.5 2.5-2.5 2.5a7.71 7.71 0 0 1-4.83-2"}],["path",{d:"M18 16c1.55 0 4-.24 4 2 0 2-2.17 2.5-4 2.5"}]]],Ra=["svg",h,[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2"}]]],Ta=["svg",h,[["path",{d:"M11 2a2 2 0 0 0-2 2v5H4a2 2 0 0 0-2 2v2c0 1.1.9 2 2 2h5v5c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2v-5h5a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-5V4a2 2 0 0 0-2-2h-2z"}]]],Ua=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"22",y1:"12",x2:"18",y2:"12"}],["line",{x1:"6",y1:"12",x2:"2",y2:"12"}],["line",{x1:"12",y1:"6",x2:"12",y2:"2"}],["line",{x1:"12",y1:"22",x2:"12",y2:"18"}]]],Ea=["svg",h,[["path",{d:"m2 4 3 12h14l3-12-6 7-4-7-4 7-6-7zm3 16h14"}]]],Ga=["svg",h,[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8"}],["path",{d:"M5 8h14"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}],["path",{d:"m12 8 1-6h2"}]]],Ia=["svg",h,[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"}]]],Wa=["svg",h,[["circle",{cx:"12",cy:"12",r:"8"}],["line",{x1:"3",y1:"3",x2:"6",y2:"6"}],["line",{x1:"21",y1:"3",x2:"18",y2:"6"}],["line",{x1:"3",y1:"21",x2:"6",y2:"18"}],["line",{x1:"21",y1:"21",x2:"18",y2:"18"}]]],Xa=["svg",h,[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}],["path",{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"}]]],qa=["svg",h,[["path",{d:"M20 5H9l-7 7 7 7h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z"}],["line",{x1:"18",y1:"9",x2:"12",y2:"15"}],["line",{x1:"12",y1:"9",x2:"18",y2:"15"}]]],Na=["svg",h,[["rect",{x:"12",y:"1",width:"15.56",height:"15.56",rx:"2.41",transform:"rotate(45 12 1)"}]]],Ja=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M12 12h.01"}]]],ja=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M15 9h.01"}],["path",{d:"M9 15h.01"}]]],Ka=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M8 16h.01"}]]],Qa=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}]]],_a=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M12 12h.01"}]]],Ya=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 12h.01"}],["path",{d:"M8 16h.01"}]]],ah=["svg",h,[["rect",{x:"2",y:"10",width:"12",height:"12",rx:"2",ry:"2"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 14h.01"}],["path",{d:"M15 6h.01"}],["path",{d:"M18 9h.01"}]]],hh=["svg",h,[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]]],th=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"3"}]]],ch=["svg",h,[["line",{x1:"8",y1:"12",x2:"16",y2:"12"}],["line",{x1:"12",y1:"16",x2:"12",y2:"16"}],["line",{x1:"12",y1:"8",x2:"12",y2:"8"}],["circle",{cx:"12",cy:"12",r:"10"}]]],dh=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"8",y1:"12",x2:"16",y2:"12"}],["line",{x1:"12",y1:"16",x2:"12",y2:"16"}],["line",{x1:"12",y1:"8",x2:"12",y2:"8"}]]],nh=["svg",h,[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",y1:"12",x2:"19",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]]],ih=["svg",h,[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5M9 22c1.35-1.5 2.092-3 2.5-4.5"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3m10-3c-1.5 1.35-3 2.092-4.5 2.5"}],["path",{d:"m17 6-2.5-2.5"}],["path",{d:"m14 8-1.5-1.5"}],["path",{d:"m7 18 2.5 2.5"}],["path",{d:"m3.5 14.5.5.5"}],["path",{d:"m20 9 .5.5"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m16.5 10.5 1 1"}],["path",{d:"m10 16 1.5 1.5"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],lh=["svg",h,[["path",{d:"M2 15c6.667-6 13.333 0 20-6"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993"}],["path",{d:"m17 6-2.5-2.5"}],["path",{d:"m14 8-1-1"}],["path",{d:"m7 18 2.5 2.5"}],["path",{d:"m3.5 14.5.5.5"}],["path",{d:"m20 9 .5.5"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m16.5 10.5 1 1"}],["path",{d:"m10 16 1.5 1.5"}]]],eh=["svg",h,[["path",{d:"M10 5.172C10 3.782 8.423 2.679 6.5 3c-2.823.47-4.113 6.006-4 7 .08.703 1.725 1.722 3.656 1 1.261-.472 1.96-1.45 2.344-2.5"}],["path",{d:"M14.267 5.172c0-1.39 1.577-2.493 3.5-2.172 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5"}],["path",{d:"M8 14v.5"}],["path",{d:"M16 14v.5"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444c0-1.061-.162-2.2-.493-3.309m-9.243-6.082A8.801 8.801 0 0 1 12 5c.78 0 1.5.108 2.161.306"}]]],ph=["svg",h,[["line",{x1:"12",y1:"2",x2:"12",y2:"22"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}]]],Mh=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M12 12v9"}],["path",{d:"m8 17 4 4 4-4"}]]],vh=["svg",h,[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["polyline",{points:"7 10 12 15 17 10"}],["line",{x1:"12",y1:"15",x2:"12",y2:"3"}]]],oh=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72"}]]],yh=["svg",h,[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z"}]]],sh=["svg",h,[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"}]]],gh=["svg",h,[["path",{d:"M15.45 15.4c-2.13.65-4.3.32-5.7-1.1-2.29-2.27-1.76-6.5 1.17-9.42 2.93-2.93 7.15-3.46 9.43-1.18 1.41 1.41 1.74 3.57 1.1 5.71-1.4-.51-3.26-.02-4.64 1.36-1.38 1.38-1.87 3.23-1.36 4.63z"}],["path",{d:"m11.25 15.6-2.16 2.16a2.5 2.5 0 1 1-4.56 1.73 2.49 2.49 0 0 1-1.41-4.24 2.5 2.5 0 0 1 3.14-.32l2.16-2.16"}]]],rh=["svg",h,[["path",{d:"m6.5 6.5 11 11"}],["path",{d:"m21 21-1-1"}],["path",{d:"m3 3 1 1"}],["path",{d:"m18 22 4-4"}],["path",{d:"m2 6 4-4"}],["path",{d:"m3 10 7-7"}],["path",{d:"m14 21 7-7"}]]],$h=["svg",h,[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],mh=["svg",h,[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4"}]]],xh=["svg",h,[["path",{d:"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"}]]],Hh=["svg",h,[["path",{d:"M12 20h9"}],["path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"}]]],Ch=["svg",h,[["path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"}]]],Vh=["svg",h,[["circle",{cx:"11.5",cy:"12.5",r:"3.5"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z"}]]],uh=["svg",h,[["path",{d:"M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625"}],["path",{d:"M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],Lh=["svg",h,[["path",{d:"M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z"}]]],Ah=["svg",h,[["line",{x1:"5",y1:"9",x2:"19",y2:"9"}],["line",{x1:"5",y1:"15",x2:"19",y2:"15"}],["line",{x1:"19",y1:"5",x2:"5",y2:"19"}]]],wh=["svg",h,[["line",{x1:"5",y1:"9",x2:"19",y2:"9"}],["line",{x1:"5",y1:"15",x2:"19",y2:"15"}]]],fh=["svg",h,[["path",{d:"m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21"}],["path",{d:"M22 21H7"}],["path",{d:"m5 11 9 9"}]]],Sh=["svg",h,[["path",{d:"M4 10h12"}],["path",{d:"M4 14h9"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"}]]],Fh=["svg",h,[["path",{d:"m21 21-6-6m6 6v-4.8m0 4.8h-4.8"}],["path",{d:"M3 16.2V21m0 0h4.8M3 21l6-6"}],["path",{d:"M21 7.8V3m0 0h-4.8M21 3l-6 6"}],["path",{d:"M3 7.8V3m0 0h4.8M3 3l6 6"}]]],kh=["svg",h,[["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}],["polyline",{points:"15 3 21 3 21 9"}],["line",{x1:"10",y1:"14",x2:"21",y2:"3"}]]],zh=["svg",h,[["path",{d:"M9.88 9.88a3 3 0 1 0 4.24 4.24"}],["path",{d:"M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68"}],["path",{d:"M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],Zh=["svg",h,[["path",{d:"M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z"}],["circle",{cx:"12",cy:"12",r:"3"}]]],Ph=["svg",h,[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"}]]],Bh=["svg",h,[["path",{d:"M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M17 18h1"}],["path",{d:"M12 18h1"}],["path",{d:"M7 18h1"}]]],bh=["svg",h,[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z"}],["path",{d:"M12 12v.01"}]]],Dh=["svg",h,[["polygon",{points:"13 19 22 12 13 5 13 19"}],["polygon",{points:"2 19 11 12 2 5 2 19"}]]],Oh=["svg",h,[["path",{d:"M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"}],["line",{x1:"16",y1:"8",x2:"2",y2:"22"}],["line",{x1:"17.5",y1:"15",x2:"9",y2:"15"}]]],Rh=["svg",h,[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"}]]],Th=["svg",h,[["path",{d:"M4 22V4c0-.5.2-1 .6-1.4C5 2.2 5.5 2 6 2h8.5L20 7.5V20c0 .5-.2 1-.6 1.4-.4.4-.9.6-1.4.6h-2"}],["polyline",{points:"14 2 14 8 20 8"}],["circle",{cx:"10",cy:"20",r:"2"}],["path",{d:"M10 7V6"}],["path",{d:"M10 12v-1"}],["path",{d:"M10 18v-2"}]]],Uh=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v2"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M2 17v-3a4 4 0 0 1 8 0v3"}],["circle",{cx:"9",cy:"17",r:"1"}],["circle",{cx:"3",cy:"17",r:"1"}]]],Eh=["svg",h,[["path",{d:"M17.5 22h.5c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M10 20v-1a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0Z"}],["path",{d:"M6 20v-1a2 2 0 1 0-4 0v1a2 2 0 1 0 4 0Z"}],["path",{d:"M2 19v-3a6 6 0 0 1 12 0v3"}]]],Gh=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M8 10v8h8"}],["path",{d:"m8 18 4-4"}]]],Ih=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["path",{d:"M12 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}],["path",{d:"m14 12.5 1 5.5-3-1-3 1 1-5.5"}]]],Wh=["svg",h,[["path",{d:"M4 7V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2h-6"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M5 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}],["path",{d:"M7 16.5 8 22l-3-1-3 1 1-5.5"}]]],Xh=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M12 18v-6"}],["path",{d:"M8 18v-1"}],["path",{d:"M16 18v-3"}]]],qh=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M12 18v-4"}],["path",{d:"M8 18v-2"}],["path",{d:"M16 18v-6"}]]],Nh=["svg",h,[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M2.97 13.12c-.6.36-.97 1.02-.97 1.74v3.28c0 .72.37 1.38.97 1.74l3 1.83c.63.39 1.43.39 2.06 0l3-1.83c.6-.36.97-1.02.97-1.74v-3.28c0-.72-.37-1.38-.97-1.74l-3-1.83a1.97 1.97 0 0 0-2.06 0l-3 1.83Z"}],["path",{d:"m7 17-4.74-2.85"}],["path",{d:"m7 17 4.74-2.85"}],["path",{d:"M7 17v5"}]]],Jh=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m3 15 2 2 4-4"}]]],jh=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m9 15 2 2 4-4"}]]],Kh=["svg",h,[["path",{d:"M16 22h2c.5 0 1-.2 1.4-.6.4-.4.6-.9.6-1.4V7.5L14.5 2H6c-.5 0-1 .2-1.4.6C4.2 3 4 3.5 4 4v3"}],["polyline",{points:"14 2 14 8 20 8"}],["circle",{cx:"8",cy:"16",r:"6"}],["path",{d:"M9.5 17.5 8 16.25V14"}]]],Qh=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m9 18 3-3-3-3"}],["path",{d:"m5 12-3 3 3 3"}]]],_h=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["circle",{cx:"12",cy:"15",r:"2"}],["path",{d:"M12 12v1"}],["path",{d:"M12 17v1"}],["path",{d:"m14.6 13.5-.87.5"}],["path",{d:"m10.27 16-.87.5"}],["path",{d:"m14.6 16.5-.87-.5"}],["path",{d:"m10.27 14-.87-.5"}]]],Yh=["svg",h,[["path",{d:"M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4"}],["polyline",{points:"14 2 14 8 20 8"}],["circle",{cx:"6",cy:"14",r:"3"}],["path",{d:"M6 10v1"}],["path",{d:"M6 17v1"}],["path",{d:"M10 14H9"}],["path",{d:"M3 14H2"}],["path",{d:"m9 11-.88.88"}],["path",{d:"M3.88 16.12 3 17"}],["path",{d:"m9 17-.88-.88"}],["path",{d:"M3.88 11.88 3 11"}]]],at=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["path",{d:"M12 13V7"}],["path",{d:"M9 10h6"}],["path",{d:"M9 17h6"}]]],ht=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M10 12h2v6"}],["rect",{x:"2",y:"12",width:"4",height:"6"}],["path",{d:"M10 18h4"}]]],tt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M12 18v-6"}],["path",{d:"m9 15 3 3 3-3"}]]],ct=["svg",h,[["path",{d:"M4 13.5V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2h-5.5"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M10.42 12.61a2.1 2.1 0 1 1 2.97 2.97L7.95 21 4 22l.99-3.95 5.43-5.44Z"}]]],dt=["svg",h,[["path",{d:"M4 6V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M10.29 10.7a2.43 2.43 0 0 0-2.66-.52c-.29.12-.56.3-.78.53l-.35.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L6.5 18l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z"}]]],nt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["circle",{cx:"10",cy:"13",r:"2"}],["path",{d:"m20 17-1.09-1.09a2 2 0 0 0-2.82 0L10 22"}]]],it=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M2 15h10"}],["path",{d:"m9 18 3-3-3-3"}]]],lt=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]]],et=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]]],pt=["svg",h,[["path",{d:"M4 10V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4"}],["polyline",{points:"14 2 14 8 20 8"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"m10 10-4.5 4.5"}],["path",{d:"m9 11 1 1"}]]],Mt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["circle",{cx:"10",cy:"16",r:"2"}],["path",{d:"m16 10-4.5 4.5"}],["path",{d:"m15 11 1 1"}]]],vt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17"}]]],ot=["svg",h,[["path",{d:"M4 5V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4"}],["polyline",{points:"14 2 14 8 20 8"}],["rect",{x:"2",y:"13",width:"8",height:"5",rx:"1"}],["path",{d:"M8 13v-2a2 2 0 1 0-4 0v2"}]]],yt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["rect",{x:"8",y:"12",width:"8",height:"6",rx:"1"}],["path",{d:"M15 12v-2a3 3 0 1 0-6 0v2"}]]],st=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M3 15h6"}]]],gt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["line",{x1:"9",y1:"15",x2:"15",y2:"15"}]]],rt=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M2 15h10"}],["path",{d:"m5 12-3 3 3 3"}]]],$t=["svg",h,[["path",{d:"M16 22h2a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v3"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M4.04 11.71a5.84 5.84 0 1 0 8.2 8.29"}],["path",{d:"M13.83 16A5.83 5.83 0 0 0 8 10.17V16h5.83Z"}]]],mt=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M3 15h6"}],["path",{d:"M6 12v6"}]]],xt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["line",{x1:"12",y1:"18",x2:"12",y2:"12"}],["line",{x1:"9",y1:"15",x2:"15",y2:"15"}]]],Ht=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["path",{d:"M10 10.3c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],["path",{d:"M12 17h.01"}]]],Ct=["svg",h,[["path",{d:"M20 10V7.5L14.5 2H6a2 2 0 0 0-2 2v16c0 1.1.9 2 2 2h4.5"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M16 22a2 2 0 0 1-2-2"}],["path",{d:"M20 22a2 2 0 0 0 2-2"}],["path",{d:"M20 14a2 2 0 0 1 2 2"}],["path",{d:"M16 14a2 2 0 0 0-2 2"}]]],Vt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5"}],["path",{d:"M13.25 16.25 15 18"}]]],ut=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v3"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M5 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"m9 18-1.5-1.5"}]]],Lt=["svg",h,[["path",{d:"M20 19.5v.5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8.5L18 5.5"}],["path",{d:"M8 18h1"}],["path",{d:"M18.42 9.61a2.1 2.1 0 1 1 2.97 2.97L16.95 17 13 18l.99-3.95 4.43-4.44Z"}]]],At=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M8 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 13h2"}],["path",{d:"M14 17h2"}]]],wt=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v7"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m10 18 3-3-3-3"}],["path",{d:"M4 18v-1a2 2 0 0 1 2-2h6"}]]],ft=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]]],St=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["line",{x1:"16",y1:"13",x2:"8",y2:"13"}],["line",{x1:"16",y1:"17",x2:"8",y2:"17"}],["line",{x1:"10",y1:"9",x2:"8",y2:"9"}]]],Ft=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M2 13v-1h6v1"}],["path",{d:"M4 18h2"}],["path",{d:"M5 12v6"}]]],kt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M9 13v-1h6v1"}],["path",{d:"M11 18h2"}],["path",{d:"M12 12v6"}]]],zt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M12 12v6"}],["path",{d:"m15 15-3-3-3 3"}]]],Zt=["svg",h,[["path",{d:"M4 8V4a2 2 0 0 1 2-2h8.5L20 7.5V20a2 2 0 0 1-2 2H4"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m10 15.5 4 2.5v-6l-4 2.5"}],["rect",{x:"2",y:"12",width:"8",height:"6",rx:"1"}]]],Pt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m10 11 5 3-5 3v-6Z"}]]],Bt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"M11.5 13.5c.32.4.5.94.5 1.5s-.18 1.1-.5 1.5"}],["path",{d:"M15 12c.64.8 1 1.87 1 3s-.36 2.2-1 3"}],["path",{d:"M8 15h.01"}]]],bt=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v3"}],["polyline",{points:"14 2 14 8 20 8"}],["path",{d:"m7 10-3 2H2v4h2l3 2v-8Z"}],["path",{d:"M11 11c.64.8 1 1.87 1 3s-.36 2.2-1 3"}]]],Dt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]]],Ot=["svg",h,[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v6h6"}],["path",{d:"m3 12.5 5 5"}],["path",{d:"m8 12.5-5 5"}]]],Rt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}],["line",{x1:"9.5",y1:"12.5",x2:"14.5",y2:"17.5"}],["line",{x1:"14.5",y1:"12.5",x2:"9.5",y2:"17.5"}]]],Tt=["svg",h,[["path",{d:"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"}],["polyline",{points:"14 2 14 8 20 8"}]]],Ut=["svg",h,[["path",{d:"M15.5 2H8.6c-.4 0-.8.2-1.1.5-.3.3-.5.7-.5 1.1v12.8c0 .4.2.8.5 1.1.3.3.7.5 1.1.5h9.8c.4 0 .8-.2 1.1-.5.3-.3.5-.7.5-1.1V6.5L15.5 2z"}],["path",{d:"M3 7.6v12.8c0 .4.2.8.5 1.1.3.3.7.5 1.1.5h9.8"}],["path",{d:"M15 2v5h5"}]]],Et=["svg",h,[["rect",{x:"2",y:"2",width:"20",height:"20",rx:"2.18",ry:"2.18"}],["line",{x1:"7",y1:"2",x2:"7",y2:"22"}],["line",{x1:"17",y1:"2",x2:"17",y2:"22"}],["line",{x1:"2",y1:"12",x2:"22",y2:"12"}],["line",{x1:"2",y1:"7",x2:"7",y2:"7"}],["line",{x1:"2",y1:"17",x2:"7",y2:"17"}],["line",{x1:"17",y1:"17",x2:"22",y2:"17"}],["line",{x1:"17",y1:"7",x2:"22",y2:"7"}]]],Gt=["svg",h,[["polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"}]]],It=["svg",h,[["path",{d:"M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02"}],["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88"}],["path",{d:"M2 16h.01"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2"}]]],Wt=["svg",h,[["path",{d:"M8 2c3 0 5 2 8 2s4-1 4-1v11"}],["path",{d:"M4 22V4"}],["path",{d:"M4 15s1-1 4-1 5 2 8 2"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],Xt=["svg",h,[["path",{d:"M17 22V2L7 7l10 5"}]]],qt=["svg",h,[["path",{d:"M7 22V2l10 5-10 5"}]]],Nt=["svg",h,[["path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"}],["line",{x1:"4",y1:"22",x2:"4",y2:"15"}]]],Jt=["svg",h,[["path",{d:"M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z"}]]],jt=["svg",h,[["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4"}],["path",{d:"M7 2h11v4c0 2-2 2-2 4v1"}],["line",{x1:"11",y1:"6",x2:"18",y2:"6"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],Kt=["svg",h,[["path",{d:"M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z"}],["line",{x1:"6",y1:"6",x2:"18",y2:"6"}],["line",{x1:"12",y1:"12",x2:"12",y2:"12"}]]],Qt=["svg",h,[["path",{d:"M10 10 4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-1.272-2.542"}],["path",{d:"M10 2v2.343"}],["path",{d:"M14 2v6.343"}],["path",{d:"M8.5 2h7"}],["path",{d:"M7 16h9"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],_t=["svg",h,[["path",{d:"M10 2v7.527a2 2 0 0 1-.211.896L4.72 20.55a1 1 0 0 0 .9 1.45h12.76a1 1 0 0 0 .9-1.45l-5.069-10.127A2 2 0 0 1 14 9.527V2"}],["path",{d:"M8.5 2h7"}],["path",{d:"M7 16h10"}]]],Yt=["svg",h,[["path",{d:"M10 2v7.31"}],["path",{d:"M14 9.3V1.99"}],["path",{d:"M8.5 2h7"}],["path",{d:"M14 9.3a6.5 6.5 0 1 1-4 0"}],["path",{d:"M5.58 16.5h12.85"}]]],a5=["svg",h,[["path",{d:"m3 7 5 5-5 5V7"}],["path",{d:"m21 7-5 5 5 5V7"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]]],h5=["svg",h,[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]]],t5=["svg",h,[["path",{d:"m17 3-5 5-5-5h10"}],["path",{d:"m17 21-5-5-5 5h10"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]]],c5=["svg",h,[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]]],d5=["svg",h,[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M12 10v12"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z"}]]],n5=["svg",h,[["path",{d:"M12 7.5a4.5 4.5 0 1 1 4.5 4.5M12 7.5A4.5 4.5 0 1 0 7.5 12M12 7.5V9m-4.5 3a4.5 4.5 0 1 0 4.5 4.5M7.5 12H9m7.5 0a4.5 4.5 0 1 1-4.5 4.5m4.5-4.5H15m-3 4.5V15"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m8 16 1.5-1.5"}],["path",{d:"M14.5 9.5 16 8"}],["path",{d:"m8 8 1.5 1.5"}],["path",{d:"M14.5 14.5 16 16"}]]],i5=["svg",h,[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]]],l5=["svg",h,[["path",{d:"M22 20V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2h6"}],["circle",{cx:"16",cy:"19",r:"2"}],["path",{d:"M16 11v-1"}],["path",{d:"M16 17v-2"}]]],e5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"m9 13 2 2 4-4"}]]],p5=["svg",h,[["path",{d:"M7 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2"}],["circle",{cx:"16",cy:"16",r:"6"}],["path",{d:"M16 14v2l1 1"}]]],M5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M2 10h20"}]]],v5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M12 10v1"}],["path",{d:"M12 15v1"}],["path",{d:"m14.6 11.5-.87.5"}],["path",{d:"m10.27 14-.87.5"}],["path",{d:"m14.6 14.5-.87-.5"}],["path",{d:"m10.27 12-.87-.5"}]]],o5=["svg",h,[["path",{d:"M10.5 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v3"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"M18 14v1"}],["path",{d:"M18 21v1"}],["path",{d:"M22 18h-1"}],["path",{d:"M15 18h-1"}],["path",{d:"m21 15-.88.88"}],["path",{d:"M15.88 20.12 15 21"}],["path",{d:"m21 21-.88-.88"}],["path",{d:"M15.88 15.88 15 15"}]]],y5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m15 13-3 3-3-3"}]]],s5=["svg",h,[["path",{d:"M8.42 10.61a2.1 2.1 0 1 1 2.97 2.97L5.95 19 2 20l.99-3.95 5.43-5.44Z"}],["path",{d:"M2 11.5V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5"}]]],g5=["svg",h,[["path",{d:"M11 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v1.5"}],["path",{d:"M21.29 13.7a2.43 2.43 0 0 0-2.65-.52c-.3.12-.57.3-.8.53l-.34.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L17.5 21l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z"}]]],r5=["svg",h,[["path",{d:"M2 9V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1"}],["path",{d:"M2 13h10"}],["path",{d:"m9 16 3-3-3-3"}]]],$5=["svg",h,[["path",{d:"M10 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v2"}],["circle",{cx:"16",cy:"20",r:"2"}],["path",{d:"m22 14-4.5 4.5"}],["path",{d:"m21 15 1 1"}]]],m5=["svg",h,[["path",{d:"M10 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v2.5"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}]]],x5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["line",{x1:"9",y1:"13",x2:"15",y2:"13"}]]],H5=["svg",h,[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2"}]]],C5=["svg",h,[["path",{d:"M2 7.5V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2"}],["path",{d:"M2 13h10"}],["path",{d:"m5 10-3 3 3 3"}]]],V5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["line",{x1:"12",y1:"10",x2:"12",y2:"16"}],["line",{x1:"9",y1:"13",x2:"15",y2:"13"}]]],u5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"11.5",cy:"12.5",r:"2.5"}],["path",{d:"M13.27 14.27 15 16"}]]],L5=["svg",h,[["path",{d:"M11 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v4"}],["circle",{cx:"17",cy:"17",r:"3"}],["path",{d:"m21 21-1.5-1.5"}]]],A5=["svg",h,[["path",{d:"M2 9V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H2"}],["path",{d:"m8 16 3-3-3-3"}],["path",{d:"M2 16v-1a2 2 0 0 1 2-2h6"}]]],w5=["svg",h,[["path",{d:"M13 10h7a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M13 21h7a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.88a1 1 0 0 1-.9-.55l-.44-.9a1 1 0 0 0-.9-.55H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M3 3v2c0 1.1.9 2 2 2h3"}],["path",{d:"M3 3v13c0 1.1.9 2 2 2h3"}]]],f5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M12 10v6"}],["path",{d:"m9 13 3-3 3 3"}]]],S5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"m9.5 10.5 5 5"}],["path",{d:"m14.5 10.5-5 5"}]]],F5=["svg",h,[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}]]],k5=["svg",h,[["path",{d:"M8 17h12a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.93a2 2 0 0 1-1.66-.9l-.82-1.2a2 2 0 0 0-1.66-.9H8a2 2 0 0 0-2 2v9c0 1.1.9 2 2 2Z"}],["path",{d:"M2 8v11c0 1.1.9 2 2 2h14"}]]],z5=["svg",h,[["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}],["path",{d:"M12 12h.01"}],["path",{d:"M17 12h.01"}],["path",{d:"M7 12h.01"}]]],Z5=["svg",h,[["polyline",{points:"15 17 20 12 15 7"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]]],P5=["svg",h,[["line",{x1:"22",y1:"6",x2:"2",y2:"6"}],["line",{x1:"22",y1:"18",x2:"2",y2:"18"}],["line",{x1:"6",y1:"2",x2:"6",y2:"22"}],["line",{x1:"18",y1:"2",x2:"18",y2:"22"}]]],B5=["svg",h,[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7"}]]],b5=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}],["line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}]]],D5=["svg",h,[["line",{x1:"3",y1:"22",x2:"15",y2:"22"}],["line",{x1:"4",y1:"9",x2:"14",y2:"9"}],["path",{d:"M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18"}],["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2h0a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5"}]]],O5=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3"}],["path",{d:"M9 11.2h5.7"}]]],R5=["svg",h,[["line",{x1:"6",y1:"11",x2:"10",y2:"11"}],["line",{x1:"8",y1:"9",x2:"8",y2:"13"}],["line",{x1:"15",y1:"12",x2:"15.01",y2:"12"}],["line",{x1:"18",y1:"10",x2:"18.01",y2:"10"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z"}]]],T5=["svg",h,[["line",{x1:"6",y1:"12",x2:"10",y2:"12"}],["line",{x1:"8",y1:"10",x2:"8",y2:"14"}],["line",{x1:"15",y1:"13",x2:"15.01",y2:"13"}],["line",{x1:"18",y1:"11",x2:"18.01",y2:"11"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}]]],U5=["svg",h,[["path",{d:"m12 15 3.5-3.5"}],["path",{d:"M20.3 18c.4-1 .7-2.2.7-3.4C21 9.8 17 6 12 6s-9 3.8-9 8.6c0 1.2.3 2.4.7 3.4"}]]],E5=["svg",h,[["path",{d:"m14 13-7.5 7.5c-.83.83-2.17.83-3 0 0 0 0 0 0 0a2.12 2.12 0 0 1 0-3L11 10"}],["path",{d:"m16 16 6-6"}],["path",{d:"m8 8 6-6"}],["path",{d:"m9 7 8 8"}],["path",{d:"m21 11-8-8"}]]],G5=["svg",h,[["polygon",{points:"6 3 18 3 22 9 12 22 2 9"}],["path",{d:"m12 22 4-13-3-6"}],["path",{d:"M12 22 8 9l3-6"}],["path",{d:"M2 9h20"}]]],I5=["svg",h,[["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z"}]]],W5=["svg",h,[["polyline",{points:"20 12 20 22 4 22 4 12"}],["rect",{x:"2",y:"7",width:"20",height:"5"}],["line",{x1:"12",y1:"22",x2:"12",y2:"7"}],["path",{d:"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"}],["path",{d:"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"}]]],X5=["svg",h,[["path",{d:"M6 3v12"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M15 6a9 9 0 0 0-9 9"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]]],q5=["svg",h,[["line",{x1:"6",y1:"3",x2:"6",y2:"15"}],["circle",{cx:"18",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M18 9a9 9 0 0 1-9 9"}]]],N5=["svg",h,[["circle",{cx:"12",cy:"12",r:"3"}],["line",{x1:"3",y1:"12",x2:"9",y2:"12"}],["line",{x1:"15",y1:"12",x2:"21",y2:"12"}]]],J5=["svg",h,[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9"}]]],j5=["svg",h,[["circle",{cx:"12",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["circle",{cx:"18",cy:"6",r:"3"}],["path",{d:"M18 9v1a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V9"}],["path",{d:"M12 12v3"}]]],K5=["svg",h,[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9"}]]],Q5=["svg",h,[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M18 11.5V15"}],["path",{d:"m21 3-6 6"}],["path",{d:"m21 9-6-6"}],["line",{x1:"6",y1:"9",x2:"6",y2:"21"}]]],_5=["svg",h,[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M18 6V5"}],["path",{d:"M18 11v-1"}],["line",{x1:"6",y1:"9",x2:"6",y2:"21"}]]],Y5=["svg",h,[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["line",{x1:"6",y1:"9",x2:"6",y2:"21"}]]],a4=["svg",h,[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"}],["path",{d:"M9 18c-4.51 2-5-2-7-2"}]]],h4=["svg",h,[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z"}]]],t4=["svg",h,[["path",{d:"M15.2 22H8.8a2 2 0 0 1-2-1.79L5 3h14l-1.81 17.21A2 2 0 0 1 15.2 22Z"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0"}]]],c4=["svg",h,[["circle",{cx:"6",cy:"15",r:"4"}],["circle",{cx:"18",cy:"15",r:"4"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2"}]]],d4=["svg",h,[["path",{d:"M15 21v-4a2 2 0 0 1 2-2h4"}],["path",{d:"M7 4v2a3 3 0 0 0 3 2h0a2 2 0 0 1 2 2 2 2 0 0 0 4 0 2 2 0 0 1 2-2h3"}],["path",{d:"M3 11h2a2 2 0 0 1 2 2v1a2 2 0 0 0 2 2 2 2 0 0 1 2 2v4"}],["circle",{cx:"12",cy:"12",r:"10"}]]],n4=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"2",y1:"12",x2:"22",y2:"12"}],["path",{d:"M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"}]]],i4=["svg",h,[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v2"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v5"}],["path",{d:"M6 14v0a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0"}],["path",{d:"M18 11v0a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0"}]]],l4=["svg",h,[["path",{d:"M22 10v6M2 10l10-5 10 5-10 5z"}],["path",{d:"M6 12v5c3 3 9 3 12 0v-5"}]]],e4=["svg",h,[["path",{d:"M22 5V2l-5.89 5.89"}],["circle",{cx:"16.6",cy:"15.89",r:"3"}],["circle",{cx:"8.11",cy:"7.4",r:"3"}],["circle",{cx:"12.35",cy:"11.65",r:"3"}],["circle",{cx:"13.91",cy:"5.85",r:"3"}],["circle",{cx:"18.15",cy:"10.09",r:"3"}],["circle",{cx:"6.56",cy:"13.2",r:"3"}],["circle",{cx:"10.8",cy:"17.44",r:"3"}],["circle",{cx:"5",cy:"19",r:"3"}]]],p4=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"3",y1:"9",x2:"21",y2:"9"}],["line",{x1:"3",y1:"15",x2:"21",y2:"15"}],["line",{x1:"9",y1:"3",x2:"9",y2:"21"}],["line",{x1:"15",y1:"3",x2:"15",y2:"21"}]]],M4=["svg",h,[["circle",{cx:"12",cy:"9",r:"1"}],["circle",{cx:"19",cy:"9",r:"1"}],["circle",{cx:"5",cy:"9",r:"1"}],["circle",{cx:"12",cy:"15",r:"1"}],["circle",{cx:"19",cy:"15",r:"1"}],["circle",{cx:"5",cy:"15",r:"1"}]]],v4=["svg",h,[["circle",{cx:"9",cy:"12",r:"1"}],["circle",{cx:"9",cy:"5",r:"1"}],["circle",{cx:"9",cy:"19",r:"1"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"15",cy:"5",r:"1"}],["circle",{cx:"15",cy:"19",r:"1"}]]],o4=["svg",h,[["path",{d:"m15 12-8.5 8.5c-.83.83-2.17.83-3 0 0 0 0 0 0 0a2.12 2.12 0 0 1 0-3L12 9"}],["path",{d:"M17.64 15 22 10.64"}],["path",{d:"m20.91 11.7-1.25-1.25c-.6-.6-.93-1.4-.93-2.25v-.86L16.01 4.6a5.56 5.56 0 0 0-3.94-1.64H9l.92.82A6.18 6.18 0 0 1 12 8.4v1.56l2 2h2.47l2.26 1.91"}]]],y4=["svg",h,[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"}]]],s4=["svg",h,[["path",{d:"M18 11V6a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v2"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v8"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]]],g4=["svg",h,[["line",{x1:"22",y1:"12",x2:"2",y2:"12"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}],["line",{x1:"6",y1:"16",x2:"6.01",y2:"16"}],["line",{x1:"10",y1:"16",x2:"10.01",y2:"16"}]]],r4=["svg",h,[["path",{d:"M2 18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v2z"}],["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6h0"}],["path",{d:"M14 6h0a6 6 0 0 1 6 6v3"}]]],$4=["svg",h,[["line",{x1:"4",y1:"9",x2:"20",y2:"9"}],["line",{x1:"4",y1:"15",x2:"20",y2:"15"}],["line",{x1:"10",y1:"3",x2:"8",y2:"21"}],["line",{x1:"16",y1:"3",x2:"14",y2:"21"}]]],m4=["svg",h,[["path",{d:"m5.2 6.2 1.4 1.4"}],["path",{d:"M2 13h2"}],["path",{d:"M20 13h2"}],["path",{d:"m17.4 7.6 1.4-1.4"}],["path",{d:"M22 17H2"}],["path",{d:"M22 21H2"}],["path",{d:"M16 13a4 4 0 0 0-8 0"}],["path",{d:"M12 5V2.5"}]]],x4=["svg",h,[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]]],H4=["svg",h,[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"}]]],C4=["svg",h,[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"}]]],V4=["svg",h,[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17 10v4h4"}],["path",{d:"M21 10v8"}]]],u4=["svg",h,[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17 13v-3h4"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"}]]],L4=["svg",h,[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["circle",{cx:"19",cy:"16",r:"2"}],["path",{d:"M20 10c-2 2-3 3.5-3 6"}]]],A4=["svg",h,[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]]],w4=["svg",h,[["path",{d:"M3 18v-6a9 9 0 0 1 18 0v6"}],["path",{d:"M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"}]]],f4=["svg",h,[["path",{d:"M20.42 4.58a5.4 5.4 0 0 0-7.65 0l-.77.78-.77-.78a5.4 5.4 0 0 0-7.65 0C1.46 6.7 1.33 10.28 4 13l8 8 8-8c2.67-2.72 2.54-6.3.42-8.42z"}],["path",{d:"m12 13-1-1 2-2-3-2.5 2.77-2.92"}]]],S4=["svg",h,[["path",{d:"M20.42 4.58a5.4 5.4 0 0 0-7.65 0l-.77.78-.77-.78a5.4 5.4 0 0 0-7.65 0C1.46 6.7 1.33 10.28 4 13l8 8 8-8c2.67-2.72 2.54-6.3.42-8.42z"}],["path",{d:"M12 5.36 8.87 8.5a2.13 2.13 0 0 0 0 3h0a2.13 2.13 0 0 0 3 0l2.26-2.21a3 3 0 0 1 4.22 0l2.4 2.4"}],["path",{d:"m18 15-2-2"}],["path",{d:"m15 18-2-2"}]]],F4=["svg",h,[["path",{d:"M4.12 4.107a5.4 5.4 0 0 0-.538.473C1.46 6.7 1.33 10.28 4 13l8 8 4.5-4.5"}],["path",{d:"M19.328 13.672 20 13c2.67-2.72 2.54-6.3.42-8.42a5.4 5.4 0 0 0-7.65 0l-.77.78-.77-.78a5.4 5.4 0 0 0-2.386-1.393"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],k4=["svg",h,[["path",{d:"M20.42 4.58a5.4 5.4 0 0 0-7.65 0l-.77.78-.77-.78a5.4 5.4 0 0 0-7.65 0C1.46 6.7 1.33 10.28 4 13l8 8 8-8c2.67-2.72 2.54-6.3.42-8.42z"}],["path",{d:"M3.5 12h6l.5-1 2 4.5 2-7 1.5 3.5h5"}]]],z4=["svg",h,[["path",{d:"M20.42 4.58a5.4 5.4 0 0 0-7.65 0l-.77.78-.77-.78a5.4 5.4 0 0 0-7.65 0C1.46 6.7 1.33 10.28 4 13l8 8 8-8c2.67-2.72 2.54-6.3.42-8.42z"}]]],Z4=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["line",{x1:"12",y1:"17",x2:"12.01",y2:"17"}]]],P4=["svg",h,[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}]]],B4=["svg",h,[["path",{d:"m9 11-6 6v3h9l3-3"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"}]]],b4=["svg",h,[["path",{d:"M3 3v5h5"}],["path",{d:"M3.05 13A9 9 0 1 0 6 5.3L3 8"}],["path",{d:"M12 7v5l4 2"}]]],D4=["svg",h,[["path",{d:"m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}],["polyline",{points:"9 22 9 12 15 12 15 22"}]]],O4=["svg",h,[["path",{d:"M17.5 5.5C19 7 20.5 9 21 11c-1.323.265-2.646.39-4.118.226"}],["path",{d:"M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5"}],["path",{d:"M17.5 17.5c-2.5 0-4 0-6-1"}],["path",{d:"M20 11.5c1 1.5 2 3.5 2 4.5"}],["path",{d:"M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5"}],["path",{d:"M22 22c-2 0-3.5-.5-5.5-1.5"}],["path",{d:"M4.783 4.782C1.073 8.492 1 14.5 5 18c1-1 2-4.5 1.5-6.5 1.5 1 4 1 5.5.5M8.227 2.57C11.578 1.335 15.453 2.089 18 5c-.88.88-3.7 1.761-5.726 1.618"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],R4=["svg",h,[["path",{d:"M17.5 5.5C19 7 20.5 9 21 11c-2.5.5-5 .5-8.5-1"}],["path",{d:"M5.5 17.5C7 19 9 20.5 11 21c.5-2.5.5-5-1-8.5"}],["path",{d:"M16.5 11.5c1 2 1 3.5 1 6-2.5 0-4 0-6-1"}],["path",{d:"M20 11.5c1 1.5 2 3.5 2 4.5-1.5.5-3 0-4.5-.5"}],["path",{d:"M11.5 20c1.5 1 3.5 2 4.5 2 .5-1.5 0-3-.5-4.5"}],["path",{d:"M20.5 16.5c1 2 1.5 3.5 1.5 5.5-2 0-3.5-.5-5.5-1.5"}],["path",{d:"M4.783 4.782C8.493 1.072 14.5 1 18 5c-1 1-4.5 2-6.5 1.5 1 1.5 1 4 .5 5.5-1.5.5-4 .5-5.5-.5C7 13.5 6 17 5 18c-4-3.5-3.927-9.508-.217-13.218Z"}],["path",{d:"M4.5 4.5 3 3c-.184-.185-.184-.816 0-1"}]]],T4=["svg",h,[["path",{d:"M5 22h14"}],["path",{d:"M5 2h14"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"}]]],U4=["svg",h,[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11"}],["path",{d:"M17 7A5 5 0 0 0 7 7"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4"}]]],E4=["svg",h,[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["line",{x1:"16",y1:"5",x2:"22",y2:"5"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]]],G4=["svg",h,[["line",{x1:"2",y1:"2",x2:"22",y2:"22"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83"}],["line",{x1:"13.5",y1:"13.5",x2:"6",y2:"21"}],["line",{x1:"18",y1:"12",x2:"21",y2:"15"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9"}]]],I4=["svg",h,[["path",{d:"M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["line",{x1:"16",y1:"5",x2:"22",y2:"5"}],["line",{x1:"19",y1:"2",x2:"19",y2:"8"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]]],W4=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]]],X4=["svg",h,[["path",{d:"M12 3v12"}],["path",{d:"m8 11 4 4 4-4"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4"}]]],q4=["svg",h,[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}]]],N4=["svg",h,[["polyline",{points:"3 8 7 12 3 16"}],["line",{x1:"21",y1:"12",x2:"11",y2:"12"}],["line",{x1:"21",y1:"6",x2:"11",y2:"6"}],["line",{x1:"21",y1:"18",x2:"11",y2:"18"}]]],J4=["svg",h,[["path",{d:"M6 3h12"}],["path",{d:"M6 8h12"}],["path",{d:"m6 13 8.5 8"}],["path",{d:"M6 13h3"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10"}]]],j4=["svg",h,[["path",{d:"M18.178 8c5.096 0 5.096 8 0 8-5.095 0-7.133-8-12.739-8-4.585 0-4.585 8 0 8 5.606 0 7.644-8 12.74-8z"}]]],K4=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",y1:"16",x2:"12",y2:"12"}],["line",{x1:"12",y1:"8",x2:"12.01",y2:"8"}]]],Q4=["svg",h,[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m12 12 4 10 1.7-4.3L22 16Z"}]]],_4=["svg",h,[["rect",{x:"2",y:"2",width:"20",height:"20",rx:"5",ry:"5"}],["path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}],["line",{x1:"17.5",y1:"6.5",x2:"17.51",y2:"6.5"}]]],Y4=["svg",h,[["line",{x1:"19",y1:"4",x2:"10",y2:"4"}],["line",{x1:"14",y1:"20",x2:"5",y2:"20"}],["line",{x1:"15",y1:"4",x2:"9",y2:"20"}]]],a3=["svg",h,[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]]],h3=["svg",h,[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z"}],["path",{d:"M6 15v-2"}],["path",{d:"M12 15V9"}],["circle",{cx:"12",cy:"6",r:"3"}]]],t3=["svg",h,[["path",{d:"m21 2-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0 3 3L22 7l-3-3m-3.5 3.5L19 4"}]]],c3=["svg",h,[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",ry:"2"}],["path",{d:"M6 8h.001"}],["path",{d:"M10 8h.001"}],["path",{d:"M14 8h.001"}],["path",{d:"M18 8h.001"}],["path",{d:"M8 12h.001"}],["path",{d:"M12 12h.001"}],["path",{d:"M16 12h.001"}],["path",{d:"M7 16h10"}]]],d3=["svg",h,[["path",{d:"M12 2v5"}],["path",{d:"M6 7h12l4 9H2l4-9Z"}],["path",{d:"M9.17 16a3 3 0 1 0 5.66 0"}]]],n3=["svg",h,[["path",{d:"m14 5-3 3 2 7 8-8-7-2Z"}],["path",{d:"m14 5-3 3-3-3 3-3 3 3Z"}],["path",{d:"M9.5 6.5 4 12l3 6"}],["path",{d:"M3 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H3Z"}]]],i3=["svg",h,[["path",{d:"M9 2h6l3 7H6l3-7Z"}],["path",{d:"M12 9v13"}],["path",{d:"M9 22h6"}]]],l3=["svg",h,[["path",{d:"M11 13h6l3 7H8l3-7Z"}],["path",{d:"M14 13V8a2 2 0 0 0-2-2H8"}],["path",{d:"M4 9h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4v6Z"}]]],e3=["svg",h,[["path",{d:"M11 4h6l3 7H8l3-7Z"}],["path",{d:"M14 11v5a2 2 0 0 1-2 2H8"}],["path",{d:"M4 15h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4v-6Z"}]]],p3=["svg",h,[["path",{d:"M8 2h8l4 10H4L8 2Z"}],["path",{d:"M12 12v6"}],["path",{d:"M8 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H8Z"}]]],M3=["svg",h,[["line",{x1:"3",y1:"22",x2:"21",y2:"22"}],["line",{x1:"6",y1:"18",x2:"6",y2:"11"}],["line",{x1:"10",y1:"18",x2:"10",y2:"11"}],["line",{x1:"14",y1:"18",x2:"14",y2:"11"}],["line",{x1:"18",y1:"18",x2:"18",y2:"11"}],["polygon",{points:"12 2 20 7 4 7"}]]],v3=["svg",h,[["path",{d:"m5 8 6 6"}],["path",{d:"m4 14 6-6 2-3"}],["path",{d:"M2 5h12"}],["path",{d:"M7 2h1"}],["path",{d:"m22 22-5-10-5 10"}],["path",{d:"M14 18h6"}]]],o3=["svg",h,[["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2",ry:"2"}],["line",{x1:"2",y1:"20",x2:"22",y2:"20"}]]],y3=["svg",h,[["path",{d:"M20 16V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v9m16 0H4m16 0 1.28 2.55a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45L4 16"}]]],s3=["svg",h,[["path",{d:"M7 22a5 5 0 0 1-2-4"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14v0z"}]]],g3=["svg",h,[["path",{d:"M7 22a5 5 0 0 1-2-4"}],["path",{d:"M3.3 14A6.8 6.8 0 0 1 2 10c0-4.4 4.5-8 10-8s10 3.6 10 8-4.5 8-10 8a12 12 0 0 1-5-1"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}]]],r3=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z"}],["line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}],["line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}]]],$3=["svg",h,[["polygon",{points:"12 2 2 7 12 12 22 7 12 2"}],["polyline",{points:"2 17 12 22 22 17"}],["polyline",{points:"2 12 12 17 22 12"}]]],m3=["svg",h,[["rect",{x:"3",y:"3",width:"7",height:"9"}],["rect",{x:"14",y:"3",width:"7",height:"5"}],["rect",{x:"14",y:"12",width:"7",height:"9"}],["rect",{x:"3",y:"16",width:"7",height:"5"}]]],x3=["svg",h,[["rect",{x:"3",y:"3",width:"7",height:"7"}],["rect",{x:"14",y:"3",width:"7",height:"7"}],["rect",{x:"14",y:"14",width:"7",height:"7"}],["rect",{x:"3",y:"14",width:"7",height:"7"}]]],H3=["svg",h,[["rect",{x:"3",y:"14",width:"7",height:"7"}],["rect",{x:"3",y:"3",width:"7",height:"7"}],["line",{x1:"14",y1:"4",x2:"21",y2:"4"}],["line",{x1:"14",y1:"9",x2:"21",y2:"9"}],["line",{x1:"14",y1:"15",x2:"21",y2:"15"}],["line",{x1:"14",y1:"20",x2:"21",y2:"20"}]]],C3=["svg",h,[["path",{d:"M21 3H3v7h18V3z"}],["path",{d:"M21 14h-5v7h5v-7z"}],["path",{d:"M12 14H3v7h9v-7z"}]]],V3=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"3",y1:"9",x2:"21",y2:"9"}],["line",{x1:"9",y1:"21",x2:"9",y2:"9"}]]],u3=["svg",h,[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"}]]],L3=["svg",h,[["path",{d:"m16 6 4 14"}],["path",{d:"M12 6v14"}],["path",{d:"M8 8v12"}],["path",{d:"M4 4v16"}]]],A3=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["line",{x1:"4.93",y1:"4.93",x2:"9.17",y2:"9.17"}],["line",{x1:"14.83",y1:"14.83",x2:"19.07",y2:"19.07"}],["line",{x1:"14.83",y1:"9.17",x2:"19.07",y2:"4.93"}],["line",{x1:"14.83",y1:"9.17",x2:"18.36",y2:"5.64"}],["line",{x1:"4.93",y1:"19.07",x2:"9.17",y2:"14.83"}]]],w3=["svg",h,[["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 2.804A6 6 0 0 1 18 8a4.65 4.65 0 0 1-1.03 3"}],["path",{d:"M8.91 14a4.61 4.61 0 0 0-1.41-2.5C6.23 10.23 6 9 6 8a6 6 0 0 1 .084-1"}]]],f3=["svg",h,[["line",{x1:"9",y1:"18",x2:"15",y2:"18"}],["line",{x1:"10",y1:"22",x2:"14",y2:"22"}],["path",{d:"M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0 0 18 8 6 6 0 0 0 6 8c0 1 .23 2.23 1.5 3.5A4.61 4.61 0 0 1 8.91 14"}]]],S3=["svg",h,[["path",{d:"M3 3v18h18"}],["path",{d:"m19 9-5 5-4-4-3 3"}]]],F3=["svg",h,[["path",{d:"M9 17H7A5 5 0 0 1 7 7"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8"}],["line",{x1:"8",y1:"12",x2:"12",y2:"12"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],k3=["svg",h,[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2"}],["line",{x1:"8",y1:"12",x2:"16",y2:"12"}]]],z3=["svg",h,[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}]]],Z3=["svg",h,[["path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}],["rect",{x:"2",y:"9",width:"4",height:"12"}],["circle",{cx:"4",cy:"4",r:"2"}]]],P3=["svg",h,[["line",{x1:"10",y1:"6",x2:"21",y2:"6"}],["line",{x1:"10",y1:"12",x2:"21",y2:"12"}],["line",{x1:"10",y1:"18",x2:"21",y2:"18"}],["polyline",{points:"3 6 4 7 6 5"}],["polyline",{points:"3 12 4 13 6 11"}],["polyline",{points:"3 18 4 19 6 17"}]]],B3=["svg",h,[["path",{d:"M16 12H3"}],["path",{d:"M16 6H3"}],["path",{d:"M10 18H3"}],["path",{d:"M21 6v10a2 2 0 0 1-2 2h-4"}],["path",{d:"m16 16-2 2 2 2"}]]],b3=["svg",h,[["path",{d:"M11 12H3"}],["path",{d:"M16 6H3"}],["path",{d:"M16 18H3"}],["path",{d:"M21 12h-6"}]]],D3=["svg",h,[["path",{d:"M21 15V6"}],["path",{d:"M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z"}],["path",{d:"M12 12H3"}],["path",{d:"M16 6H3"}],["path",{d:"M12 18H3"}]]],O3=["svg",h,[["line",{x1:"10",y1:"6",x2:"21",y2:"6"}],["line",{x1:"10",y1:"12",x2:"21",y2:"12"}],["line",{x1:"10",y1:"18",x2:"21",y2:"18"}],["path",{d:"M4 6h1v4"}],["path",{d:"M4 10h2"}],["path",{d:"M6 18H4c0-1 2-2 2-3s-1-1.5-2-1"}]]],R3=["svg",h,[["path",{d:"M11 12H3"}],["path",{d:"M16 6H3"}],["path",{d:"M16 18H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]]],T3=["svg",h,[["path",{d:"M16 12H3"}],["path",{d:"M16 18H3"}],["path",{d:"M10 6H3"}],["path",{d:"M21 18V8a2 2 0 0 0-2-2h-5"}],["path",{d:"m16 8-2-2 2-2"}]]],U3=["svg",h,[["path",{d:"M12 12H3"}],["path",{d:"M16 6H3"}],["path",{d:"M12 18H3"}],["path",{d:"m16 12 5 3-5 3v-6Z"}]]],E3=["svg",h,[["path",{d:"M11 12H3"}],["path",{d:"M16 6H3"}],["path",{d:"M16 18H3"}],["path",{d:"m19 10-4 4"}],["path",{d:"m15 10 4 4"}]]],G3=["svg",h,[["line",{x1:"8",y1:"6",x2:"21",y2:"6"}],["line",{x1:"8",y1:"12",x2:"21",y2:"12"}],["line",{x1:"8",y1:"18",x2:"21",y2:"18"}],["line",{x1:"3",y1:"6",x2:"3.01",y2:"6"}],["line",{x1:"3",y1:"12",x2:"3.01",y2:"12"}],["line",{x1:"3",y1:"18",x2:"3.01",y2:"18"}]]],I3=["svg",h,[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]]],W3=["svg",h,[["line",{x1:"12",y1:"2",x2:"12",y2:"6"}],["line",{x1:"12",y1:"18",x2:"12",y2:"22"}],["line",{x1:"4.93",y1:"4.93",x2:"7.76",y2:"7.76"}],["line",{x1:"16.24",y1:"16.24",x2:"19.07",y2:"19.07"}],["line",{x1:"2",y1:"12",x2:"6",y2:"12"}],["line",{x1:"18",y1:"12",x2:"22",y2:"12"}],["line",{x1:"4.93",y1:"19.07",x2:"7.76",y2:"16.24"}],["line",{x1:"16.24",y1:"7.76",x2:"19.07",y2:"4.93"}]]],X3=["svg",h,[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}],["circle",{cx:"12",cy:"12",r:"3"}]]],q3=["svg",h,[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["path",{d:"M7.11 7.11C5.83 8.39 5 10.1 5 12c0 3.87 3.13 7 7 7 1.9 0 3.61-.83 4.89-2.11"}],["path",{d:"M18.71 13.96c.19-.63.29-1.29.29-1.96 0-3.87-3.13-7-7-7-.67 0-1.33.1-1.96.29"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]]],N3=["svg",h,[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}]]],J3=["svg",h,[["rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]]],j3=["svg",h,[["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}],["polyline",{points:"10 17 15 12 10 7"}],["line",{x1:"15",y1:"12",x2:"3",y2:"12"}]]],K3=["svg",h,[["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}],["polyline",{points:"16 17 21 12 16 7"}],["line",{x1:"21",y1:"12",x2:"9",y2:"12"}]]],Q3=["svg",h,[["path",{d:"M6 20h0a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h0"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14"}],["path",{d:"M10 20h4"}],["circle",{cx:"16",cy:"20",r:"2"}],["circle",{cx:"8",cy:"20",r:"2"}]]],_3=["svg",h,[["path",{d:"m6 15-4-4 6.75-6.77a7.79 7.79 0 0 1 11 11L13 22l-4-4 6.39-6.36a2.14 2.14 0 0 0-3-3L6 15"}],["path",{d:"m5 8 4 4"}],["path",{d:"m12 15 4 4"}]]],Y3=["svg",h,[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m16 19 2 2 4-4"}]]],a6=["svg",h,[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M16 19h6"}]]],h6=["svg",h,[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"}]]],t6=["svg",h,[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M19 16v6"}],["path",{d:"M16 19h6"}]]],c6=["svg",h,[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],["path",{d:"M20 22v.01"}]]],d6=["svg",h,[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6v0Z"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.5-1.5"}]]],n6=["svg",h,[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M20 14v4"}],["path",{d:"M20 22v.01"}]]],i6=["svg",h,[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m17 17 4 4"}],["path",{d:"m21 17-4 4"}]]],l6=["svg",h,[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}]]],e6=["svg",h,[["rect",{x:"6",y:"4",width:"16",height:"13",rx:"2"}],["path",{d:"m22 7-7.1 3.78c-.57.3-1.23.3-1.8 0L6 7"}],["path",{d:"M2 8v11c0 1.1.9 2 2 2h14"}]]],p6=["svg",h,[["path",{d:"M5.43 5.43A8.06 8.06 0 0 0 4 10c0 6 8 12 8 12a29.94 29.94 0 0 0 5-5"}],["path",{d:"M19.18 13.52A8.66 8.66 0 0 0 20 10a8 8 0 0 0-8-8 7.88 7.88 0 0 0-3.52.82"}],["path",{d:"M9.13 9.13A2.78 2.78 0 0 0 9 10a3 3 0 0 0 3 3 2.78 2.78 0 0 0 .87-.13"}],["path",{d:"M14.9 9.25a3 3 0 0 0-2.15-2.16"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],M6=["svg",h,[["path",{d:"M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z"}],["circle",{cx:"12",cy:"10",r:"3"}]]],v6=["svg",h,[["polygon",{points:"3 6 9 3 15 6 21 3 21 18 15 21 9 18 3 21"}],["line",{x1:"9",y1:"3",x2:"9",y2:"18"}],["line",{x1:"15",y1:"6",x2:"15",y2:"21"}]]],o6=["svg",h,[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]]],y6=["svg",h,[["polyline",{points:"15 3 21 3 21 9"}],["polyline",{points:"9 21 3 21 3 15"}],["line",{x1:"21",y1:"3",x2:"14",y2:"10"}],["line",{x1:"3",y1:"21",x2:"10",y2:"14"}]]],s6=["svg",h,[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3"}]]],g6=["svg",h,[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"}],["path",{d:"M11 12 5.12 2.2"}],["path",{d:"m13 12 5.88-9.8"}],["path",{d:"M8 7h8"}],["circle",{cx:"12",cy:"17",r:"5"}],["path",{d:"M12 18v-2h-.5"}]]],r6=["svg",h,[["path",{d:"M9.26 9.26 3 11v3l14.14 3.14"}],["path",{d:"M21 15.34V6l-7.31 2.03"}],["path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]]],$6=["svg",h,[["path",{d:"m3 11 18-5v12L3 14v-3z"}],["path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6"}]]],m6=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",y1:"15",x2:"16",y2:"15"}],["line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}],["line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}]]],x6=["svg",h,[["line",{x1:"4",y1:"12",x2:"20",y2:"12"}],["line",{x1:"4",y1:"6",x2:"20",y2:"6"}],["line",{x1:"4",y1:"18",x2:"20",y2:"18"}]]],H6=["svg",h,[["path",{d:"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"}]]],C6=["svg",h,[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"}]]],V6=["svg",h,[["path",{d:"m12 8-9.04 9.06a2.82 2.82 0 1 0 3.98 3.98L16 12"}],["circle",{cx:"17",cy:"7",r:"5"}]]],u6=["svg",h,[["line",{x1:"2",y1:"2",x2:"22",y2:"22"}],["path",{d:"M18.89 13.23A7.12 7.12 0 0 0 19 12v-2"}],["path",{d:"M5 10v2a7 7 0 0 0 12 5"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12"}],["line",{x1:"12",y1:"19",x2:"12",y2:"22"}]]],L6=["svg",h,[["path",{d:"M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}],["line",{x1:"12",y1:"19",x2:"12",y2:"22"}]]],A6=["svg",h,[["path",{d:"M6 18h8"}],["path",{d:"M3 22h18"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1"}],["path",{d:"M9 14h2"}],["path",{d:"M8 6h4"}],["path",{d:"M13 10V6.5a.5.5 0 0 0-.5-.5.5.5 0 0 1-.5-.5V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v2.5a.5.5 0 0 1-.5.5.5.5 0 0 0-.5.5V10c0 1.1.9 2 2 2h2a2 2 0 0 0 2-2Z"}]]],w6=["svg",h,[["rect",{x:"2",y:"4",width:"20",height:"15",rx:"2"}],["rect",{x:"6",y:"8",width:"8",height:"7",rx:"1"}],["path",{d:"M18 8v7"}],["path",{d:"M6 19v2"}],["path",{d:"M18 19v2"}]]],f6=["svg",h,[["path",{d:"M18 6H5a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h13l4-3.5L18 6Z"}],["path",{d:"M12 13v9"}],["path",{d:"M12 2v4"}]]],S6=["svg",h,[["path",{d:"M8 2h8"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],F6=["svg",h,[["path",{d:"M8 2h8"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}]]],k6=["svg",h,[["polyline",{points:"4 14 10 14 10 20"}],["polyline",{points:"20 10 14 10 14 4"}],["line",{x1:"14",y1:"10",x2:"21",y2:"3"}],["line",{x1:"3",y1:"21",x2:"10",y2:"14"}]]],z6=["svg",h,[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3"}]]],Z6=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",y1:"12",x2:"16",y2:"12"}]]],P6=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"8",y1:"12",x2:"16",y2:"12"}]]],B6=["svg",h,[["line",{x1:"5",y1:"12",x2:"19",y2:"12"}]]],b6=["svg",h,[["path",{d:"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2"}],["path",{d:"M22 15V5a2 2 0 0 0-2-2H9"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m2 2 20 20"}]]],D6=["svg",h,[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8"}],["path",{d:"M10 19v-3.96 3.15"}],["path",{d:"M7 19h5"}],["rect",{x:"16",y:"12",width:"6",height:"10",rx:"2"}]]],O6=["svg",h,[["path",{d:"M5.5 20H8"}],["path",{d:"M17 9h.01"}],["rect",{x:"12",y:"4",width:"10",height:"16",rx:"2"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4"}],["circle",{cx:"17",cy:"15",r:"1"}]]],R6=["svg",h,[["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",ry:"2"}],["line",{x1:"8",y1:"21",x2:"16",y2:"21"}],["line",{x1:"12",y1:"17",x2:"12",y2:"21"}]]],T6=["svg",h,[["path",{d:"M12 3a6.364 6.364 0 0 0 9 9 9 9 0 1 1-9-9Z"}]]],U6=["svg",h,[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]]],E6=["svg",h,[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]]],G6=["svg",h,[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19"}]]],I6=["svg",h,[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]]],W6=["svg",h,[["path",{d:"m4 4 7.07 17 2.51-7.39L21 11.07z"}]]],X6=["svg",h,[["path",{d:"m9 9 5 12 1.774-5.226L21 14 9 9z"}],["path",{d:"m16.071 16.071 4.243 4.243"}],["path",{d:"m7.188 2.239.777 2.897M5.136 7.965l-2.898-.777M13.95 4.05l-2.122 2.122m-5.657 5.656-2.12 2.122"}]]],q6=["svg",h,[["path",{d:"m3 3 7.07 16.97 2.51-7.39 7.39-2.51L3 3z"}],["path",{d:"m13 13 6 6"}]]],N6=["svg",h,[["rect",{x:"6",y:"3",width:"12",height:"18",rx:"6"}],["path",{d:"M12 7v4"}]]],J6=["svg",h,[["path",{d:"M5 3v16h16"}],["path",{d:"m5 19 6-6"}],["path",{d:"m2 6 3-3 3 3"}],["path",{d:"m18 16 3 3-3 3"}]]],j6=["svg",h,[["polyline",{points:"5 11 5 5 11 5"}],["polyline",{points:"19 13 19 19 13 19"}],["line",{x1:"5",y1:"5",x2:"19",y2:"19"}]]],K6=["svg",h,[["polyline",{points:"13 5 19 5 19 11"}],["polyline",{points:"11 19 5 19 5 13"}],["line",{x1:"19",y1:"5",x2:"5",y2:"19"}]]],Q6=["svg",h,[["polyline",{points:"18 8 22 12 18 16"}],["polyline",{points:"6 8 2 12 6 16"}],["line",{x1:"2",y1:"12",x2:"22",y2:"12"}]]],_6=["svg",h,[["polyline",{points:"8 18 12 22 16 18"}],["polyline",{points:"8 6 12 2 16 6"}],["line",{x1:"12",y1:"2",x2:"12",y2:"22"}]]],Y6=["svg",h,[["polyline",{points:"5 9 2 12 5 15"}],["polyline",{points:"9 5 12 2 15 5"}],["polyline",{points:"15 19 12 22 9 19"}],["polyline",{points:"19 9 22 12 19 15"}],["line",{x1:"2",y1:"12",x2:"22",y2:"12"}],["line",{x1:"12",y1:"2",x2:"12",y2:"22"}]]],ac=["svg",h,[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]]],hc=["svg",h,[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]]],tc=["svg",h,[["path",{d:"M9 18V5l12-2v13"}],["path",{d:"m9 9 12-2"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]]],cc=["svg",h,[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]]],dc=["svg",h,[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],nc=["svg",h,[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]]],ic=["svg",h,[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],lc=["svg",h,[["polygon",{points:"3 11 22 2 13 21 11 13 3 11"}]]],ec=["svg",h,[["rect",{x:"9",y:"2",width:"6",height:"6"}],["rect",{x:"16",y:"16",width:"6",height:"6"}],["rect",{x:"2",y:"16",width:"6",height:"6"}],["path",{d:"M5 16v-4h14v4"}],["path",{d:"M12 12V8"}]]],pc=["svg",h,[["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2"}],["path",{d:"M18 14h-8"}],["path",{d:"M15 18h-5"}],["path",{d:"M10 6h8v4h-8V6Z"}]]],Mc=["svg",h,[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939"}],["path",{d:"M19 10v3.343"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],vc=["svg",h,[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z"}]]],oc=["svg",h,[["polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}]]],yc=["svg",h,[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]]],sc=["svg",h,[["polyline",{points:"7 8 3 12 7 16"}],["line",{x1:"21",y1:"12",x2:"11",y2:"12"}],["line",{x1:"21",y1:"6",x2:"11",y2:"6"}],["line",{x1:"21",y1:"18",x2:"11",y2:"18"}]]],gc=["svg",h,[["path",{d:"M3 9h18v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9Z"}],["path",{d:"m3 9 2.45-4.9A2 2 0 0 1 7.24 3h9.52a2 2 0 0 1 1.8 1.1L21 9"}],["path",{d:"M12 3v6"}]]],rc=["svg",h,[["path",{d:"m16 16 2 2 4-4"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"M16.5 9.4 7.55 4.24"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",y1:"22",x2:"12",y2:"12"}]]],$c=["svg",h,[["path",{d:"M16 16h6"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"M16.5 9.4 7.55 4.24"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",y1:"22",x2:"12",y2:"12"}]]],mc=["svg",h,[["path",{d:"M20.91 8.84 8.56 2.23a1.93 1.93 0 0 0-1.81 0L3.1 4.13a2.12 2.12 0 0 0-.05 3.69l12.22 6.93a2 2 0 0 0 1.94 0L21 12.51a2.12 2.12 0 0 0-.09-3.67Z"}],["path",{d:"m3.09 8.84 12.35-6.61a1.93 1.93 0 0 1 1.81 0l3.65 1.9a2.12 2.12 0 0 1 .1 3.69L8.73 14.75a2 2 0 0 1-1.94 0L3 12.51a2.12 2.12 0 0 1 .09-3.67Z"}],["line",{x1:"12",y1:"22",x2:"12",y2:"13"}],["path",{d:"M20 13.5v3.37a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13.5"}]]],xc=["svg",h,[["path",{d:"M16 16h6"}],["path",{d:"M19 13v6"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"M16.5 9.4 7.55 4.24"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",y1:"22",x2:"12",y2:"12"}]]],Hc=["svg",h,[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"M16.5 9.4 7.55 4.24"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",y1:"22",x2:"12",y2:"12"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5"}],["path",{d:"M20.27 17.27 22 19"}]]],Cc=["svg",h,[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"M16.5 9.4 7.55 4.24"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",y1:"22",x2:"12",y2:"12"}],["path",{d:"m17 13 5 5m-5 0 5-5"}]]],Vc=["svg",h,[["line",{x1:"16.5",y1:"9.4",x2:"7.5",y2:"4.21"}],["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",y1:"22",x2:"12",y2:"12"}]]],uc=["svg",h,[["path",{d:"m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z"}],["path",{d:"m5 2 5 5"}],["path",{d:"M2 13h15"}],["path",{d:"M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z"}]]],Lc=["svg",h,[["path",{d:"M14 19.9V16h3a2 2 0 0 0 2-2v-2H5v2c0 1.1.9 2 2 2h3v3.9a2 2 0 1 0 4 0Z"}],["path",{d:"M6 12V2h12v10"}],["path",{d:"M14 2v4"}],["path",{d:"M10 2v2"}]]],Ac=["svg",h,[["path",{d:"M18.37 2.63 14 7l-1.59-1.59a2 2 0 0 0-2.82 0L8 7l9 9 1.59-1.59a2 2 0 0 0 0-2.82L17 10l4.37-4.37a2.12 2.12 0 1 0-3-3Z"}],["path",{d:"M9 8c-2 3-4 3.5-7 4l8 10c2-1 6-5 6-7"}],["path",{d:"M14.5 17.5 4.5 15"}]]],wc=["svg",h,[["circle",{cx:"13.5",cy:"6.5",r:".5"}],["circle",{cx:"17.5",cy:"10.5",r:".5"}],["circle",{cx:"8.5",cy:"7.5",r:".5"}],["circle",{cx:"6.5",cy:"12.5",r:".5"}],["path",{d:"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z"}]]],fc=["svg",h,[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35z"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14"}]]],Sc=["svg",h,[["path",{d:"m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48"}]]],Fc=["svg",h,[["path",{d:"M5.8 11.3 2 22l10.7-3.79"}],["path",{d:"M4 3h.01"}],["path",{d:"M22 8h.01"}],["path",{d:"M15 2h.01"}],["path",{d:"M22 20h.01"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12v0c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11v0c-.11.7-.72 1.22-1.43 1.22H17"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98v0C9.52 4.9 9 5.52 9 6.23V7"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z"}]]],kc=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"10",y1:"15",x2:"10",y2:"9"}],["line",{x1:"14",y1:"15",x2:"14",y2:"9"}]]],zc=["svg",h,[["path",{d:"M10 15V9"}],["path",{d:"M14 15V9"}],["path",{d:"M7.714 2h8.572L22 7.714v8.572L16.286 22H7.714L2 16.286V7.714L7.714 2z"}]]],Zc=["svg",h,[["rect",{x:"6",y:"4",width:"4",height:"16"}],["rect",{x:"14",y:"4",width:"4",height:"16"}]]],Pc=["svg",h,[["path",{d:"m12 19 7-7 3 3-7 7-3-3z"}],["path",{d:"m18 13-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"}],["path",{d:"m2 2 7.586 7.586"}],["circle",{cx:"11",cy:"11",r:"2"}]]],Bc=["svg",h,[["line",{x1:"18",y1:"2",x2:"22",y2:"6"}],["path",{d:"M7.5 20.5 19 9l-4-4L3.5 16.5 2 22z"}]]],bc=["svg",h,[["line",{x1:"19",y1:"5",x2:"5",y2:"19"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5"}]]],Dc=["svg",h,[["circle",{cx:"12",cy:"5",r:"1"}],["path",{d:"m9 20 3-6 3 6"}],["path",{d:"m6 8 6 2 6-2"}],["path",{d:"M12 10v4"}]]],Oc=["svg",h,[["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}],["path",{d:"M14.05 2a9 9 0 0 1 8 7.94"}],["path",{d:"M14.05 6A5 5 0 0 1 18 10"}]]],Rc=["svg",h,[["polyline",{points:"18 2 22 6 18 10"}],["line",{x1:"14",y1:"6",x2:"22",y2:"6"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}]]],Tc=["svg",h,[["polyline",{points:"16 2 16 8 22 8"}],["line",{x1:"22",y1:"2",x2:"16",y2:"8"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}]]],Uc=["svg",h,[["line",{x1:"22",y1:"2",x2:"16",y2:"8"}],["line",{x1:"16",y1:"2",x2:"22",y2:"8"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}]]],Ec=["svg",h,[["path",{d:"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"}],["line",{x1:"22",y1:"2",x2:"2",y2:"22"}]]],Gc=["svg",h,[["polyline",{points:"22 8 22 2 16 2"}],["line",{x1:"16",y1:"8",x2:"22",y2:"2"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}]]],Ic=["svg",h,[["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}]]],Wc=["svg",h,[["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}],["path",{d:"M22 12A10 10 0 0 0 12 2v10z"}]]],Xc=["svg",h,[["path",{d:"M19 5c-1.5 0-2.8 1.4-3 2-3.5-1.5-11-.3-11 5 0 1.8 0 3 2 4.5V20h4v-2h3v2h4v-4c1-.5 1.7-1 2-2h2v-4h-2c0-1-.5-1.5-1-2h0V5z"}],["path",{d:"M2 9v1c0 1.1.9 2 2 2h1"}],["path",{d:"M16 11h0"}]]],qc=["svg",h,[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]]],Nc=["svg",h,[["line",{x1:"2",y1:"2",x2:"22",y2:"22"}],["line",{x1:"12",y1:"17",x2:"12",y2:"22"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V17h12"}],["path",{d:"M15 9.34V6h1a2 2 0 0 0 0-4H7.89"}]]],Jc=["svg",h,[["line",{x1:"12",y1:"17",x2:"12",y2:"22"}],["path",{d:"M5 17h14v-1.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V6h1a2 2 0 0 0 0-4H8a2 2 0 0 0 0 4h1v4.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24Z"}]]],jc=["svg",h,[["path",{d:"m2 22 1-1h3l9-9"}],["path",{d:"M3 21v-3l9-9"}],["path",{d:"m15 6 3.4-3.4a2.1 2.1 0 1 1 3 3L18 9l.4.4a2.1 2.1 0 1 1-3 3l-3.8-3.8a2.1 2.1 0 1 1 3-3l.4.4Z"}]]],Kc=["svg",h,[["path",{d:"M15 11h.01"}],["path",{d:"M11 15h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"m2 16 20 6-6-20c-3.36.9-6.42 2.67-8.88 5.12A19.876 19.876 0 0 0 2 16Z"}],["path",{d:"M17 6c-6.29 1.47-9.43 5.13-11 11"}]]],Qc=["svg",h,[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}]]],_c=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["polygon",{points:"10 8 16 12 10 16 10 8"}]]],Yc=["svg",h,[["polygon",{points:"5 3 19 12 5 21 5 3"}]]],ad=["svg",h,[["path",{d:"M9 2v6"}],["path",{d:"M15 2v6"}],["path",{d:"M12 17v5"}],["path",{d:"M5 8h14"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0v0Z"}]]],hd=["svg",h,[["path",{d:"m13 2-2 2.5h3L12 7"}],["path",{d:"M12 22v-3"}],["path",{d:"M10 13v-2.5"}],["path",{d:"M10 12.5v-2"}],["path",{d:"M14 12.5v-2"}],["path",{d:"M16 15a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-2z"}]]],td=["svg",h,[["path",{d:"M12 22v-5"}],["path",{d:"M9 7V2"}],["path",{d:"M15 7V2"}],["path",{d:"M6 13V8h12v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4Z"}]]],cd=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",y1:"8",x2:"12",y2:"16"}],["line",{x1:"8",y1:"12",x2:"16",y2:"12"}]]],dd=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"12",y1:"8",x2:"12",y2:"16"}],["line",{x1:"8",y1:"12",x2:"16",y2:"12"}]]],nd=["svg",h,[["line",{x1:"12",y1:"5",x2:"12",y2:"19"}],["line",{x1:"5",y1:"12",x2:"19",y2:"12"}]]],id=["svg",h,[["path",{d:"M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"}],["polyline",{points:"8 10 12 14 16 10"}]]],ld=["svg",h,[["circle",{cx:"12",cy:"11",r:"1"}],["path",{d:"M11 17a1 1 0 0 1 2 0c0 .5-.34 3-.5 4.5a.5.5 0 0 1-1 0c-.16-1.5-.5-4-.5-4.5Z"}],["path",{d:"M8 14a5 5 0 1 1 8 0"}],["path",{d:"M17 18.5a9 9 0 1 0-10 0"}]]],ed=["svg",h,[["path",{d:"M22 14a8 8 0 0 1-8 8"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v1"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v10"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]]],pd=["svg",h,[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]]],Md=["svg",h,[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68"}],["path",{d:"M12 2v4"}],["path",{d:"m2 2 20 20"}]]],vd=["svg",h,[["path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}],["line",{x1:"12",y1:"2",x2:"12",y2:"12"}]]],od=["svg",h,[["polyline",{points:"6 9 6 2 18 2 18 9"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["rect",{x:"6",y:"14",width:"12",height:"8"}]]],yd=["svg",h,[["path",{d:"M19.439 7.85c-.049.322.059.648.289.878l1.568 1.568c.47.47.706 1.087.706 1.704s-.235 1.233-.706 1.704l-1.611 1.611a.98.98 0 0 1-.837.276c-.47-.07-.802-.48-.968-.925a2.501 2.501 0 1 0-3.214 3.214c.446.166.855.497.925.968a.979.979 0 0 1-.276.837l-1.61 1.61a2.404 2.404 0 0 1-1.705.707 2.402 2.402 0 0 1-1.704-.706l-1.568-1.568a1.026 1.026 0 0 0-.877-.29c-.493.074-.84.504-1.02.968a2.5 2.5 0 1 1-3.237-3.237c.464-.18.894-.527.967-1.02a1.026 1.026 0 0 0-.289-.877l-1.568-1.568A2.402 2.402 0 0 1 1.998 12c0-.617.236-1.234.706-1.704L4.23 8.77c.24-.24.581-.353.917-.303.515.077.877.528 1.073 1.01a2.5 2.5 0 1 0 3.259-3.259c-.482-.196-.933-.558-1.01-1.073-.05-.336.062-.676.303-.917l1.525-1.525A2.402 2.402 0 0 1 12 1.998c.617 0 1.234.236 1.704.706l1.568 1.568c.23.23.556.338.877.29.493-.074.84-.504 1.02-.968a2.5 2.5 0 1 1 3.237 3.237c-.464.18-.894.527-.967 1.02Z"}]]],sd=["svg",h,[["rect",{x:"3",y:"3",width:"5",height:"5",rx:"1"}],["rect",{x:"16",y:"3",width:"5",height:"5",rx:"1"}],["rect",{x:"3",y:"16",width:"5",height:"5",rx:"1"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3"}],["path",{d:"M21 21v.01"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7"}],["path",{d:"M3 12h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M12 16v.01"}],["path",{d:"M16 12h1"}],["path",{d:"M21 12v.01"}],["path",{d:"M12 21v-1"}]]],gd=["svg",h,[["path",{d:"M3 21c3 0 7-1 7-8V5c0-1.25-.756-2.017-2-2H4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2 1 0 1 0 1 1v1c0 1-1 2-2 2s-1 .008-1 1.031V20c0 1 0 1 1 1z"}],["path",{d:"M15 21c3 0 7-1 7-8V5c0-1.25-.757-2.017-2-2h-4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2h.75c0 2.25.25 4-2.75 4v3c0 1 0 1 1 1z"}]]],rd=["svg",h,[["path",{d:"M5 16v2"}],["path",{d:"M19 16v2"}],["rect",{x:"2",y:"8",width:"20",height:"8",rx:"2"}],["path",{d:"M18 12h0"}]]],$d=["svg",h,[["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M4.93 19.07a10 10 0 0 1 0-14.14"}],["path",{d:"M7.76 16.24a6 6 0 0 1-1.3-1.95 6 6 0 0 1 0-4.59 6 6 0 0 1 1.3-1.95"}],["path",{d:"M16.24 7.76a6 6 0 0 1 1.3 2 6 6 0 0 1 0 4.59 6 6 0 0 1-1.3 1.95"}],["path",{d:"M19.07 4.93a10 10 0 0 1 0 14.14"}]]],md=["svg",h,[["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}]]],xd=["svg",h,[["rect",{x:"6",y:"2",width:"12",height:"20",rx:"2"}]]],Hd=["svg",h,[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"}],["path",{d:"m14 16-3 3 3 3"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096"}]]],Cd=["svg",h,[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5v0A5.5 5.5 0 0 0 9.5 20H13"}]]],Vd=["svg",h,[["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]]],ud=["svg",h,[["path",{d:"M3 2v6h6"}],["path",{d:"M21 12A9 9 0 0 0 6 5.3L3 8"}],["path",{d:"M21 22v-6h-6"}],["path",{d:"M3 12a9 9 0 0 0 15 6.7l3-2.7"}]]],Ld=["svg",h,[["path",{d:"M21 2v6h-6"}],["path",{d:"M3 12a9 9 0 0 1 15-6.7L21 8"}],["path",{d:"M3 22v-6h6"}],["path",{d:"M21 12a9 9 0 0 1-15 6.7L3 16"}]]],Ad=["svg",h,[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z"}],["path",{d:"M5 10h14"}],["path",{d:"M15 7v6"}]]],wd=["svg",h,[["path",{d:"M17 3v10"}],["path",{d:"m12.67 5.5 8.66 5"}],["path",{d:"m12.67 10.5 8.66-5"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z"}]]],fd=["svg",h,[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}],["path",{d:"M11 10h1v4"}]]],Sd=["svg",h,[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}]]],Fd=["svg",h,[["polyline",{points:"7 17 2 12 7 7"}],["polyline",{points:"12 17 7 12 12 7"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7"}]]],kd=["svg",h,[["polyline",{points:"9 17 4 12 9 7"}],["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}]]],zd=["svg",h,[["polygon",{points:"11 19 2 12 11 5 11 19"}],["polygon",{points:"22 19 13 12 22 5 22 19"}]]],Zd=["svg",h,[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"}]]],Pd=["svg",h,[["polyline",{points:"3.5 2 6.5 12.5 18 12.5"}],["line",{x1:"9.5",y1:"12.5",x2:"5.5",y2:"20"}],["line",{x1:"15",y1:"12.5",x2:"18.5",y2:"20"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0"}]]],Bd=["svg",h,[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4"}]]],bd=["svg",h,[["path",{d:"M3 2v6h6"}],["path",{d:"M3 13a9 9 0 1 0 3-7.7L3 8"}]]],Dd=["svg",h,[["path",{d:"M21 2v6h-6"}],["path",{d:"M21 13a9 9 0 1 1-3-7.7L21 8"}]]],Od=["svg",h,[["path",{d:"M4 11a9 9 0 0 1 9 9"}],["path",{d:"M4 4a16 16 0 0 1 16 16"}],["circle",{cx:"5",cy:"19",r:"1"}]]],Rd=["svg",h,[["path",{d:"M21.3 8.7 8.7 21.3c-1 1-2.5 1-3.4 0l-2.6-2.6c-1-1-1-2.5 0-3.4L15.3 2.7c1-1 2.5-1 3.4 0l2.6 2.6c1 1 1 2.5 0 3.4Z"}],["path",{d:"m7.5 10.5 2 2"}],["path",{d:"m10.5 7.5 2 2"}],["path",{d:"m13.5 4.5 2 2"}],["path",{d:"m4.5 13.5 2 2"}]]],Td=["svg",h,[["path",{d:"M14 11c5.333 0 5.333-8 0-8"}],["path",{d:"M6 11h8"}],["path",{d:"M6 15h8"}],["path",{d:"M9 21V3"}],["path",{d:"M9 3h5"}]]],Ud=["svg",h,[["path",{d:"M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z"}],["path",{d:"M21 14 10 2 3 14h18Z"}],["path",{d:"M10 2v16"}]]],Ed=["svg",h,[["path",{d:"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"}],["polyline",{points:"17 21 17 13 7 13 7 21"}],["polyline",{points:"7 3 7 8 15 8"}]]],Gd=["svg",h,[["path",{d:"M5 7v12h12"}],["path",{d:"m5 19 6-6"}],["rect",{x:"3",y:"3",width:"4",height:"4",rx:"1"}],["rect",{x:"17",y:"17",width:"4",height:"4",rx:"1"}]]],Id=["svg",h,[["path",{d:"m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"M7 21h10"}],["path",{d:"M12 3v18"}],["path",{d:"M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2"}]]],Wd=["svg",h,[["path",{d:"M21 3 9 15"}],["path",{d:"M12 3H3v18h18v-9"}],["path",{d:"M16 3h5v5"}],["path",{d:"M14 15H9v-5"}]]],Xd=["svg",h,[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 9h.01"}]]],qd=["svg",h,[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["line",{x1:"7",y1:"12",x2:"17",y2:"12"}]]],Nd=["svg",h,[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]]],Jd=["svg",h,[["circle",{cx:"6",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}],["line",{x1:"20",y1:"4",x2:"8.12",y2:"15.88"}],["line",{x1:"14.47",y1:"14.48",x2:"20",y2:"20"}],["line",{x1:"8.12",y1:"8.12",x2:"12",y2:"12"}]]],jd=["svg",h,[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m22 3-5 5"}],["path",{d:"m17 3 5 5"}]]],Kd=["svg",h,[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m17 8 5-5"}],["path",{d:"M17 3h5v5"}]]],Qd=["svg",h,[["path",{d:"M10 17v2a2 2 0 0 1-2 2v0a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v3h3"}],["path",{d:"M22 17v2a2 2 0 0 1-2 2H8"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M22 17H10"}]]],_d=["svg",h,[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}]]],Yd=["svg",h,[["line",{x1:"22",y1:"2",x2:"11",y2:"13"}],["polygon",{points:"22 2 15 22 11 13 2 9 22 2"}]]],a8=["svg",h,[["line",{x1:"3",y1:"12",x2:"21",y2:"12"}],["polyline",{points:"8 8 12 4 16 8"}],["polyline",{points:"16 16 12 20 8 16"}]]],h8=["svg",h,[["line",{x1:"12",y1:"3",x2:"12",y2:"21"}],["polyline",{points:"8 8 4 12 8 16"}],["polyline",{points:"16 16 20 12 16 8"}]]],t8=["svg",h,[["path",{d:"M5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-1"}],["path",{d:"M5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-1"}],["path",{d:"M6 6h.01"}],["path",{d:"M6 18h.01"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 8v1"}],["path",{d:"M12 15v1"}],["path",{d:"M16 12h-1"}],["path",{d:"M9 12H8"}],["path",{d:"m15 9-.88.88"}],["path",{d:"M9.88 14.12 9 15"}],["path",{d:"m15 15-.88-.88"}],["path",{d:"M9.88 9.88 9 9"}]]],c8=["svg",h,[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"m13 6-4 6h6l-4 6"}]]],d8=["svg",h,[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z"}],["path",{d:"M6 18h.01"}],["path",{d:"m2 2 20 20"}]]],n8=["svg",h,[["rect",{x:"2",y:"2",width:"20",height:"8",rx:"2",ry:"2"}],["rect",{x:"2",y:"14",width:"20",height:"8",rx:"2",ry:"2"}],["line",{x1:"6",y1:"6",x2:"6.01",y2:"6"}],["line",{x1:"6",y1:"18",x2:"6.01",y2:"18"}]]],i8=["svg",h,[["path",{d:"M20 7h-9"}],["path",{d:"M14 17H5"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]]],l8=["svg",h,[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"}],["circle",{cx:"12",cy:"12",r:"3"}]]],e8=["svg",h,[["circle",{cx:"18",cy:"5",r:"3"}],["circle",{cx:"6",cy:"12",r:"3"}],["circle",{cx:"18",cy:"19",r:"3"}],["line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}],["line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"}]]],p8=["svg",h,[["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}],["polyline",{points:"16 6 12 2 8 6"}],["line",{x1:"12",y1:"2",x2:"12",y2:"15"}]]],M8=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"3",y1:"9",x2:"21",y2:"9"}],["line",{x1:"3",y1:"15",x2:"21",y2:"15"}],["line",{x1:"9",y1:"9",x2:"9",y2:"21"}],["line",{x1:"15",y1:"9",x2:"15",y2:"21"}]]],v8=["svg",h,[["path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]]],o8=["svg",h,[["path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}],["path",{d:"m9 12 2 2 4-4"}]]],y8=["svg",h,[["path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}],["line",{x1:"9.5",y1:"9",x2:"14.5",y2:"14"}],["line",{x1:"14.5",y1:"9",x2:"9.5",y2:"14"}]]],s8=["svg",h,[["path",{d:"M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"}],["path",{d:"M4.73 4.73 4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],g8=["svg",h,[["path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}]]],r8=["svg",h,[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"}]]],$8=["svg",h,[["path",{d:"M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}],["line",{x1:"3",y1:"6",x2:"21",y2:"6"}],["path",{d:"M16 10a4 4 0 0 1-8 0"}]]],m8=["svg",h,[["circle",{cx:"8",cy:"21",r:"1"}],["circle",{cx:"19",cy:"21",r:"1"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"}]]],x8=["svg",h,[["path",{d:"M2 22v-5l5-5 5 5-5 5z"}],["path",{d:"M9.5 14.5 16 8"}],["path",{d:"m17 2 5 5-.5.5a3.53 3.53 0 0 1-5 0s0 0 0 0a3.53 3.53 0 0 1 0-5L17 2"}]]],H8=["svg",h,[["path",{d:"m4 4 2.5 2.5"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7"}],["path",{d:"M15 5 5 15"}],["path",{d:"M14 17v.01"}],["path",{d:"M10 16v.01"}],["path",{d:"M13 13v.01"}],["path",{d:"M16 10v.01"}],["path",{d:"M11 20v.01"}],["path",{d:"M17 14v.01"}],["path",{d:"M20 11v.01"}]]],C8=["svg",h,[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3"}]]],V8=["svg",h,[["path",{d:"M12 22v-7l-2-2"}],["path",{d:"M17 8v.8A6 6 0 0 1 13.8 20v0H10v0A6.5 6.5 0 0 1 7 8h0a5 5 0 0 1 10 0Z"}],["path",{d:"m14 14-2 2"}]]],u8=["svg",h,[["polyline",{points:"16 3 21 3 21 8"}],["line",{x1:"4",y1:"20",x2:"21",y2:"3"}],["polyline",{points:"21 16 21 21 16 21"}],["line",{x1:"15",y1:"15",x2:"21",y2:"21"}],["line",{x1:"4",y1:"4",x2:"9",y2:"9"}]]],L8=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]]],A8=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m14 9 3 3-3 3"}]]],w8=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"9",y1:"3",x2:"9",y2:"21"}]]],f8=["svg",h,[["path",{d:"M18 7V4H6l6 8-6 8h12v-3"}]]],S8=["svg",h,[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]]],F8=["svg",h,[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]]],k8=["svg",h,[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]]],z8=["svg",h,[["path",{d:"M2 20h.01"}]]],Z8=["svg",h,[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]]],P8=["svg",h,[["path",{d:"M7 12a5 5 0 0 1 5-5v0a5 5 0 0 1 5 5v6H7v-6Z"}],["path",{d:"M5 20a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v2H5v-2Z"}],["path",{d:"M21 12h1"}],["path",{d:"M18.5 4.5 18 5"}],["path",{d:"M2 12h1"}],["path",{d:"M12 2v1"}],["path",{d:"m4.929 4.929.707.707"}],["path",{d:"M12 12v6"}]]],B8=["svg",h,[["polygon",{points:"19 20 9 12 19 4 19 20"}],["line",{x1:"5",y1:"19",x2:"5",y2:"5"}]]],b8=["svg",h,[["polygon",{points:"5 4 15 12 5 20 5 4"}],["line",{x1:"19",y1:"5",x2:"19",y2:"19"}]]],D8=["svg",h,[["circle",{cx:"9",cy:"12",r:"1"}],["circle",{cx:"15",cy:"12",r:"1"}],["path",{d:"M8 20v2h8v-2"}],["path",{d:"m12.5 17-.5-1-.5 1h1z"}],["path",{d:"M16 20a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20"}]]],O8=["svg",h,[["rect",{x:"13",y:"2",width:"3",height:"8",rx:"1.5"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5"}],["rect",{x:"8",y:"14",width:"3",height:"8",rx:"1.5"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5"}],["rect",{x:"14",y:"13",width:"8",height:"3",rx:"1.5"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5"}],["rect",{x:"2",y:"8",width:"8",height:"3",rx:"1.5"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5"}]]],R8=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"4.93",y1:"4.93",x2:"19.07",y2:"19.07"}]]],T8=["svg",h,[["path",{d:"m8 14-6 6h9v-3"}],["path",{d:"M18.37 3.63 8 14l3 3L21.37 6.63a2.12 2.12 0 1 0-3-3Z"}]]],U8=["svg",h,[["line",{x1:"21",y1:"4",x2:"14",y2:"4"}],["line",{x1:"10",y1:"4",x2:"3",y2:"4"}],["line",{x1:"21",y1:"12",x2:"12",y2:"12"}],["line",{x1:"8",y1:"12",x2:"3",y2:"12"}],["line",{x1:"21",y1:"20",x2:"16",y2:"20"}],["line",{x1:"12",y1:"20",x2:"3",y2:"20"}],["line",{x1:"14",y1:"2",x2:"14",y2:"6"}],["line",{x1:"8",y1:"10",x2:"8",y2:"14"}],["line",{x1:"16",y1:"18",x2:"16",y2:"22"}]]],E8=["svg",h,[["line",{x1:"4",y1:"21",x2:"4",y2:"14"}],["line",{x1:"4",y1:"10",x2:"4",y2:"3"}],["line",{x1:"12",y1:"21",x2:"12",y2:"12"}],["line",{x1:"12",y1:"8",x2:"12",y2:"3"}],["line",{x1:"20",y1:"21",x2:"20",y2:"16"}],["line",{x1:"20",y1:"12",x2:"20",y2:"3"}],["line",{x1:"2",y1:"14",x2:"6",y2:"14"}],["line",{x1:"10",y1:"8",x2:"14",y2:"8"}],["line",{x1:"18",y1:"16",x2:"22",y2:"16"}]]],G8=["svg",h,[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]]],I8=["svg",h,[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]]],W8=["svg",h,[["path",{d:"M22 11v1a10 10 0 1 1-9-10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}],["line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}],["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}]]],X8=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}],["line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}]]],q8=["svg",h,[["line",{x1:"2",y1:"12",x2:"22",y2:"12"}],["line",{x1:"12",y1:"2",x2:"12",y2:"22"}],["path",{d:"m20 16-4-4 4-4"}],["path",{d:"m4 8 4 4-4 4"}],["path",{d:"m16 4-4 4-4-4"}],["path",{d:"m8 20 4-4 4 4"}]]],N8=["svg",h,[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3"}],["path",{d:"M2 11v5a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v2H6v-2a2 2 0 0 0-4 0Z"}],["path",{d:"M4 18v2"}],["path",{d:"M20 18v2"}],["path",{d:"M12 4v9"}]]],J8=["svg",h,[["path",{d:"M11 11h4"}],["path",{d:"M11 15h7"}],["path",{d:"M11 19h10"}],["path",{d:"M9 7 6 4 3 7"}],["path",{d:"M6 6v14"}]]],j8=["svg",h,[["path",{d:"M11 5h10"}],["path",{d:"M11 9h7"}],["path",{d:"M11 13h4"}],["path",{d:"m3 17 3 3 3-3"}],["path",{d:"M6 18V4"}]]],K8=["svg",h,[["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}],["circle",{cx:"12",cy:"14",r:"4"}],["line",{x1:"12",y1:"6",x2:"12.01",y2:"6"}]]],Q8=["svg",h,[["path",{d:"M21 6V4c0-.6-.4-1-1-1h-2a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h2c.6 0 1-.4 1-1Z"}],["path",{d:"M7 20v-2c0-.6-.4-1-1-1H4a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h2c.6 0 1-.4 1-1Z"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}]]],_8=["svg",h,[["path",{d:"M7 20h10"}],["path",{d:"M10 20c5.5-2.5.8-6.4 3-10"}],["path",{d:"M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z"}],["path",{d:"M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z"}]]],Y8=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}]]],an=["svg",h,[["path",{d:"M12 17.8 5.8 21 7 14.1 2 9.3l7-1L12 2"}]]],hn=["svg",h,[["path",{d:"M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43"}],["path",{d:"M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],tn=["svg",h,[["polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"}]]],cn=["svg",h,[["path",{d:"M4.8 2.3A.3.3 0 1 0 5 2H4a2 2 0 0 0-2 2v5a6 6 0 0 0 6 6v0a6 6 0 0 0 6-6V4a2 2 0 0 0-2-2h-1a.2.2 0 1 0 .3.3"}],["path",{d:"M8 15v1a6 6 0 0 0 6 6v0a6 6 0 0 0 6-6v-4"}],["circle",{cx:"20",cy:"10",r:"2"}]]],dn=["svg",h,[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z"}],["path",{d:"M15 3v6h6"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1"}],["path",{d:"M8 13h0"}],["path",{d:"M16 13h0"}]]],nn=["svg",h,[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z"}],["path",{d:"M15 3v6h6"}]]],ln=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6"}]]],en=["svg",h,[["rect",{x:"2",y:"4",width:"20",height:"6",rx:"2"}],["rect",{x:"2",y:"14",width:"20",height:"6",rx:"2"}]]],pn=["svg",h,[["rect",{x:"4",y:"2",width:"6",height:"20",rx:"2"}],["rect",{x:"14",y:"2",width:"6",height:"20",rx:"2"}]]],Mn=["svg",h,[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6"}],["line",{x1:"4",y1:"12",x2:"20",y2:"12"}]]],vn=["svg",h,[["path",{d:"m4 5 8 8"}],["path",{d:"m12 5-8 8"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07"}]]],on=["svg",h,[["path",{d:"M7 13h4"}],["path",{d:"M15 13h2"}],["path",{d:"M7 9h2"}],["path",{d:"M13 9h4"}],["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10Z"}]]],yn=["svg",h,[["path",{d:"M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8z"}],["path",{d:"M12 4h.01"}],["path",{d:"M20 12h.01"}],["path",{d:"M12 20h.01"}],["path",{d:"M4 12h.01"}],["path",{d:"M17.657 6.343h.01"}],["path",{d:"M17.657 17.657h.01"}],["path",{d:"M6.343 17.657h.01"}],["path",{d:"M6.343 6.343h.01"}]]],sn=["svg",h,[["path",{d:"M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8z"}],["path",{d:"M12 3v1"}],["path",{d:"M12 20v1"}],["path",{d:"M3 12h1"}],["path",{d:"M20 12h1"}],["path",{d:"m18.364 5.636-.707.707"}],["path",{d:"m6.343 17.657-.707.707"}],["path",{d:"m5.636 5.636.707.707"}],["path",{d:"m17.657 17.657.707.707"}]]],gn=["svg",h,[["path",{d:"M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8z"}],["path",{d:"M12 8a2.828 2.828 0 1 0 4 4"}],["path",{d:"M12 2v2"}],["path",{d:"M12 20v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m17.66 17.66 1.41 1.41"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"m6.34 17.66-1.41 1.41"}],["path",{d:"m19.07 4.93-1.41 1.41"}]]],rn=["svg",h,[["path",{d:"M10 9a3 3 0 1 0 0 6"}],["path",{d:"M2 12h1"}],["path",{d:"M14 21V3"}],["path",{d:"M10 4V3"}],["path",{d:"M10 21v-1"}],["path",{d:"m3.64 18.36.7-.7"}],["path",{d:"m4.34 6.34-.7-.7"}],["path",{d:"M14 12h8"}],["path",{d:"m17 4-3 3"}],["path",{d:"m14 17 3 3"}],["path",{d:"m21 15-3-3 3-3"}]]],$n=["svg",h,[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 2v2"}],["path",{d:"M12 20v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m17.66 17.66 1.41 1.41"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"m6.34 17.66-1.41 1.41"}],["path",{d:"m19.07 4.93-1.41 1.41"}]]],mn=["svg",h,[["path",{d:"M12 2v8"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]]],xn=["svg",h,[["path",{d:"M12 10V2"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m16 6-4 4-4-4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]]],Hn=["svg",h,[["path",{d:"m4 19 8-8"}],["path",{d:"m12 19-8-8"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"}]]],Cn=["svg",h,[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]]],Vn=["svg",h,[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m18 22-3-3 3-3"}],["path",{d:"m6 2 3 3-3 3"}]]],un=["svg",h,[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5"}],["line",{x1:"13",y1:"19",x2:"19",y2:"13"}],["line",{x1:"16",y1:"16",x2:"20",y2:"20"}],["line",{x1:"19",y1:"21",x2:"21",y2:"19"}]]],Ln=["svg",h,[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5"}],["line",{x1:"13",y1:"19",x2:"19",y2:"13"}],["line",{x1:"16",y1:"16",x2:"20",y2:"20"}],["line",{x1:"19",y1:"21",x2:"21",y2:"19"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5"}],["line",{x1:"5",y1:"14",x2:"9",y2:"18"}],["line",{x1:"7",y1:"17",x2:"4",y2:"20"}],["line",{x1:"3",y1:"19",x2:"5",y2:"21"}]]],An=["svg",h,[["path",{d:"m18 2 4 4"}],["path",{d:"m17 7 3-3"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5"}],["path",{d:"m9 11 4 4"}],["path",{d:"m5 19-3 3"}],["path",{d:"m14 4 6 6"}]]],wn=["svg",h,[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"}]]],fn=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"3",y1:"9",x2:"21",y2:"9"}],["line",{x1:"3",y1:"15",x2:"21",y2:"15"}],["line",{x1:"12",y1:"3",x2:"12",y2:"21"}]]],Sn=["svg",h,[["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}],["line",{x1:"12",y1:"18",x2:"12.01",y2:"18"}]]],Fn=["svg",h,[["path",{d:"M12 2H2v10l9.29 9.29c.94.94 2.48.94 3.42 0l6.58-6.58c.94-.94.94-2.48 0-3.42L12 2Z"}],["path",{d:"M7 7h.01"}]]],kn=["svg",h,[["path",{d:"M9 5H2v7l6.29 6.29c.94.94 2.48.94 3.42 0l3.58-3.58c.94-.94.94-2.48 0-3.42L9 5Z"}],["path",{d:"M6 9.01V9"}],["path",{d:"m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19"}]]],zn=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]]],Zn=["svg",h,[["path",{d:"M19 20 10 4"}],["path",{d:"m5 20 9-16"}],["path",{d:"M3 20h18"}],["path",{d:"m12 15-3 5"}],["path",{d:"m12 15 3 5"}]]],Pn=["svg",h,[["path",{d:"m7 11 2-2-2-2"}],["path",{d:"M11 13h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}]]],Bn=["svg",h,[["polyline",{points:"4 17 10 11 4 5"}],["line",{x1:"12",y1:"19",x2:"20",y2:"19"}]]],bn=["svg",h,[["path",{d:"M13 20h-1a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1"}],["path",{d:"M5 4h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5"}],["path",{d:"M13.1 7.9h6.8A2.18 2.18 0 0 1 22 10v4a2.11 2.11 0 0 1-2.1 2.1h-6.8"}],["path",{d:"M4.8 16.1h-.7A2.18 2.18 0 0 1 2 14v-4a2.18 2.18 0 0 1 2.1-2.1h.7"}]]],Dn=["svg",h,[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1"}]]],On=["svg",h,[["path",{d:"M2 12h10"}],["path",{d:"M9 4v16"}],["path",{d:"m3 9 3 3-3 3"}],["path",{d:"M12 6 9 9 6 6"}],["path",{d:"m6 18 3-3 1.5 1.5"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]]],Rn=["svg",h,[["path",{d:"M12 9a4 4 0 0 0-2 7.5"}],["path",{d:"M12 3v2"}],["path",{d:"m6.6 18.4-1.4 1.4"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}],["path",{d:"M4 13H2"}],["path",{d:"M6.34 7.34 4.93 5.93"}]]],Tn=["svg",h,[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]]],Un=["svg",h,[["path",{d:"M17 14V2"}],["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22h0a3.13 3.13 0 0 1-3-3.88Z"}]]],En=["svg",h,[["path",{d:"M7 10v12"}],["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2h0a3.13 3.13 0 0 1 3 3.88Z"}]]],Gn=["svg",h,[["path",{d:"M3 7v2a3 3 0 1 1 0 6v2c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2Z"}],["path",{d:"M13 5v2"}],["path",{d:"M13 17v2"}],["path",{d:"M13 11v2"}]]],In=["svg",h,[["path",{d:"M10 2h4"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M12 12v-2"}]]],Wn=["svg",h,[["path",{d:"M10 2h4"}],["path",{d:"M12 14v-4"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6"}],["path",{d:"M9 17H4v5"}]]],Xn=["svg",h,[["line",{x1:"10",x2:"14",y1:"2",y2:"2"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11"}],["circle",{cx:"12",cy:"14",r:"8"}]]],qn=["svg",h,[["rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}],["circle",{cx:"8",cy:"12",r:"3"}]]],Nn=["svg",h,[["rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}],["circle",{cx:"16",cy:"12",r:"3"}]]],Jn=["svg",h,[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]]],jn=["svg",h,[["rect",{x:"3",y:"8",width:"18",height:"12",rx:"1"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"}]]],Kn=["svg",h,[["rect",{x:"4",y:"3",width:"16",height:"16",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M12 3v8"}],["path",{d:"m8 19-2 3"}],["path",{d:"m18 22-2-3"}],["path",{d:"M8 15h0"}],["path",{d:"M16 15h0"}]]],Qn=["svg",h,[["path",{d:"M3 6h18"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2"}],["line",{x1:"10",y1:"11",x2:"10",y2:"17"}],["line",{x1:"14",y1:"11",x2:"14",y2:"17"}]]],_n=["svg",h,[["path",{d:"M3 6h18"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2"}]]],Yn=["svg",h,[["path",{d:"M8 19h8a4 4 0 0 0 3.8-2.8 4 4 0 0 0-1.6-4.5c1-1.1 1-2.7.4-4-.7-1.2-2.2-2-3.6-1.7a3 3 0 0 0-3-3 3 3 0 0 0-3 3c-1.4-.2-2.9.5-3.6 1.7-.7 1.3-.5 2.9.4 4a4 4 0 0 0-1.6 4.5A4 4 0 0 0 8 19Z"}],["path",{d:"M12 19v3"}]]],a7=["svg",h,[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z"}],["path",{d:"M12 22v-3"}]]],h7=["svg",h,[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16v0H5v0h0a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z"}],["path",{d:"M7 16v6"}],["path",{d:"M13 19v3"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5"}]]],t7=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["rect",{x:"7",y:"7",width:"3",height:"9"}],["rect",{x:"14",y:"7",width:"3",height:"5"}]]],c7=["svg",h,[["polyline",{points:"22 17 13.5 8.5 8.5 13.5 2 7"}],["polyline",{points:"16 17 22 17 22 11"}]]],d7=["svg",h,[["polyline",{points:"22 7 13.5 15.5 8.5 10.5 2 17"}],["polyline",{points:"16 7 22 7 22 13"}]]],n7=["svg",h,[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}]]],i7=["svg",h,[["path",{d:"M6 9H4.5a2.5 2.5 0 0 1 0-5H6"}],["path",{d:"M18 9h1.5a2.5 2.5 0 0 0 0-5H18"}],["path",{d:"M4 22h16"}],["path",{d:"M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22"}],["path",{d:"M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22"}],["path",{d:"M18 2H6v7a6 6 0 0 0 12 0V2Z"}]]],l7=["svg",h,[["path",{d:"M10 17h4V5H2v12h3"}],["path",{d:"M20 17h2v-3.34a4 4 0 0 0-1.17-2.83L19 9h-5"}],["path",{d:"M14 17h1"}],["circle",{cx:"7.5",cy:"17.5",r:"2.5"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5"}]]],e7=["svg",h,[["path",{d:"M7 21h10"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]]],p7=["svg",h,[["rect",{x:"2",y:"7",width:"20",height:"15",rx:"2",ry:"2"}],["polyline",{points:"17 2 12 7 7 2"}]]],M7=["svg",h,[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}]]],v7=["svg",h,[["path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"}]]],o7=["svg",h,[["polyline",{points:"4 7 4 4 20 4 20 7"}],["line",{x1:"9",y1:"20",x2:"15",y2:"20"}],["line",{x1:"12",y1:"4",x2:"12",y2:"20"}]]],y7=["svg",h,[["path",{d:"M22 12a9.92 9.92 0 0 0-3.24-6.41 10.12 10.12 0 0 0-13.52 0A9.92 9.92 0 0 0 2 12Z"}],["path",{d:"M12 12v8a2 2 0 0 0 4 0"}],["line",{x1:"12",y1:"2",x2:"12",y2:"3"}]]],s7=["svg",h,[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",y1:"20",x2:"20",y2:"20"}]]],g7=["svg",h,[["path",{d:"M9 14 4 9l5-5"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5v0a5.5 5.5 0 0 1-5.5 5.5H11"}]]],r7=["svg",h,[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]]],$7=["svg",h,[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]]],m7=["svg",h,[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71"}],["line",{x1:"8",y1:"2",x2:"8",y2:"5"}],["line",{x1:"2",y1:"8",x2:"5",y2:"8"}],["line",{x1:"16",y1:"19",x2:"16",y2:"22"}],["line",{x1:"19",y1:"16",x2:"22",y2:"16"}]]],x7=["svg",h,[["rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1"}]]],H7=["svg",h,[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M12 12v9"}],["path",{d:"m16 16-4-4-4 4"}]]],C7=["svg",h,[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["polyline",{points:"17 8 12 3 7 8"}],["line",{x1:"12",y1:"3",x2:"12",y2:"15"}]]],V7=["svg",h,[["circle",{cx:"4",cy:"20",r:"1"}],["circle",{cx:"10",cy:"7",r:"1"}],["path",{d:"M4 20 19 5"}],["path",{d:"m21 3-3 1 2 2 1-3Z"}],["path",{d:"m10 7-5 5 2 5"}],["path",{d:"m10 14 5 2 4-4"}],["path",{d:"m18 12 1-1 1 1-1 1-1-1Z"}]]],u7=["svg",h,[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["polyline",{points:"16 11 18 13 22 9"}]]],L7=["svg",h,[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["circle",{cx:"19",cy:"11",r:"2"}],["path",{d:"M19 8v1"}],["path",{d:"M19 13v1"}],["path",{d:"m21.6 9.5-.87.5"}],["path",{d:"m17.27 12-.87.5"}],["path",{d:"m21.6 12.5-.87-.5"}],["path",{d:"m17.27 10-.87-.5"}]]],A7=["svg",h,[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"22",y1:"11",x2:"16",y2:"11"}]]],w7=["svg",h,[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"19",y1:"8",x2:"19",y2:"14"}],["line",{x1:"22",y1:"11",x2:"16",y2:"11"}]]],f7=["svg",h,[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"17",y1:"8",x2:"22",y2:"13"}],["line",{x1:"22",y1:"8",x2:"17",y2:"13"}]]],S7=["svg",h,[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"}],["circle",{cx:"12",cy:"7",r:"4"}]]],F7=["svg",h,[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87"}],["path",{d:"M16 3.13a4 4 0 0 1 0 7.75"}]]],k7=["svg",h,[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"}],["path",{d:"m2.1 21.8 6.4-6.3"}],["path",{d:"m19 5-7 7"}]]],z7=["svg",h,[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2"}],["path",{d:"M7 2v20"}],["path",{d:"M21 15V2v0a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7"}]]],Z7=["svg",h,[["path",{d:"M2 2c4.056 3.007 9.232 9.337 10 20 .897-6.818 1.5-9.5 4-14"}],["path",{d:"M20.375 6.533A9.953 9.953 0 0 1 22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2c2.003 0 3.869.589 5.433 1.603"}],["path",{d:"M17.104 4c-1.002 1.274-1.146 2.586-1.1 4 1.9-.1 3.003-.201 4.3-1.4 1.406-1.3 1.6-2.3 1.7-4.6-2.7.1-3.623.375-4.9 2Z"}]]],P7=["svg",h,[["path",{d:"M2 12a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V7h-5a8 8 0 0 0-5 2 8 8 0 0 0-5-2H2Z"}],["path",{d:"M6 11c1.5 0 3 .5 3 2-2 0-3 0-3-2Z"}],["path",{d:"M18 11c-1.5 0-3 .5-3 2 2 0 3 0 3-2Z"}]]],B7=["svg",h,[["path",{d:"M12 3c-1.2 0-2.4.6-3 1.7A3.6 3.6 0 0 0 4.6 9c-1 .6-1.7 1.8-1.7 3s.7 2.4 1.7 3c-.3 1.2 0 2.5 1 3.4.8.8 2.1 1.2 3.3 1 .6 1 1.8 1.6 3 1.6s2.4-.6 3-1.7c1.2.3 2.5 0 3.4-1 .8-.8 1.2-2 1-3.3 1-.6 1.6-1.8 1.6-3s-.6-2.4-1.7-3c.3-1.2 0-2.5-1-3.4a3.7 3.7 0 0 0-3.3-1c-.6-1-1.8-1.6-3-1.6Z"}],["path",{d:"m9 12 2 2 4-4"}]]],b7=["svg",h,[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],D7=["svg",h,[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["rect",{x:"8",y:"5",width:"8",height:"14",rx:"1"}]]],O7=["svg",h,[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.34l1 1L22 8v8"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2l10 10Z"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],R7=["svg",h,[["path",{d:"m22 8-6 4 6 4V8Z"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2",ry:"2"}]]],T7=["svg",h,[["path",{d:"M5 12s2.545-5 7-5c4.454 0 7 5 7 5s-2.546 5-7 5c-4.455 0-7-5-7-5z"}],["path",{d:"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2"}]]],U7=["svg",h,[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",y1:"16",x2:"18",y2:"16"}]]],E7=["svg",h,[["polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}],["path",{d:"M15.54 8.46a5 5 0 0 1 0 7.07"}]]],G7=["svg",h,[["polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}],["path",{d:"M15.54 8.46a5 5 0 0 1 0 7.07"}],["path",{d:"M19.07 4.93a10 10 0 0 1 0 14.14"}]]],I7=["svg",h,[["polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}],["line",{x1:"22",y1:"9",x2:"16",y2:"15"}],["line",{x1:"16",y1:"9",x2:"22",y2:"15"}]]],W7=["svg",h,[["polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}]]],X7=["svg",h,[["path",{d:"M20 12V8H6a2 2 0 0 1-2-2c0-1.1.9-2 2-2h12v4"}],["path",{d:"M4 6v12c0 1.1.9 2 2 2h14v-4"}],["path",{d:"M18 12a2 2 0 0 0-2 2c0 1.1.9 2 2 2h4v-4h-4z"}]]],q7=["svg",h,[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72Z"}],["path",{d:"m14 7 3 3"}],["path",{d:"M5 6v4"}],["path",{d:"M19 14v4"}],["path",{d:"M10 2v2"}],["path",{d:"M7 8H3"}],["path",{d:"M21 16h-4"}],["path",{d:"M11 3H9"}]]],N7=["svg",h,[["path",{d:"M15 4V2"}],["path",{d:"M15 16v-2"}],["path",{d:"M8 9h2"}],["path",{d:"M20 9h2"}],["path",{d:"M17.8 11.8 19 13"}],["path",{d:"M15 9h0"}],["path",{d:"M17.8 6.2 19 5"}],["path",{d:"m3 21 9-9"}],["path",{d:"M12.2 6.2 11 5"}]]],J7=["svg",h,[["circle",{cx:"12",cy:"12",r:"6"}],["polyline",{points:"12 10 12 12 13 13"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05"}]]],j7=["svg",h,[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]]],K7=["svg",h,[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]]],Q7=["svg",h,[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"}]]],_7=["svg",h,[["path",{d:"m2 22 10-10"}],["path",{d:"m16 8-1.17 1.17"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],Y7=["svg",h,[["path",{d:"M2 22 16 8"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}]]],ai=["svg",h,[["line",{x1:"2",y1:"2",x2:"22",y2:"22"}],["path",{d:"M8.5 16.5a5 5 0 0 1 7 0"}],["path",{d:"M2 8.82a15 15 0 0 1 4.17-2.65"}],["path",{d:"M10.66 5c4.01-.36 8.14.9 11.34 3.76"}],["path",{d:"M16.85 11.25a10 10 0 0 1 2.22 1.68"}],["path",{d:"M5 13a10 10 0 0 1 5.24-2.76"}],["line",{x1:"12",y1:"20",x2:"12.01",y2:"20"}]]],hi=["svg",h,[["path",{d:"M5 13a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.5a5 5 0 0 1 7 0"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["line",{x1:"12",y1:"20",x2:"12.01",y2:"20"}]]],ti=["svg",h,[["path",{d:"M17.7 7.7a2.5 2.5 0 1 1 1.8 4.3H2"}],["path",{d:"M9.6 4.6A2 2 0 1 1 11 8H2"}],["path",{d:"M12.6 19.4A2 2 0 1 0 14 16H2"}]]],ci=["svg",h,[["path",{d:"M8 22h8"}],["path",{d:"M7 10h3m7 0h-1.343"}],["path",{d:"M12 15v7"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],di=["svg",h,[["path",{d:"M8 22h8"}],["path",{d:"M7 10h10"}],["path",{d:"M12 15v7"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"}]]],ni=["svg",h,[["line",{x1:"3",y1:"6",x2:"21",y2:"6"}],["path",{d:"M3 12h15a3 3 0 1 1 0 6h-4"}],["polyline",{points:"16 16 14 18 16 20"}],["line",{x1:"3",y1:"18",x2:"10",y2:"18"}]]],ii=["svg",h,[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"}]]],li=["svg",h,[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"15",y1:"9",x2:"9",y2:"15"}],["line",{x1:"9",y1:"9",x2:"15",y2:"15"}]]],ei=["svg",h,[["polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}],["line",{x1:"15",y1:"9",x2:"9",y2:"15"}],["line",{x1:"9",y1:"9",x2:"15",y2:"15"}]]],pi=["svg",h,[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}],["line",{x1:"9",y1:"9",x2:"15",y2:"15"}],["line",{x1:"15",y1:"9",x2:"9",y2:"15"}]]],Mi=["svg",h,[["line",{x1:"18",y1:"6",x2:"6",y2:"18"}],["line",{x1:"6",y1:"6",x2:"18",y2:"18"}]]],vi=["svg",h,[["path",{d:"M12 19c-2.3 0-6.4-.2-8.1-.6-.7-.2-1.2-.7-1.4-1.4-.3-1.1-.5-3.4-.5-5s.2-3.9.5-5c.2-.7.7-1.2 1.4-1.4C5.6 5.2 9.7 5 12 5s6.4.2 8.1.6c.7.2 1.2.7 1.4 1.4.3 1.1.5 3.4.5 5s-.2 3.9-.5 5c-.2.7-.7 1.2-1.4 1.4-1.7.4-5.8.6-8.1.6 0 0 0 0 0 0z"}],["polygon",{points:"10 15 15 12 10 9"}]]],oi=["svg",h,[["polyline",{points:"12.41 6.75 13 2 10.57 4.92"}],["polyline",{points:"18.57 12.91 21 10 15.66 10"}],["polyline",{points:"8 8 3 14 12 14 11 22 16 16"}],["line",{x1:"2",y1:"2",x2:"22",y2:"22"}]]],yi=["svg",h,[["polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"}]]],si=["svg",h,[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}],["line",{x1:"11",y1:"8",x2:"11",y2:"14"}],["line",{x1:"8",y1:"11",x2:"14",y2:"11"}]]],gi=["svg",h,[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}],["line",{x1:"8",y1:"11",x2:"14",y2:"11"}]]];var ri=Object.freeze({__proto__:null,Accessibility:M,Activity:v,AirVent:o,Airplay:y,AlarmCheck:s,AlarmClockOff:g,AlarmClock:r,AlarmMinus:$,AlarmPlus:m,Album:x,AlertCircle:H,AlertOctagon:C,AlertTriangle:V,AlignCenterHorizontal:u,AlignCenterVertical:L,AlignCenter:A,AlignEndHorizontal:w,AlignEndVertical:f,AlignHorizontalDistributeCenter:S,AlignHorizontalDistributeEnd:F,AlignHorizontalDistributeStart:k,AlignHorizontalJustifyCenter:z,AlignHorizontalJustifyEnd:Z,AlignHorizontalJustifyStart:P,AlignHorizontalSpaceAround:B,AlignHorizontalSpaceBetween:b,AlignJustify:D,AlignLeft:O,AlignRight:R,AlignStartHorizontal:T,AlignStartVertical:U,AlignVerticalDistributeCenter:E,AlignVerticalDistributeEnd:G,AlignVerticalDistributeStart:I,AlignVerticalJustifyCenter:W,AlignVerticalJustifyEnd:X,AlignVerticalJustifyStart:q,AlignVerticalSpaceAround:N,AlignVerticalSpaceBetween:J,Anchor:j,Angry:K,Annoyed:Q,Aperture:_,Apple:Y,ArchiveRestore:a1,Archive:h1,Armchair:t1,ArrowBigDown:c1,ArrowBigLeft:d1,ArrowBigRight:n1,ArrowBigUp:i1,ArrowDownCircle:l1,ArrowDownLeft:e1,ArrowDownRight:p1,ArrowDown:M1,ArrowLeftCircle:v1,ArrowLeftRight:o1,ArrowLeft:y1,ArrowRightCircle:s1,ArrowRight:g1,ArrowUpCircle:r1,ArrowUpDown:$1,ArrowUpLeft:m1,ArrowUpRight:x1,ArrowUp:H1,Asterisk:C1,AtSign:V1,Award:u1,Axe:L1,Axis3d:A1,Baby:w1,Backpack:f1,BaggageClaim:S1,Banana:F1,Banknote:k1,BarChart2:z1,BarChart3:Z1,BarChart4:P1,BarChartHorizontal:B1,BarChart:b1,Baseline:D1,Bath:O1,BatteryCharging:R1,BatteryFull:T1,BatteryLow:U1,BatteryMedium:E1,Battery:G1,Beaker:I1,BeanOff:W1,Bean:X1,BedDouble:q1,BedSingle:N1,Bed:J1,Beer:j1,BellMinus:K1,BellOff:Q1,BellPlus:_1,BellRing:Y1,Bell:a2,Bike:h2,Binary:t2,Bitcoin:c2,BluetoothConnected:d2,BluetoothOff:n2,BluetoothSearching:i2,Bluetooth:l2,Bold:e2,Bomb:p2,Bone:M2,BookOpenCheck:v2,BookOpen:o2,Book:y2,BookmarkMinus:s2,BookmarkPlus:g2,Bookmark:r2,Bot:$2,BoxSelect:m2,Box:x2,Boxes:H2,Briefcase:C2,Brush:V2,Bug:u2,Building2:L2,Building:A2,Bus:w2,Cake:f2,Calculator:S2,CalendarCheck2:F2,CalendarCheck:k2,CalendarClock:z2,CalendarDays:Z2,CalendarHeart:P2,CalendarMinus:B2,CalendarOff:b2,CalendarPlus:D2,CalendarRange:O2,CalendarSearch:R2,CalendarX2:T2,CalendarX:U2,Calendar:E2,CameraOff:G2,Camera:I2,CandyOff:W2,Candy:X2,Car:q2,Carrot:N2,Cast:J2,Cat:j2,CheckCheck:K2,CheckCircle2:Q2,CheckCircle:_2,CheckSquare:Y2,Check:a0,ChefHat:h0,Cherry:t0,ChevronDown:c0,ChevronFirst:d0,ChevronLast:n0,ChevronLeft:i0,ChevronRight:l0,ChevronUp:e0,ChevronsDownUp:p0,ChevronsDown:M0,ChevronsLeftRight:v0,ChevronsLeft:o0,ChevronsRightLeft:y0,ChevronsRight:s0,ChevronsUpDown:g0,ChevronsUp:r0,Chrome:$0,CigaretteOff:m0,Cigarette:x0,CircleDot:H0,CircleEllipsis:C0,CircleSlashed:V0,Circle:u0,Citrus:L0,Clapperboard:A0,ClipboardCheck:w0,ClipboardCopy:f0,ClipboardEdit:S0,ClipboardList:F0,ClipboardSignature:k0,ClipboardType:z0,ClipboardX:Z0,Clipboard:P0,Clock1:B0,Clock10:b0,Clock11:D0,Clock12:O0,Clock2:R0,Clock3:T0,Clock4:U0,Clock5:E0,Clock6:G0,Clock7:I0,Clock8:W0,Clock9:X0,Clock:q0,CloudCog:N0,CloudDrizzle:J0,CloudFog:j0,CloudHail:K0,CloudLightning:Q0,CloudMoonRain:_0,CloudMoon:Y0,CloudOff:aa,CloudRainWind:ha,CloudRain:ta,CloudSnow:ca,CloudSunRain:da,CloudSun:na,Cloud:ia,Cloudy:la,Clover:ea,Code2:pa,Code:Ma,Codepen:va,Codesandbox:oa,Coffee:ya,Cog:sa,Coins:ga,Columns:ra,Command:$a,Compass:ma,Component:xa,ConciergeBell:Ha,Contact:Ca,Contrast:Va,Cookie:ua,Copy:La,Copyleft:Aa,Copyright:wa,CornerDownLeft:fa,CornerDownRight:Sa,CornerLeftDown:Fa,CornerLeftUp:ka,CornerRightDown:za,CornerRightUp:Za,CornerUpLeft:Pa,CornerUpRight:Ba,Cpu:ba,CreditCard:Da,Croissant:Oa,Crop:Ra,Cross:Ta,Crosshair:Ua,Crown:Ea,CupSoda:Ga,CurlyBraces:Ia,Currency:Wa,Database:Xa,Delete:qa,Diamond:Na,Dice1:Ja,Dice2:ja,Dice3:Ka,Dice4:Qa,Dice5:_a,Dice6:Ya,Dices:ah,Diff:hh,Disc:th,DivideCircle:ch,DivideSquare:dh,Divide:nh,DnaOff:ih,Dna:lh,Dog:eh,DollarSign:ph,DownloadCloud:Mh,Download:vh,Dribbble:oh,Droplet:yh,Droplets:sh,Drumstick:gh,Dumbbell:rh,EarOff:$h,Ear:mh,Edit2:xh,Edit3:Hh,Edit:Ch,EggFried:Vh,EggOff:uh,Egg:Lh,EqualNot:Ah,Equal:wh,Eraser:fh,Euro:Sh,Expand:Fh,ExternalLink:kh,EyeOff:zh,Eye:Zh,Facebook:Ph,Factory:Bh,Fan:bh,FastForward:Dh,Feather:Oh,Figma:Rh,FileArchive:Th,FileAudio2:Uh,FileAudio:Eh,FileAxis3d:Gh,FileBadge2:Ih,FileBadge:Wh,FileBarChart2:Xh,FileBarChart:qh,FileBox:Nh,FileCheck2:Jh,FileCheck:jh,FileClock:Kh,FileCode:Qh,FileCog2:_h,FileCog:Yh,FileDiff:at,FileDigit:ht,FileDown:tt,FileEdit:ct,FileHeart:dt,FileImage:nt,FileInput:it,FileJson2:lt,FileJson:et,FileKey2:pt,FileKey:Mt,FileLineChart:vt,FileLock2:ot,FileLock:yt,FileMinus2:st,FileMinus:gt,FileOutput:rt,FilePieChart:$t,FilePlus2:mt,FilePlus:xt,FileQuestion:Ht,FileScan:Ct,FileSearch2:Vt,FileSearch:ut,FileSignature:Lt,FileSpreadsheet:At,FileSymlink:wt,FileTerminal:ft,FileText:St,FileType2:Ft,FileType:kt,FileUp:zt,FileVideo2:Zt,FileVideo:Pt,FileVolume2:Bt,FileVolume:bt,FileWarning:Dt,FileX2:Ot,FileX:Rt,File:Tt,Files:Ut,Film:Et,Filter:Gt,Fingerprint:It,FlagOff:Wt,FlagTriangleLeft:Xt,FlagTriangleRight:qt,Flag:Nt,Flame:Jt,FlashlightOff:jt,Flashlight:Kt,FlaskConicalOff:Qt,FlaskConical:_t,FlaskRound:Yt,FlipHorizontal2:a5,FlipHorizontal:h5,FlipVertical2:t5,FlipVertical:c5,Flower2:d5,Flower:n5,Focus:i5,FolderArchive:l5,FolderCheck:e5,FolderClock:p5,FolderClosed:M5,FolderCog2:v5,FolderCog:o5,FolderDown:y5,FolderEdit:s5,FolderHeart:g5,FolderInput:r5,FolderKey:$5,FolderLock:m5,FolderMinus:x5,FolderOpen:H5,FolderOutput:C5,FolderPlus:V5,FolderSearch2:u5,FolderSearch:L5,FolderSymlink:A5,FolderTree:w5,FolderUp:f5,FolderX:S5,Folder:F5,Folders:k5,FormInput:z5,Forward:Z5,Frame:P5,Framer:B5,Frown:b5,Fuel:D5,FunctionSquare:O5,Gamepad2:R5,Gamepad:T5,Gauge:U5,Gavel:E5,Gem:G5,Ghost:I5,Gift:W5,GitBranchPlus:X5,GitBranch:q5,GitCommit:N5,GitCompare:J5,GitFork:j5,GitMerge:K5,GitPullRequestClosed:Q5,GitPullRequestDraft:_5,GitPullRequest:Y5,Github:a4,Gitlab:h4,GlassWater:t4,Glasses:c4,Globe2:d4,Globe:n4,Grab:i4,GraduationCap:l4,Grape:e4,Grid:p4,GripHorizontal:M4,GripVertical:v4,Hammer:o4,HandMetal:y4,Hand:s4,HardDrive:g4,HardHat:r4,Hash:$4,Haze:m4,Heading1:x4,Heading2:H4,Heading3:C4,Heading4:V4,Heading5:u4,Heading6:L4,Heading:A4,Headphones:w4,HeartCrack:f4,HeartHandshake:S4,HeartOff:F4,HeartPulse:k4,Heart:z4,HelpCircle:Z4,Hexagon:P4,Highlighter:B4,History:b4,Home:D4,HopOff:O4,Hop:R4,Hourglass:T4,IceCream:U4,ImageMinus:E4,ImageOff:G4,ImagePlus:I4,Image:W4,Import:X4,Inbox:q4,Indent:N4,IndianRupee:J4,Infinity:j4,Info:K4,Inspect:Q4,Instagram:_4,Italic:Y4,JapaneseYen:a3,Joystick:h3,Key:t3,Keyboard:c3,LampCeiling:d3,LampDesk:n3,LampFloor:i3,LampWallDown:l3,LampWallUp:e3,Lamp:p3,Landmark:M3,Languages:v3,Laptop2:o3,Laptop:y3,LassoSelect:s3,Lasso:g3,Laugh:r3,Layers:$3,LayoutDashboard:m3,LayoutGrid:x3,LayoutList:H3,LayoutTemplate:C3,Layout:V3,Leaf:u3,Library:L3,LifeBuoy:A3,LightbulbOff:w3,Lightbulb:f3,LineChart:S3,Link2Off:F3,Link2:k3,Link:z3,Linkedin:Z3,ListChecks:P3,ListEnd:B3,ListMinus:b3,ListMusic:D3,ListOrdered:O3,ListPlus:R3,ListStart:T3,ListVideo:U3,ListX:E3,List:G3,Loader2:I3,Loader:W3,LocateFixed:X3,LocateOff:q3,Locate:N3,Lock:J3,LogIn:j3,LogOut:K3,Luggage:Q3,Magnet:_3,MailCheck:Y3,MailMinus:a6,MailOpen:h6,MailPlus:t6,MailQuestion:c6,MailSearch:d6,MailWarning:n6,MailX:i6,Mail:l6,Mails:e6,MapPinOff:p6,MapPin:M6,Map:v6,Martini:o6,Maximize2:y6,Maximize:s6,Medal:g6,MegaphoneOff:r6,Megaphone:$6,Meh:m6,Menu:x6,MessageCircle:H6,MessageSquare:C6,Mic2:V6,MicOff:u6,Mic:L6,Microscope:A6,Microwave:w6,Milestone:f6,MilkOff:S6,Milk:F6,Minimize2:k6,Minimize:z6,MinusCircle:Z6,MinusSquare:P6,Minus:B6,MonitorOff:b6,MonitorSmartphone:D6,MonitorSpeaker:O6,Monitor:R6,Moon:T6,MoreHorizontal:U6,MoreVertical:E6,MountainSnow:G6,Mountain:I6,MousePointer2:W6,MousePointerClick:X6,MousePointer:q6,Mouse:N6,Move3d:J6,MoveDiagonal2:j6,MoveDiagonal:K6,MoveHorizontal:Q6,MoveVertical:_6,Move:Y6,Music2:ac,Music3:hc,Music4:tc,Music:cc,Navigation2Off:dc,Navigation2:nc,NavigationOff:ic,Navigation:lc,Network:ec,Newspaper:pc,NutOff:Mc,Nut:vc,Octagon:oc,Option:yc,Outdent:sc,Package2:gc,PackageCheck:rc,PackageMinus:$c,PackageOpen:mc,PackagePlus:xc,PackageSearch:Hc,PackageX:Cc,Package:Vc,PaintBucket:uc,Paintbrush2:Lc,Paintbrush:Ac,Palette:wc,Palmtree:fc,Paperclip:Sc,PartyPopper:Fc,PauseCircle:kc,PauseOctagon:zc,Pause:Zc,PenTool:Pc,Pencil:Bc,Percent:bc,PersonStanding:Dc,PhoneCall:Oc,PhoneForwarded:Rc,PhoneIncoming:Tc,PhoneMissed:Uc,PhoneOff:Ec,PhoneOutgoing:Gc,Phone:Ic,PieChart:Wc,PiggyBank:Xc,Pilcrow:qc,PinOff:Nc,Pin:Jc,Pipette:jc,Pizza:Kc,Plane:Qc,PlayCircle:_c,Play:Yc,Plug2:ad,PlugZap:hd,Plug:td,PlusCircle:cd,PlusSquare:dd,Plus:nd,Pocket:id,Podcast:ld,Pointer:ed,PoundSterling:pd,PowerOff:Md,Power:vd,Printer:od,Puzzle:yd,QrCode:sd,Quote:gd,RadioReceiver:rd,Radio:$d,RectangleHorizontal:md,RectangleVertical:xd,Recycle:Hd,Redo2:Cd,Redo:Vd,RefreshCcw:ud,RefreshCw:Ld,Refrigerator:Ad,Regex:wd,Repeat1:fd,Repeat:Sd,ReplyAll:Fd,Reply:kd,Rewind:zd,Rocket:Zd,RockingChair:Pd,Rotate3d:Bd,RotateCcw:bd,RotateCw:Dd,Rss:Od,Ruler:Rd,RussianRuble:Td,Sailboat:Ud,Save:Ed,Scale3d:Gd,Scale:Id,Scaling:Wd,ScanFace:Xd,ScanLine:qd,Scan:Nd,Scissors:Jd,ScreenShareOff:jd,ScreenShare:Kd,Scroll:Qd,Search:_d,Send:Yd,SeparatorHorizontal:a8,SeparatorVertical:h8,ServerCog:t8,ServerCrash:c8,ServerOff:d8,Server:n8,Settings2:i8,Settings:l8,Share2:e8,Share:p8,Sheet:M8,ShieldAlert:v8,ShieldCheck:o8,ShieldClose:y8,ShieldOff:s8,Shield:g8,Shirt:r8,ShoppingBag:$8,ShoppingCart:m8,Shovel:x8,ShowerHead:H8,Shrink:C8,Shrub:V8,Shuffle:u8,SidebarClose:L8,SidebarOpen:A8,Sidebar:w8,Sigma:f8,SignalHigh:S8,SignalLow:F8,SignalMedium:k8,SignalZero:z8,Signal:Z8,Siren:P8,SkipBack:B8,SkipForward:b8,Skull:D8,Slack:O8,Slash:R8,Slice:T8,SlidersHorizontal:U8,Sliders:E8,SmartphoneCharging:G8,Smartphone:I8,SmilePlus:W8,Smile:X8,Snowflake:q8,Sofa:N8,SortAsc:J8,SortDesc:j8,Speaker:K8,Spline:Q8,Sprout:_8,Square:Y8,StarHalf:an,StarOff:hn,Star:tn,Stethoscope:cn,Sticker:dn,StickyNote:nn,StopCircle:ln,StretchHorizontal:en,StretchVertical:pn,Strikethrough:Mn,Subscript:vn,Subtitles:on,SunDim:yn,SunMedium:sn,SunMoon:gn,SunSnow:rn,Sun:$n,Sunrise:mn,Sunset:xn,Superscript:Hn,SwissFranc:Cn,SwitchCamera:Vn,Sword:un,Swords:Ln,Syringe:An,Table2:wn,Table:fn,Tablet:Sn,Tag:Fn,Tags:kn,Target:zn,Tent:Zn,TerminalSquare:Pn,Terminal:Bn,TextCursorInput:bn,TextCursor:Dn,ThermometerSnowflake:On,ThermometerSun:Rn,Thermometer:Tn,ThumbsDown:Un,ThumbsUp:En,Ticket:Gn,TimerOff:In,TimerReset:Wn,Timer:Xn,ToggleLeft:qn,ToggleRight:Nn,Tornado:Jn,ToyBrick:jn,Train:Kn,Trash2:Qn,Trash:_n,TreeDeciduous:Yn,TreePine:a7,Trees:h7,Trello:t7,TrendingDown:c7,TrendingUp:d7,Triangle:n7,Trophy:i7,Truck:l7,Tv2:e7,Tv:p7,Twitch:M7,Twitter:v7,Type:o7,Umbrella:y7,Underline:s7,Undo2:g7,Undo:r7,Unlink2:$7,Unlink:m7,Unlock:x7,UploadCloud:H7,Upload:C7,Usb:V7,UserCheck:u7,UserCog:L7,UserMinus:A7,UserPlus:w7,UserX:f7,User:S7,Users:F7,UtensilsCrossed:k7,Utensils:z7,Vegan:Z7,VenetianMask:P7,Verified:B7,VibrateOff:b7,Vibrate:D7,VideoOff:O7,Video:R7,View:T7,Voicemail:U7,Volume1:E7,Volume2:G7,VolumeX:I7,Volume:W7,Wallet:X7,Wand2:q7,Wand:N7,Watch:J7,Waves:j7,Webcam:K7,Webhook:Q7,WheatOff:_7,Wheat:Y7,WifiOff:ai,Wifi:hi,Wind:ti,WineOff:ci,Wine:di,WrapText:ni,Wrench:ii,XCircle:li,XOctagon:ei,XSquare:pi,X:Mi,Youtube:vi,ZapOff:oi,Zap:yi,ZoomIn:si,ZoomOut:gi});const wi=({icons:t=ri,nameAttr:c="icon-name",attrs:d={}}={})=>{if(!Object.values(t).length)throw new Error(`Please provide an icons object.