diff --git a/.env b/.env new file mode 100644 index 0000000000..2c41511e81 --- /dev/null +++ b/.env @@ -0,0 +1,57 @@ +CHAIN_ID=1790 +CHAINWEB_CHAIN_ID=20 +SUBNETWORK=Chain${CHAIN_ID} +NEXT_PUBLIC_NETWORK_ID=${CHAIN_ID} +NEXT_PUBLIC_NETWORK_NAME="Chainweb EVM" +BLOCKSCOUT_DB_NAME=blockscout_${CHAIN_ID} +STATS_DB_NAME=stats_${CHAIN_ID} +EXPLORER_MAIN_URL=chain-${CHAINWEB_CHAIN_ID}.evm.kadena.internal +CHAIN_PUBLIC_URL=chain-${CHAINWEB_CHAIN_ID}.evm.kadena.internal +BLOCKSCOUT_BACKEND_URL=http://chain-${CHAINWEB_CHAIN_ID}.evm.kadena.internal +PROXY_UI_PORT=8008 +PROXY_STATS_PORT=8080 +PROXY_VISUALIZER_PORT=8081 +NEXT_PUBLIC_APP_PORT=${PROXY_UI_PORT} +NEXT_PUBLIC_API_PORT=8000 +NEXT_PUBLIC_STATS_API_HOST=${BLOCKSCOUT_BACKEND_URL}:${PROXY_STATS_PORT} +NEXT_PUBLIC_VISUALIZE_API_HOST=http://${EXPLORER_MAIN_URL}:${PROXY_VISUALIZER_PORT} +NEXT_PUBLIC_API_HOST=${CHAIN_PUBLIC_URL} +NEXT_PUBLIC_APP_HOST=chain-${CHAINWEB_CHAIN_ID}.evm.kadena.internal +BLOCKSCOUT_DB_URL=postgresql://blockscout:ceWb1MeLBEeOIfk65gU8EjF8@db:5432/${BLOCKSCOUT_DB_NAME} +JSONRPC_HTTP=http://chain-${CHAINWEB_CHAIN_ID}.evm.kadena.internal:1848/chainweb/0.0/evm-development/${CHAINWEB_CHAIN_ID}/evm/rpc/ +JSONRPC_WS_URL=ws://chain-${CHAINWEB_CHAIN_ID}.evm.kadena.internal:1848/chainweb/0.0/evm-development/${CHAINWEB_CHAIN_ID}/evm/rpc/ +ETHEREUM_JSONRPC_HTTP_URL=${JSONRPC_HTTP} +ETHEREUM_JSONRPC_WS_URL=${JSONRPC_WS_URL} +ETHEREUM_JSONRPC_TRACE_URL=${JSONRPC_HTTP} +USER_OPS_INDEXER__INDEXER__RPC_URL=${JSONRPC_WS_URL} +NEXT_PUBLIC_API_PROTOCOL=http +NEXT_PUBLIC_API_WEBSOCKET_PROTOCOL=ws +NEXT_PUBLIC_NETWORK_SHORT_NAME=KdaEvmDevnet +NEXT_PUBLIC_NETWORK_CURRENCY_NAME=Kadena +NEXT_PUBLIC_NETWORK_CURRENCY_SYMBOL=KDA +NEXT_PUBLIC_NETWORK_CURRENCY_WEI_NAME=stu +NEXT_PUBLIC_NETWORK_CURRENCY_DECIMALS=18 +NEXT_PUBLIC_NETWORK_VERIFICATION_TYPE=mining +NEXT_PUBLIC_IS_TESTNET=true +NEXT_PUBLIC_API_BASE_PATH=/ +NEXT_PUBLIC_APP_PROTOCOL=http +NEXT_PUBLIC_HOMEPAGE_CHARTS=["daily_txs"] +# NEXT_PUBLIC_HOMEPAGE_STATS=["total_blocks","average_block_time","total_txs","wallet_addresses","gas_tracker","btc_locked"] +NEXT_PUBLIC_API_SPEC_URL=https://raw.githubusercontent.com/blockscout/blockscout-api-v2-swagger/main/swagger.yaml +NEXT_PUBLIC_AD_BANNER_PROVIDER=none +NEXT_PUBLIC_PROMOTE_BLOCKSCOUT_IN_TITLE=false +NEXT_PUBLIC_AD_TEXT_PROVIDER=none +NEXT_PUBLIC_NETWORK_LOGO=https://www.kadena.io/_next/static/media/logo_sm.76a6235e.svg +NEXT_PUBLIC_NETWORK_ICON=https://www.kadena.io/_next/static/media/logo_sm.76a6235e.svg +NEXT_PUBLIC_APP_NAME=Chainweb EVM Explorer +NEXT_PUBLIC_APP_SHORT_NAME=EVM Explorer +NEXT_PUBLIC_APP_VERSION=0.1.0 + +NEXT_PUBLIC_FEATURED_BASE_NETWORK=mainnet +# [{"title":"Mainnet","id":"mainnet","url":"http://chain-%s.evm.kadena.internal:8000/","isActive":true,"icon":"https://www.kadena.io/favicon.ico"},{"title":"Devnet","id":"devnet","url":"http://chain-%s.evm.kadena.internal:8000/","isActive":true,"icon":"https://www.kadena.io/favicon.ico"},{"title":"Testnet","id":"testnet","url":"http://chain-%s.evm.kadena.internal:8000/","isActive":false,"icon":"https://www.kadena.io/favicon.ico"}] +NEXT_PUBLIC_FEATURED_NETWORKS=/assets/configs/networks.json +# [{"title":"Chain 20","url":"http://chain-20.evm.kadena.internal:8000/","group":"mainnet","icon":"https://www.kadena.io/favicon.ico"},{"title":"Chain 21","url":"http://chain-21.evm-devnet.kadena.internal:8000/","group":"devnet","icon":"https://www.kadena.io/favicon.ico"},{"title":"Chain 22","url":"http://chain-22.evm-mainnet.kadena.internal:8000/","group":"mainnet","icon":"https://www.kadena.io/favicon.ico"},{"title":"Chain 23","url":"http://chain-23.evm.kadena.internal:8000/","group":"mainnet","icon":"https://www.kadena.io/favicon.ico"},{"title":"Chain 24","url":"http://chain-24.evm-testnet.kadena.internal:8000/","group":"testnet","icon":"https://www.kadena.io/favicon.ico"}] +NEXT_PUBLIC_FEATURED_CHAINS=/assets/configs/chains.json + +NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=123456 +NEXT_PUBLIC_NETWORK_RPC_URL=https://evm-testnet.chainweb.com/chainweb/0.0/evm-testnet/${CHAINWEB_CHAIN_ID}/evm/rpc/ diff --git a/.gitignore b/.gitignore index 9ddfaf04ff..ddb7283a39 100644 --- a/.gitignore +++ b/.gitignore @@ -61,4 +61,7 @@ yarn-error.log* # build outputs /tools/preset-sync/index.js -/toolkit/package/dist \ No newline at end of file +/toolkit/package/dist + +toolkit/theme/example +designid.config.js diff --git a/configs/app/app.ts b/configs/app/app.ts index f5cca629e7..8d26f04525 100644 --- a/configs/app/app.ts +++ b/configs/app/app.ts @@ -14,6 +14,9 @@ const isPw = getEnvValue('NEXT_PUBLIC_APP_INSTANCE') === 'pw'; const spriteHash = getEnvValue('NEXT_PUBLIC_ICON_SPRITE_HASH'); const app = Object.freeze({ + name: getEnvValue('NEXT_PUBLIC_APP_NAME') || 'Chainweb EVM Explorer', + shortName: getEnvValue('NEXT_PUBLIC_APP_SHORT_NAME') || 'EVM Explorer', + version: getEnvValue('NEXT_PUBLIC_APP_VERSION') || '0.0.1', isDev, isPw, protocol: appSchema, diff --git a/configs/app/index.ts b/configs/app/index.ts index 7d07411175..8f7cffc5e5 100644 --- a/configs/app/index.ts +++ b/configs/app/index.ts @@ -3,11 +3,13 @@ import app from './app'; import chain from './chain'; import * as features from './features'; import meta from './meta'; +import network from './network'; import services from './services'; import UI from './ui'; const config = Object.freeze({ app, + network, chain, apis, UI, diff --git a/configs/app/network.ts b/configs/app/network.ts new file mode 100644 index 0000000000..6eccef8f85 --- /dev/null +++ b/configs/app/network.ts @@ -0,0 +1,9 @@ +import { getEnvValue } from './utils'; + +const name = getEnvValue('NEXT_PUBLIC_KADENA_NETWORK_NAME') ?? 'devnet'; + +const network = Object.freeze({ + name, +}); + +export default network; diff --git a/configs/app/ui.ts b/configs/app/ui.ts index ba0d3ad362..dfa005b557 100644 --- a/configs/app/ui.ts +++ b/configs/app/ui.ts @@ -65,7 +65,10 @@ const UI = Object.freeze({ hiddenLinks, highlightedRoutes, otherLinks: parseEnvJson>(getEnvValue('NEXT_PUBLIC_OTHER_LINKS')) || [], - featuredNetworks: getExternalAssetFilePath('NEXT_PUBLIC_FEATURED_NETWORKS'), + baseNetwork: getEnvValue('NEXT_PUBLIC_FEATURED_BASE_NETWORK') || 'mainnet', + baseChain: getEnvValue('CHAINWEB_CHAIN_ID') || 20, + featuredNetworks: getExternalAssetFilePath('NEXT_PUBLIC_FEATURED_NETWORKS') ?? '/assets/configs/networks.json', + featuredChains: getExternalAssetFilePath('NEXT_PUBLIC_FEATURED_CHAINS') ?? '/assets/configs/chains.json', layout: (getEnvValue('NEXT_PUBLIC_NAVIGATION_LAYOUT') || 'vertical') as NavigationLayout, }, footer: { diff --git a/deploy/scripts/download_assets.sh b/deploy/scripts/download_assets.sh index a1c31d766e..811f56d690 100755 --- a/deploy/scripts/download_assets.sh +++ b/deploy/scripts/download_assets.sh @@ -20,6 +20,7 @@ ASSETS_ENVS=( "NEXT_PUBLIC_MARKETPLACE_BANNER_CONTENT_URL" "NEXT_PUBLIC_MARKETPLACE_GRAPH_LINKS_URL" "NEXT_PUBLIC_FEATURED_NETWORKS" + "NEXT_PUBLIC_FEATURED_CHAINS" "NEXT_PUBLIC_FOOTER_LINKS" "NEXT_PUBLIC_NETWORK_LOGO" "NEXT_PUBLIC_NETWORK_LOGO_DARK" diff --git a/deploy/tools/envs-validator/index.ts b/deploy/tools/envs-validator/index.ts index 98769d1fe7..fdb0a068e0 100644 --- a/deploy/tools/envs-validator/index.ts +++ b/deploy/tools/envs-validator/index.ts @@ -37,6 +37,7 @@ async function validateEnvs(appEnvs: Record) { // replace ENVs with external JSON files content const envsWithJsonConfig = [ 'NEXT_PUBLIC_FEATURED_NETWORKS', + 'NEXT_PUBLIC_FEATURED_CHAINS', 'NEXT_PUBLIC_MARKETPLACE_CONFIG_URL', 'NEXT_PUBLIC_MARKETPLACE_CATEGORIES_URL', 'NEXT_PUBLIC_MARKETPLACE_SECURITY_REPORTS_URL', diff --git a/deploy/tools/envs-validator/schema.ts b/deploy/tools/envs-validator/schema.ts index b67df304ad..78f5527671 100644 --- a/deploy/tools/envs-validator/schema.ts +++ b/deploy/tools/envs-validator/schema.ts @@ -32,7 +32,7 @@ import { SUPPORTED_WALLETS } from '../../../types/client/wallets'; import type { CustomLink, CustomLinksGroup } from '../../../types/footerLinks'; import { CHAIN_INDICATOR_IDS, HOME_STATS_WIDGET_IDS } from '../../../types/homepage'; import type { ChainIndicatorId, HeroBannerButtonState, HeroBannerConfig, HomeStatsWidgetId } from '../../../types/homepage'; -import { type NetworkVerificationTypeEnvs, type NetworkExplorer, type FeaturedNetwork, NETWORK_GROUPS } from '../../../types/networks'; +import { type NetworkVerificationTypeEnvs, type NetworkExplorer, type FeaturedNetwork, NETWORK_GROUPS, FeaturedChain } from '../../../types/networks'; import { COLOR_THEME_IDS } from '../../../types/settings'; import type { FontFamily } from '../../../types/ui'; import type { AddressFormat, AddressViewId } from '../../../types/views/address'; @@ -552,6 +552,17 @@ const featuredNetworkSchema: yup.ObjectSchema = yup invertIconInDarkMode: yup.boolean(), }); +const featuredChainsSchema: yup.ObjectSchema = yup + .object() + .shape({ + title: yup.string().required(), + url: yup.string().test(urlTest).required(), + group: yup.string().oneOf(NETWORK_GROUPS).required(), + icon: yup.string().test(urlTest), + isActive: yup.boolean(), + invertIconInDarkMode: yup.boolean(), + }); + const navItemExternalSchema: yup.ObjectSchema = yup .object({ text: yup.string().required(), @@ -815,6 +826,10 @@ const schema = yup .array() .json() .of(featuredNetworkSchema), + NEXT_PUBLIC_FEATURED_CHAINS: yup + .array() + .json() + .of(featuredChainsSchema), NEXT_PUBLIC_OTHER_LINKS: yup .array() .transform(replaceQuotes) diff --git a/designid.config.ts b/designid.config.ts new file mode 100644 index 0000000000..37a2201dca --- /dev/null +++ b/designid.config.ts @@ -0,0 +1,86 @@ +import type { TConfigFile } from '@designid/tokens'; + +const $fonts = [ 100, 400, 600, 800, 900 ].reduce((acc, weight) => ([ + ...(acc ?? []), + { + family: '"Inter", sans-serif', + style: 'Normal', + faceStyle: 'normal', + weight, + linkHref: `https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,${ weight }&display=swap`, + format: 'woff2', + }, + { + family: '"Inter", sans-serif', + style: 'Italic', + faceStyle: 'italic', + weight, + linkHref: `https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,${ weight }&display=swap`, + format: 'woff2', + }, + { + family: '"Kode Mono", monospace', + style: 'Normal', + faceStyle: 'normal', + weight, + linkHref: `https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,${ weight }&family=Kode+Mono:wght@400..700&display=swap`, + format: 'woff2', + }, +]), [] as TConfigFile['$fonts']); + +const config: TConfigFile = { + $name: 'Kadena Design System Tokens', + $version: '0.0.1', + $paths: { + baseDir: './toolkit/theme/design-system', + distDir: './dist', + buildDir: './build', + tokensDir: './tokens', + assets: { + icons: { + sourceDir: '../../../icons', + }, + fonts: { + sourceDir: './assets/fonts', + }, + }, + }, + $modes: { + + 'default': 'light', + dark: 'dark', + }, + $fonts, + $metaData: { + tokenNamespace: 'kda', + colorspace: 'hex', + fontNamespace: 'font', + tokens: { + css: { + mediaQuery: { + match: '.', + separateThemeFiles: false, + }, + hooks: { + shortenName: { + enabled: true, + prefix: [ + { + find: 'kda-foundation-', + replace: 'kda-', + }, + ], + suffix: [ + { + find: '-default', + replace: '', + }, + ], + }, + }, + }, + }, + }, +}; + +export default config; diff --git a/eslint.config.mjs b/eslint.config.mjs index 920970af52..115efb9eb1 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -67,6 +67,8 @@ export default tseslint.config( 'public/', '.git/', 'next.config.js', + './toolkit/theme/design-system/dist', + './toolkit/theme/design-system/build', ] }, { languageOptions: { globals: { ...globals.browser, ...globals.node } } }, diff --git a/icons/arrows/arrow_drop_down.svg b/icons/arrows/arrow_drop_down.svg new file mode 100644 index 0000000000..0a1c8f1e36 --- /dev/null +++ b/icons/arrows/arrow_drop_down.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/brands/kadena/logo/dark.svg b/icons/brands/kadena/logo/dark.svg new file mode 100644 index 0000000000..7567a7a9ee --- /dev/null +++ b/icons/brands/kadena/logo/dark.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/brands/kadena/logo/light.svg b/icons/brands/kadena/logo/light.svg new file mode 100644 index 0000000000..87039262c6 --- /dev/null +++ b/icons/brands/kadena/logo/light.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/brands/kadena/rounded-filled/black.svg b/icons/brands/kadena/rounded-filled/black.svg new file mode 100644 index 0000000000..dbce74654d --- /dev/null +++ b/icons/brands/kadena/rounded-filled/black.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/brands/kadena/rounded-filled/green.svg b/icons/brands/kadena/rounded-filled/green.svg new file mode 100644 index 0000000000..64d368c512 --- /dev/null +++ b/icons/brands/kadena/rounded-filled/green.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/brands/kadena/rounded-filled/white.svg b/icons/brands/kadena/rounded-filled/white.svg new file mode 100644 index 0000000000..d8b1c78bb4 --- /dev/null +++ b/icons/brands/kadena/rounded-filled/white.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/brands/kadena/rounded/black.svg b/icons/brands/kadena/rounded/black.svg new file mode 100644 index 0000000000..f98b788055 --- /dev/null +++ b/icons/brands/kadena/rounded/black.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/brands/kadena/rounded/green.svg b/icons/brands/kadena/rounded/green.svg new file mode 100644 index 0000000000..508dc53d40 --- /dev/null +++ b/icons/brands/kadena/rounded/green.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/brands/kadena/rounded/white.svg b/icons/brands/kadena/rounded/white.svg new file mode 100644 index 0000000000..ffbf92b312 --- /dev/null +++ b/icons/brands/kadena/rounded/white.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/brands/kadena/square/black.svg b/icons/brands/kadena/square/black.svg new file mode 100644 index 0000000000..9f79d380b9 --- /dev/null +++ b/icons/brands/kadena/square/black.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/brands/kadena/square/green.svg b/icons/brands/kadena/square/green.svg new file mode 100644 index 0000000000..9f9d3431da --- /dev/null +++ b/icons/brands/kadena/square/green.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/brands/kadena/square/white.svg b/icons/brands/kadena/square/white.svg new file mode 100644 index 0000000000..122d8b8baf --- /dev/null +++ b/icons/brands/kadena/square/white.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/clock-light.svg b/icons/clock-light.svg index 05e81cac9c..17e0ecf6cf 100644 --- a/icons/clock-light.svg +++ b/icons/clock-light.svg @@ -1,3 +1,3 @@ - + diff --git a/lib/date/dayjs.ts b/lib/date/dayjs.ts index 70424c17f7..6e5a85380b 100644 --- a/lib/date/dayjs.ts +++ b/lib/date/dayjs.ts @@ -9,10 +9,10 @@ import weekOfYear from 'dayjs/plugin/weekOfYear'; import { nbsp } from 'toolkit/utils/htmlEntities'; -const relativeTimeConfig = { +export const relativeTimeConfig = { thresholds: [ { l: 's', r: 1 }, - { l: 'ss', r: 59, d: 'second' }, + { l: 'ss', r: 59, d: 'secondasdfasdf' }, { l: 'm', r: 1 }, { l: 'mm', r: 59, d: 'minute' }, { l: 'h', r: 1 }, @@ -42,7 +42,7 @@ dayjs.updateLocale('en', { }, relativeTime: { s: '1s', - ss: '%ds', + ss: '%d seconds', future: 'in %s', past: '%s ago', m: '1m', diff --git a/lib/hooks/useTimeAgoIncrement.tsx b/lib/hooks/useTimeAgoIncrement.tsx index 080f3037f1..7b1db0d34c 100644 --- a/lib/hooks/useTimeAgoIncrement.tsx +++ b/lib/hooks/useTimeAgoIncrement.tsx @@ -1,8 +1,11 @@ +import relativeTime from 'dayjs/plugin/relativeTime'; import React from 'react'; -import dayjs from 'lib/date/dayjs'; +import dayjs, { relativeTimeConfig } from 'lib/date/dayjs'; import { DAY, HOUR, MINUTE, SECOND } from 'toolkit/utils/consts'; +dayjs.extend(relativeTime, relativeTimeConfig); + function getUnits(diff: number) { if (diff < MINUTE) { return [ SECOND, MINUTE ]; @@ -41,8 +44,10 @@ function getUpdateParams(ts: string | number) { }; } -export default function useTimeAgoIncrement(ts: string | number | null, isEnabled?: boolean) { - const [ value, setValue ] = React.useState(ts ? dayjs(ts).fromNow() : null); +export default function useTimeAgoIncrement(ts: string | number | null = 0, isEnabled?: boolean) { + const date = ts ? dayjs(ts ?? 0) : null; + + const [ value, setValue ] = React.useState(date ? date.toString() : ''); React.useEffect(() => { if (ts !== null) { diff --git a/mocks/config/network.ts b/mocks/config/network.ts index f5dbcf1157..1fbe81f2f6 100644 --- a/mocks/config/network.ts +++ b/mocks/config/network.ts @@ -1,6 +1,6 @@ -import type { FeaturedNetwork } from 'types/networks'; +import type { FeaturedChain } from 'types/networks'; -export const FEATURED_NETWORKS: Array = [ +export const FEATURED_CHAINS: Array = [ { title: 'Gnosis Chain', url: 'https://blockscout.com/xdai/mainnet', group: 'Mainnets', isActive: true }, { title: 'Arbitrum on xDai', url: 'https://blockscout.com/xdai/aox', group: 'Mainnets' }, { title: 'Ethereum', url: 'https://blockscout.com/eth/mainnet', group: 'Mainnets' }, diff --git a/next.config.js b/next.config.js index cb22f06685..172e2ae948 100644 --- a/next.config.js +++ b/next.config.js @@ -39,12 +39,31 @@ const moduleExports = { headers, output: 'standalone', productionBrowserSourceMaps: true, + compress: false, + allowedDevOrigins: [ + 'chain-20.evm.kadena.internal', + 'chain-21.evm.kadena.internal', + 'chain-22.evm.kadena.internal', + 'chain-23.evm.kadena.internal', + 'chain-24.evm.kadena.internal', + ], serverExternalPackages: ["@opentelemetry/sdk-node", "@opentelemetry/auto-instrumentations-node"], experimental: { staleTimes: { dynamic: 30, 'static': 180, }, + turbo: { + optimization: { + minimizer: [], + }, + rules: { + '*.svg': { + loaders: ['@svgr/webpack'], + as: '*.js', + }, + } + } }, }; diff --git a/nextjs/global.css b/nextjs/global.css index 837f0c23dc..3b3a4ef3e6 100644 --- a/nextjs/global.css +++ b/nextjs/global.css @@ -1,6 +1,9 @@ +@import url('../toolkit/theme/design-system/dist/kda-design-system.tokens.css'); + @font-face { font-family: 'InterFallback'; src: url('/static/fonts/Inter-fallback.woff2') format('woff2'); unicode-range: U+2192; /* Only the right arrow */ font-display: swap; -} \ No newline at end of file +} + diff --git a/nextjs/nextjs-routes.d.ts b/nextjs/nextjs-routes.d.ts index 973758fcb2..115e9440a0 100644 --- a/nextjs/nextjs-routes.d.ts +++ b/nextjs/nextjs-routes.d.ts @@ -5,6 +5,11 @@ // prettier-ignore declare module "nextjs-routes" { + import type { + GetServerSidePropsContext as NextGetServerSidePropsContext, + GetServerSidePropsResult as NextGetServerSidePropsResult + } from "nextjs"; + export type Route = | StaticRoute<"/404"> | StaticRoute<"/account/api-key"> @@ -107,6 +112,33 @@ declare module "nextjs-routes" { * route({ pathname: "/foos/[foo]", query: { foo: "bar" }}) will produce "/foos/bar". */ export declare function route(r: Route): string; + + /** + * Nearly identical to GetServerSidePropsContext from next, but further narrows + * types based on nextjs-route's route data. + */ + export type GetServerSidePropsContext< + Pathname extends Route["pathname"] = Route["pathname"], + Preview extends NextGetServerSidePropsContext["previewData"] = NextGetServerSidePropsContext["previewData"] + > = Omit & { + params: Extract["query"]; + query: Query; + defaultLocale?: undefined; + locale?: Locale; + locales?: undefined; + }; + + /** + * Nearly identical to GetServerSideProps from next, but further narrows + * types based on nextjs-route's route data. + */ + export type GetServerSideProps< + Props extends { [key: string]: any } = { [key: string]: any }, + Pathname extends Route["pathname"] = Route["pathname"], + Preview extends NextGetServerSideProps["previewData"] = NextGetServerSideProps["previewData"] + > = ( + context: GetServerSidePropsContext + ) => Promise> } // prettier-ignore @@ -121,13 +153,12 @@ declare module "next/link" { } from "react"; export * from "next/dist/client/link"; - type Query = { query?: { [key: string]: string | string[] | undefined } }; type StaticRoute = Exclude["pathname"]; export interface LinkProps extends Omit, AnchorHTMLAttributes { - href: Route | StaticRoute | Query; + href: Route | StaticRoute | Omit locale?: false; } @@ -155,7 +186,6 @@ declare module "next/router" { type NextTransitionOptions = NonNullable[2]>; type StaticRoute = Exclude["pathname"]; - type Query = { query?: { [key: string]: string | string[] | undefined } }; interface TransitionOptions extends Omit { locale?: false; @@ -177,12 +207,12 @@ declare module "next/router" { locale?: Locale; locales?: undefined; push( - url: Route | StaticRoute | Query, + url: Route | StaticRoute | Omit, as?: string, options?: TransitionOptions ): Promise; replace( - url: Route | StaticRoute | Query, + url: Route | StaticRoute | Omit, as?: string, options?: TransitionOptions ): Promise; diff --git a/package.json b/package.json index 05ab78d4f6..11646d6cc9 100644 --- a/package.json +++ b/package.json @@ -63,6 +63,7 @@ "@opentelemetry/exporter-metrics-otlp-proto": "0.49.1", "@opentelemetry/exporter-trace-otlp-http": "0.49.1", "@opentelemetry/resources": "1.22.0", + "@opentelemetry/sdk-metrics": "^2.0.1", "@opentelemetry/sdk-node": "0.49.1", "@opentelemetry/sdk-trace-node": "1.22.0", "@opentelemetry/semantic-conventions": "1.22.0", @@ -127,6 +128,7 @@ }, "devDependencies": { "@chakra-ui/cli": "3.15.0", + "@designid/tokens": "^0.4.6", "@eslint/compat": "1.2.2", "@eslint/js": "9.14.0", "@next/eslint-plugin-next": "15.0.3", @@ -154,6 +156,7 @@ "@types/ws": "^8.5.3", "@typescript-eslint/eslint-plugin": "^5.60.0", "@vitejs/plugin-react": "^4.0.0", + "bun": "^1.2.17", "css-loader": "^6.7.3", "dotenv-cli": "^6.0.0", "eslint": "9.14.0", @@ -169,6 +172,7 @@ "eslint-plugin-regexp": "2.6.0", "globals": "15.12.0", "husky": "^8.0.0", + "import-in-the-middle": "^1.14.2", "jest": "^29.2.1", "jest-environment-jsdom": "^29.2.1", "jest-fetch-mock": "^3.0.3", diff --git a/pages/_app.tsx b/pages/_app.tsx index 0668bdc527..ae20f4168c 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -29,8 +29,8 @@ import Layout from 'ui/shared/layout/Layout'; import Web3ModalProvider from 'ui/shared/Web3ModalProvider'; import 'lib/setLocale'; -// import 'focus-visible/dist/focus-visible'; import 'nextjs/global.css'; +// import 'focus-visible/dist/focus-visible'; type AppPropsWithLayout = AppProps & { Component: NextPageWithLayout; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000000..367991cdbe --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,22990 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +overrides: + '@types/react': 18.3.12 + '@types/react-dom': 18.3.1 + +importers: + + .: + dependencies: + '@blockscout/bens-types': + specifier: 1.4.1 + version: 1.4.1 + '@blockscout/points-types': + specifier: 1.3.0-alpha.2 + version: 1.3.0-alpha.2 + '@blockscout/stats-types': + specifier: 2.5.0-alpha + version: 2.5.0-alpha + '@blockscout/visualizer-types': + specifier: 0.2.0 + version: 0.2.0 + '@chakra-ui/react': + specifier: 3.15.0 + version: 3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@cloudnouns/kit': + specifier: 1.1.6 + version: 1.1.6 + '@emotion/react': + specifier: 11.14.0 + version: 11.14.0(@types/react@18.3.12)(react@18.3.1) + '@growthbook/growthbook-react': + specifier: 0.21.0 + version: 0.21.0(react@18.3.1) + '@helia/verified-fetch': + specifier: 2.0.1 + version: 2.0.1 + '@hypelab/sdk-react': + specifier: ^1.0.0 + version: 1.0.4(react@18.3.1) + '@metamask/post-message-stream': + specifier: ^7.0.0 + version: 7.0.0 + '@metamask/providers': + specifier: ^10.2.1 + version: 10.2.1 + '@monaco-editor/react': + specifier: ^4.4.6 + version: 4.7.0(monaco-editor@0.34.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@next/bundle-analyzer': + specifier: 15.0.3 + version: 15.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@opentelemetry/api': + specifier: ^1.4.1 + version: 1.9.0 + '@opentelemetry/auto-instrumentations-node': + specifier: 0.43.0 + version: 0.43.0(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-jaeger': + specifier: 1.27.0 + version: 1.27.0(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-metrics-otlp-proto': + specifier: 0.49.1 + version: 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-trace-otlp-http': + specifier: 0.49.1 + version: 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': + specifier: 1.22.0 + version: 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-metrics': + specifier: ^2.0.1 + version: 2.0.1(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-node': + specifier: 0.49.1 + version: 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-node': + specifier: 1.22.0 + version: 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': + specifier: 1.22.0 + version: 1.22.0 + '@reown/appkit': + specifier: 1.7.0 + version: 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-adapter-wagmi': + specifier: 1.7.0 + version: 1.7.0(@types/react@18.3.12)(@wagmi/core@2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(wagmi@2.14.15(@tanstack/query-core@5.55.4)(@tanstack/react-query@5.55.4(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53))(zod@3.25.53) + '@rollbar/react': + specifier: 0.12.1 + version: 0.12.1(prop-types@15.8.1)(react@18.3.1)(rollbar@2.26.4) + '@scure/base': + specifier: 1.1.9 + version: 1.1.9 + '@slise/embed-react': + specifier: ^2.2.0 + version: 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@tanstack/react-query': + specifier: 5.55.4 + version: 5.55.4(react@18.3.1) + '@tanstack/react-query-devtools': + specifier: 5.55.4 + version: 5.55.4(@tanstack/react-query@5.55.4(react@18.3.1))(react@18.3.1) + '@types/papaparse': + specifier: ^5.3.5 + version: 5.3.16 + '@types/react-scroll': + specifier: ^1.8.4 + version: 1.8.10 + '@uidotdev/usehooks': + specifier: 2.4.1 + version: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + airtable: + specifier: ^0.12.2 + version: 0.12.2 + bignumber.js: + specifier: ^9.1.0 + version: 9.3.0 + blo: + specifier: ^1.1.1 + version: 1.2.0 + chakra-react-select: + specifier: ^4.4.3 + version: 4.10.1(@chakra-ui/react@3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + crypto-js: + specifier: ^4.2.0 + version: 4.2.0 + d3: + specifier: ^7.6.1 + version: 7.9.0 + dappscout-iframe: + specifier: 0.2.5 + version: 0.2.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)) + dayjs: + specifier: ^1.11.5 + version: 1.11.13 + dom-to-image: + specifier: ^2.6.0 + version: 2.6.0 + es-toolkit: + specifier: 1.31.0 + version: 1.31.0 + focus-visible: + specifier: ^5.2.0 + version: 5.2.1 + getit-sdk: + specifier: ^1.0.4 + version: 1.0.13(postcss@8.5.4)(react@18.3.1)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + gradient-avatar: + specifier: git+https://github.com/blockscout/gradient-avatar.git + version: https://codeload.github.com/blockscout/gradient-avatar/tar.gz/86810368c2581d2dc3aca089dc648336c8e17045 + graphiql: + specifier: ^2.2.0 + version: 2.4.7(@codemirror/language@6.0.0)(@types/node@20.16.7)(@types/react@18.3.12)(graphql-ws@5.16.2(graphql@16.11.0))(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1) + graphql: + specifier: ^16.8.1 + version: 16.11.0 + graphql-ws: + specifier: ^5.11.3 + version: 5.16.2(graphql@16.11.0) + js-cookie: + specifier: ^3.0.1 + version: 3.0.5 + magic-bytes.js: + specifier: 1.8.0 + version: 1.8.0 + mixpanel-browser: + specifier: ^2.47.0 + version: 2.65.0 + monaco-editor: + specifier: ^0.34.1 + version: 0.34.1 + next: + specifier: 15.2.3 + version: 15.2.3(@babel/core@7.27.4)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next-themes: + specifier: 0.4.4 + version: 0.4.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + nextjs-routes: + specifier: ^1.0.8 + version: 1.0.9(next@15.2.3(@babel/core@7.27.4)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + node-fetch: + specifier: ^3.2.9 + version: 3.3.2 + papaparse: + specifier: ^5.3.2 + version: 5.5.3 + path-to-regexp: + specifier: 8.1.0 + version: 8.1.0 + phoenix: + specifier: ^1.6.15 + version: 1.7.21 + pino-http: + specifier: ^8.2.1 + version: 8.6.1 + pino-pretty: + specifier: ^9.1.1 + version: 9.4.1 + prom-client: + specifier: 15.1.1 + version: 15.1.1 + qrcode: + specifier: ^1.5.1 + version: 1.5.4 + react: + specifier: 18.3.1 + version: 18.3.1 + react-device-detect: + specifier: ^2.2.3 + version: 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-dom: + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) + react-google-recaptcha: + specifier: 3.1.0 + version: 3.1.0(react@18.3.1) + react-hook-form: + specifier: 7.52.1 + version: 7.52.1(react@18.3.1) + react-icons: + specifier: 5.4.0 + version: 5.4.0(react@18.3.1) + react-identicons: + specifier: ^1.2.5 + version: 1.2.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-intersection-observer: + specifier: ^9.5.2 + version: 9.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-jazzicon: + specifier: ^1.0.4 + version: 1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-number-format: + specifier: ^5.3.1 + version: 5.4.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-scroll: + specifier: ^1.8.7 + version: 1.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rollbar: + specifier: 2.26.4 + version: 2.26.4 + swagger-ui-react: + specifier: 5.20.3 + version: 5.20.3(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + use-font-face-observer: + specifier: ^1.2.1 + version: 1.3.0(react@18.3.1) + valibot: + specifier: 0.38.0 + version: 0.38.0(typescript@5.4.2) + viem: + specifier: 2.23.14 + version: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + wagmi: + specifier: 2.14.15 + version: 2.14.15(@tanstack/query-core@5.55.4)(@tanstack/react-query@5.55.4(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53) + xss: + specifier: ^1.0.14 + version: 1.0.15 + devDependencies: + '@chakra-ui/cli': + specifier: 3.15.0 + version: 3.15.0(@chakra-ui/react@3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) + '@designid/tokens': + specifier: ^0.4.6 + version: 0.4.6 + '@eslint/compat': + specifier: 1.2.2 + version: 1.2.2(eslint@9.14.0) + '@eslint/js': + specifier: 9.14.0 + version: 9.14.0 + '@next/eslint-plugin-next': + specifier: 15.0.3 + version: 15.0.3 + '@playwright/experimental-ct-react': + specifier: 1.49.0 + version: 1.49.0(@types/node@20.16.7)(terser@5.41.0)(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0)) + '@playwright/test': + specifier: 1.49.0 + version: 1.49.0 + '@stylistic/eslint-plugin': + specifier: 2.10.1 + version: 2.10.1(eslint@9.14.0)(typescript@5.4.2) + '@svgr/webpack': + specifier: ^6.5.1 + version: 6.5.1 + '@tanstack/eslint-plugin-query': + specifier: 5.60.1 + version: 5.60.1(eslint@9.14.0)(typescript@5.4.2) + '@testing-library/react': + specifier: ^14.0.0 + version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@total-typescript/ts-reset': + specifier: ^0.4.0 + version: 0.4.2 + '@types/crypto-js': + specifier: ^4.1.1 + version: 4.2.2 + '@types/csp-dev': + specifier: ^1.0.0 + version: 1.0.3 + '@types/d3': + specifier: ^7.4.0 + version: 7.4.3 + '@types/dom-to-image': + specifier: ^2.6.4 + version: 2.6.7 + '@types/jest': + specifier: 29.2.1 + version: 29.2.1 + '@types/js-cookie': + specifier: ^3.0.2 + version: 3.0.6 + '@types/mixpanel-browser': + specifier: ^2.38.1 + version: 2.60.0 + '@types/node': + specifier: 20.16.7 + version: 20.16.7 + '@types/phoenix': + specifier: ^1.5.4 + version: 1.6.6 + '@types/qrcode': + specifier: ^1.5.0 + version: 1.5.5 + '@types/react': + specifier: 18.3.12 + version: 18.3.12 + '@types/react-dom': + specifier: 18.3.1 + version: 18.3.1 + '@types/react-google-recaptcha': + specifier: ^2.1.5 + version: 2.1.9 + '@types/swagger-ui-react': + specifier: 5.18.0 + version: 5.18.0 + '@types/ws': + specifier: ^8.5.3 + version: 8.18.1 + '@typescript-eslint/eslint-plugin': + specifier: ^5.60.0 + version: 5.62.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2) + '@vitejs/plugin-react': + specifier: ^4.0.0 + version: 4.5.1(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0)) + css-loader: + specifier: ^6.7.3 + version: 6.11.0(webpack@5.99.9) + dotenv-cli: + specifier: ^6.0.0 + version: 6.0.0 + eslint: + specifier: 9.14.0 + version: 9.14.0 + eslint-config-next: + specifier: 15.0.3 + version: 15.0.3(eslint@9.14.0)(typescript@5.4.2) + eslint-plugin-import: + specifier: 2.31.0 + version: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0) + eslint-plugin-import-helpers: + specifier: 2.0.1 + version: 2.0.1(eslint@9.14.0) + eslint-plugin-jest: + specifier: 28.9.0 + version: 28.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(jest@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)))(typescript@5.4.2) + eslint-plugin-jsx-a11y: + specifier: 6.10.2 + version: 6.10.2(eslint@9.14.0) + eslint-plugin-no-cyrillic-string: + specifier: ^1.0.5 + version: 1.0.5(eslint@9.14.0) + eslint-plugin-playwright: + specifier: 2.0.1 + version: 2.0.1(eslint@9.14.0) + eslint-plugin-react: + specifier: 7.37.2 + version: 7.37.2(eslint@9.14.0) + eslint-plugin-react-hooks: + specifier: 5.0.0 + version: 5.0.0(eslint@9.14.0) + eslint-plugin-regexp: + specifier: 2.6.0 + version: 2.6.0(eslint@9.14.0) + globals: + specifier: 15.12.0 + version: 15.12.0 + husky: + specifier: ^8.0.0 + version: 8.0.3 + import-in-the-middle: + specifier: ^1.14.2 + version: 1.14.2 + jest: + specifier: ^29.2.1 + version: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + jest-environment-jsdom: + specifier: ^29.2.1 + version: 29.7.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + jest-fetch-mock: + specifier: ^3.0.3 + version: 3.0.3 + lint-staged: + specifier: '>=10' + version: 16.1.0 + mockdate: + specifier: ^3.0.5 + version: 3.0.5 + style-loader: + specifier: ^3.3.1 + version: 3.3.4(webpack@5.99.9) + svg-icons-cli: + specifier: ^0.0.5 + version: 0.0.5 + svgo: + specifier: ^2.8.0 + version: 2.8.0 + ts-jest: + specifier: ^29.0.3 + version: 29.3.4(@babel/core@7.27.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.27.4))(jest@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)))(typescript@5.4.2) + ts-node: + specifier: ^10.9.1 + version: 10.9.2(@types/node@20.16.7)(typescript@5.4.2) + typescript: + specifier: 5.4.2 + version: 5.4.2 + typescript-eslint: + specifier: 8.14.0 + version: 8.14.0(eslint@9.14.0)(typescript@5.4.2) + vite-plugin-svgr: + specifier: ^2.2.2 + version: 2.4.0(rollup@4.41.1)(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0)) + vite-tsconfig-paths: + specifier: 4.3.2 + version: 4.3.2(typescript@5.4.2)(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0)) + ws: + specifier: ^8.17.1 + version: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + +packages: + + '@adraffy/ens-normalize@1.11.0': + resolution: {integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==} + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@ark-ui/react@5.4.0': + resolution: {integrity: sha512-TatFGOb6zKx4a363jg3McQY+2/wEcUZgTHZTomueFMR+JgqHR98aAFnCPvi2L5UF+326qXEWHxHIPlQLwFUb1A==} + peerDependencies: + react: '>=18.0.0' + react-dom: '>=18.0.0' + + '@assemblyscript/loader@0.9.4': + resolution: {integrity: sha512-HazVq9zwTVwGmqdwYzu7WyQ6FQVZ7SwET0KKQuKm55jD0IfUpZgN0OPIiZG3zV1iSrVYcN0bdwLRXI/VNCYsUA==} + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.27.5': + resolution: {integrity: sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.27.4': + resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.27.5': + resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.27.3': + resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.27.1': + resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-create-regexp-features-plugin@7.27.1': + resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.6.4': + resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-member-expression-to-functions@7.27.1': + resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.27.3': + resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.27.1': + resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-remap-async-to-generator@7.27.1': + resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-replace-supers@7.27.1': + resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@7.27.1': + resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.27.6': + resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.27.5': + resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1': + resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1': + resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': + resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': + resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1': + resolution: {integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-bigint@7.8.3': + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-properties@7.12.13': + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.27.1': + resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.27.1': + resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.27.1': + resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-object-rest-spread@7.8.3': + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.27.1': + resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6': + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-arrow-functions@7.27.1': + resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-generator-functions@7.27.1': + resolution: {integrity: sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-to-generator@7.27.1': + resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoped-functions@7.27.1': + resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoping@7.27.5': + resolution: {integrity: sha512-JF6uE2s67f0y2RZcm2kpAUEbD50vH62TyWVebxwHAlbSdM49VqPz8t4a1uIjp4NIOIZ4xzLfjY5emt/RCyC7TQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.27.1': + resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-static-block@7.27.1': + resolution: {integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + + '@babel/plugin-transform-classes@7.27.1': + resolution: {integrity: sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-computed-properties@7.27.1': + resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-destructuring@7.27.3': + resolution: {integrity: sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dotall-regex@7.27.1': + resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-keys@7.27.1': + resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-dynamic-import@7.27.1': + resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-exponentiation-operator@7.27.1': + resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-export-namespace-from@7.27.1': + resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-for-of@7.27.1': + resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-function-name@7.27.1': + resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-json-strings@7.27.1': + resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-literals@7.27.1': + resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.27.1': + resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-member-expression-literals@7.27.1': + resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-amd@7.27.1': + resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-commonjs@7.27.1': + resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.27.1': + resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.27.1': + resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1': + resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.27.1': + resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1': + resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.27.1': + resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.27.3': + resolution: {integrity: sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.27.1': + resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.27.1': + resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.27.1': + resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.27.1': + resolution: {integrity: sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.27.1': + resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.27.1': + resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.27.1': + resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-constant-elements@7.27.1': + resolution: {integrity: sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-display-name@7.27.1': + resolution: {integrity: sha512-p9+Vl3yuHPmkirRrg021XiP+EETmPMQTLr6Ayjj85RLNEbb3Eya/4VI0vAdzQG9SEAl2Lnt7fy5lZyMzjYoZQQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.27.1': + resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.27.1': + resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-pure-annotations@7.27.1': + resolution: {integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.27.5': + resolution: {integrity: sha512-uhB8yHerfe3MWnuLAhEbeQ4afVoqv8BQsPqrTv7e/jZ9y00kJL6l9a/f4OWaKxotmjzewfEyXE1vgDJenkQ2/Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regexp-modifiers@7.27.1': + resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-reserved-words@7.27.1': + resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.27.1': + resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.27.1': + resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.27.1': + resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.27.1': + resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.27.1': + resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.27.1': + resolution: {integrity: sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.27.1': + resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.27.1': + resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.27.1': + resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.27.1': + resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/preset-env@7.27.2': + resolution: {integrity: sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-modules@0.1.6-no-external-plugins': + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + + '@babel/preset-react@7.27.1': + resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-typescript@7.27.1': + resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/runtime-corejs3@7.27.6': + resolution: {integrity: sha512-vDVrlmRAY8z9Ul/HxT+8ceAru95LQgkSKiXkSYZvqtbkPSfhZJgpRp45Cldbh1GJ1kxzQkI70AqyrTI58KpaWQ==} + engines: {node: '>=6.9.0'} + + '@babel/runtime@7.27.6': + resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.27.4': + resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.27.6': + resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==} + engines: {node: '>=6.9.0'} + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@blockscout/bens-types@1.4.1': + resolution: {integrity: sha512-TlZ1HVdZ2Cswm/CcvNoxS+Ydiht/YGaLo//PJR/UmkmihlEFoY4HfVJvVcUnOQXi+Si7FwJ486DPii889nTJsQ==} + + '@blockscout/points-types@1.3.0-alpha.2': + resolution: {integrity: sha512-tXCA51q3y08caCm7UhGyj+xsP0pd6yBhjElDHxEzM5SRop3culMiacaBXd0OPBszHjA0YdYgXFymuJhofB22ig==} + + '@blockscout/stats-types@2.5.0-alpha': + resolution: {integrity: sha512-B4IYeNt3pqIIJvcnkLIXm4LNN77VxTV1VYopJ8t6iFPT+JC3BSvRWSpMJMl7nV+WCLywcW27BKmYxdV9rR66bw==} + + '@blockscout/visualizer-types@0.2.0': + resolution: {integrity: sha512-gasqbEL89iH8YnH/TIEk0MBSG9SwhEJegY9tnQ1c/jFZOCYjiVkgNwm4oH0ncwCKoNX1GoKAregbkEUwDDw7FQ==} + + '@bundled-es-modules/deepmerge@4.3.1': + resolution: {integrity: sha512-Rk453EklPUPC3NRWc3VUNI/SSUjdBaFoaQvFRmNBNtMHVtOFD5AntiWg5kEE1hqcPqedYFDzxE3ZcMYPcA195w==} + + '@bundled-es-modules/glob@10.4.2': + resolution: {integrity: sha512-740y5ofkzydsFao5EXJrGilcIL6EFEw/cmPf2uhTw9J6G1YOhiIFjNFCHdpgEiiH5VlU3G0SARSjlFlimRRSMA==} + + '@bundled-es-modules/memfs@4.17.0': + resolution: {integrity: sha512-ykdrkEmQr9BV804yd37ikXfNnvxrwYfY9Z2/EtMHFEFadEjsQXJ1zL9bVZrKNLDtm91UdUOEHso6Aweg93K6xQ==} + + '@chainsafe/is-ip@2.1.0': + resolution: {integrity: sha512-KIjt+6IfysQ4GCv66xihEitBjvhU/bixbbbFxdJ1sqCp4uJ0wuZiYBPhksZoy4lfaF0k9cwNzY5upEW/VWdw3w==} + + '@chainsafe/netmask@2.0.0': + resolution: {integrity: sha512-I3Z+6SWUoaljh3TBzCnCxjlUyN8tA+NAk5L6m9IxvCf1BENQTePzPMis97CoN/iMW1St3WN+AWCCRp+TTBRiDg==} + + '@chakra-ui/cli@3.15.0': + resolution: {integrity: sha512-C3j6+uX4lSqWmAHBorbpDF5QRp7Z/coZ0UyuVY2CsjMo0iWAlFvUI5UPMH4nP2Bm6jp/84Na/khEK3wR4jxkZw==} + hasBin: true + peerDependencies: + '@chakra-ui/react': '>=3.0.0-next.0' + + '@chakra-ui/react@3.15.0': + resolution: {integrity: sha512-U7mR9ru5Vhpat57nP04lenVDtaMzPKfKedhBDkesk5VUbzr5euWygjspa/tTO37ew7t7Q/pyUovXAizoWEzZ1g==} + peerDependencies: + '@emotion/react': '>=11' + react: '>=18' + react-dom: '>=18' + + '@clack/core@0.3.5': + resolution: {integrity: sha512-5cfhQNH+1VQ2xLQlmzXMqUoiaH0lRBq9/CLW9lTyMbuKLC3+xEK01tHVvyut++mLOn5urSHmkm6I0Lg9MaJSTQ==} + + '@clack/core@0.4.1': + resolution: {integrity: sha512-Pxhij4UXg8KSr7rPek6Zowm+5M22rbd2g1nfojHJkxp5YkFqiZ2+YLEM/XGVIzvGOcM0nqjIFxrpDwWRZYWYjA==} + + '@clack/prompts@0.10.0': + resolution: {integrity: sha512-H3rCl6CwW1NdQt9rE3n373t7o5cthPv7yUoxF2ytZvyvlJv89C5RYMJu83Hed8ODgys5vpBU0GKxIRG83jd8NQ==} + + '@clack/prompts@0.7.0': + resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==} + bundledDependencies: + - is-unicode-supported + + '@cloudnouns/kit@1.1.6': + resolution: {integrity: sha512-4Burtt19tpoJ4dpNdE2UjQA3BjbizUzyidgM89JqEo+JO10E/5fvkQUrfNiNUQloyAXys2Iakq4N4p/+/9O+tw==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + '@codemirror/language@6.0.0': + resolution: {integrity: sha512-rtjk5ifyMzOna1c7PBu7J1VCt0PvA5wy3o8eMVnxMKb7z8KA7JFecvD04dSn14vj/bBaAbqRsGed5OjtofEnLA==} + + '@codemirror/state@6.5.2': + resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==} + + '@codemirror/view@6.37.1': + resolution: {integrity: sha512-Qy4CAUwngy/VQkEz0XzMKVRcckQuqLYWKqVpDDDghBe5FSXSqfVrJn49nw3ePZHxRUz4nRmb05Lgi+9csWo4eg==} + + '@coinbase/wallet-sdk@3.9.3': + resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==} + + '@coinbase/wallet-sdk@4.3.0': + resolution: {integrity: sha512-T3+SNmiCw4HzDm4we9wCHCxlP0pqCiwKe4sOwPH3YAK2KSKjxPRydKu6UQJrdONFVLG7ujXvbd/6ZqmvJb8rkw==} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + + '@designid/tokens@0.4.6': + resolution: {integrity: sha512-LbHewsuxzzzP7afP5kcGioz8tnSqnyy6pbyeaWUMu8pyHk/Iuvoh7VfFfWWl8bKNQ4mRcbLskBbawdwQsdzlxg==} + hasBin: true + + '@discoveryjs/json-ext@0.5.7': + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + + '@ecies/ciphers@0.2.3': + resolution: {integrity: sha512-tapn6XhOueMwht3E2UzY0ZZjYokdaw9XtL9kEyjhQ/Fb9vL9xTFbOaI+fV0AWvTpYu4BNloC6getKW6NtSg4mA==} + engines: {bun: '>=1', deno: '>=2', node: '>=16'} + peerDependencies: + '@noble/ciphers': ^1.0.0 + + '@emnapi/core@1.4.3': + resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==} + + '@emnapi/runtime@1.4.3': + resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==} + + '@emnapi/wasi-threads@1.0.2': + resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==} + + '@emotion/babel-plugin@11.13.5': + resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==} + + '@emotion/cache@11.14.0': + resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==} + + '@emotion/hash@0.9.2': + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} + + '@emotion/is-prop-valid@1.3.1': + resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==} + + '@emotion/memoize@0.9.0': + resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} + + '@emotion/react@11.14.0': + resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' + peerDependenciesMeta: + '@types/react': + optional: true + + '@emotion/serialize@1.3.3': + resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==} + + '@emotion/sheet@1.4.0': + resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} + + '@emotion/unitless@0.10.0': + resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} + + '@emotion/use-insertion-effect-with-fallbacks@1.2.0': + resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==} + peerDependencies: + react: '>=16.8.0' + + '@emotion/utils@1.4.2': + resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==} + + '@emotion/weak-memoize@0.4.0': + resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} + + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.25.5': + resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.25.5': + resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.25.5': + resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.25.5': + resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.25.5': + resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.5': + resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.25.5': + resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.5': + resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.25.5': + resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.25.5': + resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.25.5': + resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.25.5': + resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.25.5': + resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.25.5': + resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.5': + resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.25.5': + resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.25.5': + resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.5': + resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.5': + resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.5': + resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.5': + resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.25.5': + resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.25.5': + resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.25.5': + resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.25.5': + resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.7.0': + resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@1.2.2': + resolution: {integrity: sha512-jhgiIrsw+tRfcBQ4BFl2C3vCrIUw2trCY0cnDvGZpwTtKCEDmZhAtMfrEUP/KpnwM6PrO0T+Ltm+ccW74olG3Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^9.10.0 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.18.0': + resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.13.0': + resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.7.0': + resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.14.0': + resolution: {integrity: sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.2.8': + resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@ethereumjs/common@3.2.0': + resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} + + '@ethereumjs/rlp@4.0.1': + resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} + engines: {node: '>=14'} + hasBin: true + + '@ethereumjs/tx@4.2.0': + resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} + engines: {node: '>=14'} + + '@ethereumjs/util@8.1.0': + resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==} + engines: {node: '>=14'} + + '@ethersproject/bignumber@5.8.0': + resolution: {integrity: sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA==} + + '@ethersproject/bytes@5.8.0': + resolution: {integrity: sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A==} + + '@ethersproject/constants@5.8.0': + resolution: {integrity: sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg==} + + '@ethersproject/keccak256@5.8.0': + resolution: {integrity: sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng==} + + '@ethersproject/logger@5.8.0': + resolution: {integrity: sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA==} + + '@ethersproject/sha2@5.8.0': + resolution: {integrity: sha512-dDOUrXr9wF/YFltgTBYS0tKslPEKr6AekjqDW2dbn1L1xmjGR+9GiKu4ajxovnrDbwxAKdHjW8jNcwfz8PAz4A==} + + '@ethersproject/solidity@5.8.0': + resolution: {integrity: sha512-4CxFeCgmIWamOHwYN9d+QWGxye9qQLilpgTU0XhYs1OahkclF+ewO+3V1U0mvpiuQxm5EHHmv8f7ClVII8EHsA==} + + '@ethersproject/strings@5.8.0': + resolution: {integrity: sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg==} + + '@floating-ui/core@1.7.1': + resolution: {integrity: sha512-azI0DrjMMfIug/ExbBaeDVJXcY0a7EPvPjb2xAJPa4HeimBX+Z18HK8QQR3jb6356SnDDdxx+hinMLcJEDdOjw==} + + '@floating-ui/dom@1.6.13': + resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==} + + '@floating-ui/dom@1.7.1': + resolution: {integrity: sha512-cwsmW/zyw5ltYTUeeYJ60CnQuPqmGwuGVhG9w0PRaRKkAyi38BT5CKrpIbb+jtahSwUl04cWzSx9ZOIxeS6RsQ==} + + '@floating-ui/utils@0.2.9': + resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==} + + '@graphiql/react@0.17.6': + resolution: {integrity: sha512-3k1paSRbRwVNxr2U80xnRhkws8tSErWlETJvEQBmqRcWbt0+WmwFJorkLnG1n3Wj0Ho6k4a2BAiTfJ6F4SPrLg==} + peerDependencies: + graphql: ^15.5.0 || ^16.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + '@graphiql/toolkit@0.8.4': + resolution: {integrity: sha512-cFUGqh3Dau+SD3Vq9EFlZrhzYfaHKyOJveFtaCR+U5Cn/S68p7oy+vQBIdwtO6J2J58FncnwBbVRfr+IvVfZqQ==} + peerDependencies: + graphql: ^15.5.0 || ^16.0.0 + graphql-ws: '>= 4.5.0' + peerDependenciesMeta: + graphql-ws: + optional: true + + '@growthbook/growthbook-react@0.21.0': + resolution: {integrity: sha512-LM4jG9xThSYCMfRQECeLtTr8sYyiAxC5NLmT4U3uxKyvVUCB+s0k/vdKrvHcv3YXNJ37mW3VtK9XkNSuW16mcw==} + engines: {node: '>=10'} + peerDependencies: + react: ^16.8.0-0 || ^17.0.0-0 || ^18.0.0-0 + + '@growthbook/growthbook@0.31.0': + resolution: {integrity: sha512-VtI5IibZHhvtrlZhfopGYhVXZ++FewgY0BtQQyEqFSrhCYFvEEtq+GkuSm4GcC0JxNuHiYJr9/R3GpffJV/T4Q==} + engines: {node: '>=10'} + + '@grpc/grpc-js@1.13.4': + resolution: {integrity: sha512-GsFaMXCkMqkKIvwCQjCrwH+GHbPKBjhwo/8ZuUkWHqbI73Kky9I+pQltrlT0+MWpedCoosda53lgjYfyEPgxBg==} + engines: {node: '>=12.10.0'} + + '@grpc/proto-loader@0.7.15': + resolution: {integrity: sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==} + engines: {node: '>=6'} + hasBin: true + + '@hapi/b64@5.0.0': + resolution: {integrity: sha512-ngu0tSEmrezoiIaNGG6rRvKOUkUuDdf4XTPnONHGYfSGRmDqPZX5oJL6HAdKTo1UQHECbdB4OzhWrfgVppjHUw==} + + '@hapi/boom@9.1.4': + resolution: {integrity: sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw==} + + '@hapi/bourne@2.1.0': + resolution: {integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==} + + '@hapi/cryptiles@5.1.0': + resolution: {integrity: sha512-fo9+d1Ba5/FIoMySfMqPBR/7Pa29J2RsiPrl7bkwo5W5o+AN1dAYQRi4SPrPwwVxVGKjgLOEWrsvt1BonJSfLA==} + engines: {node: '>=12.0.0'} + + '@hapi/hoek@11.0.7': + resolution: {integrity: sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ==} + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/iron@6.0.0': + resolution: {integrity: sha512-zvGvWDufiTGpTJPG1Y/McN8UqWBu0k/xs/7l++HVU535NLHXsHhy54cfEMdW7EjwKfbBfM9Xy25FmTiobb7Hvw==} + + '@hapi/podium@4.1.3': + resolution: {integrity: sha512-ljsKGQzLkFqnQxE7qeanvgGj4dejnciErYd30dbrYzUOF/FyS/DOF97qcrT3bhoVwCYmxa6PEMhxfCPlnUcD2g==} + + '@hapi/shot@6.0.1': + resolution: {integrity: sha512-s5ynMKZXYoDd3dqPw5YTvOR/vjHvMTxc388+0qL0jZZP1+uwXuUD32o9DuuuLsmTlyXCWi02BJl1pBpwRuUrNA==} + + '@hapi/teamwork@5.1.1': + resolution: {integrity: sha512-1oPx9AE5TIv+V6Ih54RP9lTZBso3rP8j4Xhb6iSVwPXtAM+sDopl5TFMv5Paw73UnpZJ9gjcrTE1BXrWt9eQrg==} + engines: {node: '>=12.0.0'} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@hapi/topo@6.0.2': + resolution: {integrity: sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==} + + '@hapi/validate@1.1.3': + resolution: {integrity: sha512-/XMR0N0wjw0Twzq2pQOzPBZlDzkekGcoCtzO314BpIEsbXdYGthQUbxgkGDf4nhk1+IPDAsXqWjMohRQYO06UA==} + + '@hapi/validate@2.0.1': + resolution: {integrity: sha512-NZmXRnrSLK8MQ9y/CMqE9WSspgB9xA41/LlYR0k967aSZebWr4yNrpxIbov12ICwKy4APSlWXZga9jN5p6puPA==} + + '@helia/bitswap@2.1.2': + resolution: {integrity: sha512-gleOYd5jJPA0jVkm/LKkfEh+Z/TQNviv4e8pCdPlD3V/Sg6q0htdO/ttlAlMyYGY6187fwsCP+fZkqWNao/h9Q==} + + '@helia/block-brokers@4.2.2': + resolution: {integrity: sha512-2Iq5basphEn8RcRK+wMiSfy5EJWgjI69wKH8CB66dSyaiduV7etP8E69eP5oGv43ShPycel4Xnmb2mNl6WWp5w==} + + '@helia/car@4.1.2': + resolution: {integrity: sha512-qVG7TIqb9vONURbBx6JmIrVldXrOgRja4HdbQCbTAwi5EnnapspEi68aSvi15D0dnRBrghNOsw8xWruJfo8eEQ==} + + '@helia/delegated-routing-v1-http-api-client@4.2.5': + resolution: {integrity: sha512-fFqVhs7a4TnpKQ1cZ4im3tj53v+8UZLFkQo85otl/GpbIVBmBoGbjkDHGPv4UdjJ2lmYM/cRdnHsYbfjuc5pwA==} + + '@helia/http@2.1.2': + resolution: {integrity: sha512-jyVlLxZlPmH4fcdvqrYM7BUpsDGEenuNY6rrlGPny5NvdbbgLxvs8fnNpUe5swOQ8jOM+WCzsv4wQEHrU9AqdQ==} + + '@helia/interface@5.3.2': + resolution: {integrity: sha512-+NOQrBxsz6i0FOsz16OgTlGAcyQ+cSYGzd9VJE7cMMrrGo9IcDEKp5Kvh980Ajg1LJFgeqYyqmxefnPExUUsBg==} + + '@helia/ipns@8.2.3': + resolution: {integrity: sha512-BdoJ7W9kHGpwWrsd8hhStjZJ04Jcl8IrIrQq0LFynleN/TzCf2bTyVrWzvM/dBVzqRCndka7eeLwcPXS5mskWg==} + + '@helia/routers@2.2.0': + resolution: {integrity: sha512-MyPCfWV8KUkg8eguPW/gKJ/fsSRzWzcEjym4vhigy4KxQE7JvmrSL/+NFViqnlv83+77U0E1VWvKbUsQvuNX+w==} + + '@helia/routers@3.1.2': + resolution: {integrity: sha512-Fq5mj7JkeDVHXUak+HJYIK7TGjKGErvWzyjjcOMNrCk0UyWCfLcw3iFwWWfkMOP+e8IN7bgPxXVxxyOir9iL+w==} + + '@helia/unixfs@4.0.3': + resolution: {integrity: sha512-sbcnS64B6LCTHrGH6RPx2BuwLFjmVAoiX53RR/E0YCQMcHTDCF4bQ3I7P+7kzYkQLQkbLEekl7V2fnVOWxG7MA==} + + '@helia/utils@1.3.2': + resolution: {integrity: sha512-epMlRqLyJ95NDem4jc6kNRUlWkW5+HOwxvgJzOn70mMdXFkyYIOx24BpZurCFi+Cg6/k9vSfKsU5V1teWxYfRQ==} + + '@helia/verified-fetch@2.0.1': + resolution: {integrity: sha512-co9CR6vbFWFM9yQ3OB+r0t9SW1bxdCc8uB8myV+vIn1ch0BtzXA40FRHOOyjgDheITFaPttP8/3hI6MH2VrdvA==} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@hypelab/sdk-react@1.0.4': + resolution: {integrity: sha512-avv6mNBrRURrh6MNomtgpDXrfc1THEX1byoIH79GYp/NXy/8sE51JDMp08it6ZHCFVag9Rih87Y9C973NAj0eg==} + peerDependencies: + react: '*' + + '@img/sharp-darwin-arm64@0.33.5': + resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.33.5': + resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.0.4': + resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.0.4': + resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.0.4': + resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.0.5': + resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.0.4': + resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.0.4': + resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.33.5': + resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.33.5': + resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.33.5': + resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.33.5': + resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.33.5': + resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.33.5': + resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.33.5': + resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-ia32@0.33.5': + resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.33.5': + resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@internationalized/date@3.7.0': + resolution: {integrity: sha512-VJ5WS3fcVx0bejE/YHfbDKR/yawZgKqn/if+oEeLqNwBtPzVB06olkfcnojTmEMX+gTpH+FlQ69SHNitJ8/erQ==} + + '@internationalized/number@3.6.0': + resolution: {integrity: sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==} + + '@ipld/car@5.4.2': + resolution: {integrity: sha512-gfyrJvePyXnh2Fbj8mPg4JYvEZ3izhk8C9WgAle7xIYbrJNSXmNQ6BxAls8Gof97vvGbCROdxbTWRmHJtTCbcg==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + '@ipld/dag-cbor@9.2.4': + resolution: {integrity: sha512-GbDWYl2fdJgkYtIJN0HY9oO0o50d1nB4EQb7uYWKUd2ztxCjxiEW3PjwGG0nqUpN1G4Cug6LX8NzbA7fKT+zfA==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + '@ipld/dag-json@10.2.5': + resolution: {integrity: sha512-Q4Fr3IBDEN8gkpgNefynJ4U/ZO5Kwr7WSUMBDbZx0c37t0+IwQCTM9yJh8l5L4SRFjm31MuHwniZ/kM+P7GQ3Q==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + '@ipld/dag-pb@4.1.5': + resolution: {integrity: sha512-w4PZ2yPqvNmlAir7/2hsCRMqny1EY5jj26iZcSgxREJexmbAc2FI21jp26MqiNdfgAxvkCnf2N/TJI18GaDNwA==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@js-sdsl/ordered-map@4.4.2': + resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==} + + '@jsonjoy.com/base64@1.1.2': + resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/json-pack@1.2.0': + resolution: {integrity: sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@jsonjoy.com/util@1.6.0': + resolution: {integrity: sha512-sw/RMbehRhN68WRtcKCpQOPfnH6lLP4GJfqzi3iYej8tnzpZUDr6UkZYJjcjjC0FWEJOJbyM3PTIwxucUmDG2A==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@lezer/common@1.2.3': + resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==} + + '@lezer/highlight@1.2.1': + resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==} + + '@lezer/lr@1.4.2': + resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==} + + '@libp2p/crypto@5.1.5': + resolution: {integrity: sha512-YmKMCnT/1cIz/SRTJ6ftPsbFBct8vmHfbaaq52tiL66atQOlZIlthwKT27Z6QnMihYTztzQsrj8TUg7JTP8h7w==} + + '@libp2p/interface-internal@2.3.15': + resolution: {integrity: sha512-IF8pZHfIZX6ZZINkoimRyKOrEqCkiIdCksuV83CQo2/ayOpJwZiAqHc5z4PYw3+/hKnQyHGAlzEkj5We2TI31w==} + + '@libp2p/interface@2.10.3': + resolution: {integrity: sha512-ybZvjZflsDngbU7hn2TpQ7N3GHxg1z+8sPAOJEoNBoxjQou6JbqrGJFnrrltDM0v8nwgy4ER7M7c/O4UiYp6IA==} + + '@libp2p/kad-dht@14.2.15': + resolution: {integrity: sha512-iARZsaKrm9LlOE0nRTsqMasYGfWbh+zw1TAMWOY/QHTszFGb9ol7FZoI9WUzoif9ltKLu3BjJpy00b8CVofCBw==} + + '@libp2p/kad-dht@15.1.3': + resolution: {integrity: sha512-kXrhN5hsmWrfwROIWH0zf0GKnzdEUHX6+yJQQgXKpoBR8akSgWepHFXUGx4E2j70WbVOuP6IGwDI094OeGjC8Q==} + + '@libp2p/logger@5.1.19': + resolution: {integrity: sha512-qDm8RoFJgCm+Pl+krOi2Ti38+jpI0n33CVGyK5BPZx2Mhey7cTBPqNmXNGI8gmv0ccQzP+lZ9eSkEsKFSSFJkw==} + + '@libp2p/peer-collections@6.0.31': + resolution: {integrity: sha512-xm9BuNPOMtUXWTKoEyoABFg9KiHnzJAZSZoFnhubkPO03/mLbjG2ERziyq08YDKTVnf7dXHHijUatxkUkh0RIg==} + + '@libp2p/peer-id@5.1.6': + resolution: {integrity: sha512-eeRekc3FokZPijkLa0conZJJZHbI4JkFjYp4p20XSYwz3YhFp30VURzwdXHzNr9y+rYEyYWrw3X7YLaj0taINg==} + + '@libp2p/ping@2.0.33': + resolution: {integrity: sha512-kNhssk/6aUgkX21e1SH7qQToF6ztMM8WU/K7Jt0HGaPCjql1zIWPo9vREcTMAMlZW3B0MHfTiItcdsIhRsIkvA==} + + '@libp2p/record@4.0.7': + resolution: {integrity: sha512-9JFfOytFS730Z79azWi3Ozlb7IufpwbjC/frAv1yZUCLPp7flT9HNsNB+JQwi+V7z68MaNUYeAFE86VQaq2ccA==} + + '@libp2p/utils@6.6.6': + resolution: {integrity: sha512-66ppSKa/300gZX5TJtqeUa/rkKat1kgNAOb4flFj8WpY+oZwlqpfWFtQ/sjp0w5tlNeWpK2puWg3b3dzOIfSDg==} + + '@lit-labs/ssr-dom-shim@1.3.0': + resolution: {integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ==} + + '@lit/reactive-element@1.6.3': + resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==} + + '@lit/reactive-element@2.1.0': + resolution: {integrity: sha512-L2qyoZSQClcBmq0qajBVbhYEcG6iK0XfLn66ifLe/RfC0/ihpc+pl0Wdn8bJ8o+hj38cG0fGXRgSS20MuXn7qA==} + + '@marijn/find-cluster-break@1.0.2': + resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==} + + '@metamask/eth-json-rpc-provider@1.0.1': + resolution: {integrity: sha512-whiUMPlAOrVGmX8aKYVPvlKyG4CpQXiNNyt74vE1xb5sPvmx5oA7B/kOi/JdBvhGQq97U1/AVdXEdk2zkP8qyA==} + engines: {node: '>=14.0.0'} + + '@metamask/json-rpc-engine@7.3.3': + resolution: {integrity: sha512-dwZPq8wx9yV3IX2caLi9q9xZBw2XeIoYqdyihDDDpuHVCEiqadJLwqM3zy+uwf6F1QYQ65A8aOMQg1Uw7LMLNg==} + engines: {node: '>=16.0.0'} + + '@metamask/json-rpc-engine@8.0.2': + resolution: {integrity: sha512-IoQPmql8q7ABLruW7i4EYVHWUbF74yrp63bRuXV5Zf9BQwcn5H9Ww1eLtROYvI1bUXwOiHZ6qT5CWTrDc/t/AA==} + engines: {node: '>=16.0.0'} + + '@metamask/json-rpc-middleware-stream@7.0.2': + resolution: {integrity: sha512-yUdzsJK04Ev98Ck4D7lmRNQ8FPioXYhEUZOMS01LXW8qTvPGiRVXmVltj2p4wrLkh0vW7u6nv0mNl5xzC5Qmfg==} + engines: {node: '>=16.0.0'} + + '@metamask/object-multiplex@1.3.0': + resolution: {integrity: sha512-czcQeVYdSNtabd+NcYQnrM69MciiJyd1qvKH8WM2Id3C0ZiUUX5Xa/MK+/VUk633DBhVOwdNzAKIQ33lGyA+eQ==} + engines: {node: '>=12.0.0'} + + '@metamask/object-multiplex@2.1.0': + resolution: {integrity: sha512-4vKIiv0DQxljcXwfpnbsXcfa5glMj5Zg9mqn4xpIWqkv6uJ2ma5/GtUfLFSxhlxnR8asRMv8dDmWya1Tc1sDFA==} + engines: {node: ^16.20 || ^18.16 || >=20} + + '@metamask/onboarding@1.0.1': + resolution: {integrity: sha512-FqHhAsCI+Vacx2qa5mAFcWNSrTcVGMNjzxVgaX8ECSny/BJ9/vgXP9V7WF/8vb9DltPeQkxr+Fnfmm6GHfmdTQ==} + + '@metamask/post-message-stream@7.0.0': + resolution: {integrity: sha512-+dTUNtuNY9o4ooPiXEOqSkqQWQ9APkVx3dAkBvAsJLetAGXvmoBeIMN1DL2QU+9BTbQ9JyJ6NycQnhvwRRc1HQ==} + engines: {node: '>=14.0.0'} + + '@metamask/providers@10.2.1': + resolution: {integrity: sha512-p2TXw2a1Nb8czntDGfeIYQnk4LLVbd5vlcb3GY//lylYlKdSqp+uUTegCvxiFblRDOT68jsY8Ib1VEEzVUOolA==} + engines: {node: '>=14.0.0'} + + '@metamask/providers@16.1.0': + resolution: {integrity: sha512-znVCvux30+3SaUwcUGaSf+pUckzT5ukPRpcBmy+muBLC0yaWnBcvDqGfcsw6CBIenUdFrVoAFa8B6jsuCY/a+g==} + engines: {node: ^18.18 || >=20} + + '@metamask/rpc-errors@6.4.0': + resolution: {integrity: sha512-1ugFO1UoirU2esS3juZanS/Fo8C8XYocCuBpfZI5N7ECtoG+zu0wF+uWZASik6CkO6w9n/Iebt4iI4pT0vptpg==} + engines: {node: '>=16.0.0'} + + '@metamask/safe-event-emitter@2.0.0': + resolution: {integrity: sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q==} + + '@metamask/safe-event-emitter@3.1.2': + resolution: {integrity: sha512-5yb2gMI1BDm0JybZezeoX/3XhPDOtTbcFvpTXM9kxsoZjPZFh4XciqRbpD6N86HYZqWDhEaKUDuOyR0sQHEjMA==} + engines: {node: '>=12.0.0'} + + '@metamask/sdk-communication-layer@0.32.0': + resolution: {integrity: sha512-dmj/KFjMi1fsdZGIOtbhxdg3amxhKL/A5BqSU4uh/SyDKPub/OT+x5pX8bGjpTL1WPWY/Q0OIlvFyX3VWnT06Q==} + peerDependencies: + cross-fetch: ^4.0.0 + eciesjs: '*' + eventemitter2: ^6.4.9 + readable-stream: ^3.6.2 + socket.io-client: ^4.5.1 + + '@metamask/sdk-install-modal-web@0.32.0': + resolution: {integrity: sha512-TFoktj0JgfWnQaL3yFkApqNwcaqJ+dw4xcnrJueMP3aXkSNev2Ido+WVNOg4IIMxnmOrfAC9t0UJ0u/dC9MjOQ==} + + '@metamask/sdk@0.32.0': + resolution: {integrity: sha512-WmGAlP1oBuD9hk4CsdlG1WJFuPtYJY+dnTHJMeCyohTWD2GgkcLMUUuvu9lO1/NVzuOoSi1OrnjbuY1O/1NZ1g==} + + '@metamask/superstruct@3.2.1': + resolution: {integrity: sha512-fLgJnDOXFmuVlB38rUN5SmU7hAFQcCjrg3Vrxz67KTY7YHFnSNEKvX4avmEBdOI0yTCxZjwMCFEqsC8k2+Wd3g==} + engines: {node: '>=16.0.0'} + + '@metamask/utils@5.0.2': + resolution: {integrity: sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==} + engines: {node: '>=14.0.0'} + + '@metamask/utils@8.5.0': + resolution: {integrity: sha512-I6bkduevXb72TIM9q2LRO63JSsF9EXduh3sBr9oybNX2hNNpr/j1tEjXrsG0Uabm4MJ1xkGAQEMwifvKZIkyxQ==} + engines: {node: '>=16.0.0'} + + '@metamask/utils@9.3.0': + resolution: {integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g==} + engines: {node: '>=16.0.0'} + + '@monaco-editor/loader@1.5.0': + resolution: {integrity: sha512-hKoGSM+7aAc7eRTRjpqAZucPmoNOC4UUbknb/VNoTkEIkCPhqV8LfbsgM1webRM7S/z21eHEx9Fkwx8Z/C/+Xw==} + + '@monaco-editor/react@4.7.0': + resolution: {integrity: sha512-cyzXQCtO47ydzxpQtCGSQGOC8Gk3ZUeBXFAxD+CWXYFo5OqZyZUonFl0DwUlTyAfRHntBfw2p3w4s9R6oe1eCA==} + peerDependencies: + monaco-editor: '>= 0.25.0 < 1' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@motionone/animation@10.18.0': + resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==} + + '@motionone/dom@10.18.0': + resolution: {integrity: sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==} + + '@motionone/easing@10.18.0': + resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==} + + '@motionone/generators@10.18.0': + resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==} + + '@motionone/svelte@10.16.4': + resolution: {integrity: sha512-zRVqk20lD1xqe+yEDZhMYgftsuHc25+9JSo+r0a0OWUJFocjSV9D/+UGhX4xgJsuwB9acPzXLr20w40VnY2PQA==} + + '@motionone/types@10.17.1': + resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==} + + '@motionone/utils@10.18.0': + resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==} + + '@motionone/vue@10.16.4': + resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==} + deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion + + '@multiformats/dns@1.0.6': + resolution: {integrity: sha512-nt/5UqjMPtyvkG9BQYdJ4GfLK3nMqGpFZOzf4hAmIa0sJh2LlS9YKXZ4FgwBDsaHvzZqR/rUFIywIc7pkHNNuw==} + + '@multiformats/multiaddr-matcher@1.7.2': + resolution: {integrity: sha512-BJzHOBAAxGZKw+FY/MzeIKGKERAW/1XOrpj61wgzZVvR/iksyGTQhliyTgmuakpBJPSsCxlrk3eLemVhZuJIFQ==} + + '@multiformats/multiaddr-to-uri@11.0.0': + resolution: {integrity: sha512-9RNmlIGwZbBLsHekT50dbt4o4u8Iciw9kGjv+WHiGxQdsJ6xKKjU1+C0Vbas6RilMbaVOAOnEyfNcXbUmTkLxQ==} + + '@multiformats/multiaddr@12.4.1': + resolution: {integrity: sha512-4r2YTHHvXNGmD+fgLcJZyxFOSc9Vt/4STjiEOIMDrX3uv1MMeNX5GMaVQdekZGjFQYBg+4RzUid7+WIupYC6yw==} + + '@multiformats/murmur3@2.1.8': + resolution: {integrity: sha512-6vId1C46ra3R1sbJUOFCZnsUIveR9oF20yhPmAFxPm0JfrX3/ZRCgP3YDrBzlGoEppOXnA9czHeYc0T9mB6hbA==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + '@multiformats/uri-to-multiaddr@8.1.0': + resolution: {integrity: sha512-NHFqdKEwJ0A6JDXzC645Lgyw72zWhbM1QfaaD00ZYRrNvtx64p1bD9aIrWZIhLWZN87/lsV4QkJSNRF3Fd3ryw==} + + '@multiformats/uri-to-multiaddr@9.0.1': + resolution: {integrity: sha512-xH2nIA98EGNfrjt4A3wiT9xw8bg7HkrRhSIUTb8am9flxweu6ObUZSAhSmaRMBWL1UnlBMPDiGNYGxVlhmygBQ==} + + '@n1ru4l/push-pull-async-iterable-iterator@3.2.0': + resolution: {integrity: sha512-3fkKj25kEjsfObL6IlKPAlHYPq/oYwUkkQ03zsTTiDjD7vg/RxjdiLeCydqtxHZP0JgsXL3D/X5oAkMGzuUp/Q==} + engines: {node: '>=12'} + + '@napi-rs/wasm-runtime@0.2.10': + resolution: {integrity: sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ==} + + '@next/bundle-analyzer@15.0.3': + resolution: {integrity: sha512-x7ZNvpoQPO0C5ZG//qVp21Qs3v6+C8LBJmdu9DKj4/NmjlnwoQ7dqRZ/nKZcwVhkFT7BHf+Qd5FaeHq9IDJvDQ==} + + '@next/env@15.2.3': + resolution: {integrity: sha512-a26KnbW9DFEUsSxAxKBORR/uD9THoYoKbkpFywMN/AFvboTt94b8+g/07T8J6ACsdLag8/PDU60ov4rPxRAixw==} + + '@next/eslint-plugin-next@15.0.3': + resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==} + + '@next/swc-darwin-arm64@15.2.3': + resolution: {integrity: sha512-uaBhA8aLbXLqwjnsHSkxs353WrRgQgiFjduDpc7YXEU0B54IKx3vU+cxQlYwPCyC8uYEEX7THhtQQsfHnvv8dw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@15.2.3': + resolution: {integrity: sha512-pVwKvJ4Zk7h+4hwhqOUuMx7Ib02u3gDX3HXPKIShBi9JlYllI0nU6TWLbPT94dt7FSi6mSBhfc2JrHViwqbOdw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@15.2.3': + resolution: {integrity: sha512-50ibWdn2RuFFkOEUmo9NCcQbbV9ViQOrUfG48zHBCONciHjaUKtHcYFiCwBVuzD08fzvzkWuuZkd4AqbvKO7UQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@15.2.3': + resolution: {integrity: sha512-2gAPA7P652D3HzR4cLyAuVYwYqjG0mt/3pHSWTCyKZq/N/dJcUAEoNQMyUmwTZWCJRKofB+JPuDVP2aD8w2J6Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-x64-gnu@15.2.3': + resolution: {integrity: sha512-ODSKvrdMgAJOVU4qElflYy1KSZRM3M45JVbeZu42TINCMG3anp7YCBn80RkISV6bhzKwcUqLBAmOiWkaGtBA9w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@15.2.3': + resolution: {integrity: sha512-ZR9kLwCWrlYxwEoytqPi1jhPd1TlsSJWAc+H/CJHmHkf2nD92MQpSRIURR1iNgA/kuFSdxB8xIPt4p/T78kwsg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-win32-arm64-msvc@15.2.3': + resolution: {integrity: sha512-+G2FrDcfm2YDbhDiObDU/qPriWeiz/9cRR0yMWJeTLGGX6/x8oryO3tt7HhodA1vZ8r2ddJPCjtLcpaVl7TE2Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-x64-msvc@15.2.3': + resolution: {integrity: sha512-gHYS9tc+G2W0ZC8rBL+H6RdtXIyk40uLiaos0yj5US85FNhbFEndMA2nW3z47nzOWiSvXTZ5kBClc3rD0zJg0w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@noble/ciphers@1.2.1': + resolution: {integrity: sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==} + engines: {node: ^14.21.3 || >=16} + + '@noble/ciphers@1.3.0': + resolution: {integrity: sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.4.2': + resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} + + '@noble/curves@1.8.0': + resolution: {integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.8.1': + resolution: {integrity: sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.9.1': + resolution: {integrity: sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==} + engines: {node: ^14.21.3 || >=16} + + '@noble/curves@1.9.2': + resolution: {integrity: sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g==} + engines: {node: ^14.21.3 || >=16} + + '@noble/hashes@1.4.0': + resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + engines: {node: '>= 16'} + + '@noble/hashes@1.7.0': + resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==} + engines: {node: ^14.21.3 || >=16} + + '@noble/hashes@1.7.1': + resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==} + engines: {node: ^14.21.3 || >=16} + + '@noble/hashes@1.8.0': + resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} + engines: {node: ^14.21.3 || >=16} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@nolyfill/is-core-module@1.0.39': + resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} + engines: {node: '>=12.4.0'} + + '@opentelemetry/api-logs@0.49.1': + resolution: {integrity: sha512-kaNl/T7WzyMUQHQlVq7q0oV4Kev6+0xFwqzofryC66jgGMacd0QH5TwfpbUwSTby+SdAdprAe5UKMvBw4tKS5Q==} + engines: {node: '>=14'} + + '@opentelemetry/api@1.9.0': + resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} + engines: {node: '>=8.0.0'} + + '@opentelemetry/auto-instrumentations-node@0.43.0': + resolution: {integrity: sha512-2WvHUSi/QVeVG8ObPD0Ls6WevfIbQjspxIQRuHaQFWXhmEwy/MsEcoQUjbNKXwO5516aS04GTydKEoRKsMwhdA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.4.1 + + '@opentelemetry/context-async-hooks@1.22.0': + resolution: {integrity: sha512-Nfdxyg8YtWqVWkyrCukkundAjPhUXi93JtVQmqDT1mZRVKqA7e2r7eJCrI+F651XUBMp0hsOJSGiFk3QSpaIJw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.9.0' + + '@opentelemetry/core@1.22.0': + resolution: {integrity: sha512-0VoAlT6x+Xzik1v9goJ3pZ2ppi6+xd3aUfg4brfrLkDBHRIVjMP0eBHrKrhB+NKcDyMAg8fAbGL3Npg/F6AwWA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.9.0' + + '@opentelemetry/core@1.27.0': + resolution: {integrity: sha512-yQPKnK5e+76XuiqUH/gKyS8wv/7qITd5ln56QkBTf3uggr0VkXOXfcaAuG330UfdYu83wsyoBwqwxigpIG+Jkg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/core@1.30.1': + resolution: {integrity: sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/core@2.0.1': + resolution: {integrity: sha512-MaZk9SJIDgo1peKevlbhP6+IwIiNPNmswNL4AF0WaQJLbHXjr9SrZMgS12+iqr9ToV4ZVosCcc0f8Rg67LXjxw==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/exporter-jaeger@1.27.0': + resolution: {integrity: sha512-ULWBtyNQDQQBWTkoCPfpGZTXZ9gLOFHeLZ3BoeZAkxYOgqqTH83IDRbtH8sHt6j84OPQfAcd18uHOb/lc9q0Bw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/exporter-metrics-otlp-http@0.49.1': + resolution: {integrity: sha512-t/sWYqfcwn81SvYHIyYJDlJD2CjFz3/h2t4j+XCtdoHAfu+WVJQmwLsGYJPlCDp3UXQfFpMJMWvLlvtD2SL+rg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/exporter-metrics-otlp-proto@0.49.1': + resolution: {integrity: sha512-xKI6aCRY+STxbF7PA+6YNNYWFf6IS065rZZeqlqvqQsp0HaFUqpPEzMJn0OmQMGuy40o7wWtmZ9/bSu4jlhfYw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/exporter-trace-otlp-grpc@0.49.1': + resolution: {integrity: sha512-Zbd7f3zF7fI2587MVhBizaW21cO/SordyrZGtMtvhoxU6n4Qb02Gx71X4+PzXH620e0+JX+Pcr9bYb1HTeVyJA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/exporter-trace-otlp-http@0.49.1': + resolution: {integrity: sha512-KOLtZfZvIrpGZLVvblKsiVQT7gQUZNKcUUH24Zz6Xbi7LJb9Vt6xtUZFYdR5IIjvt47PIqBKDWUQlU0o1wAsRw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/exporter-trace-otlp-proto@0.49.1': + resolution: {integrity: sha512-n8ON/c9pdMyYAfSFWKkgsPwjYoxnki+6Olzo+klKfW7KqLWoyEkryNkbcMIYnGGNXwdkMIrjoaP0VxXB26Oxcg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/exporter-zipkin@1.22.0': + resolution: {integrity: sha512-XcFs6rGvcTz0qW5uY7JZDYD0yNEXdekXAb6sFtnZgY/cHY6BQ09HMzOjv9SX+iaXplRDcHr1Gta7VQKM1XXM6g==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/instrumentation-amqplib@0.35.0': + resolution: {integrity: sha512-rb3hIWA7f0HXpXpfElnGC6CukRxy58/OJ6XYlTzpZJtNJPao7BuobZjkQEscaRYhUzgi7X7R1aKkIUOTV5JFrg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-aws-lambda@0.39.0': + resolution: {integrity: sha512-D+oG/hIBDdwCNq7Y6BEuddjcwDVD0C8NhBE7A85mRZ9RLG0bKoWrhIdVvbpqEoa0U5AWe9Y98RX4itNg7WTy4w==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-aws-sdk@0.39.1': + resolution: {integrity: sha512-QnvIMVpzRYqQHSXydGUksbhBjPbMyHSUBwi6ocN7gEXoI711+tIY3R1cfRutl0u3M67A/fAvPI3IgACfJaFORg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-bunyan@0.36.0': + resolution: {integrity: sha512-sHD5BSiqSrgWow7VmugEFzV8vGdsz5m+w1v9tK6YwRzuAD7vbo57chluq+UBzIqStoCH+0yOzRzSALH7hrfffg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-cassandra-driver@0.36.0': + resolution: {integrity: sha512-gMfxzryOIP/mvSLXBJp/QxSr2NvS+cC1dkIXn+aSOzYoU1U3apeF3nAyuikmY9dRCQDV7wHPslqbi+pCmd4pAQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-connect@0.34.0': + resolution: {integrity: sha512-PJO99nfyUp3JSoBMhwZsOQDm/XKfkb/QQ8YTsNX4ZJ28phoRcNLqe36mqIMp80DKmKAX4xkxCAyrSYtW8QqZxA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-cucumber@0.4.0': + resolution: {integrity: sha512-n53QvozzgMS9imEclow2nBYJ/jtZlZqiKIqDUi2/g0nDi08F555JhDS03d/Z+4NJxbu7bDLAg12giCV9KZN/Jw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/instrumentation-dataloader@0.7.0': + resolution: {integrity: sha512-sIaevxATJV5YaZzBTTcTaDEnI+/1vxYs+lVk1honnvrEAaP0FA9C/cFrQEN0kP2BDHkHRE/t6y5lGUqusi/h3A==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-dns@0.34.0': + resolution: {integrity: sha512-3tmXdvrzHQ7S3v82Cm36PTYLtgg2+hVm00K1xB3uzP08GEo9w/F8DW4me9z6rDroVGiLIg621RZ6dzjBcmmFCg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-express@0.36.1': + resolution: {integrity: sha512-ltIE4kIMa+83QjW/p7oe7XCESF29w3FQ9/T1VgShdX7fzm56K2a0xfEX1vF8lnHRGERYxIWX9D086C6gJOjVGA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-fastify@0.34.0': + resolution: {integrity: sha512-2Qu66XBkfJ8tr6H+RHBTyw/EX73N9U7pvNa49aonDnT9/mK58k7AKOscpRnKXOvHqc2YIdEPRcBIWxhksPFZVA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-fs@0.10.0': + resolution: {integrity: sha512-XtMoNINVsIQTQHjtxe7A0Lng96wxA5DSD5CYVVvpquG6HJRdZ4xNe9DTU03YtoEFqlN9qTfvGb/6ILzhKhiG8g==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-generic-pool@0.34.0': + resolution: {integrity: sha512-jdI7tfVVwZJuTu4j2kAvJtx4wlEQKIXSZnZG4RdqRHc56KqQQDuVTBLvUgmDXvnSVclH9ayf4oaAV08R9fICtw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-graphql@0.38.1': + resolution: {integrity: sha512-mSt4ztn3EVlLtZJ+tDEqq5GUEYdY8cbTT9SeVJFmXSfdSQkPZn0ovo/dRe6dUcplM60gg4w+llw8SZuQN0iZfQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-grpc@0.49.1': + resolution: {integrity: sha512-f8mQjFi5/PiP4SK3VDU1/3sUUgs6exMtBgcnNycgCKgN40htiPT+MuDRwdRnRMNI/4vNQ7p1/5r4Q5oN0GuRBw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-hapi@0.35.0': + resolution: {integrity: sha512-j7q99aTLHfjNKW94qJnEaDatgz+q2psTKs7lxZO4QHRnoDltDk39a44/+AkI1qBJNw5xyLjrApqkglfbWJ2abg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-http@0.49.1': + resolution: {integrity: sha512-Yib5zrW2s0V8wTeUK/B3ZtpyP4ldgXj9L3Ws/axXrW1dW0/mEFKifK50MxMQK9g5NNJQS9dWH7rvcEGZdWdQDA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-ioredis@0.38.0': + resolution: {integrity: sha512-c9nQFhRjFAtpInTks7z5v9CiOCiR8U9GbIhIv0TLEJ/r0wqdKNLfLZzCrr9XQ9WasxeOmziLlPFhpRBAd9Q4oA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-knex@0.34.0': + resolution: {integrity: sha512-6kZOEvNJOylTQunU5zSSi4iTuCkwIL9nwFnZg7719p61u3d6Qj3X4xi9su46VE3M0dH7vEoxUW+nb/0ilm+aZg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-koa@0.38.0': + resolution: {integrity: sha512-lQujF4I3wdcrOF14miCV2pC72H+OJKb2LrrmTvTDAhELQDN/95v0doWgT9aHybUGkaAeB3QG4d09sved548TlA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-lru-memoizer@0.35.0': + resolution: {integrity: sha512-wCXe+iCF7JweMgY3blLM2Y1G0GSwLEeSA61z/y1UwzvBLEEXt7vL6qOl2mkNcUL9ZbLDS+EABatBH+vFO6DV5Q==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-memcached@0.34.0': + resolution: {integrity: sha512-RleFfaag3Evg4pTzHwDBwo1KiFgnCtiT4V6MQRRHadytNGdpcL+Ynz32ydDdiOXeadt7xpRI7HSvBy0quGTXSw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mongodb@0.41.0': + resolution: {integrity: sha512-DlSH0oyEuTW5gprCUppb0Qe3pK3cpUUFW5eTmayWNyICI1LFunwtcrULTNv6UiThD/V5ykAf/GGGEa7KFAmkog==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mongoose@0.36.0': + resolution: {integrity: sha512-UelQ8dLQRLTdck3tPJdZ17b+Hk9usLf1cY2ou5THAaZpulUdpg62Q9Hx2RHRU71Rp2/YMDk25og7GJhuWScfEA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mysql2@0.36.0': + resolution: {integrity: sha512-F63lKcl/R+if2j5Vz66c2/SLXQEtLlFkWTmYb8NQSgmcCaEKjML4RRRjZISIT4IBwdpanJ2qmNuXVM6MYqhBXw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mysql@0.36.0': + resolution: {integrity: sha512-2mt/032SLkiuddzMrq3YwM0bHksXRep69EzGRnBfF+bCbwYvKLpqmSFqJZ9T3yY/mBWj+tvdvc1+klXGrh2QnQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-nestjs-core@0.35.0': + resolution: {integrity: sha512-INKA7CIOteTSRVxP7SQaFby11AYU3uezI93xDaDRGY4TloXNVoyw5n6UmcVJU4yDn6xY2r7zZ2SVHvblUc21/g==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-net@0.34.0': + resolution: {integrity: sha512-gjybNOQQqbXmD1qVHNO2qBJI4V6p3QQ7xKg3pnC/x7wRdxn+siLQj7QIVxW85C3mymngoJJdRs6BwI3qPUfsPQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-pg@0.39.1': + resolution: {integrity: sha512-pX5ujDOyGpPcrZlzaD3LJzmyaSMMMKAP+ffTHJp9vasvZJr+LifCk53TMPVUafcXKV/xX/IIkvADO+67M1Z25g==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-pino@0.36.0': + resolution: {integrity: sha512-oEz+BJEYRBMAUu7MVJFJhhlsBuwLaUGjbJciKZRIeGX+fUtgcbQGV+a2Ris9jR3yFzWZrYg0aNBSCbGqvPCtMQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-redis-4@0.37.0': + resolution: {integrity: sha512-WNO+HALvPPvjbh7UEEIuay0Z0d2mIfSCkBZbPRwZttDGX6LYGc2WnRgJh3TnYqjp7/y9IryWIbajAFIebj1OBA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-redis@0.37.0': + resolution: {integrity: sha512-9G0T74kheu37k+UvyBnAcieB5iowxska3z2rhUcSTL8Cl0y/CvMn7sZ7txkUbXt0rdX6qeEUdMLmbsY2fPUM7Q==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-restify@0.36.0': + resolution: {integrity: sha512-QbOh8HpnnRn4xxFXX77Gdww6M78yx7dRiIKR6+H3j5LH5u6sYckTXw3TGPSsXsaM4DQHy0fOw15sAcJoWkC+aQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-router@0.35.0': + resolution: {integrity: sha512-MdxGJuNTIy/2qDI8yow6cRBQ87m6O//VuHIlawe8v0x1NsTOSwS72xm+BzTuY9D0iMqiJUiTlE3dBs8DA91MTw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-socket.io@0.37.0': + resolution: {integrity: sha512-aIztxmx/yis/goEndnoITrZvDDr1GdCtlsWo9ex7MhUIjqq5nJbTuyigf3GmU86XFFhSThxfQuJ9DpJyPxfBfA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-tedious@0.8.0': + resolution: {integrity: sha512-BBRW8+Qm2PLNkVMynr3Q7L4xCAOCOs0J9BJIJ8ZGoatW42b2H4qhMhq35jfPDvEL5u5azxHDapmUVYrDJDjAfA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-winston@0.35.0': + resolution: {integrity: sha512-ymcuA3S2flnLmH1GS0105H91iDLap8cizOCaLMCp7Xz7r4L+wFf1zfix9M+iSkxcPFshHRt8LFA/ELXw51nk0g==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation@0.49.1': + resolution: {integrity: sha512-0DLtWtaIppuNNRRllSD4bjU8ZIiLp1cDXvJEbp752/Zf+y3gaLNaoGRGIlX4UHhcsrmtL+P2qxi3Hodi8VuKiQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/otlp-exporter-base@0.49.1': + resolution: {integrity: sha512-z6sHliPqDgJU45kQatAettY9/eVF58qVPaTuejw9YWfSRqid9pXPYeegDCSdyS47KAUgAtm+nC28K3pfF27HWg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/otlp-grpc-exporter-base@0.49.1': + resolution: {integrity: sha512-DNDNUWmOqtKTFJAyOyHHKotVox0NQ/09ETX8fUOeEtyNVHoGekAVtBbvIA3AtK+JflP7LC0PTjlLfruPM3Wy6w==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/otlp-proto-exporter-base@0.49.1': + resolution: {integrity: sha512-x1qB4EUC7KikUl2iNuxCkV8yRzrSXSyj4itfpIO674H7dhI7Zv37SFaOJTDN+8Z/F50gF2ISFH9CWQ4KCtGm2A==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/otlp-transformer@0.49.1': + resolution: {integrity: sha512-Z+koA4wp9L9e3jkFacyXTGphSWTbOKjwwXMpb0CxNb0kjTHGUxhYRN8GnkLFsFo5NbZPjP07hwAqeEG/uCratQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.9.0' + + '@opentelemetry/propagation-utils@0.30.16': + resolution: {integrity: sha512-ZVQ3Z/PQ+2GQlrBfbMMMT0U7MzvYZLCPP800+ooyaBqm4hMvuQHfP028gB9/db0mwkmyEAMad9houukUVxhwcw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/propagator-aws-xray@1.26.2': + resolution: {integrity: sha512-k43wxTjKYvwfce9L4eT8fFYy/ATmCfPHZPZsyT/6ABimf2KE1HafoOsIcxLOtmNSZt6dCvBIYCrXaOWta20xJg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/propagator-b3@1.22.0': + resolution: {integrity: sha512-qBItJm9ygg/jCB5rmivyGz1qmKZPsL/sX715JqPMFgq++Idm0x+N9sLQvWFHFt2+ZINnCSojw7FVBgFW6izcXA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.9.0' + + '@opentelemetry/propagator-jaeger@1.22.0': + resolution: {integrity: sha512-pMLgst3QIwrUfepraH5WG7xfpJ8J3CrPKrtINK0t7kBkuu96rn+HDYQ8kt3+0FXvrZI8YJE77MCQwnJWXIrgpA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.9.0' + + '@opentelemetry/redis-common@0.36.2': + resolution: {integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==} + engines: {node: '>=14'} + + '@opentelemetry/resource-detector-alibaba-cloud@0.28.10': + resolution: {integrity: sha512-TZv/1Y2QCL6sJ+X9SsPPBXe4786bc/Qsw0hQXFsNTbJzDTGGUmOAlSZ2qPiuqAd4ZheUYfD+QA20IvAjUz9Hhg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/resource-detector-aws@1.12.0': + resolution: {integrity: sha512-Cvi7ckOqiiuWlHBdA1IjS0ufr3sltex2Uws2RK6loVp4gzIJyOijsddAI6IZ5kiO8h/LgCWe8gxPmwkTKImd+Q==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/resource-detector-container@0.3.11': + resolution: {integrity: sha512-22ndMDakxX+nuhAYwqsciexV8/w26JozRUV0FN9kJiqSWtA1b5dCVtlp3J6JivG5t8kDN9UF5efatNnVbqRT9Q==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/resource-detector-gcp@0.29.13': + resolution: {integrity: sha512-vdotx+l3Q+89PeyXMgKEGnZ/CwzwMtuMi/ddgD9/5tKZ08DfDGB2Npz9m2oXPHRCjc4Ro6ifMqFlRyzIvgOjhg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.0.0 + + '@opentelemetry/resources@1.22.0': + resolution: {integrity: sha512-+vNeIFPH2hfcNL0AJk/ykJXoUCtR1YaDUZM+p3wZNU4Hq98gzq+7b43xbkXjadD9VhWIUQqEwXyY64q6msPj6A==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.9.0' + + '@opentelemetry/resources@1.27.0': + resolution: {integrity: sha512-jOwt2VJ/lUD5BLc+PMNymDrUCpm5PKi1E9oSVYAvz01U/VdndGmrtV3DU1pG4AwlYhJRHbHfOUIlpBeXCPw6QQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/resources@1.30.1': + resolution: {integrity: sha512-5UxZqiAgLYGFjS4s9qm5mBVo433u+dSPUFWVWXmLAD4wB65oMCoXaJP1KJa9DIYYMeHu3z4BZcStG3LC593cWA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/resources@2.0.1': + resolution: {integrity: sha512-dZOB3R6zvBwDKnHDTB4X1xtMArB/d324VsbiPkX/Yu0Q8T2xceRthoIVFhJdvgVM2QhGVUyX9tzwiNxGtoBJUw==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.10.0' + + '@opentelemetry/sdk-logs@0.49.1': + resolution: {integrity: sha512-gCzYWsJE0h+3cuh3/cK+9UwlVFyHvj3PReIOCDOmdeXOp90ZjKRoDOJBc3mvk1LL6wyl1RWIivR8Rg9OToyesw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.4.0 <1.9.0' + '@opentelemetry/api-logs': '>=0.39.1' + + '@opentelemetry/sdk-metrics@1.22.0': + resolution: {integrity: sha512-k6iIx6H3TZ+BVMr2z8M16ri2OxWaljg5h8ihGJxi/KQWcjign6FEaEzuigXt5bK9wVEhqAcWLCfarSftaNWkkg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.9.0' + + '@opentelemetry/sdk-metrics@1.30.1': + resolution: {integrity: sha512-q9zcZ0Okl8jRgmy7eNW3Ku1XSgg3sDLa5evHZpCwjspw7E8Is4K/haRPDJrBcX3YSn/Y7gUvFnByNYEKQNbNog==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.10.0' + + '@opentelemetry/sdk-metrics@2.0.1': + resolution: {integrity: sha512-wf8OaJoSnujMAHWR3g+/hGvNcsC16rf9s1So4JlMiFaFHiE4HpIA3oUh+uWZQ7CNuK8gVW/pQSkgoa5HkkOl0g==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.9.0 <1.10.0' + + '@opentelemetry/sdk-node@0.49.1': + resolution: {integrity: sha512-feBIT85ndiSHXsQ2gfGpXC/sNeX4GCHLksC4A9s/bfpUbbgbCSl0RvzZlmEpCHarNrkZMwFRi4H0xFfgvJEjrg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.9.0' + + '@opentelemetry/sdk-trace-base@1.22.0': + resolution: {integrity: sha512-pfTuSIpCKONC6vkTpv6VmACxD+P1woZf4q0K46nSUvXFvOFqjBYKFaAMkKD3M1mlKUUh0Oajwj35qNjMl80m1Q==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.9.0' + + '@opentelemetry/sdk-trace-base@1.27.0': + resolution: {integrity: sha512-btz6XTQzwsyJjombpeqCX6LhiMQYpzt2pIYNPnw0IPO/3AhT6yjnf8Mnv3ZC2A4eRYOjqrg+bfaXg9XHDRJDWQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/sdk-trace-node@1.22.0': + resolution: {integrity: sha512-gTGquNz7ue8uMeiWPwp3CU321OstQ84r7PCDtOaCicjbJxzvO8RZMlEC4geOipTeiF88kss5n6w+//A0MhP1lQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.9.0' + + '@opentelemetry/semantic-conventions@1.22.0': + resolution: {integrity: sha512-CAOgFOKLybd02uj/GhCdEeeBjOS0yeoDeo/CA7ASBSmenpZHAKGB3iDm/rv3BQLcabb/OprDEsSQ1y0P8A7Siw==} + engines: {node: '>=14'} + + '@opentelemetry/semantic-conventions@1.27.0': + resolution: {integrity: sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==} + engines: {node: '>=14'} + + '@opentelemetry/semantic-conventions@1.28.0': + resolution: {integrity: sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==} + engines: {node: '>=14'} + + '@opentelemetry/semantic-conventions@1.34.0': + resolution: {integrity: sha512-aKcOkyrorBGlajjRdVoJWHTxfxO1vCNHLJVlSDaRHDIdjU+pX8IYQPvPDkYiujKLbRnWU+1TBwEt0QRgSm4SGA==} + engines: {node: '>=14'} + + '@opentelemetry/sql-common@0.40.1': + resolution: {integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.1.0 + + '@pandacss/is-valid-prop@0.41.0': + resolution: {integrity: sha512-BE6h6CsJk14ugIRrsazJtN3fcg+KDFRat1Bs93YFKH6jd4DOb1yUyVvC70jKqPVvg70zEcV8acZ7VdcU5TLu+w==} + + '@paulmillr/qr@0.2.1': + resolution: {integrity: sha512-IHnV6A+zxU7XwmKFinmYjUcwlyK9+xkG3/s9KcQhI9BjQKycrJ1JRO+FbNYPwZiPKW3je/DR0k7w8/gLa5eaxQ==} + deprecated: 'The package is now available as "qr": npm install qr' + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@playwright/experimental-ct-core@1.49.0': + resolution: {integrity: sha512-Tl/JekIQOyHIctFvzmHaSB8SuBTbOYcIdrb5HMwMc70i86XbPnQfDp65zgzAuvUiDN1u1k+aIpygJ8ZqnRYgVw==} + engines: {node: '>=18'} + + '@playwright/experimental-ct-react@1.49.0': + resolution: {integrity: sha512-zkCKItOwMHJsyqXagYmpv/iVCjnjpT+NWvLS8HFec1HuU28kI3AhzcIhKJvZbQLiJV+fL99wFhcJnOjHZm5VAA==} + engines: {node: '>=18'} + hasBin: true + + '@playwright/test@1.49.0': + resolution: {integrity: sha512-DMulbwQURa8rNIQrf94+jPJQ4FmOVdpE5ZppRNvWVjvhC+6sOeo28r8MgIpQRYouXRtt/FCCXU7zn20jnHR4Qw==} + engines: {node: '>=18'} + hasBin: true + + '@polka/url@1.0.0-next.29': + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} + + '@protobufjs/aspromise@1.1.2': + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + + '@protobufjs/base64@1.1.2': + resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} + + '@protobufjs/codegen@2.0.4': + resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} + + '@protobufjs/eventemitter@1.1.0': + resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} + + '@protobufjs/fetch@1.1.0': + resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} + + '@protobufjs/float@1.0.2': + resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} + + '@protobufjs/inquire@1.1.0': + resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} + + '@protobufjs/path@1.1.2': + resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} + + '@protobufjs/pool@1.1.0': + resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} + + '@protobufjs/utf8@1.1.0': + resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} + + '@reach/auto-id@0.17.0': + resolution: {integrity: sha512-ud8iPwF52RVzEmkHq1twuqGuPA+moreumUHdtgvU3sr3/15BNhwp3KyDLrKKSz0LP1r3V4pSdyF9MbYM8BoSjA==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/combobox@0.17.0': + resolution: {integrity: sha512-2mYvU5agOBCQBMdlM4cri+P1BbNwp05P1OuDyc33xJSNiBG7BMy4+ZSHJ0X4fyle6rHwSgCAOCLOeWV1XUYjoQ==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/descendants@0.17.0': + resolution: {integrity: sha512-c7lUaBfjgcmKFZiAWqhG+VnXDMEhPkI4kAav/82XKZD6NVvFjsQOTH+v3tUkskrAPV44Yuch0mFW/u5Ntifr7Q==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/dialog@0.17.0': + resolution: {integrity: sha512-AnfKXugqDTGbeG3c8xDcrQDE4h9b/vnc27Sa118oQSquz52fneUeX9MeFb5ZEiBJK8T5NJpv7QUTBIKnFCAH5A==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/dropdown@0.17.0': + resolution: {integrity: sha512-qBTIGInhxtPHtdj4Pl2XZgZMz3e37liydh0xR3qc48syu7g71sL4nqyKjOzThykyfhA3Pb3/wFgsFJKGTSdaig==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/listbox@0.17.0': + resolution: {integrity: sha512-AMnH1P6/3VKy2V/nPb4Es441arYR+t4YRdh9jdcFVrCOD6y7CQrlmxsYjeg9Ocdz08XpdoEBHM3PKLJqNAUr7A==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/machine@0.17.0': + resolution: {integrity: sha512-9EHnuPgXzkbRENvRUzJvVvYt+C2jp7PGN0xon7ffmKoK8rTO6eA/bb7P0xgloyDDQtu88TBUXKzW0uASqhTXGA==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/menu-button@0.17.0': + resolution: {integrity: sha512-YyuYVyMZKamPtivoEI6D0UEILYH3qZtg4kJzEAuzPmoR/aHN66NZO75Fx0gtjG1S6fZfbiARaCOZJC0VEiDOtQ==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + react-is: ^16.8.0 || 17.x + + '@reach/observe-rect@1.2.0': + resolution: {integrity: sha512-Ba7HmkFgfQxZqqaeIWWkNK0rEhpxVQHIoVyW1YDSkGsGIXzcaW4deC8B0pZrNSSyLTdIk7y+5olKt5+g0GmFIQ==} + + '@reach/popover@0.17.0': + resolution: {integrity: sha512-yYbBF4fMz4Ml4LB3agobZjcZ/oPtPsNv70ZAd7lEC2h7cvhF453pA+zOBGYTPGupKaeBvgAnrMjj7RnxDU5hoQ==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/portal@0.17.0': + resolution: {integrity: sha512-+IxsgVycOj+WOeNPL2NdgooUdHPSY285wCtj/iWID6akyr4FgGUK7sMhRM9aGFyrGpx2vzr+eggbUmAVZwOz+A==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/rect@0.17.0': + resolution: {integrity: sha512-3YB7KA5cLjbLc20bmPkJ06DIfXSK06Cb5BbD2dHgKXjUkT9WjZaLYIbYCO8dVjwcyO3GCNfOmPxy62VsPmZwYA==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/tooltip@0.17.0': + resolution: {integrity: sha512-HP8Blordzqb/Cxg+jnhGmWQfKgypamcYLBPlcx6jconyV5iLJ5m93qipr1giK7MqKT2wlsKWy44ZcOrJ+Wrf8w==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/utils@0.17.0': + resolution: {integrity: sha512-M5y8fCBbrWeIsxedgcSw6oDlAMQDkl5uv3VnMVJ7guwpf4E48Xlh1v66z/1BgN/WYe2y8mB/ilFD2nysEfdGeA==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reach/visually-hidden@0.17.0': + resolution: {integrity: sha512-T6xF3Nv8vVnjVkGU6cm0+kWtvliLqPAo8PcZ+WxkKacZsaHTjaZb4v1PaCcyQHmuTNT/vtTVNOJLG0SjQOIb7g==} + peerDependencies: + react: ^16.8.0 || 17.x + react-dom: ^16.8.0 || 17.x + + '@reown/appkit-adapter-wagmi@1.7.0': + resolution: {integrity: sha512-5xkwFQCu8Ezb2J3nnVv8fLjEoBjADggBrxYmOwPDzT6D5heWtkRC/HYx2STiy+vsbj0G8Vs/x+SXq753CR94/Q==} + peerDependencies: + '@wagmi/core': '>=2.16.5' + viem: '>=2.23.5' + wagmi: '>=2.14.12' + + '@reown/appkit-common@1.7.0': + resolution: {integrity: sha512-yJc5lQLt64+ZjhagqZar/H9S9EDKiZa9z/4mII4ZTpRiOfSlKvRS+tLcjiqJNr+dTft4nVbF71sbnVLZ/ON2UQ==} + + '@reown/appkit-common@1.7.8': + resolution: {integrity: sha512-ridIhc/x6JOp7KbDdwGKY4zwf8/iK8EYBl+HtWrruutSLwZyVi5P8WaZa+8iajL6LcDcDF7LoyLwMTym7SRuwQ==} + + '@reown/appkit-controllers@1.7.0': + resolution: {integrity: sha512-npFnrPQdm4t5YT+ai+525sQRnZdAQjGMKQ11hYBKifAZafx8xr7yObvyxeR9d6aM0ku+OSFHErbALKM9iJFtXw==} + + '@reown/appkit-controllers@1.7.8': + resolution: {integrity: sha512-IdXlJlivrlj6m63VsGLsjtPHHsTWvKGVzWIP1fXZHVqmK+rZCBDjCi9j267Rb9/nYRGHWBtlFQhO8dK35WfeDA==} + + '@reown/appkit-pay@1.7.8': + resolution: {integrity: sha512-OSGQ+QJkXx0FEEjlpQqIhT8zGJKOoHzVnyy/0QFrl3WrQTjCzg0L6+i91Ad5Iy1zb6V5JjqtfIFpRVRWN4M3pw==} + + '@reown/appkit-polyfills@1.7.0': + resolution: {integrity: sha512-j7pHuOvnaXUJmd+Hj2WYkBDxar3LM71Z/FY8Qr8OaQsb+e6U9ho033npYXHEAkfjTv4mB/B0Y7yTKAJhxV9Lpg==} + + '@reown/appkit-polyfills@1.7.8': + resolution: {integrity: sha512-W/kq786dcHHAuJ3IV2prRLEgD/2iOey4ueMHf1sIFjhhCGMynMkhsOhQMUH0tzodPqUgAC494z4bpIDYjwWXaA==} + + '@reown/appkit-scaffold-ui@1.7.0': + resolution: {integrity: sha512-BNlN01gOpcqf4w5iYLz10FN574cZqhwobHSKKSgthTb2DBZpaSeIK2K+97ku2uGb8o00m+9aFyKaRDOU3XpNNQ==} + + '@reown/appkit-scaffold-ui@1.7.8': + resolution: {integrity: sha512-RCeHhAwOrIgcvHwYlNWMcIDibdI91waaoEYBGw71inE0kDB8uZbE7tE6DAXJmDkvl0qPh+DqlC4QbJLF1FVYdQ==} + + '@reown/appkit-ui@1.7.0': + resolution: {integrity: sha512-a2sCBE3Me9dbsqW0544S/3FIoJh/RER4ZhU4e7I2rfskdTX6W5Orw/vm9wK2ItesVDD0SB3WpyQ3F/4bCkJt/w==} + + '@reown/appkit-ui@1.7.8': + resolution: {integrity: sha512-1hjCKjf6FLMFzrulhl0Y9Vb9Fu4royE+SXCPSWh4VhZhWqlzUFc7kutnZKx8XZFVQH4pbBvY62SpRC93gqoHow==} + + '@reown/appkit-utils@1.7.0': + resolution: {integrity: sha512-D88Lzms0RFgocBrJmeUB7jHG+ZlU2hDQgwjTHvXW+UlMdH1fUb2btPLYyt2dqI0X3ubAcPsQPmpH458G7sUKPA==} + peerDependencies: + valtio: 1.13.2 + + '@reown/appkit-utils@1.7.8': + resolution: {integrity: sha512-8X7UvmE8GiaoitCwNoB86pttHgQtzy4ryHZM9kQpvjQ0ULpiER44t1qpVLXNM4X35O0v18W0Dk60DnYRMH2WRw==} + peerDependencies: + valtio: 1.13.2 + + '@reown/appkit-wallet@1.7.0': + resolution: {integrity: sha512-hXrPe5ZYbxAwyytdBcWT504lJ+L8ckXDcSGZg62nk+7sck3jqpXmwn24mI4eS/ThTj3ExxlOG4bcGiXu1EBFwQ==} + + '@reown/appkit-wallet@1.7.8': + resolution: {integrity: sha512-kspz32EwHIOT/eg/ZQbFPxgXq0B/olDOj3YMu7gvLEFz4xyOFd/wgzxxAXkp5LbG4Cp++s/elh79rVNmVFdB9A==} + + '@reown/appkit@1.7.0': + resolution: {integrity: sha512-/F+By2dfoXJNuAdq/atRM1wt5PlWjUSpIQnk4j3rIFxmch0XJnw6YZzdMaDH0dNfzP2+ymUFsN7CFt7Se4QgoA==} + + '@reown/appkit@1.7.8': + resolution: {integrity: sha512-51kTleozhA618T1UvMghkhKfaPcc9JlKwLJ5uV+riHyvSoWPKPRIa5A6M1Wano5puNyW0s3fwywhyqTHSilkaA==} + + '@rollbar/react@0.12.1': + resolution: {integrity: sha512-qi1ahC4WRXTrqh7hkBM0H5cSKh4TBA5A9jKliokphxikmZsAfbQEvwjIM6IFkqEljeWt1nAfuuFC5w32sLqoTg==} + peerDependencies: + prop-types: ^15.7.2 + react: 16.x || 17.x || 18.x || 19.x + rollbar: ^2.26.4 + + '@rolldown/pluginutils@1.0.0-beta.9': + resolution: {integrity: sha512-e9MeMtVWo186sgvFFJOPGy7/d2j2mZhLJIdVW0C/xDluuOvymEATqz6zKsP0ZmXGzQtqlyjz5sC1sYQUoJG98w==} + + '@rollup/pluginutils@5.1.4': + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.41.1': + resolution: {integrity: sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.41.1': + resolution: {integrity: sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.41.1': + resolution: {integrity: sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.41.1': + resolution: {integrity: sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.41.1': + resolution: {integrity: sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.41.1': + resolution: {integrity: sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.41.1': + resolution: {integrity: sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.41.1': + resolution: {integrity: sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.41.1': + resolution: {integrity: sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.41.1': + resolution: {integrity: sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.41.1': + resolution: {integrity: sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.41.1': + resolution: {integrity: sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.41.1': + resolution: {integrity: sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.41.1': + resolution: {integrity: sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.41.1': + resolution: {integrity: sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.41.1': + resolution: {integrity: sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.41.1': + resolution: {integrity: sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.41.1': + resolution: {integrity: sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.41.1': + resolution: {integrity: sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.41.1': + resolution: {integrity: sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==} + cpu: [x64] + os: [win32] + + '@rrweb/types@2.0.0-alpha.18': + resolution: {integrity: sha512-iMH3amHthJZ9x3gGmBPmdfim7wLGygC2GciIkw2A6SO8giSn8PHYtRT8OKNH4V+k3SZ6RSnYHcTQxBA7pSWZ3Q==} + + '@rrweb/utils@2.0.0-alpha.18': + resolution: {integrity: sha512-qV8azQYo9RuwW4NGRtOiQfTBdHNL1B0Q//uRLMbCSjbaKqJYd88Js17Bdskj65a0Vgp2dwTLPIZ0gK47dfjfaA==} + + '@rtsao/scc@1.1.0': + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + + '@rushstack/eslint-patch@1.11.0': + resolution: {integrity: sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==} + + '@safe-global/safe-apps-provider@0.18.5': + resolution: {integrity: sha512-9v9wjBi3TwLsEJ3C2ujYoexp3pFJ0omDLH/GX91e2QB+uwCKTBYyhxFSrTQ9qzoyQd+bfsk4gjOGW87QcJhf7g==} + + '@safe-global/safe-apps-provider@0.18.6': + resolution: {integrity: sha512-4LhMmjPWlIO8TTDC2AwLk44XKXaK6hfBTWyljDm0HQ6TWlOEijVWNrt2s3OCVMSxlXAcEzYfqyu1daHZooTC2Q==} + + '@safe-global/safe-apps-sdk@9.1.0': + resolution: {integrity: sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==} + + '@safe-global/safe-gateway-typescript-sdk@3.23.1': + resolution: {integrity: sha512-6ORQfwtEJYpalCeVO21L4XXGSdbEMfyp2hEv6cP82afKXSwvse6d3sdelgaPWUxHIsFRkWvHDdzh8IyyKHZKxw==} + engines: {node: '>=16'} + + '@scarf/scarf@1.4.0': + resolution: {integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==} + + '@scure/base@1.1.9': + resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==} + + '@scure/base@1.2.6': + resolution: {integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==} + + '@scure/bip32@1.4.0': + resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} + + '@scure/bip32@1.6.2': + resolution: {integrity: sha512-t96EPDMbtGgtb7onKKqxRLfE5g05k7uHnHRM2xdE6BP/ZmxaLtPek4J4KfVn/90IQNrU1IOAqMgiDtUdtbe3nw==} + + '@scure/bip32@1.7.0': + resolution: {integrity: sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==} + + '@scure/bip39@1.3.0': + resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} + + '@scure/bip39@1.5.4': + resolution: {integrity: sha512-TFM4ni0vKvCfBpohoh+/lY05i9gRbSwXWngAsF4CABQxoaOHijxuaZ2R6cStDQ5CHtHO9aGJTr4ksVJASRRyMA==} + + '@scure/bip39@1.6.0': + resolution: {integrity: sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==} + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/fnv1a@3.1.0': + resolution: {integrity: sha512-KV321z5m/0nuAg83W1dPLy85HpHDk7Sdi4fJbwvacWsEhAh+rZUW4ZfGcXmUIvjZg4ss2bcwNlRhJ7GBEUG08w==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@slise/embed-react@2.2.0': + resolution: {integrity: sha512-btboJc24ABEg5ncbVnab+asKarp3kTSTdMHHcndrnkCDlXNQNSw3vL0Lv8tanqgE3Ogt51AF8QGEhWDNOZAcxQ==} + engines: {node: '>=12.0'} + peerDependencies: + react: ^16.8.6 || 17 - 18 + react-dom: ^16.8.6 || 17 - 18 + + '@socket.io/component-emitter@3.1.2': + resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} + + '@stylistic/eslint-plugin@2.10.1': + resolution: {integrity: sha512-U+4yzNXElTf9q0kEfnloI9XbOyD4cnEQCxjUI94q0+W++0GAEQvJ/slwEj9lwjDHfGADRSr+Tco/z0XJvmDfCQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=8.40.0' + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1': + resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0': + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0': + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1': + resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-dynamic-title@6.5.1': + resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-svg-em-dimensions@6.5.1': + resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-react-native-svg@6.5.1': + resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-plugin-transform-svg-component@6.5.1': + resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/babel-preset@6.5.1': + resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@svgr/core@6.5.1': + resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} + engines: {node: '>=10'} + + '@svgr/hast-util-to-babel-ast@6.5.1': + resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@6.5.1': + resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 + + '@svgr/plugin-svgo@6.5.1': + resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': '*' + + '@svgr/webpack@6.5.1': + resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} + engines: {node: '>=10'} + + '@swagger-api/apidom-ast@1.0.0-beta.41': + resolution: {integrity: sha512-xqzDU+lq/ibdn/J+w/my9Q2cEEkjBYXHVvatj1L5+hB9+A2wLAHcq9W1unmplo6Qgpr+rnBR5x9o3r8KWWVhzg==} + + '@swagger-api/apidom-core@1.0.0-beta.41': + resolution: {integrity: sha512-XdhpKtbyiYdV0qexIP28l1jaJEIh0tAFX5aYD65iosSx+gPmVnDcM17tmIyayWSGgwCYCFNimbuhEV+8vBEHeA==} + + '@swagger-api/apidom-error@1.0.0-beta.41': + resolution: {integrity: sha512-IcCVRHzIvfFoXVyllxYLXHqhCWpYYlb1NC+fqQBTjFlbPl9ut+rS2nUQnUC0JMbaDv0NlWP8YTDaFbOY+QSdtQ==} + + '@swagger-api/apidom-json-pointer@1.0.0-beta.41': + resolution: {integrity: sha512-izAZdWmQ6HFU0rC71leJajlpbAO0Dpt7gzx8O0mdHO159MQEAVfsrh95xlnejsnurHblTMxaekib/9t71XnzzQ==} + + '@swagger-api/apidom-ns-api-design-systems@1.0.0-beta.41': + resolution: {integrity: sha512-qxMYm3wHaHNHMFxAaRMqmiRWoDvyFS1TrZvxCHYxaf/wqgr6OflYZRTMUb7+Hmgo84ajoaaPA1/2Hd9pYj0YoA==} + + '@swagger-api/apidom-ns-arazzo-1@1.0.0-beta.41': + resolution: {integrity: sha512-cJLh4R4tV9tDcdsTAziRm3q653S4dltMmLrFph67kHj06y731+P4+F+yxEyAwFPitP/1+m08uw6bYfBdMOcqOA==} + + '@swagger-api/apidom-ns-asyncapi-2@1.0.0-beta.41': + resolution: {integrity: sha512-ebsNhuug73UZ5v6VB2kokUX2jZFXOsMRNwfazn/6Z2UlHtvciW75aesb6NKOOHpHKQmIzJ3fn14x5b1OBTkBJw==} + + '@swagger-api/apidom-ns-json-schema-2019-09@1.0.0-beta.41': + resolution: {integrity: sha512-J/ed7LprGznBF2Iin0MAFzBab4NNiQrPXLJaw0kB2lO+46wyqKcCapexyC0RCVYp7oHVDnnkWENZxp2OfVHEsg==} + + '@swagger-api/apidom-ns-json-schema-2020-12@1.0.0-beta.41': + resolution: {integrity: sha512-BEBdG0CXOLudQHqI5duLnCaymGC90u+NIISSjL6gmK+kjs2imlO+qPrM17JM4iyBQABpdJqwszQMZ3K88vfEwQ==} + + '@swagger-api/apidom-ns-json-schema-draft-4@1.0.0-beta.41': + resolution: {integrity: sha512-kDdu0Bi2XrT80fCXQulueqzSoODeYSrNw1/8vz7wGM33ZDsx3IC5hlU6lHd28E5Tm4lfXVL3GCf6QEZWMYtbnQ==} + + '@swagger-api/apidom-ns-json-schema-draft-6@1.0.0-beta.41': + resolution: {integrity: sha512-RWffn/E7spVhdl6jSSTR2+YPu/FlMwkXjaWxO0pvWkunTrYU5d1QLuipl3hj+4ILxmrO/bmwKMI7dKFWaTKNQg==} + + '@swagger-api/apidom-ns-json-schema-draft-7@1.0.0-beta.41': + resolution: {integrity: sha512-lPEh+/UUcE1ZYjkLyCfcySj/a42kW0L+Y/S4mQQ05sIRUJiMv2WSz2zvapNeXfGX4qXRhR3fGzieVhVbwmsUGQ==} + + '@swagger-api/apidom-ns-openapi-2@1.0.0-beta.41': + resolution: {integrity: sha512-k6fZZZGX7MXGarwM/wkXb/okOOUbEjUSZrEOzrMoHzJctYJxr0clp6p5xmoXA1SY/zkSWTIJxk1OzRl3jGthuA==} + + '@swagger-api/apidom-ns-openapi-3-0@1.0.0-beta.41': + resolution: {integrity: sha512-1acYanPrLEx6P03mRTAE2ZUkIPKKFlxhwB9MS0JhXIroyKLIyHyZekEgPcs04pRtk2hZ8yUODeVcp1e8FPs1Xg==} + + '@swagger-api/apidom-ns-openapi-3-1@1.0.0-beta.41': + resolution: {integrity: sha512-9XlU5vhIcGty6DjrG88sLZJktNi7FuKDyz7EP/mk4WjYzCXVaXmEK7qzBibOS2Kgib2hKnSh/Ym/SgDf/0QlLA==} + + '@swagger-api/apidom-parser-adapter-api-design-systems-json@1.0.0-beta.41': + resolution: {integrity: sha512-nwiNhMBf48ofHWzy36s6PTFn21ChnCkvyWzM7gFc5zPFRTJkjuuhyyHfQM5z9YTRnQrbcS/JUSGMoC9SxgsHrw==} + + '@swagger-api/apidom-parser-adapter-api-design-systems-yaml@1.0.0-beta.41': + resolution: {integrity: sha512-xm26vEQdgIuTDcnIWYH+EDL0htZIS9XnQPRVlhSCvoSHRDifmbW3l3q9Lrrw1XEQnffHl886t6KafACDcri6Qw==} + + '@swagger-api/apidom-parser-adapter-arazzo-json-1@1.0.0-beta.41': + resolution: {integrity: sha512-XBpaj6vUNVmcFMWbehOjDbVTXXTi57Y+hfGZ107lrgq0nkzzhh8Sxk+yoXmmsNs7xESc6zfO38MPZjOBSIE7xA==} + + '@swagger-api/apidom-parser-adapter-arazzo-yaml-1@1.0.0-beta.41': + resolution: {integrity: sha512-DvGfXkXOuwl6IEXTncBwTGeTOSET/LOf+oU4lkhBBgNq9GgIxiTTsIDiR2yj9IU30F+AjqNeIMdM9c0tHhU5yw==} + + '@swagger-api/apidom-parser-adapter-asyncapi-json-2@1.0.0-beta.41': + resolution: {integrity: sha512-03OXekIQHoJ5+cUNWhx+kbzRcrRzOcUVF+oGcY/N69Pns8+6YvkgNbuTafgSHya3Zm5i9QBIngLJSmWxqRk13g==} + + '@swagger-api/apidom-parser-adapter-asyncapi-yaml-2@1.0.0-beta.41': + resolution: {integrity: sha512-tAttgr23eSWMe+xXhVrYv7qrzpEOoHxWQze6DCoeuXWQKl1IJQ4+K2h6bTid1Qt16K2/810dIT4+TzQ3EScSiw==} + + '@swagger-api/apidom-parser-adapter-json@1.0.0-beta.41': + resolution: {integrity: sha512-3mMU8+kDMVNPe7kA0UBRoX/xPRyj52AThumew3sNZnZ5Dc39hsUwlNKgKgd5LCDCvYgmeePGdg8Kp5ky5Kt9AA==} + + '@swagger-api/apidom-parser-adapter-openapi-json-2@1.0.0-beta.41': + resolution: {integrity: sha512-1aa2e5xbQUsg/z5uXSK2zAeE2WvqQ0J4JikRh1w/Ymm6pUnPYVuGYANxGOtH9dGTAEgNkJkSszVnpcSpDUlweA==} + + '@swagger-api/apidom-parser-adapter-openapi-json-3-0@1.0.0-beta.41': + resolution: {integrity: sha512-5raVa+iVnvrm8q9mLmH3RM9M4odkO03DPyuHb0XgTUWJqPzy+xSNKCLhzPMM6QU03ydwONVtqTor5W6h+w0HQw==} + + '@swagger-api/apidom-parser-adapter-openapi-json-3-1@1.0.0-beta.41': + resolution: {integrity: sha512-XKs9hyShyBBCfjuQYpKGPO2adatFEWvCOdmXVfXIb27w14+Sb1Ns5jOZaF2wJOoj0tJesuNELu0J3iv1UxNd5A==} + + '@swagger-api/apidom-parser-adapter-openapi-yaml-2@1.0.0-beta.41': + resolution: {integrity: sha512-JSdy8Px8p4xOgAdxJNS8YU5KVdUfehco8a6/OWX8KrcUKfXrGLd2NiLT0UtynntOrrIMrjBY0MlhuYOYs++NIw==} + + '@swagger-api/apidom-parser-adapter-openapi-yaml-3-0@1.0.0-beta.41': + resolution: {integrity: sha512-t9W3txsFrRySfa8pcoTO6/9ZwUDVcDAaRnONiV0INjx9r80dWMU1MNZ2gXfxsfgxHTuI6sO78HmZ0RtI0pCP+w==} + + '@swagger-api/apidom-parser-adapter-openapi-yaml-3-1@1.0.0-beta.41': + resolution: {integrity: sha512-xwlCzsL4u8xVTsBVNdD0eenKDAlMi/dgMJHiWPtBABAIgpUuzZILF1PCzLBMYfcRGOw+fSgnIHwkWbxVOhYNQQ==} + + '@swagger-api/apidom-parser-adapter-yaml-1-2@1.0.0-beta.41': + resolution: {integrity: sha512-oLcTxBj5ZXkkaT4MyJ+ZIoFvlO8a8zNIjPbjyPWK3lqnYdImnDxgK++8jhwgBw+5ZFp5Kc9SOQ2nor/1SPjP0g==} + + '@swagger-api/apidom-reference@1.0.0-beta.41': + resolution: {integrity: sha512-XhN7qzLUE8dDPa6Vwx4u3rHuunZJmvpHS++XYzAaJVSqpxZu6/asQrCN0ebnsiMZgZ6+/sMHiFBYA0abSkTZYw==} + + '@swaggerexpert/cookie@2.0.2': + resolution: {integrity: sha512-DPI8YJ0Vznk4CT+ekn3rcFNq1uQwvUHZhH6WvTSPD0YKBIlMS9ur2RYKghXuxxOiqOam/i4lHJH4xTIiTgs3Mg==} + engines: {node: '>=12.20.0'} + + '@swaggerexpert/json-pointer@2.10.2': + resolution: {integrity: sha512-qMx1nOrzoB+PF+pzb26Q4Tc2sOlrx9Ba2UBNX9hB31Omrq+QoZ2Gly0KLrQWw4Of1AQ4J9lnD+XOdwOdcdXqqw==} + engines: {node: '>=12.20.0'} + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + + '@swc/helpers@0.5.17': + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} + + '@tanstack/eslint-plugin-query@5.60.1': + resolution: {integrity: sha512-oCaWtFKa6WwX14fm/Sp486eTFXXgadiDzEYxhM/tiAlM+xzvPwp6ZHgR6sndmvYK+s/jbksDCTLIPS0PCH8L2g==} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + + '@tanstack/query-core@5.55.4': + resolution: {integrity: sha512-uoRqNnRfzOH4OMIoxj8E2+Us89UIGXfau981qYJWsNMkFS1GXR4UIyzUTVGq4N7SDLHgFPpo6IOazqUV5gkMZA==} + + '@tanstack/query-devtools@5.55.1': + resolution: {integrity: sha512-2g0TWQGlkyHs9maHIU5A7lRunG4Rj3Y5lOEenE+fydE4zk7GqRs7rKJBp7F74iqRo/cA9V6t1YYQWqd6YRBmcQ==} + + '@tanstack/react-query-devtools@5.55.4': + resolution: {integrity: sha512-4uXcG95JV6TrlefF6n0NDckgY9QVwNPKVcn81a+MmJyKkZ704otBjtuSgXNznx5zNFnGrWlgH1luoD+bZPASuQ==} + peerDependencies: + '@tanstack/react-query': ^5.55.4 + react: ^18 || ^19 + + '@tanstack/react-query@5.55.4': + resolution: {integrity: sha512-e3uX5XkLD9oTV66/VsVpkYz3Ds/ps/Yk+V5d89xthAbtNIKKBEm4FdNb9yISFzGEGezUzVO68qmfmiSrtScvsg==} + peerDependencies: + react: ^18 || ^19 + + '@testing-library/dom@9.3.4': + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} + + '@testing-library/react@14.3.1': + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} + engines: {node: '>=14'} + peerDependencies: + react: ^18.0.0 + react-dom: ^18.0.0 + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@total-typescript/ts-reset@0.4.2': + resolution: {integrity: sha512-vqd7ZUDSrXFVT1n8b2kc3LnklncDQFPvR58yUS1kEP23/nHPAO9l1lMjUfnPrXYYk4Hj54rrLKMW5ipwk7k09A==} + + '@tree-sitter-grammars/tree-sitter-yaml@0.7.1': + resolution: {integrity: sha512-AynBwkIoQCTgjDR33bDUp9Mqq+YTco0is3n5hRApMqG9of/6A4eQsfC1/uSEeHSUyMQSYawcAWamsexnVpIP4Q==} + peerDependencies: + tree-sitter: ^0.22.4 + peerDependenciesMeta: + tree-sitter: + optional: true + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@tybys/wasm-util@0.9.0': + resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} + + '@types/accepts@1.3.7': + resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/aws-lambda@8.10.122': + resolution: {integrity: sha512-vBkIh9AY22kVOCEKo5CJlyCgmSWvasC+SWUxL/x/vOwRobMpI/HG1xp/Ae3AqmSiZeLUbOhW0FCD3ZjqqUxmXw==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.7': + resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/bunyan@1.8.9': + resolution: {integrity: sha512-ZqS9JGpBxVOvsawzmVt30sP++gSQMTejCkIAQ3VdadOcRE8izTyW66hufvwLeH+YEGP6Js2AW7Gz+RMyvrEbmw==} + + '@types/chrome@0.0.136': + resolution: {integrity: sha512-XDEiRhLkMd+SB7Iw3ZUIj/fov3wLd4HyTdLltVszkgl1dBfc3Rb7oPMVZ2Mz2TLqnF7Ow+StbR8E7r9lqpb4DA==} + + '@types/cli-table@0.3.4': + resolution: {integrity: sha512-GsALrTL69mlwbAw/MHF1IPTadSLZQnsxe7a80G8l4inN/iEXCOcVeT/S7aRc6hbhqzL9qZ314kHPDQnQ3ev+HA==} + + '@types/codemirror@0.0.90': + resolution: {integrity: sha512-8Z9+tSg27NPRGubbUPUCrt5DDG/OWzLph5BvcDykwR5D7RyZh5mhHG0uS1ePKV1YFCA+/cwc4Ey2AJAEFfV3IA==} + + '@types/connect@3.4.36': + resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/content-disposition@0.5.8': + resolution: {integrity: sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==} + + '@types/cookies@0.9.0': + resolution: {integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==} + + '@types/crypto-js@4.2.2': + resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==} + + '@types/csp-dev@1.0.3': + resolution: {integrity: sha512-CitqSHhJY6hQmxJscJxGLiX63H5gmi/jOB/7Bx1Lb3dg2tOaA/xrup5cIeNc9AS9/mlr3N0Pg6s+3D2qALb/Tw==} + + '@types/css-font-loading-module@0.0.7': + resolution: {integrity: sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q==} + + '@types/d3-array@3.2.1': + resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} + + '@types/d3-axis@3.0.6': + resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} + + '@types/d3-brush@3.0.6': + resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} + + '@types/d3-chord@3.0.6': + resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} + + '@types/d3-color@3.1.3': + resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} + + '@types/d3-contour@3.0.6': + resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} + + '@types/d3-delaunay@6.0.4': + resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} + + '@types/d3-dispatch@3.0.6': + resolution: {integrity: sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==} + + '@types/d3-drag@3.0.7': + resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} + + '@types/d3-dsv@3.0.7': + resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} + + '@types/d3-ease@3.0.2': + resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} + + '@types/d3-fetch@3.0.7': + resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} + + '@types/d3-force@3.0.10': + resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} + + '@types/d3-format@3.0.4': + resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} + + '@types/d3-geo@3.1.0': + resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} + + '@types/d3-hierarchy@3.1.7': + resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} + + '@types/d3-interpolate@3.0.4': + resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} + + '@types/d3-path@3.1.1': + resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==} + + '@types/d3-polygon@3.0.2': + resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} + + '@types/d3-quadtree@3.0.6': + resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} + + '@types/d3-random@3.0.3': + resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} + + '@types/d3-scale-chromatic@3.1.0': + resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==} + + '@types/d3-scale@4.0.9': + resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==} + + '@types/d3-selection@3.0.11': + resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==} + + '@types/d3-shape@3.1.7': + resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==} + + '@types/d3-time-format@4.0.3': + resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} + + '@types/d3-time@3.0.4': + resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==} + + '@types/d3-timer@3.0.2': + resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} + + '@types/d3-transition@3.0.9': + resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==} + + '@types/d3-zoom@3.0.8': + resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} + + '@types/d3@7.4.3': + resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/dns-packet@5.6.5': + resolution: {integrity: sha512-qXOC7XLOEe43ehtWJCMnQXvgcIpv6rPmQ1jXT98Ad8A3TB1Ue50jsCbSSSyuazScEuZ/Q026vHbrOTVkmwA+7Q==} + + '@types/dom-to-image@2.6.7': + resolution: {integrity: sha512-me5VbCv+fcXozblWwG13krNBvuEOm6kA5xoa4RrjDJCNFOZSWR3/QLtOXimBHk1Fisq69Gx3JtOoXtg1N1tijg==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@9.6.1': + resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==} + + '@types/estree@1.0.7': + resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/express-serve-static-core@5.0.6': + resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==} + + '@types/express@5.0.2': + resolution: {integrity: sha512-BtjL3ZwbCQriyb0DGw+Rt12qAXPiBTPs815lsUvtt1Grk0vLRMZNMUZ741d5rjk+UQOxfDiBZ3dxpX00vSkK3g==} + + '@types/filesystem@0.0.36': + resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==} + + '@types/filewriter@0.0.33': + resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==} + + '@types/geojson@7946.0.16': + resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hapi__catbox@10.2.6': + resolution: {integrity: sha512-qdMHk4fBlwRfnBBDJaoaxb+fU9Ewi2xqkXD3mNjSPl2v/G/8IJbDpVRBuIcF7oXrcE8YebU5M8cCeKh1NXEn0w==} + + '@types/hapi__hapi@20.0.13': + resolution: {integrity: sha512-LP4IPfhIO5ZPVOrJo7H8c8Slc0WYTFAUNQX1U0LBPKyXioXhH5H2TawIgxKujIyOhbwoBbpvOsBf6o5+ToJIrQ==} + + '@types/hapi__mimos@4.1.4': + resolution: {integrity: sha512-i9hvJpFYTT/qzB5xKWvDYaSXrIiNqi4ephi+5Lo6+DoQdwqPXQgmVVOZR+s3MBiHoFqsCZCX9TmVWG3HczmTEQ==} + + '@types/hapi__shot@6.0.0': + resolution: {integrity: sha512-CUxk0AEQRpIT2cx7EYXkqaXm60LP46ZyEhr/7uov7D/ZLysA5DKkfBtPIYnoWvn8qfcFV/7YHLd3U9gThuhb0A==} + deprecated: This is a stub types definition. @hapi/shot provides its own type definitions, so you do not need this installed. + + '@types/har-format@1.2.16': + resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/http-assert@1.5.6': + resolution: {integrity: sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/ioredis@4.28.10': + resolution: {integrity: sha512-69LyhUgrXdgcNDv7ogs1qXZomnfOEnSmrmMFqKgt1XMJxmoOSG/u3wYy13yACIfKuMJ8IhKgHafDO3sx19zVQQ==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/jest@29.2.1': + resolution: {integrity: sha512-nKixEdnGDqFOZkMTF74avFNr3yRqB1ZJ6sRZv5/28D5x2oLN14KApv7F9mfDT/vUic0L3tRCsh3XWpWjtJisUQ==} + + '@types/js-cookie@3.0.6': + resolution: {integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==} + + '@types/jsdom@20.0.1': + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/keygrip@1.0.6': + resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==} + + '@types/koa-compose@3.2.8': + resolution: {integrity: sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==} + + '@types/koa@2.14.0': + resolution: {integrity: sha512-DTDUyznHGNHAl+wd1n0z1jxNajduyTh8R53xoewuerdBzGo6Ogj6F2299BFtrexJw4NtgjsI5SMPCmV9gZwGXA==} + + '@types/koa__router@12.0.3': + resolution: {integrity: sha512-5YUJVv6NwM1z7m6FuYpKfNLTZ932Z6EF6xy2BbtpJSyn13DKNQEkXVffFVSnJHxvwwWh2SAeumpjAYUELqgjyw==} + + '@types/memcached@2.2.10': + resolution: {integrity: sha512-AM9smvZN55Gzs2wRrqeMHVP7KE8KWgCJO/XL5yCly2xF6EKa4YlbpK+cLSAH4NG/Ah64HrlegmGqW8kYws7Vxg==} + + '@types/mime-db@1.43.5': + resolution: {integrity: sha512-/bfTiIUTNPUBnwnYvUxXAre5MhD88jgagLEQiQtIASjU+bwxd8kS/ASDA4a8ufd8m0Lheu6eeMJHEUpLHoJ28A==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/mixpanel-browser@2.60.0': + resolution: {integrity: sha512-70oe8T3KdxHwsSo5aZphALdoqcsIorQBrlisnouIn9Do4dmC2C6/D56978CmSE/BO2QHgb85ojPGa4R8OFvVHA==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/mysql@2.15.22': + resolution: {integrity: sha512-wK1pzsJVVAjYCSZWQoWHziQZbNggXFDUEIGf54g4ZM/ERuP86uGdWeKZWMYlqTPMZfHJJvLPyogXGvCOg87yLQ==} + + '@types/node@14.18.63': + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} + + '@types/node@20.16.7': + resolution: {integrity: sha512-QkDQjAY3gkvJNcZOWwzy3BN34RweT0OQ9zJyvLCU0kSK22dO2QYh/NHGfbEAYylPYzRB1/iXcojS79wOg5gFSw==} + + '@types/papaparse@5.3.16': + resolution: {integrity: sha512-T3VuKMC2H0lgsjI9buTB3uuKj3EMD2eap1MOuEQuBQ44EnDx/IkGhU6EwiTf9zG3za4SKlmwKAImdDKdNnCsXg==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/pg-pool@2.0.4': + resolution: {integrity: sha512-qZAvkv1K3QbmHHFYSNRYPkRjOWRLBYrL4B9c+wG0GSVGBw0NtJwPcgx/DSddeDJvRGMHCEQ4VMEVfuJ/0gZ3XQ==} + + '@types/pg@8.6.1': + resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==} + + '@types/phoenix@1.6.6': + resolution: {integrity: sha512-PIzZZlEppgrpoT2QgbnDU+MMzuR6BbCjllj0bM70lWoejMeNJAxCchxnv7J3XFkI8MpygtRpzXrIlmWUBclP5A==} + + '@types/prop-types@15.7.14': + resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==} + + '@types/qrcode@1.5.5': + resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==} + + '@types/qs@6.14.0': + resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==} + + '@types/ramda@0.30.2': + resolution: {integrity: sha512-PyzHvjCalm2BRYjAU6nIB3TprYwMNOUY/7P/N8bSzp9W/yM2YrtGtAnnVtaCNSeOZ8DzKyFDvaqQs7LnWwwmBA==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-dom@18.3.1': + resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} + + '@types/react-google-recaptcha@2.1.9': + resolution: {integrity: sha512-nT31LrBDuoSZJN4QuwtQSF3O89FVHC4jLhM+NtKEmVF5R1e8OY0Jo4//x2Yapn2aNHguwgX5doAq8Zo+Ehd0ug==} + + '@types/react-scroll@1.8.10': + resolution: {integrity: sha512-RD4Z7grbdNGOKwKnUBKar6zNxqaW3n8m9QSrfvljW+gmkj1GArb8AFBomVr6xMOgHPD3v1uV3BrIf01py57daQ==} + + '@types/react-transition-group@4.4.12': + resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==} + peerDependencies: + '@types/react': 18.3.12 + + '@types/react@18.3.12': + resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} + + '@types/semver@7.7.0': + resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-static@1.15.7': + resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + + '@types/shimmer@1.2.0': + resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/swagger-ui-react@5.18.0': + resolution: {integrity: sha512-c2M9adVG7t28t1pq19K9Jt20VLQf0P/fwJwnfcmsVVsdkwCWhRmbKDu+tIs0/NGwJ/7GY8lBx+iKZxuDI5gDbw==} + + '@types/tedious@4.0.14': + resolution: {integrity: sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw==} + + '@types/tern@0.23.9': + resolution: {integrity: sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==} + + '@types/tough-cookie@4.0.5': + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + + '@types/trusted-types@2.0.7': + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/use-sync-external-store@0.0.6': + resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==} + + '@types/ws@8.18.1': + resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@17.0.33': + resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==} + + '@typescript-eslint/eslint-plugin@5.62.0': + resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/eslint-plugin@8.14.0': + resolution: {integrity: sha512-tqp8H7UWFaZj0yNO6bycd5YjMwxa6wIHOLZvWPkidwbgLCsBMetQoGj7DPuAlWa2yGO3H48xmPwjhsSPPCGU5w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/parser@8.14.0': + resolution: {integrity: sha512-2p82Yn9juUJq0XynBXtFCyrBDb6/dJombnz6vbo6mgQEtWHfvHbQuEa9kAOVIt1c9YFwi7H6WxtPj1kg+80+RA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/parser@8.33.1': + resolution: {integrity: sha512-qwxv6dq682yVvgKKp2qWwLgRbscDAYktPptK4JPojCwwi3R9cwrvIxS4lvBpzmcqzR4bdn54Z0IG1uHFskW4dA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/project-service@8.33.1': + resolution: {integrity: sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/scope-manager@5.62.0': + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/scope-manager@8.14.0': + resolution: {integrity: sha512-aBbBrnW9ARIDn92Zbo7rguLnqQ/pOrUguVpbUwzOhkFg2npFDwTgPGqFqE0H5feXcOoJOfX3SxlJaKEVtq54dw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/scope-manager@8.33.1': + resolution: {integrity: sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.33.1': + resolution: {integrity: sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/type-utils@5.62.0': + resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/type-utils@8.14.0': + resolution: {integrity: sha512-Xcz9qOtZuGusVOH5Uk07NGs39wrKkf3AxlkK79RBK6aJC1l03CobXjJbwBPSidetAOV+5rEVuiT1VSBUOAsanQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/types@5.62.0': + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/types@8.14.0': + resolution: {integrity: sha512-yjeB9fnO/opvLJFAsPNYlKPnEM8+z4og09Pk504dkqonT02AyL5Z9SSqlE0XqezS93v6CXn49VHvB2G7XSsl0g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/types@8.33.1': + resolution: {integrity: sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@5.62.0': + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@8.14.0': + resolution: {integrity: sha512-OPXPLYKGZi9XS/49rdaCbR5j/S14HazviBlUQFvSKz3npr3NikF+mrgK7CFVur6XEt95DZp/cmke9d5i3vtVnQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + '@typescript-eslint/typescript-estree@8.33.1': + resolution: {integrity: sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/utils@5.62.0': + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@typescript-eslint/utils@8.14.0': + resolution: {integrity: sha512-OGqj6uB8THhrHj0Fk27DcHPojW7zKwKkPmHXHvQ58pLYp4hy8CSUdTKykKeh+5vFqTTVmjz0zCOOPKRovdsgHA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + + '@typescript-eslint/utils@8.33.1': + resolution: {integrity: sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/visitor-keys@5.62.0': + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/visitor-keys@8.14.0': + resolution: {integrity: sha512-vG0XZo8AdTH9OE6VFRwAZldNc7qtJ/6NLGWak+BtENuEUXGZgFpihILPiBvKXvJ2nFu27XNGC6rKiwuaoMbYzQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/visitor-keys@8.33.1': + resolution: {integrity: sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@uidotdev/usehooks@2.4.1': + resolution: {integrity: sha512-1I+RwWyS+kdv3Mv0Vmc+p0dPYH0DTRAo04HLyXReYBL9AeseDWUJyi4THuksBJcu9F0Pih69Ak150VDnqbVnXg==} + engines: {node: '>=16'} + peerDependencies: + react: '>=18.0.0' + react-dom: '>=18.0.0' + + '@unrs/resolver-binding-darwin-arm64@1.7.11': + resolution: {integrity: sha512-i3/wlWjQJXMh1uiGtiv7k1EYvrrS3L1hdwmWJJiz1D8jWy726YFYPIxQWbEIVPVAgrfRR0XNlLrTQwq17cuCGw==} + cpu: [arm64] + os: [darwin] + + '@unrs/resolver-binding-darwin-x64@1.7.11': + resolution: {integrity: sha512-8XXyFvc6w6kmMmi6VYchZhjd5CDcp+Lv6Cn1YmUme0ypsZ/0Kzd+9ESrWtDrWibKPTgSteDTxp75cvBOY64FQQ==} + cpu: [x64] + os: [darwin] + + '@unrs/resolver-binding-freebsd-x64@1.7.11': + resolution: {integrity: sha512-0qJBYzP8Qk24CZ05RSWDQUjdiQUeIJGfqMMzbtXgCKl/a5xa6thfC0MQkGIr55LCLd6YmMyO640ifYUa53lybQ==} + cpu: [x64] + os: [freebsd] + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.11': + resolution: {integrity: sha512-1sGwpgvx+WZf0GFT6vkkOm6UJ+mlsVnjw+Yv9esK71idWeRAG3bbpkf3AoY8KIqKqmnzJExi0uKxXpakQ5Pcbg==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm-musleabihf@1.7.11': + resolution: {integrity: sha512-D/1F/2lTe+XAl3ohkYj51NjniVly8sIqkA/n1aOND3ZMO418nl2JNU95iVa1/RtpzaKcWEsNTtHRogykrUflJg==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-gnu@1.7.11': + resolution: {integrity: sha512-7vFWHLCCNFLEQlmwKQfVy066ohLLArZl+AV/AdmrD1/pD1FlmqM+FKbtnONnIwbHtgetFUCV/SRi1q4D49aTlw==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-musl@1.7.11': + resolution: {integrity: sha512-tYkGIx8hjWPh4zcn17jLEHU8YMmdP2obRTGkdaB3BguGHh31VCS3ywqC4QjTODjmhhNyZYkj/1Dz/+0kKvg9YA==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-ppc64-gnu@1.7.11': + resolution: {integrity: sha512-6F328QIUev29vcZeRX6v6oqKxfUoGwIIAhWGD8wSysnBYFY0nivp25jdWmAb1GildbCCaQvOKEhCok7YfWkj4Q==} + cpu: [ppc64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-gnu@1.7.11': + resolution: {integrity: sha512-NqhWmiGJGdzbZbeucPZIG9Iav4lyYLCarEnxAceguMx9qlpeEF7ENqYKOwB8Zqk7/CeuYMEcLYMaW2li6HyDzQ==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-musl@1.7.11': + resolution: {integrity: sha512-J2RPIFKMdTrLtBdfR1cUMKl8Gcy05nlQ+bEs/6al7EdWLk9cs3tnDREHZ7mV9uGbeghpjo4i8neNZNx3PYUY9w==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-s390x-gnu@1.7.11': + resolution: {integrity: sha512-bDpGRerHvvHdhun7MmFUNDpMiYcJSqWckwAVVRTJf8F+RyqYJOp/mx04PDc7DhpNPeWdnTMu91oZRMV+gGaVcQ==} + cpu: [s390x] + os: [linux] + + '@unrs/resolver-binding-linux-x64-gnu@1.7.11': + resolution: {integrity: sha512-G9U7bVmylzRLma3cK39RBm3guoD1HOvY4o0NS4JNm37AD0lS7/xyMt7kn0JejYyc0Im8J+rH69/dXGM9DAJcSQ==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-linux-x64-musl@1.7.11': + resolution: {integrity: sha512-7qL20SBKomekSunm7M9Fe5L93bFbn+FbHiGJbfTlp0RKhPVoJDP73vOxf1QrmJHyDPECsGWPFnKa/f8fO2FsHw==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-wasm32-wasi@1.7.11': + resolution: {integrity: sha512-jisvIva8MidjI+B1lFRZZMfCPaCISePgTyR60wNT1MeQvIh5Ksa0G3gvI+Iqyj3jqYbvOHByenpa5eDGcSdoSg==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@unrs/resolver-binding-win32-arm64-msvc@1.7.11': + resolution: {integrity: sha512-G+H5nQZ8sRZ8ebMY6mRGBBvTEzMYEcgVauLsNHpvTUavZoCCRVP1zWkCZgOju2dW3O22+8seTHniTdl1/uLz3g==} + cpu: [arm64] + os: [win32] + + '@unrs/resolver-binding-win32-ia32-msvc@1.7.11': + resolution: {integrity: sha512-Hfy46DBfFzyv0wgR0MMOwFFib2W2+Btc8oE5h4XlPhpelnSyA6nFxkVIyTgIXYGTdFaLoZFNn62fmqx3rjEg3A==} + cpu: [ia32] + os: [win32] + + '@unrs/resolver-binding-win32-x64-msvc@1.7.11': + resolution: {integrity: sha512-7L8NdsQlCJ8T106Gbz/AjzM4QKWVsoQbKpB9bMBGcIZswUuAnJMHpvbqGW3RBqLHCIwX4XZ5fxSBHEFcK2h9wA==} + cpu: [x64] + os: [win32] + + '@visulima/boxen@1.0.31': + resolution: {integrity: sha512-h4l4XCxXGaj1zoKa9DuX7ULLpWsc/tvzAFbQ2bs4gpS0ePtFOpV0Sqp8SqtGuI1U9pU+FSyCpUWXll7J209pdQ==} + engines: {node: '>=18.0.0 <=23.x'} + os: [darwin, linux, win32] + + '@vitejs/plugin-react@4.5.1': + resolution: {integrity: sha512-uPZBqSI0YD4lpkIru6M35sIfylLGTyhGHvDZbNLuMA73lMlwJKz5xweH7FajfcCAc2HnINciejA9qTz0dr0M7A==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 + + '@wagmi/connectors@5.7.11': + resolution: {integrity: sha512-vJWOXMeYWmczvlsEZHq52yOoC2qu5kU8Saj6Bo+BtyfYcX1tJODZTKed3TMIoKhUx0W3vna1UIwG7GskmxGKKA==} + peerDependencies: + '@wagmi/core': 2.16.7 + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + + '@wagmi/connectors@5.8.4': + resolution: {integrity: sha512-WuDH6GMDc/wbWhCcpLvUFglN/ANXht9wXD8M3rvYPGBYcuvDOOh7eXGHaDqVUpgJLcvvy0WWkTuesNbK8FCayQ==} + peerDependencies: + '@wagmi/core': 2.17.2 + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + + '@wagmi/core@2.16.7': + resolution: {integrity: sha512-Kpgrw6OXV0VBhDs4toQVKQ0NK5yUO6uxEqnvRGjNjbO85d93Gbfsp5BlxSLeWq6iVMSBFSitdl5i9W7b1miq1g==} + peerDependencies: + '@tanstack/query-core': '>=5.0.0' + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + '@tanstack/query-core': + optional: true + typescript: + optional: true + + '@walletconnect/core@2.19.1': + resolution: {integrity: sha512-rMvpZS0tQXR/ivzOxN1GkHvw3jRRMlI/jRX5g7ZteLgg2L0ZcANsFvAU5IxILxIKcIkTCloF9TcfloKVbK3qmw==} + engines: {node: '>=18'} + + '@walletconnect/core@2.21.0': + resolution: {integrity: sha512-o6R7Ua4myxR8aRUAJ1z3gT9nM+jd2B2mfamu6arzy1Cc6vi10fIwFWb6vg3bC8xJ6o9H3n/cN5TOW3aA9Y1XVw==} + engines: {node: '>=18'} + + '@walletconnect/core@2.21.1': + resolution: {integrity: sha512-Tp4MHJYcdWD846PH//2r+Mu4wz1/ZU/fr9av1UWFiaYQ2t2TPLDiZxjLw54AAEpMqlEHemwCgiRiAmjR1NDdTQ==} + engines: {node: '>=18'} + + '@walletconnect/environment@1.0.1': + resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==} + + '@walletconnect/ethereum-provider@2.19.1': + resolution: {integrity: sha512-bs8Kiwdw3cGb8ITO8+YymesGfFnucJreQmVbZ0vl/Ogoh38n1T5w0ekjmD/NjTDS3oZaUQyBm3V2UjIBR0qedw==} + + '@walletconnect/ethereum-provider@2.21.1': + resolution: {integrity: sha512-SSlIG6QEVxClgl1s0LMk4xr2wg4eT3Zn/Hb81IocyqNSGfXpjtawWxKxiC5/9Z95f1INyBD6MctJbL/R1oBwIw==} + + '@walletconnect/events@1.0.1': + resolution: {integrity: sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==} + + '@walletconnect/heartbeat@1.2.2': + resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==} + + '@walletconnect/jsonrpc-http-connection@1.0.8': + resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==} + + '@walletconnect/jsonrpc-provider@1.0.14': + resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==} + + '@walletconnect/jsonrpc-types@1.0.4': + resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==} + + '@walletconnect/jsonrpc-utils@1.0.8': + resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} + + '@walletconnect/jsonrpc-ws-connection@1.0.16': + resolution: {integrity: sha512-G81JmsMqh5nJheE1mPst1W0WfVv0SG3N7JggwLLGnI7iuDZJq8cRJvQwLGKHn5H1WTW7DEPCo00zz5w62AbL3Q==} + + '@walletconnect/keyvaluestorage@1.1.1': + resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==} + peerDependencies: + '@react-native-async-storage/async-storage': 1.x + peerDependenciesMeta: + '@react-native-async-storage/async-storage': + optional: true + + '@walletconnect/logger@2.1.2': + resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} + + '@walletconnect/modal-core@2.7.0': + resolution: {integrity: sha512-oyMIfdlNdpyKF2kTJowTixZSo0PGlCJRdssUN/EZdA6H6v03hZnf09JnwpljZNfir2M65Dvjm/15nGrDQnlxSA==} + + '@walletconnect/modal-ui@2.7.0': + resolution: {integrity: sha512-gERYvU7D7K1ANCN/8vUgsE0d2hnRemfAFZ2novm9aZBg7TEd/4EgB+AqbJ+1dc7GhOL6dazckVq78TgccHb7mQ==} + + '@walletconnect/modal@2.7.0': + resolution: {integrity: sha512-RQVt58oJ+rwqnPcIvRFeMGKuXb9qkgSmwz4noF8JZGUym3gUAzVs+uW2NQ1Owm9XOJAV+sANrtJ+VoVq1ftElw==} + deprecated: Please follow the migration guide on https://docs.reown.com/appkit/upgrade/wcm + + '@walletconnect/relay-api@1.0.11': + resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==} + + '@walletconnect/relay-auth@1.1.0': + resolution: {integrity: sha512-qFw+a9uRz26jRCDgL7Q5TA9qYIgcNY8jpJzI1zAWNZ8i7mQjaijRnWFKsCHAU9CyGjvt6RKrRXyFtFOpWTVmCQ==} + + '@walletconnect/safe-json@1.0.2': + resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==} + + '@walletconnect/sign-client@2.19.1': + resolution: {integrity: sha512-OgBHRPo423S02ceN3lAzcZ3MYb1XuLyTTkKqLmKp/icYZCyRzm3/ynqJDKndiBLJ5LTic0y07LiZilnliYqlvw==} + + '@walletconnect/sign-client@2.21.0': + resolution: {integrity: sha512-z7h+PeLa5Au2R591d/8ZlziE0stJvdzP9jNFzFolf2RG/OiXulgFKum8PrIyXy+Rg2q95U9nRVUF9fWcn78yBA==} + + '@walletconnect/sign-client@2.21.1': + resolution: {integrity: sha512-QaXzmPsMnKGV6tc4UcdnQVNOz4zyXgarvdIQibJ4L3EmLat73r5ZVl4c0cCOcoaV7rgM9Wbphgu5E/7jNcd3Zg==} + + '@walletconnect/time@1.0.2': + resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} + + '@walletconnect/types@2.19.1': + resolution: {integrity: sha512-XWWGLioddH7MjxhyGhylL7VVariVON2XatJq/hy0kSGJ1hdp31z194nHN5ly9M495J9Hw8lcYjGXpsgeKvgxzw==} + + '@walletconnect/types@2.21.0': + resolution: {integrity: sha512-ll+9upzqt95ZBWcfkOszXZkfnpbJJ2CmxMfGgE5GmhdxxxCcO5bGhXkI+x8OpiS555RJ/v/sXJYMSOLkmu4fFw==} + + '@walletconnect/types@2.21.1': + resolution: {integrity: sha512-UeefNadqP6IyfwWC1Yi7ux+ljbP2R66PLfDrDm8izmvlPmYlqRerJWJvYO4t0Vvr9wrG4Ko7E0c4M7FaPKT/sQ==} + + '@walletconnect/universal-provider@2.19.1': + resolution: {integrity: sha512-4rdLvJ2TGDIieNWW3sZw2MXlX65iHpTuKb5vyvUHQtjIVNLj+7X/09iUAI/poswhtspBK0ytwbH+AIT/nbGpjg==} + + '@walletconnect/universal-provider@2.21.0': + resolution: {integrity: sha512-mtUQvewt+X0VBQay/xOJBvxsB3Xsm1lTwFjZ6WUwSOTR1X+FNb71hSApnV5kbsdDIpYPXeQUbGt2se1n5E5UBg==} + + '@walletconnect/universal-provider@2.21.1': + resolution: {integrity: sha512-Wjx9G8gUHVMnYfxtasC9poGm8QMiPCpXpbbLFT+iPoQskDDly8BwueWnqKs4Mx2SdIAWAwuXeZ5ojk5qQOxJJg==} + + '@walletconnect/utils@2.19.1': + resolution: {integrity: sha512-aOwcg+Hpph8niJSXLqkU25pmLR49B8ECXp5gFQDW5IeVgXHoOoK7w8a79GBhIBheMLlIt1322sTKQ7Rq5KzzFg==} + + '@walletconnect/utils@2.21.0': + resolution: {integrity: sha512-zfHLiUoBrQ8rP57HTPXW7rQMnYxYI4gT9yTACxVW6LhIFROTF6/ytm5SKNoIvi4a5nX5dfXG4D9XwQUCu8Ilig==} + + '@walletconnect/utils@2.21.1': + resolution: {integrity: sha512-VPZvTcrNQCkbGOjFRbC24mm/pzbRMUq2DSQoiHlhh0X1U7ZhuIrzVtAoKsrzu6rqjz0EEtGxCr3K1TGRqDG4NA==} + + '@walletconnect/window-getters@1.0.1': + resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} + + '@walletconnect/window-metadata@1.0.1': + resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} + + '@webassemblyjs/ast@1.14.1': + resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} + + '@webassemblyjs/floating-point-hex-parser@1.13.2': + resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} + + '@webassemblyjs/helper-api-error@1.13.2': + resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} + + '@webassemblyjs/helper-buffer@1.14.1': + resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} + + '@webassemblyjs/helper-numbers@1.13.2': + resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} + + '@webassemblyjs/helper-wasm-bytecode@1.13.2': + resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==} + + '@webassemblyjs/helper-wasm-section@1.14.1': + resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==} + + '@webassemblyjs/ieee754@1.13.2': + resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} + + '@webassemblyjs/leb128@1.13.2': + resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==} + + '@webassemblyjs/utf8@1.13.2': + resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==} + + '@webassemblyjs/wasm-edit@1.14.1': + resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} + + '@webassemblyjs/wasm-gen@1.14.1': + resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==} + + '@webassemblyjs/wasm-opt@1.14.1': + resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==} + + '@webassemblyjs/wasm-parser@1.14.1': + resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} + + '@webassemblyjs/wast-printer@1.14.1': + resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} + + '@xstate/fsm@1.4.0': + resolution: {integrity: sha512-uTHDeu2xI5E1IFwf37JFQM31RrH7mY7877RqPBS4ZqSNUwoLDuct8AhBWaXGnVizBAYyimVwgCyGa9z/NiRhXA==} + + '@xstate/fsm@1.6.5': + resolution: {integrity: sha512-b5o1I6aLNeYlU/3CPlj/Z91ybk1gUsKT+5NAJI+2W4UjvS5KLG28K9v5UvNoFVjHV8PajVZ00RH3vnjyQO7ZAw==} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@yarnpkg/lockfile@1.1.0': + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + + '@zag-js/accordion@1.7.0': + resolution: {integrity: sha512-LNJOjLTW2KwrToXBrXIbNIAiISA94n0AdWp14H8RrskdokywmEGiC0GgWTGEJ7DNA6TGP6Ae5o9rJ4fHSmCsDQ==} + + '@zag-js/anatomy@1.7.0': + resolution: {integrity: sha512-fkRgH6vPCwykmRdV38uAJeTtJc8tayAnURfoovHAtB9bK0goagPbpdcYTNyGn8msul0h+KBloOtnw4obvX0nPw==} + + '@zag-js/aria-hidden@1.7.0': + resolution: {integrity: sha512-YNbACFZoqw/1JymxCZXtuAFdeYZm7sK3E0jv3bPbqytPj7TziLa1dRDWDdx8cPcu0B4n4WrBMBSCGUjj/nWDCA==} + + '@zag-js/auto-resize@1.7.0': + resolution: {integrity: sha512-ifWflzZc1fNJ+XUZaYpB220AiAr4l3Eczq8ELwj/ugg7T/10Wo0FkxTCVmCZfIiCMoqHuh/2oTX3PCTIwg6uxg==} + + '@zag-js/avatar@1.7.0': + resolution: {integrity: sha512-vzMCMpYIM2BIvPvK34VaRMUsUSpg3jwoxCzA31k+QrCmjm3ti8pLoT4waE01XHiaQwNPcTFbMWUi/nIQQKG14A==} + + '@zag-js/carousel@1.7.0': + resolution: {integrity: sha512-bSbo00J7/4EhXKluQnCmH3dg+GjsI1dcogMNtY3Qe/hTUJI9F8ygXHWzkbEqe2iY8JkBucRm+IVdlAOGAjVARQ==} + + '@zag-js/checkbox@1.7.0': + resolution: {integrity: sha512-zhisqMrgKZNHyb5n4xN5JYdPU8P+duPJfy18SiHRMghi7rJrfnQZ/Ec+uEih1cGhu85juco5k9ud/AiT7bD6MA==} + + '@zag-js/clipboard@1.7.0': + resolution: {integrity: sha512-rPLoIE7zKBRiHwAzSu/hT21ICMP7TmSWZGvCPV0hjtAE/sFAf/rsEwcx2DT3uBhUtoFQR7tqNRn4CnIGWkr2Fg==} + + '@zag-js/collapsible@1.7.0': + resolution: {integrity: sha512-W6+3tAC/ilU/ffCLhdJ2bMMTuZSgHnCaLMQemUUS4kMLKUyEdXTqxKzaTEqcBQfHotsYLQUfrK57hoiAKE/UgA==} + + '@zag-js/collection@1.7.0': + resolution: {integrity: sha512-gH7I03ag2niEhCVgNpXBYybnIROGXmAkX+5e1rYQ60mOh2oQnK+5k9k3DRkca5rAKbu4uT6JjYFwnY9sA/NZfA==} + + '@zag-js/color-picker@1.7.0': + resolution: {integrity: sha512-t439DB6EUrcj4f+MsLOIpttr3hsP4j3OgznJwSlwWt7Wsyhu9uX7cyevA56w4L4nt7lD1AP7305eN6AnILakjg==} + + '@zag-js/color-utils@1.7.0': + resolution: {integrity: sha512-OvBr4v0x7/Hkts4NFychApkSoV0kDuLhRdcjm1DcHbX5DBGlptnDqGZaswbs5KMYXXH23HDgnBRWmnvmfmGDkg==} + + '@zag-js/combobox@1.7.0': + resolution: {integrity: sha512-kaMvGoBZwiFC9KaUbHXNFkneg7grZmJlteVxk6kJXYd7JGDHhhYsFznPNIC0apvBCIEqwyBGVB/lCjK+BseZtw==} + + '@zag-js/core@1.7.0': + resolution: {integrity: sha512-FyK1POPqgBp7DBpUIwvmBQH16+L52NaTaQJzg8iTI9mI/4m3AxZ5aN+8a8qzwGIkVI6rlDcrBkmuOcHDVIOEGA==} + + '@zag-js/date-picker@1.7.0': + resolution: {integrity: sha512-64UEmdN74I4aOPS1+7zNSl0VHzUIVLDfgXw0QZ24miMM+SYVcZ1+KSVI4yeS4SETwGpdm9YkvN4z3guCtwcS+w==} + peerDependencies: + '@internationalized/date': '>=3.0.0' + + '@zag-js/date-utils@1.7.0': + resolution: {integrity: sha512-zZHFx3ZuIHB38qTQzG9/frj9nFLE3JUwMkiueIVdPEgaRl7Tx5VZ3NcDKXQn9ebmXi/Zk9YOAUBr7aGXBBOAcA==} + peerDependencies: + '@internationalized/date': '>=3.0.0' + + '@zag-js/dialog@1.7.0': + resolution: {integrity: sha512-gx/CtKsPg/Y+2d+HtP3tjEdl7KM+x6lUDttjDDBn9rvXFs2REW69AlcJtRzs6B22CxDPmxssGPr1oi3zaU1AUA==} + + '@zag-js/dismissable@1.7.0': + resolution: {integrity: sha512-o6S++e7iaBmizIgsvLt5RwY7gn2OQGeG2etet+oaUAMtNhi/1+uGG+rTZgOMj/MGg9BYpPld5tXfk/RrlShh9Q==} + + '@zag-js/dom-query@1.7.0': + resolution: {integrity: sha512-cj+mKB7Sj7mqAepHMsbV4bGvDJfUYCt4d4ruYw0dVpDa1Z9N38TtztTznfrm9kuqOYcJkgE0q3Rn/kPLi8rK8g==} + + '@zag-js/editable@1.7.0': + resolution: {integrity: sha512-tNRDr95B+mFLk6Z8Fh0+BiDiCWsUt1iR0pIjFy88Y4YjGYd8Q71yNt1SLNKTD3DZnDGmlbRUB/4CaP+jso4aYQ==} + + '@zag-js/element-rect@1.7.0': + resolution: {integrity: sha512-j0h1+DASUI5urwBCELdjfk4oekLQ0D2v3a1wQJopGh+ITRVAC1gE1YFx3O+vnP2HwqANxG4+RQHwoQBM2bMBCQ==} + + '@zag-js/element-size@1.7.0': + resolution: {integrity: sha512-Nq+HxG64Ts1QvaJPeDuy8zo/RqcbE95RPNVuHBwuxK3sbXOt7umgIrxQMp8uH+1xeJlp7F8/ydKOPyKOTtgiJg==} + + '@zag-js/file-upload@1.7.0': + resolution: {integrity: sha512-6yJhUDLYsqbd0YBO70PzMDNVJJv8OdC0ZWrf51GMUSugGfSpvQZNDfpAW5Zkzqd4B5nkJDw5KiTSR5NYQlO7VA==} + + '@zag-js/file-utils@1.7.0': + resolution: {integrity: sha512-Wb1VoI7UquG1ckJPMFPnmgLg351NI55SXjsEq+CrqgKQCo0httYFLPlkOpp4AbGsoUFZxXRxEXDEVzq5kpPFzQ==} + + '@zag-js/focus-trap@1.7.0': + resolution: {integrity: sha512-JHMZAfiL1aoxMAQGolx+iDMgqOMy067yffaLr1tMX55NGZPfEyXEjgxmPXRPf728/7IOShLkWLX17yacmW/w/Q==} + + '@zag-js/focus-visible@1.7.0': + resolution: {integrity: sha512-ycrO6VetctoA7aaw83rnp3erDmQe2Zsyobzp4fzpMbOBTNWzMklt4Kz54xa1ntkia8CpSWVfoauORLlaZoDiAw==} + + '@zag-js/highlight-word@1.7.0': + resolution: {integrity: sha512-dRw9GbMTh+CKKA4dH6n2TEmaayH2cB5Otnaawm+o+q3gkioVij8V/owWFbMZrszW6ajJX/TTdsVJ5IBdPvKhKg==} + + '@zag-js/hover-card@1.7.0': + resolution: {integrity: sha512-MqrLet1qaJfc2MEvHUWGLQ1OxgTz73gAD7oWXxnxks2Q/BXow2jU3+fVdseg3G63bmUbHXSdOkyGNo0mpHCV3Q==} + + '@zag-js/i18n-utils@1.7.0': + resolution: {integrity: sha512-CcDXxfobG2LlOU1m3xPzV5pXpCe0tSE9u+drtKMz7F/HOZkR3V0rpCCi/zKySPNa3uLC7G8efz1fGQXiOVKONw==} + + '@zag-js/interact-outside@1.7.0': + resolution: {integrity: sha512-tmsVQmcH2N2X2mG2/8/+WRIo9WbRVvLe1OZa3lzFYV4Mu5i+tNK1CHMESpoAd/RdjJ6AyTR2zYiH05WZe76gMw==} + + '@zag-js/live-region@1.7.0': + resolution: {integrity: sha512-u2bYIAnBIY+GZqfPqxn2ZylOqE2blUVW7Yc2Z4Ey05K4JXSH2gKR3xPmJCS9/u8tcFKQz5L4KQ/98ntgBG2fGQ==} + + '@zag-js/menu@1.7.0': + resolution: {integrity: sha512-F2XbPC0cWrmj7nLrs1/is2osaPYX9blhEiZuEcGSrWG00w6xWyPb7bFpccW2nbq87JEc58xzW1pnTzPnaAnwSQ==} + + '@zag-js/number-input@1.7.0': + resolution: {integrity: sha512-zmStn38lscmSsX/P6hZQzan35nEstVmEGC6M3m5G+bzDRC+IR3h19yr1Ma+xXDkT1Vi21GaV0+rytf9WsYJg6Q==} + + '@zag-js/pagination@1.7.0': + resolution: {integrity: sha512-gIbJe1fIYlQCpXqWssET9CCmMWLvcz8OCCw7W3ASeLYRvUW3IzhkMAht5pEsvJEZ9tIWaab5fZ7OLqcgCTgVQw==} + + '@zag-js/pin-input@1.7.0': + resolution: {integrity: sha512-iQfUNfbtq28zPzFjmzDs7otRbFr+kC6luQM33wALZpmmVBNXb7yi9W6R14V6NJI3to6cAaHzRzn3ixxfQJEB3w==} + + '@zag-js/popover@1.7.0': + resolution: {integrity: sha512-Nf9grOVBWlnwQL+AR6X2hAy5bTNQng9xG2Cfo4E8rD2G/CJLKtUGCHHkG8xeQ969HT4urbOrgrZ5UpAhkpNlmw==} + + '@zag-js/popper@1.7.0': + resolution: {integrity: sha512-1Tr9ZBS2VPeZ/zeAR5uEBYLkWn4VcycbaDDkvWxa44fi6LxknDf064cP+ql9AfUp/eUGD2hN9OSEhyxB/JXjKQ==} + + '@zag-js/presence@1.7.0': + resolution: {integrity: sha512-00YcVn3J0zwQ/DSEnbtbCx6UMokHXTiMF+CjNryPaaAOlLk/5s4ogEdrdguFvWxQ6zszQ3UxBh3H9pim+k7jVQ==} + + '@zag-js/progress@1.7.0': + resolution: {integrity: sha512-dfjPtUGRZW0pURBalm55ACoN083EJ90cDT1RRRF72JhqlRJu/vSXngjSUFtYuG1WADGS3D7F5XIFMo+PAGynFg==} + + '@zag-js/qr-code@1.7.0': + resolution: {integrity: sha512-fg/hI2Py6D4E2cvh2BJ4PunYyyivkkRga76K9VDvq+hq1OezB6SzchLjFkIXn6431VK+xrU1HqcSR67KAn8IWA==} + + '@zag-js/radio-group@1.7.0': + resolution: {integrity: sha512-9NlI5fTh8ZVX5nXm7nU/ZheQLZpHwrHZeKRjomVQQALEWuMZ5YJtVXZaUT5xsCRTk+LEQVSaKp10+aD/5cIMlA==} + + '@zag-js/rating-group@1.7.0': + resolution: {integrity: sha512-jDr8M+2fXTxB9l8qm8ktA362eM6Xt6FzIz0dKlV1JsYr5KamhsZ70Y8MPB6i3b45FGdDdj02a2aaWGLRUaRnrw==} + + '@zag-js/react@1.7.0': + resolution: {integrity: sha512-phr7WMVJcwfOkiLwtobGWkdzVGdZmVQYvF7w8awloW0j1+YF2OdMYDZK8RauHwmg+sEVmqtGeZPr40hZNnKhVQ==} + peerDependencies: + react: '>=18.0.0' + react-dom: '>=18.0.0' + + '@zag-js/rect-utils@1.7.0': + resolution: {integrity: sha512-VvpqanvSrD/a5Gf5VHCM9yhkaBFWWsYTRNNQBtguNDrOh/tFvQBFAwes/BxvT+4fG4xbBL/fbSZIyhZ77Q7L2w==} + + '@zag-js/remove-scroll@1.7.0': + resolution: {integrity: sha512-sjuBT/iHUZKoDaIdEa5fn0Ii6qjPbp/xO5g/2n2gI3RhRPjcc9jmrTxuvjKftB+ZoBy4GO8MbeaPKdQLIreufg==} + + '@zag-js/scroll-snap@1.7.0': + resolution: {integrity: sha512-dvRmgdnT0AR2g0RtjgVXGJG6Si4gd+os56u1x3VKzAzlMZWYiFd0iyoKFCr/SCBEEMN/Y3ppkQoZjWOlnpah2g==} + + '@zag-js/select@1.7.0': + resolution: {integrity: sha512-DmKIfoJFO42NgZOspEww5i6j71OqHgUCCodxR0zCmMoISxi1VYYKdjjeeSqivUYoH2mk9+z+lAJF+qdCo45Mzg==} + + '@zag-js/signature-pad@1.7.0': + resolution: {integrity: sha512-m81iwLl0TKsFPRnPLadVIM53q6b7NJJ6fgRH8Z+TImarorV4QcA0IXr2wcj1MLlIa4CPNiXoQrmOnOdIOFHvWA==} + + '@zag-js/slider@1.7.0': + resolution: {integrity: sha512-0h9ejtOWa4XjxApcCFyGt7By22kd6gG4PdUZgXiKlPCQFgYrxWXZqMlwH6ZtyD4VYUuRPJ05CezDU5KlmZD/3A==} + + '@zag-js/splitter@1.7.0': + resolution: {integrity: sha512-iJiKgRqIp/gbzjTajLIjpoc8dVBhjrTGauwVFj2yfKlkM30lgBRBHPtnrtsVox2A5ZyTikuj2ZtMCFXJAL8BDA==} + + '@zag-js/steps@1.7.0': + resolution: {integrity: sha512-niYlKAy4j7yariPVbPJwBgzWhEsE82d7JIxD4yQW1nyyM6+xAgZrJaTG6WY1ogiBLCDj5kZw1rJv1uBBF6I5EA==} + + '@zag-js/store@1.7.0': + resolution: {integrity: sha512-3n+AGo3Y3d1+SkEjY/6QPcDU5kfGu4DEA9qMxJgnnOlYT07SEWByMQD2uoEji9M9psHcVvxm86OnF3Y6UuTsuA==} + + '@zag-js/switch@1.7.0': + resolution: {integrity: sha512-sz3whYMAD949fJ5v9DegU43SrpUNKhoPOum4LOpoSrh364ePfm7ShsTIgJnqPrdMknr+17ljLx54tXPS1SsMTw==} + + '@zag-js/tabs@1.7.0': + resolution: {integrity: sha512-bAMp7Vhyis5j3BSKs4m0OwsbchRLLzFf6Yaf54CNraAUdKRwLQckznrajQLPI5F+BrHkGzMXvj/lt9jlGiKDcw==} + + '@zag-js/tags-input@1.7.0': + resolution: {integrity: sha512-ME/KwP1yrPHX0bP0EqkHI30IQgrE2cAkREoRluM5ScpG3Uiug98x6+zts0YS9j1OB3pyTl0d4alECBruxN8cPA==} + + '@zag-js/time-picker@1.7.0': + resolution: {integrity: sha512-oeJ/2cHUD/iNF9LVWeFZ0ZrUDpMcSjb1lScqmrDdSuBpt9Hv5NLwjKFVeCtcE7VP3ijgN1VHY5FJzqQyynK9tw==} + peerDependencies: + '@internationalized/date': '>=3.0.0' + + '@zag-js/timer@1.7.0': + resolution: {integrity: sha512-IpFkbuyBPJl/1idCchljtpZ0PirJWHLpvoFrEnyXQ7clyIeeLuYjyMMfwG+BVWZ7BeYby9A+b0+UNksvoJLtvQ==} + + '@zag-js/toast@1.7.0': + resolution: {integrity: sha512-tvEO1vpC9QZ0oYJOKay2dvcq5lAPn4MT7ahnALs89iVjhWyguXAs5kzoq/Devlbuhi+bUY1YxvtrMDJjYVFhaA==} + + '@zag-js/toggle-group@1.7.0': + resolution: {integrity: sha512-qf8S66MUSw95S65BFH+PUtPs6GCLd39MWHJqzvZSXS+UWCLNXQlK8ayrNYh6CQgtgNeyljMqc2pFGWmp+M987w==} + + '@zag-js/toggle@1.7.0': + resolution: {integrity: sha512-94TEthfGXjNmPcIiaOlwwEm73SSI2rRVn6FPviatzQU/OcDaaiAxuvGMIkW7Ov4+1sniAElGP24LTnyz0QuQpg==} + + '@zag-js/tooltip@1.7.0': + resolution: {integrity: sha512-ehZOewcxYZL4+ND5QMeDlQQrckssMTzxcReRCOVFXrRZb5X1jX6+ale9MSG+cJYMpQUqT2J5VtzMJH+GNj/jfw==} + + '@zag-js/tour@1.7.0': + resolution: {integrity: sha512-P8wYE0OpW1GtopvQ7ELdF2SuTMI64iBSr4UYGRCt2WkbrjP0vkFp35iUEbFmE44cRKIF8jGU6gznSPCGnGjz9A==} + + '@zag-js/tree-view@1.7.0': + resolution: {integrity: sha512-ULjbcLG3PqYV5BKNW8Z9Ikh+67GblYhEscgfBN4X3BLv9KOG6J0Gp4JQkxkWBTeRpUCTnoBgZ1ZbeOFgNJbcfQ==} + + '@zag-js/types@1.7.0': + resolution: {integrity: sha512-rmPonVc8EBOGIEJYjzWIBQ6LJwUMc3LnipRREECO+n7LNlUQUliCOFbHw1UOGP+4ZkCKmxjGFR3jLtjY8aN4gQ==} + + '@zag-js/utils@1.7.0': + resolution: {integrity: sha512-yIxvH5V27a1WuLgCxHX7qpdtFo8vTJaZLafBpSNfVYG4B8FaxTE+P7JAcpmAzs3UyXura/WfAY2eVWWVBpk9ZA==} + + '@zip.js/zip.js@2.7.62': + resolution: {integrity: sha512-OaLvZ8j4gCkLn048ypkZu29KX30r8/OfFF2w4Jo5WXFr+J04J+lzJ5TKZBVgFXhlvSkqNFQdfnY1Q8TMTCyBVA==} + engines: {bun: '>=0.7.0', deno: '>=1.0.0', node: '>=16.5.0'} + + abab@2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + deprecated: Use your platform's native atob() and btoa() methods instead + + abitype@1.0.8: + resolution: {integrity: sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + + abort-controller@3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} + + abort-error@1.0.1: + resolution: {integrity: sha512-fxqCblJiIPdSXIUrxI0PL+eJG49QdP9SQ70qtB65MVAoMr2rASlOyAbJFOylfB467F/f+5BCLJJq58RYi7mGfg==} + + abortcontroller-polyfill@1.7.8: + resolution: {integrity: sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ==} + + acorn-globals@7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + + acorn-import-assertions@1.9.0: + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + deprecated: package has been renamed to acorn-import-attributes + peerDependencies: + acorn: ^8 + + acorn-import-attributes@1.9.5: + resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} + peerDependencies: + acorn: ^8 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@8.14.1: + resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} + engines: {node: '>=0.4.0'} + hasBin: true + + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + engines: {node: '>= 14'} + + airtable@0.12.2: + resolution: {integrity: sha512-HS3VytUBTKj8A0vPl7DDr5p/w3IOGv6RXL0fv7eczOWAtj9Xe8ri4TAiZRXoOyo+Z/COADCj+oARFenbxhmkIg==} + engines: {node: '>=8.0.0'} + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + ansi-color@0.2.1: + resolution: {integrity: sha512-bF6xLaZBLpOQzgYUtYEhJx090nPSZk1BQ/q2oyBK9aMMcJHzx9uXGCjI2Y+LebsN4Jwoykr0V9whbPiogdyHoQ==} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-escapes@7.0.0: + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + any-signal@4.1.1: + resolution: {integrity: sha512-iADenERppdC+A2YKbOXXB2WUeABLaM6qnpZ70kZbPZ1cZMMJ7eF+3CaYm+/PhBizgkzlvssC7QuHS30oOiQYWA==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + apg-lite@1.0.5: + resolution: {integrity: sha512-SlI+nLMQDzCZfS39ihzjGp3JNBQfJXyMi6cg9tkLOCPVErgFsUIAEdO9IezR7kbP5Xd0ozcPNQBkf9TO5cHgWw==} + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-includes@3.1.9: + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} + engines: {node: '>= 0.4'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} + + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + assert@2.1.0: + resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + + ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async-mutex@0.2.6: + resolution: {integrity: sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + + atomic-sleep@1.0.0: + resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} + engines: {node: '>=8.0.0'} + + autolinker@3.16.2: + resolution: {integrity: sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA==} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + axe-core@4.10.3: + resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==} + engines: {node: '>=4'} + + axios@1.9.0: + resolution: {integrity: sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + babel-jest@29.7.0: + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + + babel-plugin-istanbul@6.1.1: + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} + + babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + babel-plugin-macros@3.1.0: + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} + + babel-plugin-polyfill-corejs2@0.4.13: + resolution: {integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-corejs3@0.11.1: + resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-plugin-polyfill-regenerator@0.6.4: + resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + babel-preset-current-node-syntax@1.1.0: + resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} + peerDependencies: + '@babel/core': ^7.0.0 + + babel-preset-jest@29.6.3: + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base-x@5.0.1: + resolution: {integrity: sha512-M7uio8Zt++eg3jPj+rHMfCC+IuygQHHCOU+IYsVtik6FWjuYpVt/+MRKcgsAMHh8mMFAwnB+Bs+mTrFiXjMzKg==} + + base64-arraybuffer@1.0.2: + resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==} + engines: {node: '>= 0.6.0'} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + big.js@6.2.2: + resolution: {integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==} + + bignumber.js@9.3.0: + resolution: {integrity: sha512-EM7aMFTXbptt/wZdMlBv2t8IViwQL+h6SLHosp8Yf0dqJMTnY6iL32opnAB6kAdL0SZPuvcAzFr31o0c/R3/RA==} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bintrees@1.0.2: + resolution: {integrity: sha512-VOMgTMwjAaUG580SXn3LacVgjurrbMme7ZZNYGSSV7mmtY6QQRh0Eg3pwIcntQ77DErK1L0NxkbetjcoXzVwKw==} + + bl@5.1.0: + resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} + + blo@1.2.0: + resolution: {integrity: sha512-bZES7RzJ14B4WBT3JuOHSOAvCBmUhqznrojQ8xRjN1Fx9X9N7R+rygOFS3k4wXel2nFg4lwzL3luAYzObaDLng==} + engines: {node: '>=16'} + + blockstore-core@5.0.4: + resolution: {integrity: sha512-v7wtBEpW2J/kKljN7Z2u4Tnwr7qwnOvW1aPVfynIxEdejlVC7gg4z9k6iJt7n5XMGkdNnH4HOmVcjYcaMnu7yg==} + + bn.js@4.12.2: + resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==} + + bn.js@5.2.2: + resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + bowser@2.11.0: + resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + brorand@1.1.0: + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} + + browser-readablestream-to-it@2.0.10: + resolution: {integrity: sha512-I/9hEcRtjct8CzD9sVo9Mm4ntn0D+7tOVrjbPl69XAoOfgJ8NBdOQU+WX+5SHhcELJDb14mWt7zuvyqha+MEAQ==} + + browserslist@4.25.0: + resolution: {integrity: sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + bs-logger@0.2.6: + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} + + bs58@6.0.0: + resolution: {integrity: sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==} + + bser@2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + + bufferutil@4.0.9: + resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==} + engines: {node: '>=6.14.2'} + + bufrw@1.4.0: + resolution: {integrity: sha512-sWm8iPbqvL9+5SiYxXH73UOkyEbGQg7kyHQmReF89WJHQJw2eV4P/yZ0E+b71cczJ4pPobVhXxgQcmfSTgGHxQ==} + engines: {node: '>= 0.10.x'} + + bundle-n-require@1.1.2: + resolution: {integrity: sha512-bEk2jakVK1ytnZ9R2AAiZEeK/GxPUM8jvcRxHZXifZDMcjkI4EG/GlsJ2YGSVYT9y/p/gA9/0yDY8rCGsSU6Tg==} + + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + + caniuse-lite@1.0.30001721: + resolution: {integrity: sha512-cOuvmUVtKrtEaoKiO0rSc29jcjwMwX5tOHDy4MgVFEWiUXj4uBMJkwI8MDySkgXidpMiHUcviogAvFi4pA2hDQ==} + + cborg@4.2.11: + resolution: {integrity: sha512-7gs3iaqtsD9OHowgqzc6ixQGwSBONqosVR2co0Bg0pARgrLap+LCcEIXJuuIz2jHy0WWQeDMFPEsU2r17I2XPQ==} + hasBin: true + + chakra-react-select@4.10.1: + resolution: {integrity: sha512-0d7lubrmcm7molVYNYWEYi7o71W8wn/WruINon+m23XQLYvJ+bZlYVawDdWYdJjX8O1nzJlTDo4b7CB6zTsr4A==} + peerDependencies: + '@chakra-ui/react': 2.x + '@emotion/react': ^11.8.1 + react: ^18.0.0 + react-dom: ^18.0.0 + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.4.1: + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + change-case@5.4.4: + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} + + char-regex@1.0.2: + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} + + character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + + character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + + character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} + engines: {node: '>= 14.16.0'} + + chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + cjs-module-lexer@1.4.3: + resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} + + classnames@2.5.1: + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} + + cli-table@0.3.11: + resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==} + engines: {node: '>= 0.2.0'} + + cli-truncate@4.0.0: + resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + engines: {node: '>=18'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone-regexp@3.0.0: + resolution: {integrity: sha512-ujdnoq2Kxb8s3ItNBtnYeXdm07FcU0u8ARAT1lQ2YdMwQC+cdiXX8KoqMVuglztILivceTtp4ivqGSmEmhBUJw==} + engines: {node: '>=12'} + + clsx@1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + co@4.6.0: + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + + codemirror-graphql@2.2.2: + resolution: {integrity: sha512-9WY6YGPeXDLvdHeBNh4mompvZKapYJsfEXhodCW72W+9E/z8GajgCZjGLOaq57a9fD2f9+Zp/J0FGiypOtNgrw==} + peerDependencies: + '@codemirror/language': 6.0.0 + codemirror: ^5.65.3 + graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 + + codemirror@5.65.19: + resolution: {integrity: sha512-+aFkvqhaAVr1gferNMuN8vkTSrWIFvzlMV9I2KBLCWS2WpZ2+UAkZjlMZmEuT+gcXTi6RrGQCkWq1/bDtGqhIA==} + + collect-v8-coverage@1.0.2: + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + colorjs.io@0.5.2: + resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==} + + colors@1.0.3: + resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==} + engines: {node: '>=0.1.90'} + + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + + comma-separated-tokens@1.0.8: + resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + + commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} + + commander@14.0.0: + resolution: {integrity: sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==} + engines: {node: '>=20'} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + comment-parser@1.4.1: + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} + engines: {node: '>= 12.0.0'} + + common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + + component-emitter@2.0.0: + resolution: {integrity: sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==} + engines: {node: '>=18'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + console-polyfill@0.3.0: + resolution: {integrity: sha512-w+JSDZS7XML43Xnwo2x5O5vxB0ID7T5BdqDtyqT6uiCAX2kZAgcWxNaGqT97tZfSHzfOcvrfsDAodKcJ3UvnXQ==} + + convert-hrtime@5.0.0: + resolution: {integrity: sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg==} + engines: {node: '>=12'} + + convert-source-map@1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie-es@1.2.2: + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} + + copy-to-clipboard@3.3.3: + resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} + + core-js-compat@3.42.0: + resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==} + + core-js-pure@3.42.0: + resolution: {integrity: sha512-007bM04u91fF4kMgwom2I5cQxAFIy8jVulgr9eozILl/SZE53QOqnW/+vviC+wQWLv+AunBG+8Q0TLoeSsSxRQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + + crc-32@1.2.2: + resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} + engines: {node: '>=0.8'} + hasBin: true + + create-jest@29.7.0: + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + crelt@1.0.6: + resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} + + cross-fetch@3.2.0: + resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} + + cross-fetch@4.1.0: + resolution: {integrity: sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + crossws@0.3.5: + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} + + crypto-js@4.2.0: + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + + css-loader@6.11.0: + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@rspack/core': 0.x || 1.x + webpack: ^5.0.0 + peerDependenciesMeta: + '@rspack/core': + optional: true + webpack: + optional: true + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssfilter@0.0.10: + resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + cssom@0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + + cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + + cssstyle@2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + d3-array@3.2.4: + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} + + d3-axis@3.0.0: + resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} + engines: {node: '>=12'} + + d3-brush@3.0.0: + resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} + engines: {node: '>=12'} + + d3-chord@3.0.1: + resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} + engines: {node: '>=12'} + + d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + + d3-contour@4.0.2: + resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} + engines: {node: '>=12'} + + d3-delaunay@6.0.4: + resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} + engines: {node: '>=12'} + + d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + + d3-drag@3.0.0: + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} + + d3-dsv@3.0.1: + resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} + engines: {node: '>=12'} + hasBin: true + + d3-ease@3.0.1: + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} + + d3-fetch@3.0.1: + resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} + engines: {node: '>=12'} + + d3-force@3.0.0: + resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} + engines: {node: '>=12'} + + d3-format@3.1.0: + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} + + d3-geo@3.1.1: + resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} + engines: {node: '>=12'} + + d3-hierarchy@3.1.2: + resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} + engines: {node: '>=12'} + + d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} + + d3-path@3.1.0: + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} + + d3-polygon@3.0.1: + resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} + engines: {node: '>=12'} + + d3-quadtree@3.0.1: + resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} + engines: {node: '>=12'} + + d3-random@3.0.1: + resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} + engines: {node: '>=12'} + + d3-scale-chromatic@3.1.0: + resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} + engines: {node: '>=12'} + + d3-scale@4.0.2: + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} + + d3-selection@3.0.0: + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} + + d3-shape@3.2.0: + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} + + d3-time-format@4.1.0: + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} + + d3-time@3.1.0: + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} + + d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + + d3-transition@3.0.1: + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} + peerDependencies: + d3-selection: 2 - 3 + + d3-zoom@3.0.0: + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} + + d3@7.9.0: + resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} + engines: {node: '>=12'} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + dappscout-iframe@0.2.5: + resolution: {integrity: sha512-MY2WKyU1sF11YlyM5HPEbJXZB5NR4P2QMh9Ilcab1T1vioLcab9uIu8bXU9elVa904U8pyfTeRMhYWW4TzG5wg==} + peerDependencies: + react: 18.3.1 + react-dom: 18.3.1 + viem: ^1.20.3 + + data-uri-to-buffer@4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + + data-urls@3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + datastore-core@10.0.4: + resolution: {integrity: sha512-IctgCO0GA7GHG7aRm3JRruibCsfvN4EXNnNIlLCZMKIv0TPkdAL5UFV3/xTYFYrrZ1jRNrXZNZRvfcVf/R+rAw==} + + date-fns@2.30.0: + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + engines: {node: '>=0.11'} + + dateformat@4.6.3: + resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} + + dayjs@1.11.13: + resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + + debounce-promise@3.1.2: + resolution: {integrity: sha512-rZHcgBkbYavBeD9ej6sP56XfG53d51CD4dnaw989YX/nZ/ZJfgRx/9ePKmTNiUiyQvh4mtrMoS3OAWW+yoYtpg==} + + debounce@1.2.1: + resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decache@3.1.0: + resolution: {integrity: sha512-p7D6wJ5EJFFq1CcF2lu1XeqKFLBob8jRQGNAvFLTsV3CbSKBl3VtliAVlUIGz2i9H6kEFnI2Amaft5ZopIG2Fw==} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js@10.5.0: + resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==} + + decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + + dedent@1.6.0: + resolution: {integrity: sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + delaunator@5.0.1: + resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} + + delay@6.0.0: + resolution: {integrity: sha512-2NJozoOHQ4NuZuVIr5CWd0iiLVIRSDepakaovIN+9eIDHEhdCAEvSy2cuf1DCrPPQLvHmbqTHODlhHg8UCy4zw==} + engines: {node: '>=16'} + + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + derive-valtio@0.1.0: + resolution: {integrity: sha512-OCg2UsLbXK7GmmpzMXhYkdO64vhJ1ROUUGaTFyHjVwEdMEcTTRj7W1TxLbSBxdY8QLBPCcp66MTyaSy0RpO17A==} + peerDependencies: + valtio: '*' + + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} + + detect-browser@5.3.0: + resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + detect-newline@3.1.0: + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} + + detect-node-es@1.1.0: + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + + diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + dijkstrajs@1.0.3: + resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dns-packet@5.6.1: + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + + dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + + dom-mutator@0.6.0: + resolution: {integrity: sha512-iCt9o0aYfXMUkz/43ZOAUFQYotjGB+GNbYJiJdz4TgXkyToXbbRy5S6FbTp72lRBtfpUMwEc1KmpFEU4CZeoNg==} + engines: {node: '>=10'} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + dom-to-image@2.6.0: + resolution: {integrity: sha512-Dt0QdaHmLpjURjU7Tnu3AgYSF2LuOmksSGsUcE6ItvJoCWTBEmiMXcqBdNSAm9+QbbwD7JMoVsuuKX6ZVQv1qA==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domexception@4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + deprecated: Use your platform's native DOMException instead + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + dompurify@3.2.4: + resolution: {integrity: sha512-ysFSFEDVduQpyhzAob/kkuJjf5zWkZD8/A9ywSp1byueyuCfHamrCBa14/Oc2iiB0e51B+NpxSl5gmzn+Ms/mg==} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + + dotenv-cli@6.0.0: + resolution: {integrity: sha512-qXlCOi3UMDhCWFKe0yq5sg3X+pJAz+RQDiFN38AMSbUrnY3uZshSfDJUAge951OS7J9gwLZGfsBlWRSOYz/TRg==} + hasBin: true + + dotenv-expand@8.0.3: + resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==} + engines: {node: '>=12'} + + dotenv@16.5.0: + resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} + engines: {node: '>=12'} + + drange@1.1.1: + resolution: {integrity: sha512-pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA==} + engines: {node: '>=4'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + + duplexify@4.1.3: + resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + eciesjs@0.4.15: + resolution: {integrity: sha512-r6kEJXDKecVOCj2nLMuXK/FCPeurW33+3JRpfXVbjLja3XUYFfD9I/JBreH6sUyzcm3G/YQboBjMla6poKeSdA==} + engines: {bun: '>=1', deno: '>=2', node: '>=16'} + + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + + electron-to-chromium@1.5.165: + resolution: {integrity: sha512-naiMx1Z6Nb2TxPU6fiFrUrDTjyPMLdTtaOd2oLmG8zVSg2hCWGkhPyxwk+qRmZ1ytwVqUv0u7ZcDA5+ALhaUtw==} + + elliptic@6.6.1: + resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} + + emittery@0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} + + emoji-regex@10.4.0: + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + encode-utf8@1.0.3: + resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + engine.io-client@6.6.3: + resolution: {integrity: sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==} + + engine.io-parser@5.2.3: + resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} + engines: {node: '>=10.0.0'} + + enhanced-resolve@5.18.1: + resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} + engines: {node: '>=10.13.0'} + + entities@2.1.0: + resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + entities@6.0.0: + resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==} + engines: {node: '>=0.12'} + + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + error-stack-parser@2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + + error@7.0.2: + resolution: {integrity: sha512-UtVv4l5MhijsYUxPJo4390gzfZvAnTHreNnDjnTZaKIiZ/SemXxAhBkYSKtWa5RtBXbLP8tMgn/n0RUa/H7jXw==} + + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + + es-iterator-helpers@1.2.1: + resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + es-toolkit@1.31.0: + resolution: {integrity: sha512-vwS0lv/tzjM2/t4aZZRAgN9I9TP0MSkWuvt6By+hEXfG/uLs8yg2S1/ayRXH/x3pinbLgVJYT+eppueg3cM6tg==} + + es-toolkit@1.33.0: + resolution: {integrity: sha512-X13Q/ZSc+vsO1q600bvNK4bxgXMkHcf//RxCmYDaRY5DAcT+eoXjY5hoAPGMdRnWQjvyLEcyauG3b6hz76LNqg==} + + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.25.5: + resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-config-next@15.0.3: + resolution: {integrity: sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==} + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 + typescript: '>=3.3.1' + peerDependenciesMeta: + typescript: + optional: true + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-import-resolver-typescript@3.10.1: + resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + eslint-plugin-import-x: '*' + peerDependenciesMeta: + eslint-plugin-import: + optional: true + eslint-plugin-import-x: + optional: true + + eslint-module-utils@2.12.0: + resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-import-helpers@2.0.1: + resolution: {integrity: sha512-MSiQZV0k+bQlt7RnHZrJxDBE948urZthusQt78FKmQ5/WLm5PpS8L16+2JVGBiSffneOAe4fud8RdYmqPveo8A==} + peerDependencies: + eslint: 9.x + + eslint-plugin-import@2.31.0: + resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jest@28.9.0: + resolution: {integrity: sha512-rLu1s1Wf96TgUUxSw6loVIkNtUjq1Re7A9QdCCHSohnvXEBAjuL420h0T/fMmkQlNsQP2GhQzEUpYHPfxBkvYQ==} + engines: {node: ^16.10.0 || ^18.12.0 || >=20.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 + jest: '*' + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + jest: + optional: true + + eslint-plugin-jsx-a11y@6.10.2: + resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 + + eslint-plugin-no-cyrillic-string@1.0.5: + resolution: {integrity: sha512-/B5pak+o2USi9HSaUm5uOigRBeFDG0s6s+TC1XrS6BrB8bk7mMVKJkKvPJvFsSSZb0kwCCg25/jhJPeSpVFEUw==} + + eslint-plugin-playwright@2.0.1: + resolution: {integrity: sha512-f4a73xgCOK5Ug/5dtC82BVvND62lLqlMqgGkZn42teyvk6ccSyybHZXRHkpE7vKZSCjV57bnbR+3ucwItOhXlA==} + engines: {node: '>=16.6.0'} + peerDependencies: + eslint: '>=8.40.0' + + eslint-plugin-react-hooks@5.0.0: + resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 + + eslint-plugin-react@7.37.2: + resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 + + eslint-plugin-regexp@2.6.0: + resolution: {integrity: sha512-FCL851+kislsTEQEMioAlpDuK5+E5vs0hi1bF8cFlPlHcEjeRhuAzEsGikXRreE+0j4WhW2uO54MqTjXtYOi3A==} + engines: {node: ^18 || >=20} + peerDependencies: + eslint: '>=8.44.0' + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-scope@8.3.0: + resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.14.0: + resolution: {integrity: sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + eth-block-tracker@7.1.0: + resolution: {integrity: sha512-8YdplnuE1IK4xfqpf4iU7oBxnOYAc35934o083G8ao+8WM8QQtt/mVlAY6yIAdY1eMeLqg4Z//PZjJGmWGPMRg==} + engines: {node: '>=14.0.0'} + + eth-json-rpc-filters@6.0.1: + resolution: {integrity: sha512-ITJTvqoCw6OVMLs7pI8f4gG92n/St6x80ACtHodeS+IXmO0w+t1T5OOzfSt7KLSMLRkVUoexV7tztLgDxg+iig==} + engines: {node: '>=14.0.0'} + + eth-query@2.1.2: + resolution: {integrity: sha512-srES0ZcvwkR/wd5OQBRA1bIJMww1skfGS0s8wlwK3/oNP4+wnds60krvu5R1QbpRQjMmpG5OMIWro5s7gvDPsA==} + + eth-rpc-errors@4.0.3: + resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==} + + ethereum-cryptography@2.2.1: + resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==} + + event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} + + eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extension-port-stream@2.1.1: + resolution: {integrity: sha512-qknp5o5rj2J9CRKfVB8KJr+uXQlrojNZzdESUPhKYLXf97TPcGf6qWWKmpsNNtUyOdzFhab1ON0jzouNxHHvow==} + engines: {node: '>=12.0.0'} + + extension-port-stream@3.0.0: + resolution: {integrity: sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==} + engines: {node: '>=12.0.0'} + + fast-copy@3.0.2: + resolution: {integrity: sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==} + + fast-deep-equal@2.0.1: + resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-patch@3.1.1: + resolution: {integrity: sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-redact@3.5.0: + resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} + engines: {node: '>=6'} + + fast-safe-stringify@2.1.1: + resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + + fast-uri@3.0.6: + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fault@1.0.4: + resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} + + fb-watchman@2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + + fdir@6.4.5: + resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fetch-blob@3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + filelist@1.0.4: + resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + + find-root@1.1.0: + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + find-yarn-workspace-root@2.0.0: + resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} + + find@0.2.9: + resolution: {integrity: sha512-7a4/LCiInB9xYMnAUEjLilL9FKclwbwK7VlXw+h5jMvT2TDFeYFCHM24O1XdnC/on/hx8mxVO3FTQkyHZnOghQ==} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + focus-lock@1.3.6: + resolution: {integrity: sha512-Ik/6OCk9RQQ0T5Xw+hKNLWrjSMtv51dD4GRmJjbD5a58TIEpI5a5iXagKVl3Z5UuyslMCA8Xwnu76jQob62Yhg==} + engines: {node: '>=10'} + + focus-visible@5.2.1: + resolution: {integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==} + + follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + + fontfaceobserver@2.1.0: + resolution: {integrity: sha512-ReOsO2F66jUa0jmv2nlM/s1MiutJx/srhAe2+TE8dJCMi02ZZOcCTxTCQFr3Yet+uODUtnr4Mewg+tNQ+4V1Ng==} + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + + form-data@4.0.3: + resolution: {integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==} + engines: {node: '>= 6'} + + format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + + formdata-polyfill@4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + + fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function-timeout@0.1.1: + resolution: {integrity: sha512-0NVVC0TaP7dSTvn1yMiy6d6Q8gifzbvQafO46RtLG/kHJUBNd+pVRGOBoK44wNBvtSPUJRfdVvkFdD3p0xvyZg==} + engines: {node: '>=14.16'} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gaxios@6.7.1: + resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==} + engines: {node: '>=14'} + + gcp-metadata@6.1.1: + resolution: {integrity: sha512-a4tiq7E0/5fTjxPAaH4jpjkSv/uCaU2p5KC6HVGrvl0cDjA8iBZv4vv1gyzlmK0ZUKqwpOyQMKzZQe3lTit77A==} + engines: {node: '>=14'} + + generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-east-asian-width@1.3.0: + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} + engines: {node: '>=18'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-iterator@2.0.1: + resolution: {integrity: sha512-7HuY/hebu4gryTDT7O/XY/fvY9wRByEGdK6QOa4of8npTcv0+NS6frFKABcf6S9EBAsveTuKTsZQQBFMMNILIg==} + + get-nonce@1.0.1: + resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} + engines: {node: '>=6'} + + get-package-type@0.1.0: + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.10.1: + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + + getit-sdk@1.0.13: + resolution: {integrity: sha512-gWDJZNMoy7Uw9S3qOvQ+gVFdmrHuI17ePGhJYbP25DGOzgCwD5n7KDy9JWxGpLqEnf+V3v3aoyTvP8TtZheEaA==} + peerDependencies: + react: '>=16' + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@15.12.0: + resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==} + engines: {node: '>=18'} + + globals@16.2.0: + resolution: {integrity: sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + globby@14.0.2: + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} + engines: {node: '>=18'} + + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + + google-logging-utils@0.0.2: + resolution: {integrity: sha512-NEgUnEcBiP5HrPzufUkBzJOD/Sxsco3rLNo1F1TNf7ieU8ryUzBhqba8r756CjLX7rn3fHl6iLEwPYuqpoKgQQ==} + engines: {node: '>=14'} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + gradient-avatar@https://codeload.github.com/blockscout/gradient-avatar/tar.gz/86810368c2581d2dc3aca089dc648336c8e17045: + resolution: {tarball: https://codeload.github.com/blockscout/gradient-avatar/tar.gz/86810368c2581d2dc3aca089dc648336c8e17045} + version: 1.0.3 + engines: {node: '>=8'} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + graphiql@2.4.7: + resolution: {integrity: sha512-Fm3fVI65EPyXy+PdbeQUyODTwl2NhpZ47msGnGwpDvdEzYdgF7pPrxL96xCfF31KIauS4+ceEJ+ZwEe5iLWiQw==} + peerDependencies: + graphql: ^15.5.0 || ^16.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + graphql-language-service@5.4.0: + resolution: {integrity: sha512-g4N5PKh4Dxow9zuHrzX6PHuWWL/aQPYgzZvZst1KkWYFW1H1rmOA/p0/eEJ2WVuoCCfy1tyAR91iG92MAKCILA==} + hasBin: true + peerDependencies: + graphql: ^15.5.0 || ^16.0.0 || ^17.0.0 + + graphql-ws@5.16.2: + resolution: {integrity: sha512-E1uccsZxt/96jH/OwmLPuXMACILs76pKF2i3W861LpKBCYtGIyPQGtWLuBLkND4ox1KHns70e83PS4te50nvPQ==} + engines: {node: '>=10'} + peerDependencies: + graphql: '>=0.11 <=16' + + graphql@16.11.0: + resolution: {integrity: sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw==} + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} + + gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + + h3@1.15.3: + resolution: {integrity: sha512-z6GknHqyX0h9aQaTx22VZDf6QyZn+0Nh+Ym8O/u0SGSkyF5cuTJYKlc8MkzW3Nzf9LE1ivcpmYC3FUGpywhuUQ==} + + hamt-sharding@3.0.6: + resolution: {integrity: sha512-nZeamxfymIWLpVcAN0CRrb7uVq3hCOGj9IcL6NMA6VVCVWqj+h9Jo/SmaWuS92AEDf1thmHsM5D5c70hM3j2Tg==} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hash.js@1.1.7: + resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + + hashlru@2.3.0: + resolution: {integrity: sha512-0cMsjjIC8I+D3M44pOQdsy0OHXGLVz6Z0beRuufhKa0KfaD2wGwAev6jILzXsd3/vpnNQJmWyZtIILqM1N+n5A==} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-util-parse-selector@2.2.5: + resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + + hastscript@6.0.0: + resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + help-me@4.2.0: + resolution: {integrity: sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==} + + hexer@1.5.0: + resolution: {integrity: sha512-dyrPC8KzBzUJ19QTIo1gXNqIISRXQ0NwteW6OeQHRN4ZuZeHkdODfj0zHBdOlHbRY8GqbqK57C9oWSvQZizFsg==} + engines: {node: '>= 0.10.x'} + hasBin: true + + hey-listen@1.0.8: + resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} + + highlight.js@10.7.3: + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + + highlightjs-vue@1.0.0: + resolution: {integrity: sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA==} + + hmac-drbg@1.0.1: + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + + hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + + hsl-rgb@1.0.0: + resolution: {integrity: sha512-cNq+7sfwzSDoiG/jiu8wZpOmjScUZrMKiI33tH3aQ1MZsXWQd0yJjMpPwu2OZFYa4D/bOT1aCbB5gS1kOqFx1A==} + engines: {node: '>=8'} + + hsl-triad@1.0.0: + resolution: {integrity: sha512-PKnjrMugS6sHC5dVh4VQZYOHEKG2QILjVwbpEtNjEV19RyswuIxrIiGhumVJjya/FjK/p9gX6+zRMXFGTvaQAA==} + engines: {node: '>=8'} + + html-encoding-sniffer@3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + husky@8.0.3: + resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} + engines: {node: '>=14'} + hasBin: true + + hyperdyperid@1.2.0: + resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==} + engines: {node: '>=10.18'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + idb-keyval@6.2.2: + resolution: {integrity: sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + immutable@3.8.2: + resolution: {integrity: sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==} + engines: {node: '>=0.10.0'} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + import-in-the-middle@1.14.2: + resolution: {integrity: sha512-5tCuY9BV8ujfOpwtAGgsTx9CGUapcFMEEyByLv1B+v2+6DhAcw+Zr0nhQT7uwaZ7DiourxFEscghOR8e1aPLQw==} + + import-in-the-middle@1.7.1: + resolution: {integrity: sha512-1LrZPDtW+atAxH42S6288qyDFNQ2YCty+2mxEPRtfazH6Z5QwkaBSTS2ods7hnVJioF6rkRfNoA6A/MstpFXLg==} + + import-local@3.2.0: + resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} + engines: {node: '>=8'} + hasBin: true + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + interface-blockstore@5.3.2: + resolution: {integrity: sha512-oA9Pjkxun/JHAsZrYEyKX+EoPjLciTzidE7wipLc/3YoHDjzsnXRJzAzFJXNUvogtY4g7hIwxArx8+WKJs2RIg==} + + interface-datastore@8.3.2: + resolution: {integrity: sha512-R3NLts7pRbJKc3qFdQf+u40hK8XWc0w4Qkx3OFEstC80VoaDUABY/dXA2EJPhtNC+bsrf41Ehvqb6+pnIclyRA==} + + interface-store@6.0.3: + resolution: {integrity: sha512-+WvfEZnFUhRwFxgz+QCQi7UC6o9AM0EHM9bpIe2Nhqb100NHCsTvNAn4eJgvgV2/tmLo1MP9nGxQKEcZTAueLA==} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + internmap@2.0.3: + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} + + invariant@2.2.4: + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + + ip-regex@5.0.0: + resolution: {integrity: sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + ipfs-unixfs-exporter@13.6.2: + resolution: {integrity: sha512-U3NkQHvQn5XzxtjSo1/GfoFIoXYY4hPgOlZG5RUrV5ScBI222b3jAHbHksXZuMy7sqPkA9ieeWdOmnG1+0nxyw==} + + ipfs-unixfs-importer@15.3.2: + resolution: {integrity: sha512-12FqAAAE3YC6AHtYxZ944nDCabmvbNLdhNCVIN5RJIOri82ss62XdX4lsLpex9VvPzDIJyTAsrKJPcwM6hXGdQ==} + + ipfs-unixfs@11.2.1: + resolution: {integrity: sha512-gUeeX63EFgiaMgcs0cUs2ZUPvlOeEZ38okjK8twdWGZX2jYd2rCk8k/TJ3DSRIDZ2t/aZMv6I23guxHaofZE3w==} + + ipns@10.0.2: + resolution: {integrity: sha512-tokCgz9X678zvHnAabVG91K64X7HnHdWOrop0ghUcXkzH5XNsmxHwVpqVATNqq/w62h7fRDhWURHU/WOfYmCpA==} + + iron-webcrypto@1.2.1: + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} + + is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + + is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + + is-arguments@1.2.0: + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-bun-module@2.0.0: + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-fullwidth-code-point@4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + + is-fullwidth-code-point@5.0.0: + resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} + engines: {node: '>=18'} + + is-generator-fn@2.1.0: + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} + + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + + is-ip@5.0.1: + resolution: {integrity: sha512-FCsGHdlrOnZQcp0+XT5a+pYowf33itBalCl+7ovNXC/7o5BhIpG14M3OrpPPdBSIQJCm+0M5+9mO7S9VVTTCFw==} + engines: {node: '>=14.16'} + + is-loopback-addr@2.0.2: + resolution: {integrity: sha512-26POf2KRCno/KTNL5Q0b/9TYnL00xEsSaLfiFRmjM7m7Lw7ZMmFybzzuX4CcsLAluZGd+niLUiMRxEooVE3aqg==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-nan@1.3.2: + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} + engines: {node: '>= 0.4'} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@2.1.0: + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-primitive@3.0.1: + resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==} + engines: {node: '>=0.10.0'} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-regexp@3.1.0: + resolution: {integrity: sha512-rbku49cWloU5bSMI+zaRaXdQHXnthP6DZ/vLnfdSKyL4zUzuWnomtOEiZZOd+ioQ+avFo/qau3KPTc7Fjy1uPA==} + engines: {node: '>=12'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + iso-constants@0.1.2: + resolution: {integrity: sha512-OTCM5ZCQsHBCI4Wdu4tSxvDIkmDHd5EwJDps5mKqnQnWJSKlnwMs3EDZ4n3Fh1tmkWkDlyd2vCDbEYuPbyrUNQ==} + engines: {node: '>=10'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + isows@1.0.6: + resolution: {integrity: sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==} + peerDependencies: + ws: '*' + + isows@1.0.7: + resolution: {integrity: sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==} + peerDependencies: + ws: '*' + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@5.2.1: + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} + + istanbul-lib-instrument@6.0.3: + resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==} + engines: {node: '>=10'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@4.0.1: + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + it-all@3.0.9: + resolution: {integrity: sha512-fz1oJJ36ciGnu2LntAlE6SA97bFZpW7Rnt0uEc1yazzR2nKokZLr8lIRtgnpex4NsmaBcvHF+Z9krljWFy/mmg==} + + it-batch@3.0.9: + resolution: {integrity: sha512-z6p89Q8gm2urBtF3JcpnbJogacijWk3m1uc3xZYI3x0eJUoYLUbgF8IxJ2fnuVObV7yRv3SixfwGCufaZY1NCg==} + + it-byte-stream@1.1.1: + resolution: {integrity: sha512-OIOb8PvK9ZV7MHvyxIDNyN3jmrxrJdx99G0RIYYb3Tzo1OWv+O1C6mfg7nnlDuuTQz2POYFXe87AShKAEl+POw==} + + it-byte-stream@2.0.3: + resolution: {integrity: sha512-h7FFcn4DWiWsJw1dCJhuPdiY8cGi1z8g4aLAfFspTaJbwQxvEMlEBFG/f8lIVGwM8YK26ClM4/9lxLVhF33b8g==} + + it-drain@3.0.10: + resolution: {integrity: sha512-0w/bXzudlyKIyD1+rl0xUKTI7k4cshcS43LTlBiGFxI8K1eyLydNPxGcsVLsFVtKh1/ieS8AnVWt6KwmozxyEA==} + + it-filter@3.1.4: + resolution: {integrity: sha512-80kWEKgiFEa4fEYD3mwf2uygo1dTQ5Y5midKtL89iXyjinruA/sNXl6iFkTcdNedydjvIsFhWLiqRPQP4fAwWQ==} + + it-first@3.0.9: + resolution: {integrity: sha512-ZWYun273Gbl7CwiF6kK5xBtIKR56H1NoRaiJek2QzDirgen24u8XZ0Nk+jdnJSuCTPxC2ul1TuXKxu/7eK6NuA==} + + it-foreach@2.1.4: + resolution: {integrity: sha512-gFntBbNLpVK9uDmaHusugICD8/Pp+OCqbF5q1Z8K+B8WaG20YgMePWbMxI1I25+JmNWWr3hk0ecKyiI9pOLgeA==} + + it-glob@3.0.4: + resolution: {integrity: sha512-73PbGBTK/dHp5PX4l8pkQH1ozCONP0U+PB3qMqltxPonRJQNomINE3Hn9p02m2GOu95VoeVvSZdHI2N+qub0pw==} + + it-last@3.0.9: + resolution: {integrity: sha512-AtfUEnGDBHBEwa1LjrpGHsJMzJAWDipD6zilvhakzJcm+BCvNX8zlX2BsHClHJLLTrsY4lY9JUjc+TQV4W7m1w==} + + it-length-prefixed-stream@1.2.1: + resolution: {integrity: sha512-FYqlxc2toUoK+aPO5r3KDBIUG1mOvk2DzmjQcsfLUTHRWMJP4Va9855tVzg/22Bj+VUUaT7gxBg7HmbiCxTK4w==} + + it-length-prefixed-stream@2.0.3: + resolution: {integrity: sha512-Ns3jNFy2mcFnV59llCYitJnFHapg8wIcOsWkEaAwOkG9v4HBCk24nze/zGDQjiJdDTyFXTT5GOY3M/uaksot3w==} + + it-length-prefixed@10.0.1: + resolution: {integrity: sha512-BhyluvGps26u9a7eQIpOI1YN7mFgi8lFwmiPi07whewbBARKAG9LE09Odc8s1Wtbt2MB6rNUrl7j9vvfXTJwdQ==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + it-length@3.0.9: + resolution: {integrity: sha512-cPhRPzyulYqyL7x4sX4MOjG/xu3vvEIFAhJ1aCrtrnbfxloCOtejOONib5oC3Bz8tLL6b6ke6+YHu4Bm6HCG7A==} + + it-map@3.1.4: + resolution: {integrity: sha512-QB9PYQdE9fUfpVFYfSxBIyvKynUCgblb143c+ktTK6ZuKSKkp7iH58uYFzagqcJ5HcqIfn1xbfaralHWam+3fg==} + + it-merge@3.0.12: + resolution: {integrity: sha512-nnnFSUxKlkZVZD7c0jYw6rDxCcAQYcMsFj27thf7KkDhpj0EA0g9KHPxbFzHuDoc6US2EPS/MtplkNj8sbCx4Q==} + + it-ndjson@1.1.4: + resolution: {integrity: sha512-ZMgTUrNo/UQCeRUT3KqnC0UaClzU6D+ItSmzVt7Ks7pcJ7DboYeYBSPeFLAaEthf5zlvaApDuACLmOWepgkrRg==} + + it-parallel-batch@3.0.9: + resolution: {integrity: sha512-TszXWqqLG8IG5DUEnC4cgH9aZI6CsGS7sdkXTiiacMIj913bFy7+ohU3IqsFURCcZkpnXtNLNzrYnXISsKBhbQ==} + + it-parallel@3.0.13: + resolution: {integrity: sha512-85PPJ/O8q97Vj9wmDTSBBXEkattwfQGruXitIzrh0RLPso6RHfiVqkuTqBNufYYtB1x6PSkh0cwvjmMIkFEPHA==} + + it-peekable@3.0.8: + resolution: {integrity: sha512-7IDBQKSp/dtBxXV3Fj0v3qM1jftJ9y9XrWLRIuU1X6RdKqWiN60syNwP0fiDxZD97b8SYM58dD3uklIk1TTQAw==} + + it-pipe@3.0.1: + resolution: {integrity: sha512-sIoNrQl1qSRg2seYSBH/3QxWhJFn9PKYvOf/bHdtCBF0bnghey44VyASsWzn5dAx0DCDDABq1hZIuzKmtBZmKA==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + it-protobuf-stream@1.1.6: + resolution: {integrity: sha512-TxqgDHXTBt1XkYhrGKP8ubNsYD4zuTClSg6S1M0xTPsskGKA4nPFOGM60zrkh4NMB1Wt3EnsqM5U7kXkx60EXQ==} + + it-protobuf-stream@2.0.3: + resolution: {integrity: sha512-Dus9qyylOSnC7l75/3qs6j3Fe9MCM2K5luXi9o175DYijFRne5FPucdOGIYdwaDBDQ4Oy34dNCuFobOpcusvEQ==} + + it-pushable@3.2.3: + resolution: {integrity: sha512-gzYnXYK8Y5t5b/BnJUr7glfQLO4U5vyb05gPx/TyTw+4Bv1zM9gFk4YsOrnulWefMewlphCjKkakFvj1y99Tcg==} + + it-queue@1.1.0: + resolution: {integrity: sha512-aK9unJRIaJc9qiv53LByhF7/I2AuD7Ro4oLfLieVLL9QXNvRx++ANMpv8yCp2UO0KAtBuf70GOxSYb6ElFVRpQ==} + + it-queueless-pushable@1.0.2: + resolution: {integrity: sha512-BFIm48C4O8+i+oVEPQpZ70+CaAsVUircvZtZCrpG2Q64933aLp+tDmas1mTBwqVBfIUUlg09d+e6SWW1CBuykQ==} + + it-queueless-pushable@2.0.2: + resolution: {integrity: sha512-2BqIt7XvDdgEgudLAdJkdseAwbVSBc0yAd8yPVHrll4eBuJPWIj9+8C3OIxzEKwhswLtd3bi+yLrzgw9gCyxMA==} + + it-reader@6.0.4: + resolution: {integrity: sha512-XCWifEcNFFjjBHtor4Sfaj8rcpt+FkY0L6WdhD578SCDhV4VUm7fCkF3dv5a+fTcfQqvN9BsxBTvWbYO6iCjTg==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + it-sort@3.0.9: + resolution: {integrity: sha512-jsM6alGaPiQbcAJdzMsuMh00uJcI+kD9TBoScB8TR75zUFOmHvhSsPi+Dmh2zfVkcoca+14EbfeIZZXTUGH63w==} + + it-stream-types@2.0.2: + resolution: {integrity: sha512-Rz/DEZ6Byn/r9+/SBCuJhpPATDF9D+dz5pbgSUyBsCDtza6wtNATrz/jz1gDyNanC3XdLboriHnOC925bZRBww==} + + it-take@3.0.9: + resolution: {integrity: sha512-XMeUbnjOcgrhFXPUqa7H0VIjYSV/BvyxxjCp76QHVAFDJw2LmR1SHxUFiqyGeobgzJr7P2ZwSRRJQGn4D2BVlA==} + + it-tar@6.0.5: + resolution: {integrity: sha512-GxKBamsX2EZA6jrNh6xoeKmRpbOELgYhCk1ojhN0TFSBdxwkRBqBRc3sI43vTHRpI7i2o6ptrSxK3LLKWNvudg==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + it-to-browser-readablestream@2.0.12: + resolution: {integrity: sha512-9pcVGxY8jrfMUgCqPrxjVN0bl6fQXCK1NEbUq5Bi+APlr3q0s2AsQINBPcWYgJbMnSHAfoRDthsi4GHqtkvHgw==} + + it-to-buffer@4.0.10: + resolution: {integrity: sha512-dXNHSILSPVv+31nxav+egNxWA/RpSuAHCSurJCLxkFDpmzAyYPJwIkPfLkYiHLoJqyE6Z5nVFILp6aDvz9V5pw==} + + iterator.prototype@1.1.5: + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} + engines: {node: '>= 0.4'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jaeger-client@3.19.0: + resolution: {integrity: sha512-M0c7cKHmdyEUtjemnJyx/y9uX16XHocL46yQvyqDlPdvAcwPDbHrIbKjQdBqtiE4apQ/9dmr+ZLJYYPGnurgpw==} + engines: {node: '>=10'} + + jake@10.9.2: + resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} + engines: {node: '>=10'} + hasBin: true + + jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-cli@29.7.0: + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + jest-config@29.7.0: + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + + jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-environment-jsdom@29.7.0: + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-fetch-mock@3.0.3: + resolution: {integrity: sha512-Ux1nWprtLrdrH4XwE7O7InRY6psIi3GOsqNESJgMJ+M5cv4A8Lh7SN9d2V2kKRZ8ebAfcd1LNyZguAOb6JiDqw==} + + jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-pnp-resolver@1.2.3: + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + + jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-transform-css@6.0.3: + resolution: {integrity: sha512-ui/mHweqM6S526cqvEoMszy3njrNmqDzDhOROe58/GTMYdrBNJT35vxwIg/6c52Y7lPMJgJ5XG3qea/RWIpEug==} + peerDependencies: + postcss: ^8.4.12 + + jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + jest@29.7.0: + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + + joi@17.13.3: + resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + + joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + + js-cookie@3.0.5: + resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} + engines: {node: '>=14'} + + js-file-download@0.4.12: + resolution: {integrity: sha512-rML+NkoD08p5Dllpjo0ffy4jRHeY6Zsapvr/W86N7E0yuzAO6qa5X9+xog6zQNlH102J7IXljNY2FtS6Lj3ucg==} + + js-sha3@0.8.0: + resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsdoc-type-pratt-parser@4.1.0: + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} + engines: {node: '>=12.0.0'} + + jsdom@20.0.3: + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + jshashes@1.0.8: + resolution: {integrity: sha512-btmQZ/w1rj8Lb6nEwvhjM7nBYoj54yaEFo2PWh3RkxZ8qNwuvOxvQYN/JxVuwoMmdIluL+XwYVJ+pEEZoSYybQ==} + hasBin: true + + json-bigint@1.0.0: + resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-rpc-engine@6.1.0: + resolution: {integrity: sha512-NEdLrtrq1jUZyfjkr9OCz9EzCNhnRyWtt1PAnvnhwy6e8XETS0Dtc+ZNCO2gvuAoKsIn2+vCSowXTYE4CkgnAQ==} + engines: {node: '>=10.0.0'} + + json-rpc-middleware-stream@4.2.3: + resolution: {integrity: sha512-4iFb0yffm5vo3eFKDbQgke9o17XBcLQ2c3sONrXSbcOLzP8LTojqo8hRGVgtJShhm5q4ZDSNq039fAx9o65E1w==} + engines: {node: '>=14.0.0'} + + json-rpc-random-id@1.0.1: + resolution: {integrity: sha512-RJ9YYNCkhVDBuP4zN5BBtYAzEl03yq/jIIsyif0JY9qyJuQQZNeDK7anAPKKlyEtLSj2s8h6hNh2F8zO5q7ScA==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json-stable-stringify@1.3.0: + resolution: {integrity: sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==} + engines: {node: '>= 0.4'} + + json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + jsonify@0.0.1: + resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==} + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + keccak@3.0.4: + resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==} + engines: {node: '>=10.0.0'} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + keyvaluestorage-interface@1.0.0: + resolution: {integrity: sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==} + + klaw-sync@6.0.0: + resolution: {integrity: sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + linkify-it@3.0.3: + resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} + + lint-staged@16.1.0: + resolution: {integrity: sha512-HkpQh69XHxgCjObjejBT3s2ILwNjFx8M3nw+tJ/ssBauDlIpkx2RpqWSi1fBgkXLSSXnbR3iEq1NkVtpvV+FLQ==} + engines: {node: '>=20.17'} + hasBin: true + + listr2@8.3.3: + resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==} + engines: {node: '>=18.0.0'} + + lit-element@3.3.3: + resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==} + + lit-element@4.2.0: + resolution: {integrity: sha512-MGrXJVAI5x+Bfth/pU9Kst1iWID6GHDLEzFEnyULB/sFiRLgkd8NPK/PeeXxktA3T6EIIaq8U3KcbTU5XFcP2Q==} + + lit-html@2.8.0: + resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} + + lit-html@3.3.0: + resolution: {integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw==} + + lit@2.8.0: + resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} + + lit@3.1.0: + resolution: {integrity: sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==} + + lit@3.3.0: + resolution: {integrity: sha512-DGVsqsOIHBww2DqnuZzW7QsuCdahp50ojuDaBPC7jUDRpYoH0z7kHBBYZewRzer75FwtrkmkKk7iOAwSaWdBmw==} + + loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + + loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.throttle@4.1.1: + resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-update@6.1.0: + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} + + long@2.4.0: + resolution: {integrity: sha512-ijUtjmO/n2A5PaosNG9ZGDsQ3vxJg7ZW8vsY8Kp0f2yIZWhSJvjmegV7t+9RPQKxKrvj8yKGehhS+po14hPLGQ==} + engines: {node: '>=0.6'} + + long@5.3.2: + resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==} + + look-it-up@2.1.0: + resolution: {integrity: sha512-nMoGWW2HurtuJf6XAL56FWTDCWLOTSsanrgwOyaR5Y4e3zfG5N/0cU5xWZSEU3tBxhQugRbV1xL9jb+ug7yZww==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + lowlight@1.20.0: + resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@2.2.4: + resolution: {integrity: sha512-Q5pAgXs+WEAfoEdw2qKQhNFFhMoFMTYqRVKKUMnzuiR7oKFHS7fWo848cPcTKw+4j/IdN17NyzdhVKgabFV0EA==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + + magic-bytes.js@1.8.0: + resolution: {integrity: sha512-lyWpfvNGVb5lu8YUAbER0+UMBTdR63w2mcSUlhhBTyVbxJvjgqwyAf3AZD6MprgK0uHuBoWXSDAMWLupX83o3Q==} + + main-event@1.0.1: + resolution: {integrity: sha512-NWtdGrAca/69fm6DIVd8T9rtfDII4Q8NQbIbsKQq2VzS9eqOGYs8uaNQjcuaCq/d9H/o625aOTJX2Qoxzqw0Pw==} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + makeerror@1.0.12: + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + + markdown-it@12.3.2: + resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==} + hasBin: true + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + + memfs@4.17.2: + resolution: {integrity: sha512-NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg==} + engines: {node: '>= 4.0.0'} + + memoize-one@6.0.0: + resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} + + merge-options@3.0.4: + resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} + engines: {node: '>=10'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + meros@1.3.0: + resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} + engines: {node: '>=13'} + peerDependencies: + '@types/node': '>=13' + peerDependenciesMeta: + '@types/node': + optional: true + + mersenne-twister@1.1.0: + resolution: {integrity: sha512-mUYWsMKNrm4lfygPkL3OfGzOPTR2DBlTkBNHM//F6hGp8cLThY897crAlk3/Jo17LEOOjQUrNAx6DvgO77QJkA==} + + micro-ftch@0.3.1: + resolution: {integrity: sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + + minim@0.23.8: + resolution: {integrity: sha512-bjdr2xW1dBCMsMGGsUeqM4eFI60m94+szhxWys+B1ztIt6gWSfeGBdSVCIawezeHYLYn0j6zrsXdQS/JllBzww==} + engines: {node: '>=6'} + + minimalistic-assert@1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + + minimalistic-crypto-utils@1.0.1: + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimatch@7.4.6: + resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==} + engines: {node: '>=10'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + mipd@0.0.7: + resolution: {integrity: sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + + mixpanel-browser@2.65.0: + resolution: {integrity: sha512-BtrVYqilloAqx3TIhoIpNikHznTocEy/z3QIf6WEiz4PFxrgI6LgSMFIVKqLqGZJ8svrPlHbpp/CJp5wQYUZWw==} + + mockdate@3.0.5: + resolution: {integrity: sha512-iniQP4rj1FhBdBYS/+eQv7j1tadJ9lJtdzgOpvsOHng/GbcDh2Fhdeq+ZRldrPYdXvCyfFUmFeEwEGXZB5I/AQ==} + + module-details-from-path@1.0.4: + resolution: {integrity: sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==} + + monaco-editor@0.34.1: + resolution: {integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==} + + mortice@3.3.1: + resolution: {integrity: sha512-t3oESfijIPGsmsdLEKjF+grHfrbnKSXflJtgb1wY14cjxZpS6GnhHRXTxxzCAoCCnq1YYfpEPwY3gjiCPhOufQ==} + + motion@10.16.2: + resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==} + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + ms@3.0.0-canary.1: + resolution: {integrity: sha512-kh8ARjh8rMN7Du2igDRO9QJnqCb2xYTJxyQYK7vJJS4TvLLmsbyhiKpSW+t+y26gyOyMd0riphX0GeWKU3ky5g==} + engines: {node: '>=12.13'} + + multiformats@13.3.6: + resolution: {integrity: sha512-yakbt9cPYj8d3vi/8o/XWm61MrOILo7fsTL0qxNx6zS0Nso6K5JqqS2WV7vK/KSuDBvrW3KfCwAdAgarAgOmww==} + + multiformats@9.9.0: + resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} + + murmurhash3js-revisited@3.0.0: + resolution: {integrity: sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g==} + engines: {node: '>=8.0.0'} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nano-spawn@1.0.2: + resolution: {integrity: sha512-21t+ozMQDAL/UGgQVBbZ/xXvNO10++ZPuTmKRO8k9V3AClVRht49ahtDjfY8l1q6nSHOrE5ASfthzH3ol6R/hg==} + engines: {node: '>=20.17'} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + napi-postinstall@0.2.4: + resolution: {integrity: sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + hasBin: true + + natural-compare-lite@1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + neotraverse@0.6.18: + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} + engines: {node: '>= 10'} + + netmask@2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + + next-themes@0.4.4: + resolution: {integrity: sha512-LDQ2qIOJF0VnuVrrMSMLrWGjRMkq+0mpgl6e0juCLqdJ+oo8Q84JRWT6Wh11VDQKkMMe+dVzDKLWs5n87T+PkQ==} + peerDependencies: + react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc + react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc + + next@15.2.3: + resolution: {integrity: sha512-x6eDkZxk2rPpu46E1ZVUWIBhYCLszmUY6fvHBFcbzJ9dD+qRX6vcHusaqqDlnY+VngKzKbAiG2iRCkPbmi8f7w==} + engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + + nextjs-routes@1.0.9: + resolution: {integrity: sha512-vITLm5SzpoYGGgDUmWXjf2GU5oHyc4Oh/b7VdDOTqKudEOWuSk1pluZFIlZ9ogVqVxI28c+U+EQ6KyjZOuZR5g==} + peerDependencies: + next: '*' + + node-abort-controller@3.1.1: + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + + node-addon-api@2.0.2: + resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} + + node-addon-api@8.3.1: + resolution: {integrity: sha512-lytcDEdxKjGJPTLEfW4mYMigRezMlyJY8W4wxJK8zE533Jlb8L8dRuObJFWg2P+AuOIxoCgKF+2Oq4d4Zd0OUA==} + engines: {node: ^18 || ^20 || >= 21} + + node-domexception@1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + deprecated: Use your platform's native DOMException instead + + node-eval@2.0.0: + resolution: {integrity: sha512-Ap+L9HznXAVeJj3TJ1op6M6bg5xtTq8L5CU/PJxtkhea/DrIxdTknGKIECKd/v/Lgql95iuMAYvIzBNd0pmcMg==} + engines: {node: '>= 4'} + + node-fetch-commonjs@3.3.2: + resolution: {integrity: sha512-VBlAiynj3VMLrotgwOS3OyECFxas5y7ltLcK4t41lMUZeaK15Ym4QRkqN0EQKAFL42q9i21EPKjzLUPfltR72A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + node-fetch-native@1.6.6: + resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-fetch@3.3.2: + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + node-gyp-build@4.8.4: + resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} + hasBin: true + + node-html-parser@6.1.13: + resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} + + node-int64@0.4.0: + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + + node-mock-http@1.0.0: + resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + nullthrows@1.1.1: + resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} + + nwsapi@2.2.20: + resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} + + obj-multiplex@1.0.0: + resolution: {integrity: sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA==} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.entries@1.1.9: + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + ofetch@1.4.1: + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} + + on-exit-leak-free@0.2.0: + resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} + + on-exit-leak-free@2.1.2: + resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} + engines: {node: '>=14.0.0'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + open@7.4.2: + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} + + openapi-path-templating@2.2.1: + resolution: {integrity: sha512-eN14VrDvl/YyGxxrkGOHkVkWEoPyhyeydOUrbvjoz8K5eIGgELASwN1eqFOJ2CTQMGCy2EntOK1KdtJ8ZMekcg==} + engines: {node: '>=12.20.0'} + + openapi-server-url-templating@1.3.0: + resolution: {integrity: sha512-DPlCms3KKEbjVQb0spV6Awfn6UWNheuG/+folQPzh/wUaKwuqvj8zt5gagD7qoyxtE03cIiKPgLFS3Q8Bz00uQ==} + engines: {node: '>=12.20.0'} + + opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + + opentracing@0.14.7: + resolution: {integrity: sha512-vz9iS7MJ5+Bp1URw8Khvdyw1H/hGvzHWlKQ7eRrQojSCDL1/SrWfrY9QebLw97n2deyRtzHRC3MkQfVNUCo91Q==} + engines: {node: '>=0.10'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + ox@0.6.7: + resolution: {integrity: sha512-17Gk/eFsFRAZ80p5eKqv89a57uXjd3NgIf1CaXojATPBuujVc/fQSVhBeAU9JCRB+k7J50WQAyWTxK19T9GgbA==} + peerDependencies: + typescript: '>=5.4.0' + peerDependenciesMeta: + typescript: + optional: true + + ox@0.6.9: + resolution: {integrity: sha512-wi5ShvzE4eOcTwQVsIPdFr+8ycyX+5le/96iAJutaZAvCes1J0+RvpEPg5QDPDiaR0XQQAvZVl7AwqQcINuUug==} + peerDependencies: + typescript: '>=5.4.0' + peerDependenciesMeta: + typescript: + optional: true + + ox@0.7.1: + resolution: {integrity: sha512-+k9fY9PRNuAMHRFIUbiK9Nt5seYHHzSQs9Bj+iMETcGtlpS7SmBzcGSVUQO3+nqGLEiNK4598pHNFlVRaZbRsg==} + peerDependencies: + typescript: '>=5.4.0' + peerDependenciesMeta: + typescript: + optional: true + + p-defer@4.0.1: + resolution: {integrity: sha512-Mr5KC5efvAK5VUptYEIopP1bakB85k2IWXaRC0rsh1uwn1L6M0LVml8OIQ4Gudg4oyZakf7FmeRLkMMtZW1i5A==} + engines: {node: '>=12'} + + p-event@6.0.1: + resolution: {integrity: sha512-Q6Bekk5wpzW5qIyUP4gdMEujObYstZl6DMMOSenwBvV0BlE5LkDwkjs5yHbZmdCEq2o4RJx4tE1vwxFVf2FG1w==} + engines: {node: '>=16.17'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-queue@8.1.0: + resolution: {integrity: sha512-mxLDbbGIBEXTJL0zEx8JIylaj3xQ7Z/7eEVjcF9fJX4DBiH9oqe+oahYnlKKxm0Ci9TlWTyhSHgygxMxjIB2jw==} + engines: {node: '>=18'} + + p-timeout@6.1.4: + resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} + engines: {node: '>=14.16'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + package-manager-detector@0.1.2: + resolution: {integrity: sha512-iePyefLTOm2gEzbaZKSW+eBMjg+UYsQvUKxmvGXAQ987K16efBg10MxIjZs08iyX+DY2/owKY9DIdu193kX33w==} + + papaparse@5.5.3: + resolution: {integrity: sha512-5QvjGxYVjxO59MGU2lHVYpRWBBtKHnlIAcSe1uNFCkkptUh63NFRj0FJQm7nR67puEruUci/ZkjmEFrjCAyP4A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + patch-package@8.0.0: + resolution: {integrity: sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==} + engines: {node: '>=14', npm: '>5'} + hasBin: true + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-to-regexp@8.1.0: + resolution: {integrity: sha512-Bqn3vc8CMHty6zuD+tG23s6v2kwxslHEhTj4eYaVKGIEB+YX/2wd0/rgXLFD9G9id9KCtbVy/3ZgmvZjpa0UdQ==} + engines: {node: '>=16'} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + + path-unified@0.2.0: + resolution: {integrity: sha512-MNKqvrKbbbb5p7XHXV6ZAsf/1f/yJQa13S/fcX0uua8ew58Tgc6jXV+16JyAbnR/clgCH+euKDxrF2STxMHdrg==} + + path@0.12.7: + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + + perfect-freehand@1.2.2: + resolution: {integrity: sha512-eh31l019WICQ03pkF3FSzHxB8n07ItqIQ++G5UV8JX0zVOXzgTGCqnRR0jJ2h9U8/2uW4W4mtGJELt9kEV0CFQ==} + + pg-int8@1.0.1: + resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} + engines: {node: '>=4.0.0'} + + pg-protocol@1.10.0: + resolution: {integrity: sha512-IpdytjudNuLv8nhlHs/UrVBhU0e78J0oIS/0AVdTbWxSOkFUVdsHC/NrorO6nXsQNDTT1kzDSOMJubBQviX18Q==} + + pg-types@2.2.0: + resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} + engines: {node: '>=4'} + + phoenix@1.7.21: + resolution: {integrity: sha512-8wOvJ8pQXRxNbyFlMI+wQhK3bvX4Ps3FtUX2+0cV6lkcebe9VTIl+xS60FLAeaPieFg80djor5z/AKofnwqAUw==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + pino-abstract-transport@0.5.0: + resolution: {integrity: sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==} + + pino-abstract-transport@1.2.0: + resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} + + pino-http@8.6.1: + resolution: {integrity: sha512-J0hiJgUExtBXP2BjrK4VB305tHXS31sCmWJ9XJo2wPkLHa1NFPuW4V9wjG27PAc2fmBCigiNhQKpvrx+kntBPA==} + + pino-pretty@9.4.1: + resolution: {integrity: sha512-loWr5SNawVycvY//hamIzyz3Fh5OSpvkcO13MwdDW+eKIGylobPLqnVGTDwDXkdmpJd1BhEG+qhDw09h6SqJiQ==} + hasBin: true + + pino-std-serializers@4.0.0: + resolution: {integrity: sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==} + + pino-std-serializers@6.2.2: + resolution: {integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==} + + pino@7.11.0: + resolution: {integrity: sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==} + hasBin: true + + pino@8.21.0: + resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==} + hasBin: true + + pirates@4.0.7: + resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} + engines: {node: '>= 6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + playwright-core@1.49.0: + resolution: {integrity: sha512-R+3KKTQF3npy5GTiKH/T+kdhoJfJojjHESR1YEWhYuEKRVfVaxH3+4+GvXE5xyCngCxhxnykk0Vlah9v8fs3jA==} + engines: {node: '>=18'} + hasBin: true + + playwright@1.49.0: + resolution: {integrity: sha512-eKpmys0UFDnfNb3vfsf8Vx2LEOtflgRebl0Im2eQQnYMA4Aqd+Zw8bEOB+7ZKvN76901mRnqdsiOGKxzVTbi7A==} + engines: {node: '>=18'} + hasBin: true + + pngjs@5.0.0: + resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} + engines: {node: '>=10.13.0'} + + pony-cause@2.1.11: + resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==} + engines: {node: '>=12.0.0'} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss-load-config@4.0.1: + resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@4.2.0: + resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@3.2.1: + resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules@4.3.1: + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + + postcss-selector-parser@7.1.0: + resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} + engines: {node: '>=4'} + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.4: + resolution: {integrity: sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==} + engines: {node: ^10 || ^12 || >=14} + + postgres-array@2.0.0: + resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} + engines: {node: '>=4'} + + postgres-bytea@1.0.0: + resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==} + engines: {node: '>=0.10.0'} + + postgres-date@1.0.7: + resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==} + engines: {node: '>=0.10.0'} + + postgres-interval@1.2.0: + resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} + engines: {node: '>=0.10.0'} + + preact@10.26.8: + resolution: {integrity: sha512-1nMfdFjucm5hKvq0IClqZwK4FJkGXhRrQstOQ3P4vp8HxKrJEMFcY6RdBRVTdfQS/UlnX6gfbPuTvaqx/bDoeQ==} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier@3.3.3: + resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} + engines: {node: '>=14'} + hasBin: true + + prettier@3.5.3: + resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} + engines: {node: '>=14'} + hasBin: true + + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + prismjs@1.27.0: + resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} + engines: {node: '>=6'} + + prismjs@1.30.0: + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} + engines: {node: '>=6'} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + process-warning@1.0.0: + resolution: {integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==} + + process-warning@3.0.0: + resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} + + process@0.10.1: + resolution: {integrity: sha512-dyIett8dgGIZ/TXKUzeYExt7WA6ldDzys9vTDU/cCA9L17Ypme+KzS+NjQCjpn9xsvi/shbMC+yP/BcFMBz0NA==} + engines: {node: '>= 0.6.0'} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} + engines: {node: '>= 0.6.0'} + + progress-events@1.0.1: + resolution: {integrity: sha512-MOzLIwhpt64KIVN64h1MwdKWiyKFNc/S6BoYKPIVUHFg0/eIEyBulhWCgn678v/4c0ri3FdGuzXymNCv02MUIw==} + + prom-client@15.1.1: + resolution: {integrity: sha512-GVA2H96QCg2q71rjc3VYvSrVG7OpnJxyryC7dMzvfJfpJJHzQVwF3TJLfHzKORcwJpElWs1TwXLthlJAFJxq2A==} + engines: {node: ^16 || ^18 || >=20} + + promise-polyfill@8.3.0: + resolution: {integrity: sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + property-information@5.6.0: + resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + + protobufjs@7.5.3: + resolution: {integrity: sha512-sildjKwVqOI2kmFDiXQ6aEB0fjYTafpEvIBs8tOR8qI4spuL9OPROLVu2qZqi/xgCfsHIwVqlaF8JBjWFHnKbw==} + engines: {node: '>=12.0.0'} + + protons-runtime@5.5.0: + resolution: {integrity: sha512-EsALjF9QsrEk6gbCx3lmfHxVN0ah7nG3cY7GySD4xf4g8cr7g543zB88Foh897Sr1RQJ9yDCUsoT1i1H/cVUFA==} + + proxy-compare@2.5.1: + resolution: {integrity: sha512-oyfc0Tx87Cpwva5ZXezSp5V9vht1c7dZBhvuV/y3ctkgMVUmiAGDVeeB0dKhGSyT0v1ZTEQYpe/RXlBVBNuCLA==} + + proxy-compare@2.6.0: + resolution: {integrity: sha512-8xuCeM3l8yqdmbPoYeLbrAXCBWu19XEYc5/F28f5qOaoAIMyfmBUkl5axiK+x9olUvRlcekvnm98AP9RDngOIw==} + + proxy-compare@3.0.1: + resolution: {integrity: sha512-V9plBAt3qjMlS1+nC8771KNf6oJ12gExvaxnNzN/9yVRLdTv/lc+oJlnSzrdYDAvBfTStPCoiaCOTmTs0adv7Q==} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + proxy-memoize@3.0.1: + resolution: {integrity: sha512-VDdG/VYtOgdGkWJx7y0o7p+zArSf2383Isci8C+BP3YXgMYDoPd3cCBjw0JdWb6YBb9sFiOPbAADDVTPJnh+9g==} + + psl@1.15.0: + resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==} + + pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} + + punycode@1.4.1: + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + qrcode@1.5.3: + resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==} + engines: {node: '>=10.13.0'} + hasBin: true + + qrcode@1.5.4: + resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==} + engines: {node: '>=10.13.0'} + hasBin: true + + qs@6.14.0: + resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} + engines: {node: '>=0.6'} + + query-string@7.1.3: + resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} + engines: {node: '>=6'} + + querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-format-unescaped@4.0.4: + resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} + + rabin-wasm@0.1.5: + resolution: {integrity: sha512-uWgQTo7pim1Rnj5TuWcCewRDTf0PEFTSlaUjWP4eY9EbLV9em08v89oCz/WO+wRxpYuO36XEHp4wgYQnAgOHzA==} + hasBin: true + + race-event@1.3.0: + resolution: {integrity: sha512-kaLm7axfOnahIqD3jQ4l1e471FIFcEGebXEnhxyLscuUzV8C94xVHtWEqDDXxll7+yu/6lW0w1Ff4HbtvHvOHg==} + + race-signal@1.1.3: + resolution: {integrity: sha512-Mt2NznMgepLfORijhQMncE26IhkmjEphig+/1fKC0OtaKwys/gpvpmswSjoN01SS+VO951mj0L4VIDXdXsjnfA==} + + radix3@1.1.2: + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} + + ramda-adjunct@5.1.0: + resolution: {integrity: sha512-8qCpl2vZBXEJyNbi4zqcgdfHtcdsWjOGbiNSEnEBrM6Y0OKOT8UxJbIVGm1TIcjaSu2MxaWcgtsNlKlCk7o7qg==} + engines: {node: '>=0.10.3'} + peerDependencies: + ramda: '>= 0.30.0' + + ramda@0.30.1: + resolution: {integrity: sha512-tEF5I22zJnuclswcZMc8bDIrwRHRzf+NqVEmqg50ShAZMP7MWeR/RGDthfM/p+BlqvF2fXAzpn8i+SJcYD3alw==} + + randexp@0.5.3: + resolution: {integrity: sha512-U+5l2KrcMNOUPYvazA3h5ekF80FHTUG+87SEAmHZmolh1M+i/WyTCxVzmi+tidIa1tM4BSe8g2Y/D3loWDjj+w==} + engines: {node: '>=4'} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + react-async-script@1.2.0: + resolution: {integrity: sha512-bCpkbm9JiAuMGhkqoAiC0lLkb40DJ0HOEJIku+9JDjxX3Rcs+ztEOG13wbrOskt3n2DTrjshhaQ/iay+SnGg5Q==} + peerDependencies: + react: '>=16.4.1' + + react-clientside-effect@1.2.8: + resolution: {integrity: sha512-ma2FePH0z3px2+WOu6h+YycZcEvFmmxIlAb62cF52bG86eMySciO/EQZeQMXd07kPCYB0a1dWDT5J+KE9mCDUw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + + react-copy-to-clipboard@5.1.0: + resolution: {integrity: sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==} + peerDependencies: + react: ^15.3.0 || 16 || 17 || 18 + + react-debounce-input@3.3.0: + resolution: {integrity: sha512-VEqkvs8JvY/IIZvh71Z0TC+mdbxERvYF33RcebnodlsUZ8RSgyKe2VWaHXv4+/8aoOgXLxWrdsYs2hDhcwbUgA==} + peerDependencies: + react: ^15.3.0 || 16 || 17 || 18 + + react-device-detect@2.2.3: + resolution: {integrity: sha512-buYY3qrCnQVlIFHrC5UcUoAj7iANs/+srdkwsnNjI7anr3Tt7UY6MqNxtMLlr0tMBied0O49UZVK8XKs3ZIiPw==} + peerDependencies: + react: '>= 0.14.0' + react-dom: '>= 0.14.0' + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react-focus-lock@2.13.6: + resolution: {integrity: sha512-ehylFFWyYtBKXjAO9+3v8d0i+cnc1trGS0vlTGhzFW1vbFXVUTmR8s2tt/ZQG8x5hElg6rhENlLG1H3EZK0Llg==} + peerDependencies: + '@types/react': 18.3.12 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + react-google-recaptcha@3.1.0: + resolution: {integrity: sha512-cYW2/DWas8nEKZGD7SCu9BSuVz8iOcOLHChHyi7upUuVhkpkhYG/6N3KDiTQ3XAiZ2UAZkfvYKMfAHOzBOcGEg==} + peerDependencies: + react: '>=16.4.1' + + react-hook-form@7.52.1: + resolution: {integrity: sha512-uNKIhaoICJ5KQALYZ4TOaOLElyM+xipord+Ha3crEFhTntdLvWZqVY49Wqd/0GiVCA/f9NjemLeiNPjG7Hpurg==} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 || ^19 + + react-icons@5.4.0: + resolution: {integrity: sha512-7eltJxgVt7X64oHh6wSWNwwbKTCtMfK35hcjvJS0yxEAhPM8oUKdS3+kqaW1vicIltw+kR2unHaa12S9pPALoQ==} + peerDependencies: + react: '*' + + react-identicons@1.2.5: + resolution: {integrity: sha512-x7prkDoc2pD7wSl2C1pGxS+XAoSdq1ABWJWTBUimVTDVJArKOLd0B4wRUJpDm4r+9y7pgf8ylyPGsmlWSV5n2g==} + peerDependencies: + react: ^17.0.1 + react-dom: ^17.0.1 + + react-immutable-proptypes@2.2.0: + resolution: {integrity: sha512-Vf4gBsePlwdGvSZoLSBfd4HAP93HDauMY4fDjXhreg/vg6F3Fj/MXDNyTbltPC/xZKmZc+cjLu3598DdYK6sgQ==} + peerDependencies: + immutable: '>=3.6.2' + + react-immutable-pure-component@2.2.2: + resolution: {integrity: sha512-vkgoMJUDqHZfXXnjVlG3keCxSO/U6WeDQ5/Sl0GK2cH8TOxEzQ5jXqDXHEL/jqk6fsNxV05oH5kD7VNMUE2k+A==} + peerDependencies: + immutable: '>= 2 || >= 4.0.0-rc' + react: '>= 16.6' + react-dom: '>= 16.6' + + react-inspector@6.0.2: + resolution: {integrity: sha512-x+b7LxhmHXjHoU/VrFAzw5iutsILRoYyDq97EDYdFpPLcvqtEzk4ZSZSQjnFPbr5T57tLXnHcqFYoN1pI6u8uQ==} + peerDependencies: + react: ^16.8.4 || ^17.0.0 || ^18.0.0 + + react-intersection-observer@9.16.0: + resolution: {integrity: sha512-w9nJSEp+DrW9KmQmeWHQyfaP6b03v+TdXynaoA964Wxt7mdR3An11z4NNCQgL4gKSK7y1ver2Fq+JKH6CWEzUA==} + peerDependencies: + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + react-dom: + optional: true + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + + react-jazzicon@1.0.4: + resolution: {integrity: sha512-/3kWv5vtAhI18GBFoqjpxRTtL+EImuB73PAC02r/zJQ6E+PAUmoBx8edYvTCIYHwS01uFf6N3elTDqSrVPwg4w==} + peerDependencies: + react: '>=17.0.0' + react-dom: '>=17.0.0' + + react-number-format@5.4.4: + resolution: {integrity: sha512-wOmoNZoOpvMminhifQYiYSTCLUDOiUbBunrMrMjA+dV52sY+vck1S4UhR6PkgnoCquvvMSeJjErXZ4qSaWCliA==} + peerDependencies: + react: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + react-redux@9.2.0: + resolution: {integrity: sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==} + peerDependencies: + '@types/react': 18.3.12 + react: ^18.0 || ^19 + redux: ^5.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + redux: + optional: true + + react-refresh@0.17.0: + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} + engines: {node: '>=0.10.0'} + + react-remove-scroll-bar@2.3.8: + resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': 18.3.12 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + react-remove-scroll@2.7.1: + resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': 18.3.12 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + react-script-hook@1.7.2: + resolution: {integrity: sha512-fhyCEfXb94fag34UPRF0zry1XGwmVY+79iibWwTqAoOiCzYJQOYTiWJ7CnqglA9tMSV8g45cQpHCMcBwr7dwhA==} + peerDependencies: + react: ^16.8.6 || 17 - 18 + react-dom: ^16.8.6 || 17 - 18 + + react-scroll@1.9.3: + resolution: {integrity: sha512-xv7FXqF3k63aSLNu4/NjFvRNI0ge7DmmmsbeGarP7LZVAlJMSjUuW3dTtLxp1Afijyv0lS2qwC0GiFHvx1KBHQ==} + peerDependencies: + react: ^15.5.4 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^15.5.4 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + react-select@5.8.3: + resolution: {integrity: sha512-lVswnIq8/iTj1db7XCG74M/3fbGB6ZaluCzvwPGT5ZOjCdL/k0CLWhEK0vCBLuU5bHTEf6Gj8jtSvi+3v+tO1w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + + react-style-singleton@2.2.3: + resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': 18.3.12 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + react-syntax-highlighter@15.6.1: + resolution: {integrity: sha512-OqJ2/vL7lEeV5zTJyG7kmARppUjiB9h9udl4qHQjjgEos66z00Ia0OckwYfRxCSFrW8RJIBnsBwQsHZbVPspqg==} + peerDependencies: + react: '>= 0.14.0' + + react-transition-group@4.4.5: + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readable-stream@4.7.0: + resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + readdirp@4.1.2: + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} + engines: {node: '>= 14.18.0'} + + real-require@0.1.0: + resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==} + engines: {node: '>= 12.13.0'} + + real-require@0.2.0: + resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} + engines: {node: '>= 12.13.0'} + + redux-immutable@4.0.0: + resolution: {integrity: sha512-SchSn/DWfGb3oAejd+1hhHx01xUoxY+V7TeK0BKqpkLKiQPVFf7DYzEaKmrEVxsWxielKfSK9/Xq66YyxgR1cg==} + peerDependencies: + immutable: ^3.8.1 || ^4.0.0-rc.1 + + redux@5.0.1: + resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==} + + refa@0.12.1: + resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + refractor@3.6.0: + resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} + + regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} + engines: {node: '>=4'} + + regenerate@1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + + regexp-ast-analysis@0.7.1: + resolution: {integrity: sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} + engines: {node: '>=4'} + + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + + remarkable@2.0.1: + resolution: {integrity: sha512-YJyMcOH5lrR+kZdmB0aJJ4+93bEojRZ1HGDn9Eagu6ibg7aVZhc3OWbbShRid+Q5eAfsEqWxpe+g5W5nYNfNiA==} + engines: {node: '>= 6.0.0'} + hasBin: true + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + request-ip@3.3.0: + resolution: {integrity: sha512-cA6Xh6e0fDBBBwH77SLJaJPBmD3nWVAcF9/XAcsrIHdjhFzFiB5aNQFytdjCGPezU3ROwrR11IddKAM08vohxA==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + require-in-the-middle@7.5.2: + resolution: {integrity: sha512-gAZ+kLqBdHarXB64XpAe2VCjB7rIRv+mU8tfRWziHRJ5umKsIHN2tLLv6EtMw7WCdP19S0ERVMldNvxYCHnhSQ==} + engines: {node: '>=8.6.0'} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + + reselect@5.1.1: + resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==} + + resolve-cwd@3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve.exports@2.0.3: + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + engines: {node: '>=10'} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} + + ret@0.2.2: + resolution: {integrity: sha512-M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ==} + engines: {node: '>=4'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rimraf@2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + robust-predicates@3.0.2: + resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + + rollbar@2.26.4: + resolution: {integrity: sha512-JKmrj6riYm9ZPJisgxljgH4uCsvjMHDHXrinDF7aAFaP+eoF51HomVPtLcDTYLsrJ568aKVNLUhedFajONBwSg==} + + rollup@4.41.1: + resolution: {integrity: sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + rrdom@2.0.0-alpha.18: + resolution: {integrity: sha512-fSFzFFxbqAViITyYVA4Z0o5G6p1nEqEr/N8vdgSKie9Rn0FJxDSNJgjV0yiCIzcDs0QR+hpvgFhpbdZ6JIr5Nw==} + + rrweb-snapshot@2.0.0-alpha.18: + resolution: {integrity: sha512-hBHZL/NfgQX6wO1D9mpwqFu1NJPpim+moIcKhFEjVTZVRUfCln+LOugRc4teVTCISYHN8Cw5e2iNTWCSm+SkoA==} + + rrweb@2.0.0-alpha.18: + resolution: {integrity: sha512-1mjZcB+LVoGSx1+i9E2ZdAP90fS3MghYVix2wvGlZvrgRuLCbTCCOZMztFCkKpgp7/EeCdYM4nIHJkKX5J1Nmg==} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rw@1.3.3: + resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} + engines: {node: '>=10'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + schema-utils@4.3.2: + resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==} + engines: {node: '>= 10.13.0'} + + scslre@0.3.0: + resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} + engines: {node: ^14.0.0 || >=16.0.0} + + scule@1.3.0: + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} + + secure-json-parse@2.7.0: + resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + serialize-error@8.1.0: + resolution: {integrity: sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==} + engines: {node: '>=10'} + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + set-value@4.1.0: + resolution: {integrity: sha512-zTEg4HL0RwVrqcWs3ztF+x1vkxfm0lP+MQQFPiMJTKVceBwEV0A569Ou8l9IYQG8jOZdMVI1hGsc0tmeD2o/Lw==} + engines: {node: '>=11.0'} + + sha.js@2.4.11: + resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} + hasBin: true + + sharp@0.33.5: + resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shimmer@1.2.1: + resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} + + short-unique-id@5.3.2: + resolution: {integrity: sha512-KRT/hufMSxXKEDSQujfVE0Faa/kZ51ihUcZQAcmP04t00DvPj7Ox5anHke1sJYUtzSuiT/Y5uyzg/W7bBEGhCg==} + hasBin: true + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + slash@2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + + slice-ansi@5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} + + slice-ansi@7.1.0: + resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} + engines: {node: '>=18'} + + socket.io-client@4.8.1: + resolution: {integrity: sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==} + engines: {node: '>=10.0.0'} + + socket.io-parser@4.2.4: + resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==} + engines: {node: '>=10.0.0'} + + sonic-boom@2.8.0: + resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} + + sonic-boom@3.8.1: + resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + space-separated-tokens@1.1.5: + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + + sparse-array@1.3.2: + resolution: {integrity: sha512-ZT711fePGn3+kQyLuv1fpd3rNSkNF8vd5Kv2D+qnOANeyKs3fx6bUMGWRPvgTTcYV64QMqZKZwcuaQSP3AZ0tg==} + + split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + stable-hash@0.0.5: + resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackframe@1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + + state-local@1.0.7: + resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + stream-shift@1.0.3: + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + + stream@0.0.3: + resolution: {integrity: sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A==} + + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + + strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + + string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + + string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + string-length@4.0.2: + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} + + string-template@0.2.1: + resolution: {integrity: sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string.prototype.includes@2.0.1: + resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} + engines: {node: '>= 0.4'} + + string.prototype.matchall@4.0.12: + resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} + engines: {node: '>= 0.4'} + + string.prototype.repeat@1.0.0: + resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-bom@4.0.0: + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + style-dictionary@4.4.0: + resolution: {integrity: sha512-+xU0IA1StzqAqFs/QtXkK+XJa7wpS4X5H+JQccRKsRCElgeLGocFU1U/UMvMUylKFw6vwGV+Y/a2wb2pm5rFFQ==} + engines: {node: '>=18.0.0'} + hasBin: true + + style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + + style-loader@3.3.4: + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + + style-mod@4.1.2: + resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==} + + styled-jsx@5.1.6: + resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + stylis@4.2.0: + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + super-regex@0.2.0: + resolution: {integrity: sha512-WZzIx3rC1CvbMDloLsVw0lkZVKJWbrkJ0k1ghKFmcnPrW1+jWbgTkTEWVtD9lMdmI4jZEz40+naBxl1dCUhXXw==} + engines: {node: '>=14.16'} + + superstruct@1.0.4: + resolution: {integrity: sha512-7JpaAoX2NGyoFlI9NBh66BQXGONc+uE+MRS5i2iOBKuS4e+ccgMDjATgZldkah+33DakBxDHiss9kvUcGAO8UQ==} + engines: {node: '>=14.0.0'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-color@9.4.0: + resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} + engines: {node: '>=12'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svg-icons-cli@0.0.5: + resolution: {integrity: sha512-6U7RB1n8qroIuJYjMO/HVk/3OXZS0m48Qu+pFXNGp2oRwhTdkTjMJ2PThbzzAwLNzBNmQ5qMfzQq5vqvp4Ocdg==} + hasBin: true + + svg-parser@2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true + + swagger-client@3.35.5: + resolution: {integrity: sha512-ayCrpDAgm5jIdq1kmcVWJRfp27cqU9tSRiAfKg3BKeplOmvu3+lKTPPtz4x1uI8v5l5/92Aopvq0EzRkXEr7Rw==} + + swagger-ui-react@5.20.3: + resolution: {integrity: sha512-VLk7uvPxgSRPqwbxgJEjHwtExuSZREhbvxfw6vCKChSQcPYrCeerlnwm790l99zDgYbTIRXEfF5YyNxPwe2mhQ==} + peerDependencies: + react: '>=16.8.0 <19' + react-dom: '>=16.8.0 <19' + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + tabbable@4.0.0: + resolution: {integrity: sha512-H1XoH1URcBOa/rZZWxLxHCtOdVUEev+9vo5YdYhC9tCY4wnybX+VQrCYuy9ubkg69fCBxCONJOSLGfw0DWMffQ==} + + tailwind-merge@2.6.0: + resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==} + + tapable@2.2.2: + resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} + engines: {node: '>=6'} + + tdigest@0.1.2: + resolution: {integrity: sha512-+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA==} + + terser-webpack-plugin@5.3.14: + resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + + terser@5.41.0: + resolution: {integrity: sha512-H406eLPXpZbAX14+B8psIuvIr8+3c+2hkuYzpMkoE0ij+NdsVATbA78vb8neA/eqrj7rywa2pIkdmWRsXW6wmw==} + engines: {node: '>=10'} + hasBin: true + + test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + thingies@1.21.0: + resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==} + engines: {node: '>=10.18'} + peerDependencies: + tslib: ^2 + + thread-stream@0.15.2: + resolution: {integrity: sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==} + + thread-stream@2.7.0: + resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==} + + thriftrw@3.11.4: + resolution: {integrity: sha512-UcuBd3eanB3T10nXWRRMwfwoaC6VMk7qe3/5YIWP2Jtw+EbHqJ0p1/K3x8ixiR5dozKSSfcg1W+0e33G1Di3XA==} + engines: {node: '>= 0.10.x'} + hasBin: true + + time-span@5.1.0: + resolution: {integrity: sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA==} + engines: {node: '>=12'} + + timestamp-nano@1.0.1: + resolution: {integrity: sha512-4oGOVZWTu5sl89PtCDnhQBSt7/vL1zVEwAfxH1p49JhTosxzVQWYBYFRFZ8nJmo0G6f824iyP/44BFAwIoKvIA==} + engines: {node: '>= 4.5.0'} + + tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + + tiny-parse-argv@2.8.2: + resolution: {integrity: sha512-RnIDHQ+r9zMuslQWVoRxfKVOumteeheQqbwNYJyQxzM2vzx/vdN5xAeL64F3rQOpfbVdxFkhM4zPDyfq7SxsBQ==} + + tiny-warning@1.0.3: + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + + tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + tmpl@1.0.5: + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toggle-selection@1.0.6: + resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + tough-cookie@4.1.4: + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + tr46@3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + + traverse-chain@0.1.0: + resolution: {integrity: sha512-up6Yvai4PYKhpNp5PkYtx50m3KbwQrqDwbuZP/ItyL64YEWHAvH6Md83LFLV/GRSk/BoUVwwgUzX6SOQSbsfAg==} + + tree-dump@1.0.3: + resolution: {integrity: sha512-il+Cv80yVHFBwokQSfd4bldvr1Md951DpgAGfmhydt04L+YzHgubm2tQ7zueWDcGENKHq0ZvGFR/hjvNXilHEg==} + engines: {node: '>=10.0'} + peerDependencies: + tslib: '2' + + tree-sitter-json@0.24.8: + resolution: {integrity: sha512-Tc9ZZYwHyWZ3Tt1VEw7Pa2scu1YO7/d2BCBbKTx5hXwig3UfdQjsOPkPyLpDJOn/m1UBEWYAtSdGAwCSyagBqQ==} + peerDependencies: + tree-sitter: ^0.21.1 + peerDependenciesMeta: + tree-sitter: + optional: true + + tree-sitter@0.21.1: + resolution: {integrity: sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==} + + tree-sitter@0.22.4: + resolution: {integrity: sha512-usbHZP9/oxNsUY65MQUsduGRqDHQOou1cagUSwjhoSYAmSahjQDAVsh9s+SlZkn8X8+O1FULRGwHu7AFP3kjzg==} + + ts-api-utils@1.4.3: + resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + ts-jest@29.3.4: + resolution: {integrity: sha512-Iqbrm8IXOmV+ggWHOTEbjwyCf2xZlUMv5npExksXohL+tk8va4Fjhb+X2+Rt9NBmgO7bJ8WpnMLOwih/DnMlFA==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 + esbuild: '*' + jest: ^29.0.0 + typescript: '>=4.3 <6' + peerDependenciesMeta: + '@babel/core': + optional: true + '@jest/transform': + optional: true + '@jest/types': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + + ts-mixer@6.0.4: + resolution: {integrity: sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==} + + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + ts-toolbelt@9.6.0: + resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} + + tsconfck@3.1.6: + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsutils@3.21.0: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@4.41.0: + resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} + engines: {node: '>=16'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + types-ramda@0.30.1: + resolution: {integrity: sha512-1HTsf5/QVRmLzcGfldPFvkVsAdi1db1BBKzi7iW3KBUlOICg/nKnFS+jGqDJS3YD8VsWbAh7JiHeBvbsw8RPxA==} + + typescript-eslint@8.14.0: + resolution: {integrity: sha512-K8fBJHxVL3kxMmwByvz8hNdBJ8a0YqKzKDX6jRlrjMuNXyd5T2V02HIq37+OiWXvUUOXgOOGiSSOh26Mh8pC3w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + + typescript@5.4.2: + resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} + engines: {node: '>=14.17'} + hasBin: true + + ua-parser-js@1.0.40: + resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==} + hasBin: true + + uc.micro@1.0.6: + resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} + + ufo@1.6.1: + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} + + uint8-varint@2.0.4: + resolution: {integrity: sha512-FwpTa7ZGA/f/EssWAb5/YV6pHgVF1fViKdW8cWaEarjB8t7NyofSWBdOTyFPaGuUG4gx3v1O3PQ8etsiOs3lcw==} + + uint8arraylist@2.4.8: + resolution: {integrity: sha512-vc1PlGOzglLF0eae1M8mLRTBivsvrGsdmJ5RbK3e+QRvRLOZfZhQROTwH/OfyF3+ZVUg9/8hE8bmKP2CvP9quQ==} + + uint8arrays@3.1.0: + resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==} + + uint8arrays@5.1.0: + resolution: {integrity: sha512-vA6nFepEmlSKkMBnLBaUMVvAC4G3CTmO58C12y4sq6WPDOR7mOFYOi7GlrQ4djeSbP6JG9Pv9tJDM97PedRSww==} + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + uncrypto@0.1.3: + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} + + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + + unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} + engines: {node: '>=4'} + + unicode-match-property-ecmascript@2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + + unicode-match-property-value-ecmascript@2.2.0: + resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} + engines: {node: '>=4'} + + unicode-property-aliases-ecmascript@2.1.0: + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} + + unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + + universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unraw@3.0.0: + resolution: {integrity: sha512-08/DA66UF65OlpUDIQtbJyrqTR0jTAlJ+jsnkQ4jxR7+K5g5YG1APZKQSMCE1vqqmD+2pv6+IdEjmopFatacvg==} + + unrs-resolver@1.7.11: + resolution: {integrity: sha512-OhuAzBImFPjKNgZ2JwHMfGFUA6NSbRegd1+BPjC1Y0E6X9Y/vJ4zKeGmIMqmlYboj6cMNEwKI+xQisrg4J0HaQ==} + + unstorage@1.16.0: + resolution: {integrity: sha512-WQ37/H5A7LcRPWfYOrDa1Ys02xAbpPJq6q5GkO88FBXVSQzHd7+BjEwfRqyaSWCv9MbsJy058GWjjPjcJ16GGA==} + peerDependencies: + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 + '@azure/identity': ^4.6.0 + '@azure/keyvault-secrets': ^4.9.0 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6.0.3 || ^7.0.0 + '@deno/kv': '>=0.9.0' + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.1' + '@vercel/kv': ^1.0.1 + aws4fetch: ^1.0.20 + db0: '>=0.2.1' + idb-keyval: ^6.2.1 + ioredis: ^5.4.2 + uploadthing: ^7.4.4 + peerDependenciesMeta: + '@azure/app-configuration': + optional: true + '@azure/cosmos': + optional: true + '@azure/data-tables': + optional: true + '@azure/identity': + optional: true + '@azure/keyvault-secrets': + optional: true + '@azure/storage-blob': + optional: true + '@capacitor/preferences': + optional: true + '@deno/kv': + optional: true + '@netlify/blobs': + optional: true + '@planetscale/database': + optional: true + '@upstash/redis': + optional: true + '@vercel/blob': + optional: true + '@vercel/kv': + optional: true + aws4fetch: + optional: true + db0: + optional: true + idb-keyval: + optional: true + ioredis: + optional: true + uploadthing: + optional: true + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uqr@0.1.2: + resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + + url@0.11.4: + resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} + engines: {node: '>= 0.4'} + + use-callback-ref@1.3.3: + resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': 18.3.12 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + use-font-face-observer@1.3.0: + resolution: {integrity: sha512-gS5UoSPcOoCF+JMbw2By1E3FtXl6ZPxgFo8MW4shpM15lf+MNyzEfjsLJFJ3T/mHLdGTBhQgZYSAXEzubr6v5Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-isomorphic-layout-effect@1.2.1: + resolution: {integrity: sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + + use-sidecar@1.1.3: + resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==} + engines: {node: '>=10'} + peerDependencies: + '@types/react': 18.3.12 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + use-sync-external-store@1.2.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + + use-sync-external-store@1.4.0: + resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + use-sync-external-store@1.5.0: + resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + utf-8-validate@5.0.10: + resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} + engines: {node: '>=6.14.2'} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + + util@0.12.5: + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + + uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + + uuid@9.0.1: + resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + hasBin: true + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + v8-to-istanbul@9.3.0: + resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==} + engines: {node: '>=10.12.0'} + + valibot@0.38.0: + resolution: {integrity: sha512-RCJa0fetnzp+h+KN9BdgYOgtsMAG9bfoJ9JSjIhFHobKWVWyzM3jjaeNTdpFK9tQtf3q1sguXeERJ/LcmdFE7w==} + peerDependencies: + typescript: '>=5' + peerDependenciesMeta: + typescript: + optional: true + + valtio@1.11.2: + resolution: {integrity: sha512-1XfIxnUXzyswPAPXo1P3Pdx2mq/pIqZICkWN60Hby0d9Iqb+MEIpqgYVlbflvHdrp2YR/q3jyKWRPJJ100yxaw==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': 18.3.12 + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + react: + optional: true + + valtio@1.13.2: + resolution: {integrity: sha512-Qik0o+DSy741TmkqmRfjq+0xpZBXi/Y6+fXZLn0xNF1z/waFMbE3rkivv5Zcf9RrMUp6zswf2J7sbh2KBlba5A==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': 18.3.12 + react: '>=16.8' + peerDependenciesMeta: + '@types/react': + optional: true + react: + optional: true + + varint@6.0.0: + resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==} + + viem@2.23.14: + resolution: {integrity: sha512-ol8UKYT418u+7Lg83Ut7WJe7iOn1daGAqaofCoPe5z7eGR/XCu3ydja7eL7Z5ffwp6r0RoXeWkpun78UYhKygA==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + viem@2.23.2: + resolution: {integrity: sha512-NVmW/E0c5crMOtbEAqMF0e3NmvQykFXhLOc/CkLIXOlzHSA6KXVz3CYVmaKqBF8/xtjsjHAGjdJN3Ru1kFJLaA==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + viem@2.30.6: + resolution: {integrity: sha512-N3vGy3pZ+EVgQRuWqQhZPFXxQE8qMRrBd3uM+KLc1Ub2w6+vkyr7umeWQCM4c+wlsCdByUgh2630MDMLquMtpg==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + + vite-plugin-svgr@2.4.0: + resolution: {integrity: sha512-q+mJJol6ThvqkkJvvVFEndI4EaKIjSI0I3jNFgSoC9fXAz1M7kYTVUin8fhUsFojFDKZ9VHKtX6NXNaOLpbsHA==} + peerDependencies: + vite: ^2.6.0 || 3 || 4 + + vite-tsconfig-paths@4.3.2: + resolution: {integrity: sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==} + peerDependencies: + vite: '*' + peerDependenciesMeta: + vite: + optional: true + + vite@5.4.19: + resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vscode-languageserver-types@3.17.5: + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} + + w3c-keyname@2.2.8: + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + + w3c-xmlserializer@4.0.0: + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} + + wagmi@2.14.15: + resolution: {integrity: sha512-sRa7FsEmgph1KsIK93wCS2MhZgUae18jI/+Ger+INSxytJbhzNkukpHxWlNfV/Skl8zxDAQfxucotZLi8UadZQ==} + peerDependencies: + '@tanstack/react-query': '>=5.0.0' + react: '>=18' + typescript: '>=5.0.4' + viem: 2.x + peerDependenciesMeta: + typescript: + optional: true + + walker@1.0.8: + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + + watchpack@2.4.4: + resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==} + engines: {node: '>=10.13.0'} + + weald@1.0.4: + resolution: {integrity: sha512-+kYTuHonJBwmFhP1Z4YQK/dGi3jAnJGCYhyODFpHK73rbxnp9lnZQj7a2m+WVgn8fXr5bJaxUpF6l8qZpPeNWQ==} + + web-streams-polyfill@3.3.3: + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} + engines: {node: '>= 8'} + + web-tree-sitter@0.24.5: + resolution: {integrity: sha512-+J/2VSHN8J47gQUAvF8KDadrfz6uFYVjxoxbKWDoXVsH2u7yLdarCnIURnrMA6uSRkgX3SdmqM5BOoQjPdSh5w==} + + webextension-polyfill-ts@0.25.0: + resolution: {integrity: sha512-ikQhwwHYkpBu00pFaUzIKY26I6L87DeRI+Q6jBT1daZUNuu8dSrg5U9l/ZbqdaQ1M/TTSPKeAa3kolP5liuedw==} + deprecated: This project has moved to @types/webextension-polyfill + + webextension-polyfill@0.10.0: + resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==} + + webextension-polyfill@0.12.0: + resolution: {integrity: sha512-97TBmpoWJEE+3nFBQ4VocyCdLKfw54rFaJ6EVQYLBCXqCIpLSZkwGgASpv4oPt9gdKCJ80RJlcmNzNn008Ag6Q==} + + webextension-polyfill@0.7.0: + resolution: {integrity: sha512-su48BkMLxqzTTvPSE1eWxKToPS2Tv5DLGxKexLEVpwFd6Po6N8hhSLIvG6acPAg7qERoEaDL+Y5HQJeJeml5Aw==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + webpack-bundle-analyzer@4.10.1: + resolution: {integrity: sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==} + engines: {node: '>= 10.13.0'} + hasBin: true + + webpack-sources@3.3.2: + resolution: {integrity: sha512-ykKKus8lqlgXX/1WjudpIEjqsafjOTcOJqxnAbMLAu/KCsDCJ6GBtvscewvTkrn24HsnvFwrSCbenFrhtcCsAA==} + engines: {node: '>=10.13.0'} + + webpack@5.99.9: + resolution: {integrity: sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + whatwg-encoding@2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + + whatwg-mimetype@3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + + whatwg-url@11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrap-ansi@9.0.0: + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + write-file-atomic@4.0.2: + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.17.1: + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.18.1: + resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + ws@8.18.2: + resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xml-but-prettier@1.0.1: + resolution: {integrity: sha512-C2CJaadHrZTqESlH03WOyw0oZTtoy2uEg6dSDF6YRg+9GnYNub53RRemLpnvtbHDFelxMx4LajiFsYeR6XJHgQ==} + + xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + + xml@1.0.1: + resolution: {integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xmlhttprequest-ssl@2.1.2: + resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==} + engines: {node: '>=0.4.0'} + + xorshift@1.2.0: + resolution: {integrity: sha512-iYgNnGyeeJ4t6U11NpA/QiKy+PXn5Aa3Azg5qkwIFz1tBLllQrjjsk9yzD7IAK0naNU4JxdeDgqW9ov4u/hc4g==} + + xss@1.0.15: + resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==} + engines: {node: '>= 0.10.0'} + hasBin: true + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yaml@2.8.0: + resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zenscroll@4.0.2: + resolution: {integrity: sha512-jEA1znR7b4C/NnaycInCU6h/d15ZzCd1jmsruqOKnZP6WXQSMH3W2GL+OXbkruslU4h+Tzuos0HdswzRUk/Vgg==} + + zod@3.22.4: + resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} + + zod@3.25.53: + resolution: {integrity: sha512-BKOKoY3XcGUVkqaalCtFK15LhwR0G0i65AClFpWSXLN2gJNBGlTktukHgwexCTa/dAacPPp9ReryXPWyeZF4LQ==} + + zustand@5.0.0: + resolution: {integrity: sha512-LE+VcmbartOPM+auOjCCLQOsQ05zUTp8RkgwRzefUk+2jISdMMFnxvyTjA4YNWr5ZGXYbVsEMZosttuxUBkojQ==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': 18.3.12 + immer: '>=9.0.6' + react: '>=18.0.0' + use-sync-external-store: '>=1.2.0' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + use-sync-external-store: + optional: true + +snapshots: + + '@adraffy/ens-normalize@1.11.0': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + + '@ark-ui/react@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@internationalized/date': 3.7.0 + '@zag-js/accordion': 1.7.0 + '@zag-js/anatomy': 1.7.0 + '@zag-js/auto-resize': 1.7.0 + '@zag-js/avatar': 1.7.0 + '@zag-js/carousel': 1.7.0 + '@zag-js/checkbox': 1.7.0 + '@zag-js/clipboard': 1.7.0 + '@zag-js/collapsible': 1.7.0 + '@zag-js/collection': 1.7.0 + '@zag-js/color-picker': 1.7.0 + '@zag-js/color-utils': 1.7.0 + '@zag-js/combobox': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/date-picker': 1.7.0(@internationalized/date@3.7.0) + '@zag-js/date-utils': 1.7.0(@internationalized/date@3.7.0) + '@zag-js/dialog': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/editable': 1.7.0 + '@zag-js/file-upload': 1.7.0 + '@zag-js/file-utils': 1.7.0 + '@zag-js/focus-trap': 1.7.0 + '@zag-js/highlight-word': 1.7.0 + '@zag-js/hover-card': 1.7.0 + '@zag-js/i18n-utils': 1.7.0 + '@zag-js/menu': 1.7.0 + '@zag-js/number-input': 1.7.0 + '@zag-js/pagination': 1.7.0 + '@zag-js/pin-input': 1.7.0 + '@zag-js/popover': 1.7.0 + '@zag-js/presence': 1.7.0 + '@zag-js/progress': 1.7.0 + '@zag-js/qr-code': 1.7.0 + '@zag-js/radio-group': 1.7.0 + '@zag-js/rating-group': 1.7.0 + '@zag-js/react': 1.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@zag-js/select': 1.7.0 + '@zag-js/signature-pad': 1.7.0 + '@zag-js/slider': 1.7.0 + '@zag-js/splitter': 1.7.0 + '@zag-js/steps': 1.7.0 + '@zag-js/switch': 1.7.0 + '@zag-js/tabs': 1.7.0 + '@zag-js/tags-input': 1.7.0 + '@zag-js/time-picker': 1.7.0(@internationalized/date@3.7.0) + '@zag-js/timer': 1.7.0 + '@zag-js/toast': 1.7.0 + '@zag-js/toggle': 1.7.0 + '@zag-js/toggle-group': 1.7.0 + '@zag-js/tooltip': 1.7.0 + '@zag-js/tour': 1.7.0 + '@zag-js/tree-view': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@assemblyscript/loader@0.9.4': {} + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.27.5': {} + + '@babel/core@7.27.4': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.5 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) + '@babel/helpers': 7.27.6 + '@babel/parser': 7.27.5 + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.4 + '@babel/types': 7.27.6 + convert-source-map: 2.0.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.27.5': + dependencies: + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + + '@babel/helper-annotate-as-pure@7.27.3': + dependencies: + '@babel/types': 7.27.6 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.27.5 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.25.0 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4) + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/traverse': 7.27.4 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + regexpu-core: 6.2.0 + semver: 6.3.1 + + '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + debug: 4.4.1 + lodash.debounce: 4.0.8 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + '@babel/helper-member-expression-to-functions@7.27.1': + dependencies: + '@babel/traverse': 7.27.4 + '@babel/types': 7.27.6 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.27.4 + '@babel/types': 7.27.6 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/helper-optimise-call-expression@7.27.1': + dependencies: + '@babel/types': 7.27.6 + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-wrap-function': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-member-expression-to-functions': 7.27.1 + '@babel/helper-optimise-call-expression': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/helper-skip-transparent-expression-wrappers@7.27.1': + dependencies: + '@babel/traverse': 7.27.4 + '@babel/types': 7.27.6 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helper-wrap-function@7.27.1': + dependencies: + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.4 + '@babel/types': 7.27.6 + transitivePeerDependencies: + - supports-color + + '@babel/helpers@7.27.6': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.27.6 + + '@babel/parser@7.27.5': + dependencies: + '@babel/types': 7.27.6 + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.4) + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-block-scoping@7.27.5(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4) + '@babel/traverse': 7.27.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/template': 7.27.2 + + '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-object-rest-spread@7.27.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4) + + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) + '@babel/types': 7.27.6 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-regenerator@7.27.5(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-typescript@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-annotate-as-pure': 7.27.3 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.4) + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/preset-env@7.27.2(@babel/core@7.27.4)': + dependencies: + '@babel/compat-data': 7.27.5 + '@babel/core': 7.27.4 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.4) + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.27.4) + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.27.4) + '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4) + '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-object-rest-spread': 7.27.3(@babel/core@7.27.4) + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-regenerator': 7.27.5(@babel/core@7.27.4) + '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.27.4) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.27.4) + babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.4) + babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.4) + babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.4) + core-js-compat: 3.42.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/types': 7.27.6 + esutils: 2.0.3 + + '@babel/preset-react@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + '@babel/preset-typescript@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/helper-validator-option': 7.27.1 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-typescript': 7.27.1(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + '@babel/runtime-corejs3@7.27.6': + dependencies: + core-js-pure: 3.42.0 + + '@babel/runtime@7.27.6': {} + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + + '@babel/traverse@7.27.4': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.5 + '@babel/parser': 7.27.5 + '@babel/template': 7.27.2 + '@babel/types': 7.27.6 + debug: 4.4.1 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.27.6': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@bcoe/v8-coverage@0.2.3': {} + + '@blockscout/bens-types@1.4.1': {} + + '@blockscout/points-types@1.3.0-alpha.2': {} + + '@blockscout/stats-types@2.5.0-alpha': {} + + '@blockscout/visualizer-types@0.2.0': {} + + '@bundled-es-modules/deepmerge@4.3.1': + dependencies: + deepmerge: 4.3.1 + + '@bundled-es-modules/glob@10.4.2': + dependencies: + buffer: 6.0.3 + events: 3.3.0 + glob: 10.4.5 + patch-package: 8.0.0 + path: 0.12.7 + stream: 0.0.3 + string_decoder: 1.3.0 + url: 0.11.4 + + '@bundled-es-modules/memfs@4.17.0': + dependencies: + assert: 2.1.0 + buffer: 6.0.3 + events: 3.3.0 + memfs: 4.17.2 + path: 0.12.7 + stream: 0.0.3 + util: 0.12.5 + + '@chainsafe/is-ip@2.1.0': {} + + '@chainsafe/netmask@2.0.0': + dependencies: + '@chainsafe/is-ip': 2.1.0 + + '@chakra-ui/cli@3.15.0(@chakra-ui/react@3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))': + dependencies: + '@chakra-ui/react': 3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@clack/prompts': 0.10.0 + '@pandacss/is-valid-prop': 0.41.0 + '@types/cli-table': 0.3.4 + '@types/debug': 4.1.12 + '@visulima/boxen': 1.0.31 + bundle-n-require: 1.1.2 + chokidar: 3.6.0 + cli-table: 0.3.11 + commander: 12.1.0 + debug: 4.4.1 + globby: 14.0.2 + https-proxy-agent: 7.0.6 + look-it-up: 2.1.0 + node-fetch: 3.3.2 + package-manager-detector: 0.1.2 + prettier: 3.3.3 + scule: 1.3.0 + sucrase: 3.35.0 + zod: 3.25.53 + transitivePeerDependencies: + - supports-color + + '@chakra-ui/react@3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@ark-ui/react': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@emotion/is-prop-valid': 1.3.1 + '@emotion/react': 11.14.0(@types/react@18.3.12)(react@18.3.1) + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1) + '@emotion/utils': 1.4.2 + '@pandacss/is-valid-prop': 0.41.0 + csstype: 3.1.3 + fast-safe-stringify: 2.1.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@clack/core@0.3.5': + dependencies: + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@clack/core@0.4.1': + dependencies: + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@clack/prompts@0.10.0': + dependencies: + '@clack/core': 0.4.1 + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@clack/prompts@0.7.0': + dependencies: + '@clack/core': 0.3.5 + picocolors: 1.1.1 + sisteransi: 1.0.5 + + '@cloudnouns/kit@1.1.6': + dependencies: + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/solidity': 5.8.0 + jshashes: 1.0.8 + + '@codemirror/language@6.0.0': + dependencies: + '@codemirror/state': 6.5.2 + '@codemirror/view': 6.37.1 + '@lezer/common': 1.2.3 + '@lezer/highlight': 1.2.1 + '@lezer/lr': 1.4.2 + style-mod: 4.1.2 + + '@codemirror/state@6.5.2': + dependencies: + '@marijn/find-cluster-break': 1.0.2 + + '@codemirror/view@6.37.1': + dependencies: + '@codemirror/state': 6.5.2 + crelt: 1.0.6 + style-mod: 4.1.2 + w3c-keyname: 2.2.8 + + '@coinbase/wallet-sdk@3.9.3': + dependencies: + bn.js: 5.2.2 + buffer: 6.0.3 + clsx: 1.2.1 + eth-block-tracker: 7.1.0 + eth-json-rpc-filters: 6.0.1 + eventemitter3: 5.0.1 + keccak: 3.0.4 + preact: 10.26.8 + sha.js: 2.4.11 + transitivePeerDependencies: + - supports-color + + '@coinbase/wallet-sdk@4.3.0': + dependencies: + '@noble/hashes': 1.8.0 + clsx: 1.2.1 + eventemitter3: 5.0.1 + preact: 10.26.8 + + '@cspotcode/source-map-support@0.8.1': + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + + '@designid/tokens@0.4.6': + dependencies: + chokidar: 3.6.0 + colorjs.io: 0.5.2 + globals: 16.2.0 + style-dictionary: 4.4.0 + + '@discoveryjs/json-ext@0.5.7': {} + + '@ecies/ciphers@0.2.3(@noble/ciphers@1.3.0)': + dependencies: + '@noble/ciphers': 1.3.0 + + '@emnapi/core@1.4.3': + dependencies: + '@emnapi/wasi-threads': 1.0.2 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.4.3': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.0.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@emotion/babel-plugin@11.13.5': + dependencies: + '@babel/helper-module-imports': 7.27.1 + '@babel/runtime': 7.27.6 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/serialize': 1.3.3 + babel-plugin-macros: 3.1.0 + convert-source-map: 1.9.0 + escape-string-regexp: 4.0.0 + find-root: 1.1.0 + source-map: 0.5.7 + stylis: 4.2.0 + transitivePeerDependencies: + - supports-color + + '@emotion/cache@11.14.0': + dependencies: + '@emotion/memoize': 0.9.0 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 + stylis: 4.2.0 + + '@emotion/hash@0.9.2': {} + + '@emotion/is-prop-valid@1.3.1': + dependencies: + '@emotion/memoize': 0.9.0 + + '@emotion/memoize@0.9.0': {} + + '@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.27.6 + '@emotion/babel-plugin': 11.13.5 + '@emotion/cache': 11.14.0 + '@emotion/serialize': 1.3.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@18.3.1) + '@emotion/utils': 1.4.2 + '@emotion/weak-memoize': 0.4.0 + hoist-non-react-statics: 3.3.2 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.12 + transitivePeerDependencies: + - supports-color + + '@emotion/serialize@1.3.3': + dependencies: + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/unitless': 0.10.0 + '@emotion/utils': 1.4.2 + csstype: 3.1.3 + + '@emotion/sheet@1.4.0': {} + + '@emotion/unitless@0.10.0': {} + + '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@emotion/utils@1.4.2': {} + + '@emotion/weak-memoize@0.4.0': {} + + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/aix-ppc64@0.25.5': + optional: true + + '@esbuild/android-arm64@0.21.5': + optional: true + + '@esbuild/android-arm64@0.25.5': + optional: true + + '@esbuild/android-arm@0.21.5': + optional: true + + '@esbuild/android-arm@0.25.5': + optional: true + + '@esbuild/android-x64@0.21.5': + optional: true + + '@esbuild/android-x64@0.25.5': + optional: true + + '@esbuild/darwin-arm64@0.21.5': + optional: true + + '@esbuild/darwin-arm64@0.25.5': + optional: true + + '@esbuild/darwin-x64@0.21.5': + optional: true + + '@esbuild/darwin-x64@0.25.5': + optional: true + + '@esbuild/freebsd-arm64@0.21.5': + optional: true + + '@esbuild/freebsd-arm64@0.25.5': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.25.5': + optional: true + + '@esbuild/linux-arm64@0.21.5': + optional: true + + '@esbuild/linux-arm64@0.25.5': + optional: true + + '@esbuild/linux-arm@0.21.5': + optional: true + + '@esbuild/linux-arm@0.25.5': + optional: true + + '@esbuild/linux-ia32@0.21.5': + optional: true + + '@esbuild/linux-ia32@0.25.5': + optional: true + + '@esbuild/linux-loong64@0.21.5': + optional: true + + '@esbuild/linux-loong64@0.25.5': + optional: true + + '@esbuild/linux-mips64el@0.21.5': + optional: true + + '@esbuild/linux-mips64el@0.25.5': + optional: true + + '@esbuild/linux-ppc64@0.21.5': + optional: true + + '@esbuild/linux-ppc64@0.25.5': + optional: true + + '@esbuild/linux-riscv64@0.21.5': + optional: true + + '@esbuild/linux-riscv64@0.25.5': + optional: true + + '@esbuild/linux-s390x@0.21.5': + optional: true + + '@esbuild/linux-s390x@0.25.5': + optional: true + + '@esbuild/linux-x64@0.21.5': + optional: true + + '@esbuild/linux-x64@0.25.5': + optional: true + + '@esbuild/netbsd-arm64@0.25.5': + optional: true + + '@esbuild/netbsd-x64@0.21.5': + optional: true + + '@esbuild/netbsd-x64@0.25.5': + optional: true + + '@esbuild/openbsd-arm64@0.25.5': + optional: true + + '@esbuild/openbsd-x64@0.21.5': + optional: true + + '@esbuild/openbsd-x64@0.25.5': + optional: true + + '@esbuild/sunos-x64@0.21.5': + optional: true + + '@esbuild/sunos-x64@0.25.5': + optional: true + + '@esbuild/win32-arm64@0.21.5': + optional: true + + '@esbuild/win32-arm64@0.25.5': + optional: true + + '@esbuild/win32-ia32@0.21.5': + optional: true + + '@esbuild/win32-ia32@0.25.5': + optional: true + + '@esbuild/win32-x64@0.21.5': + optional: true + + '@esbuild/win32-x64@0.25.5': + optional: true + + '@eslint-community/eslint-utils@4.7.0(eslint@9.14.0)': + dependencies: + eslint: 9.14.0 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/compat@1.2.2(eslint@9.14.0)': + optionalDependencies: + eslint: 9.14.0 + + '@eslint/config-array@0.18.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/core@0.13.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/core@0.7.0': {} + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.14.0': {} + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.2.8': + dependencies: + '@eslint/core': 0.13.0 + levn: 0.4.1 + + '@ethereumjs/common@3.2.0': + dependencies: + '@ethereumjs/util': 8.1.0 + crc-32: 1.2.2 + + '@ethereumjs/rlp@4.0.1': {} + + '@ethereumjs/tx@4.2.0': + dependencies: + '@ethereumjs/common': 3.2.0 + '@ethereumjs/rlp': 4.0.1 + '@ethereumjs/util': 8.1.0 + ethereum-cryptography: 2.2.1 + + '@ethereumjs/util@8.1.0': + dependencies: + '@ethereumjs/rlp': 4.0.1 + ethereum-cryptography: 2.2.1 + micro-ftch: 0.3.1 + + '@ethersproject/bignumber@5.8.0': + dependencies: + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + bn.js: 5.2.2 + + '@ethersproject/bytes@5.8.0': + dependencies: + '@ethersproject/logger': 5.8.0 + + '@ethersproject/constants@5.8.0': + dependencies: + '@ethersproject/bignumber': 5.8.0 + + '@ethersproject/keccak256@5.8.0': + dependencies: + '@ethersproject/bytes': 5.8.0 + js-sha3: 0.8.0 + + '@ethersproject/logger@5.8.0': {} + + '@ethersproject/sha2@5.8.0': + dependencies: + '@ethersproject/bytes': 5.8.0 + '@ethersproject/logger': 5.8.0 + hash.js: 1.1.7 + + '@ethersproject/solidity@5.8.0': + dependencies: + '@ethersproject/bignumber': 5.8.0 + '@ethersproject/bytes': 5.8.0 + '@ethersproject/keccak256': 5.8.0 + '@ethersproject/logger': 5.8.0 + '@ethersproject/sha2': 5.8.0 + '@ethersproject/strings': 5.8.0 + + '@ethersproject/strings@5.8.0': + dependencies: + '@ethersproject/bytes': 5.8.0 + '@ethersproject/constants': 5.8.0 + '@ethersproject/logger': 5.8.0 + + '@floating-ui/core@1.7.1': + dependencies: + '@floating-ui/utils': 0.2.9 + + '@floating-ui/dom@1.6.13': + dependencies: + '@floating-ui/core': 1.7.1 + '@floating-ui/utils': 0.2.9 + + '@floating-ui/dom@1.7.1': + dependencies: + '@floating-ui/core': 1.7.1 + '@floating-ui/utils': 0.2.9 + + '@floating-ui/utils@0.2.9': {} + + '@graphiql/react@0.17.6(@codemirror/language@6.0.0)(@types/node@20.16.7)(@types/react@18.3.12)(graphql-ws@5.16.2(graphql@16.11.0))(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)': + dependencies: + '@graphiql/toolkit': 0.8.4(@types/node@20.16.7)(graphql-ws@5.16.2(graphql@16.11.0))(graphql@16.11.0) + '@reach/combobox': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/dialog': 0.17.0(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/listbox': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/menu-button': 0.17.0(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1) + '@reach/tooltip': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/visually-hidden': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + clsx: 1.2.1 + codemirror: 5.65.19 + codemirror-graphql: 2.2.2(@codemirror/language@6.0.0)(codemirror@5.65.19)(graphql@16.11.0) + copy-to-clipboard: 3.3.3 + graphql: 16.11.0 + graphql-language-service: 5.4.0(graphql@16.11.0) + markdown-it: 12.3.2 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + set-value: 4.1.0 + transitivePeerDependencies: + - '@codemirror/language' + - '@types/node' + - '@types/react' + - graphql-ws + - react-is + + '@graphiql/toolkit@0.8.4(@types/node@20.16.7)(graphql-ws@5.16.2(graphql@16.11.0))(graphql@16.11.0)': + dependencies: + '@n1ru4l/push-pull-async-iterable-iterator': 3.2.0 + graphql: 16.11.0 + meros: 1.3.0(@types/node@20.16.7) + optionalDependencies: + graphql-ws: 5.16.2(graphql@16.11.0) + transitivePeerDependencies: + - '@types/node' + + '@growthbook/growthbook-react@0.21.0(react@18.3.1)': + dependencies: + '@growthbook/growthbook': 0.31.0 + react: 18.3.1 + + '@growthbook/growthbook@0.31.0': + dependencies: + dom-mutator: 0.6.0 + + '@grpc/grpc-js@1.13.4': + dependencies: + '@grpc/proto-loader': 0.7.15 + '@js-sdsl/ordered-map': 4.4.2 + + '@grpc/proto-loader@0.7.15': + dependencies: + lodash.camelcase: 4.3.0 + long: 5.3.2 + protobufjs: 7.5.3 + yargs: 17.7.2 + + '@hapi/b64@5.0.0': + dependencies: + '@hapi/hoek': 9.3.0 + + '@hapi/boom@9.1.4': + dependencies: + '@hapi/hoek': 9.3.0 + + '@hapi/bourne@2.1.0': {} + + '@hapi/cryptiles@5.1.0': + dependencies: + '@hapi/boom': 9.1.4 + + '@hapi/hoek@11.0.7': {} + + '@hapi/hoek@9.3.0': {} + + '@hapi/iron@6.0.0': + dependencies: + '@hapi/b64': 5.0.0 + '@hapi/boom': 9.1.4 + '@hapi/bourne': 2.1.0 + '@hapi/cryptiles': 5.1.0 + '@hapi/hoek': 9.3.0 + + '@hapi/podium@4.1.3': + dependencies: + '@hapi/hoek': 9.3.0 + '@hapi/teamwork': 5.1.1 + '@hapi/validate': 1.1.3 + + '@hapi/shot@6.0.1': + dependencies: + '@hapi/hoek': 11.0.7 + '@hapi/validate': 2.0.1 + + '@hapi/teamwork@5.1.1': {} + + '@hapi/topo@5.1.0': + dependencies: + '@hapi/hoek': 9.3.0 + + '@hapi/topo@6.0.2': + dependencies: + '@hapi/hoek': 11.0.7 + + '@hapi/validate@1.1.3': + dependencies: + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + + '@hapi/validate@2.0.1': + dependencies: + '@hapi/hoek': 11.0.7 + '@hapi/topo': 6.0.2 + + '@helia/bitswap@2.1.2': + dependencies: + '@helia/interface': 5.3.2 + '@helia/utils': 1.3.2 + '@libp2p/interface': 2.10.3 + '@libp2p/logger': 5.1.19 + '@libp2p/peer-collections': 6.0.31 + '@libp2p/utils': 6.6.6 + '@multiformats/multiaddr': 12.4.1 + any-signal: 4.1.1 + interface-blockstore: 5.3.2 + interface-store: 6.0.3 + it-drain: 3.0.10 + it-length-prefixed: 10.0.1 + it-map: 3.1.4 + it-pipe: 3.0.1 + it-take: 3.0.9 + multiformats: 13.3.6 + p-defer: 4.0.1 + progress-events: 1.0.1 + protons-runtime: 5.5.0 + race-event: 1.3.0 + uint8-varint: 2.0.4 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + '@helia/block-brokers@4.2.2': + dependencies: + '@helia/bitswap': 2.1.2 + '@helia/interface': 5.3.2 + '@helia/utils': 1.3.2 + '@libp2p/interface': 2.10.3 + '@libp2p/utils': 6.6.6 + '@multiformats/multiaddr': 12.4.1 + '@multiformats/multiaddr-matcher': 1.7.2 + '@multiformats/multiaddr-to-uri': 11.0.0 + interface-blockstore: 5.3.2 + interface-store: 6.0.3 + multiformats: 13.3.6 + progress-events: 1.0.1 + + '@helia/car@4.1.2': + dependencies: + '@helia/interface': 5.3.2 + '@ipld/car': 5.4.2 + '@ipld/dag-pb': 4.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/utils': 6.6.6 + interface-blockstore: 5.3.2 + ipfs-unixfs: 11.2.1 + it-drain: 3.0.10 + it-map: 3.1.4 + multiformats: 13.3.6 + p-defer: 4.0.1 + p-queue: 8.1.0 + progress-events: 1.0.1 + + '@helia/delegated-routing-v1-http-api-client@4.2.5': + dependencies: + '@libp2p/interface': 2.10.3 + '@libp2p/logger': 5.1.19 + '@libp2p/peer-id': 5.1.6 + '@multiformats/multiaddr': 12.4.1 + any-signal: 4.1.1 + browser-readablestream-to-it: 2.0.10 + ipns: 10.0.2 + it-first: 3.0.9 + it-map: 3.1.4 + it-ndjson: 1.1.4 + multiformats: 13.3.6 + p-defer: 4.0.1 + p-queue: 8.1.0 + uint8arrays: 5.1.0 + + '@helia/http@2.1.2': + dependencies: + '@helia/block-brokers': 4.2.2 + '@helia/interface': 5.3.2 + '@helia/routers': 3.1.2 + '@helia/utils': 1.3.2 + blockstore-core: 5.0.4 + datastore-core: 10.0.4 + + '@helia/interface@5.3.2': + dependencies: + '@libp2p/interface': 2.10.3 + '@multiformats/dns': 1.0.6 + '@multiformats/multiaddr': 12.4.1 + interface-blockstore: 5.3.2 + interface-datastore: 8.3.2 + interface-store: 6.0.3 + multiformats: 13.3.6 + progress-events: 1.0.1 + + '@helia/ipns@8.2.3': + dependencies: + '@helia/interface': 5.3.2 + '@libp2p/interface': 2.10.3 + '@libp2p/kad-dht': 15.1.3 + '@libp2p/logger': 5.1.19 + '@libp2p/peer-id': 5.1.6 + '@multiformats/dns': 1.0.6 + interface-datastore: 8.3.2 + ipns: 10.0.2 + multiformats: 13.3.6 + progress-events: 1.0.1 + uint8arrays: 5.1.0 + + '@helia/routers@2.2.0': + dependencies: + '@helia/delegated-routing-v1-http-api-client': 4.2.5 + '@helia/interface': 5.3.2 + '@libp2p/interface': 2.10.3 + '@libp2p/peer-id': 5.1.6 + '@multiformats/uri-to-multiaddr': 8.1.0 + ipns: 10.0.2 + it-first: 3.0.9 + it-map: 3.1.4 + multiformats: 13.3.6 + uint8arrays: 5.1.0 + + '@helia/routers@3.1.2': + dependencies: + '@helia/delegated-routing-v1-http-api-client': 4.2.5 + '@helia/interface': 5.3.2 + '@libp2p/interface': 2.10.3 + '@libp2p/peer-id': 5.1.6 + '@multiformats/uri-to-multiaddr': 9.0.1 + ipns: 10.0.2 + it-first: 3.0.9 + it-map: 3.1.4 + multiformats: 13.3.6 + uint8arrays: 5.1.0 + + '@helia/unixfs@4.0.3': + dependencies: + '@helia/interface': 5.3.2 + '@ipld/dag-pb': 4.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/logger': 5.1.19 + '@multiformats/murmur3': 2.1.8 + hamt-sharding: 3.0.6 + interface-blockstore: 5.3.2 + ipfs-unixfs: 11.2.1 + ipfs-unixfs-exporter: 13.6.2 + ipfs-unixfs-importer: 15.3.2 + it-all: 3.0.9 + it-glob: 3.0.4 + it-last: 3.0.9 + it-pipe: 3.0.1 + merge-options: 3.0.4 + multiformats: 13.3.6 + progress-events: 1.0.1 + sparse-array: 1.3.2 + uint8arrays: 5.1.0 + transitivePeerDependencies: + - encoding + - supports-color + + '@helia/utils@1.3.2': + dependencies: + '@helia/interface': 5.3.2 + '@ipld/dag-cbor': 9.2.4 + '@ipld/dag-json': 10.2.5 + '@ipld/dag-pb': 4.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/logger': 5.1.19 + '@libp2p/utils': 6.6.6 + '@multiformats/dns': 1.0.6 + '@multiformats/multiaddr': 12.4.1 + any-signal: 4.1.1 + blockstore-core: 5.0.4 + cborg: 4.2.11 + interface-blockstore: 5.3.2 + interface-datastore: 8.3.2 + interface-store: 6.0.3 + it-drain: 3.0.10 + it-filter: 3.1.4 + it-foreach: 2.1.4 + it-merge: 3.0.12 + mortice: 3.3.1 + multiformats: 13.3.6 + p-defer: 4.0.1 + progress-events: 1.0.1 + uint8arrays: 5.1.0 + + '@helia/verified-fetch@2.0.1': + dependencies: + '@helia/block-brokers': 4.2.2 + '@helia/car': 4.1.2 + '@helia/http': 2.1.2 + '@helia/interface': 5.3.2 + '@helia/ipns': 8.2.3 + '@helia/routers': 2.2.0 + '@helia/unixfs': 4.0.3 + '@ipld/dag-cbor': 9.2.4 + '@ipld/dag-json': 10.2.5 + '@ipld/dag-pb': 4.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/kad-dht': 14.2.15 + '@libp2p/peer-id': 5.1.6 + '@multiformats/dns': 1.0.6 + cborg: 4.2.11 + hashlru: 2.3.0 + interface-blockstore: 5.3.2 + interface-datastore: 8.3.2 + ipfs-unixfs-exporter: 13.6.2 + it-map: 3.1.4 + it-pipe: 3.0.1 + it-tar: 6.0.5 + it-to-browser-readablestream: 2.0.12 + lru-cache: 10.4.3 + multiformats: 13.3.6 + progress-events: 1.0.1 + uint8arrays: 5.1.0 + transitivePeerDependencies: + - encoding + - supports-color + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@hypelab/sdk-react@1.0.4(react@18.3.1)': + dependencies: + react: 18.3.1 + + '@img/sharp-darwin-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.0.4 + optional: true + + '@img/sharp-darwin-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.0.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.0.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-linux-arm@1.0.5': + optional: true + + '@img/sharp-libvips-linux-s390x@1.0.4': + optional: true + + '@img/sharp-libvips-linux-x64@1.0.4': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.0.4': + optional: true + + '@img/sharp-linux-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.0.4 + optional: true + + '@img/sharp-linux-arm@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.0.5 + optional: true + + '@img/sharp-linux-s390x@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.0.4 + optional: true + + '@img/sharp-linux-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.0.4 + optional: true + + '@img/sharp-linuxmusl-arm64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + optional: true + + '@img/sharp-linuxmusl-x64@0.33.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + optional: true + + '@img/sharp-wasm32@0.33.5': + dependencies: + '@emnapi/runtime': 1.4.3 + optional: true + + '@img/sharp-win32-ia32@0.33.5': + optional: true + + '@img/sharp-win32-x64@0.33.5': + optional: true + + '@internationalized/date@3.7.0': + dependencies: + '@swc/helpers': 0.5.17 + + '@internationalized/number@3.6.0': + dependencies: + '@swc/helpers': 0.5.17 + + '@ipld/car@5.4.2': + dependencies: + '@ipld/dag-cbor': 9.2.4 + cborg: 4.2.11 + multiformats: 13.3.6 + varint: 6.0.0 + + '@ipld/dag-cbor@9.2.4': + dependencies: + cborg: 4.2.11 + multiformats: 13.3.6 + + '@ipld/dag-json@10.2.5': + dependencies: + cborg: 4.2.11 + multiformats: 13.3.6 + + '@ipld/dag-pb@4.1.5': + dependencies: + multiformats: 13.3.6 + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@istanbuljs/load-nyc-config@1.1.0': + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jest/console@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/environment@29.7.0': + dependencies: + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + jest-mock: 29.7.0 + + '@jest/expect-utils@29.7.0': + dependencies: + jest-get-type: 29.6.3 + + '@jest/expect@29.7.0': + dependencies: + expect: 29.7.0 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/fake-timers@29.7.0': + dependencies: + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.16.7 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + '@jest/globals@29.7.0': + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color + + '@jest/reporters@29.7.0': + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + '@types/node': 20.16.7 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.3 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.7 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.3.0 + transitivePeerDependencies: + - supports-color + + '@jest/schemas@29.6.3': + dependencies: + '@sinclair/typebox': 0.27.8 + + '@jest/source-map@29.6.3': + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + callsites: 3.1.0 + graceful-fs: 4.2.11 + + '@jest/test-result@29.7.0': + dependencies: + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + collect-v8-coverage: 1.0.2 + + '@jest/test-sequencer@29.7.0': + dependencies: + '@jest/test-result': 29.7.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + + '@jest/transform@29.7.0': + dependencies: + '@babel/core': 7.27.4 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 2.0.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + micromatch: 4.0.8 + pirates: 4.0.7 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + + '@jest/types@29.6.3': + dependencies: + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.16.7 + '@types/yargs': 17.0.33 + chalk: 4.1.2 + + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@js-sdsl/ordered-map@4.4.2': {} + + '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 + + '@jsonjoy.com/json-pack@1.2.0(tslib@2.8.1)': + dependencies: + '@jsonjoy.com/base64': 1.1.2(tslib@2.8.1) + '@jsonjoy.com/util': 1.6.0(tslib@2.8.1) + hyperdyperid: 1.2.0 + thingies: 1.21.0(tslib@2.8.1) + tslib: 2.8.1 + + '@jsonjoy.com/util@1.6.0(tslib@2.8.1)': + dependencies: + tslib: 2.8.1 + + '@leichtgewicht/ip-codec@2.0.5': {} + + '@lezer/common@1.2.3': {} + + '@lezer/highlight@1.2.1': + dependencies: + '@lezer/common': 1.2.3 + + '@lezer/lr@1.4.2': + dependencies: + '@lezer/common': 1.2.3 + + '@libp2p/crypto@5.1.5': + dependencies: + '@libp2p/interface': 2.10.3 + '@noble/curves': 1.9.2 + '@noble/hashes': 1.8.0 + multiformats: 13.3.6 + protons-runtime: 5.5.0 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + '@libp2p/interface-internal@2.3.15': + dependencies: + '@libp2p/interface': 2.10.3 + '@libp2p/peer-collections': 6.0.31 + '@multiformats/multiaddr': 12.4.1 + progress-events: 1.0.1 + + '@libp2p/interface@2.10.3': + dependencies: + '@multiformats/multiaddr': 12.4.1 + it-pushable: 3.2.3 + it-stream-types: 2.0.2 + main-event: 1.0.1 + multiformats: 13.3.6 + progress-events: 1.0.1 + uint8arraylist: 2.4.8 + + '@libp2p/kad-dht@14.2.15': + dependencies: + '@libp2p/crypto': 5.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/interface-internal': 2.3.15 + '@libp2p/peer-collections': 6.0.31 + '@libp2p/peer-id': 5.1.6 + '@libp2p/record': 4.0.7 + '@libp2p/utils': 6.6.6 + '@multiformats/multiaddr': 12.4.1 + any-signal: 4.1.1 + interface-datastore: 8.3.2 + it-all: 3.0.9 + it-drain: 3.0.10 + it-length: 3.0.9 + it-length-prefixed: 10.0.1 + it-map: 3.1.4 + it-merge: 3.0.12 + it-parallel: 3.0.13 + it-pipe: 3.0.1 + it-protobuf-stream: 1.1.6 + it-take: 3.0.9 + mortice: 3.3.1 + multiformats: 13.3.6 + p-defer: 4.0.1 + p-event: 6.0.1 + progress-events: 1.0.1 + protons-runtime: 5.5.0 + race-signal: 1.1.3 + uint8-varint: 2.0.4 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + '@libp2p/kad-dht@15.1.3': + dependencies: + '@libp2p/crypto': 5.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/interface-internal': 2.3.15 + '@libp2p/peer-collections': 6.0.31 + '@libp2p/peer-id': 5.1.6 + '@libp2p/ping': 2.0.33 + '@libp2p/record': 4.0.7 + '@libp2p/utils': 6.6.6 + '@multiformats/multiaddr': 12.4.1 + any-signal: 4.1.1 + interface-datastore: 8.3.2 + it-all: 3.0.9 + it-drain: 3.0.10 + it-length: 3.0.9 + it-map: 3.1.4 + it-merge: 3.0.12 + it-parallel: 3.0.13 + it-pipe: 3.0.1 + it-protobuf-stream: 2.0.3 + it-pushable: 3.2.3 + it-take: 3.0.9 + main-event: 1.0.1 + multiformats: 13.3.6 + p-defer: 4.0.1 + p-event: 6.0.1 + progress-events: 1.0.1 + protons-runtime: 5.5.0 + race-signal: 1.1.3 + uint8-varint: 2.0.4 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + '@libp2p/logger@5.1.19': + dependencies: + '@libp2p/interface': 2.10.3 + '@multiformats/multiaddr': 12.4.1 + interface-datastore: 8.3.2 + multiformats: 13.3.6 + weald: 1.0.4 + + '@libp2p/peer-collections@6.0.31': + dependencies: + '@libp2p/interface': 2.10.3 + '@libp2p/peer-id': 5.1.6 + '@libp2p/utils': 6.6.6 + multiformats: 13.3.6 + + '@libp2p/peer-id@5.1.6': + dependencies: + '@libp2p/crypto': 5.1.5 + '@libp2p/interface': 2.10.3 + multiformats: 13.3.6 + uint8arrays: 5.1.0 + + '@libp2p/ping@2.0.33': + dependencies: + '@libp2p/crypto': 5.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/interface-internal': 2.3.15 + '@multiformats/multiaddr': 12.4.1 + it-byte-stream: 2.0.3 + main-event: 1.0.1 + uint8arrays: 5.1.0 + + '@libp2p/record@4.0.7': + dependencies: + protons-runtime: 5.5.0 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + '@libp2p/utils@6.6.6': + dependencies: + '@chainsafe/is-ip': 2.1.0 + '@chainsafe/netmask': 2.0.0 + '@libp2p/crypto': 5.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/logger': 5.1.19 + '@multiformats/multiaddr': 12.4.1 + '@sindresorhus/fnv1a': 3.1.0 + any-signal: 4.1.1 + delay: 6.0.0 + get-iterator: 2.0.1 + is-loopback-addr: 2.0.2 + is-plain-obj: 4.1.0 + it-foreach: 2.1.4 + it-pipe: 3.0.1 + it-pushable: 3.2.3 + it-stream-types: 2.0.2 + main-event: 1.0.1 + netmask: 2.0.2 + p-defer: 4.0.1 + race-event: 1.3.0 + race-signal: 1.1.3 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + '@lit-labs/ssr-dom-shim@1.3.0': {} + + '@lit/reactive-element@1.6.3': + dependencies: + '@lit-labs/ssr-dom-shim': 1.3.0 + + '@lit/reactive-element@2.1.0': + dependencies: + '@lit-labs/ssr-dom-shim': 1.3.0 + + '@marijn/find-cluster-break@1.0.2': {} + + '@metamask/eth-json-rpc-provider@1.0.1': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 5.0.2 + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-engine@7.3.3': + dependencies: + '@metamask/rpc-errors': 6.4.0 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-engine@8.0.2': + dependencies: + '@metamask/rpc-errors': 6.4.0 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 + transitivePeerDependencies: + - supports-color + + '@metamask/json-rpc-middleware-stream@7.0.2': + dependencies: + '@metamask/json-rpc-engine': 8.0.2 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color + + '@metamask/object-multiplex@1.3.0': + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + readable-stream: 2.3.8 + + '@metamask/object-multiplex@2.1.0': + dependencies: + once: 1.4.0 + readable-stream: 3.6.2 + + '@metamask/onboarding@1.0.1': + dependencies: + bowser: 2.11.0 + + '@metamask/post-message-stream@7.0.0': + dependencies: + '@metamask/utils': 5.0.2 + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color + + '@metamask/providers@10.2.1': + dependencies: + '@metamask/object-multiplex': 1.3.0 + '@metamask/safe-event-emitter': 2.0.0 + '@types/chrome': 0.0.136 + detect-browser: 5.3.0 + eth-rpc-errors: 4.0.3 + extension-port-stream: 2.1.1 + fast-deep-equal: 2.0.1 + is-stream: 2.0.1 + json-rpc-engine: 6.1.0 + json-rpc-middleware-stream: 4.2.3 + pump: 3.0.2 + webextension-polyfill-ts: 0.25.0 + + '@metamask/providers@16.1.0': + dependencies: + '@metamask/json-rpc-engine': 8.0.2 + '@metamask/json-rpc-middleware-stream': 7.0.2 + '@metamask/object-multiplex': 2.1.0 + '@metamask/rpc-errors': 6.4.0 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 8.5.0 + detect-browser: 5.3.0 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 + is-stream: 2.0.1 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color + + '@metamask/rpc-errors@6.4.0': + dependencies: + '@metamask/utils': 9.3.0 + fast-safe-stringify: 2.1.1 + transitivePeerDependencies: + - supports-color + + '@metamask/safe-event-emitter@2.0.0': {} + + '@metamask/safe-event-emitter@3.1.2': {} + + '@metamask/sdk-communication-layer@0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.15)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))': + dependencies: + bufferutil: 4.0.9 + cross-fetch: 4.1.0 + date-fns: 2.30.0 + debug: 4.4.1 + eciesjs: 0.4.15 + eventemitter2: 6.4.9 + readable-stream: 3.6.2 + socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + utf-8-validate: 5.0.10 + uuid: 8.3.2 + transitivePeerDependencies: + - supports-color + + '@metamask/sdk-install-modal-web@0.32.0': + dependencies: + '@paulmillr/qr': 0.2.1 + + '@metamask/sdk@0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + dependencies: + '@babel/runtime': 7.27.6 + '@metamask/onboarding': 1.0.1 + '@metamask/providers': 16.1.0 + '@metamask/sdk-communication-layer': 0.32.0(cross-fetch@4.1.0)(eciesjs@0.4.15)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + '@metamask/sdk-install-modal-web': 0.32.0 + '@paulmillr/qr': 0.2.1 + bowser: 2.11.0 + cross-fetch: 4.1.0 + debug: 4.4.1 + eciesjs: 0.4.15 + eth-rpc-errors: 4.0.3 + eventemitter2: 6.4.9 + obj-multiplex: 1.0.0 + pump: 3.0.2 + readable-stream: 3.6.2 + socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + tslib: 2.8.1 + util: 0.12.5 + uuid: 8.3.2 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + '@metamask/superstruct@3.2.1': {} + + '@metamask/utils@5.0.2': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@types/debug': 4.1.12 + debug: 4.4.1 + semver: 7.7.2 + superstruct: 1.0.4 + transitivePeerDependencies: + - supports-color + + '@metamask/utils@8.5.0': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@metamask/superstruct': 3.2.1 + '@noble/hashes': 1.8.0 + '@scure/base': 1.1.9 + '@types/debug': 4.1.12 + debug: 4.4.1 + pony-cause: 2.1.11 + semver: 7.7.2 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color + + '@metamask/utils@9.3.0': + dependencies: + '@ethereumjs/tx': 4.2.0 + '@metamask/superstruct': 3.2.1 + '@noble/hashes': 1.8.0 + '@scure/base': 1.1.9 + '@types/debug': 4.1.12 + debug: 4.4.1 + pony-cause: 2.1.11 + semver: 7.7.2 + uuid: 9.0.1 + transitivePeerDependencies: + - supports-color + + '@monaco-editor/loader@1.5.0': + dependencies: + state-local: 1.0.7 + + '@monaco-editor/react@4.7.0(monaco-editor@0.34.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@monaco-editor/loader': 1.5.0 + monaco-editor: 0.34.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@motionone/animation@10.18.0': + dependencies: + '@motionone/easing': 10.18.0 + '@motionone/types': 10.17.1 + '@motionone/utils': 10.18.0 + tslib: 2.8.1 + + '@motionone/dom@10.18.0': + dependencies: + '@motionone/animation': 10.18.0 + '@motionone/generators': 10.18.0 + '@motionone/types': 10.17.1 + '@motionone/utils': 10.18.0 + hey-listen: 1.0.8 + tslib: 2.8.1 + + '@motionone/easing@10.18.0': + dependencies: + '@motionone/utils': 10.18.0 + tslib: 2.8.1 + + '@motionone/generators@10.18.0': + dependencies: + '@motionone/types': 10.17.1 + '@motionone/utils': 10.18.0 + tslib: 2.8.1 + + '@motionone/svelte@10.16.4': + dependencies: + '@motionone/dom': 10.18.0 + tslib: 2.8.1 + + '@motionone/types@10.17.1': {} + + '@motionone/utils@10.18.0': + dependencies: + '@motionone/types': 10.17.1 + hey-listen: 1.0.8 + tslib: 2.8.1 + + '@motionone/vue@10.16.4': + dependencies: + '@motionone/dom': 10.18.0 + tslib: 2.8.1 + + '@multiformats/dns@1.0.6': + dependencies: + '@types/dns-packet': 5.6.5 + buffer: 6.0.3 + dns-packet: 5.6.1 + hashlru: 2.3.0 + p-queue: 8.1.0 + progress-events: 1.0.1 + uint8arrays: 5.1.0 + + '@multiformats/multiaddr-matcher@1.7.2': + dependencies: + '@chainsafe/is-ip': 2.1.0 + '@multiformats/multiaddr': 12.4.1 + multiformats: 13.3.6 + + '@multiformats/multiaddr-to-uri@11.0.0': + dependencies: + '@multiformats/multiaddr': 12.4.1 + + '@multiformats/multiaddr@12.4.1': + dependencies: + '@chainsafe/is-ip': 2.1.0 + '@chainsafe/netmask': 2.0.0 + '@multiformats/dns': 1.0.6 + multiformats: 13.3.6 + uint8-varint: 2.0.4 + uint8arrays: 5.1.0 + + '@multiformats/murmur3@2.1.8': + dependencies: + multiformats: 13.3.6 + murmurhash3js-revisited: 3.0.0 + + '@multiformats/uri-to-multiaddr@8.1.0': + dependencies: + '@multiformats/multiaddr': 12.4.1 + is-ip: 5.0.1 + + '@multiformats/uri-to-multiaddr@9.0.1': + dependencies: + '@multiformats/multiaddr': 12.4.1 + is-ip: 5.0.1 + + '@n1ru4l/push-pull-async-iterable-iterator@3.2.0': {} + + '@napi-rs/wasm-runtime@0.2.10': + dependencies: + '@emnapi/core': 1.4.3 + '@emnapi/runtime': 1.4.3 + '@tybys/wasm-util': 0.9.0 + optional: true + + '@next/bundle-analyzer@15.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + dependencies: + webpack-bundle-analyzer: 4.10.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@next/env@15.2.3': {} + + '@next/eslint-plugin-next@15.0.3': + dependencies: + fast-glob: 3.3.1 + + '@next/swc-darwin-arm64@15.2.3': + optional: true + + '@next/swc-darwin-x64@15.2.3': + optional: true + + '@next/swc-linux-arm64-gnu@15.2.3': + optional: true + + '@next/swc-linux-arm64-musl@15.2.3': + optional: true + + '@next/swc-linux-x64-gnu@15.2.3': + optional: true + + '@next/swc-linux-x64-musl@15.2.3': + optional: true + + '@next/swc-win32-arm64-msvc@15.2.3': + optional: true + + '@next/swc-win32-x64-msvc@15.2.3': + optional: true + + '@noble/ciphers@1.2.1': {} + + '@noble/ciphers@1.3.0': {} + + '@noble/curves@1.4.2': + dependencies: + '@noble/hashes': 1.4.0 + + '@noble/curves@1.8.0': + dependencies: + '@noble/hashes': 1.7.0 + + '@noble/curves@1.8.1': + dependencies: + '@noble/hashes': 1.7.1 + + '@noble/curves@1.9.1': + dependencies: + '@noble/hashes': 1.8.0 + optional: true + + '@noble/curves@1.9.2': + dependencies: + '@noble/hashes': 1.8.0 + + '@noble/hashes@1.4.0': {} + + '@noble/hashes@1.7.0': {} + + '@noble/hashes@1.7.1': {} + + '@noble/hashes@1.8.0': {} + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@nolyfill/is-core-module@1.0.39': {} + + '@opentelemetry/api-logs@0.49.1': + dependencies: + '@opentelemetry/api': 1.9.0 + + '@opentelemetry/api@1.9.0': {} + + '@opentelemetry/auto-instrumentations-node@0.43.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-amqplib': 0.35.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-aws-lambda': 0.39.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-aws-sdk': 0.39.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-bunyan': 0.36.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-cassandra-driver': 0.36.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-connect': 0.34.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-cucumber': 0.4.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-dataloader': 0.7.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-dns': 0.34.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-express': 0.36.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-fastify': 0.34.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-fs': 0.10.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-generic-pool': 0.34.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-graphql': 0.38.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-grpc': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-hapi': 0.35.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-http': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-ioredis': 0.38.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-knex': 0.34.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-koa': 0.38.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-lru-memoizer': 0.35.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-memcached': 0.34.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mongodb': 0.41.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mongoose': 0.36.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mysql': 0.36.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mysql2': 0.36.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-nestjs-core': 0.35.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-net': 0.34.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-pg': 0.39.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-pino': 0.36.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-redis': 0.37.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-redis-4': 0.37.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-restify': 0.36.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-router': 0.35.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-socket.io': 0.37.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-tedious': 0.8.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-winston': 0.35.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resource-detector-alibaba-cloud': 0.28.10(@opentelemetry/api@1.9.0) + '@opentelemetry/resource-detector-aws': 1.12.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resource-detector-container': 0.3.11(@opentelemetry/api@1.9.0) + '@opentelemetry/resource-detector-gcp': 0.29.13(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-node': 0.49.1(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - encoding + - supports-color + + '@opentelemetry/context-async-hooks@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + + '@opentelemetry/core@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/semantic-conventions': 1.22.0 + + '@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/semantic-conventions': 1.27.0 + + '@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/semantic-conventions': 1.28.0 + + '@opentelemetry/core@2.0.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/semantic-conventions': 1.34.0 + + '@opentelemetry/exporter-jaeger@1.27.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.27.0 + jaeger-client: 3.19.0 + + '@opentelemetry/exporter-metrics-otlp-http@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-transformer': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-metrics': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/exporter-metrics-otlp-proto@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-metrics-otlp-http': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-proto-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-transformer': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-metrics': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/exporter-trace-otlp-grpc@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@grpc/grpc-js': 1.13.4 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-grpc-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-transformer': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/exporter-trace-otlp-http@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-transformer': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/exporter-trace-otlp-proto@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-proto-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-transformer': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/exporter-zipkin@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + + '@opentelemetry/instrumentation-amqplib@0.35.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-aws-lambda@0.39.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/propagator-aws-xray': 1.26.2(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/aws-lambda': 8.10.122 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-aws-sdk@0.39.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/propagation-utils': 0.30.16(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-bunyan@0.36.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/api-logs': 0.49.1 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@types/bunyan': 1.8.9 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-cassandra-driver@0.36.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-connect@0.34.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/connect': 3.4.36 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-cucumber@0.4.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-dataloader@0.7.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-dns@0.34.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-express@0.36.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-fastify@0.34.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-fs@0.10.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-generic-pool@0.34.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-graphql@0.38.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-grpc@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-hapi@0.35.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/hapi__hapi': 20.0.13 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-http@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-ioredis@0.38.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/redis-common': 0.36.2 + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/ioredis4': '@types/ioredis@4.28.10' + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-knex@0.34.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-koa@0.38.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/koa': 2.14.0 + '@types/koa__router': 12.0.3 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-lru-memoizer@0.35.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-memcached@0.34.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/memcached': 2.2.10 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-mongodb@0.41.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-metrics': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-mongoose@0.36.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-mysql2@0.36.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-mysql@0.36.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/mysql': 2.15.22 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-nestjs-core@0.35.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-net@0.34.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-pg@0.39.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0) + '@types/pg': 8.6.1 + '@types/pg-pool': 2.0.4 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-pino@0.36.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-redis-4@0.37.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/redis-common': 0.36.2 + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-redis@0.37.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/redis-common': 0.36.2 + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-restify@0.36.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-router@0.35.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-socket.io@0.37.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-tedious@0.8.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + '@types/tedious': 4.0.14 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation-winston@0.35.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + transitivePeerDependencies: + - supports-color + + '@opentelemetry/instrumentation@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/api-logs': 0.49.1 + '@types/shimmer': 1.2.0 + import-in-the-middle: 1.7.1 + require-in-the-middle: 7.5.2 + semver: 7.7.2 + shimmer: 1.2.1 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/otlp-exporter-base@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/otlp-grpc-exporter-base@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@grpc/grpc-js': 1.13.4 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + protobufjs: 7.5.3 + + '@opentelemetry/otlp-proto-exporter-base@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/otlp-exporter-base': 0.49.1(@opentelemetry/api@1.9.0) + protobufjs: 7.5.3 + + '@opentelemetry/otlp-transformer@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/api-logs': 0.49.1 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-logs': 0.49.1(@opentelemetry/api-logs@0.49.1)(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-metrics': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/propagation-utils@0.30.16(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + + '@opentelemetry/propagator-aws-xray@1.26.2(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + + '@opentelemetry/propagator-b3@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/propagator-jaeger@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/redis-common@0.36.2': {} + + '@opentelemetry/resource-detector-alibaba-cloud@0.28.10(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + + '@opentelemetry/resource-detector-aws@1.12.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.34.0 + + '@opentelemetry/resource-detector-container@0.3.11(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + + '@opentelemetry/resource-detector-gcp@0.29.13(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.34.0 + gcp-metadata: 6.1.1 + transitivePeerDependencies: + - encoding + - supports-color + + '@opentelemetry/resources@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + + '@opentelemetry/resources@1.27.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.27.0 + + '@opentelemetry/resources@1.30.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.28.0 + + '@opentelemetry/resources@2.0.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 2.0.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.34.0 + + '@opentelemetry/sdk-logs@0.49.1(@opentelemetry/api-logs@0.49.1)(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/api-logs': 0.49.1 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + + '@opentelemetry/sdk-metrics@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + lodash.merge: 4.6.2 + + '@opentelemetry/sdk-metrics@1.30.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.30.1(@opentelemetry/api@1.9.0) + + '@opentelemetry/sdk-metrics@2.0.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 2.0.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 2.0.1(@opentelemetry/api@1.9.0) + + '@opentelemetry/sdk-node@0.49.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/api-logs': 0.49.1 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-trace-otlp-grpc': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-trace-otlp-http': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-trace-otlp-proto': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/exporter-zipkin': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.49.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-logs': 0.49.1(@opentelemetry/api-logs@0.49.1)(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-metrics': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-node': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + transitivePeerDependencies: + - supports-color + + '@opentelemetry/sdk-trace-base@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.22.0 + + '@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.27.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.27.0 + + '@opentelemetry/sdk-trace-node@1.22.0(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/context-async-hooks': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/propagator-b3': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/propagator-jaeger': 1.22.0(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.9.0) + semver: 7.7.2 + + '@opentelemetry/semantic-conventions@1.22.0': {} + + '@opentelemetry/semantic-conventions@1.27.0': {} + + '@opentelemetry/semantic-conventions@1.28.0': {} + + '@opentelemetry/semantic-conventions@1.34.0': {} + + '@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.0)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0) + + '@pandacss/is-valid-prop@0.41.0': {} + + '@paulmillr/qr@0.2.1': {} + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@playwright/experimental-ct-core@1.49.0(@types/node@20.16.7)(terser@5.41.0)': + dependencies: + playwright: 1.49.0 + playwright-core: 1.49.0 + vite: 5.4.19(@types/node@20.16.7)(terser@5.41.0) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - terser + + '@playwright/experimental-ct-react@1.49.0(@types/node@20.16.7)(terser@5.41.0)(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0))': + dependencies: + '@playwright/experimental-ct-core': 1.49.0(@types/node@20.16.7)(terser@5.41.0) + '@vitejs/plugin-react': 4.5.1(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0)) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - vite + + '@playwright/test@1.49.0': + dependencies: + playwright: 1.49.0 + + '@polka/url@1.0.0-next.29': {} + + '@protobufjs/aspromise@1.1.2': {} + + '@protobufjs/base64@1.1.2': {} + + '@protobufjs/codegen@2.0.4': {} + + '@protobufjs/eventemitter@1.1.0': {} + + '@protobufjs/fetch@1.1.0': + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/inquire': 1.1.0 + + '@protobufjs/float@1.0.2': {} + + '@protobufjs/inquire@1.1.0': {} + + '@protobufjs/path@1.1.2': {} + + '@protobufjs/pool@1.1.0': {} + + '@protobufjs/utf8@1.1.0': {} + + '@reach/auto-id@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tslib: 2.8.1 + + '@reach/combobox@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/auto-id': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/descendants': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/popover': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/portal': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tiny-warning: 1.0.3 + tslib: 2.8.1 + + '@reach/descendants@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tslib: 2.8.1 + + '@reach/dialog@0.17.0(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/portal': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-focus-lock: 2.13.6(@types/react@18.3.12)(react@18.3.1) + react-remove-scroll: 2.7.1(@types/react@18.3.12)(react@18.3.1) + tslib: 2.8.1 + transitivePeerDependencies: + - '@types/react' + + '@reach/dropdown@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/auto-id': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/descendants': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/popover': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tslib: 2.8.1 + + '@reach/listbox@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/auto-id': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/descendants': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/machine': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/popover': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@reach/machine@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@xstate/fsm': 1.4.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tslib: 2.8.1 + + '@reach/menu-button@0.17.0(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)': + dependencies: + '@reach/dropdown': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/popover': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 18.3.1 + tiny-warning: 1.0.3 + tslib: 2.8.1 + + '@reach/observe-rect@1.2.0': {} + + '@reach/popover@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/portal': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/rect': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tabbable: 4.0.0 + tslib: 2.8.1 + + '@reach/portal@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tiny-warning: 1.0.3 + tslib: 2.8.1 + + '@reach/rect@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/observe-rect': 1.2.0 + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tiny-warning: 1.0.3 + tslib: 2.8.1 + + '@reach/tooltip@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@reach/auto-id': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/portal': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/rect': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/utils': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/visually-hidden': 0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tiny-warning: 1.0.3 + tslib: 2.8.1 + + '@reach/utils@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tiny-warning: 1.0.3 + tslib: 2.8.1 + + '@reach/visually-hidden@0.17.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tslib: 2.8.1 + + '@reown/appkit-adapter-wagmi@1.7.0(@types/react@18.3.12)(@wagmi/core@2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(wagmi@2.14.15(@tanstack/query-core@5.55.4)(@tanstack/react-query@5.55.4(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53))(zod@3.25.53)': + dependencies: + '@reown/appkit': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-common': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-polyfills': 1.7.0 + '@reown/appkit-scaffold-ui': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-utils': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-wallet': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)) + '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + wagmi: 2.14.15(@tanstack/query-core@5.55.4)(@tanstack/react-query@5.55.4(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53) + optionalDependencies: + '@wagmi/connectors': 5.8.4(@types/react@18.3.12)(@wagmi/core@2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - supports-color + - typescript + - uploadthing + - utf-8-validate + - zod + + '@reown/appkit-common@1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + dependencies: + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@reown/appkit-common@1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@reown/appkit-common@1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + dependencies: + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.30.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + optional: true + + '@reown/appkit-common@1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + big.js: 6.2.2 + dayjs: 1.11.13 + viem: 2.30.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + optional: true + + '@reown/appkit-controllers@1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-wallet': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + + '@reown/appkit-controllers@1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + viem: 2.30.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@reown/appkit-pay@1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-ui': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-utils': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + lit: 3.3.0 + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@reown/appkit-polyfills@1.7.0': + dependencies: + buffer: 6.0.3 + + '@reown/appkit-polyfills@1.7.8': + dependencies: + buffer: 6.0.3 + optional: true + + '@reown/appkit-scaffold-ui@1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-ui': 1.7.0 + '@reown/appkit-utils': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-wallet': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + lit: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - valtio + - zod + + '@reown/appkit-scaffold-ui@1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-ui': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-utils': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + lit: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - valtio + - zod + optional: true + + '@reown/appkit-ui@1.7.0': + dependencies: + lit: 3.1.0 + qrcode: 1.5.3 + + '@reown/appkit-ui@1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + lit: 3.3.0 + qrcode: 1.5.3 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@reown/appkit-utils@1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-polyfills': 1.7.0 + '@reown/appkit-wallet': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + '@walletconnect/logger': 2.1.2 + '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + + '@reown/appkit-utils@1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-polyfills': 1.7.8 + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + '@walletconnect/logger': 2.1.2 + '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + viem: 2.30.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@reown/appkit-wallet@1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)': + dependencies: + '@reown/appkit-common': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.7.0 + '@walletconnect/logger': 2.1.2 + zod: 3.22.4 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + + '@reown/appkit-wallet@1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)': + dependencies: + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.7.8 + '@walletconnect/logger': 2.1.2 + zod: 3.22.4 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + optional: true + + '@reown/appkit@1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-polyfills': 1.7.0 + '@reown/appkit-scaffold-ui': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-ui': 1.7.0 + '@reown/appkit-utils': 1.7.0(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-wallet': 1.7.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.19.1 + '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + bs58: 6.0.0 + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + + '@reown/appkit@1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@reown/appkit-common': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-controllers': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-pay': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-polyfills': 1.7.8 + '@reown/appkit-scaffold-ui': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-ui': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@reown/appkit-utils': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1))(zod@3.25.53) + '@reown/appkit-wallet': 1.7.8(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.21.0 + '@walletconnect/universal-provider': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + bs58: 6.0.0 + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + viem: 2.30.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@rollbar/react@0.12.1(prop-types@15.8.1)(react@18.3.1)(rollbar@2.26.4)': + dependencies: + prop-types: 15.8.1 + react: 18.3.1 + rollbar: 2.26.4 + tiny-invariant: 1.3.3 + + '@rolldown/pluginutils@1.0.0-beta.9': {} + + '@rollup/pluginutils@5.1.4(rollup@4.41.1)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.2 + optionalDependencies: + rollup: 4.41.1 + + '@rollup/rollup-android-arm-eabi@4.41.1': + optional: true + + '@rollup/rollup-android-arm64@4.41.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.41.1': + optional: true + + '@rollup/rollup-darwin-x64@4.41.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.41.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.41.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.41.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.41.1': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.41.1': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.41.1': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.41.1': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.41.1': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.41.1': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.41.1': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.41.1': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.41.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.41.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.41.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.41.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.41.1': + optional: true + + '@rrweb/types@2.0.0-alpha.18': {} + + '@rrweb/utils@2.0.0-alpha.18': {} + + '@rtsao/scc@1.1.0': {} + + '@rushstack/eslint-patch@1.11.0': {} + + '@safe-global/safe-apps-provider@0.18.5(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + events: 3.3.0 + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + optional: true + + '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@safe-global/safe-gateway-typescript-sdk': 3.23.1 + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - bufferutil + - typescript + - utf-8-validate + - zod + + '@safe-global/safe-gateway-typescript-sdk@3.23.1': {} + + '@scarf/scarf@1.4.0': {} + + '@scure/base@1.1.9': {} + + '@scure/base@1.2.6': {} + + '@scure/bip32@1.4.0': + dependencies: + '@noble/curves': 1.4.2 + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.9 + + '@scure/bip32@1.6.2': + dependencies: + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/base': 1.2.6 + + '@scure/bip32@1.7.0': + dependencies: + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/base': 1.2.6 + optional: true + + '@scure/bip39@1.3.0': + dependencies: + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.9 + + '@scure/bip39@1.5.4': + dependencies: + '@noble/hashes': 1.7.1 + '@scure/base': 1.2.6 + + '@scure/bip39@1.6.0': + dependencies: + '@noble/hashes': 1.8.0 + '@scure/base': 1.2.6 + optional: true + + '@sideway/address@4.1.5': + dependencies: + '@hapi/hoek': 9.3.0 + + '@sideway/formula@3.0.1': {} + + '@sideway/pinpoint@2.0.0': {} + + '@sinclair/typebox@0.27.8': {} + + '@sindresorhus/fnv1a@3.1.0': {} + + '@sindresorhus/merge-streams@2.3.0': {} + + '@sinonjs/commons@3.0.1': + dependencies: + type-detect: 4.0.8 + + '@sinonjs/fake-timers@10.3.0': + dependencies: + '@sinonjs/commons': 3.0.1 + + '@slise/embed-react@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-script-hook: 1.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + + '@socket.io/component-emitter@3.1.2': {} + + '@stylistic/eslint-plugin@2.10.1(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@typescript-eslint/utils': 8.33.1(eslint@9.14.0)(typescript@5.4.2) + eslint: 9.14.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + estraverse: 5.3.0 + picomatch: 4.0.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + + '@svgr/babel-preset@6.5.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.27.4) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.27.4) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.27.4) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.27.4) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.27.4) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.27.4) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.27.4) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.27.4) + + '@svgr/core@6.5.1': + dependencies: + '@babel/core': 7.27.4 + '@svgr/babel-preset': 6.5.1(@babel/core@7.27.4) + '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) + camelcase: 6.3.0 + cosmiconfig: 7.1.0 + transitivePeerDependencies: + - supports-color + + '@svgr/hast-util-to-babel-ast@6.5.1': + dependencies: + '@babel/types': 7.27.6 + entities: 4.5.0 + + '@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)': + dependencies: + '@babel/core': 7.27.4 + '@svgr/babel-preset': 6.5.1(@babel/core@7.27.4) + '@svgr/core': 6.5.1 + '@svgr/hast-util-to-babel-ast': 6.5.1 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + + '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': + dependencies: + '@svgr/core': 6.5.1 + cosmiconfig: 7.1.0 + deepmerge: 4.3.1 + svgo: 2.8.0 + + '@svgr/webpack@6.5.1': + dependencies: + '@babel/core': 7.27.4 + '@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.27.4) + '@babel/preset-env': 7.27.2(@babel/core@7.27.4) + '@babel/preset-react': 7.27.1(@babel/core@7.27.4) + '@babel/preset-typescript': 7.27.1(@babel/core@7.27.4) + '@svgr/core': 6.5.1 + '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) + '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) + transitivePeerDependencies: + - supports-color + + '@swagger-api/apidom-ast@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + unraw: 3.0.0 + + '@swagger-api/apidom-core@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-ast': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + minim: 0.23.8 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + short-unique-id: 5.3.2 + ts-mixer: 6.0.4 + + '@swagger-api/apidom-error@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + + '@swagger-api/apidom-json-pointer@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swaggerexpert/json-pointer': 2.10.2 + + '@swagger-api/apidom-ns-api-design-systems@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-1': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + optional: true + + '@swagger-api/apidom-ns-arazzo-1@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-2020-12': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + optional: true + + '@swagger-api/apidom-ns-asyncapi-2@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-draft-7': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + optional: true + + '@swagger-api/apidom-ns-json-schema-2019-09@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-draft-7': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + + '@swagger-api/apidom-ns-json-schema-2020-12@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-2019-09': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + + '@swagger-api/apidom-ns-json-schema-draft-4@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-ast': 1.0.0-beta.41 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + + '@swagger-api/apidom-ns-json-schema-draft-6@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-draft-4': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + + '@swagger-api/apidom-ns-json-schema-draft-7@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-draft-6': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + + '@swagger-api/apidom-ns-openapi-2@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-draft-4': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + optional: true + + '@swagger-api/apidom-ns-openapi-3-0@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-draft-4': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + + '@swagger-api/apidom-ns-openapi-3-1@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-ast': 1.0.0-beta.41 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-json-pointer': 1.0.0-beta.41 + '@swagger-api/apidom-ns-json-schema-2020-12': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-0': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + ts-mixer: 6.0.4 + + '@swagger-api/apidom-parser-adapter-api-design-systems-json@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-api-design-systems': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-json': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-api-design-systems-yaml@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-api-design-systems': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-yaml-1-2': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-arazzo-json-1@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-arazzo-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-json': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-arazzo-yaml-1@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-arazzo-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-yaml-1-2': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-asyncapi-json-2@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-asyncapi-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-json': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-asyncapi-yaml-2@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-asyncapi-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-yaml-1-2': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-json@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-ast': 1.0.0-beta.41 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + tree-sitter: 0.21.1 + tree-sitter-json: 0.24.8(tree-sitter@0.21.1) + web-tree-sitter: 0.24.5 + optional: true + + '@swagger-api/apidom-parser-adapter-openapi-json-2@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-json': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-openapi-json-3-0@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-0': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-json': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-openapi-json-3-1@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-json': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-openapi-yaml-2@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-yaml-1-2': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-openapi-yaml-3-0@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-0': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-yaml-1-2': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-openapi-yaml-3-1@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-yaml-1-2': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optional: true + + '@swagger-api/apidom-parser-adapter-yaml-1-2@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-ast': 1.0.0-beta.41 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@tree-sitter-grammars/tree-sitter-yaml': 0.7.1(tree-sitter@0.22.4) + '@types/ramda': 0.30.2 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + tree-sitter: 0.22.4 + web-tree-sitter: 0.24.5 + optional: true + + '@swagger-api/apidom-reference@1.0.0-beta.41': + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@types/ramda': 0.30.2 + axios: 1.9.0 + minimatch: 7.4.6 + process: 0.11.10 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + optionalDependencies: + '@swagger-api/apidom-json-pointer': 1.0.0-beta.41 + '@swagger-api/apidom-ns-arazzo-1': 1.0.0-beta.41 + '@swagger-api/apidom-ns-asyncapi-2': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-2': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-0': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-api-design-systems-json': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-api-design-systems-yaml': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-arazzo-json-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-arazzo-yaml-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-asyncapi-json-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-asyncapi-yaml-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-json': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-openapi-json-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-openapi-json-3-0': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-openapi-json-3-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-openapi-yaml-2': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-openapi-yaml-3-0': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-openapi-yaml-3-1': 1.0.0-beta.41 + '@swagger-api/apidom-parser-adapter-yaml-1-2': 1.0.0-beta.41 + transitivePeerDependencies: + - debug + + '@swaggerexpert/cookie@2.0.2': + dependencies: + apg-lite: 1.0.5 + + '@swaggerexpert/json-pointer@2.10.2': + dependencies: + apg-lite: 1.0.5 + + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.5.15': + dependencies: + tslib: 2.8.1 + + '@swc/helpers@0.5.17': + dependencies: + tslib: 2.8.1 + + '@tanstack/eslint-plugin-query@5.60.1(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@typescript-eslint/utils': 8.33.1(eslint@9.14.0)(typescript@5.4.2) + eslint: 9.14.0 + transitivePeerDependencies: + - supports-color + - typescript + + '@tanstack/query-core@5.55.4': {} + + '@tanstack/query-devtools@5.55.1': {} + + '@tanstack/react-query-devtools@5.55.4(@tanstack/react-query@5.55.4(react@18.3.1))(react@18.3.1)': + dependencies: + '@tanstack/query-devtools': 5.55.1 + '@tanstack/react-query': 5.55.4(react@18.3.1) + react: 18.3.1 + + '@tanstack/react-query@5.55.4(react@18.3.1)': + dependencies: + '@tanstack/query-core': 5.55.4 + react: 18.3.1 + + '@testing-library/dom@9.3.4': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/runtime': 7.27.6 + '@types/aria-query': 5.0.4 + aria-query: 5.1.3 + chalk: 4.1.2 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + pretty-format: 27.5.1 + + '@testing-library/react@14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.27.6 + '@testing-library/dom': 9.3.4 + '@types/react-dom': 18.3.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@tootallnate/once@2.0.0': {} + + '@total-typescript/ts-reset@0.4.2': {} + + '@tree-sitter-grammars/tree-sitter-yaml@0.7.1(tree-sitter@0.22.4)': + dependencies: + node-addon-api: 8.3.1 + node-gyp-build: 4.8.4 + optionalDependencies: + tree-sitter: 0.22.4 + optional: true + + '@trysound/sax@0.2.0': {} + + '@tsconfig/node10@1.0.11': {} + + '@tsconfig/node12@1.0.11': {} + + '@tsconfig/node14@1.0.3': {} + + '@tsconfig/node16@1.0.4': {} + + '@tybys/wasm-util@0.9.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@types/accepts@1.3.7': + dependencies: + '@types/node': 20.16.7 + + '@types/aria-query@5.0.4': {} + + '@types/aws-lambda@8.10.122': {} + + '@types/babel__core@7.20.5': + dependencies: + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + '@types/babel__generator': 7.27.0 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.7 + + '@types/babel__generator@7.27.0': + dependencies: + '@babel/types': 7.27.6 + + '@types/babel__template@7.4.4': + dependencies: + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + + '@types/babel__traverse@7.20.7': + dependencies: + '@babel/types': 7.27.6 + + '@types/body-parser@1.19.5': + dependencies: + '@types/connect': 3.4.38 + '@types/node': 20.16.7 + + '@types/bunyan@1.8.9': + dependencies: + '@types/node': 20.16.7 + + '@types/chrome@0.0.136': + dependencies: + '@types/filesystem': 0.0.36 + '@types/har-format': 1.2.16 + + '@types/cli-table@0.3.4': {} + + '@types/codemirror@0.0.90': + dependencies: + '@types/tern': 0.23.9 + + '@types/connect@3.4.36': + dependencies: + '@types/node': 20.16.7 + + '@types/connect@3.4.38': + dependencies: + '@types/node': 20.16.7 + + '@types/content-disposition@0.5.8': {} + + '@types/cookies@0.9.0': + dependencies: + '@types/connect': 3.4.38 + '@types/express': 5.0.2 + '@types/keygrip': 1.0.6 + '@types/node': 20.16.7 + + '@types/crypto-js@4.2.2': {} + + '@types/csp-dev@1.0.3': {} + + '@types/css-font-loading-module@0.0.7': {} + + '@types/d3-array@3.2.1': {} + + '@types/d3-axis@3.0.6': + dependencies: + '@types/d3-selection': 3.0.11 + + '@types/d3-brush@3.0.6': + dependencies: + '@types/d3-selection': 3.0.11 + + '@types/d3-chord@3.0.6': {} + + '@types/d3-color@3.1.3': {} + + '@types/d3-contour@3.0.6': + dependencies: + '@types/d3-array': 3.2.1 + '@types/geojson': 7946.0.16 + + '@types/d3-delaunay@6.0.4': {} + + '@types/d3-dispatch@3.0.6': {} + + '@types/d3-drag@3.0.7': + dependencies: + '@types/d3-selection': 3.0.11 + + '@types/d3-dsv@3.0.7': {} + + '@types/d3-ease@3.0.2': {} + + '@types/d3-fetch@3.0.7': + dependencies: + '@types/d3-dsv': 3.0.7 + + '@types/d3-force@3.0.10': {} + + '@types/d3-format@3.0.4': {} + + '@types/d3-geo@3.1.0': + dependencies: + '@types/geojson': 7946.0.16 + + '@types/d3-hierarchy@3.1.7': {} + + '@types/d3-interpolate@3.0.4': + dependencies: + '@types/d3-color': 3.1.3 + + '@types/d3-path@3.1.1': {} + + '@types/d3-polygon@3.0.2': {} + + '@types/d3-quadtree@3.0.6': {} + + '@types/d3-random@3.0.3': {} + + '@types/d3-scale-chromatic@3.1.0': {} + + '@types/d3-scale@4.0.9': + dependencies: + '@types/d3-time': 3.0.4 + + '@types/d3-selection@3.0.11': {} + + '@types/d3-shape@3.1.7': + dependencies: + '@types/d3-path': 3.1.1 + + '@types/d3-time-format@4.0.3': {} + + '@types/d3-time@3.0.4': {} + + '@types/d3-timer@3.0.2': {} + + '@types/d3-transition@3.0.9': + dependencies: + '@types/d3-selection': 3.0.11 + + '@types/d3-zoom@3.0.8': + dependencies: + '@types/d3-interpolate': 3.0.4 + '@types/d3-selection': 3.0.11 + + '@types/d3@7.4.3': + dependencies: + '@types/d3-array': 3.2.1 + '@types/d3-axis': 3.0.6 + '@types/d3-brush': 3.0.6 + '@types/d3-chord': 3.0.6 + '@types/d3-color': 3.1.3 + '@types/d3-contour': 3.0.6 + '@types/d3-delaunay': 6.0.4 + '@types/d3-dispatch': 3.0.6 + '@types/d3-drag': 3.0.7 + '@types/d3-dsv': 3.0.7 + '@types/d3-ease': 3.0.2 + '@types/d3-fetch': 3.0.7 + '@types/d3-force': 3.0.10 + '@types/d3-format': 3.0.4 + '@types/d3-geo': 3.1.0 + '@types/d3-hierarchy': 3.1.7 + '@types/d3-interpolate': 3.0.4 + '@types/d3-path': 3.1.1 + '@types/d3-polygon': 3.0.2 + '@types/d3-quadtree': 3.0.6 + '@types/d3-random': 3.0.3 + '@types/d3-scale': 4.0.9 + '@types/d3-scale-chromatic': 3.1.0 + '@types/d3-selection': 3.0.11 + '@types/d3-shape': 3.1.7 + '@types/d3-time': 3.0.4 + '@types/d3-time-format': 4.0.3 + '@types/d3-timer': 3.0.2 + '@types/d3-transition': 3.0.9 + '@types/d3-zoom': 3.0.8 + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/dns-packet@5.6.5': + dependencies: + '@types/node': 20.16.7 + + '@types/dom-to-image@2.6.7': {} + + '@types/eslint-scope@3.7.7': + dependencies: + '@types/eslint': 9.6.1 + '@types/estree': 1.0.8 + + '@types/eslint@9.6.1': + dependencies: + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + + '@types/estree@1.0.7': {} + + '@types/estree@1.0.8': {} + + '@types/express-serve-static-core@5.0.6': + dependencies: + '@types/node': 20.16.7 + '@types/qs': 6.14.0 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.4 + + '@types/express@5.0.2': + dependencies: + '@types/body-parser': 1.19.5 + '@types/express-serve-static-core': 5.0.6 + '@types/serve-static': 1.15.7 + + '@types/filesystem@0.0.36': + dependencies: + '@types/filewriter': 0.0.33 + + '@types/filewriter@0.0.33': {} + + '@types/geojson@7946.0.16': {} + + '@types/graceful-fs@4.1.9': + dependencies: + '@types/node': 20.16.7 + + '@types/hapi__catbox@10.2.6': {} + + '@types/hapi__hapi@20.0.13': + dependencies: + '@hapi/boom': 9.1.4 + '@hapi/iron': 6.0.0 + '@hapi/podium': 4.1.3 + '@types/hapi__catbox': 10.2.6 + '@types/hapi__mimos': 4.1.4 + '@types/hapi__shot': 6.0.0 + '@types/node': 20.16.7 + joi: 17.13.3 + + '@types/hapi__mimos@4.1.4': + dependencies: + '@types/mime-db': 1.43.5 + + '@types/hapi__shot@6.0.0': + dependencies: + '@hapi/shot': 6.0.1 + + '@types/har-format@1.2.16': {} + + '@types/hast@2.3.10': + dependencies: + '@types/unist': 2.0.11 + + '@types/http-assert@1.5.6': {} + + '@types/http-errors@2.0.4': {} + + '@types/ioredis@4.28.10': + dependencies: + '@types/node': 20.16.7 + + '@types/istanbul-lib-coverage@2.0.6': {} + + '@types/istanbul-lib-report@3.0.3': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + + '@types/istanbul-reports@3.0.4': + dependencies: + '@types/istanbul-lib-report': 3.0.3 + + '@types/jest@29.2.1': + dependencies: + expect: 29.7.0 + pretty-format: 29.7.0 + + '@types/js-cookie@3.0.6': {} + + '@types/jsdom@20.0.1': + dependencies: + '@types/node': 20.16.7 + '@types/tough-cookie': 4.0.5 + parse5: 7.3.0 + + '@types/json-schema@7.0.15': {} + + '@types/json5@0.0.29': {} + + '@types/keygrip@1.0.6': {} + + '@types/koa-compose@3.2.8': + dependencies: + '@types/koa': 2.14.0 + + '@types/koa@2.14.0': + dependencies: + '@types/accepts': 1.3.7 + '@types/content-disposition': 0.5.8 + '@types/cookies': 0.9.0 + '@types/http-assert': 1.5.6 + '@types/http-errors': 2.0.4 + '@types/keygrip': 1.0.6 + '@types/koa-compose': 3.2.8 + '@types/node': 20.16.7 + + '@types/koa__router@12.0.3': + dependencies: + '@types/koa': 2.14.0 + + '@types/memcached@2.2.10': + dependencies: + '@types/node': 20.16.7 + + '@types/mime-db@1.43.5': {} + + '@types/mime@1.3.5': {} + + '@types/mixpanel-browser@2.60.0': {} + + '@types/ms@2.1.0': {} + + '@types/mysql@2.15.22': + dependencies: + '@types/node': 20.16.7 + + '@types/node@14.18.63': {} + + '@types/node@20.16.7': + dependencies: + undici-types: 6.19.8 + + '@types/papaparse@5.3.16': + dependencies: + '@types/node': 20.16.7 + + '@types/parse-json@4.0.2': {} + + '@types/pg-pool@2.0.4': + dependencies: + '@types/pg': 8.6.1 + + '@types/pg@8.6.1': + dependencies: + '@types/node': 20.16.7 + pg-protocol: 1.10.0 + pg-types: 2.2.0 + + '@types/phoenix@1.6.6': {} + + '@types/prop-types@15.7.14': {} + + '@types/qrcode@1.5.5': + dependencies: + '@types/node': 20.16.7 + + '@types/qs@6.14.0': {} + + '@types/ramda@0.30.2': + dependencies: + types-ramda: 0.30.1 + + '@types/range-parser@1.2.7': {} + + '@types/react-dom@18.3.1': + dependencies: + '@types/react': 18.3.12 + + '@types/react-google-recaptcha@2.1.9': + dependencies: + '@types/react': 18.3.12 + + '@types/react-scroll@1.8.10': + dependencies: + '@types/react': 18.3.12 + + '@types/react-transition-group@4.4.12(@types/react@18.3.12)': + dependencies: + '@types/react': 18.3.12 + + '@types/react@18.3.12': + dependencies: + '@types/prop-types': 15.7.14 + csstype: 3.1.3 + + '@types/semver@7.7.0': {} + + '@types/send@0.17.4': + dependencies: + '@types/mime': 1.3.5 + '@types/node': 20.16.7 + + '@types/serve-static@1.15.7': + dependencies: + '@types/http-errors': 2.0.4 + '@types/node': 20.16.7 + '@types/send': 0.17.4 + + '@types/shimmer@1.2.0': {} + + '@types/stack-utils@2.0.3': {} + + '@types/swagger-ui-react@5.18.0': + dependencies: + '@types/react': 18.3.12 + + '@types/tedious@4.0.14': + dependencies: + '@types/node': 20.16.7 + + '@types/tern@0.23.9': + dependencies: + '@types/estree': 1.0.8 + + '@types/tough-cookie@4.0.5': {} + + '@types/trusted-types@2.0.7': {} + + '@types/unist@2.0.11': {} + + '@types/use-sync-external-store@0.0.6': {} + + '@types/ws@8.18.1': + dependencies: + '@types/node': 20.16.7 + + '@types/yargs-parser@21.0.3': {} + + '@types/yargs@17.0.33': + dependencies: + '@types/yargs-parser': 21.0.3 + + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/utils': 5.62.0(eslint@9.14.0)(typescript@5.4.2) + debug: 4.4.1 + eslint: 9.14.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare-lite: 1.4.0 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@8.33.1(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.33.1(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/utils': 5.62.0(eslint@9.14.0)(typescript@5.4.2) + debug: 4.4.1 + eslint: 9.14.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare-lite: 1.4.0 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@8.14.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 8.14.0 + '@typescript-eslint/type-utils': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/utils': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 8.14.0 + eslint: 9.14.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.4.3(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.14.0 + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 8.14.0 + debug: 4.4.1 + eslint: 9.14.0 + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.33.1(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.33.1 + '@typescript-eslint/types': 8.33.1 + '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 8.33.1 + debug: 4.4.1 + eslint: 9.14.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.33.1(typescript@5.4.2)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.4.2) + '@typescript-eslint/types': 8.33.1 + debug: 4.4.1 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@5.62.0': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + + '@typescript-eslint/scope-manager@8.14.0': + dependencies: + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/visitor-keys': 8.14.0 + + '@typescript-eslint/scope-manager@8.33.1': + dependencies: + '@typescript-eslint/types': 8.33.1 + '@typescript-eslint/visitor-keys': 8.33.1 + + '@typescript-eslint/tsconfig-utils@8.33.1(typescript@5.4.2)': + dependencies: + typescript: 5.4.2 + + '@typescript-eslint/type-utils@5.62.0(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2) + '@typescript-eslint/utils': 5.62.0(eslint@9.14.0)(typescript@5.4.2) + debug: 4.4.1 + eslint: 9.14.0 + tsutils: 3.21.0(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/type-utils@8.14.0(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.4.2) + '@typescript-eslint/utils': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + debug: 4.4.1 + ts-api-utils: 1.4.3(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - eslint + - supports-color + + '@typescript-eslint/types@5.62.0': {} + + '@typescript-eslint/types@8.14.0': {} + + '@typescript-eslint/types@8.33.1': {} + + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.2)': + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.4.1 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.7.2 + tsutils: 3.21.0(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@8.14.0(typescript@5.4.2)': + dependencies: + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/visitor-keys': 8.14.0 + debug: 4.4.1 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@8.33.1(typescript@5.4.2)': + dependencies: + '@typescript-eslint/project-service': 8.33.1(typescript@5.4.2) + '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.4.2) + '@typescript-eslint/types': 8.33.1 + '@typescript-eslint/visitor-keys': 8.33.1 + debug: 4.4.1 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@5.62.0(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.14.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.7.0 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2) + eslint: 9.14.0 + eslint-scope: 5.1.1 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@8.14.0(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.14.0) + '@typescript-eslint/scope-manager': 8.14.0 + '@typescript-eslint/types': 8.14.0 + '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.4.2) + eslint: 9.14.0 + transitivePeerDependencies: + - supports-color + - typescript + + '@typescript-eslint/utils@8.33.1(eslint@9.14.0)(typescript@5.4.2)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.14.0) + '@typescript-eslint/scope-manager': 8.33.1 + '@typescript-eslint/types': 8.33.1 + '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.4.2) + eslint: 9.14.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@5.62.0': + dependencies: + '@typescript-eslint/types': 5.62.0 + eslint-visitor-keys: 3.4.3 + + '@typescript-eslint/visitor-keys@8.14.0': + dependencies: + '@typescript-eslint/types': 8.14.0 + eslint-visitor-keys: 3.4.3 + + '@typescript-eslint/visitor-keys@8.33.1': + dependencies: + '@typescript-eslint/types': 8.33.1 + eslint-visitor-keys: 4.2.0 + + '@uidotdev/usehooks@2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@unrs/resolver-binding-darwin-arm64@1.7.11': + optional: true + + '@unrs/resolver-binding-darwin-x64@1.7.11': + optional: true + + '@unrs/resolver-binding-freebsd-x64@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-arm-musleabihf@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-arm64-gnu@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-arm64-musl@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-ppc64-gnu@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-riscv64-gnu@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-riscv64-musl@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-s390x-gnu@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-x64-gnu@1.7.11': + optional: true + + '@unrs/resolver-binding-linux-x64-musl@1.7.11': + optional: true + + '@unrs/resolver-binding-wasm32-wasi@1.7.11': + dependencies: + '@napi-rs/wasm-runtime': 0.2.10 + optional: true + + '@unrs/resolver-binding-win32-arm64-msvc@1.7.11': + optional: true + + '@unrs/resolver-binding-win32-ia32-msvc@1.7.11': + optional: true + + '@unrs/resolver-binding-win32-x64-msvc@1.7.11': + optional: true + + '@visulima/boxen@1.0.31': {} + + '@vitejs/plugin-react@4.5.1(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0))': + dependencies: + '@babel/core': 7.27.4 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.4) + '@rolldown/pluginutils': 1.0.0-beta.9 + '@types/babel__core': 7.20.5 + react-refresh: 0.17.0 + vite: 5.4.19(@types/node@20.16.7)(terser@5.41.0) + transitivePeerDependencies: + - supports-color + + '@wagmi/connectors@5.7.11(@types/react@18.3.12)(@wagmi/core@2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53)': + dependencies: + '@coinbase/wallet-sdk': 4.3.0 + '@metamask/sdk': 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.5(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)) + '@walletconnect/ethereum-provider': 2.19.1(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - supports-color + - uploadthing + - utf-8-validate + - zod + + '@wagmi/connectors@5.8.4(@types/react@18.3.12)(@wagmi/core@2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53)': + dependencies: + '@coinbase/wallet-sdk': 4.3.0 + '@metamask/sdk': 0.32.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@safe-global/safe-apps-provider': 0.18.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)) + '@walletconnect/ethereum-provider': 2.21.1(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + cbw-sdk: '@coinbase/wallet-sdk@3.9.3' + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - supports-color + - uploadthing + - utf-8-validate + - zod + optional: true + + '@wagmi/core@2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))': + dependencies: + eventemitter3: 5.0.1 + mipd: 0.0.7(typescript@5.4.2) + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + zustand: 5.0.0(@types/react@18.3.12)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1)) + optionalDependencies: + '@tanstack/query-core': 5.55.4 + typescript: 5.4.2 + transitivePeerDependencies: + - '@types/react' + - immer + - react + - use-sync-external-store + + '@walletconnect/core@2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1 + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/core@2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.21.0 + '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/core@2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.21.1 + '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/window-getters': 1.0.1 + es-toolkit: 1.33.0 + events: 3.3.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/environment@1.0.1': + dependencies: + tslib: 1.14.1 + + '@walletconnect/ethereum-provider@2.19.1(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/modal': 2.7.0(@types/react@18.3.12)(react@18.3.1) + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/types': 2.19.1 + '@walletconnect/universal-provider': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/ethereum-provider@2.21.1(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@reown/appkit': 1.7.8(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/types': 2.21.1 + '@walletconnect/universal-provider': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - react + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/events@1.0.1': + dependencies: + keyvaluestorage-interface: 1.0.0 + tslib: 1.14.1 + + '@walletconnect/heartbeat@1.2.2': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/time': 1.0.2 + events: 3.3.0 + + '@walletconnect/jsonrpc-http-connection@1.0.8': + dependencies: + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + cross-fetch: 3.2.0 + events: 3.3.0 + transitivePeerDependencies: + - encoding + + '@walletconnect/jsonrpc-provider@1.0.14': + dependencies: + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 + + '@walletconnect/jsonrpc-types@1.0.4': + dependencies: + events: 3.3.0 + keyvaluestorage-interface: 1.0.0 + + '@walletconnect/jsonrpc-utils@1.0.8': + dependencies: + '@walletconnect/environment': 1.0.1 + '@walletconnect/jsonrpc-types': 1.0.4 + tslib: 1.14.1 + + '@walletconnect/jsonrpc-ws-connection@1.0.16(bufferutil@4.0.9)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 + ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@walletconnect/keyvaluestorage@1.1.1': + dependencies: + '@walletconnect/safe-json': 1.0.2 + idb-keyval: 6.2.2 + unstorage: 1.16.0(idb-keyval@6.2.2) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing + + '@walletconnect/logger@2.1.2': + dependencies: + '@walletconnect/safe-json': 1.0.2 + pino: 7.11.0 + + '@walletconnect/modal-core@2.7.0(@types/react@18.3.12)(react@18.3.1)': + dependencies: + valtio: 1.11.2(@types/react@18.3.12)(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - react + + '@walletconnect/modal-ui@2.7.0(@types/react@18.3.12)(react@18.3.1)': + dependencies: + '@walletconnect/modal-core': 2.7.0(@types/react@18.3.12)(react@18.3.1) + lit: 2.8.0 + motion: 10.16.2 + qrcode: 1.5.3 + transitivePeerDependencies: + - '@types/react' + - react + + '@walletconnect/modal@2.7.0(@types/react@18.3.12)(react@18.3.1)': + dependencies: + '@walletconnect/modal-core': 2.7.0(@types/react@18.3.12)(react@18.3.1) + '@walletconnect/modal-ui': 2.7.0(@types/react@18.3.12)(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - react + + '@walletconnect/relay-api@1.0.11': + dependencies: + '@walletconnect/jsonrpc-types': 1.0.4 + + '@walletconnect/relay-auth@1.1.0': + dependencies: + '@noble/curves': 1.8.0 + '@noble/hashes': 1.7.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + uint8arrays: 3.1.0 + + '@walletconnect/safe-json@1.0.2': + dependencies: + tslib: 1.14.1 + + '@walletconnect/sign-client@2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/core': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1 + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/sign-client@2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/core': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.21.0 + '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/sign-client@2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/core': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.21.1 + '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/time@1.0.2': + dependencies: + tslib: 1.14.1 + + '@walletconnect/types@2.19.1': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing + + '@walletconnect/types@2.21.0': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing + optional: true + + '@walletconnect/types@2.21.1': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - db0 + - ioredis + - uploadthing + optional: true + + '@walletconnect/universal-provider@2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/types': 2.19.1 + '@walletconnect/utils': 2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + es-toolkit: 1.33.0 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/universal-provider@2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/types': 2.21.0 + '@walletconnect/utils': 2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + es-toolkit: 1.33.0 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/universal-provider@2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + '@walletconnect/types': 2.21.1 + '@walletconnect/utils': 2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + es-toolkit: 1.33.0 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/utils@2.19.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@noble/ciphers': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.19.1 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + bs58: 6.0.0 + detect-browser: 5.3.0 + elliptic: 6.6.1 + query-string: 7.1.3 + uint8arrays: 3.1.0 + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + + '@walletconnect/utils@2.21.0(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@noble/ciphers': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.21.0 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + bs58: 6.0.0 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.0 + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/utils@2.21.1(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)': + dependencies: + '@noble/ciphers': 1.2.1 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.1.0 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.21.1 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + bs58: 6.0.0 + detect-browser: 5.3.0 + query-string: 7.1.3 + uint8arrays: 3.1.0 + viem: 2.23.2(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - ioredis + - typescript + - uploadthing + - utf-8-validate + - zod + optional: true + + '@walletconnect/window-getters@1.0.1': + dependencies: + tslib: 1.14.1 + + '@walletconnect/window-metadata@1.0.1': + dependencies: + '@walletconnect/window-getters': 1.0.1 + tslib: 1.14.1 + + '@webassemblyjs/ast@1.14.1': + dependencies: + '@webassemblyjs/helper-numbers': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + + '@webassemblyjs/floating-point-hex-parser@1.13.2': {} + + '@webassemblyjs/helper-api-error@1.13.2': {} + + '@webassemblyjs/helper-buffer@1.14.1': {} + + '@webassemblyjs/helper-numbers@1.13.2': + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.13.2 + '@webassemblyjs/helper-api-error': 1.13.2 + '@xtuc/long': 4.2.2 + + '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} + + '@webassemblyjs/helper-wasm-section@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/wasm-gen': 1.14.1 + + '@webassemblyjs/ieee754@1.13.2': + dependencies: + '@xtuc/ieee754': 1.2.0 + + '@webassemblyjs/leb128@1.13.2': + dependencies: + '@xtuc/long': 4.2.2 + + '@webassemblyjs/utf8@1.13.2': {} + + '@webassemblyjs/wasm-edit@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/helper-wasm-section': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-opt': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + '@webassemblyjs/wast-printer': 1.14.1 + + '@webassemblyjs/wasm-gen@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 + + '@webassemblyjs/wasm-opt@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + + '@webassemblyjs/wasm-parser@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-api-error': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 + + '@webassemblyjs/wast-printer@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@xtuc/long': 4.2.2 + + '@xstate/fsm@1.4.0': {} + + '@xstate/fsm@1.6.5': {} + + '@xtuc/ieee754@1.2.0': {} + + '@xtuc/long@4.2.2': {} + + '@yarnpkg/lockfile@1.1.0': {} + + '@zag-js/accordion@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/anatomy@1.7.0': {} + + '@zag-js/aria-hidden@1.7.0': {} + + '@zag-js/auto-resize@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + + '@zag-js/avatar@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/carousel@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/scroll-snap': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/checkbox@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/focus-visible': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/clipboard@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/collapsible@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/collection@1.7.0': + dependencies: + '@zag-js/utils': 1.7.0 + + '@zag-js/color-picker@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/color-utils': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/color-utils@1.7.0': + dependencies: + '@zag-js/utils': 1.7.0 + + '@zag-js/combobox@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/aria-hidden': 1.7.0 + '@zag-js/collection': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/core@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/date-picker@1.7.0(@internationalized/date@3.7.0)': + dependencies: + '@internationalized/date': 3.7.0 + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/date-utils': 1.7.0(@internationalized/date@3.7.0) + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/live-region': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/date-utils@1.7.0(@internationalized/date@3.7.0)': + dependencies: + '@internationalized/date': 3.7.0 + + '@zag-js/dialog@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/aria-hidden': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/focus-trap': 1.7.0 + '@zag-js/remove-scroll': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/dismissable@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + '@zag-js/interact-outside': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/dom-query@1.7.0': + dependencies: + '@zag-js/types': 1.7.0 + + '@zag-js/editable@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/interact-outside': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/element-rect@1.7.0': {} + + '@zag-js/element-size@1.7.0': {} + + '@zag-js/file-upload@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/file-utils': 1.7.0 + '@zag-js/i18n-utils': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/file-utils@1.7.0': + dependencies: + '@zag-js/i18n-utils': 1.7.0 + + '@zag-js/focus-trap@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + + '@zag-js/focus-visible@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + + '@zag-js/highlight-word@1.7.0': {} + + '@zag-js/hover-card@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/i18n-utils@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + + '@zag-js/interact-outside@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/live-region@1.7.0': {} + + '@zag-js/menu@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/rect-utils': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/number-input@1.7.0': + dependencies: + '@internationalized/number': 3.6.0 + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/pagination@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/pin-input@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/popover@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/aria-hidden': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/focus-trap': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/remove-scroll': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/popper@1.7.0': + dependencies: + '@floating-ui/dom': 1.6.13 + '@zag-js/dom-query': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/presence@1.7.0': + dependencies: + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + + '@zag-js/progress@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/qr-code@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + proxy-memoize: 3.0.1 + uqr: 0.1.2 + + '@zag-js/radio-group@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/element-rect': 1.7.0 + '@zag-js/focus-visible': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/rating-group@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/react@1.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@zag-js/core': 1.7.0 + '@zag-js/store': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@zag-js/rect-utils@1.7.0': {} + + '@zag-js/remove-scroll@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + + '@zag-js/scroll-snap@1.7.0': + dependencies: + '@zag-js/dom-query': 1.7.0 + + '@zag-js/select@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/collection': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/signature-pad@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + perfect-freehand: 1.2.2 + + '@zag-js/slider@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/element-size': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/splitter@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/steps@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/store@1.7.0': + dependencies: + proxy-compare: 3.0.1 + + '@zag-js/switch@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/focus-visible': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/tabs@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/element-rect': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/tags-input@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/auto-resize': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/interact-outside': 1.7.0 + '@zag-js/live-region': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/time-picker@1.7.0(@internationalized/date@3.7.0)': + dependencies: + '@internationalized/date': 3.7.0 + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/timer@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/toast@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/toggle-group@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/toggle@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/tooltip@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/focus-visible': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/store': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/tour@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dismissable': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/focus-trap': 1.7.0 + '@zag-js/interact-outside': 1.7.0 + '@zag-js/popper': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/tree-view@1.7.0': + dependencies: + '@zag-js/anatomy': 1.7.0 + '@zag-js/collection': 1.7.0 + '@zag-js/core': 1.7.0 + '@zag-js/dom-query': 1.7.0 + '@zag-js/types': 1.7.0 + '@zag-js/utils': 1.7.0 + + '@zag-js/types@1.7.0': + dependencies: + csstype: 3.1.3 + + '@zag-js/utils@1.7.0': {} + + '@zip.js/zip.js@2.7.62': {} + + abab@2.0.6: {} + + abitype@1.0.8(typescript@5.4.2)(zod@3.22.4): + optionalDependencies: + typescript: 5.4.2 + zod: 3.22.4 + + abitype@1.0.8(typescript@5.4.2)(zod@3.25.53): + optionalDependencies: + typescript: 5.4.2 + zod: 3.25.53 + + abort-controller@3.0.0: + dependencies: + event-target-shim: 5.0.1 + + abort-error@1.0.1: {} + + abortcontroller-polyfill@1.7.8: {} + + acorn-globals@7.0.1: + dependencies: + acorn: 8.14.1 + acorn-walk: 8.3.4 + + acorn-import-assertions@1.9.0(acorn@8.14.1): + dependencies: + acorn: 8.14.1 + + acorn-import-attributes@1.9.5(acorn@8.14.1): + dependencies: + acorn: 8.14.1 + + acorn-jsx@5.3.2(acorn@8.14.1): + dependencies: + acorn: 8.14.1 + + acorn-walk@8.3.4: + dependencies: + acorn: 8.14.1 + + acorn@8.14.1: {} + + agent-base@6.0.2: + dependencies: + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + agent-base@7.1.3: {} + + airtable@0.12.2: + dependencies: + '@types/node': 14.18.63 + abort-controller: 3.0.0 + abortcontroller-polyfill: 1.7.8 + lodash: 4.17.21 + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + + ajv-formats@2.1.1(ajv@8.17.1): + optionalDependencies: + ajv: 8.17.1 + + ajv-keywords@5.1.0(ajv@8.17.1): + dependencies: + ajv: 8.17.1 + fast-deep-equal: 3.1.3 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.6 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + ansi-color@0.2.1: {} + + ansi-escapes@4.3.2: + dependencies: + type-fest: 0.21.3 + + ansi-escapes@7.0.0: + dependencies: + environment: 1.1.0 + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@5.2.0: {} + + ansi-styles@6.2.1: {} + + any-promise@1.3.0: {} + + any-signal@4.1.1: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + apg-lite@1.0.5: {} + + arg@4.1.3: {} + + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + + argparse@2.0.1: {} + + aria-query@5.1.3: + dependencies: + deep-equal: 2.2.3 + + aria-query@5.3.2: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + + array-includes@3.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + is-string: 1.1.1 + math-intrinsics: 1.1.0 + + array-union@2.1.0: {} + + array.prototype.findlast@1.2.5: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + + array.prototype.findlastindex@1.2.6: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-shim-unscopables: 1.1.0 + + array.prototype.flatmap@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-shim-unscopables: 1.1.0 + + array.prototype.tosorted@1.1.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-shim-unscopables: 1.1.0 + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + + assert@2.1.0: + dependencies: + call-bind: 1.0.8 + is-nan: 1.3.2 + object-is: 1.1.6 + object.assign: 4.1.7 + util: 0.12.5 + + ast-types-flow@0.0.8: {} + + async-function@1.0.0: {} + + async-mutex@0.2.6: + dependencies: + tslib: 2.8.1 + + async@3.2.6: {} + + asynckit@0.4.0: {} + + at-least-node@1.0.0: {} + + atomic-sleep@1.0.0: {} + + autolinker@3.16.2: + dependencies: + tslib: 2.8.1 + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.1.0 + + axe-core@4.10.3: {} + + axios@1.9.0: + dependencies: + follow-redirects: 1.15.9 + form-data: 4.0.3 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + axobject-query@4.1.0: {} + + babel-jest@29.7.0(@babel/core@7.27.4): + dependencies: + '@babel/core': 7.27.4 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.6.3(@babel/core@7.27.4) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-istanbul@6.1.1: + dependencies: + '@babel/helper-plugin-utils': 7.27.1 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-jest-hoist@29.6.3: + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.27.6 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.7 + + babel-plugin-macros@3.1.0: + dependencies: + '@babel/runtime': 7.27.6 + cosmiconfig: 7.1.0 + resolve: 1.22.10 + + babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.27.4): + dependencies: + '@babel/compat-data': 7.27.5 + '@babel/core': 7.27.4 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.4): + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4) + core-js-compat: 3.42.0 + transitivePeerDependencies: + - supports-color + + babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.27.4): + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.27.4) + transitivePeerDependencies: + - supports-color + + babel-preset-current-node-syntax@1.1.0(@babel/core@7.27.4): + dependencies: + '@babel/core': 7.27.4 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.4) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.27.4) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.4) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.4) + '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.27.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.4) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.4) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.4) + + babel-preset-jest@29.6.3(@babel/core@7.27.4): + dependencies: + '@babel/core': 7.27.4 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) + + balanced-match@1.0.2: {} + + base-x@5.0.1: {} + + base64-arraybuffer@1.0.2: {} + + base64-js@1.5.1: {} + + big.js@6.2.2: {} + + bignumber.js@9.3.0: {} + + binary-extensions@2.3.0: {} + + bintrees@1.0.2: {} + + bl@5.1.0: + dependencies: + buffer: 6.0.3 + inherits: 2.0.4 + readable-stream: 3.6.2 + + blo@1.2.0: {} + + blockstore-core@5.0.4: + dependencies: + '@libp2p/logger': 5.1.19 + interface-blockstore: 5.3.2 + interface-store: 6.0.3 + it-filter: 3.1.4 + it-merge: 3.0.12 + multiformats: 13.3.6 + + bn.js@4.12.2: {} + + bn.js@5.2.2: {} + + boolbase@1.0.0: {} + + bowser@2.11.0: {} + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + brorand@1.1.0: {} + + browser-readablestream-to-it@2.0.10: {} + + browserslist@4.25.0: + dependencies: + caniuse-lite: 1.0.30001721 + electron-to-chromium: 1.5.165 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.25.0) + + bs-logger@0.2.6: + dependencies: + fast-json-stable-stringify: 2.1.0 + + bs58@6.0.0: + dependencies: + base-x: 5.0.1 + + bser@2.1.1: + dependencies: + node-int64: 0.4.0 + + buffer-from@1.1.2: {} + + buffer@6.0.3: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + bufferutil@4.0.9: + dependencies: + node-gyp-build: 4.8.4 + + bufrw@1.4.0: + dependencies: + ansi-color: 0.2.1 + error: 7.0.2 + hexer: 1.5.0 + xtend: 4.0.2 + + bundle-n-require@1.1.2: + dependencies: + esbuild: 0.25.5 + node-eval: 2.0.0 + + busboy@1.6.0: + dependencies: + streamsearch: 1.1.0 + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + callsites@3.1.0: {} + + camelcase@5.3.1: {} + + camelcase@6.3.0: {} + + caniuse-lite@1.0.30001721: {} + + cborg@4.2.11: {} + + chakra-react-select@4.10.1(@chakra-ui/react@3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@chakra-ui/react': 3.15.0(@emotion/react@11.14.0(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@emotion/react': 11.14.0(@types/react@18.3.12)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-select: 5.8.3(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - supports-color + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.4.1: {} + + change-case@5.4.4: {} + + char-regex@1.0.2: {} + + character-entities-legacy@1.1.4: {} + + character-entities@1.2.4: {} + + character-reference-invalid@1.1.4: {} + + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + chokidar@4.0.3: + dependencies: + readdirp: 4.1.2 + + chrome-trace-event@1.0.4: {} + + ci-info@3.9.0: {} + + cjs-module-lexer@1.4.3: {} + + classnames@2.5.1: {} + + cli-cursor@5.0.0: + dependencies: + restore-cursor: 5.1.0 + + cli-table@0.3.11: + dependencies: + colors: 1.0.3 + + cli-truncate@4.0.0: + dependencies: + slice-ansi: 5.0.0 + string-width: 7.2.0 + + client-only@0.0.1: {} + + cliui@6.0.0: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + clone-regexp@3.0.0: + dependencies: + is-regexp: 3.1.0 + + clsx@1.2.1: {} + + clsx@2.1.1: {} + + co@4.6.0: {} + + codemirror-graphql@2.2.2(@codemirror/language@6.0.0)(codemirror@5.65.19)(graphql@16.11.0): + dependencies: + '@codemirror/language': 6.0.0 + '@types/codemirror': 0.0.90 + codemirror: 5.65.19 + graphql: 16.11.0 + graphql-language-service: 5.4.0(graphql@16.11.0) + + codemirror@5.65.19: {} + + collect-v8-coverage@1.0.2: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + color-string@1.9.1: + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + optional: true + + color@4.2.3: + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + optional: true + + colorette@2.0.20: {} + + colorjs.io@0.5.2: {} + + colors@1.0.3: {} + + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + + comma-separated-tokens@1.0.8: {} + + commander@12.1.0: {} + + commander@14.0.0: {} + + commander@2.20.3: {} + + commander@4.1.1: {} + + commander@7.2.0: {} + + comment-parser@1.4.1: {} + + common-tags@1.8.2: {} + + component-emitter@2.0.0: {} + + concat-map@0.0.1: {} + + console-polyfill@0.3.0: {} + + convert-hrtime@5.0.0: {} + + convert-source-map@1.9.0: {} + + convert-source-map@2.0.0: {} + + cookie-es@1.2.2: {} + + copy-to-clipboard@3.3.3: + dependencies: + toggle-selection: 1.0.6 + + core-js-compat@3.42.0: + dependencies: + browserslist: 4.25.0 + + core-js-pure@3.42.0: {} + + core-util-is@1.0.3: {} + + cosmiconfig@7.1.0: + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.1 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + + crc-32@1.2.2: {} + + create-jest@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + create-require@1.1.1: {} + + crelt@1.0.6: {} + + cross-fetch@3.2.0: + dependencies: + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + + cross-fetch@4.1.0: + dependencies: + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + crossws@0.3.5: + dependencies: + uncrypto: 0.1.3 + + crypto-js@4.2.0: {} + + css-loader@6.11.0(webpack@5.99.9): + dependencies: + icss-utils: 5.1.0(postcss@8.5.4) + postcss: 8.5.4 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.4) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.4) + postcss-modules-scope: 3.2.1(postcss@8.5.4) + postcss-modules-values: 4.0.0(postcss@8.5.4) + postcss-value-parser: 4.2.0 + semver: 7.7.2 + optionalDependencies: + webpack: 5.99.9 + + css-select@4.3.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + + css-select@5.1.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 + + css-tree@1.1.3: + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-tree@2.2.1: + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.2.1 + + css-tree@2.3.1: + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.2.1 + + css-what@6.1.0: {} + + css.escape@1.5.1: {} + + cssesc@3.0.0: {} + + cssfilter@0.0.10: {} + + csso@4.2.0: + dependencies: + css-tree: 1.1.3 + + csso@5.0.5: + dependencies: + css-tree: 2.2.1 + + cssom@0.3.8: {} + + cssom@0.5.0: {} + + cssstyle@2.3.0: + dependencies: + cssom: 0.3.8 + + csstype@3.1.3: {} + + d3-array@3.2.4: + dependencies: + internmap: 2.0.3 + + d3-axis@3.0.0: {} + + d3-brush@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) + + d3-chord@3.0.1: + dependencies: + d3-path: 3.1.0 + + d3-color@3.1.0: {} + + d3-contour@4.0.2: + dependencies: + d3-array: 3.2.4 + + d3-delaunay@6.0.4: + dependencies: + delaunator: 5.0.1 + + d3-dispatch@3.0.1: {} + + d3-drag@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-selection: 3.0.0 + + d3-dsv@3.0.1: + dependencies: + commander: 7.2.0 + iconv-lite: 0.6.3 + rw: 1.3.3 + + d3-ease@3.0.1: {} + + d3-fetch@3.0.1: + dependencies: + d3-dsv: 3.0.1 + + d3-force@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-quadtree: 3.0.1 + d3-timer: 3.0.1 + + d3-format@3.1.0: {} + + d3-geo@3.1.1: + dependencies: + d3-array: 3.2.4 + + d3-hierarchy@3.1.2: {} + + d3-interpolate@3.0.1: + dependencies: + d3-color: 3.1.0 + + d3-path@3.1.0: {} + + d3-polygon@3.0.1: {} + + d3-quadtree@3.0.1: {} + + d3-random@3.0.1: {} + + d3-scale-chromatic@3.1.0: + dependencies: + d3-color: 3.1.0 + d3-interpolate: 3.0.1 + + d3-scale@4.0.2: + dependencies: + d3-array: 3.2.4 + d3-format: 3.1.0 + d3-interpolate: 3.0.1 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + + d3-selection@3.0.0: {} + + d3-shape@3.2.0: + dependencies: + d3-path: 3.1.0 + + d3-time-format@4.1.0: + dependencies: + d3-time: 3.1.0 + + d3-time@3.1.0: + dependencies: + d3-array: 3.2.4 + + d3-timer@3.0.1: {} + + d3-transition@3.0.1(d3-selection@3.0.0): + dependencies: + d3-color: 3.1.0 + d3-dispatch: 3.0.1 + d3-ease: 3.0.1 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-timer: 3.0.1 + + d3-zoom@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) + + d3@7.9.0: + dependencies: + d3-array: 3.2.4 + d3-axis: 3.0.0 + d3-brush: 3.0.0 + d3-chord: 3.0.1 + d3-color: 3.1.0 + d3-contour: 4.0.2 + d3-delaunay: 6.0.4 + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-dsv: 3.0.1 + d3-ease: 3.0.1 + d3-fetch: 3.0.1 + d3-force: 3.0.0 + d3-format: 3.1.0 + d3-geo: 3.1.1 + d3-hierarchy: 3.1.2 + d3-interpolate: 3.0.1 + d3-path: 3.1.0 + d3-polygon: 3.0.1 + d3-quadtree: 3.0.1 + d3-random: 3.0.1 + d3-scale: 4.0.2 + d3-scale-chromatic: 3.1.0 + d3-selection: 3.0.0 + d3-shape: 3.2.0 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + d3-timer: 3.0.1 + d3-transition: 3.0.1(d3-selection@3.0.0) + d3-zoom: 3.0.0 + + damerau-levenshtein@1.0.8: {} + + dappscout-iframe@0.2.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + + data-uri-to-buffer@4.0.1: {} + + data-urls@3.0.2: + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + datastore-core@10.0.4: + dependencies: + '@libp2p/logger': 5.1.19 + interface-datastore: 8.3.2 + interface-store: 6.0.3 + it-drain: 3.0.10 + it-filter: 3.1.4 + it-map: 3.1.4 + it-merge: 3.0.12 + it-pipe: 3.0.1 + it-sort: 3.0.9 + it-take: 3.0.9 + + date-fns@2.30.0: + dependencies: + '@babel/runtime': 7.27.6 + + dateformat@4.6.3: {} + + dayjs@1.11.13: {} + + debounce-promise@3.1.2: {} + + debounce@1.2.1: {} + + debug@3.2.7: + dependencies: + ms: 2.1.3 + + debug@4.3.7: + dependencies: + ms: 2.1.3 + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + decache@3.1.0: + dependencies: + find: 0.2.9 + optional: true + + decamelize@1.2.0: {} + + decimal.js@10.5.0: {} + + decode-uri-component@0.2.2: {} + + dedent@1.6.0(babel-plugin-macros@3.1.0): + optionalDependencies: + babel-plugin-macros: 3.1.0 + + deep-equal@2.2.3: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + es-get-iterator: 1.1.3 + get-intrinsic: 1.3.0 + is-arguments: 1.2.0 + is-array-buffer: 3.0.5 + is-date-object: 1.1.0 + is-regex: 1.2.1 + is-shared-array-buffer: 1.0.4 + isarray: 2.0.5 + object-is: 1.1.6 + object-keys: 1.1.1 + object.assign: 4.1.7 + regexp.prototype.flags: 1.5.4 + side-channel: 1.1.0 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + deep-extend@0.6.0: {} + + deep-is@0.1.4: {} + + deepmerge@4.3.1: {} + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + defu@6.1.4: {} + + delaunator@5.0.1: + dependencies: + robust-predicates: 3.0.2 + + delay@6.0.0: {} + + delayed-stream@1.0.0: {} + + derive-valtio@0.1.0(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1)): + dependencies: + valtio: 1.13.2(@types/react@18.3.12)(react@18.3.1) + + destr@2.0.5: {} + + detect-browser@5.3.0: {} + + detect-libc@2.0.4: + optional: true + + detect-newline@3.1.0: {} + + detect-node-es@1.1.0: {} + + diff-sequences@29.6.3: {} + + diff@4.0.2: {} + + dijkstrajs@1.0.3: {} + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + dns-packet@5.6.1: + dependencies: + '@leichtgewicht/ip-codec': 2.0.5 + + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 + + dom-accessibility-api@0.5.16: {} + + dom-helpers@5.2.1: + dependencies: + '@babel/runtime': 7.27.6 + csstype: 3.1.3 + + dom-mutator@0.6.0: {} + + dom-serializer@1.4.1: + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + + dom-to-image@2.6.0: {} + + domelementtype@2.3.0: {} + + domexception@4.0.0: + dependencies: + webidl-conversions: 7.0.0 + + domhandler@4.3.1: + dependencies: + domelementtype: 2.3.0 + + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + + dompurify@3.2.4: + optionalDependencies: + '@types/trusted-types': 2.0.7 + + domutils@2.8.0: + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + + dotenv-cli@6.0.0: + dependencies: + cross-spawn: 7.0.6 + dotenv: 16.5.0 + dotenv-expand: 8.0.3 + minimist: 1.2.8 + + dotenv-expand@8.0.3: {} + + dotenv@16.5.0: {} + + drange@1.1.1: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + duplexer@0.1.2: {} + + duplexify@4.1.3: + dependencies: + end-of-stream: 1.4.4 + inherits: 2.0.4 + readable-stream: 3.6.2 + stream-shift: 1.0.3 + + eastasianwidth@0.2.0: {} + + eciesjs@0.4.15: + dependencies: + '@ecies/ciphers': 0.2.3(@noble/ciphers@1.3.0) + '@noble/ciphers': 1.3.0 + '@noble/curves': 1.9.2 + '@noble/hashes': 1.8.0 + + ejs@3.1.10: + dependencies: + jake: 10.9.2 + + electron-to-chromium@1.5.165: {} + + elliptic@6.6.1: + dependencies: + bn.js: 4.12.2 + brorand: 1.1.0 + hash.js: 1.1.7 + hmac-drbg: 1.0.1 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + + emittery@0.13.1: {} + + emoji-regex@10.4.0: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + encode-utf8@1.0.3: {} + + end-of-stream@1.4.4: + dependencies: + once: 1.4.0 + + engine.io-client@6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.7 + engine.io-parser: 5.2.3 + ws: 8.17.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + xmlhttprequest-ssl: 2.1.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + engine.io-parser@5.2.3: {} + + enhanced-resolve@5.18.1: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.2 + + entities@2.1.0: {} + + entities@2.2.0: {} + + entities@4.5.0: {} + + entities@6.0.0: {} + + environment@1.1.0: {} + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + error-stack-parser@2.1.4: + dependencies: + stackframe: 1.3.4 + + error@7.0.2: + dependencies: + string-template: 0.2.1 + xtend: 4.0.2 + + es-abstract@1.24.0: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-get-iterator@1.1.3: + dependencies: + call-bind: 1.0.8 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + is-arguments: 1.2.0 + is-map: 2.0.3 + is-set: 2.0.3 + is-string: 1.1.1 + isarray: 2.0.5 + stop-iteration-iterator: 1.1.0 + + es-iterator-helpers@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-set-tostringtag: 2.1.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + iterator.prototype: 1.1.5 + safe-array-concat: 1.1.3 + + es-module-lexer@1.7.0: {} + + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-shim-unscopables@1.1.0: + dependencies: + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + es-toolkit@1.31.0: {} + + es-toolkit@1.33.0: {} + + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 + + esbuild@0.25.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.5 + '@esbuild/android-arm': 0.25.5 + '@esbuild/android-arm64': 0.25.5 + '@esbuild/android-x64': 0.25.5 + '@esbuild/darwin-arm64': 0.25.5 + '@esbuild/darwin-x64': 0.25.5 + '@esbuild/freebsd-arm64': 0.25.5 + '@esbuild/freebsd-x64': 0.25.5 + '@esbuild/linux-arm': 0.25.5 + '@esbuild/linux-arm64': 0.25.5 + '@esbuild/linux-ia32': 0.25.5 + '@esbuild/linux-loong64': 0.25.5 + '@esbuild/linux-mips64el': 0.25.5 + '@esbuild/linux-ppc64': 0.25.5 + '@esbuild/linux-riscv64': 0.25.5 + '@esbuild/linux-s390x': 0.25.5 + '@esbuild/linux-x64': 0.25.5 + '@esbuild/netbsd-arm64': 0.25.5 + '@esbuild/netbsd-x64': 0.25.5 + '@esbuild/openbsd-arm64': 0.25.5 + '@esbuild/openbsd-x64': 0.25.5 + '@esbuild/sunos-x64': 0.25.5 + '@esbuild/win32-arm64': 0.25.5 + '@esbuild/win32-ia32': 0.25.5 + '@esbuild/win32-x64': 0.25.5 + + escalade@3.2.0: {} + + escape-string-regexp@2.0.0: {} + + escape-string-regexp@4.0.0: {} + + escodegen@2.1.0: + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + + eslint-config-next@15.0.3(eslint@9.14.0)(typescript@5.4.2): + dependencies: + '@next/eslint-plugin-next': 15.0.3 + '@rushstack/eslint-patch': 1.11.0 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@8.33.1(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/parser': 8.33.1(eslint@9.14.0)(typescript@5.4.2) + eslint: 9.14.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0))(eslint@9.14.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.33.1(eslint@9.14.0)(typescript@5.4.2))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0))(eslint@9.14.0))(eslint@9.14.0) + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.14.0) + eslint-plugin-react: 7.37.2(eslint@9.14.0) + eslint-plugin-react-hooks: 5.0.0(eslint@9.14.0) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - supports-color + + eslint-import-resolver-node@0.3.9: + dependencies: + debug: 3.2.7 + is-core-module: 2.16.1 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0))(eslint@9.14.0): + dependencies: + '@nolyfill/is-core-module': 1.0.39 + debug: 4.4.1 + eslint: 9.14.0 + get-tsconfig: 4.10.1 + is-bun-module: 2.0.0 + stable-hash: 0.0.5 + tinyglobby: 0.2.14 + unrs-resolver: 1.7.11 + optionalDependencies: + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0) + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint-import-resolver-node@0.3.9)(eslint@9.14.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + eslint: 9.14.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.33.1(eslint@9.14.0)(typescript@5.4.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0))(eslint@9.14.0))(eslint@9.14.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.33.1(eslint@9.14.0)(typescript@5.4.2) + eslint: 9.14.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0))(eslint@9.14.0) + transitivePeerDependencies: + - supports-color + + eslint-plugin-import-helpers@2.0.1(eslint@9.14.0): + dependencies: + eslint: 9.14.0 + + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 9.14.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint-import-resolver-node@0.3.9)(eslint@9.14.0) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.9 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.33.1(eslint@9.14.0)(typescript@5.4.2))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0))(eslint@9.14.0))(eslint@9.14.0): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 9.14.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.33.1(eslint@9.14.0)(typescript@5.4.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0))(eslint@9.14.0))(eslint@9.14.0) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.9 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.33.1(eslint@9.14.0)(typescript@5.4.2) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-jest@28.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(jest@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)))(typescript@5.4.2): + dependencies: + '@typescript-eslint/utils': 8.33.1(eslint@9.14.0)(typescript@5.4.2) + eslint: 9.14.0 + optionalDependencies: + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2) + jest: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + transitivePeerDependencies: + - supports-color + - typescript + + eslint-plugin-jsx-a11y@6.10.2(eslint@9.14.0): + dependencies: + aria-query: 5.3.2 + array-includes: 3.1.9 + array.prototype.flatmap: 1.3.3 + ast-types-flow: 0.0.8 + axe-core: 4.10.3 + axobject-query: 4.1.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 9.14.0 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + safe-regex-test: 1.1.0 + string.prototype.includes: 2.0.1 + + eslint-plugin-no-cyrillic-string@1.0.5(eslint@9.14.0): + dependencies: + eslint-plugin-react: 7.37.2(eslint@9.14.0) + transitivePeerDependencies: + - eslint + + eslint-plugin-playwright@2.0.1(eslint@9.14.0): + dependencies: + eslint: 9.14.0 + globals: 13.24.0 + + eslint-plugin-react-hooks@5.0.0(eslint@9.14.0): + dependencies: + eslint: 9.14.0 + + eslint-plugin-react@7.37.2(eslint@9.14.0): + dependencies: + array-includes: 3.1.9 + array.prototype.findlast: 1.2.5 + array.prototype.flatmap: 1.3.3 + array.prototype.tosorted: 1.1.4 + doctrine: 2.1.0 + es-iterator-helpers: 1.2.1 + eslint: 9.14.0 + estraverse: 5.3.0 + hasown: 2.0.2 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.9 + object.fromentries: 2.0.8 + object.values: 1.2.1 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.12 + string.prototype.repeat: 1.0.0 + + eslint-plugin-regexp@2.6.0(eslint@9.14.0): + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.14.0) + '@eslint-community/regexpp': 4.12.1 + comment-parser: 1.4.1 + eslint: 9.14.0 + jsdoc-type-pratt-parser: 4.1.0 + refa: 0.12.1 + regexp-ast-analysis: 0.7.1 + scslre: 0.3.0 + + eslint-scope@5.1.1: + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + + eslint-scope@8.3.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.0: {} + + eslint@9.14.0: + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.14.0) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.18.0 + '@eslint/core': 0.7.0 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.14.0 + '@eslint/plugin-kit': 0.2.8 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 8.3.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + + espree@10.3.0: + dependencies: + acorn: 8.14.1 + acorn-jsx: 5.3.2(acorn@8.14.1) + eslint-visitor-keys: 4.2.0 + + esprima@4.0.1: {} + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@4.3.0: {} + + estraverse@5.3.0: {} + + estree-walker@2.0.2: {} + + esutils@2.0.3: {} + + eth-block-tracker@7.1.0: + dependencies: + '@metamask/eth-json-rpc-provider': 1.0.1 + '@metamask/safe-event-emitter': 3.1.2 + '@metamask/utils': 5.0.2 + json-rpc-random-id: 1.0.1 + pify: 3.0.0 + transitivePeerDependencies: + - supports-color + + eth-json-rpc-filters@6.0.1: + dependencies: + '@metamask/safe-event-emitter': 3.1.2 + async-mutex: 0.2.6 + eth-query: 2.1.2 + json-rpc-engine: 6.1.0 + pify: 5.0.0 + + eth-query@2.1.2: + dependencies: + json-rpc-random-id: 1.0.1 + xtend: 4.0.2 + + eth-rpc-errors@4.0.3: + dependencies: + fast-safe-stringify: 2.1.1 + + ethereum-cryptography@2.2.1: + dependencies: + '@noble/curves': 1.4.2 + '@noble/hashes': 1.4.0 + '@scure/bip32': 1.4.0 + '@scure/bip39': 1.3.0 + + event-target-shim@5.0.1: {} + + eventemitter2@6.4.9: {} + + eventemitter3@5.0.1: {} + + events@3.3.0: {} + + execa@5.1.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + exit@0.1.2: {} + + expect@29.7.0: + dependencies: + '@jest/expect-utils': 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + + extend@3.0.2: {} + + extension-port-stream@2.1.1: + dependencies: + webextension-polyfill: 0.12.0 + + extension-port-stream@3.0.0: + dependencies: + readable-stream: 4.7.0 + webextension-polyfill: 0.10.0 + + fast-copy@3.0.2: {} + + fast-deep-equal@2.0.1: {} + + fast-deep-equal@3.1.3: {} + + fast-glob@3.3.1: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-patch@3.1.1: {} + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-redact@3.5.0: {} + + fast-safe-stringify@2.1.1: {} + + fast-uri@3.0.6: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fault@1.0.4: + dependencies: + format: 0.2.2 + + fb-watchman@2.0.2: + dependencies: + bser: 2.1.1 + + fdir@6.4.5(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + fetch-blob@3.2.0: + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.3.3 + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + filelist@1.0.4: + dependencies: + minimatch: 5.1.6 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + filter-obj@1.1.0: {} + + find-root@1.1.0: {} + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + find-yarn-workspace-root@2.0.0: + dependencies: + micromatch: 4.0.8 + + find@0.2.9: + dependencies: + traverse-chain: 0.1.0 + optional: true + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + + flatted@3.3.3: {} + + focus-lock@1.3.6: + dependencies: + tslib: 2.8.1 + + focus-visible@5.2.1: {} + + follow-redirects@1.15.9: {} + + fontfaceobserver@2.1.0: {} + + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + + foreground-child@3.3.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + form-data@4.0.3: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + + format@0.2.2: {} + + formdata-polyfill@4.0.10: + dependencies: + fetch-blob: 3.2.0 + + fs-extra@9.1.0: + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + + fs.realpath@1.0.0: {} + + fsevents@2.3.2: + optional: true + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function-timeout@0.1.1: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + gaxios@6.7.1: + dependencies: + extend: 3.0.2 + https-proxy-agent: 7.0.6 + is-stream: 2.0.1 + node-fetch: 2.7.0 + uuid: 9.0.1 + transitivePeerDependencies: + - encoding + - supports-color + + gcp-metadata@6.1.1: + dependencies: + gaxios: 6.7.1 + google-logging-utils: 0.0.2 + json-bigint: 1.0.0 + transitivePeerDependencies: + - encoding + - supports-color + + generic-names@4.0.0: + dependencies: + loader-utils: 3.3.1 + + gensync@1.0.0-beta.2: {} + + get-caller-file@2.0.5: {} + + get-east-asian-width@1.3.0: {} + + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-iterator@2.0.1: {} + + get-nonce@1.0.1: {} + + get-package-type@0.1.0: {} + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-stream@6.0.1: {} + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + + get-tsconfig@4.10.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + getit-sdk@1.0.13(postcss@8.5.4)(react@18.3.1)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)): + dependencies: + axios: 1.9.0 + jest-transform-css: 6.0.3(postcss@8.5.4)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + react: 18.3.1 + tslib: 2.8.1 + transitivePeerDependencies: + - debug + - postcss + - ts-node + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob-to-regexp@0.4.1: {} + + glob@10.4.5: + dependencies: + foreground-child: 3.3.1 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + glob@8.1.0: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + + globals@11.12.0: {} + + globals@13.24.0: + dependencies: + type-fest: 0.20.2 + + globals@14.0.0: {} + + globals@15.12.0: {} + + globals@16.2.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + globby@14.0.2: + dependencies: + '@sindresorhus/merge-streams': 2.3.0 + fast-glob: 3.3.3 + ignore: 5.3.2 + path-type: 5.0.0 + slash: 5.1.0 + unicorn-magic: 0.1.0 + + globrex@0.1.2: {} + + google-logging-utils@0.0.2: {} + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + gradient-avatar@https://codeload.github.com/blockscout/gradient-avatar/tar.gz/86810368c2581d2dc3aca089dc648336c8e17045: + dependencies: + hsl-rgb: 1.0.0 + hsl-triad: 1.0.0 + string-hash: 1.1.3 + + graphemer@1.4.0: {} + + graphiql@2.4.7(@codemirror/language@6.0.0)(@types/node@20.16.7)(@types/react@18.3.12)(graphql-ws@5.16.2(graphql@16.11.0))(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1): + dependencies: + '@graphiql/react': 0.17.6(@codemirror/language@6.0.0)(@types/node@20.16.7)(@types/react@18.3.12)(graphql-ws@5.16.2(graphql@16.11.0))(graphql@16.11.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1) + '@graphiql/toolkit': 0.8.4(@types/node@20.16.7)(graphql-ws@5.16.2(graphql@16.11.0))(graphql@16.11.0) + graphql: 16.11.0 + graphql-language-service: 5.4.0(graphql@16.11.0) + markdown-it: 12.3.2 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@codemirror/language' + - '@types/node' + - '@types/react' + - graphql-ws + - react-is + + graphql-language-service@5.4.0(graphql@16.11.0): + dependencies: + debounce-promise: 3.1.2 + graphql: 16.11.0 + nullthrows: 1.1.1 + vscode-languageserver-types: 3.17.5 + + graphql-ws@5.16.2(graphql@16.11.0): + dependencies: + graphql: 16.11.0 + + graphql@16.11.0: {} + + gzip-size@6.0.0: + dependencies: + duplexer: 0.1.2 + + h3@1.15.3: + dependencies: + cookie-es: 1.2.2 + crossws: 0.3.5 + defu: 6.1.4 + destr: 2.0.5 + iron-webcrypto: 1.2.1 + node-mock-http: 1.0.0 + radix3: 1.1.2 + ufo: 1.6.1 + uncrypto: 0.1.3 + + hamt-sharding@3.0.6: + dependencies: + sparse-array: 1.3.2 + uint8arrays: 5.1.0 + + has-bigints@1.1.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + hash.js@1.1.7: + dependencies: + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + + hashlru@2.3.0: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + hast-util-parse-selector@2.2.5: {} + + hastscript@6.0.0: + dependencies: + '@types/hast': 2.3.10 + comma-separated-tokens: 1.0.8 + hast-util-parse-selector: 2.2.5 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 + + he@1.2.0: {} + + help-me@4.2.0: + dependencies: + glob: 8.1.0 + readable-stream: 3.6.2 + + hexer@1.5.0: + dependencies: + ansi-color: 0.2.1 + minimist: 1.2.8 + process: 0.10.1 + xtend: 4.0.2 + + hey-listen@1.0.8: {} + + highlight.js@10.7.3: {} + + highlightjs-vue@1.0.0: {} + + hmac-drbg@1.0.1: + dependencies: + hash.js: 1.1.7 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + + hoist-non-react-statics@3.3.2: + dependencies: + react-is: 16.13.1 + + hsl-rgb@1.0.0: {} + + hsl-triad@1.0.0: {} + + html-encoding-sniffer@3.0.0: + dependencies: + whatwg-encoding: 2.0.0 + + html-escaper@2.0.2: {} + + http-proxy-agent@5.0.0: + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@5.0.1: + dependencies: + agent-base: 6.0.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@7.0.6: + dependencies: + agent-base: 7.1.3 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + human-signals@2.1.0: {} + + husky@8.0.3: {} + + hyperdyperid@1.2.0: {} + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + + icss-replace-symbols@1.1.0: {} + + icss-utils@5.1.0(postcss@8.5.4): + dependencies: + postcss: 8.5.4 + + idb-keyval@6.2.2: {} + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + immutable@3.8.2: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + import-in-the-middle@1.14.2: + dependencies: + acorn: 8.14.1 + acorn-import-attributes: 1.9.5(acorn@8.14.1) + cjs-module-lexer: 1.4.3 + module-details-from-path: 1.0.4 + + import-in-the-middle@1.7.1: + dependencies: + acorn: 8.14.1 + acorn-import-assertions: 1.9.0(acorn@8.14.1) + cjs-module-lexer: 1.4.3 + module-details-from-path: 1.0.4 + + import-local@3.2.0: + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + + imurmurhash@0.1.4: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.3: {} + + inherits@2.0.4: {} + + interface-blockstore@5.3.2: + dependencies: + interface-store: 6.0.3 + multiformats: 13.3.6 + + interface-datastore@8.3.2: + dependencies: + interface-store: 6.0.3 + uint8arrays: 5.1.0 + + interface-store@6.0.3: {} + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + internmap@2.0.3: {} + + invariant@2.2.4: + dependencies: + loose-envify: 1.4.0 + + ip-regex@5.0.0: {} + + ipfs-unixfs-exporter@13.6.2: + dependencies: + '@ipld/dag-cbor': 9.2.4 + '@ipld/dag-json': 10.2.5 + '@ipld/dag-pb': 4.1.5 + '@multiformats/murmur3': 2.1.8 + hamt-sharding: 3.0.6 + interface-blockstore: 5.3.2 + ipfs-unixfs: 11.2.1 + it-filter: 3.1.4 + it-last: 3.0.9 + it-map: 3.1.4 + it-parallel: 3.0.13 + it-pipe: 3.0.1 + it-pushable: 3.2.3 + multiformats: 13.3.6 + p-queue: 8.1.0 + progress-events: 1.0.1 + + ipfs-unixfs-importer@15.3.2: + dependencies: + '@ipld/dag-pb': 4.1.5 + '@multiformats/murmur3': 2.1.8 + hamt-sharding: 3.0.6 + interface-blockstore: 5.3.2 + interface-store: 6.0.3 + ipfs-unixfs: 11.2.1 + it-all: 3.0.9 + it-batch: 3.0.9 + it-first: 3.0.9 + it-parallel-batch: 3.0.9 + multiformats: 13.3.6 + progress-events: 1.0.1 + rabin-wasm: 0.1.5 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + transitivePeerDependencies: + - encoding + - supports-color + + ipfs-unixfs@11.2.1: + dependencies: + protons-runtime: 5.5.0 + uint8arraylist: 2.4.8 + + ipns@10.0.2: + dependencies: + '@libp2p/crypto': 5.1.5 + '@libp2p/interface': 2.10.3 + '@libp2p/logger': 5.1.19 + cborg: 4.2.11 + interface-datastore: 8.3.2 + multiformats: 13.3.6 + protons-runtime: 5.5.0 + timestamp-nano: 1.0.1 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + iron-webcrypto@1.2.1: {} + + is-alphabetical@1.0.4: {} + + is-alphanumerical@1.0.4: + dependencies: + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + + is-arguments@1.2.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-arrayish@0.2.1: {} + + is-arrayish@0.3.2: + optional: true + + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-bun-module@2.0.0: + dependencies: + semver: 7.7.2 + + is-callable@1.2.7: {} + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-decimal@1.0.4: {} + + is-docker@2.2.1: {} + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-fullwidth-code-point@3.0.0: {} + + is-fullwidth-code-point@4.0.0: {} + + is-fullwidth-code-point@5.0.0: + dependencies: + get-east-asian-width: 1.3.0 + + is-generator-fn@2.1.0: {} + + is-generator-function@1.1.0: + dependencies: + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-hexadecimal@1.0.4: {} + + is-ip@5.0.1: + dependencies: + ip-regex: 5.0.0 + super-regex: 0.2.0 + + is-loopback-addr@2.0.2: {} + + is-map@2.0.3: {} + + is-nan@1.3.2: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + + is-negative-zero@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-plain-obj@2.1.0: {} + + is-plain-obj@4.1.0: {} + + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + + is-plain-object@5.0.0: {} + + is-potential-custom-element-name@1.0.1: {} + + is-primitive@3.0.1: {} + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-regexp@3.1.0: {} + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + + is-stream@2.0.1: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.19 + + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-wsl@2.2.0: + dependencies: + is-docker: 2.2.1 + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + iso-constants@0.1.2: {} + + isobject@3.0.1: {} + + isows@1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)): + dependencies: + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + + isows@1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)): + dependencies: + ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + + isows@1.0.7(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)): + dependencies: + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optional: true + + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-instrument@5.2.1: + dependencies: + '@babel/core': 7.27.4 + '@babel/parser': 7.27.5 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + istanbul-lib-instrument@6.0.3: + dependencies: + '@babel/core': 7.27.4 + '@babel/parser': 7.27.5 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + istanbul-lib-report@3.0.1: + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + + istanbul-lib-source-maps@4.0.1: + dependencies: + debug: 4.4.1 + istanbul-lib-coverage: 3.2.2 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + + it-all@3.0.9: {} + + it-batch@3.0.9: {} + + it-byte-stream@1.1.1: + dependencies: + it-queueless-pushable: 1.0.2 + it-stream-types: 2.0.2 + uint8arraylist: 2.4.8 + + it-byte-stream@2.0.3: + dependencies: + abort-error: 1.0.1 + it-queueless-pushable: 2.0.2 + it-stream-types: 2.0.2 + race-signal: 1.1.3 + uint8arraylist: 2.4.8 + + it-drain@3.0.10: {} + + it-filter@3.1.4: + dependencies: + it-peekable: 3.0.8 + + it-first@3.0.9: {} + + it-foreach@2.1.4: + dependencies: + it-peekable: 3.0.8 + + it-glob@3.0.4: + dependencies: + fast-glob: 3.3.3 + + it-last@3.0.9: {} + + it-length-prefixed-stream@1.2.1: + dependencies: + it-byte-stream: 1.1.1 + it-stream-types: 2.0.2 + uint8-varint: 2.0.4 + uint8arraylist: 2.4.8 + + it-length-prefixed-stream@2.0.3: + dependencies: + abort-error: 1.0.1 + it-byte-stream: 2.0.3 + it-stream-types: 2.0.2 + uint8-varint: 2.0.4 + uint8arraylist: 2.4.8 + + it-length-prefixed@10.0.1: + dependencies: + it-reader: 6.0.4 + it-stream-types: 2.0.2 + uint8-varint: 2.0.4 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + it-length@3.0.9: {} + + it-map@3.1.4: + dependencies: + it-peekable: 3.0.8 + + it-merge@3.0.12: + dependencies: + it-queueless-pushable: 2.0.2 + + it-ndjson@1.1.4: + dependencies: + uint8arraylist: 2.4.8 + + it-parallel-batch@3.0.9: + dependencies: + it-batch: 3.0.9 + + it-parallel@3.0.13: + dependencies: + p-defer: 4.0.1 + + it-peekable@3.0.8: {} + + it-pipe@3.0.1: + dependencies: + it-merge: 3.0.12 + it-pushable: 3.2.3 + it-stream-types: 2.0.2 + + it-protobuf-stream@1.1.6: + dependencies: + it-length-prefixed-stream: 1.2.1 + it-stream-types: 2.0.2 + uint8arraylist: 2.4.8 + + it-protobuf-stream@2.0.3: + dependencies: + abort-error: 1.0.1 + it-length-prefixed-stream: 2.0.3 + it-stream-types: 2.0.2 + uint8arraylist: 2.4.8 + + it-pushable@3.2.3: + dependencies: + p-defer: 4.0.1 + + it-queue@1.1.0: + dependencies: + abort-error: 1.0.1 + it-pushable: 3.2.3 + main-event: 1.0.1 + race-event: 1.3.0 + race-signal: 1.1.3 + + it-queueless-pushable@1.0.2: + dependencies: + p-defer: 4.0.1 + race-signal: 1.1.3 + + it-queueless-pushable@2.0.2: + dependencies: + abort-error: 1.0.1 + p-defer: 4.0.1 + race-signal: 1.1.3 + + it-reader@6.0.4: + dependencies: + it-stream-types: 2.0.2 + uint8arraylist: 2.4.8 + + it-sort@3.0.9: + dependencies: + it-all: 3.0.9 + + it-stream-types@2.0.2: {} + + it-take@3.0.9: {} + + it-tar@6.0.5: + dependencies: + iso-constants: 0.1.2 + it-reader: 6.0.4 + it-stream-types: 2.0.2 + it-to-buffer: 4.0.10 + p-defer: 4.0.1 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + it-to-browser-readablestream@2.0.12: + dependencies: + get-iterator: 2.0.1 + + it-to-buffer@4.0.10: + dependencies: + uint8arrays: 5.1.0 + + iterator.prototype@1.1.5: + dependencies: + define-data-property: 1.1.4 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + has-symbols: 1.1.0 + set-function-name: 2.0.2 + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jaeger-client@3.19.0: + dependencies: + node-int64: 0.4.0 + opentracing: 0.14.7 + thriftrw: 3.11.4 + uuid: 8.3.2 + xorshift: 1.2.0 + + jake@10.9.2: + dependencies: + async: 3.2.6 + chalk: 4.1.2 + filelist: 1.0.4 + minimatch: 3.1.2 + + jest-changed-files@29.7.0: + dependencies: + execa: 5.1.1 + jest-util: 29.7.0 + p-limit: 3.1.0 + + jest-circus@29.7.0(babel-plugin-macros@3.1.0): + dependencies: + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + chalk: 4.1.2 + co: 4.6.0 + dedent: 1.6.0(babel-plugin-macros@3.1.0) + is-generator-fn: 2.1.0 + jest-each: 29.7.0 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + p-limit: 3.1.0 + pretty-format: 29.7.0 + pure-rand: 6.1.0 + slash: 3.0.0 + stack-utils: 2.0.6 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-cli@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)): + dependencies: + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + exit: 0.1.2 + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + jest-config@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)): + dependencies: + '@babel/core': 7.27.4 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.27.4) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.16.7 + ts-node: 10.9.2(@types/node@20.16.7)(typescript@5.4.2) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-diff@29.7.0: + dependencies: + chalk: 4.1.2 + diff-sequences: 29.6.3 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + + jest-docblock@29.7.0: + dependencies: + detect-newline: 3.1.0 + + jest-each@29.7.0: + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + jest-get-type: 29.6.3 + jest-util: 29.7.0 + pretty-format: 29.7.0 + + jest-environment-jsdom@29.7.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/jsdom': 20.0.1 + '@types/node': 20.16.7 + jest-mock: 29.7.0 + jest-util: 29.7.0 + jsdom: 20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jest-environment-node@29.7.0: + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + jest-fetch-mock@3.0.3: + dependencies: + cross-fetch: 3.2.0 + promise-polyfill: 8.3.0 + transitivePeerDependencies: + - encoding + + jest-get-type@29.6.3: {} + + jest-haste-map@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.16.7 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + jest-worker: 29.7.0 + micromatch: 4.0.8 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + + jest-leak-detector@29.7.0: + dependencies: + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + + jest-matcher-utils@29.7.0: + dependencies: + chalk: 4.1.2 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 + + jest-message-util@29.7.0: + dependencies: + '@babel/code-frame': 7.27.1 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + stack-utils: 2.0.6 + + jest-mock@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + jest-util: 29.7.0 + + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): + optionalDependencies: + jest-resolve: 29.7.0 + + jest-regex-util@29.6.3: {} + + jest-resolve-dependencies@29.7.0: + dependencies: + jest-regex-util: 29.6.3 + jest-snapshot: 29.7.0 + transitivePeerDependencies: + - supports-color + + jest-resolve@29.7.0: + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.10 + resolve.exports: 2.0.3 + slash: 3.0.0 + + jest-runner@29.7.0: + dependencies: + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + chalk: 4.1.2 + emittery: 0.13.1 + graceful-fs: 4.2.11 + jest-docblock: 29.7.0 + jest-environment-node: 29.7.0 + jest-haste-map: 29.7.0 + jest-leak-detector: 29.7.0 + jest-message-util: 29.7.0 + jest-resolve: 29.7.0 + jest-runtime: 29.7.0 + jest-util: 29.7.0 + jest-watcher: 29.7.0 + jest-worker: 29.7.0 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color + + jest-runtime@29.7.0: + dependencies: + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + chalk: 4.1.2 + cjs-module-lexer: 1.4.3 + collect-v8-coverage: 1.0.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + + jest-snapshot@29.7.0: + dependencies: + '@babel/core': 7.27.4 + '@babel/generator': 7.27.5 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.4) + '@babel/types': 7.27.6 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-preset-current-node-syntax: 1.1.0(@babel/core@7.27.4) + chalk: 4.1.2 + expect: 29.7.0 + graceful-fs: 4.2.11 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + natural-compare: 1.4.0 + pretty-format: 29.7.0 + semver: 7.7.2 + transitivePeerDependencies: + - supports-color + + jest-transform-css@6.0.3(postcss@8.5.4)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)): + dependencies: + common-tags: 1.8.2 + cross-spawn: 7.0.6 + postcss: 8.5.4 + postcss-load-config: 4.0.1(postcss@8.5.4)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + postcss-modules: 4.3.1(postcss@8.5.4) + style-inject: 0.3.0 + transitivePeerDependencies: + - ts-node + + jest-util@29.7.0: + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + chalk: 4.1.2 + ci-info: 3.9.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + + jest-validate@29.7.0: + dependencies: + '@jest/types': 29.6.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 29.6.3 + leven: 3.1.0 + pretty-format: 29.7.0 + + jest-watcher@29.7.0: + dependencies: + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.16.7 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.13.1 + jest-util: 29.7.0 + string-length: 4.0.2 + + jest-worker@27.5.1: + dependencies: + '@types/node': 20.16.7 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jest-worker@29.7.0: + dependencies: + '@types/node': 20.16.7 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jest@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)): + dependencies: + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + '@jest/types': 29.6.3 + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + + joi@17.13.3: + dependencies: + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 + + joycon@3.1.1: {} + + js-cookie@3.0.5: {} + + js-file-download@0.4.12: {} + + js-sha3@0.8.0: {} + + js-tokens@4.0.0: {} + + js-yaml@3.14.1: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsdoc-type-pratt-parser@4.1.0: {} + + jsdom@20.0.3(bufferutil@4.0.9)(utf-8-validate@5.0.10): + dependencies: + abab: 2.0.6 + acorn: 8.14.1 + acorn-globals: 7.0.1 + cssom: 0.5.0 + cssstyle: 2.3.0 + data-urls: 3.0.2 + decimal.js: 10.5.0 + domexception: 4.0.0 + escodegen: 2.1.0 + form-data: 4.0.3 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.20 + parse5: 7.3.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.4 + w3c-xmlserializer: 4.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsesc@3.0.2: {} + + jsesc@3.1.0: {} + + jshashes@1.0.8: {} + + json-bigint@1.0.0: + dependencies: + bignumber.js: 9.3.0 + + json-buffer@3.0.1: {} + + json-parse-even-better-errors@2.3.1: {} + + json-rpc-engine@6.1.0: + dependencies: + '@metamask/safe-event-emitter': 2.0.0 + eth-rpc-errors: 4.0.3 + + json-rpc-middleware-stream@4.2.3: + dependencies: + '@metamask/safe-event-emitter': 3.1.2 + json-rpc-engine: 6.1.0 + readable-stream: 2.3.8 + + json-rpc-random-id@1.0.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json-stable-stringify@1.3.0: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + isarray: 2.0.5 + jsonify: 0.0.1 + object-keys: 1.1.1 + + json-stringify-safe@5.0.1: {} + + json5@1.0.2: + dependencies: + minimist: 1.2.8 + + json5@2.2.3: {} + + jsonfile@6.1.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + jsonify@0.0.1: {} + + jsx-ast-utils@3.3.5: + dependencies: + array-includes: 3.1.9 + array.prototype.flat: 1.3.3 + object.assign: 4.1.7 + object.values: 1.2.1 + + keccak@3.0.4: + dependencies: + node-addon-api: 2.0.2 + node-gyp-build: 4.8.4 + readable-stream: 3.6.2 + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + keyvaluestorage-interface@1.0.0: {} + + klaw-sync@6.0.0: + dependencies: + graceful-fs: 4.2.11 + + kleur@3.0.3: {} + + language-subtag-registry@0.3.23: {} + + language-tags@1.0.9: + dependencies: + language-subtag-registry: 0.3.23 + + leven@3.1.0: {} + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lilconfig@2.1.0: {} + + lilconfig@3.1.3: {} + + lines-and-columns@1.2.4: {} + + linkify-it@3.0.3: + dependencies: + uc.micro: 1.0.6 + + lint-staged@16.1.0: + dependencies: + chalk: 5.4.1 + commander: 14.0.0 + debug: 4.4.1 + lilconfig: 3.1.3 + listr2: 8.3.3 + micromatch: 4.0.8 + nano-spawn: 1.0.2 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.8.0 + transitivePeerDependencies: + - supports-color + + listr2@8.3.3: + dependencies: + cli-truncate: 4.0.0 + colorette: 2.0.20 + eventemitter3: 5.0.1 + log-update: 6.1.0 + rfdc: 1.4.1 + wrap-ansi: 9.0.0 + + lit-element@3.3.3: + dependencies: + '@lit-labs/ssr-dom-shim': 1.3.0 + '@lit/reactive-element': 1.6.3 + lit-html: 2.8.0 + + lit-element@4.2.0: + dependencies: + '@lit-labs/ssr-dom-shim': 1.3.0 + '@lit/reactive-element': 2.1.0 + lit-html: 3.3.0 + + lit-html@2.8.0: + dependencies: + '@types/trusted-types': 2.0.7 + + lit-html@3.3.0: + dependencies: + '@types/trusted-types': 2.0.7 + + lit@2.8.0: + dependencies: + '@lit/reactive-element': 1.6.3 + lit-element: 3.3.3 + lit-html: 2.8.0 + + lit@3.1.0: + dependencies: + '@lit/reactive-element': 2.1.0 + lit-element: 4.2.0 + lit-html: 3.3.0 + + lit@3.3.0: + dependencies: + '@lit/reactive-element': 2.1.0 + lit-element: 4.2.0 + lit-html: 3.3.0 + optional: true + + loader-runner@4.3.0: {} + + loader-utils@3.3.1: {} + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash.camelcase@4.3.0: {} + + lodash.debounce@4.0.8: {} + + lodash.memoize@4.1.2: {} + + lodash.merge@4.6.2: {} + + lodash.throttle@4.1.1: {} + + lodash@4.17.21: {} + + log-update@6.1.0: + dependencies: + ansi-escapes: 7.0.0 + cli-cursor: 5.0.0 + slice-ansi: 7.1.0 + strip-ansi: 7.1.0 + wrap-ansi: 9.0.0 + + long@2.4.0: {} + + long@5.3.2: {} + + look-it-up@2.1.0: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + lowlight@1.20.0: + dependencies: + fault: 1.0.4 + highlight.js: 10.7.3 + + lru-cache@10.4.3: {} + + lru-cache@2.2.4: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lz-string@1.5.0: {} + + magic-bytes.js@1.8.0: {} + + main-event@1.0.1: {} + + make-dir@4.0.0: + dependencies: + semver: 7.7.2 + + make-error@1.3.6: {} + + makeerror@1.0.12: + dependencies: + tmpl: 1.0.5 + + markdown-it@12.3.2: + dependencies: + argparse: 2.0.1 + entities: 2.1.0 + linkify-it: 3.0.3 + mdurl: 1.0.1 + uc.micro: 1.0.6 + + math-intrinsics@1.1.0: {} + + mdn-data@2.0.14: {} + + mdn-data@2.0.28: {} + + mdn-data@2.0.30: {} + + mdurl@1.0.1: {} + + memfs@4.17.2: + dependencies: + '@jsonjoy.com/json-pack': 1.2.0(tslib@2.8.1) + '@jsonjoy.com/util': 1.6.0(tslib@2.8.1) + tree-dump: 1.0.3(tslib@2.8.1) + tslib: 2.8.1 + + memoize-one@6.0.0: {} + + merge-options@3.0.4: + dependencies: + is-plain-obj: 2.1.0 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + meros@1.3.0(@types/node@20.16.7): + optionalDependencies: + '@types/node': 20.16.7 + + mersenne-twister@1.1.0: {} + + micro-ftch@0.3.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + + mimic-fn@2.1.0: {} + + mimic-function@5.0.1: {} + + minim@0.23.8: + dependencies: + lodash: 4.17.21 + + minimalistic-assert@1.0.1: {} + + minimalistic-crypto-utils@1.0.1: {} + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@5.1.6: + dependencies: + brace-expansion: 2.0.1 + + minimatch@7.4.6: + dependencies: + brace-expansion: 2.0.1 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minimist@1.2.8: {} + + minipass@7.1.2: {} + + mipd@0.0.7(typescript@5.4.2): + optionalDependencies: + typescript: 5.4.2 + + mitt@3.0.1: {} + + mixpanel-browser@2.65.0: + dependencies: + rrweb: 2.0.0-alpha.18 + + mockdate@3.0.5: {} + + module-details-from-path@1.0.4: {} + + monaco-editor@0.34.1: {} + + mortice@3.3.1: + dependencies: + abort-error: 1.0.1 + it-queue: 1.1.0 + main-event: 1.0.1 + + motion@10.16.2: + dependencies: + '@motionone/animation': 10.18.0 + '@motionone/dom': 10.18.0 + '@motionone/svelte': 10.16.4 + '@motionone/types': 10.17.1 + '@motionone/utils': 10.18.0 + '@motionone/vue': 10.16.4 + + mrmime@2.0.1: {} + + ms@2.1.3: {} + + ms@3.0.0-canary.1: {} + + multiformats@13.3.6: {} + + multiformats@9.9.0: {} + + murmurhash3js-revisited@3.0.0: {} + + mz@2.7.0: + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + + nano-spawn@1.0.2: {} + + nanoid@3.3.11: {} + + napi-postinstall@0.2.4: {} + + natural-compare-lite@1.4.0: {} + + natural-compare@1.4.0: {} + + neo-async@2.6.2: {} + + neotraverse@0.6.18: {} + + netmask@2.0.2: {} + + next-themes@0.4.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + next@15.2.3(@babel/core@7.27.4)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@next/env': 15.2.3 + '@swc/counter': 0.1.3 + '@swc/helpers': 0.5.15 + busboy: 1.6.0 + caniuse-lite: 1.0.30001721 + postcss: 8.4.31 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.6(@babel/core@7.27.4)(babel-plugin-macros@3.1.0)(react@18.3.1) + optionalDependencies: + '@next/swc-darwin-arm64': 15.2.3 + '@next/swc-darwin-x64': 15.2.3 + '@next/swc-linux-arm64-gnu': 15.2.3 + '@next/swc-linux-arm64-musl': 15.2.3 + '@next/swc-linux-x64-gnu': 15.2.3 + '@next/swc-linux-x64-musl': 15.2.3 + '@next/swc-win32-arm64-msvc': 15.2.3 + '@next/swc-win32-x64-msvc': 15.2.3 + '@opentelemetry/api': 1.9.0 + '@playwright/test': 1.49.0 + sharp: 0.33.5 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + nextjs-routes@1.0.9(next@15.2.3(@babel/core@7.27.4)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)): + dependencies: + chokidar: 3.6.0 + next: 15.2.3(@babel/core@7.27.4)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + + node-abort-controller@3.1.1: {} + + node-addon-api@2.0.2: {} + + node-addon-api@8.3.1: + optional: true + + node-domexception@1.0.0: {} + + node-eval@2.0.0: + dependencies: + path-is-absolute: 1.0.1 + + node-fetch-commonjs@3.3.2: + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.3.3 + + node-fetch-native@1.6.6: {} + + node-fetch@2.7.0: + dependencies: + whatwg-url: 5.0.0 + + node-fetch@3.3.2: + dependencies: + data-uri-to-buffer: 4.0.1 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + + node-gyp-build@4.8.4: {} + + node-html-parser@6.1.13: + dependencies: + css-select: 5.1.0 + he: 1.2.0 + + node-int64@0.4.0: {} + + node-mock-http@1.0.0: {} + + node-releases@2.0.19: {} + + normalize-path@3.0.0: {} + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + nullthrows@1.1.1: {} + + nwsapi@2.2.20: {} + + obj-multiplex@1.0.0: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + readable-stream: 2.3.8 + + object-assign@4.1.1: {} + + object-inspect@1.13.4: {} + + object-is@1.1.6: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.entries@1.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + object.fromentries@2.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + + object.groupby@1.0.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + + object.values@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + ofetch@1.4.1: + dependencies: + destr: 2.0.5 + node-fetch-native: 1.6.6 + ufo: 1.6.1 + + on-exit-leak-free@0.2.0: {} + + on-exit-leak-free@2.1.2: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + + open@7.4.2: + dependencies: + is-docker: 2.2.1 + is-wsl: 2.2.0 + + openapi-path-templating@2.2.1: + dependencies: + apg-lite: 1.0.5 + + openapi-server-url-templating@1.3.0: + dependencies: + apg-lite: 1.0.5 + + opener@1.5.2: {} + + opentracing@0.14.7: {} + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + os-tmpdir@1.0.2: {} + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + ox@0.6.7(typescript@5.4.2)(zod@3.25.53): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.4.2)(zod@3.25.53) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - zod + + ox@0.6.9(typescript@5.4.2)(zod@3.22.4): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.4.2)(zod@3.22.4) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - zod + + ox@0.6.9(typescript@5.4.2)(zod@3.25.53): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.4.2)(zod@3.25.53) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - zod + + ox@0.7.1(typescript@5.4.2)(zod@3.22.4): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/ciphers': 1.3.0 + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.2)(zod@3.22.4) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - zod + optional: true + + ox@0.7.1(typescript@5.4.2)(zod@3.25.53): + dependencies: + '@adraffy/ens-normalize': 1.11.0 + '@noble/ciphers': 1.3.0 + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.2)(zod@3.25.53) + eventemitter3: 5.0.1 + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - zod + optional: true + + p-defer@4.0.1: {} + + p-event@6.0.1: + dependencies: + p-timeout: 6.1.4 + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-queue@8.1.0: + dependencies: + eventemitter3: 5.0.1 + p-timeout: 6.1.4 + + p-timeout@6.1.4: {} + + p-try@2.2.0: {} + + package-json-from-dist@1.0.1: {} + + package-manager-detector@0.1.2: {} + + papaparse@5.5.3: {} + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-entities@2.0.0: + dependencies: + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.27.1 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + parse5@7.3.0: + dependencies: + entities: 6.0.0 + + patch-package@8.0.0: + dependencies: + '@yarnpkg/lockfile': 1.1.0 + chalk: 4.1.2 + ci-info: 3.9.0 + cross-spawn: 7.0.6 + find-yarn-workspace-root: 2.0.0 + fs-extra: 9.1.0 + json-stable-stringify: 1.3.0 + klaw-sync: 6.0.0 + minimist: 1.2.8 + open: 7.4.2 + rimraf: 2.7.1 + semver: 7.7.2 + slash: 2.0.0 + tmp: 0.0.33 + yaml: 2.8.0 + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-to-regexp@8.1.0: {} + + path-type@4.0.0: {} + + path-type@5.0.0: {} + + path-unified@0.2.0: {} + + path@0.12.7: + dependencies: + process: 0.11.10 + util: 0.10.4 + + perfect-freehand@1.2.2: {} + + pg-int8@1.0.1: {} + + pg-protocol@1.10.0: {} + + pg-types@2.2.0: + dependencies: + pg-int8: 1.0.1 + postgres-array: 2.0.0 + postgres-bytea: 1.0.0 + postgres-date: 1.0.7 + postgres-interval: 1.2.0 + + phoenix@1.7.21: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + pidtree@0.6.0: {} + + pify@3.0.0: {} + + pify@5.0.0: {} + + pino-abstract-transport@0.5.0: + dependencies: + duplexify: 4.1.3 + split2: 4.2.0 + + pino-abstract-transport@1.2.0: + dependencies: + readable-stream: 4.7.0 + split2: 4.2.0 + + pino-http@8.6.1: + dependencies: + get-caller-file: 2.0.5 + pino: 8.21.0 + pino-std-serializers: 6.2.2 + process-warning: 3.0.0 + + pino-pretty@9.4.1: + dependencies: + colorette: 2.0.20 + dateformat: 4.6.3 + fast-copy: 3.0.2 + fast-safe-stringify: 2.1.1 + help-me: 4.2.0 + joycon: 3.1.1 + minimist: 1.2.8 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 1.2.0 + pump: 3.0.2 + readable-stream: 4.7.0 + secure-json-parse: 2.7.0 + sonic-boom: 3.8.1 + strip-json-comments: 3.1.1 + + pino-std-serializers@4.0.0: {} + + pino-std-serializers@6.2.2: {} + + pino@7.11.0: + dependencies: + atomic-sleep: 1.0.0 + fast-redact: 3.5.0 + on-exit-leak-free: 0.2.0 + pino-abstract-transport: 0.5.0 + pino-std-serializers: 4.0.0 + process-warning: 1.0.0 + quick-format-unescaped: 4.0.4 + real-require: 0.1.0 + safe-stable-stringify: 2.5.0 + sonic-boom: 2.8.0 + thread-stream: 0.15.2 + + pino@8.21.0: + dependencies: + atomic-sleep: 1.0.0 + fast-redact: 3.5.0 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 1.2.0 + pino-std-serializers: 6.2.2 + process-warning: 3.0.0 + quick-format-unescaped: 4.0.4 + real-require: 0.2.0 + safe-stable-stringify: 2.5.0 + sonic-boom: 3.8.1 + thread-stream: 2.7.0 + + pirates@4.0.7: {} + + pkg-dir@4.2.0: + dependencies: + find-up: 4.1.0 + + playwright-core@1.49.0: {} + + playwright@1.49.0: + dependencies: + playwright-core: 1.49.0 + optionalDependencies: + fsevents: 2.3.2 + + pngjs@5.0.0: {} + + pony-cause@2.1.11: {} + + possible-typed-array-names@1.1.0: {} + + postcss-load-config@4.0.1(postcss@8.5.4)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)): + dependencies: + lilconfig: 2.1.0 + yaml: 2.8.0 + optionalDependencies: + postcss: 8.5.4 + ts-node: 10.9.2(@types/node@20.16.7)(typescript@5.4.2) + + postcss-modules-extract-imports@3.1.0(postcss@8.5.4): + dependencies: + postcss: 8.5.4 + + postcss-modules-local-by-default@4.2.0(postcss@8.5.4): + dependencies: + icss-utils: 5.1.0(postcss@8.5.4) + postcss: 8.5.4 + postcss-selector-parser: 7.1.0 + postcss-value-parser: 4.2.0 + + postcss-modules-scope@3.2.1(postcss@8.5.4): + dependencies: + postcss: 8.5.4 + postcss-selector-parser: 7.1.0 + + postcss-modules-values@4.0.0(postcss@8.5.4): + dependencies: + icss-utils: 5.1.0(postcss@8.5.4) + postcss: 8.5.4 + + postcss-modules@4.3.1(postcss@8.5.4): + dependencies: + generic-names: 4.0.0 + icss-replace-symbols: 1.1.0 + lodash.camelcase: 4.3.0 + postcss: 8.5.4 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.4) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.4) + postcss-modules-scope: 3.2.1(postcss@8.5.4) + postcss-modules-values: 4.0.0(postcss@8.5.4) + string-hash: 1.1.3 + + postcss-selector-parser@7.1.0: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-value-parser@4.2.0: {} + + postcss@8.4.31: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postcss@8.5.4: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postgres-array@2.0.0: {} + + postgres-bytea@1.0.0: {} + + postgres-date@1.0.7: {} + + postgres-interval@1.2.0: + dependencies: + xtend: 4.0.2 + + preact@10.26.8: {} + + prelude-ls@1.2.1: {} + + prettier@3.3.3: {} + + prettier@3.5.3: {} + + pretty-format@27.5.1: + dependencies: + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 + + pretty-format@29.7.0: + dependencies: + '@jest/schemas': 29.6.3 + ansi-styles: 5.2.0 + react-is: 18.3.1 + + prismjs@1.27.0: {} + + prismjs@1.30.0: {} + + process-nextick-args@2.0.1: {} + + process-warning@1.0.0: {} + + process-warning@3.0.0: {} + + process@0.10.1: {} + + process@0.11.10: {} + + progress-events@1.0.1: {} + + prom-client@15.1.1: + dependencies: + '@opentelemetry/api': 1.9.0 + tdigest: 0.1.2 + + promise-polyfill@8.3.0: {} + + prompts@2.4.2: + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + + prop-types@15.8.1: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + property-information@5.6.0: + dependencies: + xtend: 4.0.2 + + protobufjs@7.5.3: + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/node': 20.16.7 + long: 5.3.2 + + protons-runtime@5.5.0: + dependencies: + uint8-varint: 2.0.4 + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + proxy-compare@2.5.1: {} + + proxy-compare@2.6.0: {} + + proxy-compare@3.0.1: {} + + proxy-from-env@1.1.0: {} + + proxy-memoize@3.0.1: + dependencies: + proxy-compare: 3.0.1 + + psl@1.15.0: + dependencies: + punycode: 2.3.1 + + pump@3.0.2: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + + punycode@1.4.1: {} + + punycode@2.3.1: {} + + pure-rand@6.1.0: {} + + qrcode@1.5.3: + dependencies: + dijkstrajs: 1.0.3 + encode-utf8: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 + + qrcode@1.5.4: + dependencies: + dijkstrajs: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 + + qs@6.14.0: + dependencies: + side-channel: 1.1.0 + + query-string@7.1.3: + dependencies: + decode-uri-component: 0.2.2 + filter-obj: 1.1.0 + split-on-first: 1.1.0 + strict-uri-encode: 2.0.0 + + querystringify@2.2.0: {} + + queue-microtask@1.2.3: {} + + quick-format-unescaped@4.0.4: {} + + rabin-wasm@0.1.5: + dependencies: + '@assemblyscript/loader': 0.9.4 + bl: 5.1.0 + debug: 4.4.1 + minimist: 1.2.8 + node-fetch: 2.7.0 + readable-stream: 3.6.2 + transitivePeerDependencies: + - encoding + - supports-color + + race-event@1.3.0: {} + + race-signal@1.1.3: {} + + radix3@1.1.2: {} + + ramda-adjunct@5.1.0(ramda@0.30.1): + dependencies: + ramda: 0.30.1 + + ramda@0.30.1: {} + + randexp@0.5.3: + dependencies: + drange: 1.1.1 + ret: 0.2.2 + + randombytes@2.1.0: + dependencies: + safe-buffer: 5.2.1 + + react-async-script@1.2.0(react@18.3.1): + dependencies: + hoist-non-react-statics: 3.3.2 + prop-types: 15.8.1 + react: 18.3.1 + + react-clientside-effect@1.2.8(react@18.3.1): + dependencies: + '@babel/runtime': 7.27.6 + react: 18.3.1 + + react-copy-to-clipboard@5.1.0(react@18.3.1): + dependencies: + copy-to-clipboard: 3.3.3 + prop-types: 15.8.1 + react: 18.3.1 + + react-debounce-input@3.3.0(react@18.3.1): + dependencies: + lodash.debounce: 4.0.8 + prop-types: 15.8.1 + react: 18.3.1 + + react-device-detect@2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + ua-parser-js: 1.0.40 + + react-dom@18.3.1(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 + + react-focus-lock@2.13.6(@types/react@18.3.12)(react@18.3.1): + dependencies: + '@babel/runtime': 7.27.6 + focus-lock: 1.3.6 + prop-types: 15.8.1 + react: 18.3.1 + react-clientside-effect: 1.2.8(react@18.3.1) + use-callback-ref: 1.3.3(@types/react@18.3.12)(react@18.3.1) + use-sidecar: 1.1.3(@types/react@18.3.12)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.12 + + react-google-recaptcha@3.1.0(react@18.3.1): + dependencies: + prop-types: 15.8.1 + react: 18.3.1 + react-async-script: 1.2.0(react@18.3.1) + + react-hook-form@7.52.1(react@18.3.1): + dependencies: + react: 18.3.1 + + react-icons@5.4.0(react@18.3.1): + dependencies: + react: 18.3.1 + + react-identicons@1.2.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-immutable-proptypes@2.2.0(immutable@3.8.2): + dependencies: + immutable: 3.8.2 + invariant: 2.2.4 + + react-immutable-pure-component@2.2.2(immutable@3.8.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + immutable: 3.8.2 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-inspector@6.0.2(react@18.3.1): + dependencies: + react: 18.3.1 + + react-intersection-observer@9.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + optionalDependencies: + react-dom: 18.3.1(react@18.3.1) + + react-is@16.13.1: {} + + react-is@17.0.2: {} + + react-is@18.3.1: {} + + react-jazzicon@1.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + mersenne-twister: 1.1.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-number-format@5.4.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-redux@9.2.0(@types/react@18.3.12)(react@18.3.1)(redux@5.0.1): + dependencies: + '@types/use-sync-external-store': 0.0.6 + react: 18.3.1 + use-sync-external-store: 1.5.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.12 + redux: 5.0.1 + + react-refresh@0.17.0: {} + + react-remove-scroll-bar@2.3.8(@types/react@18.3.12)(react@18.3.1): + dependencies: + react: 18.3.1 + react-style-singleton: 2.2.3(@types/react@18.3.12)(react@18.3.1) + tslib: 2.8.1 + optionalDependencies: + '@types/react': 18.3.12 + + react-remove-scroll@2.7.1(@types/react@18.3.12)(react@18.3.1): + dependencies: + react: 18.3.1 + react-remove-scroll-bar: 2.3.8(@types/react@18.3.12)(react@18.3.1) + react-style-singleton: 2.2.3(@types/react@18.3.12)(react@18.3.1) + tslib: 2.8.1 + use-callback-ref: 1.3.3(@types/react@18.3.12)(react@18.3.1) + use-sidecar: 1.1.3(@types/react@18.3.12)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.12 + + react-script-hook@1.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-scroll@1.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + lodash.throttle: 4.1.1 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react-select@5.8.3(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime': 7.27.6 + '@emotion/cache': 11.14.0 + '@emotion/react': 11.14.0(@types/react@18.3.12)(react@18.3.1) + '@floating-ui/dom': 1.7.1 + '@types/react-transition-group': 4.4.12(@types/react@18.3.12) + memoize-one: 6.0.0 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + use-isomorphic-layout-effect: 1.2.1(@types/react@18.3.12)(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - supports-color + + react-style-singleton@2.2.3(@types/react@18.3.12)(react@18.3.1): + dependencies: + get-nonce: 1.0.1 + react: 18.3.1 + tslib: 2.8.1 + optionalDependencies: + '@types/react': 18.3.12 + + react-syntax-highlighter@15.6.1(react@18.3.1): + dependencies: + '@babel/runtime': 7.27.6 + highlight.js: 10.7.3 + highlightjs-vue: 1.0.0 + lowlight: 1.20.0 + prismjs: 1.30.0 + react: 18.3.1 + refractor: 3.6.0 + + react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime': 7.27.6 + dom-helpers: 5.2.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + react@18.3.1: + dependencies: + loose-envify: 1.4.0 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readable-stream@4.7.0: + dependencies: + abort-controller: 3.0.0 + buffer: 6.0.3 + events: 3.3.0 + process: 0.11.10 + string_decoder: 1.3.0 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + + readdirp@4.1.2: {} + + real-require@0.1.0: {} + + real-require@0.2.0: {} + + redux-immutable@4.0.0(immutable@3.8.2): + dependencies: + immutable: 3.8.2 + + redux@5.0.1: {} + + refa@0.12.1: + dependencies: + '@eslint-community/regexpp': 4.12.1 + + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + + refractor@3.6.0: + dependencies: + hastscript: 6.0.0 + parse-entities: 2.0.0 + prismjs: 1.27.0 + + regenerate-unicode-properties@10.2.0: + dependencies: + regenerate: 1.4.2 + + regenerate@1.4.2: {} + + regexp-ast-analysis@0.7.1: + dependencies: + '@eslint-community/regexpp': 4.12.1 + refa: 0.12.1 + + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 + + regexpu-core@6.2.0: + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.12.0 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.2.0 + + regjsgen@0.8.0: {} + + regjsparser@0.12.0: + dependencies: + jsesc: 3.0.2 + + remarkable@2.0.1: + dependencies: + argparse: 1.0.10 + autolinker: 3.16.2 + + repeat-string@1.6.1: {} + + request-ip@3.3.0: {} + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + require-in-the-middle@7.5.2: + dependencies: + debug: 4.4.1 + module-details-from-path: 1.0.4 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + require-main-filename@2.0.0: {} + + requires-port@1.0.0: {} + + reselect@5.1.1: {} + + resolve-cwd@3.0.0: + dependencies: + resolve-from: 5.0.0 + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + resolve-pkg-maps@1.0.0: {} + + resolve.exports@2.0.3: {} + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + resolve@2.0.0-next.5: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 + + ret@0.2.2: {} + + reusify@1.1.0: {} + + rfdc@1.4.1: {} + + rimraf@2.7.1: + dependencies: + glob: 7.2.3 + + robust-predicates@3.0.2: {} + + rollbar@2.26.4: + dependencies: + async: 3.2.6 + console-polyfill: 0.3.0 + error-stack-parser: 2.1.4 + json-stringify-safe: 5.0.1 + lru-cache: 2.2.4 + request-ip: 3.3.0 + source-map: 0.5.7 + optionalDependencies: + decache: 3.1.0 + + rollup@4.41.1: + dependencies: + '@types/estree': 1.0.7 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.41.1 + '@rollup/rollup-android-arm64': 4.41.1 + '@rollup/rollup-darwin-arm64': 4.41.1 + '@rollup/rollup-darwin-x64': 4.41.1 + '@rollup/rollup-freebsd-arm64': 4.41.1 + '@rollup/rollup-freebsd-x64': 4.41.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.41.1 + '@rollup/rollup-linux-arm-musleabihf': 4.41.1 + '@rollup/rollup-linux-arm64-gnu': 4.41.1 + '@rollup/rollup-linux-arm64-musl': 4.41.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.41.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.41.1 + '@rollup/rollup-linux-riscv64-gnu': 4.41.1 + '@rollup/rollup-linux-riscv64-musl': 4.41.1 + '@rollup/rollup-linux-s390x-gnu': 4.41.1 + '@rollup/rollup-linux-x64-gnu': 4.41.1 + '@rollup/rollup-linux-x64-musl': 4.41.1 + '@rollup/rollup-win32-arm64-msvc': 4.41.1 + '@rollup/rollup-win32-ia32-msvc': 4.41.1 + '@rollup/rollup-win32-x64-msvc': 4.41.1 + fsevents: 2.3.3 + + rrdom@2.0.0-alpha.18: + dependencies: + rrweb-snapshot: 2.0.0-alpha.18 + + rrweb-snapshot@2.0.0-alpha.18: + dependencies: + postcss: 8.5.4 + + rrweb@2.0.0-alpha.18: + dependencies: + '@rrweb/types': 2.0.0-alpha.18 + '@rrweb/utils': 2.0.0-alpha.18 + '@types/css-font-loading-module': 0.0.7 + '@xstate/fsm': 1.6.5 + base64-arraybuffer: 1.0.2 + mitt: 3.0.1 + rrdom: 2.0.0-alpha.18 + rrweb-snapshot: 2.0.0-alpha.18 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rw@1.3.3: {} + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safe-stable-stringify@2.5.0: {} + + safer-buffer@2.1.2: {} + + saxes@6.0.0: + dependencies: + xmlchars: 2.2.0 + + scheduler@0.23.2: + dependencies: + loose-envify: 1.4.0 + + schema-utils@4.3.2: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 8.17.1 + ajv-formats: 2.1.1(ajv@8.17.1) + ajv-keywords: 5.1.0(ajv@8.17.1) + + scslre@0.3.0: + dependencies: + '@eslint-community/regexpp': 4.12.1 + refa: 0.12.1 + regexp-ast-analysis: 0.7.1 + + scule@1.3.0: {} + + secure-json-parse@2.7.0: {} + + semver@6.3.1: {} + + semver@7.7.2: {} + + serialize-error@8.1.0: + dependencies: + type-fest: 0.20.2 + + serialize-javascript@6.0.2: + dependencies: + randombytes: 2.1.0 + + set-blocking@2.0.0: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + + set-value@4.1.0: + dependencies: + is-plain-object: 2.0.4 + is-primitive: 3.0.1 + + sha.js@2.4.11: + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + + sharp@0.33.5: + dependencies: + color: 4.2.3 + detect-libc: 2.0.4 + semver: 7.7.2 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.33.5 + '@img/sharp-darwin-x64': 0.33.5 + '@img/sharp-libvips-darwin-arm64': 1.0.4 + '@img/sharp-libvips-darwin-x64': 1.0.4 + '@img/sharp-libvips-linux-arm': 1.0.5 + '@img/sharp-libvips-linux-arm64': 1.0.4 + '@img/sharp-libvips-linux-s390x': 1.0.4 + '@img/sharp-libvips-linux-x64': 1.0.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + '@img/sharp-linux-arm': 0.33.5 + '@img/sharp-linux-arm64': 0.33.5 + '@img/sharp-linux-s390x': 0.33.5 + '@img/sharp-linux-x64': 0.33.5 + '@img/sharp-linuxmusl-arm64': 0.33.5 + '@img/sharp-linuxmusl-x64': 0.33.5 + '@img/sharp-wasm32': 0.33.5 + '@img/sharp-win32-ia32': 0.33.5 + '@img/sharp-win32-x64': 0.33.5 + optional: true + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + shimmer@1.2.1: {} + + short-unique-id@5.3.2: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + signal-exit@3.0.7: {} + + signal-exit@4.1.0: {} + + simple-swizzle@0.2.2: + dependencies: + is-arrayish: 0.3.2 + optional: true + + sirv@2.0.4: + dependencies: + '@polka/url': 1.0.0-next.29 + mrmime: 2.0.1 + totalist: 3.0.1 + + sisteransi@1.0.5: {} + + slash@2.0.0: {} + + slash@3.0.0: {} + + slash@5.1.0: {} + + slice-ansi@5.0.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + + slice-ansi@7.1.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 5.0.0 + + socket.io-client@4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10): + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.7 + engine.io-client: 6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10) + socket.io-parser: 4.2.4 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + socket.io-parser@4.2.4: + dependencies: + '@socket.io/component-emitter': 3.1.2 + debug: 4.3.7 + transitivePeerDependencies: + - supports-color + + sonic-boom@2.8.0: + dependencies: + atomic-sleep: 1.0.0 + + sonic-boom@3.8.1: + dependencies: + atomic-sleep: 1.0.0 + + source-map-js@1.2.1: {} + + source-map-support@0.5.13: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.5.7: {} + + source-map@0.6.1: {} + + space-separated-tokens@1.1.5: {} + + sparse-array@1.3.2: {} + + split-on-first@1.1.0: {} + + split2@4.2.0: {} + + sprintf-js@1.0.3: {} + + stable-hash@0.0.5: {} + + stable@0.1.8: {} + + stack-utils@2.0.6: + dependencies: + escape-string-regexp: 2.0.0 + + stackframe@1.3.4: {} + + state-local@1.0.7: {} + + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + + stream-shift@1.0.3: {} + + stream@0.0.3: + dependencies: + component-emitter: 2.0.0 + + streamsearch@1.1.0: {} + + strict-uri-encode@2.0.0: {} + + string-argv@0.3.2: {} + + string-hash@1.1.3: {} + + string-length@4.0.2: + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + + string-template@0.2.1: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + string-width@7.2.0: + dependencies: + emoji-regex: 10.4.0 + get-east-asian-width: 1.3.0 + strip-ansi: 7.1.0 + + string.prototype.includes@2.0.1: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + + string.prototype.matchall@4.0.12: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + regexp.prototype.flags: 1.5.4 + set-function-name: 2.0.2 + side-channel: 1.1.0 + + string.prototype.repeat@1.0.0: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.24.0 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-bom@3.0.0: {} + + strip-bom@4.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-json-comments@3.1.1: {} + + style-dictionary@4.4.0: + dependencies: + '@bundled-es-modules/deepmerge': 4.3.1 + '@bundled-es-modules/glob': 10.4.2 + '@bundled-es-modules/memfs': 4.17.0 + '@zip.js/zip.js': 2.7.62 + chalk: 5.4.1 + change-case: 5.4.4 + commander: 12.1.0 + is-plain-obj: 4.1.0 + json5: 2.2.3 + patch-package: 8.0.0 + path-unified: 0.2.0 + prettier: 3.5.3 + tinycolor2: 1.6.0 + + style-inject@0.3.0: {} + + style-loader@3.3.4(webpack@5.99.9): + dependencies: + webpack: 5.99.9 + + style-mod@4.1.2: {} + + styled-jsx@5.1.6(@babel/core@7.27.4)(babel-plugin-macros@3.1.0)(react@18.3.1): + dependencies: + client-only: 0.0.1 + react: 18.3.1 + optionalDependencies: + '@babel/core': 7.27.4 + babel-plugin-macros: 3.1.0 + + stylis@4.2.0: {} + + sucrase@3.35.0: + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + commander: 4.1.1 + glob: 10.4.5 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.7 + ts-interface-checker: 0.1.13 + + super-regex@0.2.0: + dependencies: + clone-regexp: 3.0.0 + function-timeout: 0.1.1 + time-span: 5.1.0 + + superstruct@1.0.4: {} + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-color@8.1.1: + dependencies: + has-flag: 4.0.0 + + supports-color@9.4.0: {} + + supports-preserve-symlinks-flag@1.0.0: {} + + svg-icons-cli@0.0.5: + dependencies: + '@clack/prompts': 0.7.0 + clsx: 2.1.1 + glob: 10.4.5 + node-html-parser: 6.1.13 + svgo: 3.3.2 + tailwind-merge: 2.6.0 + tiny-parse-argv: 2.8.2 + typescript: 5.4.2 + + svg-parser@2.0.4: {} + + svgo@2.8.0: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.1.1 + stable: 0.1.8 + + svgo@3.3.2: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 5.1.0 + css-tree: 2.3.1 + css-what: 6.1.0 + csso: 5.0.5 + picocolors: 1.1.1 + + swagger-client@3.35.5: + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@scarf/scarf': 1.4.0 + '@swagger-api/apidom-core': 1.0.0-beta.41 + '@swagger-api/apidom-error': 1.0.0-beta.41 + '@swagger-api/apidom-json-pointer': 1.0.0-beta.41 + '@swagger-api/apidom-ns-openapi-3-1': 1.0.0-beta.41 + '@swagger-api/apidom-reference': 1.0.0-beta.41 + '@swaggerexpert/cookie': 2.0.2 + deepmerge: 4.3.1 + fast-json-patch: 3.1.1 + js-yaml: 4.1.0 + neotraverse: 0.6.18 + node-abort-controller: 3.1.1 + node-fetch-commonjs: 3.3.2 + openapi-path-templating: 2.2.1 + openapi-server-url-templating: 1.3.0 + ramda: 0.30.1 + ramda-adjunct: 5.1.0(ramda@0.30.1) + transitivePeerDependencies: + - debug + + swagger-ui-react@5.20.3(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime-corejs3': 7.27.6 + '@scarf/scarf': 1.4.0 + base64-js: 1.5.1 + classnames: 2.5.1 + css.escape: 1.5.1 + deep-extend: 0.6.0 + dompurify: 3.2.4 + ieee754: 1.2.1 + immutable: 3.8.2 + js-file-download: 0.4.12 + js-yaml: 4.1.0 + lodash: 4.17.21 + prop-types: 15.8.1 + randexp: 0.5.3 + randombytes: 2.1.0 + react: 18.3.1 + react-copy-to-clipboard: 5.1.0(react@18.3.1) + react-debounce-input: 3.3.0(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) + react-immutable-proptypes: 2.2.0(immutable@3.8.2) + react-immutable-pure-component: 2.2.2(immutable@3.8.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-inspector: 6.0.2(react@18.3.1) + react-redux: 9.2.0(@types/react@18.3.12)(react@18.3.1)(redux@5.0.1) + react-syntax-highlighter: 15.6.1(react@18.3.1) + redux: 5.0.1 + redux-immutable: 4.0.0(immutable@3.8.2) + remarkable: 2.0.1 + reselect: 5.1.1 + serialize-error: 8.1.0 + sha.js: 2.4.11 + swagger-client: 3.35.5 + url-parse: 1.5.10 + xml: 1.0.1 + xml-but-prettier: 1.0.1 + zenscroll: 4.0.2 + transitivePeerDependencies: + - '@types/react' + - debug + + symbol-tree@3.2.4: {} + + tabbable@4.0.0: {} + + tailwind-merge@2.6.0: {} + + tapable@2.2.2: {} + + tdigest@0.1.2: + dependencies: + bintrees: 1.0.2 + + terser-webpack-plugin@5.3.14(webpack@5.99.9): + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + jest-worker: 27.5.1 + schema-utils: 4.3.2 + serialize-javascript: 6.0.2 + terser: 5.41.0 + webpack: 5.99.9 + + terser@5.41.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.14.1 + commander: 2.20.3 + source-map-support: 0.5.21 + + test-exclude@6.0.0: + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + + text-table@0.2.0: {} + + thenify-all@1.6.0: + dependencies: + thenify: 3.3.1 + + thenify@3.3.1: + dependencies: + any-promise: 1.3.0 + + thingies@1.21.0(tslib@2.8.1): + dependencies: + tslib: 2.8.1 + + thread-stream@0.15.2: + dependencies: + real-require: 0.1.0 + + thread-stream@2.7.0: + dependencies: + real-require: 0.2.0 + + thriftrw@3.11.4: + dependencies: + bufrw: 1.4.0 + error: 7.0.2 + long: 2.4.0 + + time-span@5.1.0: + dependencies: + convert-hrtime: 5.0.0 + + timestamp-nano@1.0.1: {} + + tiny-invariant@1.3.3: {} + + tiny-parse-argv@2.8.2: {} + + tiny-warning@1.0.3: {} + + tinycolor2@1.6.0: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.4.5(picomatch@4.0.2) + picomatch: 4.0.2 + + tmp@0.0.33: + dependencies: + os-tmpdir: 1.0.2 + + tmpl@1.0.5: {} + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + toggle-selection@1.0.6: {} + + totalist@3.0.1: {} + + tough-cookie@4.1.4: + dependencies: + psl: 1.15.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + + tr46@0.0.3: {} + + tr46@3.0.0: + dependencies: + punycode: 2.3.1 + + traverse-chain@0.1.0: + optional: true + + tree-dump@1.0.3(tslib@2.8.1): + dependencies: + tslib: 2.8.1 + + tree-sitter-json@0.24.8(tree-sitter@0.21.1): + dependencies: + node-addon-api: 8.3.1 + node-gyp-build: 4.8.4 + optionalDependencies: + tree-sitter: 0.21.1 + optional: true + + tree-sitter@0.21.1: + dependencies: + node-addon-api: 8.3.1 + node-gyp-build: 4.8.4 + optional: true + + tree-sitter@0.22.4: + dependencies: + node-addon-api: 8.3.1 + node-gyp-build: 4.8.4 + optional: true + + ts-api-utils@1.4.3(typescript@5.4.2): + dependencies: + typescript: 5.4.2 + + ts-api-utils@2.1.0(typescript@5.4.2): + dependencies: + typescript: 5.4.2 + + ts-interface-checker@0.1.13: {} + + ts-jest@29.3.4(@babel/core@7.27.4)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.27.4))(jest@29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)))(typescript@5.4.2): + dependencies: + bs-logger: 0.2.6 + ejs: 3.1.10 + fast-json-stable-stringify: 2.1.0 + jest: 29.7.0(@types/node@20.16.7)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2)) + jest-util: 29.7.0 + json5: 2.2.3 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.7.2 + type-fest: 4.41.0 + typescript: 5.4.2 + yargs-parser: 21.1.1 + optionalDependencies: + '@babel/core': 7.27.4 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.27.4) + + ts-mixer@6.0.4: {} + + ts-node@10.9.2(@types/node@20.16.7)(typescript@5.4.2): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.16.7 + acorn: 8.14.1 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.4.2 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + ts-toolbelt@9.6.0: {} + + tsconfck@3.1.6(typescript@5.4.2): + optionalDependencies: + typescript: 5.4.2 + + tsconfig-paths@3.15.0: + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tslib@1.14.1: {} + + tslib@2.8.1: {} + + tsutils@3.21.0(typescript@5.4.2): + dependencies: + tslib: 1.14.1 + typescript: 5.4.2 + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + type-detect@4.0.8: {} + + type-fest@0.20.2: {} + + type-fest@0.21.3: {} + + type-fest@4.41.0: {} + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 + + types-ramda@0.30.1: + dependencies: + ts-toolbelt: 9.6.0 + + typescript-eslint@8.14.0(eslint@9.14.0)(typescript@5.4.2): + dependencies: + '@typescript-eslint/eslint-plugin': 8.14.0(@typescript-eslint/parser@8.14.0(eslint@9.14.0)(typescript@5.4.2))(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/parser': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + '@typescript-eslint/utils': 8.14.0(eslint@9.14.0)(typescript@5.4.2) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - eslint + - supports-color + + typescript@5.4.2: {} + + ua-parser-js@1.0.40: {} + + uc.micro@1.0.6: {} + + ufo@1.6.1: {} + + uint8-varint@2.0.4: + dependencies: + uint8arraylist: 2.4.8 + uint8arrays: 5.1.0 + + uint8arraylist@2.4.8: + dependencies: + uint8arrays: 5.1.0 + + uint8arrays@3.1.0: + dependencies: + multiformats: 9.9.0 + + uint8arrays@5.1.0: + dependencies: + multiformats: 13.3.6 + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + uncrypto@0.1.3: {} + + undici-types@6.19.8: {} + + unicode-canonical-property-names-ecmascript@2.0.1: {} + + unicode-match-property-ecmascript@2.0.0: + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.1 + unicode-property-aliases-ecmascript: 2.1.0 + + unicode-match-property-value-ecmascript@2.2.0: {} + + unicode-property-aliases-ecmascript@2.1.0: {} + + unicorn-magic@0.1.0: {} + + universalify@0.2.0: {} + + universalify@2.0.1: {} + + unraw@3.0.0: {} + + unrs-resolver@1.7.11: + dependencies: + napi-postinstall: 0.2.4 + optionalDependencies: + '@unrs/resolver-binding-darwin-arm64': 1.7.11 + '@unrs/resolver-binding-darwin-x64': 1.7.11 + '@unrs/resolver-binding-freebsd-x64': 1.7.11 + '@unrs/resolver-binding-linux-arm-gnueabihf': 1.7.11 + '@unrs/resolver-binding-linux-arm-musleabihf': 1.7.11 + '@unrs/resolver-binding-linux-arm64-gnu': 1.7.11 + '@unrs/resolver-binding-linux-arm64-musl': 1.7.11 + '@unrs/resolver-binding-linux-ppc64-gnu': 1.7.11 + '@unrs/resolver-binding-linux-riscv64-gnu': 1.7.11 + '@unrs/resolver-binding-linux-riscv64-musl': 1.7.11 + '@unrs/resolver-binding-linux-s390x-gnu': 1.7.11 + '@unrs/resolver-binding-linux-x64-gnu': 1.7.11 + '@unrs/resolver-binding-linux-x64-musl': 1.7.11 + '@unrs/resolver-binding-wasm32-wasi': 1.7.11 + '@unrs/resolver-binding-win32-arm64-msvc': 1.7.11 + '@unrs/resolver-binding-win32-ia32-msvc': 1.7.11 + '@unrs/resolver-binding-win32-x64-msvc': 1.7.11 + + unstorage@1.16.0(idb-keyval@6.2.2): + dependencies: + anymatch: 3.1.3 + chokidar: 4.0.3 + destr: 2.0.5 + h3: 1.15.3 + lru-cache: 10.4.3 + node-fetch-native: 1.6.6 + ofetch: 1.4.1 + ufo: 1.6.1 + optionalDependencies: + idb-keyval: 6.2.2 + + update-browserslist-db@1.1.3(browserslist@4.25.0): + dependencies: + browserslist: 4.25.0 + escalade: 3.2.0 + picocolors: 1.1.1 + + uqr@0.1.2: {} + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + url-parse@1.5.10: + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + + url@0.11.4: + dependencies: + punycode: 1.4.1 + qs: 6.14.0 + + use-callback-ref@1.3.3(@types/react@18.3.12)(react@18.3.1): + dependencies: + react: 18.3.1 + tslib: 2.8.1 + optionalDependencies: + '@types/react': 18.3.12 + + use-font-face-observer@1.3.0(react@18.3.1): + dependencies: + fontfaceobserver: 2.1.0 + react: 18.3.1 + + use-isomorphic-layout-effect@1.2.1(@types/react@18.3.12)(react@18.3.1): + dependencies: + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.12 + + use-sidecar@1.1.3(@types/react@18.3.12)(react@18.3.1): + dependencies: + detect-node-es: 1.1.0 + react: 18.3.1 + tslib: 2.8.1 + optionalDependencies: + '@types/react': 18.3.12 + + use-sync-external-store@1.2.0(react@18.3.1): + dependencies: + react: 18.3.1 + + use-sync-external-store@1.4.0(react@18.3.1): + dependencies: + react: 18.3.1 + + use-sync-external-store@1.5.0(react@18.3.1): + dependencies: + react: 18.3.1 + + utf-8-validate@5.0.10: + dependencies: + node-gyp-build: 4.8.4 + + util-deprecate@1.0.2: {} + + util@0.10.4: + dependencies: + inherits: 2.0.3 + + util@0.12.5: + dependencies: + inherits: 2.0.4 + is-arguments: 1.2.0 + is-generator-function: 1.1.0 + is-typed-array: 1.1.15 + which-typed-array: 1.1.19 + + uuid@8.3.2: {} + + uuid@9.0.1: {} + + v8-compile-cache-lib@3.0.1: {} + + v8-to-istanbul@9.3.0: + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.6 + convert-source-map: 2.0.0 + + valibot@0.38.0(typescript@5.4.2): + optionalDependencies: + typescript: 5.4.2 + + valtio@1.11.2(@types/react@18.3.12)(react@18.3.1): + dependencies: + proxy-compare: 2.5.1 + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.12 + react: 18.3.1 + + valtio@1.13.2(@types/react@18.3.12)(react@18.3.1): + dependencies: + derive-valtio: 0.1.0(valtio@1.13.2(@types/react@18.3.12)(react@18.3.1)) + proxy-compare: 2.6.0 + use-sync-external-store: 1.2.0(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.12 + react: 18.3.1 + + varint@6.0.0: {} + + viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4): + dependencies: + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.4.2)(zod@3.22.4) + isows: 1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.6.9(typescript@5.4.2)(zod@3.22.4) + ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53): + dependencies: + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.4.2)(zod@3.25.53) + isows: 1.0.6(ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.6.9(typescript@5.4.2)(zod@3.25.53) + ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.23.2(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53): + dependencies: + '@noble/curves': 1.8.1 + '@noble/hashes': 1.7.1 + '@scure/bip32': 1.6.2 + '@scure/bip39': 1.5.4 + abitype: 1.0.8(typescript@5.4.2)(zod@3.25.53) + isows: 1.0.6(ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.6.7(typescript@5.4.2)(zod@3.25.53) + ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + + viem@2.30.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.22.4): + dependencies: + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.2)(zod@3.22.4) + isows: 1.0.7(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.7.1(typescript@5.4.2)(zod@3.22.4) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + optional: true + + viem@2.30.6(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53): + dependencies: + '@noble/curves': 1.9.1 + '@noble/hashes': 1.8.0 + '@scure/bip32': 1.7.0 + '@scure/bip39': 1.6.0 + abitype: 1.0.8(typescript@5.4.2)(zod@3.25.53) + isows: 1.0.7(ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)) + ox: 0.7.1(typescript@5.4.2)(zod@3.25.53) + ws: 8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + optional: true + + vite-plugin-svgr@2.4.0(rollup@4.41.1)(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0)): + dependencies: + '@rollup/pluginutils': 5.1.4(rollup@4.41.1) + '@svgr/core': 6.5.1 + vite: 5.4.19(@types/node@20.16.7)(terser@5.41.0) + transitivePeerDependencies: + - rollup + - supports-color + + vite-tsconfig-paths@4.3.2(typescript@5.4.2)(vite@5.4.19(@types/node@20.16.7)(terser@5.41.0)): + dependencies: + debug: 4.4.1 + globrex: 0.1.2 + tsconfck: 3.1.6(typescript@5.4.2) + optionalDependencies: + vite: 5.4.19(@types/node@20.16.7)(terser@5.41.0) + transitivePeerDependencies: + - supports-color + - typescript + + vite@5.4.19(@types/node@20.16.7)(terser@5.41.0): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.4 + rollup: 4.41.1 + optionalDependencies: + '@types/node': 20.16.7 + fsevents: 2.3.3 + terser: 5.41.0 + + vscode-languageserver-types@3.17.5: {} + + w3c-keyname@2.2.8: {} + + w3c-xmlserializer@4.0.0: + dependencies: + xml-name-validator: 4.0.0 + + wagmi@2.14.15(@tanstack/query-core@5.55.4)(@tanstack/react-query@5.55.4(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53): + dependencies: + '@tanstack/react-query': 5.55.4(react@18.3.1) + '@wagmi/connectors': 5.7.11(@types/react@18.3.12)(@wagmi/core@2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)))(bufferutil@4.0.9)(react@18.3.1)(typescript@5.4.2)(utf-8-validate@5.0.10)(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53))(zod@3.25.53) + '@wagmi/core': 2.16.7(@tanstack/query-core@5.55.4)(@types/react@18.3.12)(react@18.3.1)(typescript@5.4.2)(use-sync-external-store@1.4.0(react@18.3.1))(viem@2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53)) + react: 18.3.1 + use-sync-external-store: 1.4.0(react@18.3.1) + viem: 2.23.14(bufferutil@4.0.9)(typescript@5.4.2)(utf-8-validate@5.0.10)(zod@3.25.53) + optionalDependencies: + typescript: 5.4.2 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@tanstack/query-core' + - '@types/react' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/kv' + - aws4fetch + - bufferutil + - db0 + - encoding + - immer + - ioredis + - supports-color + - uploadthing + - utf-8-validate + - zod + + walker@1.0.8: + dependencies: + makeerror: 1.0.12 + + watchpack@2.4.4: + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + + weald@1.0.4: + dependencies: + ms: 3.0.0-canary.1 + supports-color: 9.4.0 + + web-streams-polyfill@3.3.3: {} + + web-tree-sitter@0.24.5: + optional: true + + webextension-polyfill-ts@0.25.0: + dependencies: + webextension-polyfill: 0.7.0 + + webextension-polyfill@0.10.0: {} + + webextension-polyfill@0.12.0: {} + + webextension-polyfill@0.7.0: {} + + webidl-conversions@3.0.1: {} + + webidl-conversions@7.0.0: {} + + webpack-bundle-analyzer@4.10.1(bufferutil@4.0.9)(utf-8-validate@5.0.10): + dependencies: + '@discoveryjs/json-ext': 0.5.7 + acorn: 8.14.1 + acorn-walk: 8.3.4 + commander: 7.2.0 + debounce: 1.2.1 + escape-string-regexp: 4.0.0 + gzip-size: 6.0.0 + html-escaper: 2.0.2 + is-plain-object: 5.0.0 + opener: 1.5.2 + picocolors: 1.1.1 + sirv: 2.0.4 + ws: 7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + webpack-sources@3.3.2: {} + + webpack@5.99.9: + dependencies: + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + acorn: 8.14.1 + browserslist: 4.25.0 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.18.1 + es-module-lexer: 1.7.0 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 4.3.2 + tapable: 2.2.2 + terser-webpack-plugin: 5.3.14(webpack@5.99.9) + watchpack: 2.4.4 + webpack-sources: 3.3.2 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + + whatwg-encoding@2.0.0: + dependencies: + iconv-lite: 0.6.3 + + whatwg-mimetype@3.0.0: {} + + whatwg-url@11.0.0: + dependencies: + tr46: 3.0.0 + webidl-conversions: 7.0.0 + + whatwg-url@5.0.0: + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.0 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-module@2.0.1: {} + + which-typed-array@1.1.19: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + word-wrap@1.2.5: {} + + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrap-ansi@9.0.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 7.2.0 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + write-file-atomic@4.0.2: + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + + ws@7.5.10(bufferutil@4.0.9)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.9 + utf-8-validate: 5.0.10 + + ws@8.17.1(bufferutil@4.0.9)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.9 + utf-8-validate: 5.0.10 + + ws@8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.9 + utf-8-validate: 5.0.10 + + ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.9 + utf-8-validate: 5.0.10 + + ws@8.18.2(bufferutil@4.0.9)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.9 + utf-8-validate: 5.0.10 + + xml-but-prettier@1.0.1: + dependencies: + repeat-string: 1.6.1 + + xml-name-validator@4.0.0: {} + + xml@1.0.1: {} + + xmlchars@2.2.0: {} + + xmlhttprequest-ssl@2.1.2: {} + + xorshift@1.2.0: {} + + xss@1.0.15: + dependencies: + commander: 2.20.3 + cssfilter: 0.0.10 + + xtend@4.0.2: {} + + y18n@4.0.3: {} + + y18n@5.0.8: {} + + yallist@3.1.1: {} + + yaml@1.10.2: {} + + yaml@2.8.0: {} + + yargs-parser@18.1.3: + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + + yargs-parser@21.1.1: {} + + yargs@15.4.1: + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 18.1.3 + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yn@3.1.1: {} + + yocto-queue@0.1.0: {} + + zenscroll@4.0.2: {} + + zod@3.22.4: {} + + zod@3.25.53: {} + + zustand@5.0.0(@types/react@18.3.12)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1)): + optionalDependencies: + '@types/react': 18.3.12 + react: 18.3.1 + use-sync-external-store: 1.4.0(react@18.3.1) diff --git a/public/icons/name.d.ts b/public/icons/name.d.ts index cc3e13b2c2..74a05345bc 100644 --- a/public/icons/name.d.ts +++ b/public/icons/name.d.ts @@ -8,6 +8,7 @@ | "apps_list" | "apps_slim" | "apps" + | "arrows/arrow_drop_down" | "arrows/down-right" | "arrows/east-mini" | "arrows/east" @@ -27,6 +28,17 @@ | "brands/blockscout" | "brands/celenium" | "brands/graph" + | "brands/kadena/logo/dark" + | "brands/kadena/logo/light" + | "brands/kadena/rounded-filled/black" + | "brands/kadena/rounded-filled/green" + | "brands/kadena/rounded-filled/white" + | "brands/kadena/rounded/black" + | "brands/kadena/rounded/green" + | "brands/kadena/rounded/white" + | "brands/kadena/square/black" + | "brands/kadena/square/green" + | "brands/kadena/square/white" | "brands/safe" | "brands/solidity_scan" | "brands/tac" diff --git a/toolkit/chakra/select.tsx b/toolkit/chakra/select.tsx index 7f05e1fcb4..f03ee1cdf5 100644 --- a/toolkit/chakra/select.tsx +++ b/toolkit/chakra/select.tsx @@ -23,6 +23,8 @@ export interface SelectControlProps extends ChakraSelect.ControlProps { noIndicator?: boolean; triggerProps?: ChakraSelect.TriggerProps; loading?: boolean; + intent?: SelectProps['intent']; + type?: SelectProps['type']; } export const SelectControl = React.forwardRef< @@ -30,24 +32,65 @@ export const SelectControl = React.forwardRef< SelectControlProps >(function SelectControl(props, ref) { // NOTE: here defaultValue means the "default" option of the select, not its initial value - const { children, noIndicator, triggerProps, loading, defaultValue, ...rest } = props; + const { children, noIndicator, triggerProps, loading, defaultValue, type, intent, ...rest } = props; const context = useSelectContext(); const isDefaultValue = Array.isArray(defaultValue) ? context.value.every((item) => defaultValue.includes(item)) : context.value === defaultValue; + let background = 'transparent'; + let surface = 'inherit'; + + if (intent) { + if (intent === 'negative') { + background = 'var(--kda-color-background-semantic-negative-subtlest)'; + surface = 'var(--kda-color-link-semantic-negative)'; + } else if (intent === 'warning') { + background = 'var(--kda-color-background-semantic-warning-subtlest)'; + surface = 'var(--kda-color-link-semantic-warning)'; + } else if (intent === 'positive') { + background = 'var(--kda-color-background-semantic-positive-subtlest)'; + surface = 'var(--kda-color-link-semantic-positive)'; + } + } + return ( - { children } + + { children } + { (!noIndicator) && ( - + { !noIndicator && ( - + ) } @@ -118,13 +161,14 @@ interface SelectValueTextProps extends Omit(function SelectValueText(props, ref) { - const { children, size, required, invalid, errorText, ...rest } = props; + const { children, size, required, invalid, errorText, type, ...rest } = props; const context = useSelectContext(); const content = (() => { @@ -154,12 +198,17 @@ export const SelectValueText = React.forwardRef< return ( <> { label } - + { item.icon } { item.renderLabel ? item.renderLabel() : context.collection.stringifyItem(item) } @@ -235,18 +284,20 @@ export interface SelectProps extends SelectRootProps { portalled?: boolean; loading?: boolean; errorText?: string; + intent?: 'info' | 'positive' | 'warning' | 'negative'; contentProps?: SelectContentProps; + type?: 'default' | 'inline' | 'compact'; } export const Select = React.forwardRef((props, ref) => { - const { collection, placeholder, portalled = true, loading, errorText, contentProps, ...rest } = props; + const { collection, placeholder, portalled = true, loading, errorText, contentProps, type, ...rest } = props; return ( - + ((props, ref) ); }); +export const CompactSelect = React.forwardRef((props, ref) => { + const { collection, placeholder, portalled = true, loading, errorText, contentProps, intent, ...rest } = props; + return ( + + + + + + { collection.items.map((item: SelectOption) => ( + + { item.label } + + )) } + + + ); +}); + +export const InlineSelect = React.forwardRef((props, ref) => { + const { collection, placeholder, portalled = true, loading, errorText, contentProps, intent, ...rest } = props; + return ( + + + + + + { collection.items.map((item: SelectOption) => ( + + { item.label } + + )) } + + + ); +}); + export interface SelectAsyncProps extends Omit { placeholder: string; portalled?: boolean; diff --git a/toolkit/theme/design-system/build/icons/ABI/svg.ABI.tokens.json b/toolkit/theme/design-system/build/icons/ABI/svg.ABI.tokens.json new file mode 100644 index 0000000000..fc55efa6a6 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/ABI/svg.ABI.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "ABI": { + "$type": "icon", + "$name": "ABI", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/ABI_slim/svg.ABI_slim.tokens.json b/toolkit/theme/design-system/build/icons/ABI_slim/svg.ABI_slim.tokens.json new file mode 100644 index 0000000000..4a1f7c08a4 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/ABI_slim/svg.ABI_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "ABI_slim": { + "$type": "icon", + "$name": "ABI_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/API/svg.API.tokens.json b/toolkit/theme/design-system/build/icons/API/svg.API.tokens.json new file mode 100644 index 0000000000..80c4e842ca --- /dev/null +++ b/toolkit/theme/design-system/build/icons/API/svg.API.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "API": { + "$type": "icon", + "$name": "API", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/API_slim/svg.API_slim.tokens.json b/toolkit/theme/design-system/build/icons/API_slim/svg.API_slim.tokens.json new file mode 100644 index 0000000000..336b8528dd --- /dev/null +++ b/toolkit/theme/design-system/build/icons/API_slim/svg.API_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "API_slim": { + "$type": "icon", + "$name": "API_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/ENS/svg.ENS.tokens.json b/toolkit/theme/design-system/build/icons/ENS/svg.ENS.tokens.json new file mode 100644 index 0000000000..8e1e4541da --- /dev/null +++ b/toolkit/theme/design-system/build/icons/ENS/svg.ENS.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "ENS": { + "$type": "icon", + "$name": "ENS", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/ENS_slim/svg.ENS_slim.tokens.json b/toolkit/theme/design-system/build/icons/ENS_slim/svg.ENS_slim.tokens.json new file mode 100644 index 0000000000..d1860538a9 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/ENS_slim/svg.ENS_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "ENS_slim": { + "$type": "icon", + "$name": "ENS_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/MUD/svg.MUD.tokens.json b/toolkit/theme/design-system/build/icons/MUD/svg.MUD.tokens.json new file mode 100644 index 0000000000..972c3c3861 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/MUD/svg.MUD.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "MUD": { + "$type": "icon", + "$name": "MUD", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/MUD_menu/svg.MUD_menu.tokens.json b/toolkit/theme/design-system/build/icons/MUD_menu/svg.MUD_menu.tokens.json new file mode 100644 index 0000000000..d577fdb11f --- /dev/null +++ b/toolkit/theme/design-system/build/icons/MUD_menu/svg.MUD_menu.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "MUD_menu": { + "$type": "icon", + "$name": "MUD_menu", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/RPC/svg.RPC.tokens.json b/toolkit/theme/design-system/build/icons/RPC/svg.RPC.tokens.json new file mode 100644 index 0000000000..d1f5f47f41 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/RPC/svg.RPC.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "RPC": { + "$type": "icon", + "$name": "RPC", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/apps/svg.apps.tokens.json b/toolkit/theme/design-system/build/icons/apps/svg.apps.tokens.json new file mode 100644 index 0000000000..79bf628bc1 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/apps/svg.apps.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "apps": { + "$type": "icon", + "$name": "apps", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/apps_list/svg.apps_list.tokens.json b/toolkit/theme/design-system/build/icons/apps_list/svg.apps_list.tokens.json new file mode 100644 index 0000000000..fbcd7ad730 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/apps_list/svg.apps_list.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "apps_list": { + "$type": "icon", + "$name": "apps_list", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/apps_slim/svg.apps_slim.tokens.json b/toolkit/theme/design-system/build/icons/apps_slim/svg.apps_slim.tokens.json new file mode 100644 index 0000000000..3655a18fe9 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/apps_slim/svg.apps_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "apps_slim": { + "$type": "icon", + "$name": "apps_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/arrows/svg.arrows.tokens.json b/toolkit/theme/design-system/build/icons/arrows/svg.arrows.tokens.json new file mode 100644 index 0000000000..5eafb5131b --- /dev/null +++ b/toolkit/theme/design-system/build/icons/arrows/svg.arrows.tokens.json @@ -0,0 +1,88 @@ +{ + "kda": { + "icons": { + "arrows": { + "arrow_drop_down": { + "$type": "icon", + "$name": "arrow_drop_down", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "down-right": { + "$type": "icon", + "$name": "down-right", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "east-mini": { + "$type": "icon", + "$name": "east-mini", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "east": { + "$type": "icon", + "$name": "east", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "north-east": { + "$type": "icon", + "$name": "north-east", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "south-east": { + "$type": "icon", + "$name": "south-east", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "up-down": { + "$type": "icon", + "$name": "up-down", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "up-head": { + "$type": "icon", + "$name": "up-head", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/beta/svg.beta.tokens.json b/toolkit/theme/design-system/build/icons/beta/svg.beta.tokens.json new file mode 100644 index 0000000000..0b90d603f1 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/beta/svg.beta.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "beta": { + "$type": "icon", + "$name": "beta", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 52, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/beta_xs/svg.beta_xs.tokens.json b/toolkit/theme/design-system/build/icons/beta_xs/svg.beta_xs.tokens.json new file mode 100644 index 0000000000..4722f5b7a7 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/beta_xs/svg.beta_xs.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "beta_xs": { + "$type": "icon", + "$name": "beta_xs", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/blob/svg.blob.tokens.json b/toolkit/theme/design-system/build/icons/blob/svg.blob.tokens.json new file mode 100644 index 0000000000..d3db2d102e --- /dev/null +++ b/toolkit/theme/design-system/build/icons/blob/svg.blob.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "blob": { + "$type": "icon", + "$name": "blob", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/blobs/svg.blobs.tokens.json b/toolkit/theme/design-system/build/icons/blobs/svg.blobs.tokens.json new file mode 100644 index 0000000000..2cf50401de --- /dev/null +++ b/toolkit/theme/design-system/build/icons/blobs/svg.blobs.tokens.json @@ -0,0 +1,38 @@ +{ + "kda": { + "icons": { + "blobs": { + "image": { + "$type": "icon", + "$name": "image", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "raw": { + "$type": "icon", + "$name": "raw", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "text": { + "$type": "icon", + "$name": "text", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/block/svg.block.tokens.json b/toolkit/theme/design-system/build/icons/block/svg.block.tokens.json new file mode 100644 index 0000000000..7d341988d2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/block/svg.block.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "block": { + "$type": "icon", + "$name": "block", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/block_countdown/svg.block_countdown.tokens.json b/toolkit/theme/design-system/build/icons/block_countdown/svg.block_countdown.tokens.json new file mode 100644 index 0000000000..a7b309c3bf --- /dev/null +++ b/toolkit/theme/design-system/build/icons/block_countdown/svg.block_countdown.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "block_countdown": { + "$type": "icon", + "$name": "block_countdown", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 31.264864864864865, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/block_slim/svg.block_slim.tokens.json b/toolkit/theme/design-system/build/icons/block_slim/svg.block_slim.tokens.json new file mode 100644 index 0000000000..0f32df6186 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/block_slim/svg.block_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "block_slim": { + "$type": "icon", + "$name": "block_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/brands/svg.brands.tokens.json b/toolkit/theme/design-system/build/icons/brands/svg.brands.tokens.json new file mode 100644 index 0000000000..8d4ee861fc --- /dev/null +++ b/toolkit/theme/design-system/build/icons/brands/svg.brands.tokens.json @@ -0,0 +1,209 @@ +{ + "kda": { + "icons": { + "brands": { + "blockscout": { + "$type": "icon", + "$name": "blockscout", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "celenium": { + "$type": "icon", + "$name": "celenium", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "graph": { + "$type": "icon", + "$name": "graph", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "kadena": { + "logo": { + "dark": { + "$type": "icon", + "$name": "dark", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 84.375, + "height": 24 + } + }, + "light": { + "$type": "icon", + "$name": "light", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 84.375, + "height": 24 + } + } + }, + "rounded": { + "black": { + "$type": "icon", + "$name": "black", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "green": { + "$type": "icon", + "$name": "green", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "white": { + "$type": "icon", + "$name": "white", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "rounded-filled": { + "black": { + "$type": "icon", + "$name": "black", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "green": { + "$type": "icon", + "$name": "green", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "white": { + "$type": "icon", + "$name": "white", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "square": { + "black": { + "$type": "icon", + "$name": "black", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "green": { + "$type": "icon", + "$name": "green", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "white": { + "$type": "icon", + "$name": "white", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + }, + "safe": { + "$type": "icon", + "$name": "safe", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24.003628117913834, + "height": 24 + } + }, + "solidity_scan": { + "$type": "icon", + "$name": "solidity_scan", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 27.599999999999998, + "height": 24 + } + }, + "tac": { + "$type": "icon", + "$name": "tac", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "ton": { + "$type": "icon", + "$name": "ton", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/burger/svg.burger.tokens.json b/toolkit/theme/design-system/build/icons/burger/svg.burger.tokens.json new file mode 100644 index 0000000000..760cbb76d7 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/burger/svg.burger.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "burger": { + "$type": "icon", + "$name": "burger", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/certified/svg.certified.tokens.json b/toolkit/theme/design-system/build/icons/certified/svg.certified.tokens.json new file mode 100644 index 0000000000..e487752e47 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/certified/svg.certified.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "certified": { + "$type": "icon", + "$name": "certified", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/check/svg.check.tokens.json b/toolkit/theme/design-system/build/icons/check/svg.check.tokens.json new file mode 100644 index 0000000000..6c7e065955 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/check/svg.check.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "check": { + "$type": "icon", + "$name": "check", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/checkered_flag/svg.checkered_flag.tokens.json b/toolkit/theme/design-system/build/icons/checkered_flag/svg.checkered_flag.tokens.json new file mode 100644 index 0000000000..a2bfc37961 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/checkered_flag/svg.checkered_flag.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "checkered_flag": { + "$type": "icon", + "$name": "checkered_flag", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.5, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/clock-light/svg.clock-light.tokens.json b/toolkit/theme/design-system/build/icons/clock-light/svg.clock-light.tokens.json new file mode 100644 index 0000000000..8e1793b827 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/clock-light/svg.clock-light.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "clock-light": { + "$type": "icon", + "$name": "clock-light", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/clock/svg.clock.tokens.json b/toolkit/theme/design-system/build/icons/clock/svg.clock.tokens.json new file mode 100644 index 0000000000..a974032a7a --- /dev/null +++ b/toolkit/theme/design-system/build/icons/clock/svg.clock.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "clock": { + "$type": "icon", + "$name": "clock", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/close/svg.close.tokens.json b/toolkit/theme/design-system/build/icons/close/svg.close.tokens.json new file mode 100644 index 0000000000..155f53ef79 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/close/svg.close.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "close": { + "$type": "icon", + "$name": "close", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/coins/svg.coins.tokens.json b/toolkit/theme/design-system/build/icons/coins/svg.coins.tokens.json new file mode 100644 index 0000000000..46d761a6dd --- /dev/null +++ b/toolkit/theme/design-system/build/icons/coins/svg.coins.tokens.json @@ -0,0 +1,18 @@ +{ + "kda": { + "icons": { + "coins": { + "bitcoin": { + "$type": "icon", + "$name": "bitcoin", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/collection/svg.collection.tokens.json b/toolkit/theme/design-system/build/icons/collection/svg.collection.tokens.json new file mode 100644 index 0000000000..14f9d64c08 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/collection/svg.collection.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "collection": { + "$type": "icon", + "$name": "collection", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/columns/svg.columns.tokens.json b/toolkit/theme/design-system/build/icons/columns/svg.columns.tokens.json new file mode 100644 index 0000000000..3a5ce422f9 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/columns/svg.columns.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "columns": { + "$type": "icon", + "$name": "columns", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/contracts/svg.contracts.tokens.json b/toolkit/theme/design-system/build/icons/contracts/svg.contracts.tokens.json new file mode 100644 index 0000000000..164734b951 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/contracts/svg.contracts.tokens.json @@ -0,0 +1,58 @@ +{ + "kda": { + "icons": { + "contracts": { + "proxy": { + "$type": "icon", + "$name": "proxy", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "regular": { + "$type": "icon", + "$name": "regular", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "regular_many": { + "$type": "icon", + "$name": "regular_many", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "verified": { + "$type": "icon", + "$name": "verified", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "verified_many": { + "$type": "icon", + "$name": "verified_many", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/copy/svg.copy.tokens.json b/toolkit/theme/design-system/build/icons/copy/svg.copy.tokens.json new file mode 100644 index 0000000000..773276ba48 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/copy/svg.copy.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "copy": { + "$type": "icon", + "$name": "copy", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/copy_check/svg.copy_check.tokens.json b/toolkit/theme/design-system/build/icons/copy_check/svg.copy_check.tokens.json new file mode 100644 index 0000000000..5dd0f616ae --- /dev/null +++ b/toolkit/theme/design-system/build/icons/copy_check/svg.copy_check.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "copy_check": { + "$type": "icon", + "$name": "copy_check", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/cross/svg.cross.tokens.json b/toolkit/theme/design-system/build/icons/cross/svg.cross.tokens.json new file mode 100644 index 0000000000..1fbd8a4b73 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/cross/svg.cross.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "cross": { + "$type": "icon", + "$name": "cross", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/delete/svg.delete.tokens.json b/toolkit/theme/design-system/build/icons/delete/svg.delete.tokens.json new file mode 100644 index 0000000000..89d1cbe450 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/delete/svg.delete.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "delete": { + "$type": "icon", + "$name": "delete", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/dex-tracker/svg.dex-tracker.tokens.json b/toolkit/theme/design-system/build/icons/dex-tracker/svg.dex-tracker.tokens.json new file mode 100644 index 0000000000..ecf77eebd4 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/dex-tracker/svg.dex-tracker.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "dex-tracker": { + "$type": "icon", + "$name": "dex-tracker", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/docs/svg.docs.tokens.json b/toolkit/theme/design-system/build/icons/docs/svg.docs.tokens.json new file mode 100644 index 0000000000..5c74574559 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/docs/svg.docs.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "docs": { + "$type": "icon", + "$name": "docs", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/donate/svg.donate.tokens.json b/toolkit/theme/design-system/build/icons/donate/svg.donate.tokens.json new file mode 100644 index 0000000000..8a0936b217 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/donate/svg.donate.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "donate": { + "$type": "icon", + "$name": "donate", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/dots/svg.dots.tokens.json b/toolkit/theme/design-system/build/icons/dots/svg.dots.tokens.json new file mode 100644 index 0000000000..1715f3b896 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/dots/svg.dots.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "dots": { + "$type": "icon", + "$name": "dots", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 108, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/edit/svg.edit.tokens.json b/toolkit/theme/design-system/build/icons/edit/svg.edit.tokens.json new file mode 100644 index 0000000000..97815f63ae --- /dev/null +++ b/toolkit/theme/design-system/build/icons/edit/svg.edit.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "edit": { + "$type": "icon", + "$name": "edit", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/email/svg.email.tokens.json b/toolkit/theme/design-system/build/icons/email/svg.email.tokens.json new file mode 100644 index 0000000000..5818dd1134 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/email/svg.email.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "email": { + "$type": "icon", + "$name": "email", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/empty_search_result/svg.empty_search_result.tokens.json b/toolkit/theme/design-system/build/icons/empty_search_result/svg.empty_search_result.tokens.json new file mode 100644 index 0000000000..fd3432adfe --- /dev/null +++ b/toolkit/theme/design-system/build/icons/empty_search_result/svg.empty_search_result.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "empty_search_result": { + "$type": "icon", + "$name": "empty_search_result", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 31.135135135135137, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/error-pages/svg.error-pages.tokens.json b/toolkit/theme/design-system/build/icons/error-pages/svg.error-pages.tokens.json new file mode 100644 index 0000000000..ed3273a1e7 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/error-pages/svg.error-pages.tokens.json @@ -0,0 +1,554 @@ +{ + "kda": { + "icons": { + "error-pages": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "403", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 47.76, + "height": 24 + } + }, + { + "$type": "icon", + "$name": "404", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 48.239999999999995, + "height": 24 + } + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "422", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 48.239999999999995, + "height": 24 + } + }, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "429", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 47.76237623762376, + "height": 24 + } + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "500", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 46.81188118811881, + "height": 24 + } + } + ] + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/explorer/svg.explorer.tokens.json b/toolkit/theme/design-system/build/icons/explorer/svg.explorer.tokens.json new file mode 100644 index 0000000000..c38b6ae7a5 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/explorer/svg.explorer.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "explorer": { + "$type": "icon", + "$name": "explorer", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/files/svg.files.tokens.json b/toolkit/theme/design-system/build/icons/files/svg.files.tokens.json new file mode 100644 index 0000000000..5e7eadb85c --- /dev/null +++ b/toolkit/theme/design-system/build/icons/files/svg.files.tokens.json @@ -0,0 +1,68 @@ +{ + "kda": { + "icons": { + "files": { + "csv": { + "$type": "icon", + "$name": "csv", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "image": { + "$type": "icon", + "$name": "image", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "json": { + "$type": "icon", + "$name": "json", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "placeholder": { + "$type": "icon", + "$name": "placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24.48, + "height": 24 + } + }, + "sol": { + "$type": "icon", + "$name": "sol", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "yul": { + "$type": "icon", + "$name": "yul", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/filter/svg.filter.tokens.json b/toolkit/theme/design-system/build/icons/filter/svg.filter.tokens.json new file mode 100644 index 0000000000..a03a72a69c --- /dev/null +++ b/toolkit/theme/design-system/build/icons/filter/svg.filter.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "filter": { + "$type": "icon", + "$name": "filter", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/flame/svg.flame.tokens.json b/toolkit/theme/design-system/build/icons/flame/svg.flame.tokens.json new file mode 100644 index 0000000000..0615a889ab --- /dev/null +++ b/toolkit/theme/design-system/build/icons/flame/svg.flame.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "flame": { + "$type": "icon", + "$name": "flame", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/games/svg.games.tokens.json b/toolkit/theme/design-system/build/icons/games/svg.games.tokens.json new file mode 100644 index 0000000000..27a6c2fa74 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/games/svg.games.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "games": { + "$type": "icon", + "$name": "games", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/gas/svg.gas.tokens.json b/toolkit/theme/design-system/build/icons/gas/svg.gas.tokens.json new file mode 100644 index 0000000000..37807c1455 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/gas/svg.gas.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "gas": { + "$type": "icon", + "$name": "gas", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/gas_xl/svg.gas_xl.tokens.json b/toolkit/theme/design-system/build/icons/gas_xl/svg.gas_xl.tokens.json new file mode 100644 index 0000000000..d7b23ccf81 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/gas_xl/svg.gas_xl.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "gas_xl": { + "$type": "icon", + "$name": "gas_xl", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/gear/svg.gear.tokens.json b/toolkit/theme/design-system/build/icons/gear/svg.gear.tokens.json new file mode 100644 index 0000000000..840b91a02c --- /dev/null +++ b/toolkit/theme/design-system/build/icons/gear/svg.gear.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "gear": { + "$type": "icon", + "$name": "gear", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/gear_slim/svg.gear_slim.tokens.json b/toolkit/theme/design-system/build/icons/gear_slim/svg.gear_slim.tokens.json new file mode 100644 index 0000000000..b73ad302f6 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/gear_slim/svg.gear_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "gear_slim": { + "$type": "icon", + "$name": "gear_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/globe-b/svg.globe-b.tokens.json b/toolkit/theme/design-system/build/icons/globe-b/svg.globe-b.tokens.json new file mode 100644 index 0000000000..ae0d8d0691 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/globe-b/svg.globe-b.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "globe-b": { + "$type": "icon", + "$name": "globe-b", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/globe/svg.globe.tokens.json b/toolkit/theme/design-system/build/icons/globe/svg.globe.tokens.json new file mode 100644 index 0000000000..a4f11e332d --- /dev/null +++ b/toolkit/theme/design-system/build/icons/globe/svg.globe.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "globe": { + "$type": "icon", + "$name": "globe", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/graphQL/svg.graphQL.tokens.json b/toolkit/theme/design-system/build/icons/graphQL/svg.graphQL.tokens.json new file mode 100644 index 0000000000..438b89859d --- /dev/null +++ b/toolkit/theme/design-system/build/icons/graphQL/svg.graphQL.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "graphQL": { + "$type": "icon", + "$name": "graphQL", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/heart_filled/svg.heart_filled.tokens.json b/toolkit/theme/design-system/build/icons/heart_filled/svg.heart_filled.tokens.json new file mode 100644 index 0000000000..99bdcbadba --- /dev/null +++ b/toolkit/theme/design-system/build/icons/heart_filled/svg.heart_filled.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "heart_filled": { + "$type": "icon", + "$name": "heart_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.857142857142854, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/heart_outline/svg.heart_outline.tokens.json b/toolkit/theme/design-system/build/icons/heart_outline/svg.heart_outline.tokens.json new file mode 100644 index 0000000000..bc96d0434c --- /dev/null +++ b/toolkit/theme/design-system/build/icons/heart_outline/svg.heart_outline.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "heart_outline": { + "$type": "icon", + "$name": "heart_outline", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.857142857142854, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/hourglass/svg.hourglass.tokens.json b/toolkit/theme/design-system/build/icons/hourglass/svg.hourglass.tokens.json new file mode 100644 index 0000000000..cc117c1884 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/hourglass/svg.hourglass.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "hourglass": { + "$type": "icon", + "$name": "hourglass", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/info/svg.info.tokens.json b/toolkit/theme/design-system/build/icons/info/svg.info.tokens.json new file mode 100644 index 0000000000..446fbc6c68 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/info/svg.info.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "info": { + "$type": "icon", + "$name": "info", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/info_filled/svg.info_filled.tokens.json b/toolkit/theme/design-system/build/icons/info_filled/svg.info_filled.tokens.json new file mode 100644 index 0000000000..26ca532a3e --- /dev/null +++ b/toolkit/theme/design-system/build/icons/info_filled/svg.info_filled.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "info_filled": { + "$type": "icon", + "$name": "info_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/integration/svg.integration.tokens.json b/toolkit/theme/design-system/build/icons/integration/svg.integration.tokens.json new file mode 100644 index 0000000000..5615c26838 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/integration/svg.integration.tokens.json @@ -0,0 +1,28 @@ +{ + "kda": { + "icons": { + "integration": { + "full": { + "$type": "icon", + "$name": "full", + "$description": "", + "$value": " ", + "$dimensions": { + "width": null, + "height": null + } + }, + "partial": { + "$type": "icon", + "$name": "partial", + "$description": "", + "$value": " ", + "$dimensions": { + "width": null, + "height": null + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/internal_txns/svg.internal_txns.tokens.json b/toolkit/theme/design-system/build/icons/internal_txns/svg.internal_txns.tokens.json new file mode 100644 index 0000000000..6e7fe010c2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/internal_txns/svg.internal_txns.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "internal_txns": { + "$type": "icon", + "$name": "internal_txns", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/interop/svg.interop.tokens.json b/toolkit/theme/design-system/build/icons/interop/svg.interop.tokens.json new file mode 100644 index 0000000000..3567b18066 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/interop/svg.interop.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "interop": { + "$type": "icon", + "$name": "interop", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/key/svg.key.tokens.json b/toolkit/theme/design-system/build/icons/key/svg.key.tokens.json new file mode 100644 index 0000000000..61928c769a --- /dev/null +++ b/toolkit/theme/design-system/build/icons/key/svg.key.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "key": { + "$type": "icon", + "$name": "key", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/lightning/svg.lightning.tokens.json b/toolkit/theme/design-system/build/icons/lightning/svg.lightning.tokens.json new file mode 100644 index 0000000000..3ec98568f6 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/lightning/svg.lightning.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "lightning": { + "$type": "icon", + "$name": "lightning", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/lightning_navbar/svg.lightning_navbar.tokens.json b/toolkit/theme/design-system/build/icons/lightning_navbar/svg.lightning_navbar.tokens.json new file mode 100644 index 0000000000..5516b746e3 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/lightning_navbar/svg.lightning_navbar.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "lightning_navbar": { + "$type": "icon", + "$name": "lightning_navbar", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/link/svg.link.tokens.json b/toolkit/theme/design-system/build/icons/link/svg.link.tokens.json new file mode 100644 index 0000000000..ee42ebc625 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/link/svg.link.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "link": { + "$type": "icon", + "$name": "link", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/link_external/svg.link_external.tokens.json b/toolkit/theme/design-system/build/icons/link_external/svg.link_external.tokens.json new file mode 100644 index 0000000000..108c13c25a --- /dev/null +++ b/toolkit/theme/design-system/build/icons/link_external/svg.link_external.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "link_external": { + "$type": "icon", + "$name": "link_external", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/lock/svg.lock.tokens.json b/toolkit/theme/design-system/build/icons/lock/svg.lock.tokens.json new file mode 100644 index 0000000000..2005c06fbd --- /dev/null +++ b/toolkit/theme/design-system/build/icons/lock/svg.lock.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "lock": { + "$type": "icon", + "$name": "lock", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/merits/svg.merits.tokens.json b/toolkit/theme/design-system/build/icons/merits/svg.merits.tokens.json new file mode 100644 index 0000000000..5e1bbe3ec7 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/merits/svg.merits.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "merits": { + "$type": "icon", + "$name": "merits", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/merits_colored/svg.merits_colored.tokens.json b/toolkit/theme/design-system/build/icons/merits_colored/svg.merits_colored.tokens.json new file mode 100644 index 0000000000..71ec757828 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/merits_colored/svg.merits_colored.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "merits_colored": { + "$type": "icon", + "$name": "merits_colored", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.818181818181817, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/merits_slim/svg.merits_slim.tokens.json b/toolkit/theme/design-system/build/icons/merits_slim/svg.merits_slim.tokens.json new file mode 100644 index 0000000000..62a8231aa2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/merits_slim/svg.merits_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "merits_slim": { + "$type": "icon", + "$name": "merits_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/merits_with_dot/svg.merits_with_dot.tokens.json b/toolkit/theme/design-system/build/icons/merits_with_dot/svg.merits_with_dot.tokens.json new file mode 100644 index 0000000000..b9a7fcedea --- /dev/null +++ b/toolkit/theme/design-system/build/icons/merits_with_dot/svg.merits_with_dot.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "merits_with_dot": { + "$type": "icon", + "$name": "merits_with_dot", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/merits_with_dot_slim/svg.merits_with_dot_slim.tokens.json b/toolkit/theme/design-system/build/icons/merits_with_dot_slim/svg.merits_with_dot_slim.tokens.json new file mode 100644 index 0000000000..8e351d73d8 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/merits_with_dot_slim/svg.merits_with_dot_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "merits_with_dot_slim": { + "$type": "icon", + "$name": "merits_with_dot_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/minus/svg.minus.tokens.json b/toolkit/theme/design-system/build/icons/minus/svg.minus.tokens.json new file mode 100644 index 0000000000..1106215da2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/minus/svg.minus.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "minus": { + "$type": "icon", + "$name": "minus", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/monaco/svg.monaco.tokens.json b/toolkit/theme/design-system/build/icons/monaco/svg.monaco.tokens.json new file mode 100644 index 0000000000..3fbbbe3083 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/monaco/svg.monaco.tokens.json @@ -0,0 +1,88 @@ +{ + "kda": { + "icons": { + "monaco": { + "cargo": { + "$type": "icon", + "$name": "cargo", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.947065808386977, + "height": 24 + } + }, + "file": { + "$type": "icon", + "$name": "file", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "folder-open": { + "$type": "icon", + "$name": "folder-open", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "folder": { + "$type": "icon", + "$name": "folder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "rust": { + "$type": "icon", + "$name": "rust", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "solidity": { + "$type": "icon", + "$name": "solidity", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "toml": { + "$type": "icon", + "$name": "toml", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "Transparent Logo": { + "$type": "icon", + "$name": "Transparent Logo", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 27.71281334220408, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/moon-with-star/svg.moon-with-star.tokens.json b/toolkit/theme/design-system/build/icons/moon-with-star/svg.moon-with-star.tokens.json new file mode 100644 index 0000000000..f4b383e6e9 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/moon-with-star/svg.moon-with-star.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "moon-with-star": { + "$type": "icon", + "$name": "moon-with-star", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/moon/svg.moon.tokens.json b/toolkit/theme/design-system/build/icons/moon/svg.moon.tokens.json new file mode 100644 index 0000000000..e4e4f6bf5a --- /dev/null +++ b/toolkit/theme/design-system/build/icons/moon/svg.moon.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "moon": { + "$type": "icon", + "$name": "moon", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/networks/svg.networks.tokens.json b/toolkit/theme/design-system/build/icons/networks/svg.networks.tokens.json new file mode 100644 index 0000000000..9625cd65c2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/networks/svg.networks.tokens.json @@ -0,0 +1,36 @@ +{ + "kda": { + "icons": { + "networks": { + "$type": "icon", + "$name": "networks", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + }, + "icon-placeholder": { + "$type": "icon", + "$name": "icon-placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "logo-placeholder": { + "$type": "icon", + "$name": "logo-placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 120, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/nft_shield/svg.nft_shield.tokens.json b/toolkit/theme/design-system/build/icons/nft_shield/svg.nft_shield.tokens.json new file mode 100644 index 0000000000..fd16c36d61 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/nft_shield/svg.nft_shield.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "nft_shield": { + "$type": "icon", + "$name": "nft_shield", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/open-link/svg.open-link.tokens.json b/toolkit/theme/design-system/build/icons/open-link/svg.open-link.tokens.json new file mode 100644 index 0000000000..21b9e8ca65 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/open-link/svg.open-link.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "open-link": { + "$type": "icon", + "$name": "open-link", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/operation/svg.operation.tokens.json b/toolkit/theme/design-system/build/icons/operation/svg.operation.tokens.json new file mode 100644 index 0000000000..946571468d --- /dev/null +++ b/toolkit/theme/design-system/build/icons/operation/svg.operation.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "operation": { + "$type": "icon", + "$name": "operation", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/operation_slim/svg.operation_slim.tokens.json b/toolkit/theme/design-system/build/icons/operation_slim/svg.operation_slim.tokens.json new file mode 100644 index 0000000000..7fb7ec6120 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/operation_slim/svg.operation_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "operation_slim": { + "$type": "icon", + "$name": "operation_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/output_roots/svg.output_roots.tokens.json b/toolkit/theme/design-system/build/icons/output_roots/svg.output_roots.tokens.json new file mode 100644 index 0000000000..bd10484cb2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/output_roots/svg.output_roots.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "output_roots": { + "$type": "icon", + "$name": "output_roots", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/payment_link/svg.payment_link.tokens.json b/toolkit/theme/design-system/build/icons/payment_link/svg.payment_link.tokens.json new file mode 100644 index 0000000000..6b627daa86 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/payment_link/svg.payment_link.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "payment_link": { + "$type": "icon", + "$name": "payment_link", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/plus/svg.plus.tokens.json b/toolkit/theme/design-system/build/icons/plus/svg.plus.tokens.json new file mode 100644 index 0000000000..94a965b52d --- /dev/null +++ b/toolkit/theme/design-system/build/icons/plus/svg.plus.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "plus": { + "$type": "icon", + "$name": "plus", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/private_tags_slim/svg.private_tags_slim.tokens.json b/toolkit/theme/design-system/build/icons/private_tags_slim/svg.private_tags_slim.tokens.json new file mode 100644 index 0000000000..8ad5ea37f8 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/private_tags_slim/svg.private_tags_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "private_tags_slim": { + "$type": "icon", + "$name": "private_tags_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/privattags/svg.privattags.tokens.json b/toolkit/theme/design-system/build/icons/privattags/svg.privattags.tokens.json new file mode 100644 index 0000000000..0dbaed0520 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/privattags/svg.privattags.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "privattags": { + "$type": "icon", + "$name": "privattags", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/profile/svg.profile.tokens.json b/toolkit/theme/design-system/build/icons/profile/svg.profile.tokens.json new file mode 100644 index 0000000000..c8af54142a --- /dev/null +++ b/toolkit/theme/design-system/build/icons/profile/svg.profile.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "profile": { + "$type": "icon", + "$name": "profile", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/publictags/svg.publictags.tokens.json b/toolkit/theme/design-system/build/icons/publictags/svg.publictags.tokens.json new file mode 100644 index 0000000000..3e062ee03c --- /dev/null +++ b/toolkit/theme/design-system/build/icons/publictags/svg.publictags.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "publictags": { + "$type": "icon", + "$name": "publictags", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/publictags_slim/svg.publictags_slim.tokens.json b/toolkit/theme/design-system/build/icons/publictags_slim/svg.publictags_slim.tokens.json new file mode 100644 index 0000000000..f66e418ac9 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/publictags_slim/svg.publictags_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "publictags_slim": { + "$type": "icon", + "$name": "publictags_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/qr_code/svg.qr_code.tokens.json b/toolkit/theme/design-system/build/icons/qr_code/svg.qr_code.tokens.json new file mode 100644 index 0000000000..1013c42d65 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/qr_code/svg.qr_code.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "qr_code": { + "$type": "icon", + "$name": "qr_code", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/refresh/svg.refresh.tokens.json b/toolkit/theme/design-system/build/icons/refresh/svg.refresh.tokens.json new file mode 100644 index 0000000000..7b0169a19c --- /dev/null +++ b/toolkit/theme/design-system/build/icons/refresh/svg.refresh.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "refresh": { + "$type": "icon", + "$name": "refresh", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/repeat/svg.repeat.tokens.json b/toolkit/theme/design-system/build/icons/repeat/svg.repeat.tokens.json new file mode 100644 index 0000000000..11d0a5cce2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/repeat/svg.repeat.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "repeat": { + "$type": "icon", + "$name": "repeat", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/restAPI/svg.restAPI.tokens.json b/toolkit/theme/design-system/build/icons/restAPI/svg.restAPI.tokens.json new file mode 100644 index 0000000000..6256f70006 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/restAPI/svg.restAPI.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "restAPI": { + "$type": "icon", + "$name": "restAPI", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/rocket/svg.rocket.tokens.json b/toolkit/theme/design-system/build/icons/rocket/svg.rocket.tokens.json new file mode 100644 index 0000000000..3efd79d292 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/rocket/svg.rocket.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "rocket": { + "$type": "icon", + "$name": "rocket", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/rocket_xl/svg.rocket_xl.tokens.json b/toolkit/theme/design-system/build/icons/rocket_xl/svg.rocket_xl.tokens.json new file mode 100644 index 0000000000..7ae96cb349 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/rocket_xl/svg.rocket_xl.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "rocket_xl": { + "$type": "icon", + "$name": "rocket_xl", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/scope/svg.scope.tokens.json b/toolkit/theme/design-system/build/icons/scope/svg.scope.tokens.json new file mode 100644 index 0000000000..2f426eca77 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/scope/svg.scope.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "scope": { + "$type": "icon", + "$name": "scope", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/score/svg.score.tokens.json b/toolkit/theme/design-system/build/icons/score/svg.score.tokens.json new file mode 100644 index 0000000000..de339dca30 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/score/svg.score.tokens.json @@ -0,0 +1,28 @@ +{ + "kda": { + "icons": { + "score": { + "score-not-ok": { + "$type": "icon", + "$name": "score-not-ok", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "score-ok": { + "$type": "icon", + "$name": "score-ok", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/search/svg.search.tokens.json b/toolkit/theme/design-system/build/icons/search/svg.search.tokens.json new file mode 100644 index 0000000000..7f69105531 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/search/svg.search.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "search": { + "$type": "icon", + "$name": "search", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/share/svg.share.tokens.json b/toolkit/theme/design-system/build/icons/share/svg.share.tokens.json new file mode 100644 index 0000000000..a3d5936a22 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/share/svg.share.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "share": { + "$type": "icon", + "$name": "share", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.176470588235293, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/sign_out/svg.sign_out.tokens.json b/toolkit/theme/design-system/build/icons/sign_out/svg.sign_out.tokens.json new file mode 100644 index 0000000000..bd734f2693 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/sign_out/svg.sign_out.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "sign_out": { + "$type": "icon", + "$name": "sign_out", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/social/svg.social.tokens.json b/toolkit/theme/design-system/build/icons/social/svg.social.tokens.json new file mode 100644 index 0000000000..2742b8b675 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/social/svg.social.tokens.json @@ -0,0 +1,188 @@ +{ + "kda": { + "icons": { + "social": { + "coingecko": { + "$type": "icon", + "$name": "coingecko", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "coinmarketcap": { + "$type": "icon", + "$name": "coinmarketcap", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "defi_llama": { + "$type": "icon", + "$name": "defi_llama", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "discord": { + "$type": "icon", + "$name": "discord", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "discord_filled": { + "$type": "icon", + "$name": "discord_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "facebook_filled": { + "$type": "icon", + "$name": "facebook_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "git": { + "$type": "icon", + "$name": "git", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "github_filled": { + "$type": "icon", + "$name": "github_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "linkedin_filled": { + "$type": "icon", + "$name": "linkedin_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "medium_filled": { + "$type": "icon", + "$name": "medium_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "opensea_filled": { + "$type": "icon", + "$name": "opensea_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "reddit_filled": { + "$type": "icon", + "$name": "reddit_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "slack_filled": { + "$type": "icon", + "$name": "slack_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "stats": { + "$type": "icon", + "$name": "stats", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "telega": { + "$type": "icon", + "$name": "telega", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25.200000000000003, + "height": 24 + } + }, + "telegram_filled": { + "$type": "icon", + "$name": "telegram_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "twitter": { + "$type": "icon", + "$name": "twitter", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25, + "height": 24 + } + }, + "twitter_filled": { + "$type": "icon", + "$name": "twitter_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/star_filled/svg.star_filled.tokens.json b/toolkit/theme/design-system/build/icons/star_filled/svg.star_filled.tokens.json new file mode 100644 index 0000000000..68e61f025d --- /dev/null +++ b/toolkit/theme/design-system/build/icons/star_filled/svg.star_filled.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "star_filled": { + "$type": "icon", + "$name": "star_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/star_outline/svg.star_outline.tokens.json b/toolkit/theme/design-system/build/icons/star_outline/svg.star_outline.tokens.json new file mode 100644 index 0000000000..a9aa4857a1 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/star_outline/svg.star_outline.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "star_outline": { + "$type": "icon", + "$name": "star_outline", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/stats/svg.stats.tokens.json b/toolkit/theme/design-system/build/icons/stats/svg.stats.tokens.json new file mode 100644 index 0000000000..a9400b34e3 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/stats/svg.stats.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "stats": { + "$type": "icon", + "$name": "stats", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/status/svg.status.tokens.json b/toolkit/theme/design-system/build/icons/status/svg.status.tokens.json new file mode 100644 index 0000000000..d02fd462f1 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/status/svg.status.tokens.json @@ -0,0 +1,48 @@ +{ + "kda": { + "icons": { + "status": { + "error": { + "$type": "icon", + "$name": "error", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "pending": { + "$type": "icon", + "$name": "pending", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.818181818181817, + "height": 24 + } + }, + "success": { + "$type": "icon", + "$name": "success", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "warning": { + "$type": "icon", + "$name": "warning", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/sun/svg.sun.tokens.json b/toolkit/theme/design-system/build/icons/sun/svg.sun.tokens.json new file mode 100644 index 0000000000..e95841a0fe --- /dev/null +++ b/toolkit/theme/design-system/build/icons/sun/svg.sun.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "sun": { + "$type": "icon", + "$name": "sun", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/swap/svg.swap.tokens.json b/toolkit/theme/design-system/build/icons/swap/svg.swap.tokens.json new file mode 100644 index 0000000000..463bfaaf51 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/swap/svg.swap.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "swap": { + "$type": "icon", + "$name": "swap", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/testnet/svg.testnet.tokens.json b/toolkit/theme/design-system/build/icons/testnet/svg.testnet.tokens.json new file mode 100644 index 0000000000..adcbf50ba2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/testnet/svg.testnet.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "testnet": { + "$type": "icon", + "$name": "testnet", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 63.42857142857143, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/token-placeholder/svg.token-placeholder.tokens.json b/toolkit/theme/design-system/build/icons/token-placeholder/svg.token-placeholder.tokens.json new file mode 100644 index 0000000000..df4f40f9e5 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/token-placeholder/svg.token-placeholder.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "token-placeholder": { + "$type": "icon", + "$name": "token-placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/token-transfers/svg.token-transfers.tokens.json b/toolkit/theme/design-system/build/icons/token-transfers/svg.token-transfers.tokens.json new file mode 100644 index 0000000000..78dd82bc94 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/token-transfers/svg.token-transfers.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "token-transfers": { + "$type": "icon", + "$name": "token-transfers", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/token/svg.token.tokens.json b/toolkit/theme/design-system/build/icons/token/svg.token.tokens.json new file mode 100644 index 0000000000..cf3e442be2 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/token/svg.token.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "token": { + "$type": "icon", + "$name": "token", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/tokens/svg.tokens.tokens.json b/toolkit/theme/design-system/build/icons/tokens/svg.tokens.tokens.json new file mode 100644 index 0000000000..1beb23fe97 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/tokens/svg.tokens.tokens.json @@ -0,0 +1,26 @@ +{ + "kda": { + "icons": { + "tokens": { + "$type": "icon", + "$name": "tokens", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25.5, + "height": 24 + }, + "xdai": { + "$type": "icon", + "$name": "xdai", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/top-accounts/svg.top-accounts.tokens.json b/toolkit/theme/design-system/build/icons/top-accounts/svg.top-accounts.tokens.json new file mode 100644 index 0000000000..33c8538730 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/top-accounts/svg.top-accounts.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "top-accounts": { + "$type": "icon", + "$name": "top-accounts", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/transactions/svg.transactions.tokens.json b/toolkit/theme/design-system/build/icons/transactions/svg.transactions.tokens.json new file mode 100644 index 0000000000..16f232a80e --- /dev/null +++ b/toolkit/theme/design-system/build/icons/transactions/svg.transactions.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "transactions": { + "$type": "icon", + "$name": "transactions", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/transactions_slim/svg.transactions_slim.tokens.json b/toolkit/theme/design-system/build/icons/transactions_slim/svg.transactions_slim.tokens.json new file mode 100644 index 0000000000..751081157a --- /dev/null +++ b/toolkit/theme/design-system/build/icons/transactions_slim/svg.transactions_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "transactions_slim": { + "$type": "icon", + "$name": "transactions_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/txn_batches/svg.txn_batches.tokens.json b/toolkit/theme/design-system/build/icons/txn_batches/svg.txn_batches.tokens.json new file mode 100644 index 0000000000..64b0a169b4 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/txn_batches/svg.txn_batches.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "txn_batches": { + "$type": "icon", + "$name": "txn_batches", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/txn_batches_slim/svg.txn_batches_slim.tokens.json b/toolkit/theme/design-system/build/icons/txn_batches_slim/svg.txn_batches_slim.tokens.json new file mode 100644 index 0000000000..0e0ea4f8b0 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/txn_batches_slim/svg.txn_batches_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "txn_batches_slim": { + "$type": "icon", + "$name": "txn_batches_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.818181818181817, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/uniswap/svg.uniswap.tokens.json b/toolkit/theme/design-system/build/icons/uniswap/svg.uniswap.tokens.json new file mode 100644 index 0000000000..bbcb5d3cb9 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/uniswap/svg.uniswap.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "uniswap": { + "$type": "icon", + "$name": "uniswap", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24.75, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/user_op/svg.user_op.tokens.json b/toolkit/theme/design-system/build/icons/user_op/svg.user_op.tokens.json new file mode 100644 index 0000000000..d60792d460 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/user_op/svg.user_op.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "user_op": { + "$type": "icon", + "$name": "user_op", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/user_op_slim/svg.user_op_slim.tokens.json b/toolkit/theme/design-system/build/icons/user_op_slim/svg.user_op_slim.tokens.json new file mode 100644 index 0000000000..ce5897e731 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/user_op_slim/svg.user_op_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "user_op_slim": { + "$type": "icon", + "$name": "user_op_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.857142857142854, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/validator/svg.validator.tokens.json b/toolkit/theme/design-system/build/icons/validator/svg.validator.tokens.json new file mode 100644 index 0000000000..897df4816f --- /dev/null +++ b/toolkit/theme/design-system/build/icons/validator/svg.validator.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "validator": { + "$type": "icon", + "$name": "validator", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/verification-steps/svg.verification-steps.tokens.json b/toolkit/theme/design-system/build/icons/verification-steps/svg.verification-steps.tokens.json new file mode 100644 index 0000000000..958d509fc3 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/verification-steps/svg.verification-steps.tokens.json @@ -0,0 +1,38 @@ +{ + "kda": { + "icons": { + "verification-steps": { + "error": { + "$type": "icon", + "$name": "error", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "finalized": { + "$type": "icon", + "$name": "finalized", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "unfinalized": { + "$type": "icon", + "$name": "unfinalized", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/verified/svg.verified.tokens.json b/toolkit/theme/design-system/build/icons/verified/svg.verified.tokens.json new file mode 100644 index 0000000000..0e541843fd --- /dev/null +++ b/toolkit/theme/design-system/build/icons/verified/svg.verified.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "verified": { + "$type": "icon", + "$name": "verified", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/verified_slim/svg.verified_slim.tokens.json b/toolkit/theme/design-system/build/icons/verified_slim/svg.verified_slim.tokens.json new file mode 100644 index 0000000000..7955f8c0d5 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/verified_slim/svg.verified_slim.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "verified_slim": { + "$type": "icon", + "$name": "verified_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/wallet/svg.wallet.tokens.json b/toolkit/theme/design-system/build/icons/wallet/svg.wallet.tokens.json new file mode 100644 index 0000000000..5918555283 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/wallet/svg.wallet.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "wallet": { + "$type": "icon", + "$name": "wallet", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25.200000000000003, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/wallets/svg.wallets.tokens.json b/toolkit/theme/design-system/build/icons/wallets/svg.wallets.tokens.json new file mode 100644 index 0000000000..260b252998 --- /dev/null +++ b/toolkit/theme/design-system/build/icons/wallets/svg.wallets.tokens.json @@ -0,0 +1,38 @@ +{ + "kda": { + "icons": { + "wallets": { + "coinbase": { + "$type": "icon", + "$name": "coinbase", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "metamask": { + "$type": "icon", + "$name": "metamask", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "token-pocket": { + "$type": "icon", + "$name": "token-pocket", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/icons/watchlist/svg.watchlist.tokens.json b/toolkit/theme/design-system/build/icons/watchlist/svg.watchlist.tokens.json new file mode 100644 index 0000000000..f9670bd6aa --- /dev/null +++ b/toolkit/theme/design-system/build/icons/watchlist/svg.watchlist.tokens.json @@ -0,0 +1,16 @@ +{ + "kda": { + "icons": { + "watchlist": { + "$type": "icon", + "$name": "watchlist", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/build/tokens/kda-design-system.tokens.config.json b/toolkit/theme/design-system/build/tokens/kda-design-system.tokens.config.json new file mode 100644 index 0000000000..fe18496431 --- /dev/null +++ b/toolkit/theme/design-system/build/tokens/kda-design-system.tokens.config.json @@ -0,0 +1,2568 @@ +{ + "$name": "Kadena Design System Tokens", + "$version": "0.0.1", + "$paths": { + "baseDir": "./toolkit/theme/design-system", + "distDir": "./dist", + "buildDir": "./build", + "tokensDir": "./tokens", + "assets": { + "icons": { + "sourceDir": "../../../icons" + }, + "fonts": { + "sourceDir": "./assets/fonts" + } + } + }, + "$modes": { + "default": "light", + "dark": "dark" + }, + "$fonts": [ + { + "family": "\"Inter\", sans-serif", + "style": "Normal", + "faceStyle": "normal", + "weight": 100, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Italic", + "faceStyle": "italic", + "weight": 100, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,100&display=swap", + "format": "woff2" + }, + { + "family": "\"Kode Mono\", monospace", + "style": "Normal", + "faceStyle": "normal", + "weight": 100, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100&family=Kode+Mono:wght@400..700&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Normal", + "faceStyle": "normal", + "weight": 400, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Italic", + "faceStyle": "italic", + "weight": 400, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,400&display=swap", + "format": "woff2" + }, + { + "family": "\"Kode Mono\", monospace", + "style": "Normal", + "faceStyle": "normal", + "weight": 400, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400&family=Kode+Mono:wght@400..700&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Normal", + "faceStyle": "normal", + "weight": 600, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,600&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Italic", + "faceStyle": "italic", + "weight": 600, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,600&display=swap", + "format": "woff2" + }, + { + "family": "\"Kode Mono\", monospace", + "style": "Normal", + "faceStyle": "normal", + "weight": 600, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,600&family=Kode+Mono:wght@400..700&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Normal", + "faceStyle": "normal", + "weight": 800, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,800&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Italic", + "faceStyle": "italic", + "weight": 800, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,800&display=swap", + "format": "woff2" + }, + { + "family": "\"Kode Mono\", monospace", + "style": "Normal", + "faceStyle": "normal", + "weight": 800, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,800&family=Kode+Mono:wght@400..700&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Normal", + "faceStyle": "normal", + "weight": 900, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,900&display=swap", + "format": "woff2" + }, + { + "family": "\"Inter\", sans-serif", + "style": "Italic", + "faceStyle": "italic", + "weight": 900, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,900&display=swap", + "format": "woff2" + }, + { + "family": "\"Kode Mono\", monospace", + "style": "Normal", + "faceStyle": "normal", + "weight": 900, + "linkHref": "https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,900&family=Kode+Mono:wght@400..700&display=swap", + "format": "woff2" + } + ], + "$metaData": { + "tokenNamespace": "kda", + "colorspace": "hex", + "fontNamespace": "font", + "tokens": { + "css": { + "mediaQuery": { + "match": ".", + "separateThemeFiles": false + }, + "hooks": { + "shortenName": { + "enabled": true, + "prefix": [ + { + "find": "kda-foundation-", + "replace": "kda-" + } + ], + "suffix": [ + { + "find": "-default", + "replace": "" + } + ] + } + } + } + }, + "dsNamespace": "kda" + }, + "kda": { + "explorer": { + "alert": { + "surface": { + "text": { + "default": "#0B1D2E" + } + }, + "background": { + "default": "#E9F8EF", + "semantic": { + "positive": "#E9FCE3", + "negative": "#FFF5F5", + "warning": "#FBF8DD", + "info": "#F0F8FF" + } + }, + "loading": { + "default": "#194268" + } + }, + "button": { + "background": { + "color": { + "default": "#20624C" + } + }, + "surface": { + "color": { + "default": "#FFFFFF" + } + } + }, + "hero": { + "banner": { + "title": { + "font": { + "size": "1.5rem", + "weight": 500, + "lineHeight": "1.5rem", + "color": { + "name": "#FFFFFF", + "prefix": "#FFFFFF", + "selector": "#FFFFFF" + } + }, + "margin": { + "gap": "1rem", + "bottom": "1rem" + } + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": "#4A9079" + } + }, + "radius": "2px", + "background": "#4A9079", + "padding": "1rem", + "column": { + "width": "100%", + "gap": "2rem" + }, + "button": { + "dimensions": { + "radius": "0px" + }, + "default": { + "background": "#20624C", + "surface": "#FFFFFF" + }, + "@hover": { + "background": "#27795E", + "surface": "#FFFFFF" + }, + "@active": { + "background": "#2E8F6F", + "surface": "#E4E5E5" + } + } + } + }, + "input": { + "dimensions": { + "radius": { + "base": "0px" + } + }, + "border": { + "color": { + "semantic": { + "negative": "#EA3829" + }, + "@focus": "#356F5A" + } + } + }, + "navigation": { + "background": { + "@active": "#E9F8EF" + }, + "surface": { + "text": { + "default": "#1F4F3C", + "@selected": "#061A10" + } + } + }, + "toast": { + "surface": { + "text": { + "default": "#0B1D2E" + } + }, + "background": { + "default": "#E9F8EF", + "semantic": { + "positive": "#E9FCE3", + "negative": "#FFF5F5", + "warning": "#FBF8DD", + "info": "#F0F8FF" + } + }, + "loading": { + "default": "#194268" + } + }, + "top": { + "bar": { + "font": { + "size": "0.75rem" + } + } + }, + "widget": { + "stats": { + "background": { + "default": "#E9F8EF", + "@hover": "#E9F8EF", + "@focus": "#E9F8EF", + "@visited": "#E9F8EF" + }, + "surface": { + "text": { + "subtle": "#000000", + "default": "#1F4F3C" + }, + "icon": { + "color": { + "default": "#4A9079" + } + } + } + } + } + }, + "foundation": { + "border": { + "width": { + "hairline": "1px", + "normal": "2px", + "thick": "4px" + }, + "hairline": { + "width": "1px", + "style": "solid", + "color": "#252F3A" + }, + "normal": { + "width": "2px", + "style": "solid", + "color": "#020E1B" + }, + "thick": { + "width": "4px", + "style": "solid", + "color": "#020E1B" + } + }, + "breakpoint": { + "$description": "Breakpoint sizes for viewports", + "xs": "0rem", + "sm": "40rem", + "md": "48rem", + "lg": "64rem", + "xl": "80rem", + "xxl": "96rem" + }, + "color": { + "accent": { + "$description": "Accent colors", + "blue": "#358CDD", + "celery": "#07a721", + "green": "#4A9079", + "magenta": "#E41968", + "orange": "#E27B38", + "red": "#F75C46", + "yellow": "#B08C00", + "brand": { + "primary": "#4A9079", + "secondary": "#358CDD", + "tertiary": "#E27B38", + "tint": { + "primary": "#52FFC6", + "secondary": "#E41968", + "tertiary": "#E27B38" + } + }, + "semantic": { + "info": "#358CDD", + "warning": "#B08C00", + "positive": "#07a721", + "negative": "#F75C46" + } + }, + "background": { + "base": { + "default": "#F5F5F5", + "warm": "#F0EAE6", + "@hover": "#D2D4D6", + "@focus": "#E4E5E5", + "@active": "#E4E5E5", + "@disabled": "#000000", + "inverse": { + "default": "#020E1B", + "warm": "#0F0F0F", + "@hover": "#252F3A", + "@focus": "#131E2B", + "@disabled": "#FFFFFF" + } + }, + "layer": { + "default": "#FFFFFF", + "solid": "#FFFFFF" + }, + "overlay": { + "default": "#FFFFFF", + "context": { + "default": "#FFFFFF" + }, + "@hover": "#FFFFFF" + }, + "surface": { + "default": "#020E1B", + "inverse": { + "default": "#020E1B" + }, + "subtle": { + "default": "#020E1B", + "inverse": { + "default": "#020E1B" + } + } + }, + "surfaceHighContrast": { + "default": "#FFFFFF", + "inverse": { + "default": "#000000" + } + }, + "brand": { + "primary": { + "default": "#B8E7CF", + "subtle": "#CEF8E0", + "subtlest": "#E9F8EF", + "@hover": "#A2D5BE", + "@focus": "#8CC4AD", + "@active": "#76B39B", + "inverse": { + "default": "#153E2C", + "subtle": "#0A2E1D", + "subtlest": "#061A10", + "@hover": "#1F4F3C", + "@focus": "#2A5F4B", + "@active": "#356F5A" + } + }, + "secondary": { + "default": "#BBDBF9", + "subtle": "#D6EBFF", + "subtlest": "#F0F8FF", + "@hover": "#BBDBF9", + "@focus": "#A0CBF4", + "@active": "#86BCEE", + "inverse": { + "default": "#112C46", + "subtle": "#0B1D2E", + "subtlest": "#06101A", + "@hover": "#112C46", + "@focus": "#194268", + "@active": "#205586" + } + } + }, + "accent": { + "primary": { + "default": "#52FFC6", + "@hover": "#4BE9B5", + "@focus": "#52FFC6", + "@active": "#7AFFD3", + "inverse": { + "default": "#20624C", + "@hover": "#2E8F6F", + "@focus": "#27795E", + "@active": "#27795E" + } + }, + "secondary": { + "default": "#E41968", + "@hover": "#CF175E", + "@focus": "#CF175E", + "@active": "#CF175E", + "inverse": { + "default": "#E41968", + "@hover": "#E93C7F", + "@focus": "#E93C7F", + "@active": "#E93C7F" + } + }, + "tertiary": { + "default": "#E27B38", + "@hover": "#CB5D00", + "@focus": "#CB5D00", + "@active": "#CB5D00", + "inverse": { + "default": "#E27B38", + "@hover": "#EC9046", + "@focus": "#EC9046", + "@active": "#EC9046" + } + } + }, + "semantic": { + "positive": { + "default": "#72e06a", + "subtle": "#72e06a", + "subtlest": "#E9FCE3", + "@hover": "#4ecf50", + "@focus": "#72e06a", + "@active": "#96ee85", + "inverse": { + "default": "#00670f", + "subtle": "#00670f", + "subtlest": "#001A04", + "@hover": "#007c0f", + "@focus": "#00670f", + "@active": "#00530d" + } + }, + "negative": { + "default": "#FFB7A9", + "subtle": "#FFB7A9", + "subtlest": "#FFF5F5", + "@hover": "#FF9B88", + "@focus": "#FFB7A9", + "@active": "#FFCDC3", + "inverse": { + "default": "#B40000", + "subtle": "#B40000", + "subtlest": "#330000", + "@hover": "#D31510", + "@focus": "#B40000", + "@active": "#930000" + } + }, + "warning": { + "default": "#E8C600", + "subtle": "#E8C600", + "subtlest": "#FBF8DD", + "@hover": "#D7B300", + "@focus": "#E8C600", + "@active": "#F8D904", + "inverse": { + "default": "#705300", + "subtle": "#705300", + "subtlest": "#1A1100", + "@hover": "#856600", + "@focus": "#705300", + "@active": "#5B4300" + } + }, + "info": { + "default": "#86BCEE", + "subtle": "#86BCEE", + "subtlest": "#F0F8FF", + "@hover": "#6BACE8", + "@focus": "#86BCEE", + "@active": "#A0CBF4", + "inverse": { + "default": "#205586", + "subtle": "#205586", + "subtlest": "#06101A", + "@hover": "#2767A3", + "@focus": "#205586", + "@active": "#194268" + } + } + }, + "input": { + "default": "#F5F5F5", + "@hover": "#D2D4D6", + "@focus": "#E4E5E5", + "@active": "#E4E5E5", + "@disabled": "#000000", + "inverse": { + "default": "#475059", + "@hover": "#252F3A", + "@focus": "#131E2B", + "@active": "#131E2B", + "@disabled": "#FFFFFF" + } + }, + "skeleton": { + "default": "#D2D4D6" + }, + "table": { + "row": { + "default": "#FFFFFF", + "@hover": "#F5F5F5" + } + } + }, + "border": { + "base": { + "subtle": "#D2D4D6", + "default": "#252F3A", + "bold": "#020E1B", + "boldest": "#000000", + "high-contrast": "#000000", + "@disabled": "#B0B3B7", + "@hover": "#B0B3B7", + "@focus": "#6A7178", + "@active": "#475059", + "inverse": { + "subtle": "#F5F5F5", + "default": "#F5F5F5", + "bold": "#FFFFFF", + "boldest": "#F5F5F5", + "high-contrast": "#FFFFFF", + "@disabled": "#B0B3B7", + "@hover": "#B0B3B7", + "@focus": "#6A7178", + "@active": "#475059" + } + }, + "brand": { + "primary": { + "default": "#60A18A", + "subtle": "#8CC4AD", + "@hover": "#3F806A", + "@focus": "#356F5A", + "inverse": { + "default": "#2A5F4B", + "@hover": "#356F5A", + "@focus": "#3F806A" + } + }, + "secondary": { + "default": "#509CE3", + "subtle": "#86BCEE", + "@hover": "#2E7AC0", + "@focus": "#2767A3", + "inverse": { + "default": "#205586", + "@hover": "#2767A3", + "@focus": "#2E7AC0" + } + } + }, + "semantic": { + "positive": { + "default": "#009112", + "subtle": "#72e06a", + "@disabled": "#72e06a", + "@hover": "#007c0f", + "@focus": "#009112", + "inverse": { + "default": "#27bb36", + "@hover": "#4ecf50", + "@focus": "#72e06a" + } + }, + "negative": { + "default": "#EA3829", + "subtle": "#FFB7A9", + "@disabled": "#FFB7A9", + "@hover": "#D31510", + "@focus": "#EA3829", + "inverse": { + "default": "#FF7C65", + "@hover": "#FF9B88", + "@focus": "#FFB7A9" + } + }, + "warning": { + "default": "#9B7800", + "subtle": "#E8C600", + "@disabled": "#E8C600", + "@hover": "#856600", + "@focus": "#9B7800", + "inverse": { + "default": "#C49F00", + "@hover": "#D7B300", + "@focus": "#E8C600" + } + }, + "info": { + "default": "#2E7AC0", + "subtle": "#86BCEE", + "@disabled": "#86BCEE", + "@hover": "#2767A3", + "@focus": "#2E7AC0", + "inverse": { + "default": "#509CE3", + "@hover": "#6BACE8", + "@focus": "#86BCEE" + } + } + }, + "tint": { + "outline": "#2E7AC0", + "@focus": "#27795E" + }, + "overlay": { + "context": "#B0B3B7" + } + }, + "brand": { + "primary": { + "n0": "#E9F8EF", + "n1": "#CEF8E0", + "n5": "#B8E7CF", + "n10": "#A2D5BE", + "n20": "#8CC4AD", + "n30": "#76B39B", + "n40": "#60A18A", + "n50": "#4A9079", + "n60": "#3F806A", + "n70": "#356F5A", + "n80": "#2A5F4B", + "n90": "#1F4F3C", + "n95": "#153E2C", + "n99": "#0A2E1D", + "n100": "#061A10" + }, + "secondary": { + "n0": "#F0F8FF", + "n1": "#D6EBFF", + "n5": "#BBDBF9", + "n10": "#A0CBF4", + "n20": "#86BCEE", + "n30": "#6BACE8", + "n40": "#509CE3", + "n50": "#358CDD", + "n60": "#2E7AC0", + "n70": "#2767A3", + "n80": "#205586", + "n90": "#194268", + "n95": "#112C46", + "n99": "#0B1D2E", + "n100": "#06101A" + }, + "tertiary": { + "n0": "#FFF7EB", + "n1": "#FFECCC", + "n5": "#FFDFAD", + "n10": "#FDD291", + "n20": "#FFBB63", + "n30": "#F5A655", + "n40": "#EC9046", + "n50": "#E27B38", + "n60": "#CB5D00", + "n70": "#B14C00", + "n80": "#953D00", + "n90": "#7A2F00", + "n95": "#612300", + "n99": "#491901", + "n100": "#290E01" + }, + "key": { + "primary": "#4A9079", + "secondary": "#0B1D2E", + "tertiary": "#E27B38", + "accent": "#E41968", + "neutralwarm": "#F0EAE6", + "white": "#F5F5F5", + "black": "#020E1B" + } + }, + "gradient": { + "base": { + "subtle": { + "prefix": "linear-gradient(", + "data": { + "value": { + "angle": "90deg", + "color1": { + "value": "#F5F5F5" + }, + "color2": { + "value": "#F5F5F5" + } + }, + "$extensions": { + "delimiter": { + "character": ", " + } + } + }, + "suffix": ")" + } + } + }, + "icon": { + "base": { + "default": "#131E2B", + "bold": "#020E1B", + "@init": "#020E1B", + "@hover": "#020E1B", + "@focus": "#020E1B", + "@active": "#000000", + "@disabled": "#000000", + "inverse": { + "default": "#E4E5E5", + "bold": "#F5F5F5", + "@init": "#F5F5F5", + "@hover": "#F5F5F5", + "@focus": "#F5F5F5", + "@active": "#FFFFFF", + "@disabled": "#FFFFFF" + } + }, + "brand": { + "logo": { + "default": "#4A9079", + "inverse": { + "default": "#F5F5F5" + } + }, + "primary": { + "default": "#2A5F4B", + "bold": "#1F4F3C", + "@hover": "#356F5A", + "@focus": "#3F806A", + "@active": "#4A9079", + "@disabled": "#9EA3A7", + "inverse": { + "default": "#8CC4AD", + "@hover": "#76B39B", + "@focus": "#60A18A", + "@active": "#4A9079", + "@disabled": "#9EA3A7" + } + }, + "secondary": { + "default": "#205586", + "bold": "#194268", + "@hover": "#2767A3", + "@focus": "#2E7AC0", + "@active": "#358CDD", + "@disabled": "#9EA3A7", + "inverse": { + "default": "#86BCEE", + "@hover": "#6BACE8", + "@focus": "#509CE3", + "@active": "#358CDD", + "@disabled": "#9EA3A7" + } + } + }, + "semantic": { + "positive": { + "default": "#00670f", + "@hover": "#007c0f", + "@focus": "#009112", + "@active": "#07a721", + "@disabled": "#9EA3A7", + "inverse": { + "default": "#72e06a", + "@hover": "#4ecf50", + "@focus": "#27bb36", + "@active": "#07a721", + "@disabled": "#9EA3A7" + } + }, + "negative": { + "default": "#B40000", + "@hover": "#D31510", + "@focus": "#EA3829", + "@active": "#F75C46", + "@disabled": "#9EA3A7", + "inverse": { + "default": "#FFB7A9", + "@hover": "#FF9B88", + "@focus": "#FF7C65", + "@active": "#F75C46", + "@disabled": "#9EA3A7" + } + }, + "warning": { + "default": "#705300", + "@hover": "#856600", + "@focus": "#9B7800", + "@active": "#B08C00", + "@disabled": "#9EA3A7", + "inverse": { + "default": "#E8C600", + "@hover": "#D7B300", + "@focus": "#C49F00", + "@active": "#B08C00", + "@disabled": "#9EA3A7" + } + }, + "info": { + "default": "#205586", + "@hover": "#2767A3", + "@focus": "#2E7AC0", + "@active": "#358CDD", + "@disabled": "#9EA3A7", + "inverse": { + "default": "#86BCEE", + "@hover": "#6BACE8", + "@focus": "#509CE3", + "@active": "#358CDD", + "@disabled": "#9EA3A7" + } + } + }, + "product": { + "spirekey": { + "animation": { + "start": "#4A9079", + "step1": "#4AA688", + "step2": "#4BBD97", + "step3": "#4BD3A6", + "end": "#4BE9B5" + } + } + } + }, + "link": { + "base": { + "default": "#20624C", + "@hover": "#0A1F18", + "@focus": "#0A1F18", + "@visited": "#A5124B" + }, + "brand": { + "primary": { + "default": "#356F5A", + "@hover": "#2A5F4B", + "@focus": "#3F806A", + "@visited": "#A5124B" + }, + "secondary": { + "default": "#2767A3", + "@hover": "#205586", + "@focus": "#2E7AC0", + "@visited": "#A5124B" + } + }, + "semantic": { + "positive": { + "default": "#00530d", + "@hover": "#00400a", + "@focus": "#00670f", + "@visited": "#A5124B" + }, + "negative": { + "default": "#930000", + "@hover": "#740000", + "@focus": "#B40000", + "@visited": "#A5124B" + }, + "warning": { + "default": "#5B4300", + "@hover": "#483300", + "@focus": "#705300", + "@visited": "#A5124B" + }, + "info": { + "default": "#194268", + "@hover": "#112C46", + "@focus": "#205586", + "@visited": "#A5124B" + } + } + }, + "neutral": { + "$description": "Neutral Gray colors", + "n0": "#FFFFFF", + "n0@alpha0": "#FFFFFF", + "n0@alpha10": "#FFFFFF", + "n0@alpha20": "#FFFFFF", + "n0@alpha40": "#FFFFFF", + "n0@alpha70": "#FFFFFF", + "n0@alpha80": "#FFFFFF", + "n0@alpha90": "#FFFFFF", + "n0@alpha95": "#FFFFFF", + "n1": "#F5F5F5", + "n1@alpha0": "#F5F5F5", + "n1@alpha1": "#F5F5F5", + "n1@alpha3": "#F5F5F5", + "n1@alpha4": "#F5F5F5", + "n1@alpha5": "#F5F5F5", + "n1@alpha6": "#F5F5F5", + "n1@alpha10": "#F5F5F5", + "n1@alpha20": "#F5F5F5", + "n1@alpha30": "#F5F5F5", + "n1@alpha40": "#F5F5F5", + "n1@alpha50": "#F5F5F5", + "n1@alpha80": "#F5F5F5", + "n1@alpha90": "#F5F5F5", + "n5": "#E4E5E5", + "n5@alpha80": "#E4E5E5", + "n5@alpha95": "#E4E5E5", + "n10": "#D2D4D6", + "n10@alpha80": "#D2D4D6", + "n15": "#C1C4C6", + "n20": "#B0B3B7", + "n20@alpha80": "#B0B3B7", + "n30": "#9EA3A7", + "n40": "#8D9298", + "n50": "#7C8288", + "n60": "#6A7178", + "n70": "#596069", + "n80": "#475059", + "n80@alpha80": "#475059", + "n85": "#36404A", + "n90": "#252F3A", + "n90@alpha20": "#252F3A", + "n90@alpha25": "#252F3A", + "n95": "#131E2B", + "n95@alpha80": "#131E2B", + "n95@alpha95": "#131E2B", + "n99": "#020E1B", + "n99@alpha0": "#020E1B", + "n99@alpha1": "#020E1B", + "n99@alpha3": "#020E1B", + "n99@alpha4": "#020E1B", + "n99@alpha5": "#020E1B", + "n99@alpha6": "#020E1B", + "n99@alpha10": "#020E1B", + "n99@alpha20": "#020E1B", + "n99@alpha30": "#020E1B", + "n99@alpha40": "#020E1B", + "n99@alpha50": "#020E1B", + "n99@alpha80": "#020E1B", + "n99@alpha90": "#020E1B", + "n100": "#000000", + "n100@alpha0": "#000000", + "n100@alpha10": "#000000", + "n100@alpha20": "#000000", + "n100@alpha40": "#000000", + "n100@alpha70": "#000000", + "n100@alpha80": "#000000", + "n100@alpha90": "#000000", + "n100@alpha95": "#000000" + }, + "neutralwarm": { + "$description": "Neutral Warm colors", + "n0": "#FBFAF9", + "n1": "#F0EAE6", + "n1@alpha30": "#F0EAE6", + "n1@alpha60": "#F0EAE6", + "n1@alpha80": "#F0EAE6", + "n1@alpha95": "#F0EAE6", + "n5": "#DDD8D4", + "n10": "#CBC6C2", + "n20": "#B8B3B0", + "n30": "#A5A19E", + "n40": "#928F8C", + "n50": "#807D7B", + "n60": "#6D6A69", + "n70": "#5A5857", + "n80": "#474645", + "n90": "#353433", + "n95": "#222121", + "n99": "#0F0F0F", + "n100": "#050505" + }, + "palette": { + "aqua": { + "$description": "Kadena Digital Green Color Palette Aqua", + "n0": "#F0FFFA", + "n1": "#C9FFED", + "n5": "#A1FFE0", + "n10": "#7AFFD3", + "n20": "#52FFC6", + "n20@alpha80": "#52FFC6", + "n30": "#4BE9B5", + "n40": "#44D2A3", + "n50": "#3CBC92", + "n60": "#35A580", + "n70": "#2E8F6F", + "n80": "#27795E", + "n80@alpha80": "#27795E", + "n90": "#20624C", + "n95": "#184C3B", + "n99": "#113529", + "n100": "#0A1F18" + }, + "blue": { + "$description": "Blue colors", + "n0": "#F0F8FF", + "n1": "#D6EBFF", + "n5": "#BBDBF9", + "n10": "#A0CBF4", + "n20": "#86BCEE", + "n20@alpha20": "#86BCEE", + "n20@alpha80": "#86BCEE", + "n30": "#6BACE8", + "n40": "#509CE3", + "n50": "#358CDD", + "n60": "#2E7AC0", + "n70": "#2767A3", + "n80": "#205586", + "n80@alpha20": "#205586", + "n80@alpha80": "#205586", + "n90": "#194268", + "n95": "#112C46", + "n99": "#0B1D2E", + "n100": "#06101A" + }, + "celery": { + "$description": "Green Color Palette", + "n0": "#E9FCE3", + "n1": "#cdfcbf", + "n5": "#aef69d", + "n10": "#96ee85", + "n20": "#72e06a", + "n20@alpha20": "#72e06a", + "n20@alpha80": "#72e06a", + "n30": "#4ecf50", + "n40": "#27bb36", + "n50": "#07a721", + "n60": "#009112", + "n70": "#007c0f", + "n80": "#00670f", + "n80@alpha20": "#00670f", + "n80@alpha80": "#00670f", + "n90": "#00530d", + "n95": "#00400a", + "n99": "#003007", + "n100": "#001A04" + }, + "green": { + "$description": "Kadena Green Color Palette", + "n0": "#E9F8EF", + "n1": "#CEF8E0", + "n5": "#B8E7CF", + "n10": "#A2D5BE", + "n20": "#8CC4AD", + "n30": "#76B39B", + "n40": "#60A18A", + "n50": "#4A9079", + "n60": "#3F806A", + "n70": "#356F5A", + "n80": "#2A5F4B", + "n90": "#1F4F3C", + "n95": "#153E2C", + "n99": "#0A2E1D", + "n100": "#061A10" + }, + "magenta": { + "$description": "Kadena Magenta Color Palette", + "n0": "#FFF7FA", + "n1": "#FFEAF1", + "n5": "#FBC7DA", + "n10": "#F6A4C3", + "n20": "#F282AD", + "n30": "#ED5F96", + "n40": "#E93C7F", + "n50": "#E41968", + "n60": "#CF175E", + "n70": "#BA1455", + "n80": "#A5124B", + "n90": "#901041", + "n95": "#7B0D38", + "n99": "#660B2E", + "n100": "#470820" + }, + "orange": { + "$description": "Kadena Orange Color Palette", + "n0": "#FFF7EB", + "n1": "#FFECCC", + "n5": "#FFDFAD", + "n10": "#FDD291", + "n20": "#FFBB63", + "n30": "#F5A655", + "n40": "#EC9046", + "n50": "#E27B38", + "n60": "#CB5D00", + "n70": "#B14C00", + "n80": "#953D00", + "n90": "#7A2F00", + "n95": "#612300", + "n99": "#491901", + "n100": "#290E01" + }, + "red": { + "$description": "Red colors", + "n0": "#FFF5F5", + "n1": "#FFEBE7", + "n5": "#FFDDD6", + "n10": "#FFCDC3", + "n20": "#FFB7A9", + "n20@alpha20": "#FFB7A9", + "n20@alpha80": "#FFB7A9", + "n30": "#FF9B88", + "n40": "#FF7C65", + "n50": "#F75C46", + "n60": "#EA3829", + "n70": "#D31510", + "n80": "#B40000", + "n80@alpha20": "#B40000", + "n80@alpha80": "#B40000", + "n90": "#930000", + "n95": "#740000", + "n99": "#590000", + "n100": "#330000" + }, + "yellow": { + "$description": "Yellow colors", + "n0": "#FBF8DD", + "n1": "#FBF198", + "n5": "#F8E750", + "n10": "#F8D904", + "n20": "#E8C600", + "n20@alpha20": "#E8C600", + "n20@alpha80": "#E8C600", + "n30": "#D7B300", + "n40": "#C49F00", + "n50": "#B08C00", + "n60": "#9B7800", + "n70": "#856600", + "n80": "#705300", + "n80@alpha20": "#705300", + "n80@alpha80": "#705300", + "n90": "#5B4300", + "n95": "#483300", + "n99": "#362500", + "n100": "#1A1100" + } + }, + "categorical": { + "$description": "Colors intended for data visualisations. Adhere to the specified numerical order.", + "category1": { + "default": "#2898BD", + "@hover": "#227D9B" + }, + "category2": { + "default": "#5E4DB2", + "@hover": "#352C63" + }, + "category3": { + "default": "#E56910", + "@hover": "#C25100" + }, + "category4": { + "default": "#943D73", + "@hover": "#50253F" + }, + "category5": { + "default": "#09326C", + "@hover": "#1C2B41" + }, + "category6": { + "default": "#8F7EE7", + "@hover": "#8270DB" + }, + "category7": { + "default": "#50253F", + "@hover": "#3D2232" + }, + "category8": { + "default": "#A54800", + "@hover": "#702E00" + } + }, + "semantic": { + "info": { + "n0": "#F0F8FF", + "n1": "#D6EBFF", + "n5": "#BBDBF9", + "n10": "#A0CBF4", + "n20": "#86BCEE", + "n20@alpha20": "#86BCEE", + "n20@alpha80": "#86BCEE", + "n30": "#6BACE8", + "n40": "#509CE3", + "n50": "#358CDD", + "n60": "#2E7AC0", + "n70": "#2767A3", + "n80": "#205586", + "n80@alpha20": "#205586", + "n80@alpha80": "#205586", + "n90": "#194268", + "n95": "#112C46", + "n99": "#0B1D2E", + "n100": "#06101A" + }, + "negative": { + "n0": "#FFF5F5", + "n1": "#FFEBE7", + "n5": "#FFDDD6", + "n10": "#FFCDC3", + "n20": "#FFB7A9", + "n20@alpha20": "#FFB7A9", + "n20@alpha80": "#FFB7A9", + "n30": "#FF9B88", + "n40": "#FF7C65", + "n50": "#F75C46", + "n60": "#EA3829", + "n70": "#D31510", + "n80": "#B40000", + "n80@alpha20": "#B40000", + "n80@alpha80": "#B40000", + "n90": "#930000", + "n95": "#740000", + "n99": "#590000", + "n100": "#330000" + }, + "positive": { + "n0": "#E9FCE3", + "n1": "#cdfcbf", + "n5": "#aef69d", + "n10": "#96ee85", + "n20": "#72e06a", + "n20@alpha20": "#72e06a", + "n20@alpha80": "#72e06a", + "n30": "#4ecf50", + "n40": "#27bb36", + "n50": "#07a721", + "n60": "#009112", + "n70": "#007c0f", + "n80": "#00670f", + "n80@alpha20": "#00670f", + "n80@alpha80": "#00670f", + "n90": "#00530d", + "n95": "#00400a", + "n99": "#003007", + "n100": "#001A04" + }, + "warning": { + "n0": "#FBF8DD", + "n1": "#FBF198", + "n5": "#F8E750", + "n10": "#F8D904", + "n20": "#E8C600", + "n20@alpha20": "#E8C600", + "n20@alpha80": "#E8C600", + "n30": "#D7B300", + "n40": "#C49F00", + "n50": "#B08C00", + "n60": "#9B7800", + "n70": "#856600", + "n80": "#705300", + "n80@alpha20": "#705300", + "n80@alpha80": "#705300", + "n90": "#5B4300", + "n95": "#483300", + "n99": "#362500", + "n100": "#1A1100" + } + }, + "text": { + "base": { + "default": "#000000", + "@init": "#000000", + "@hover": "#131E2B", + "@focus": "#020E1B", + "@active": "#000000", + "@disabled": "#000000", + "@selected": "#000000", + "inverse": { + "default": "#FFFFFF", + "@init": "#FFFFFF", + "@hover": "#E4E5E5", + "@focus": "#F5F5F5", + "@active": "#FFFFFF", + "@disabled": "#FFFFFF", + "@selected": "#FFFFFF" + } + }, + "subtle": { + "default": "#000000", + "@hover": "#000000", + "inverse": { + "default": "#FFFFFF" + } + }, + "subtlest": { + "default": "#000000", + "@hover": "#000000", + "inverse": { + "default": "#FFFFFF" + } + }, + "gray": { + "default": "#000000", + "lighter": "#6A7178", + "bolder": "#475059", + "inverse": { + "default": "#FFFFFF", + "lighter": "#8D9298", + "bolder": "#B0B3B7" + } + }, + "brand": { + "wordmark": { + "default": "#0F0F0F", + "inverse": { + "default": "#F0EAE6" + } + }, + "primary": { + "default": "#1F4F3C", + "@hover": "#153E2C", + "@focus": "#0A2E1D", + "inverse": { + "default": "#A2D5BE", + "@hover": "#B8E7CF", + "@focus": "#CEF8E0" + } + }, + "secondary": { + "default": "#194268", + "@hover": "#112C46", + "@focus": "#0B1D2E", + "inverse": { + "default": "#A0CBF4", + "@hover": "#BBDBF9", + "@focus": "#D6EBFF" + } + } + }, + "accent": { + "primary": { + "default": "#000000", + "@hover": "#131E2B", + "@focus": "#020E1B", + "@active": "#000000", + "inverse": { + "default": "#FFFFFF", + "@hover": "#E4E5E5", + "@focus": "#F5F5F5", + "@active": "#FFFFFF" + } + } + }, + "semantic": { + "positive": { + "default": "#003007", + "@hover": "#001A04", + "@focus": "#001A04", + "inverse": { + "default": "#cdfcbf", + "@hover": "#E9FCE3", + "@focus": "#E9FCE3" + } + }, + "negative": { + "default": "#590000", + "@hover": "#330000", + "@focus": "#330000", + "inverse": { + "default": "#FFEBE7", + "@hover": "#FFF5F5", + "@focus": "#FFF5F5" + } + }, + "warning": { + "default": "#362500", + "@hover": "#1A1100", + "@focus": "#1A1100", + "inverse": { + "default": "#FBF198", + "@hover": "#FBF8DD", + "@focus": "#FBF8DD" + } + }, + "info": { + "default": "#0B1D2E", + "@hover": "#06101A", + "@focus": "#06101A", + "inverse": { + "default": "#D6EBFF", + "@hover": "#F0F8FF", + "@focus": "#F0F8FF" + } + } + } + } + }, + "effect": { + "defaultBlur": { + "radius": "0.5rem" + }, + "blur": [ + { + "$name": "layerBlur", + "$type": "composition", + "$title": "Layer Blur", + "$description": "This is the layer blur description", + "$value": { + "radius": "0.75rem", + "visible": true + }, + "filePath": "/Users/isaozler/Desktop/__WORKSPACE__/Kadena/apps/kadena-io/blockscout-frontend/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json", + "isSource": true + } + ], + "shadow": { + "level1": { + "color": { + "value": "#000000" + }, + "offsetX": { + "value": "4px" + }, + "offsetY": { + "value": "0.5rem" + }, + "blur": { + "value": "0.5rem" + }, + "spread": { + "value": "4px" + } + }, + "level2": { + "color": "#000000", + "offsetX": "4rem", + "offsetY": "4rem", + "blur": { + "value": "0.5rem" + }, + "spread": "2rem" + }, + "level3": { + "color": "#000000", + "offsetX": "0px", + "offsetY": "0px", + "blur": "0.5rem", + "spread": "24px" + } + } + }, + "layout": { + "content": { + "minWidth": "33.75rem", + "maxWidth": "42.5rem" + } + }, + "radius": { + "no": "0px", + "xs": "2px", + "sm": "4px", + "md": "6px", + "lg": "8px", + "xl": "16px", + "xxl": "24px", + "xs-outline": "3px", + "sm-outline": "5px", + "md-outline": "7px", + "round": "999rem" + }, + "screen": { + "resolutions": { + "$description": "Screen resolutions based on BrowserStack", + "width": { + "mobile": { + "apple": { + "iphone_se": 320, + "iphone_8": 375, + "iphone_11": 375, + "iphone_11_pro": 414 + }, + "samsung": { + "galaxy_s9": 360 + } + }, + "tablet": { + "apple": { + "ipad_mini": 768, + "ipad": 810, + "ipad_pro": 1024 + } + }, + "laptop": { + "macBook_air": 1440, + "macBook_pro_13": 1280, + "macBook_pro_16": 3072 + }, + "desktop": { + "small": 1024, + "widescreen": 1280, + "hd": 1366, + "full_hd": 1920, + "2k": 2560, + "ultra_wide": 3440, + "4k": 3840 + } + }, + "height": { + "mobile": { + "apple": { + "iphone_se": 568, + "iphone_8": 667, + "iphone_11": 812, + "iphone_11_pro": 896 + }, + "samsung": { + "galaxy_s9": 740 + } + }, + "tablet": { + "apple": { + "ipad_mini": 1024, + "ipad": 1080, + "ipad_pro": 1366 + } + }, + "laptop": { + "macBook_air": 900, + "macBook_pro_13": 800, + "macBook_pro_16": 1920 + }, + "desktop": { + "small": 768, + "widescreen": 800, + "hd": 768, + "full_hd": 1080, + "2k": 1440, + "ultra_wide": 1440, + "4k": 2160 + } + } + } + }, + "size": { + "$description": "Size units for sizing and spacing elements", + "n0": 0, + "n1": "0.25rem", + "n2": "0.5rem", + "n3": "0.75rem", + "n4": "1rem", + "n5": "1.25rem", + "n6": "1.5rem", + "n7": "1.75rem", + "n8": "2rem", + "n9": "2.25rem", + "n10": "2.5rem", + "n11": "2.75rem", + "n12": "3rem", + "n13": "3.25rem", + "n14": "3.5rem", + "n15": "3.75rem", + "n16": "4rem", + "n17": "4.25rem", + "n18": "4.5rem", + "n19": "4.75rem", + "n20": "5rem", + "n24": "6rem", + "n25": "6.25rem", + "n30": "7.5rem", + "n32": "8rem", + "n35": "8.75rem", + "n40": "10rem", + "n48": "12rem", + "n56": "14rem", + "n64": "16rem" + }, + "spacing": { + "no": 0, + "xxs": "0.125rem", + "xs": "0.25rem", + "sm": "0.5rem", + "md": "1rem", + "lg": "1.5rem", + "xl": "1.75rem", + "xxl": "2.25rem", + "xxxl": "2.5rem", + "n0": 0, + "n1": "0.25rem", + "n2": "0.5rem", + "n3": "0.75rem", + "n4": "1rem", + "n5": "1.25rem", + "n6": "1.5rem", + "n7": "1.75rem", + "n8": "2rem", + "n9": "2.25rem", + "n10": "2.5rem", + "n11": "2.75rem", + "n12": "3rem", + "n13": "3.25rem", + "n14": "3.5rem", + "n15": "3.75rem", + "n16": "4rem", + "n17": "4.25rem", + "n18": "4.5rem", + "n19": "4.75rem", + "n20": "5rem", + "n24": "6rem", + "n25": "6.25rem", + "n30": "7.5rem", + "n32": "8rem", + "n35": "8.75rem", + "n40": "10rem", + "n48": "12rem", + "n56": "14rem", + "n64": "16rem" + }, + "transition": { + "delay": { + "none": "0ms" + }, + "duration": { + "base": "400ms", + "d200": "200ms" + }, + "animation": { + "easeOutSine": "200ms cubic-bezier(0.61, 1, 0.88, 1)", + "easeOutCubic": "200ms cubic-bezier(0.33, 1, 0.68, 1)" + } + }, + "typography": { + "family": { + "primaryFont": "Inter", + "monospaceFont": "Kode Mono" + }, + "fontSize": { + "xxs": "0.6875rem", + "xs": "0.75rem", + "sm": "0.875rem", + "base": "1rem", + "md": "1.125rem", + "lg": "1.25rem", + "xl": "1.5rem", + "2xl": "1.75rem", + "3xl": "2rem", + "4xl": "2.25rem", + "5xl": "2.5rem", + "6xl": "2.75rem", + "7xl": "3rem", + "8xl": "3.25rem", + "9xl": "3.75rem", + "10xl": "4.5rem", + "11xl": "5rem", + "12xl": "5.25rem" + }, + "lineHeight": { + "7xl": "3rem", + "4xl": "2.25rem", + "3xl": "2rem", + "2xl": "1.75rem", + "xl": "1.5rem", + "base": "1.25rem", + "md": "1rem", + "sm": "0.875rem" + }, + "weight": { + "primaryFont": { + "light": 300, + "regular": 400, + "medium": 500, + "semiBold": 600, + "bold": 700 + }, + "monospaceFont": { + "regular": 400, + "medium": 500, + "semiBold": 600, + "bold": 700 + } + } + }, + "zIndex": { + "deepdive": -99999, + "default": 1, + "dialog": 6000, + "surface": 4, + "dropdown": 7000, + "modal": 9000, + "overlay": 8000, + "popup": 5000, + "spinner": 9050, + "sticky": 100, + "toast": 10000 + } + }, + "icons": { + "ABI": " ", + "ABI_slim": " ", + "API": " ", + "API_slim": " ", + "ENS": " ", + "ENS_slim": " ", + "MUD": " ", + "MUD_menu": " ", + "RPC": " ", + "apps": " ", + "apps_list": " ", + "apps_slim": " ", + "arrows": { + "arrow_drop_down": " ", + "down-right": " ", + "east-mini": " ", + "east": " ", + "north-east": " ", + "south-east": " ", + "up-down": " ", + "up-head": " " + }, + "beta": " ", + "beta_xs": " ", + "blob": " ", + "blobs": { + "image": " ", + "raw": " ", + "text": " " + }, + "block": " ", + "block_countdown": " ", + "block_slim": " ", + "brands": { + "blockscout": " ", + "celenium": " ", + "graph": " ", + "kadena": { + "logo": { + "dark": " ", + "light": " " + }, + "rounded": { + "black": " ", + "green": " ", + "white": " " + }, + "rounded-filled": { + "black": " ", + "green": " ", + "white": " " + }, + "square": { + "black": " ", + "green": " ", + "white": " " + } + }, + "safe": " ", + "solidity_scan": " ", + "tac": " ", + "ton": " " + }, + "burger": " ", + "certified": " ", + "check": " ", + "checkered_flag": " ", + "clock": " ", + "clock-light": " ", + "close": " ", + "coins": { + "bitcoin": " " + }, + "collection": " ", + "columns": " ", + "contracts": { + "proxy": " ", + "regular": " ", + "regular_many": " ", + "verified": " ", + "verified_many": " " + }, + "copy": " ", + "copy_check": " ", + "cross": " ", + "delete": " ", + "dex-tracker": " ", + "docs": " ", + "donate": " ", + "dots": " ", + "edit": " ", + "email": " ", + "empty_search_result": " ", + "error-pages": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "403", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 47.76, + "height": 24 + }, + "filePath": "/Users/isaozler/Desktop/__WORKSPACE__/Kadena/apps/kadena-io/blockscout-frontend/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json", + "isSource": true + }, + { + "$type": "icon", + "$name": "404", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 48.239999999999995, + "height": 24 + }, + "filePath": "/Users/isaozler/Desktop/__WORKSPACE__/Kadena/apps/kadena-io/blockscout-frontend/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json", + "isSource": true + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "422", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 48.239999999999995, + "height": 24 + }, + "filePath": "/Users/isaozler/Desktop/__WORKSPACE__/Kadena/apps/kadena-io/blockscout-frontend/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json", + "isSource": true + }, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "429", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 47.76237623762376, + "height": 24 + }, + "filePath": "/Users/isaozler/Desktop/__WORKSPACE__/Kadena/apps/kadena-io/blockscout-frontend/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json", + "isSource": true + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "500", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 46.81188118811881, + "height": 24 + }, + "filePath": "/Users/isaozler/Desktop/__WORKSPACE__/Kadena/apps/kadena-io/blockscout-frontend/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json", + "isSource": true + } + ], + "explorer": " ", + "files": { + "csv": " ", + "image": " ", + "json": " ", + "placeholder": " ", + "sol": " ", + "yul": " " + }, + "filter": " ", + "flame": " ", + "games": " ", + "gas": " ", + "gas_xl": " ", + "gear": " ", + "gear_slim": " ", + "globe": " ", + "globe-b": " ", + "graphQL": " ", + "heart_filled": " ", + "heart_outline": " ", + "hourglass": " ", + "info": " ", + "info_filled": " ", + "integration": { + "full": " ", + "partial": " " + }, + "internal_txns": " ", + "interop": " ", + "key": " ", + "lightning": " ", + "lightning_navbar": " ", + "link": " ", + "link_external": " ", + "lock": " ", + "merits": " ", + "merits_colored": " ", + "merits_slim": " ", + "merits_with_dot": " ", + "merits_with_dot_slim": " ", + "minus": " ", + "monaco": { + "cargo": " ", + "file": " ", + "folder-open": " ", + "folder": " ", + "rust": " ", + "solidity": " ", + "toml": " ", + "Transparent Logo": " " + }, + "moon": " ", + "moon-with-star": " ", + "networks": " ", + "nft_shield": " ", + "open-link": " ", + "operation": " ", + "operation_slim": " ", + "output_roots": " ", + "payment_link": " ", + "plus": " ", + "private_tags_slim": " ", + "privattags": " ", + "profile": " ", + "publictags": " ", + "publictags_slim": " ", + "qr_code": " ", + "refresh": " ", + "repeat": " ", + "restAPI": " ", + "rocket": " ", + "rocket_xl": " ", + "scope": " ", + "score": { + "score-not-ok": " ", + "score-ok": " " + }, + "search": " ", + "share": " ", + "sign_out": " ", + "social": { + "coingecko": " ", + "coinmarketcap": " ", + "defi_llama": " ", + "discord": " ", + "discord_filled": " ", + "facebook_filled": " ", + "git": " ", + "github_filled": " ", + "linkedin_filled": " ", + "medium_filled": " ", + "opensea_filled": " ", + "reddit_filled": " ", + "slack_filled": " ", + "stats": " ", + "telega": " ", + "telegram_filled": " ", + "twitter": " ", + "twitter_filled": " " + }, + "star_filled": " ", + "star_outline": " ", + "stats": " ", + "status": { + "error": " ", + "pending": " ", + "success": " ", + "warning": " " + }, + "sun": " ", + "swap": " ", + "testnet": " ", + "token": " ", + "token-placeholder": " ", + "token-transfers": " ", + "tokens": " ", + "top-accounts": " ", + "transactions": " ", + "transactions_slim": " ", + "txn_batches": " ", + "txn_batches_slim": " ", + "uniswap": " ", + "user_op": " ", + "user_op_slim": " ", + "validator": " ", + "verification-steps": { + "error": " ", + "finalized": " ", + "unfinalized": " " + }, + "verified": " ", + "verified_slim": " ", + "wallet": " ", + "wallets": { + "coinbase": " ", + "metamask": " ", + "token-pocket": " " + }, + "watchlist": " " + } + } +} diff --git a/toolkit/theme/design-system/build/tokens/kda-design-system.tokens.svg.json b/toolkit/theme/design-system/build/tokens/kda-design-system.tokens.svg.json new file mode 100644 index 0000000000..79c1438776 --- /dev/null +++ b/toolkit/theme/design-system/build/tokens/kda-design-system.tokens.svg.json @@ -0,0 +1,2591 @@ +{ + "kda": { + "icons": { + "ABI": { + "$type": "icon", + "$name": "ABI", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "ABI_slim": { + "$type": "icon", + "$name": "ABI_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "API": { + "$type": "icon", + "$name": "API", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "API_slim": { + "$type": "icon", + "$name": "API_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "ENS": { + "$type": "icon", + "$name": "ENS", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "ENS_slim": { + "$type": "icon", + "$name": "ENS_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "MUD": { + "$type": "icon", + "$name": "MUD", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "MUD_menu": { + "$type": "icon", + "$name": "MUD_menu", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "RPC": { + "$type": "icon", + "$name": "RPC", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "apps": { + "$type": "icon", + "$name": "apps", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "apps_list": { + "$type": "icon", + "$name": "apps_list", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "apps_slim": { + "$type": "icon", + "$name": "apps_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "arrows": { + "arrow_drop_down": { + "$type": "icon", + "$name": "arrow_drop_down", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "down-right": { + "$type": "icon", + "$name": "down-right", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "east-mini": { + "$type": "icon", + "$name": "east-mini", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "east": { + "$type": "icon", + "$name": "east", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "north-east": { + "$type": "icon", + "$name": "north-east", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "south-east": { + "$type": "icon", + "$name": "south-east", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "up-down": { + "$type": "icon", + "$name": "up-down", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "up-head": { + "$type": "icon", + "$name": "up-head", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "beta": { + "$type": "icon", + "$name": "beta", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 52, + "height": 24 + } + }, + "beta_xs": { + "$type": "icon", + "$name": "beta_xs", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "blob": { + "$type": "icon", + "$name": "blob", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "blobs": { + "image": { + "$type": "icon", + "$name": "image", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "raw": { + "$type": "icon", + "$name": "raw", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "text": { + "$type": "icon", + "$name": "text", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "block": { + "$type": "icon", + "$name": "block", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "block_countdown": { + "$type": "icon", + "$name": "block_countdown", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 31.264864864864865, + "height": 24 + } + }, + "block_slim": { + "$type": "icon", + "$name": "block_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "brands": { + "blockscout": { + "$type": "icon", + "$name": "blockscout", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "celenium": { + "$type": "icon", + "$name": "celenium", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "graph": { + "$type": "icon", + "$name": "graph", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "kadena": { + "logo": { + "dark": { + "$type": "icon", + "$name": "dark", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 84.375, + "height": 24 + } + }, + "light": { + "$type": "icon", + "$name": "light", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 84.375, + "height": 24 + } + } + }, + "rounded": { + "black": { + "$type": "icon", + "$name": "black", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "green": { + "$type": "icon", + "$name": "green", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "white": { + "$type": "icon", + "$name": "white", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "rounded-filled": { + "black": { + "$type": "icon", + "$name": "black", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "green": { + "$type": "icon", + "$name": "green", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "white": { + "$type": "icon", + "$name": "white", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "square": { + "black": { + "$type": "icon", + "$name": "black", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "green": { + "$type": "icon", + "$name": "green", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "white": { + "$type": "icon", + "$name": "white", + "$description": "", + "$style": "kdacolor", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + }, + "safe": { + "$type": "icon", + "$name": "safe", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24.003628117913834, + "height": 24 + } + }, + "solidity_scan": { + "$type": "icon", + "$name": "solidity_scan", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 27.599999999999998, + "height": 24 + } + }, + "tac": { + "$type": "icon", + "$name": "tac", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "ton": { + "$type": "icon", + "$name": "ton", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "burger": { + "$type": "icon", + "$name": "burger", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "certified": { + "$type": "icon", + "$name": "certified", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "check": { + "$type": "icon", + "$name": "check", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "checkered_flag": { + "$type": "icon", + "$name": "checkered_flag", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.5, + "height": 24 + } + }, + "clock-light": { + "$type": "icon", + "$name": "clock-light", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "clock": { + "$type": "icon", + "$name": "clock", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "close": { + "$type": "icon", + "$name": "close", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "coins": { + "bitcoin": { + "$type": "icon", + "$name": "bitcoin", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "collection": { + "$type": "icon", + "$name": "collection", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "columns": { + "$type": "icon", + "$name": "columns", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "contracts": { + "proxy": { + "$type": "icon", + "$name": "proxy", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "regular": { + "$type": "icon", + "$name": "regular", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "regular_many": { + "$type": "icon", + "$name": "regular_many", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "verified": { + "$type": "icon", + "$name": "verified", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "verified_many": { + "$type": "icon", + "$name": "verified_many", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "copy": { + "$type": "icon", + "$name": "copy", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "copy_check": { + "$type": "icon", + "$name": "copy_check", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "cross": { + "$type": "icon", + "$name": "cross", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "delete": { + "$type": "icon", + "$name": "delete", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "dex-tracker": { + "$type": "icon", + "$name": "dex-tracker", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "docs": { + "$type": "icon", + "$name": "docs", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "donate": { + "$type": "icon", + "$name": "donate", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "dots": { + "$type": "icon", + "$name": "dots", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 108, + "height": 24 + } + }, + "edit": { + "$type": "icon", + "$name": "edit", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "email": { + "$type": "icon", + "$name": "email", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "empty_search_result": { + "$type": "icon", + "$name": "empty_search_result", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 31.135135135135137, + "height": 24 + } + }, + "error-pages": [ + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "403", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 47.76, + "height": 24 + } + }, + { + "$type": "icon", + "$name": "404", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 48.239999999999995, + "height": 24 + } + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "422", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 48.239999999999995, + "height": 24 + } + }, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "429", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 47.76237623762376, + "height": 24 + } + }, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + { + "$type": "icon", + "$name": "500", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 46.81188118811881, + "height": 24 + } + } + ], + "explorer": { + "$type": "icon", + "$name": "explorer", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "files": { + "csv": { + "$type": "icon", + "$name": "csv", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "image": { + "$type": "icon", + "$name": "image", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "json": { + "$type": "icon", + "$name": "json", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "placeholder": { + "$type": "icon", + "$name": "placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24.48, + "height": 24 + } + }, + "sol": { + "$type": "icon", + "$name": "sol", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "yul": { + "$type": "icon", + "$name": "yul", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "filter": { + "$type": "icon", + "$name": "filter", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "flame": { + "$type": "icon", + "$name": "flame", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "games": { + "$type": "icon", + "$name": "games", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "gas": { + "$type": "icon", + "$name": "gas", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "gas_xl": { + "$type": "icon", + "$name": "gas_xl", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "gear": { + "$type": "icon", + "$name": "gear", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "gear_slim": { + "$type": "icon", + "$name": "gear_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "globe-b": { + "$type": "icon", + "$name": "globe-b", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "globe": { + "$type": "icon", + "$name": "globe", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "graphQL": { + "$type": "icon", + "$name": "graphQL", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "heart_filled": { + "$type": "icon", + "$name": "heart_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.857142857142854, + "height": 24 + } + }, + "heart_outline": { + "$type": "icon", + "$name": "heart_outline", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.857142857142854, + "height": 24 + } + }, + "hourglass": { + "$type": "icon", + "$name": "hourglass", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "info": { + "$type": "icon", + "$name": "info", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "info_filled": { + "$type": "icon", + "$name": "info_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "integration": { + "full": { + "$type": "icon", + "$name": "full", + "$description": "", + "$value": " ", + "$dimensions": { + "width": null, + "height": null + } + }, + "partial": { + "$type": "icon", + "$name": "partial", + "$description": "", + "$value": " ", + "$dimensions": { + "width": null, + "height": null + } + } + }, + "internal_txns": { + "$type": "icon", + "$name": "internal_txns", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "interop": { + "$type": "icon", + "$name": "interop", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "key": { + "$type": "icon", + "$name": "key", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "lightning": { + "$type": "icon", + "$name": "lightning", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "lightning_navbar": { + "$type": "icon", + "$name": "lightning_navbar", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "link": { + "$type": "icon", + "$name": "link", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "link_external": { + "$type": "icon", + "$name": "link_external", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "lock": { + "$type": "icon", + "$name": "lock", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "merits": { + "$type": "icon", + "$name": "merits", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "merits_colored": { + "$type": "icon", + "$name": "merits_colored", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.818181818181817, + "height": 24 + } + }, + "merits_slim": { + "$type": "icon", + "$name": "merits_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "merits_with_dot": { + "$type": "icon", + "$name": "merits_with_dot", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "merits_with_dot_slim": { + "$type": "icon", + "$name": "merits_with_dot_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "minus": { + "$type": "icon", + "$name": "minus", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "monaco": { + "cargo": { + "$type": "icon", + "$name": "cargo", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.947065808386977, + "height": 24 + } + }, + "file": { + "$type": "icon", + "$name": "file", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "folder-open": { + "$type": "icon", + "$name": "folder-open", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "folder": { + "$type": "icon", + "$name": "folder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "rust": { + "$type": "icon", + "$name": "rust", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "solidity": { + "$type": "icon", + "$name": "solidity", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "toml": { + "$type": "icon", + "$name": "toml", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "Transparent Logo": { + "$type": "icon", + "$name": "Transparent Logo", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 27.71281334220408, + "height": 24 + } + } + }, + "moon-with-star": { + "$type": "icon", + "$name": "moon-with-star", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "moon": { + "$type": "icon", + "$name": "moon", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "networks": { + "$type": "icon", + "$name": "networks", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + }, + "icon-placeholder": { + "$type": "icon", + "$name": "icon-placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "logo-placeholder": { + "$type": "icon", + "$name": "logo-placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 120, + "height": 24 + } + } + }, + "nft_shield": { + "$type": "icon", + "$name": "nft_shield", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "open-link": { + "$type": "icon", + "$name": "open-link", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "operation": { + "$type": "icon", + "$name": "operation", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "operation_slim": { + "$type": "icon", + "$name": "operation_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "output_roots": { + "$type": "icon", + "$name": "output_roots", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "payment_link": { + "$type": "icon", + "$name": "payment_link", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "plus": { + "$type": "icon", + "$name": "plus", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "private_tags_slim": { + "$type": "icon", + "$name": "private_tags_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "privattags": { + "$type": "icon", + "$name": "privattags", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "profile": { + "$type": "icon", + "$name": "profile", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "publictags": { + "$type": "icon", + "$name": "publictags", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "publictags_slim": { + "$type": "icon", + "$name": "publictags_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "qr_code": { + "$type": "icon", + "$name": "qr_code", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "refresh": { + "$type": "icon", + "$name": "refresh", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "repeat": { + "$type": "icon", + "$name": "repeat", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "restAPI": { + "$type": "icon", + "$name": "restAPI", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "rocket": { + "$type": "icon", + "$name": "rocket", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "rocket_xl": { + "$type": "icon", + "$name": "rocket_xl", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "scope": { + "$type": "icon", + "$name": "scope", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "score": { + "score-not-ok": { + "$type": "icon", + "$name": "score-not-ok", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "score-ok": { + "$type": "icon", + "$name": "score-ok", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "search": { + "$type": "icon", + "$name": "search", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "share": { + "$type": "icon", + "$name": "share", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.176470588235293, + "height": 24 + } + }, + "sign_out": { + "$type": "icon", + "$name": "sign_out", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "social": { + "coingecko": { + "$type": "icon", + "$name": "coingecko", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "coinmarketcap": { + "$type": "icon", + "$name": "coinmarketcap", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "defi_llama": { + "$type": "icon", + "$name": "defi_llama", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "discord": { + "$type": "icon", + "$name": "discord", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "discord_filled": { + "$type": "icon", + "$name": "discord_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "facebook_filled": { + "$type": "icon", + "$name": "facebook_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "git": { + "$type": "icon", + "$name": "git", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "github_filled": { + "$type": "icon", + "$name": "github_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "linkedin_filled": { + "$type": "icon", + "$name": "linkedin_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "medium_filled": { + "$type": "icon", + "$name": "medium_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "opensea_filled": { + "$type": "icon", + "$name": "opensea_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "reddit_filled": { + "$type": "icon", + "$name": "reddit_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "slack_filled": { + "$type": "icon", + "$name": "slack_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "stats": { + "$type": "icon", + "$name": "stats", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "telega": { + "$type": "icon", + "$name": "telega", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25.200000000000003, + "height": 24 + } + }, + "telegram_filled": { + "$type": "icon", + "$name": "telegram_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "twitter": { + "$type": "icon", + "$name": "twitter", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25, + "height": 24 + } + }, + "twitter_filled": { + "$type": "icon", + "$name": "twitter_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25, + "height": 24 + } + } + }, + "star_filled": { + "$type": "icon", + "$name": "star_filled", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "star_outline": { + "$type": "icon", + "$name": "star_outline", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "stats": { + "$type": "icon", + "$name": "stats", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "status": { + "error": { + "$type": "icon", + "$name": "error", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "pending": { + "$type": "icon", + "$name": "pending", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.818181818181817, + "height": 24 + } + }, + "success": { + "$type": "icon", + "$name": "success", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "warning": { + "$type": "icon", + "$name": "warning", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "sun": { + "$type": "icon", + "$name": "sun", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "swap": { + "$type": "icon", + "$name": "swap", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "token-placeholder": { + "$type": "icon", + "$name": "token-placeholder", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "token-transfers": { + "$type": "icon", + "$name": "token-transfers", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "token": { + "$type": "icon", + "$name": "token", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "tokens": { + "$type": "icon", + "$name": "tokens", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25.5, + "height": 24 + }, + "xdai": { + "$type": "icon", + "$name": "xdai", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "top-accounts": { + "$type": "icon", + "$name": "top-accounts", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "transactions": { + "$type": "icon", + "$name": "transactions", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "transactions_slim": { + "$type": "icon", + "$name": "transactions_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "txn_batches": { + "$type": "icon", + "$name": "txn_batches", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "txn_batches_slim": { + "$type": "icon", + "$name": "txn_batches_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 21.818181818181817, + "height": 24 + } + }, + "uniswap": { + "$type": "icon", + "$name": "uniswap", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24.75, + "height": 24 + } + }, + "user_op": { + "$type": "icon", + "$name": "user_op", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "user_op_slim": { + "$type": "icon", + "$name": "user_op_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 22.857142857142854, + "height": 24 + } + }, + "validator": { + "$type": "icon", + "$name": "validator", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "verification-steps": { + "error": { + "$type": "icon", + "$name": "error", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "finalized": { + "$type": "icon", + "$name": "finalized", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "unfinalized": { + "$type": "icon", + "$name": "unfinalized", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "verified": { + "$type": "icon", + "$name": "verified", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "verified_slim": { + "$type": "icon", + "$name": "verified_slim", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "wallet": { + "$type": "icon", + "$name": "wallet", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 25.200000000000003, + "height": 24 + } + }, + "wallets": { + "coinbase": { + "$type": "icon", + "$name": "coinbase", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "metamask": { + "$type": "icon", + "$name": "metamask", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + }, + "token-pocket": { + "$type": "icon", + "$name": "token-pocket", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + }, + "watchlist": { + "$type": "icon", + "$name": "watchlist", + "$description": "", + "$value": " ", + "$dimensions": { + "width": 24, + "height": 24 + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/dist/css/breakpoints.css b/toolkit/theme/design-system/dist/css/breakpoints.css new file mode 100644 index 0000000000..beeb72db09 --- /dev/null +++ b/toolkit/theme/design-system/dist/css/breakpoints.css @@ -0,0 +1,37 @@ +/* kda Design System | Breakpoints */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +@media (min-width: 64rem) { + :root { + --kda-explorer-hero-banner-title-font-size: 1.75rem; + --kda-explorer-hero-banner-title-font-weight: 600; + --kda-explorer-hero-banner-title-font-line-height: 1.75rem; + --kda-explorer-hero-banner-title-margin-gap: 0.5rem; + --kda-explorer-hero-banner-title-margin-bottom: 1.5rem; + --kda-explorer-hero-banner-radius: 8px; + --kda-explorer-hero-banner-padding: 2rem; + --kda-explorer-hero-banner-column-width: auto; + --kda-explorer-hero-banner-button-dimensions-radius: 2px; + --kda-explorer-input-dimensions-radius-base: 2px; + --kda-explorer-top-bar-font-size: 0.75rem; + + &.dark { + --kda-explorer-hero-banner-title-font-size: 1.75rem; + --kda-explorer-hero-banner-title-font-weight: 600; + --kda-explorer-hero-banner-title-font-line-height: 1.75rem; + --kda-explorer-hero-banner-title-margin-gap: 0.5rem; + --kda-explorer-hero-banner-title-margin-bottom: 1.5rem; + --kda-explorer-hero-banner-radius: 8px; + --kda-explorer-hero-banner-padding: 2rem; + --kda-explorer-hero-banner-column-width: auto; + --kda-explorer-hero-banner-button-dimensions-radius: 2px; + --kda-explorer-input-dimensions-radius-base: 2px; + --kda-explorer-top-bar-font-size: 0.75rem; + } + } +} + diff --git a/toolkit/theme/design-system/dist/css/fonts.css b/toolkit/theme/design-system/dist/css/fonts.css new file mode 100644 index 0000000000..42c5eb5794 --- /dev/null +++ b/toolkit/theme/design-system/dist/css/fonts.css @@ -0,0 +1,30 @@ +/**** "Inter", sans-serif Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } +/**** "Inter", sans-serif Italic ****/ +@font-face { font-family:'Inter'; font-style:italic; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTc2dphjQ.ttf) format('truetype'); } +/**** "Kode Mono", monospace Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:100; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuLyeMZg.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq5my9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:500; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq6uy9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq0e19Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:700; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq3619Do.ttf) format('truetype'); } +/**** "Inter", sans-serif Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } +/**** "Inter", sans-serif Italic ****/ +@font-face { font-family:'Inter'; font-style:italic; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTc2dthjQ.ttf) format('truetype'); } +/**** "Kode Mono", monospace Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq5my9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:500; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq6uy9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq0e19Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:700; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq3619Do.ttf) format('truetype'); } +/**** "Inter", sans-serif Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } +/**** "Inter", sans-serif Italic ****/ +@font-face { font-family:'Inter'; font-style:italic; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTcB9xhjQ.ttf) format('truetype'); } +/**** "Kode Mono", monospace Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq5my9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:500; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq6uy9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq0e19Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:700; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq3619Do.ttf) format('truetype'); } +/**** "Inter", sans-serif Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } +/**** "Inter", sans-serif Italic ****/ +@font-face { font-family:'Inter'; font-style:italic; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTcWdxhjQ.ttf) format('truetype'); } +/**** "Kode Mono", monospace Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq5my9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:500; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq6uy9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq0e19Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:700; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq3619Do.ttf) format('truetype'); } +/**** "Inter", sans-serif Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } +/**** "Inter", sans-serif Italic ****/ +@font-face { font-family:'Inter'; font-style:italic; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOKk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOCk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOak4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnOqk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPKk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:italic; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCM3FwrK3iLTcvneQg7Ca725JhhKnPqk4j1ebLhAm8SrXTccNxhjQ.ttf) format('truetype'); } +/**** "Kode Mono", monospace Normal ****/ +@font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50qjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ojIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ujIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50ijIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp506jIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50yjIw2boKoduKmMEVuBWYMZg.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:400; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq5my9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:500; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq6uy9Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:600; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq0e19Do.ttf) format('truetype'); } @font-face { font-family:'Kode Mono'; font-style:normal; font-weight:700; font-display:swap; src:url(https://fonts.gstatic.com/s/kodemono/v3/A2BLn5pb0QgtVEPFnlYkkaoBgw4qv9odq3619Do.ttf) format('truetype'); } diff --git a/toolkit/theme/design-system/dist/css/icons.css b/toolkit/theme/design-system/dist/css/icons.css new file mode 100644 index 0000000000..00bd53adea --- /dev/null +++ b/toolkit/theme/design-system/dist/css/icons.css @@ -0,0 +1,206 @@ +/* kda Design System | Icons */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +:root { + --kda-icons-abi: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cg%20clip-path%3D%22url(%23ABI_svg__a)%22%3E%20%3Cpath%20d%3D%22M10.176%2010.291a1.253%201.253%200%200%200-1.76.159L5.29%2014.2a1.247%201.247%200%200%200%200%201.6l3.125%203.75a1.25%201.25%200%201%200%201.919-1.6L7.876%2015l2.459-2.949a1.25%201.25%200%200%200-.159-1.76Zm6.318-2.766a1.261%201.261%200%200%200-1.47.981l-2.5%2012.5a1.246%201.246%200%200%200%201.229%201.494%201.249%201.249%200%200%200%201.223-1.006l2.5-12.5a1.246%201.246%200%200%200-.982-1.469Zm8.215%206.675-3.125-3.75a1.251%201.251%200%200%200-2.209.687%201.25%201.25%200%200%200%20.29.914l2.459%202.95-2.459%202.948a1.248%201.248%200%200%200%20.584%202%201.25%201.25%200%200%200%201.335-.398l3.125-3.75a1.247%201.247%200%200%200%200-1.601Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22ABI_svg__a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20transform%3D%22translate(5%205)%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-abi-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%20fill%3D%22currentColor%22%3E%20%3Cpath%20d%3D%22M5.176%205.291a1.253%201.253%200%200%200-1.76.159L.29%209.2a1.247%201.247%200%200%200%200%201.6l3.125%203.75a1.25%201.25%200%201%200%201.919-1.6L2.876%2010l2.459-2.949a1.25%201.25%200%200%200-.159-1.76Z%22%2F%3E%20%3Cpath%20d%3D%22M5.176%205.291a1.253%201.253%200%200%200-1.76.159L.29%209.2a1.247%201.247%200%200%200%200%201.6l3.125%203.75a1.25%201.25%200%201%200%201.919-1.6L2.876%2010l2.459-2.949a1.25%201.25%200%200%200-.159-1.76Zm6.318-2.766a1.261%201.261%200%200%200-1.47.981l-2.5%2012.5a1.247%201.247%200%200%200%201.23%201.494%201.249%201.249%200%200%200%201.223-1.006l2.5-12.5a1.246%201.246%200%200%200-.982-1.469Z%22%2F%3E%20%3Cpath%20d%3D%22M11.494%202.525a1.261%201.261%200%200%200-1.47.981l-2.5%2012.5a1.247%201.247%200%200%200%201.23%201.494%201.249%201.249%200%200%200%201.223-1.006l2.5-12.5a1.246%201.246%200%200%200-.982-1.469ZM19.708%209.2l-3.124-3.75a1.249%201.249%200%201%200-1.92%201.601l2.46%202.95-2.46%202.948a1.25%201.25%200%201%200%201.92%201.602l3.124-3.75a1.246%201.246%200%200%200%200-1.601Z%22%2F%3E%20%3Cpath%20d%3D%22m19.708%209.2-3.124-3.75a1.249%201.249%200%201%200-1.92%201.601l2.46%202.95-2.46%202.948a1.25%201.25%200%201%200%201.92%201.602l3.124-3.75a1.246%201.246%200%200%200%200-1.601Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-api: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.297%208.699a1.699%201.699%200%200%201%203.397%200V9.6a1%201%200%201%200%202%200v-.902a3.699%203.699%200%201%200-7.397%200v6.268a1%201%200%201%200%202%200V8.699Zm5.397%206.298a1%201%200%201%200-2%200v6.295a1.699%201.699%200%200%201-3.397%200v-.913a1%201%200%201%200-2%200v.913a3.699%203.699%200%201%200%207.397%200v-6.295Zm-10.003-1.7c-.931%200-1.691.758-1.691%201.699%200%20.94.76%201.698%201.691%201.698h6.304a1%201%200%200%201%200%202H8.691A3.695%203.695%200%200%201%205%2014.996c0-2.04%201.65-3.699%203.691-3.699h.902a1%201%200%201%201%200%202h-.902Zm6.304-2a1%201%200%200%200%200%202h6.292c.943%200%201.704.762%201.704%201.699a1.7%201.7%200%200%201-1.704%201.698h-.865a1%201%200%201%200%200%202h.865a3.701%203.701%200%200%200%203.704-3.698%203.701%203.701%200%200%200-3.704-3.699h-6.292Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-api-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8.3%203.7a1.7%201.7%200%200%201%203.4%200v.903a1%201%200%201%200%202%200V3.7a3.7%203.7%200%200%200-7.4%200v6.272a1%201%200%200%200%202%200V3.7Zm5.4%206.302a1%201%200%200%200-2%200V16.3a1.7%201.7%200%200%201-3.4%200v-.914a1%201%200%201%200-2%200v.914a3.7%203.7%200%201%200%207.4%200v-6.298ZM3.692%208.3C2.76%208.3%202%209.059%202%2010c0%20.94.76%201.7%201.693%201.7H10a1%201%200%201%201%200%202H3.693A3.696%203.696%200%200%201%200%2010c0-2.04%201.65-3.7%203.693-3.7h.902a1%201%200%200%201%200%202h-.902ZM10%206.3a1%201%200%200%200%200%202h6.294C17.238%208.3%2018%209.064%2018%2010c0%20.937-.761%201.7-1.705%201.7h-.865a1%201%200%201%200%200%202h.865A3.702%203.702%200%200%200%2020%2010c0-2.046-1.66-3.7-3.705-3.7H10Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-ens: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14.41%203%207.764%207.625c-.396.263-.72.62-.946%201.038a4.74%204.74%200%200%200-.046.1l-.009.019a4.786%204.786%200%200%200%20.01%203.93c.233.508.828%201.51.828%201.51L14.41%203ZM4.076%2016.404A15.45%2015.45%200%200%201%204%2014.886l1.168-3.159a6.617%206.617%200%200%200%20.755%202.095C9.802%2020.393%2014.401%2027%2014.401%2027l-7.35-5.108A7.562%207.562%200%200%201%204.25%2017.57a7.53%207.53%200%200%201-.174-1.166ZM4%2014.886l1.144-3.306a3.575%203.575%200%200%201%200-1.076c-.101.187-.298.57-.298.57a8.68%208.68%200%200%200-.794%202.534A15.45%2015.45%200%200%200%204%2014.886ZM15.192%2027l.063-.103%206.734-11.113.005.009.007-.012s.589%201.002.827%201.51a4.787%204.787%200%200%201-.045%204.05c-.225.417-.55.774-.946%201.037L15.192%2027Zm9.263-7.504c.054-.357.054-.72%200-1.076a6.622%206.622%200%200%200-.776-2.242C19.796%209.607%2015.2%203%2015.2%203l7.35%205.108a7.533%207.533%200%200%201%202.975%205.488c.091.93.098%201.865.02%202.796a8.68%208.68%200%200%201-.794%202.535s-.196.382-.297.57v-.001Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-ens-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M3.145%208.091c.198.423.689%201.258.689%201.258L9.508%200%203.97%203.854c-.33.22-.6.517-.788.865a3.989%203.989%200%200%200-.037%203.372ZM.897%2011.17a6.277%206.277%200%200%200%202.478%204.573L9.501%2020S5.668%2014.495%202.436%209.018a5.52%205.52%200%200%201-.65-1.868%202.98%202.98%200%200%201%200-.897%2035.09%2035.09%200%200%200-.247.475A7.234%207.234%200%200%200%20.877%208.84a12.86%2012.86%200%200%200%20.02%202.33Zm15.626.739c-.198-.423-.689-1.258-.689-1.258L10.16%2020l5.538-3.852c.33-.22.6-.516.788-.864a3.99%203.99%200%200%200%20.037-3.375Zm2.249-3.079a6.279%206.279%200%200%200-2.48-4.573L10.168%200s3.83%205.505%207.065%2010.982a5.52%205.52%200%200%201%20.647%201.868c.045.297.045.6%200%20.897.084-.156.248-.475.248-.475a7.223%207.223%200%200%200%20.662-2.112c.065-.776.059-1.555-.017-2.33Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M3.182%204.719c.188-.348.458-.645.788-.865L9.508%200%203.834%209.351s-.496-.835-.69-1.257a3.989%203.989%200%200%201%20.038-3.375Zm-2.285%206.45a6.278%206.278%200%200%200%202.478%204.574L9.501%2020S5.668%2014.495%202.436%209.018a5.52%205.52%200%200%201-.65-1.868%202.98%202.98%200%200%201%200-.897%2034.31%2034.31%200%200%200-.247.475A7.234%207.234%200%200%200%20.877%208.84c-.064.776-.057%201.555.02%202.33Zm15.616.742c-.198-.422-.689-1.258-.689-1.258L10.16%2020l5.538-3.852c.33-.22.6-.516.788-.864a3.99%203.99%200%200%200%20.037-3.375l-.01.002Zm2.249-3.078a6.277%206.277%200%200%200-2.48-4.574L10.169%200s3.83%205.505%207.064%2010.982a5.52%205.52%200%200%201%20.647%201.868c.045.297.045.6%200%20.897.084-.156.248-.475.248-.475a7.233%207.233%200%200%200%20.662-2.112c.064-.776.059-1.555-.018-2.33l-.01.003Z%22%20fill%3D%22currentColor%22%20style%3D%22mix-blend-mode%3Acolor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-mud: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M3.933%2017.138a3.98%203.98%200%200%201-1.03-.136%204.001%204.001%200%200%201-2.771-4.866L1.796%205.82a3.958%203.958%200%200%201%201.85-2.45%203.88%203.88%200%200%201%202.966-.386A3.944%203.944%200%200%201%209.07%204.992h1.857a3.922%203.922%200%200%201%202.458-2.008%203.88%203.88%200%200%201%202.965.386%203.977%203.977%200%200%201%201.85%202.436l1.665%206.33a4%204%200%200%201-2.779%204.88%203.879%203.879%200%200%201-2.965-.386%203.959%203.959%200%200%201-1.85-2.436l-.13-.629H7.856l-.164.615a3.958%203.958%200%200%201-1.85%202.436%203.9%203.9%200%200%201-1.908.522ZM5.59%204.278a2.494%202.494%200%200%200-1.229.328A2.572%202.572%200%200%200%203.175%206.17l-1.664%206.316a2.572%202.572%200%200%200%201.771%203.137%202.45%202.45%200%200%200%201.872-.243%202.53%202.53%200%200%200%201.186-1.565l.443-1.679h6.43l.436%201.68a2.558%202.558%200%200%200%201.187%201.564%202.47%202.47%200%200%200%201.879.243%202.558%202.558%200%200%200%201.764-3.137L16.814%206.17a2.535%202.535%200%200%200-1.178-1.564%202.472%202.472%200%200%200-1.88-.243%202.536%202.536%200%200%200-1.693%201.586l-.171.472H8.105l-.171-.472a2.544%202.544%200%200%200-1.7-1.586%202.486%202.486%200%200%200-.644-.086Z%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M5.712%209.993a1.429%201.429%200%201%201%200-2.858%201.429%201.429%200%200%201%200%202.858Zm8.573-2.143a.714.714%200%201%200%200-1.43.714.714%200%200%200%200%201.43Zm0%202.857a.714.714%200%201%200%200-1.429.714.714%200%200%200%200%201.43Zm-1.428-1.429a.714.714%200%201%200%200-1.428.714.714%200%200%200%200%201.428Zm2.857%200a.714.714%200%201%200%200-1.428.714.714%200%200%200%200%201.428Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-mud-menu: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.485%2023.997a4.23%204.23%200%200%200%201.234.183%204.31%204.31%200%200%200%202.29-.7c.545-.353%201.022-.824%201.403-1.386s.66-1.202.817-1.884l.197-.825h5.144l.155.844c.157.682.435%201.323.816%201.885s.859%201.032%201.404%201.385a4.334%204.334%200%200%200%201.733.658%204.18%204.18%200%200%200%201.825-.14c1.214-.384%202.244-1.285%202.868-2.51a5.933%205.933%200%200%200%20.467-4.04l-1.997-8.496c-.16-.682-.437-1.322-.818-1.883s-.858-1.033-1.403-1.387a4.333%204.333%200%200%200-1.733-.657%204.18%204.18%200%200%200-1.825.14c-.632.194-1.221.534-1.73.998s-.923%201.042-1.22%201.696h-2.228c-.298-.653-.714-1.23-1.222-1.694s-1.096-.804-1.728-1a4.18%204.18%200%200%200-1.825-.14c-.61.088-1.2.312-1.733.657A4.969%204.969%200%200%200%205.97%207.095a5.602%205.602%200%200%200-.813%201.895l-1.998%208.477a5.932%205.932%200%200%200%20.472%204.025c.621%201.22%201.646%202.12%202.855%202.505zM8.234%207.36a2.752%202.752%200%200%201%201.474-.441c.26%200%20.52.04.772.115.467.148.895.418%201.25.788.355.37.626.83.79%201.34l.206.634h4.544l.206-.633c.163-.51.432-.97.786-1.34s.78-.64%201.246-.789c.377-.114.77-.144%201.156-.088.387.056.76.197%201.099.414.348.228.653.53.896.891.243.36.419.772.518%201.21l1.998%208.476c.214.872.112%201.804-.285%202.592s-1.055%201.37-1.833%201.618c-.376.114-.77.144-1.156.088a2.761%202.761%200%200%201-1.098-.414c-.35-.228-.655-.531-.9-.892s-.422-.77-.524-1.208l-.523-2.254H11.14l-.532%202.254c-.1.438-.277.85-.522%201.21-.244.361-.55.663-.9.89a2.738%202.738%200%200%201-1.095.414%202.64%202.64%200%200%201-1.152-.088c-.777-.25-1.435-.832-1.832-1.62a3.815%203.815%200%200%201-.294-2.59L6.81%209.46c.208-.883.72-1.638%201.424-2.1zm12.765%203.985a.857.857%200%201%201-1.714%200%20.857.857%200%200%201%201.714%200zm-12.098%203.14a1.715%201.715%200%201%200%201.906-2.85%201.715%201.715%200%200%200-1.906%202.85zm11.241%201.147a.857.857%200%201%200%200-1.714.857.857%200%200%200%200%201.714zm-.857-2.572a.857.857%200%201%201-1.714%200%20.857.857%200%200%201%201.714%200zm2.572.857a.857.857%200%201%200%200-1.714.857.857%200%200%200%200%201.714z%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-rpc: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M22.857%2019.714a3.033%203.033%200%200%200-1.571.448l-2.428-2.436a4.714%204.714%200%200%200%200-5.452l2.428-2.436c.473.29%201.016.445%201.571.448a3.143%203.143%200%201%200-3.143-3.143c.003.555.158%201.098.448%201.571l-2.436%202.428a4.714%204.714%200%200%200-5.452%200L9.838%208.714c.29-.473.445-1.016.448-1.571a3.143%203.143%200%201%200-3.143%203.143%203.033%203.033%200%200%200%201.571-.448l2.428%202.436a4.714%204.714%200%200%200%200%205.452l-2.428%202.436a3.033%203.033%200%200%200-1.571-.448%203.142%203.142%200%201%200%203.143%203.143%203.033%203.033%200%200%200-.448-1.571l2.436-2.428a4.714%204.714%200%200%200%205.452%200l2.436%202.428a3.033%203.033%200%200%200-.448%201.571%203.142%203.142%200%201%200%203.143-3.143Zm0-14.143a1.572%201.572%200%201%201%200%203.144%201.572%201.572%200%200%201%200-3.144ZM5.571%207.143a1.571%201.571%200%201%201%203.143%200%201.571%201.571%200%200%201-3.143%200Zm1.572%2017.286a1.571%201.571%200%201%201%200-3.143%201.571%201.571%200%200%201%200%203.143ZM15%2018.143a3.143%203.143%200%201%201%200-6.287%203.143%203.143%200%200%201%200%206.287Zm7.857%206.286a1.571%201.571%200%201%201%200-3.143%201.571%201.571%200%200%201%200%203.143Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-apps: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20d%3D%22M13%2015.943H6a1%201%200%200%200-1%201v7a1%201%200%200%200%201%201h7a1%201%200%200%200%201-1v-7a1%201%200%200%200-1-1Zm-1%207H7v-5h5v5Zm12-18h-7a1%201%200%200%200-1%201v7a1%201%200%200%200%201%201h7a1%201%200%200%200%201-1v-7a1%201%200%200%200-1-1Zm-1%207h-5v-5h5v5Zm1%204h-7a1%201%200%200%200-1%201v7a1%201%200%200%200%201%201h7a1%201%200%200%200%201-1v-7a1%201%200%200%200-1-1Zm-1%207h-5v-5h5v5Zm-10-18H6a1%201%200%200%200-1%201v7a1%201%200%200%200%201%201h7a1%201%200%200%200%201-1v-7a1%201%200%200%200-1-1Zm-1%207H7v-5h5v5Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-apps-list: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2.167%204.167c0-.92.746-1.667%201.667-1.667h3.333c.92%200%201.667.746%201.667%201.667V7.5c0%20.92-.747%201.667-1.667%201.667H3.834c-.92%200-1.667-.747-1.667-1.667V4.167Zm1.667.5a.5.5%200%200%201%20.5-.5h2.333a.5.5%200%200%201%20.5.5V7a.5.5%200%200%201-.5.5H4.334a.5.5%200%200%201-.5-.5V4.667ZM10.5%204.27c0%20.519.42.938.938.938h4.792a.938.938%200%200%200%200-1.875h-4.792a.937.937%200%200%200-.938.938Zm0%203.334c0%20.518.42.938.938.938h4.792a.938.938%200%200%200%200-1.875h-4.792a.937.937%200%200%200-.938.937ZM2.167%2012.5c0-.92.746-1.667%201.667-1.667h3.333c.92%200%201.667.746%201.667%201.667v3.333c0%20.92-.747%201.667-1.667%201.667H3.834c-.92%200-1.667-.746-1.667-1.667V12.5Zm1.667.5a.5.5%200%200%201%20.5-.5h2.333a.5.5%200%200%201%20.5.5v2.333a.5.5%200%200%201-.5.5H4.334a.5.5%200%200%201-.5-.5V13Zm6.666-.396c0%20.518.42.938.938.938h4.792a.938.938%200%200%200%200-1.875h-4.792a.937.937%200%200%200-.938.937Zm0%203.334c0%20.517.42.937.938.937h4.792a.938.938%200%200%200%200-1.875h-4.792a.937.937%200%200%200-.938.938Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-apps-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M3%205a2%202%200%200%201%202-2h4a2%202%200%200%201%202%202v4a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V5Zm2%20.5a.5.5%200%200%201%20.5-.5h3a.5.5%200%200%201%20.5.5v3a.5.5%200%200%201-.5.5h-3a.5.5%200%200%201-.5-.5v-3ZM3%2015a2%202%200%200%201%202-2h4a2%202%200%200%201%202%202v4a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2v-4Zm2%20.5a.5.5%200%200%201%20.5-.5h3a.5.5%200%200%201%20.5.5v3a.5.5%200%200%201-.5.5h-3a.5.5%200%200%201-.5-.5v-3ZM15%203a2%202%200%200%200-2%202v4a2%202%200%200%200%202%202h4a2%202%200%200%200%202-2V5a2%202%200%200%200-2-2h-4Zm4%202.5a.5.5%200%200%200-.5-.5h-3a.5.5%200%200%200-.5.5v3a.5.5%200%200%200%20.5.5h3a.5.5%200%200%200%20.5-.5v-3ZM13%2015a2%202%200%200%201%202-2h4a2%202%200%200%201%202%202v4a2%202%200%200%201-2%202h-4a2%202%200%200%201-2-2v-4Zm2%20.5a.5.5%200%200%201%20.5-.5h3a.5.5%200%200%201%20.5.5v3a.5.5%200%200%201-.5.5h-3a.5.5%200%200%201-.5-.5v-3Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-arrow-drop-down: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22m7%2010%205%205%205-5z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-down-right: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M8.038%2013.692h6.675l-4.147%204.148.832.832%205.568-5.568-5.568-5.568-.832.832%204.147%204.148H8.038A3.832%203.832%200%200%201%204.21%208.687V1.329H3.033v7.36a5.01%205.01%200%200%200%205.005%205.004Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-east-mini: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M11.535%2011.293a1%201%200%200%200%200%201.414l3.536%203.536a1%201%200%201%201-1.414%201.414l-4.95-4.95a1%201%200%200%201%200-1.414l4.95-4.95a1%201%200%201%201%201.414%201.414l-3.536%203.536Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-east: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M13.758%2011c.89%200%201.337-1.077.707-1.707l-2.95-2.95a1%201%200%201%201%201.414-1.414l6.364%206.364a1%201%200%200%201%200%201.414l-6.364%206.364a1%201%200%201%201-1.414-1.414l2.95-2.95c.63-.63.184-1.707-.707-1.707H5a1%201%200%201%201%200-2h8.758Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-north-east: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m11.003%206.276-5.267%205.267a.667.667%200%200%201-.943-.943l5.266-5.267H5.67A.667.667%200%201%201%205.67%204h6.667v6.667a.667.667%200%200%201-1.333%200V6.276Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-south-east: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M18.233%2020.005%208.18%209.953a1%201%200%200%201%200-1.414l.353-.353a1%201%200%200%201%201.414%200L20%2018.236V9.755a1%201%200%200%201%201-1h.5a1%201%200%200%201%201%201v12.75H9.75a1%201%200%200%201-1-1v-.5a1%201%200%200%201%201-1h8.483Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-up-down: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M2.774%2013.088a.936.936%200%200%200%200%201.325l2.814%202.812a.935.935%200%200%200%201.324%200l2.813-2.812A.935.935%200%201%200%208.4%2013.088l-1.213%201.21v-9.95a.954.954%200%200%200-.938-.937.954.954%200%200%200-.937.938v9.95L4.1%2013.088a.937.937%200%200%200-1.327%200Zm10.039%202.538a.937.937%200%201%200%201.875%200V5.702l1.213%201.21a.935.935%200%201%200%201.324-1.324l-2.812-2.813a.936.936%200%200%200-1.325%200l-2.812%202.813A.935.935%200%201%200%2011.6%206.912l1.213-1.21v9.924Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-arrows-up-head: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M10.56%205.27A.72.72%200%200%200%2010%205a.72.72%200%200%200-.56.27l-6.3%208.585a.729.729%200%200%200-.066.75A.699.699%200%200%200%203.7%2015h12.6a.699.699%200%200%200%20.626-.396.728.728%200%200%200-.066-.749l-6.3-8.585Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-beta: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2252px%22%20viewBox%3D%220%200%2026%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Crect%20width%3D%2226%22%20height%3D%2212%22%20rx%3D%222%22%20fill%3D%22%23F56565%22%2F%3E%20%3Cpath%20d%3D%22M3.028%209V1.727h1.061V4.43h.064c.062-.114.15-.245.267-.394.116-.15.277-.28.483-.391.205-.114.478-.17.816-.17.44%200%20.834.11%201.18.333.345.223.616.544.812.963.2.419.299.923.299%201.512%200%20.59-.098%201.095-.295%201.517a2.3%202.3%200%200%201-.81.97%202.097%202.097%200%200%201-1.175.337c-.332%200-.603-.056-.813-.167a1.54%201.54%200%200%201-.49-.391%202.957%202.957%200%200%201-.274-.398h-.089V9H3.028Zm1.04-2.727c0%20.383.056.72.167%201.008.111.29.272.515.483.679.21.16.469.241.774.241.317%200%20.582-.084.795-.252.214-.17.375-.401.483-.693.112-.29.167-.619.167-.983%200-.36-.054-.683-.163-.97a1.484%201.484%200%200%200-.483-.678c-.213-.166-.48-.249-.799-.249-.308%200-.568.08-.781.238-.21.159-.37.38-.48.664a2.77%202.77%200%200%200-.163.995Zm7.485%202.837c-.538%200-1-.115-1.389-.344a2.336%202.336%200%200%201-.894-.977c-.209-.421-.313-.915-.313-1.48%200-.56.104-1.052.313-1.478.21-.426.504-.759.88-.998.379-.239.822-.359%201.328-.359.308%200%20.606.051.895.153.29.102.548.262.778.48.23.217.41.5.543.848.133.346.2.766.2%201.26v.377H9.556v-.795h3.296c0-.28-.057-.527-.17-.742a1.29%201.29%200%200%200-1.198-.703%201.38%201.38%200%200%200-.78.22%201.474%201.474%200%200%200-.512.568%201.641%201.641%200%200%200-.178.756v.622c0%20.364.064.674.192.93.13.256.311.451.543.586.232.133.503.199.814.199.2%200%20.384-.028.55-.085a1.143%201.143%200%200%200%20.707-.692l1.005.18a1.82%201.82%200%200%201-.434.778%202.1%202.1%200%200%201-.777.515%202.91%202.91%200%200%201-1.062.181Zm6.064-5.565v.853h-2.979v-.853h2.98Zm-2.18-1.306h1.062v5.16c0%20.205.03.36.092.465a.49.49%200%200%200%20.238.21c.1.035.207.052.323.052.085%200%20.16-.005.224-.017l.149-.029.192.877a2.08%202.08%200%200%201-.689.114%201.87%201.87%200%200%201-.781-.15%201.34%201.34%200%200%201-.586-.482c-.15-.218-.224-.491-.224-.82v-5.38Zm4.942%206.882c-.345%200-.658-.064-.937-.192a1.58%201.58%200%200%201-.664-.565c-.161-.246-.242-.548-.242-.905%200-.308.06-.561.178-.76a1.31%201.31%200%200%201%20.48-.472c.2-.116.425-.204.674-.263a6.56%206.56%200%200%201%20.76-.135l.795-.092c.204-.027.352-.068.444-.125.092-.057.139-.149.139-.277V5.31c0-.31-.088-.55-.263-.72-.173-.171-.431-.256-.774-.256-.358%200-.64.08-.845.238-.204.156-.345.33-.423.522l-.998-.228a1.92%201.92%200%200%201%20.519-.802c.23-.206.493-.355.791-.448a3.116%203.116%200%200%201%201.634-.063c.246.05.476.142.689.277.215.134.392.327.53.578.136.249.205.572.205.97V9h-1.037v-.746h-.043a1.512%201.512%200%200%201-.308.405%201.642%201.642%200%200%201-.53.33%202.053%202.053%200%200%201-.774.132Zm.231-.853c.294%200%20.545-.058.753-.174a1.192%201.192%200%200%200%20.646-1.061V6.33a.552.552%200%200%201-.22.106%203.43%203.43%200%200%201-.366.082l-.401.06c-.13.017-.24.03-.327.043a2.63%202.63%200%200%200-.564.131.97.97%200%200%200-.405.266.665.665%200%200%200-.15.455c0%20.263.098.462.292.597.194.132.441.198.742.198Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-beta-xs: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2012%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Crect%20width%3D%2212%22%20height%3D%2212%22%20rx%3D%222%22%20fill%3D%22%23F56565%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.42%202.494c-.373-.313-.896-.49-1.5-.49a2.028%202.028%200%200%200-1.52.567%201.948%201.948%200%200%200-.453.685%201.91%201.91%200%200%200-.127.805V10h.79V8.508a2.46%202.46%200%200%200%201.59.549c.3.01.6-.04.88-.147a2.21%202.21%200%200%200%20.751-.48%202.136%202.136%200%200%200%20.652-1.596%201.925%201.925%200%200%200-.309-1.09%201.978%201.978%200%200%200-.717-.664%201.75%201.75%200%200%200%20.557-1.301c0-.523-.22-.97-.594-1.285Zm-2.023.36c.163-.06.338-.085.512-.074h.008c.413%200%20.741.105.964.28.22.171.343.417.343.72v.004a.944.944%200%200%201-.288.713.99.99%200%200%201-.732.283l-.115-.004v.781h.112c.467%200%20.84.13%201.094.351.253.219.398.534.398.927v.004a1.357%201.357%200%200%201-.418%201.04%201.422%201.422%200%200%201-1.069.4h-.012a1.532%201.532%200%200%201-1.109-.393%201.437%201.437%200%200%201-.475-1.052V4.05a1.165%201.165%200%200%201%20.352-.923c.123-.12.272-.214.435-.274Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-blob: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.183%202.768h-.002a1.382%201.382%200%200%200-.107-.024%206.93%206.93%200%200%200-1.591-.1c-1.009.056-2.254.35-3.32%201.269l-.29.245c-.323.273-.714.602-.918.82-1.292%201.38-2.252%203.68-2.894%205.713a34.038%2034.038%200%200%200-.91%203.57l-.01.048-.003.034a68.656%2068.656%200%200%200-.067.667c-.038.403-.072.803-.072.951%200%20.096.07.329.54.654.447.309%201.123.606%201.987.864%201.719.515%204.041.84%206.38.881%202.342.043%204.645-.2%206.34-.78%201.754-.602%202.556-1.445%202.556-2.415%200-2.7-1.068-5.753-2.593-8.179-.759-1.208-1.617-2.237-2.485-2.977-.875-.746-1.718-1.161-2.452-1.226l-.045-.004-.043-.011h-.001Zm.138-.618S8.18%201.356%205.786%203.42c-.069.06-.157.133-.255.216-.328.276-.769.647-1.001.895C1.74%207.51.55%2014.213.55%2014.213S.402%2015.587.4%2015.959c-.013%203.442%2019%204.92%2019-.794S14.912%202.467%2011.321%202.15Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22m11.165%202.748.048-.213ZM.55%2014.213l-.394-.07v-.002l.001-.004.003-.016.011-.059.043-.222c.04-.192.097-.47.176-.81.157-.683.395-1.625.722-2.661.65-2.056%201.666-4.552%203.126-6.112.249-.265.702-.647%201.02-.914l.015-.013c.1-.083.185-.156.252-.213C6.81%202.009%208.29%201.674%209.43%201.612a7.894%207.894%200%200%201%201.414.05%206.37%206.37%200%200%201%20.53.09l.012.002c1.004.098%202.023.647%202.972%201.455.963.821%201.886%201.936%202.688%203.212%201.6%202.546%202.754%205.794%202.754%208.744%200%201.704-1.425%202.774-3.24%203.397-1.844.632-4.273.876-6.672.833-2.403-.043-4.816-.375-6.64-.922-.909-.272-1.695-.604-2.263-.997-.556-.384-.987-.89-.985-1.52.001-.208.04-.665.077-1.048l.052-.516.017-.162.006-.06.398.043Zm0%200-.398-.043.002-.014.002-.014.394.07ZM10.672%203.085a6.528%206.528%200%200%200-1.168-.04c-.952.052-2.102.328-3.08%201.17-.084.074-.185.159-.291.248l-.002.001c-.332.28-.7.591-.884.788-1.226%201.309-2.165%203.533-2.804%205.56a33.627%2033.627%200%200%200-.9%203.523l-.005.031-.002.02-.016.158a66.14%2066.14%200%200%200-.05.504c-.037.385-.067.742-.07.888.013.031.083.154.367.35.397.275%201.029.557%201.874.81%201.676.502%203.96.823%206.272.864%202.319.042%204.57-.2%206.203-.759%201.718-.589%202.286-1.34%202.286-2.036%200-2.606-1.036-5.587-2.531-7.966-.743-1.182-1.576-2.178-2.407-2.886-.842-.717-1.609-1.077-2.227-1.132l-.077-.007-.072-.018-.014-.003a5.01%205.01%200%200%200-.402-.067Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M15.85%2011.65c0%201.353-.548%202.45-1.225%202.45S13.4%2013.003%2013.4%2011.65c0-1.353.548-2.45%201.225-2.45s1.225%201.097%201.225%202.45Zm-4.25.55c0%201.436-.582%202.6-1.3%202.6-.718%200-1.3-1.164-1.3-2.6%200-1.436.582-2.6%201.3-2.6.718%200%201.3%201.164%201.3%202.6Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-blobs-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%20fill%3D%22currentColor%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.647%201h12.705A2.65%202.65%200%200%201%2019%203.647v12.706A2.65%202.65%200%200%201%2016.353%2019H3.647A2.65%202.65%200%200%201%201%2016.353V3.647A2.65%202.65%200%200%201%203.647%201Zm12.705%2016.94a1.59%201.59%200%200%200%201.588-1.588l.001-1.87-2.647-2.206-3.192%202.66-5.77-5.246-4.273%204.747v1.915a1.59%201.59%200%200%200%201.588%201.588h12.705Zm-1.059-7.04%202.647%202.205.001-9.457a1.59%201.59%200%200%200-1.588-1.588H3.647A1.59%201.59%200%200%200%202.06%203.647v9.208L6.257%208.19l5.874%205.342%203.162-2.634Zm1.06-4.605a2.65%202.65%200%200%201-2.647%202.647%202.65%202.65%200%200%201-2.647-2.648%202.65%202.65%200%200%201%202.647-2.647%202.65%202.65%200%200%201%202.647%202.647Zm-1.059%200a1.59%201.59%200%201%200-1.588%201.588%201.59%201.59%200%200%200%201.588-1.588Z%22%2F%3E%20%3Cpath%20d%3D%22M19%203.647h.2-.2Zm-1.06%2012.705h-.2.2Zm.001-1.87h.2v-.094l-.072-.06-.128.154Zm-2.647-2.206.128-.153-.128-.107-.128.107.128.153Zm-3.192%202.66-.134.148.129.117.133-.112-.128-.153ZM6.332%209.69l.134-.148-.149-.136-.134.15.148.134Zm-4.273%204.747-.149-.134-.051.057v.077h.2Zm15.881-1.333-.128.154.328.273v-.427h-.2ZM15.293%2010.9l.128-.154-.128-.107-.128.107.128.154Zm2.648-7.252h.2-.2ZM2.06%2012.855h-.2v.521l.349-.387-.15-.134ZM6.257%208.19l.134-.148-.149-.135-.134.15.149.133Zm5.874%205.342-.134.148.129.117.133-.112-.128-.153ZM16.351.8H3.648v.4h12.705V.8ZM19.2%203.647A2.85%202.85%200%200%200%2016.352.8v.4A2.45%202.45%200%200%201%2018.8%203.647h.4Zm0%2012.706V3.647h-.4v12.706h.4ZM16.353%2019.2a2.85%202.85%200%200%200%202.847-2.847h-.4a2.45%202.45%200%200%201-2.447%202.447v.4Zm-12.706%200h12.706v-.4H3.647v.4ZM.8%2016.353A2.85%202.85%200%200%200%203.647%2019.2v-.4A2.45%202.45%200%200%201%201.2%2016.353H.8Zm0-12.706v12.706h.4V3.647H.8ZM3.647.8A2.85%202.85%200%200%200%20.8%203.647h.4A2.45%202.45%200%200%201%203.647%201.2V.8ZM17.74%2016.352a1.39%201.39%200%200%201-1.388%201.388v.4a1.79%201.79%200%200%200%201.788-1.788h-.4Zm.001-1.87v1.87h.4v-1.87h-.4Zm-2.575-2.052%202.647%202.205.256-.307-2.647-2.205-.256.307Zm-2.936%202.66%203.192-2.66-.256-.307-3.192%202.66.256.306ZM6.197%209.837l5.77%205.246.27-.296-5.771-5.246-.27.296Zm-3.99%204.733L6.48%209.823l-.297-.267-4.273%204.747.298.268Zm.052%201.78v-1.914h-.4v1.915h.4Zm1.388%201.39a1.39%201.39%200%200%201-1.388-1.39h-.4a1.79%201.79%200%200%200%201.788%201.79v-.4Zm12.705%200H3.647v.4h12.705v-.4Zm1.716-4.79-2.647-2.206-.256.307%202.647%202.206.256-.307Zm-.327-9.304v9.457h.4V3.647h-.4ZM16.353%202.26a1.39%201.39%200%200%201%201.388%201.388h.4a1.79%201.79%200%200%200-1.788-1.788v.4Zm-12.706%200h12.706v-.4H3.647v.4ZM2.26%203.647A1.39%201.39%200%200%201%203.647%202.26v-.4A1.79%201.79%200%200%200%201.86%203.647h.4Zm0%209.208V3.647h-.4v9.208h.4Zm3.849-4.798L1.91%2012.721l.298.268%204.197-4.664-.297-.268Zm6.158%205.328L6.39%208.043l-.269.296%205.875%205.342.269-.296Zm2.899-2.64-3.162%202.634.256.307%203.162-2.634-.256-.307Zm-1.46-1.604a2.85%202.85%200%200%200%202.848-2.848h-.4a2.45%202.45%200%200%201-2.447%202.448v.4Zm-2.847-2.848a2.85%202.85%200%200%200%202.848%202.848v-.4a2.45%202.45%200%200%201-2.447-2.447h-.4Zm2.848-2.847a2.85%202.85%200%200%200-2.848%202.847h.4a2.45%202.45%200%200%201%202.448-2.447v-.4Zm2.847%202.847a2.85%202.85%200%200%200-2.847-2.847v.4a2.45%202.45%200%200%201%202.447%202.447h.4Zm-2.847-1.387a1.39%201.39%200%200%201%201.388%201.388h.4a1.79%201.79%200%200%200-1.788-1.788v.4Zm-1.389%201.388a1.39%201.39%200%200%201%201.389-1.388v-.4a1.79%201.79%200%200%200-1.789%201.788h.4Zm1.389%201.389a1.39%201.39%200%200%201-1.389-1.389h-.4a1.79%201.79%200%200%200%201.789%201.789v-.4Zm1.388-1.389a1.39%201.39%200%200%201-1.388%201.389v.4a1.79%201.79%200%200%200%201.788-1.789h-.4Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-blobs-raw: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%3E%20%3Cpath%20d%3D%22M15.063%2019H4.937A3.937%203.937%200%200%201%201%2015.062V4.938A3.937%203.937%200%200%201%204.938%201h5.625v1.125H4.936a2.813%202.813%200%200%200-2.812%202.813v10.125a2.812%202.812%200%200%200%202.813%202.812h10.125a2.812%202.812%200%200%200%202.812-2.813V9.439H19v5.624A3.937%203.937%200%200%201%2015.062%2019Z%22%2F%3E%20%3Cpath%20d%3D%22M15.063%208.875a3.938%203.938%200%201%201%200-7.875%203.938%203.938%200%200%201%200%207.875Zm0-6.75a2.812%202.812%200%201%200%200%205.624%202.812%202.812%200%200%200%200-5.624Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-blobs-text: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4%201a3%203%200%200%200-3%203v12a3%203%200%200%200%203%203h12a3%203%200%200%200%203-3V4a3%203%200%200%200-3-3H4Zm.2%201.2a2%202%200%200%200-2%202v11.6a2%202%200%200%200%202%202h11.6a2%202%200%200%200%202-2V4.2a2%202%200%200%200-2-2H4.2Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Crect%20x%3D%224%22%20y%3D%225%22%20width%3D%2212%22%20height%3D%221.4%22%20rx%3D%22.7%22%20fill%3D%22currentColor%22%2F%3E%20%3Crect%20x%3D%224%22%20y%3D%228%22%20width%3D%228%22%20height%3D%221.4%22%20rx%3D%22.7%22%20fill%3D%22currentColor%22%2F%3E%20%3Crect%20x%3D%224%22%20y%3D%2210.8%22%20width%3D%2212%22%20height%3D%221.4%22%20rx%3D%22.7%22%20fill%3D%22currentColor%22%2F%3E%20%3Crect%20x%3D%224%22%20y%3D%2213.6%22%20width%3D%229%22%20height%3D%221.4%22%20rx%3D%22.7%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-block: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20d%3D%22M14.925%203%205%208.653v11.541l7.671%204.47-.037-1.878-6.094-3.568v-8.574l7.596%204.291V25.03l.801.451.827-.45V14.935l7.584-4.292v8.574L17.29%2022.71v1.878L25%2020.279V8.653L14.925%203Zm0%2010.583L7.516%209.217l7.409-4.358%207.587%204.358-7.587%204.366Zm-5.712%204.235%201.484-.845-.126-.221-1.483.845.125.22Zm2.598-1.487%201.484-.845-.126-.22-1.484.845.126.22Zm3.224-3.964v-1.7h-.254v1.7h.254Zm0-2.963v-1.71h-.254v1.71h.254Zm0-2.848V4.847h-.254v1.709h.254Zm3.21%209.564-1.475-.854-.127.22%201.474.854.127-.22Zm2.57%201.487-1.485-.855-.126.22%201.483.855.127-.22ZM6.59%2019.317l1.474-.846-.127-.22-1.473.845.126.22Zm16.836-.224-1.473-.855-.128.22%201.474.855.127-.22Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-block-countdown: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2231.264864864864865px%22%20viewBox%3D%220%200%20241%20185%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M58.5%2057.705%20120.306%2022.5l62.743%2035.205v72.397l-48.007%2026.842v-11.695l37.055-21.373-8.814-5.11.794-1.37%208.681%205.034V70.1l-23.049%2013.044c.109-.729.164-1.464.166-2.2v-9.556l17.678-10.174-46.559-26.74v10.17h-1.583V34.605L74.17%2061.214l16.33%209.625v10.225c.002.588.037%201.175.107%201.76L68.09%2070.1v52.366l8.708-4.994.787%201.373-8.808%205.052%2037.262%2021.819.234%2011.697L58.5%20129.576V57.705Zm32.219%2051.843c-.11.642-.179%201.29-.206%201.939l-5.774%203.289-.784-1.375%206.764-3.853Zm24.672%2028.095h10.139v22.05l-5.147%202.807-4.992-2.806v-22.051Zm10.139-10h-10.139v-4.78h10.139v4.78Zm0-29.66-1.706-1.412%2014.301-11.83a4.797%204.797%200%200%200%201.285-1.688%205.169%205.169%200%200%200%20.465-2.137v-3.772l-4.375%202.518v1.254l-1.586%201.315h-2.878l-10.73%206.175-10.478-6.175h-3.504l-1.449-1.195V79.31l-4.375-2.578v4.303c.002.741.161%201.472.465%202.136a4.797%204.797%200%200%200%201.285%201.688l4.949%204.063%209.352%207.648-1.16.95v5.968l2.609-2.137v7.17c0%20.634.23%201.242.641%201.69.41.448.966.7%201.547.7.58%200%201.136-.252%201.546-.7a2.503%202.503%200%200%200%20.641-1.69v-7.141l3.155%202.607v-6.006Zm-4.536-27.703h-1.583v-.032h1.583v.032Zm28.844%2040.893%206.353%203.66.79-1.372-7.414-4.27c.134.655.224%201.317.271%201.982ZM120.994%2055.5h-1.583v-3.763h1.583V55.5Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M138.125%2084.74a4.728%204.728%200%200%200%201.285-1.688%205.169%205.169%200%200%200%20.465-2.136V70.28c0-1.268-.461-2.483-1.281-3.38-.821-.896-1.934-1.4-3.094-1.4h-30.625c-1.16%200-2.273.504-3.094%201.4-.82.897-1.281%202.112-1.281%203.38v10.756c.002.741.161%201.472.465%202.136a4.729%204.729%200%200%200%201.285%201.688l4.949%204.063%209.352%207.648-14.301%2011.712a4.725%204.725%200%200%200-1.285%201.688%205.166%205.166%200%200%200-.465%202.136v10.756c0%201.267.461%202.483%201.281%203.38.821.896%201.934%201.4%203.094%201.4H135.5c1.16%200%202.273-.504%203.094-1.4.82-.897%201.281-2.113%201.281-3.38v-10.636a5.174%205.174%200%200%200-.465-2.137%204.733%204.733%200%200%200-1.285-1.688l-14.301-11.83%206.207-5.14%208.094-6.692Zm-33.25-14.46H135.5v10.636l-1.586%201.315h-27.59l-1.449-1.195V70.28Zm30.625%2041.947v10.636h-30.625v-10.756L118%20101.352v7.17c0%20.634.23%201.242.641%201.69.41.448.966.7%201.547.7.58%200%201.136-.252%201.546-.7a2.503%202.503%200%200%200%20.641-1.69v-7.141l13.125%2010.846Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%224%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-block-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M9.83%200%201%205.03v10.267l6.825%203.976-.034-1.67-5.421-3.175V6.8l6.757%203.818V19.6l.713.4.736-.401v-8.98L17.323%206.8v7.628l-5.388%203.108v1.67l6.858-3.834V5.029L9.829%200Zm0%209.415L3.238%205.531l6.59-3.877%206.75%203.877-6.75%203.884Zm-5.082%203.767%201.32-.752-.112-.196-1.32.752.112.196ZM7.06%2011.86l1.32-.752-.113-.196-1.32.752.113.196Zm2.868-3.527V6.821h-.226v1.512h.226Zm0-2.636v-1.52h-.226v1.52h.226Zm0-2.534v-1.52h-.226v1.52h.226Zm2.854%208.51-1.31-.76-.114.195%201.311.76.114-.196Zm2.287%201.322-1.32-.76-.113.195%201.32.76.113-.195Zm-12.654%201.52%201.311-.751-.112-.196-1.311.751.112.196Zm14.979-.198-1.311-.76-.114.195%201.311.76.114-.195Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-blockscout: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22M8.175%202.102a.834.834%200%200%200-.835-.832H5.36a.834.834%200%200%200-.835.832v1.972c0%20.46-.374.832-.835.832H1.835A.834.834%200%200%200%201%205.74v12.155c0%20.46.374.833.835.833h1.98a.834.834%200%200%200%20.835-.832V5.739c0-.46.374-.833.835-.833H7.34a.834.834%200%200%200%20.835-.832V2.102Zm7.3%200a.834.834%200%200%200-.835-.832h-1.98a.834.834%200%200%200-.835.832v1.972c0%20.46.374.832.835.832h1.855c.461%200%20.835.373.835.833v12.155c0%20.46.374.833.835.833h1.98a.834.834%200%200%200%20.835-.832V5.739a.834.834%200%200%200-.835-.833H16.31a.834.834%200%200%201-.835-.832V2.102Zm-3.65%206.962a.834.834%200%200%200-.835-.832H9.01a.834.834%200%200%200-.835.832v5.401c0%20.46.374.833.835.833h1.98a.834.834%200%200%200%20.835-.833V9.064Z%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.4%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-celenium: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22url(%23a)%22%2F%3E%20%3Cg%20clip-path%3D%22url(%23b)%22%20fill%3D%22%23fff%22%20fill-opacity%3D%22.95%22%3E%20%3Cpath%20d%3D%22M15.763%2012.826c.119-.243.178-.365.158-.462a.292.292%200%200%200-.148-.199c-.088-.047-.244-.02-.554.033a6.409%206.409%200%200%201-5.632-1.786%206.409%206.409%200%200%201-1.785-5.631c.053-.31.08-.466.033-.554a.292.292%200%200%200-.199-.149c-.098-.02-.219.04-.462.159a6.417%206.417%200%201%200%208.589%208.589Z%22%2F%3E%20%3Cpath%20d%3D%22M15.9%2010.817c.152-.054.229-.082.31-.152a.686.686%200%200%200%20.163-.228c.04-.1.04-.183.043-.35a6.398%206.398%200%200%200-1.879-4.624%206.398%206.398%200%200%200-4.624-1.88c-.167.003-.25.004-.35.044a.685.685%200%200%200-.229.163c-.07.081-.097.158-.151.31a5.25%205.25%200%200%200%206.717%206.717Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22a%22%20x1%3D%2217.5%22%20y1%3D%222%22%20x2%3D%220%22%20y2%3D%2220%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-color%3D%22%23196E41%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23092E1B%22%2F%3E%20%3C%2FlinearGradient%3E%20%3CclipPath%20id%3D%22b%22%3E%20%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%2214%22%20height%3D%2214%22%20rx%3D%227%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-graph: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22%236747ED%22%20d%3D%22M10%2020c5.523%200%2010-4.477%2010-10S15.523%200%2010%200%200%204.477%200%2010s4.477%2010%2010%2010%22%2F%3E%20%3Cpath%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%20d%3D%22M9.854%2011.292a2.66%202.66%200%200%201-2.666-2.667%202.66%202.66%200%200%201%202.666-2.667%202.66%202.66%200%200%201%202.667%202.667%202.66%202.66%200%200%201-2.667%202.667m0-6.667a4.001%204.001%200%200%201%200%208%204.001%204.001%200%200%201%200-8m3.813%208.208c.27.271.27.688%200%20.938L11%2016.437c-.27.271-.687.271-.937%200-.271-.27-.271-.687%200-.937l2.666-2.667c.25-.27.688-.27.938%200m1.541-7.541a.66.66%200%200%201-.666.666.66.66%200%200%201-.667-.666c0-.375.292-.667.667-.667.354%200%20.666.292.666.667%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-logo-dark: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2284.375px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%20225%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M66.345%2046.283v-28.57h4.372v11.874h.675A3004.61%203004.61%200%200%200%2082.01%2017.714h5.725a6431.239%206431.239%200%200%201-12.84%2014.065c2.224%202.416%206.666%207.25%2013.318%2014.504H82.29c-1.802-2.02-5.433-6.056-10.894-12.115h-.675v12.115h-4.375Zm23.056%200c1.351-4.755%204.056-14.28%208.11-28.572h7.752a61093.8%2061093.8%200%200%201%208.109%2028.572h-4.534c-.319-1.115-.941-3.36-1.867-6.734H95.799c-.292%201.115-.914%203.36-1.867%206.734h-4.53Zm7.514-10.8h8.943c-.69-2.521-2.067-7.53-4.132-15.023h-.676c-.69%202.499-2.068%207.505-4.133%2015.024h-.002Zm19.244%2010.8v-28.57h11.41c3.791%200%206.691.971%208.705%202.91%202.039%201.94%203.062%204.849%203.062%208.725v5.34c0%203.905-1.02%206.813-3.062%208.725-2.014%201.912-4.917%202.867-8.705%202.867h-11.41v.003Zm4.455-3.985h6.997c2.463%200%204.292-.623%205.486-1.87%201.192-1.275%201.788-3.148%201.788-5.62v-5.62c0-2.498-.596-4.356-1.788-5.58-1.191-1.222-3.02-1.832-5.486-1.832h-6.997v20.522Zm23.69%203.985v-28.57h17.929v4.027h-13.557v8.169h12.445v4.026h-12.445v8.369h13.758v3.985h-18.13v-.006Zm22.746%200v-28.57h8.469a7664.45%207664.45%200%200%200%207.714%2025.623h.676V17.714h4.333v28.572h-8.469a7900.584%207900.584%200%200%200-7.714-25.664h-.676v25.664h-4.333v-.003Zm25.041%200c1.351-4.755%204.056-14.28%208.11-28.572h7.752a61093.8%2061093.8%200%200%201%208.109%2028.572h-4.531c-.319-1.115-.941-3.36-1.867-6.734h-11.168c-.292%201.115-.915%203.36-1.868%206.734h-4.537Zm7.514-10.8h8.944c-.691-2.521-2.068-7.53-4.133-15.023h-.676c-.69%202.499-2.067%207.505-4.132%2015.024h-.003Z%22%20fill%3D%22%23F0EAE6%22%2F%3E%20%3Cpath%20d%3D%22m57.87%2056-17.392-.009-21.679-16.92L27.616%2032%2057.87%2056Zm0-48H40.487L18.799%2024.93%2027.616%2032%2057.87%208ZM18.794%2055.991%208%2047.463V16.537l10.794-8.528v47.982Z%22%20fill%3D%22%234A9079%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-logo-light: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2284.375px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%20225%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M66.345%2046.283v-28.57h4.372v11.874h.675A3004.61%203004.61%200%200%200%2082.01%2017.714h5.725a6431.239%206431.239%200%200%201-12.84%2014.065c2.224%202.416%206.666%207.25%2013.318%2014.504H82.29c-1.802-2.02-5.433-6.056-10.894-12.115h-.675v12.115h-4.375Zm23.056%200c1.351-4.755%204.056-14.28%208.11-28.572h7.752a61093.8%2061093.8%200%200%201%208.109%2028.572h-4.534c-.319-1.115-.941-3.36-1.867-6.734H95.799c-.292%201.115-.914%203.36-1.867%206.734h-4.53Zm7.514-10.8h8.943c-.69-2.521-2.067-7.53-4.132-15.023h-.676c-.69%202.499-2.068%207.505-4.133%2015.024h-.002Zm19.244%2010.8v-28.57h11.41c3.791%200%206.691.971%208.705%202.91%202.039%201.94%203.062%204.849%203.062%208.725v5.34c0%203.905-1.02%206.813-3.062%208.725-2.014%201.912-4.917%202.867-8.705%202.867h-11.41v.003Zm4.455-3.985h6.997c2.463%200%204.292-.623%205.486-1.87%201.192-1.275%201.788-3.148%201.788-5.62v-5.62c0-2.498-.596-4.356-1.788-5.58-1.191-1.222-3.02-1.832-5.486-1.832h-6.997v20.522Zm23.69%203.985v-28.57h17.929v4.027h-13.557v8.169h12.445v4.026h-12.445v8.369h13.758v3.985h-18.13v-.006Zm22.746%200v-28.57h8.469a7664.45%207664.45%200%200%200%207.714%2025.623h.676V17.714h4.333v28.572h-8.469a7900.584%207900.584%200%200%200-7.714-25.664h-.676v25.664h-4.333v-.003Zm25.041%200c1.351-4.755%204.056-14.28%208.11-28.572h7.752a61093.8%2061093.8%200%200%201%208.109%2028.572h-4.531c-.319-1.115-.941-3.36-1.867-6.734h-11.168c-.292%201.115-.915%203.36-1.868%206.734h-4.537Zm7.514-10.8h8.944c-.691-2.521-2.068-7.53-4.133-15.023h-.676c-.69%202.499-2.067%207.505-4.132%2015.024h-.003Z%22%20fill%3D%22%230F0F0F%22%2F%3E%20%3Cpath%20d%3D%22m57.87%2056-17.392-.009-21.679-16.92L27.616%2032%2057.87%2056Zm0-48H40.487L18.799%2024.93%2027.616%2032%2057.87%208ZM18.794%2055.991%208%2047.463V16.537l10.794-8.528v47.982Z%22%20fill%3D%22%234A9079%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-rounded-black: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m52.714%2052-14.493-.007-18.066-14.1L27.503%2032l25.211%2020Zm0-40H38.228L20.155%2026.108%2027.503%2032l25.211-20ZM20.15%2051.993l-8.994-7.107V19.114l8.994-7.107v39.986Z%22%20fill%3D%22%23020E1B%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-rounded-green: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m52.714%2052-14.493-.007-18.066-14.1L27.503%2032l25.211%2020Zm0-40H38.228L20.155%2026.108%2027.503%2032l25.211-20ZM20.15%2051.993l-8.994-7.107V19.114l8.994-7.107v39.986Z%22%20fill%3D%22%234A9079%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-rounded-white: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m52.714%2052-14.493-.007-18.066-14.1L27.503%2032l25.211%2020Zm0-40H38.228L20.155%2026.108%2027.503%2032l25.211-20ZM20.15%2051.993l-8.994-7.107V19.114l8.994-7.107v39.986Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-rounded-filled-black: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Ccircle%20cx%3D%2232%22%20cy%3D%2232%22%20r%3D%2224%22%20fill%3D%22%23131E2B%22%2F%3E%20%3Cpath%20d%3D%22m45%2045-9.348-.005L24%2035.83%2028.74%2032%2045%2045Zm0-26h-9.343L24%2028.17%2028.74%2032%2045%2019ZM24%2045l-6-4.621V23.62L24%2019v26Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-rounded-filled-green: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Ccircle%20cx%3D%2232%22%20cy%3D%2232%22%20r%3D%2224%22%20fill%3D%22%23131E2B%22%2F%3E%20%3Cpath%20d%3D%22m45%2045-9.348-.005L24%2035.83%2028.74%2032%2045%2045Zm0-26h-9.343L24%2028.17%2028.74%2032%2045%2019ZM24%2045l-6-4.621V23.62L24%2019v26Z%22%20fill%3D%22%234A9079%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-rounded-filled-white: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Ccircle%20cx%3D%2232%22%20cy%3D%2232%22%20r%3D%2224%22%20fill%3D%22%23F5F5F5%22%2F%3E%20%3Cpath%20d%3D%22m45%2045-9.348-.005L24%2035.83%2028.74%2032%2045%2045Zm0-26h-9.343L24%2028.17%2028.74%2032%2045%2019ZM24%2045l-6-4.621V23.62L24%2019v26Z%22%20fill%3D%22%23131E2B%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-square-black: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m56.87%2056-17.392-.009-21.679-16.92L26.617%2032%2056.87%2056Zm0-48H39.487L17.799%2024.93%2026.617%2032%2056.87%208ZM17.794%2055.991%207%2047.463V16.537l10.794-8.528v47.982Z%22%20fill%3D%22%23020E1B%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-square-green: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m56.87%2056-17.392-.009-21.679-16.92L26.617%2032%2056.87%2056Zm0-48H39.487L17.799%2024.93%2026.617%2032%2056.87%208ZM17.794%2055.991%207%2047.463V16.537l10.794-8.528v47.982Z%22%20fill%3D%22%234A9079%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-kadena-square-white: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20data-style%3D%22kdacolor%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m56.87%2056-17.392-.009-21.679-16.92L26.617%2032%2056.87%2056Zm0-48H39.487L17.799%2024.93%2026.617%2032%2056.87%208ZM17.794%2055.991%207%2047.463V16.537l10.794-8.528v47.982Z%22%20fill%3D%22%23F5F5F5%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-safe: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224.003628117913834px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20viewBox%3D%220%200%20661.6%20661.5%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M532%20330.7h-49.4c-14.8%200-26.7%2012-26.7%2026.7v71.7c0%2014.8-12%2026.7-26.7%2026.7H232.5c-14.8%200-26.7%2012-26.7%2026.7V532c0%2014.8%2012%2026.7%2026.7%2026.7h208c14.8%200%2026.5-12%2026.5-26.7v-39.6c0-14.8%2012-25.2%2026.7-25.2H532c14.8%200%2026.7-12%2026.7-26.7v-83.3c0-14.9-12-26.5-26.7-26.5zm-326.2-98.2c0-14.8%2012-26.7%2026.7-26.7H429c14.8%200%2026.7-12%2026.7-26.7v-49.4c0-14.8-12-26.7-26.7-26.7H221.1c-14.8%200-26.7%2012-26.7%2026.7v38.1c0%2014.8-12%2026.7-26.7%2026.7h-38c-14.8%200-26.7%2012-26.7%2026.7v83.4c0%2014.8%2012%2026.1%2026.8%2026.1h49.4c14.8%200%2026.7-12%2026.7-26.7l-.1-71.5zm101.7%2046.3H355c15.5%200%2028%2012.6%2028%2028v47.5c0%2015.5-12.6%2028-28%2028h-47.5c-15.5%200-28-12.6-28-28v-47.5c0-15.5%2012.6-28%2028-28z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-solidity-scan: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2227.599999999999998px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2023%2020%22%3E%20%3Cpath%20fill%3D%22url(%23a)%22%20d%3D%22M1.12%201.111v5.556h2.241V2.222h4.482V0H2.241a1.13%201.13%200%200%200-.793.325c-.21.209-.327.491-.327.786Zm20.168%205.556V1.11c0-.295-.118-.577-.328-.786A1.125%201.125%200%200%200%2020.168%200h-5.603v2.222h4.482v4.445h2.24Zm-2.24%2011.11h-4.483V20h5.603c.297%200%20.582-.117.792-.326.21-.208.328-.49.328-.785v-5.556h-2.24v4.445ZM7.842%2020v-2.222H3.361v-4.445h-2.24v5.556c0%20.295.117.577.327.785.21.209.496.326.793.326h5.602ZM0%208.889h22.408v2.222H0V8.89Z%22%2F%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22a%22%20x1%3D%222.161%22%20x2%3D%2221.104%22%20y1%3D%221.429%22%20y2%3D%2218.729%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-color%3D%22%2352FF00%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2300EEFD%22%2F%3E%20%3C%2FlinearGradient%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-tac: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22%2391019B%22%20fill-rule%3D%22evenodd%22%20d%3D%22M20%2010c0%205.523-4.477%2010-10%2010S0%2015.523%200%2010%204.477%200%2010%200s10%204.477%2010%2010Zm-9.598%206.938V7.425c0-.231.187-.418.418-.418h5.214c.533%200%20.862.58.589%201.037l-5.445%209.109c-.218.364-.776.21-.776-.215Zm-.804-4.373V3.05c0-.424-.559-.578-.776-.214l-5.445%209.108a.686.686%200%200%200%20.589%201.037H9.18a.418.418%200%200%200%20.418-.417Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-brands-ton: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22%230098EA%22%20d%3D%22M10%2020c5.523%200%2010-4.477%2010-10S15.523%200%2010%200%200%204.477%200%2010s4.477%2010%2010%2010Z%22%2F%3E%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.414%205.581H6.585c-1.255%200-2.051%201.355-1.42%202.45l4.215%207.305a.716.716%200%200%200%201.24%200l4.215-7.305c.63-1.093-.165-2.45-1.42-2.45Zm-4.037%207.564-.918-1.776-2.215-3.961a.387.387%200%200%201%20.34-.579h2.792v6.317Zm4.377-5.738L11.54%2011.37l-.918%201.775V6.828h2.792c.306%200%20.486.325.34.579Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-burger: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2016.875C3%2017.496%203.504%2018%204.125%2018h15.75a1.125%201.125%200%200%200%200-2.25H4.125c-.621%200-1.125.504-1.125%201.125ZM3%2012c0%20.621.504%201.125%201.125%201.125h9.75a1.125%201.125%200%200%200%200-2.25h-9.75C3.504%2010.875%203%2011.379%203%2012Zm1.125-3.749a1.125%201.125%200%200%201%200-2.25h12.75a1.125%201.125%200%200%201%200%202.25H4.125Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-certified: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M10.522%202.624a2%202%200%200%201%202.957%200l1.02%201.12a2%202%200%200%200%201.572.651l1.514-.07a2%202%200%200%201%202.091%202.09l-.07%201.514a2%202%200%200%200%20.65%201.572l1.12%201.02a2%202%200%200%201%200%202.958l-1.12%201.02a2%202%200%200%200-.65%201.572l.07%201.514a2%202%200%200%201-2.091%202.091l-1.514-.07a2%202%200%200%200-1.572.65l-1.02%201.12a2%202%200%200%201-2.957%200l-1.02-1.12a2%202%200%200%200-1.573-.65l-1.513.07a2%202%200%200%201-2.091-2.091l.07-1.514a2%202%200%200%200-.65-1.572l-1.121-1.02a2%202%200%200%201%200-2.957l1.12-1.02a2%202%200%200%200%20.651-1.573l-.07-1.513a2%202%200%200%201%202.09-2.091l1.514.07a2%202%200%200%200%201.572-.65l1.02-1.121Z%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cpath%20d%3D%22m9%2012%202%202%204-4%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-check: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M9.293%2014.465a1%201%200%200%200%201.414%200l7.778-7.78A1%201%200%200%201%2019.899%208.1l-9.192%209.193a1%201%200%200%201-1.414%200l-4.95-4.95a1%201%200%200%201%201.414-1.414l3.536%203.536Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-checkered-flag: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2222.5px%22%20viewBox%3D%220%200%2015%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Crect%20width%3D%222.4%22%20height%3D%2216%22%20rx%3D%221.2%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M2.9%202.1h9.18a1.5%201.5%200%200%201%201.5%201.5v5.6a1.5%201.5%200%200%201-1.5%201.5H2.9V2.1Z%22%20stroke%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.12%202.4H2.4v2.667h2.72V2.4Zm5.44%200H7.84v2.667h2.72V2.4ZM2.4%207.733h2.72V10.4H2.4V7.733Zm8.16%200H7.84V10.4h2.72V7.733ZM5.12%205.067h2.72v2.666H5.12V5.067Zm8.16%200h-2.72v2.666h2.72V5.067Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-clock: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10%20.3C4.643.3.3%204.643.3%2010c0%205.357%204.343%209.7%209.7%209.7%205.357%200%209.7-4.343%209.7-9.7%200-5.357-4.343-9.7-9.7-9.7ZM2.2%2010a7.8%207.8%200%201%201%2015.6%200%207.8%207.8%200%200%201-15.6%200ZM10%204.05a.95.95%200%200%200-.95.95v5c0%20.525.425.95.95.95h5a.95.95%200%201%200%200-1.9h-3.75a.3.3%200%200%201-.3-.3V5a.95.95%200%200%200-.95-.95Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-clock-light: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M8.164.859a9.3%209.3%200%200%201%208.3%202.457l.047.046c.136.134.268.272.395.415l.03.033c.207.234.403.478.587.733l.039.055.15.214c.087.131.17.266.25.401.15.252.29.51.415.773.012.024.022.049.033.073.084.18.161.362.233.546l.03.08a9.3%209.3%200%200%201%20.607%203.297l-.012.46a9.301%209.301%200%200%201-2.395%205.781l-.317.334a9.3%209.3%200%200%201-6.114%202.712l-.461.012A9.3%209.3%200%200%201%205.105%2017.9l-.29-.187a9.303%209.303%200%200%201-.819-.615l-.055-.049a9.33%209.33%200%200%201-.438-.397l-.098-.098a8.814%208.814%200%200%201-.351-.371l-.078-.088a9.32%209.32%200%200%201-.16-.188l-.062-.075a9.397%209.397%200%200%201-.294-.383A9.297%209.297%200%200%201%208.164.859Zm1.817%201.509a7.617%207.617%200%200%200-3.994%201.13l-.237.153A7.616%207.616%200%200%200%203.06%206.81l-.113.259a7.615%207.615%200%200%200-.433%204.398l.06.277a7.613%207.613%200%200%200%202.024%203.622l.203.196a7.615%207.615%200%200%200%203.695%201.888l.278.05a7.614%207.614%200%200%200%204.12-.484l.26-.112a7.615%207.615%200%200%200%203.159-2.692l.152-.237a7.616%207.616%200%200%200%201.13-3.993l-.008-.378a7.614%207.614%200%200%200-1.962-4.732l-.26-.274a7.614%207.614%200%200%200-5.005-2.22l-.378-.01Zm.083%201.138c.192.02.374.104.512.242l.056.062c.123.15.191.339.191.534v5.29l3.631%203.626a.83.83%200%200%201%20.185.274l.027.078a.85.85%200%200%201%20.037.245l-.005.084a.84.84%200%200%201-.032.162l-.027.078a.852.852%200%200%201-.129.213l-.057.062a.837.837%200%200%201-.199.146l-.075.034a.841.841%200%200%201-.566.029l-.079-.029a.842.842%200%200%201-.274-.18l-3.877-3.877a.853.853%200%200%201-.146-.2l-.036-.075a.846.846%200%200%201-.063-.323V4.344c0-.223.09-.438.247-.596l.061-.055a.844.844%200%200%201%20.535-.192l.083.005Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-close: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M9.44%208.035a.791.791%200%200%200%201.12%200l3.802-3.803a.791.791%200%200%201%201.119%200l.287.287a.79.79%200%200%201%200%201.119L11.965%209.44a.79.79%200%200%200%200%201.118l3.803%203.803a.791.791%200%200%201%200%201.119l-.287.287a.791.791%200%200%201-1.119%200l-3.803-3.803a.79.79%200%200%200-1.118%200l-3.803%203.803a.79.79%200%200%201-1.119%200l-.287-.287a.791.791%200%200%201%200-1.119l3.803-3.803a.791.791%200%200%200%200-1.118L4.232%205.638a.791.791%200%200%201%200-1.119l.287-.287a.791.791%200%200%201%201.119%200L9.44%208.035Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-coins-bitcoin: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11%205.5V7h1V5.5h2V7a3%203%200%200%201%202.236%205A3%203%200%200%201%2014%2017v1.5h-2V17h-1v1.5H9V17H7.5v-2H9V9H7.5V7H9V5.5h2ZM11%209v2h3a1%201%200%201%200%200-2h-3Zm3%204h-3v2h3a1%201%200%201%200%200-2Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M1%2012C1%205.925%205.925%201%2012%201s11%204.925%2011%2011-4.925%2011-11%2011S1%2018.075%201%2012Zm11-9a9%209%200%201%200%200%2018%209%209%200%200%200%200-18Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-collection: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-opacity%3D%22.8%22%20fill-rule%3D%22evenodd%22%20d%3D%22M9.767%202.074a.7.7%200%200%201%20.626%200l7.38%203.69a.7.7%200%200%201%200%201.252l-7.38%203.69a.7.7%200%200%201-.626%200l-7.38-3.69a.7.7%200%200%201%200-1.252l7.38-3.69ZM4.266%206.39l5.814%202.907%205.815-2.907-5.815-2.907L4.266%206.39Zm-2.192%207.067a.7.7%200%200%201%20.94-.313l7.066%203.534%207.067-3.534a.7.7%200%200%201%20.627%201.252l-7.38%203.69a.7.7%200%200%201-.627%200l-7.38-3.69a.7.7%200%200%201-.313-.939Zm.94-4.003a.7.7%200%200%200-.627%201.252l7.38%203.69a.7.7%200%200%200%20.626%200l7.38-3.69a.7.7%200%201%200-.626-1.252l-7.067%203.534-7.067-3.534Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-columns: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20fill%3D%22currentColor%22%3E%20%3Cpath%20d%3D%22M1%202.688A1.687%201.687%200%200%201%202.688%201h14.624A1.687%201.687%200%200%201%2019%202.688v14.624A1.687%201.687%200%200%201%2017.312%2019H2.688A1.687%201.687%200%200%201%201%2017.312zm1.688-.563a.563.563%200%200%200-.563.563v14.624a.562.562%200%200%200%20.563.563h3.937V2.125zm9.562%2015.75V2.125h-4.5v15.75zm1.125%200h3.938a.562.562%200%200%200%20.562-.563V2.688a.563.563%200%200%200-.563-.562h-3.937z%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M2.687%201.15A1.537%201.537%200%200%200%201.15%202.688v14.625a1.538%201.538%200%200%200%201.537%201.537h14.625a1.538%201.538%200%200%200%201.538-1.538V2.688a1.538%201.538%200%200%200-1.538-1.538zm-1.3.238a1.837%201.837%200%200%201%201.3-.538h14.625a1.838%201.838%200%200%201%201.838%201.838v14.624a1.838%201.838%200%200%201-1.838%201.838H2.687A1.837%201.837%200%200%201%20.85%2017.313V2.688c0-.488.193-.955.538-1.3zm.796.796a.712.712%200%200%201%20.504-.209h4.088v16.05H2.687a.713.713%200%200%201-.712-.712V2.688c0-.19.075-.37.208-.504zm.504.091a.413.413%200%200%200-.412.413v14.625a.413.413%200%200%200%20.412.412h3.788V2.275zm4.913-.3h4.8v16.05H7.6zm.3.3v15.45h4.2V2.275zm5.325-.3h4.087a.712.712%200%200%201%20.713.713v14.625a.712.712%200%200%201-.713.712h-4.087zm.3.3v15.45h3.787a.413.413%200%200%200%20.413-.412V2.688a.412.412%200%200%200-.413-.413z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E"); + --kda-icons-contracts-proxy: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.392.45C3.644.163%203.984%200%204.34%200h8.038a.63.63%200%200%201%20.474.225L17.54%205.61a.83.83%200%200%201%20.196.544v12.308c0%20.408-.141.799-.393%201.087-.25.289-.592.451-.947.451H4.34c-.356%200-.696-.162-.948-.45A1.661%201.661%200%200%201%203%2018.461V1.538c0-.408.141-.799.392-1.087Zm.948%201.088h6.87v4.497c0%20.388.315.702.702.702h4.485v11.725H4.34V1.538Zm8.274.59%202.791%203.205h-2.791V2.128Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.233%208.8a2.293%202.293%200%200%200-1.613.644l-.006.006-.595.591a.564.564%200%201%200%20.795.8l.592-.589a1.166%201.166%200%200%201%201.649%201.648l-1.034%201.034a1.168%201.168%200%200%201-1.758-.126.564.564%200%201%200-.903.676%202.293%202.293%200%200%200%203.458.247l1.038-1.037.007-.007a2.294%202.294%200%200%200-1.63-3.887Zm-2.259%202.403a2.294%202.294%200%200%200-1.786.666l-1.037%201.037-.007.008a2.293%202.293%200%200%200%203.243%203.242l.006-.007.592-.591a.564.564%200%200%200-.797-.797l-.588.587A1.166%201.166%200%200%201%207.952%2013.7l1.034-1.034a1.167%201.167%200%200%201%201.758.126.564.564%200%200%200%20.903-.675%202.293%202.293%200%200%200-1.673-.914Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-contracts-regular: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.392.45C3.644.163%203.984%200%204.34%200h8.038a.63.63%200%200%201%20.474.225L17.54%205.61a.83.83%200%200%201%20.196.544v12.308c0%20.408-.141.799-.393%201.087-.25.289-.592.451-.947.451H4.34c-.356%200-.696-.162-.948-.45A1.661%201.661%200%200%201%203%2018.461V1.538c0-.408.141-.799.392-1.087Zm.948%201.088h6.87v4.497c0%20.388.315.702.702.702h4.485v11.725H4.34V1.538Zm8.274.59%202.791%203.205h-2.791V2.128ZM6.5%2010a.5.5%200%200%200%200%201h7.2a.5.5%200%200%200%200-1H6.5ZM6%2012.9a.5.5%200%200%201%20.5-.5h7.2a.5.5%200%201%201%200%201H6.5a.5.5%200%200%201-.5-.5Zm4.5%202.1a.5.5%200%200%200%200%201h3.2a.5.5%200%200%200%200-1h-3.2Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-contracts-regular-many: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.4%202a1.8%201.8%200%200%200-1.8%201.8v14.8A1.4%201.4%200%200%200%203%2020h1.6v-1.326H3V3.516h1.6V2H3.4Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.992.45C4.244.163%204.585%200%204.94%200h8.038a.63.63%200%200%201%20.474.225L18.14%205.61a.83.83%200%200%201%20.196.544v12.308c0%20.408-.141.799-.392%201.087a1.26%201.26%200%200%201-.948.451H4.94c-.356%200-.696-.162-.948-.45a1.661%201.661%200%200%201-.392-1.088V1.538c0-.408.141-.799.392-1.087Zm.948%201.088h6.87v4.497c0%20.388.315.702.702.702h4.485v11.725H4.94V1.538Zm8.274.59%202.791%203.205h-2.79V2.128Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Crect%20x%3D%227.2%22%20y%3D%2214.3%22%20width%3D%227.8%22%20height%3D%221.2%22%20rx%3D%22.6%22%20fill%3D%22currentColor%22%2F%3E%20%3Crect%20x%3D%227.2%22%20y%3D%2212%22%20width%3D%227.8%22%20height%3D%221.2%22%20rx%3D%22.6%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-contracts-verified: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.392.45C3.644.163%203.984%200%204.34%200h8.038a.63.63%200%200%201%20.474.225L17.54%205.61a.83.83%200%200%201%20.196.544v12.308c0%20.408-.141.799-.393%201.087-.25.289-.592.451-.947.451H4.34c-.356%200-.696-.162-.948-.45A1.661%201.661%200%200%201%203%2018.461V1.538c0-.408.141-.799.392-1.087Zm8.709%201.088H4.34v16.924h12.057V6.472l-4.296-4.934Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m7.3%2013.357%202.2%202.357L13.9%2011%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.912.42c.388%200%20.702.315.702.703v4.21h4.21a.702.702%200%201%201%200%201.404h-4.912a.702.702%200%200%201-.702-.702V1.123c0-.388.315-.702.702-.702Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-contracts-verified-many: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.4%202a1.8%201.8%200%200%200-1.8%201.8v14.8A1.4%201.4%200%200%200%203%2020h1.6v-1.326H3V3.516h1.6V2H3.4Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.992.45C4.244.163%204.585%200%204.94%200h8.038a.63.63%200%200%201%20.474.225L18.14%205.61a.83.83%200%200%201%20.196.544v12.308c0%20.408-.141.799-.392%201.087a1.26%201.26%200%200%201-.948.451H4.94c-.356%200-.696-.162-.948-.45a1.661%201.661%200%200%201-.392-1.088V1.538c0-.408.141-.799.392-1.087Zm8.709%201.088H4.94v16.924h12.057V6.472l-4.296-4.934Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m7.9%2013.357%202.2%202.357L14.5%2011%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.512.42c.388%200%20.702.315.702.703v4.21h4.21a.702.702%200%201%201%200%201.404h-4.912a.702.702%200%200%201-.702-.702V1.123c0-.388.315-.702.702-.702Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-copy: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23copy_svg__a)%22%3E%20%3Cpath%20d%3D%22M8.597%203H1.228C.55%203%200%203.57%200%204.273v8.909h1.228v-8.91h7.369V3Zm1.842%202.545H3.684c-.678%200-1.228.57-1.228%201.273v8.91c0%20.702.55%201.272%201.228%201.272h6.755c.678%200%201.228-.57%201.228-1.273V6.818c0-.703-.55-1.273-1.228-1.273Zm0%2010.182H3.684V6.818h6.755v8.91Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.3%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22copy_svg__a%22%3E%20%3Cpath%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-copy-check: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M12.78%207.28a.75.75%200%200%200-1.06-1.06l-6.97%206.97-3.47-3.47a.75.75%200%200%200-1.06%201.06l4%204a.75.75%200%200%200%201.06%200l7.5-7.5Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-cross: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M11.293%209.879a1%201%200%200%200%201.414%200l3.536-3.536a1%201%200%201%201%201.414%201.414l-3.536%203.536a1%201%200%200%200%200%201.414l3.536%203.536a1%201%200%201%201-1.414%201.414l-3.536-3.536a1%201%200%200%200-1.414%200l-3.536%203.536a1%201%200%201%201-1.414-1.414l3.536-3.536a1%201%200%200%200%200-1.414L6.343%207.757a1%201%200%201%201%201.414-1.414l3.536%203.536Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-delete: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M15%2019.375H5A1.875%201.875%200%200%201%203.125%2017.5V5.625a.625.625%200%200%201%201.25%200V17.5a.625.625%200%200%200%20.625.625h10a.624.624%200%200%200%20.625-.625V5.625a.625.625%200%201%201%201.25%200V17.5A1.875%201.875%200%200%201%2015%2019.375Zm2.5-15h-15a.625.625%200%200%201%200-1.25h15a.625.625%200%201%201%200%201.25Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M12.5%204.375a.625.625%200%200%201-.625-.625V1.875h-3.75V3.75a.625.625%200%200%201-1.25%200v-2.5A.625.625%200%200%201%207.5.625h5a.625.625%200%200%201%20.625.625v2.5a.625.625%200%200%201-.625.625ZM10%2016.25a.625.625%200%200%201-.625-.625v-8.75a.625.625%200%200%201%201.25%200v8.75a.624.624%200%200%201-.625.625ZM13.125%2015a.624.624%200%200%201-.625-.625v-6.25a.625.625%200%201%201%201.25%200v6.25a.624.624%200%200%201-.625.625Zm-6.25%200a.625.625%200%200%201-.625-.625v-6.25a.625.625%200%200%201%201.25%200v6.25a.625.625%200%200%201-.625.625Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-dex-tracker: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M13.776%2020.692a8.5%208.5%200%200%201-1.695.288%207.3%207.3%200%201%200%207.632-10.68q.22.82.272%201.696a5.7%205.7%200%201%201-6.21%208.696m5.33-4.392q.312-.624.52-1.3H21v5h-5v-.287a8.5%208.5%200%200%200%201.315-1.013H19.7v-2.4z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M5.8%2012.5a5.7%205.7%200%201%201%2011.4%200%205.7%205.7%200%200%201-11.4%200m5.7-7.3a7.3%207.3%200%201%200%200%2014.6%207.3%207.3%200%200%200%200-14.6m.563%204.675L11.5%208.9l-.563.975-2.165%203.75-.563.975h6.582l-.563-.975zM10.46%2013.3l1.04-1.8%201.039%201.8z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-docs: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.26%2017.5H4.027a.47.47%200%200%201-.47-.469V5.312c0-.26.21-.469.47-.469h2.137V2.969c0-.259.21-.469.468-.469h5.89l.015.003.014.003a.449.449%200%200%201%20.14.03.463.463%200%200%201%20.156.095l3.452%203.31-.002.002a.466.466%200%200%201%20.146.337v7.3c0%20.87-.708%201.577-1.577%201.577h-1.029v.766c0%20.87-.707%201.577-1.577%201.577Zm2.823-11.69L12.99%203.794v1.379a.64.64%200%200%200%20.638.639h1.454Zm-2.755-2.648H6.826v11.333h8.316a.64.64%200%200%200%20.639-.64V6.474H13.63c-.87%200-1.302-.432-1.302-1.301v-2.01ZM6.164%205.505H4.22v11.333h8.316c.352%200%20.639-.563.639-.915v-.766H6.632a.469.469%200%200%201-.468-.469V5.505ZM8.85%208.5a.25.25%200%201%200%200%20.5h4.7a.25.25%200%201%200%200-.5h-4.7Zm-.25%201.95a.25.25%200%200%201%20.25-.25h4.7a.25.25%200%201%201%200%20.5h-4.7a.25.25%200%200%201-.25-.25ZM8.85%2012a.25.25%200%201%200%200%20.5h4.7a.25.25%200%201%200%200-.5h-4.7Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M6.164%204.843v.35h.35v-.35h-.35Zm6.373-2.34-.098.336h.003l.095-.336Zm0%200%20.099-.336h-.003l-.095.336Zm.014.003.02-.35-.02.35Zm.123.025.12-.33h-.004l-.115.33Zm.017.005.101-.335-.101.335Zm.025.009.145-.319h-.002l-.143.319Zm.13.086.243-.253-.243.252ZM16.3%205.94l.247.248.253-.253-.258-.247-.242.252Zm-.002.002-.247-.248-.252.252.257.248.242-.252Zm-2.46%209.214v-.35h-.35v.35h.35Zm-.846-11.364.242-.252-.593-.572v.824h.35Zm2.092%202.018v.35h.867l-.624-.602-.243.252ZM6.826%203.162v-.35h-.35v.35h.35Zm5.502%200h.35v-.35h-.35v.35ZM6.826%2014.495h-.35v.35h.35v-.35Zm8.955-8.022h.35v-.35h-.35v.35ZM4.22%205.505v-.35h-.35v.35h.35Zm1.944%200h.35v-.35h-.35v.35ZM4.22%2016.838h-.35v.35h.35v-.35Zm8.955-1.68h.35v-.35h-.35v.35ZM4.027%2017.85h8.233v-.7H4.027v.7Zm-.82-.819a.82.82%200%200%200%20.82.819v-.7a.12.12%200%200%201-.12-.119h-.7Zm0-11.719v11.719h.7V5.312h-.7Zm.82-.819a.82.82%200%200%200-.82.819h.7a.12.12%200%200%201%20.12-.119v-.7Zm2.137%200H4.027v.7h2.137v-.7Zm-.35-1.524v1.874h.7V2.969h-.7Zm.818-.819a.819.819%200%200%200-.818.819h.7c0-.066.053-.119.118-.119v-.7Zm5.89%200h-5.89v.7h5.89v-.7Zm.114.017s-.015-.005-.033-.008a.389.389%200%200%200-.081-.009v.7a.313.313%200%200%201-.065-.007c-.013-.002-.022-.006-.018-.004l.197-.672Zm-.003%200-.191.673.191-.674Zm-.063-.01a.308.308%200%200%201%20.053.007l.013.003-.197.672.027.007a.39.39%200%200%200%20.066.01l.038-.7Zm.22.043a.8.8%200%200%200-.218-.044l-.041.7a.1.1%200%200%201%20.028.005l.231-.66Zm.002%200%20.001.001-.237.659c.015.005.029.01.033.01l.203-.67Zm.067.025c-.032-.014-.061-.022-.067-.024l-.203.67h.004-.002a.208.208%200%200%201-.018-.007l.286-.639Zm.23.153a.812.812%200%200%200-.228-.152l-.29.637a.11.11%200%200%201%20.033.02l.485-.505Zm3.452%203.31-3.452-3.31-.485.505%203.453%203.311.484-.505Zm.004.502.001-.001-.495-.495-.001.001.495.495Zm.248.09a.818.818%200%200%200-.253-.59l-.485.505a.117.117%200%200%201%20.038.085h.7Zm0%207.3v-7.3h-.7v7.3h.7Zm-1.927%201.927a1.929%201.929%200%200%200%201.927-1.927h-.7c0%20.677-.551%201.227-1.227%201.227v.7Zm-1.029%200h1.029v-.7h-1.029v.7Zm.35.416v-.766h-.7v.766h.7ZM12.26%2017.85a1.929%201.929%200%200%200%201.927-1.927h-.7c0%20.676-.55%201.227-1.227%201.227v.7Zm.488-13.805%202.092%202.018.486-.504-2.093-2.018-.486.504Zm.593%201.127v-1.38h-.7v1.38h.7Zm.288.289a.29.29%200%200%201-.288-.29h-.7a.99.99%200%200%200%20.988.99v-.7Zm1.454%200h-1.454v.7h1.454v-.7ZM6.826%203.512h5.502v-.7H6.826v.7Zm.35%2010.983V3.162h-.7v11.333h.7Zm7.966-.35H6.826v.7h8.316v-.7Zm.289-.29a.29.29%200%200%201-.29.29v.7a.99.99%200%200%200%20.99-.99h-.7Zm0-7.382v7.383h.7V6.473h-.7Zm-1.801.35h2.15v-.7h-2.15v.7Zm-1.652-1.651c0%20.488.122.918.427%201.224.306.306.737.427%201.225.427v-.7c-.382%200-.602-.095-.73-.222-.127-.127-.222-.348-.222-.73h-.7Zm0-2.01v2.01h.7v-2.01h-.7ZM4.22%205.855h1.944v-.7H4.22v.7Zm.35%2010.983V5.505h-.7v11.333h.7Zm7.966-.35H4.22v.7h8.316v-.7Zm.289-.565a.862.862%200%200%201-.134.404c-.099.156-.167.16-.155.16v.7c.364%200%20.615-.276.748-.489.143-.229.24-.52.24-.775h-.7Zm0-.766v.766h.7v-.766h-.7Zm-6.193.35h6.543v-.7H6.632v.7Zm-.818-.819c0%20.452.365.82.818.82v-.7a.119.119%200%200%201-.118-.12h-.7Zm0-9.183v9.183h.7V5.505h-.7ZM8.95%208.75a.1.1%200%200%201-.1.1v-.7a.6.6%200%200%200-.6.6h.7Zm-.1-.1a.1.1%200%200%201%20.1.1h-.7a.6.6%200%200%200%20.6.6v-.7Zm4.7%200h-4.7v.7h4.7v-.7Zm-.1.1a.1.1%200%200%201%20.1-.1v.7a.6.6%200%200%200%20.6-.6h-.7Zm.1.1a.1.1%200%200%201-.1-.1h.7a.6.6%200%200%200-.6-.6v.7Zm-4.7%200h4.7v-.7h-4.7v.7Zm0%201a.6.6%200%200%200-.6.6h.7a.1.1%200%200%201-.1.1v-.7Zm4.7%200h-4.7v.7h4.7v-.7Zm.6.6a.6.6%200%200%200-.6-.6v.7a.1.1%200%200%201-.1-.1h.7Zm-.6.6a.6.6%200%200%200%20.6-.6h-.7a.1.1%200%200%201%20.1-.1v.7Zm-4.7%200h4.7v-.7h-4.7v.7Zm-.6-.6a.6.6%200%200%200%20.6.6v-.7a.1.1%200%200%201%20.1.1h-.7Zm.7%201.8a.1.1%200%200%201-.1.1v-.7a.6.6%200%200%200-.6.6h.7Zm-.1-.1a.1.1%200%200%201%20.1.1h-.7a.6.6%200%200%200%20.6.6v-.7Zm4.7%200h-4.7v.7h4.7v-.7Zm-.1.1a.1.1%200%200%201%20.1-.1v.7a.6.6%200%200%200%20.6-.6h-.7Zm.1.1a.1.1%200%200%201-.1-.1h.7a.6.6%200%200%200-.6-.6v.7Zm-4.7%200h4.7v-.7h-4.7v.7Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-donate: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M19.111%2021H4.891a.674.674%200%200%201-.673-.674v-9.698a.674.674%200%200%201%20.674-.674h14.22a.674.674%200%200%201%20.673.674v9.698a.674.674%200%200%201-.674.674ZM5.566%2019.652h12.871v-8.35H5.566v8.35Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M19.111%2021H4.891a.674.674%200%200%201-.673-.674v-9.698a.674.674%200%200%201%20.674-.674h14.22a.674.674%200%200%201%20.673.674v9.698a.674.674%200%200%201-.674.674ZM5.566%2019.652h12.871v-8.35H5.566v8.35Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M20.328%2011.302H3.674A.674.674%200%200%201%203%2010.628V7.006a.674.674%200%200%201%20.674-.674h16.654a.674.674%200%200%201%20.675.674v3.622a.674.674%200%200%201-.675.674ZM4.348%209.954h15.307V7.68H4.348v2.274Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M20.328%2011.302H3.674A.674.674%200%200%201%203%2010.628V7.006a.674.674%200%200%201%20.674-.674h16.654a.674.674%200%200%201%20.675.674v3.622a.674.674%200%200%201-.675.674ZM4.348%209.954h15.307V7.68H4.348v2.274Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M12%207.68a.674.674%200%200%201-.415-.144l-3.903-3.07a.55.55%200%200%200-.89.432v2.108a.674.674%200%201%201-1.348%200V4.898a1.898%201.898%200%200%201%203.071-1.491l3.902%203.07A.674.674%200%200%201%2012%207.68Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M12%207.68a.674.674%200%200%201-.415-.144l-3.903-3.07a.55.55%200%200%200-.89.432v2.108a.674.674%200%201%201-1.348%200V4.898a1.898%201.898%200%200%201%203.071-1.491l3.902%203.07A.674.674%200%200%201%2012%207.68Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M12.001%207.68a.674.674%200%200%201-.416-1.204l3.901-3.07a1.898%201.898%200%200%201%203.072%201.492v2.108a.674.674%200%201%201-1.348%200V4.898a.55.55%200%200%200-.89-.432l-3.902%203.07A.674.674%200%200%201%2012%207.68Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M12.001%207.68a.674.674%200%200%201-.416-1.204l3.901-3.07a1.898%201.898%200%200%201%203.072%201.492v2.108a.674.674%200%201%201-1.348%200V4.898a.55.55%200%200%200-.89-.432l-3.902%203.07A.674.674%200%200%201%2012%207.68Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-dots: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%22108px%22%20viewBox%3D%220%200%2018%204%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Ccircle%20cx%3D%222%22%20cy%3D%222%22%20r%3D%222%22%20fill%3D%22currentColor%22%2F%3E%20%3Ccircle%20cx%3D%229%22%20cy%3D%222%22%20r%3D%222%22%20fill%3D%22currentColor%22%2F%3E%20%3Ccircle%20cx%3D%2216%22%20cy%3D%222%22%20r%3D%222%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-edit: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M19.432%203.6%2016.4.569A1.925%201.925%200%200%200%2015.03%200c-.518%200-1.005.202-1.371.568L.962%2013.264a.779.779%200%200%200-.221.446l-.734%205.406a.779.779%200%200%200%20.877.877l5.406-.734a.778.778%200%200%200%20.446-.221L19.432%206.342c.366-.366.568-.853.568-1.37%200-.518-.202-1.005-.568-1.371ZM5.82%2017.75l-4.132.561.561-4.131%208.997-8.997%203.57%203.57L5.82%2017.75ZM18.33%205.24l-2.41%202.412-3.571-3.57L14.76%201.67a.379.379%200%200%201%20.537%200l3.034%203.032a.378.378%200%200%201%200%20.538Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-email: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%205H3v13.58h18V5ZM4.256%207.163v9.25L8.8%2011.766%204.256%207.163Zm14.622%2010.16H5.12l4.56-4.662.879.89c.782.788%202.156.78%202.925.006l.865-.87%204.528%204.637Zm.866-.91V7.257l-4.51%204.539%204.51%204.617ZM18.97%206.256H5.125l6.327%206.411c.29.292.864.286%201.142.005l6.375-6.416Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-empty-search-result: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2231.135135135135137px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20240%20185%22%20fill%3D%22none%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.307-2.023H6.923A7.2%207.2%200%200%200-.37%205.269v19.385a7.25%207.25%200%200%200%207.293%207.292h19.384a7.25%207.25%200%200%200%207.293-7.292V5.269a7.25%207.25%200%200%200-7.293-7.292Zm-19.384-2.4A9.692%209.692%200%200%200-2.77%205.269v19.385a9.692%209.692%200%200%200%209.693%209.692h19.384A9.692%209.692%200%200%200%2036%2024.654V5.269a9.693%209.693%200%200%200-9.693-9.692H6.923Zm19.384%2054.092H6.923A7.2%207.2%200%200%200-.37%2056.962v19.384a7.25%207.25%200%200%200%207.293%207.292h19.384a7.25%207.25%200%200%200%207.293-7.292V56.961a7.25%207.25%200%200%200-7.293-7.292Zm-19.384-2.4a9.693%209.693%200%200%200-9.693%209.693v19.384a9.692%209.692%200%200%200%209.693%209.692h19.384A9.692%209.692%200%200%200%2036%2076.346V56.961a9.693%209.693%200%200%200-9.693-9.692H6.923Zm0%2054.093h19.384a7.249%207.249%200%200%201%207.293%207.292v19.384a7.25%207.25%200%200%201-7.293%207.293H6.923a7.209%207.209%200%200%201-5.184-2.108%207.208%207.208%200%200%201-2.109-5.185v-19.384a7.249%207.249%200%200%201%207.293-7.292Zm-9.693%207.292a9.693%209.693%200%200%201%209.693-9.692h19.384A9.694%209.694%200%200%201%2036%20108.654v19.384a9.694%209.694%200%200%201-9.693%209.693H6.923a9.691%209.691%200%200%201-9.693-9.693v-19.384Zm29.077%2044.4H6.923a7.19%207.19%200%200%200-5.184%202.108%207.208%207.208%200%200%200-2.109%205.184v19.385a7.25%207.25%200%200%200%207.293%207.292h19.384a7.25%207.25%200%200%200%207.293-7.292v-19.385a7.25%207.25%200%200%200-7.293-7.292Zm-19.384-2.4a9.691%209.691%200%200%200-9.693%209.692v19.385a9.691%209.691%200%200%200%209.693%209.692h19.384A9.691%209.691%200%200%200%2036%20179.731v-19.385a9.691%209.691%200%200%200-9.693-9.692H6.923Zm51.692-126.83H78a7.25%207.25%200%200%201%207.292%207.291V50.5A7.25%207.25%200%200%201%2078%2057.792H58.615a7.2%207.2%200%200%201-7.292-7.292V31.115a7.249%207.249%200%200%201%207.292-7.292Zm-9.692%207.291a9.692%209.692%200%200%201%209.692-9.692H78a9.692%209.692%200%200%201%209.692%209.692V50.5A9.692%209.692%200%200%201%2078%2060.192H58.615a9.692%209.692%200%200%201-9.692-9.692V31.115ZM78%2075.515H58.615a7.2%207.2%200%200%200-7.292%207.293v19.384a7.25%207.25%200%200%200%207.292%207.293H78a7.25%207.25%200%200%200%207.292-7.293v-2.123c.39%201.933.977%203.819%201.754%205.631A9.689%209.689%200%200%201%2078%20111.885H58.615a9.695%209.695%200%200%201-9.692-9.693V82.808a9.692%209.692%200%200%201%209.692-9.693H78c4.061%200%207.569%202.493%209.046%206.185-.83%201.754-1.385%203.692-1.846%205.538v-2.03c0-4.062-3.139-7.293-7.2-7.293Zm61.384-12.83V56.96a9.694%209.694%200%200%200-9.692-9.692h-19.385a9.693%209.693%200%200%200-9.692%209.693v5.723l2.4-1.477v-4.246a7.25%207.25%200%200%201%207.292-7.293h19.385a7.249%207.249%200%200%201%207.292%207.293v4.246l2.4%201.477Zm13.57%2043.015a9.691%209.691%200%200%200%209.046%206.185h19.384a9.696%209.696%200%200%200%209.693-9.693V82.808a9.695%209.695%200%200%200-9.693-9.693H162a9.69%209.69%200%200%200-9.046%206.185c.83%201.754%201.384%203.692%201.846%205.538v-2.03c0-4.062%203.138-7.293%207.2-7.293h19.384a7.25%207.25%200%200%201%207.293%207.293v19.384a7.25%207.25%200%200%201-7.293%207.293H162a7.188%207.188%200%200%201-5.184-2.109%207.188%207.188%200%200%201-2.109-5.184v-2.123a28.602%2028.602%200%200%201-1.753%205.631Zm-52.339%2016.615v5.816a9.69%209.69%200%200%200%209.692%209.692h19.385a9.692%209.692%200%200%200%209.692-9.692v-5.723l-2.4%201.384v4.339a7.249%207.249%200%200%201-7.292%207.292h-19.385a7.192%207.192%200%200%201-5.217-2.14%207.199%207.199%200%200%201-2.075-5.245v-4.153l-2.4-1.385v-.185Zm-42%204.893H78a7.249%207.249%200%200%201%207.292%207.292v19.385A7.25%207.25%200%200%201%2078%20161.177H58.615a7.21%207.21%200%200%201-5.184-2.108%207.209%207.209%200%200%201-2.108-5.184V134.5a7.248%207.248%200%200%201%207.292-7.292Zm-9.692%207.292a9.693%209.693%200%200%201%209.692-9.692H78a9.694%209.694%200%200%201%209.692%209.692v19.385A9.693%209.693%200%200%201%2078%20163.577H58.615a9.69%209.69%200%200%201-9.692-9.692V134.5ZM129.692-2.023h-19.385a7.198%207.198%200%200%200-7.292%207.292v19.385a7.25%207.25%200%200%200%207.292%207.292h19.385a7.249%207.249%200%200%200%207.292-7.292V5.269a7.249%207.249%200%200%200-7.292-7.292Zm-19.385-2.4a9.693%209.693%200%200%200-9.692%209.692v19.385a9.69%209.69%200%200%200%209.692%209.692h19.385a9.693%209.693%200%200%200%209.692-9.692V5.269a9.694%209.694%200%200%200-9.692-9.692h-19.385Zm-7.292%20164.769a7.25%207.25%200%200%201%207.292-7.292h19.385a7.249%207.249%200%200%201%207.292%207.292v19.385a7.249%207.249%200%200%201-7.292%207.292h-19.385a7.207%207.207%200%200%201-5.184-2.108%207.216%207.216%200%200%201-2.108-5.184v-19.385Zm-2.4%200a9.69%209.69%200%200%201%209.692-9.692h19.385a9.692%209.692%200%200%201%209.692%209.692v19.385a9.693%209.693%200%200%201-9.692%209.692h-19.385a9.691%209.691%200%200%201-9.692-9.692v-19.385Zm80.769-136.523H162a7.206%207.206%200%200%200-5.184%202.108%207.195%207.195%200%200%200-2.109%205.184V50.5A7.25%207.25%200%200%200%20162%2057.792h19.384a7.25%207.25%200%200%200%207.293-7.292V31.115a7.25%207.25%200%200%200-7.293-7.292ZM162%2021.423a9.691%209.691%200%200%200-9.693%209.692V50.5A9.695%209.695%200%200%200%20162%2060.192h19.384a9.693%209.693%200%200%200%209.693-9.692V31.115a9.695%209.695%200%200%200-9.693-9.692H162Zm19.384%20105.785H162a7.186%207.186%200%200%200-5.184%202.108%207.193%207.193%200%200%200-2.109%205.184v19.385a7.25%207.25%200%200%200%207.293%207.292h19.384a7.25%207.25%200%200%200%207.293-7.292V134.5a7.249%207.249%200%200%200-7.293-7.292Zm-19.384-2.4a9.695%209.695%200%200%200-9.693%209.692v19.385a9.696%209.696%200%200%200%209.693%209.692h19.384a9.692%209.692%200%200%200%209.693-9.692V134.5a9.695%209.695%200%200%200-9.693-9.692H162ZM213.692-2.023h19.385a7.25%207.25%200%200%201%207.292%207.292v19.385a7.25%207.25%200%200%201-7.292%207.292h-19.385a7.198%207.198%200%200%201-7.292-7.292V5.269a7.249%207.249%200%200%201%207.292-7.292ZM204%205.269a9.691%209.691%200%200%201%209.692-9.692h19.385a9.693%209.693%200%200%201%209.692%209.692v19.385a9.69%209.69%200%200%201-9.692%209.692h-19.385A9.69%209.69%200%200%201%20204%2024.654V5.269Zm29.077%2044.4h-19.385a7.198%207.198%200%200%200-7.292%207.293v19.384a7.249%207.249%200%200%200%207.292%207.292h19.385a7.25%207.25%200%200%200%207.292-7.292V56.961a7.25%207.25%200%200%200-7.292-7.292Zm-19.385-2.4A9.69%209.69%200%200%200%20204%2056.962v19.384a9.69%209.69%200%200%200%209.692%209.692h19.385a9.693%209.693%200%200%200%209.692-9.692V56.961a9.691%209.691%200%200%200-9.692-9.692h-19.385Zm0%2054.093h19.385a7.249%207.249%200%200%201%207.292%207.292v19.384a7.25%207.25%200%200%201-7.292%207.293h-19.385a7.207%207.207%200%200%201-5.184-2.108%207.2%207.2%200%200%201-2.108-5.185v-19.384a7.248%207.248%200%200%201%207.292-7.292ZM204%20108.654a9.692%209.692%200%200%201%209.692-9.692h19.385a9.694%209.694%200%200%201%209.692%209.692v19.384a9.692%209.692%200%200%201-9.692%209.693h-19.385a9.692%209.692%200%200%201-9.692-9.693v-19.384Zm29.077%2044.4h-19.385a7.189%207.189%200%200%200-5.184%202.108%207.2%207.2%200%200%200-2.108%205.184v19.385a7.249%207.249%200%200%200%207.292%207.292h19.385a7.25%207.25%200%200%200%207.292-7.292v-19.385a7.25%207.25%200%200%200-7.292-7.292Zm-19.385-2.4a9.69%209.69%200%200%200-9.692%209.692v19.385a9.69%209.69%200%200%200%209.692%209.692h19.385a9.691%209.691%200%200%200%209.692-9.692v-19.385a9.69%209.69%200%200%200-9.692-9.692h-19.385Z%22%20fill%3D%22url(%23b)%22%2F%3E%20%3Cpath%20d%3D%22M87.231%2068.5c1.385-1.846%204.154-.923%204.154%201.477v.37a6.461%206.461%200%200%200%206.462%206.46h44.307a6.461%206.461%200%200%200%206.462-6.46v-.37c0-2.308%202.769-3.416%204.154-1.477.276.37.461.923.461%201.477v.37a11.078%2011.078%200%200%201-11.077%2011.076H97.847a11.077%2011.077%200%200%201-11.078-11.077v-.37c0-.553.185-1.107.462-1.476Zm65.539%2048c.276-.369.461-.923.461-1.477v-.369a11.08%2011.08%200%200%200-11.077-11.077H97.847a11.078%2011.078%200%200%200-11.078%2011.077v.369c0%20.554.185%201.108.462%201.477%201.385%201.846%204.154.923%204.154-1.477v-.369a6.461%206.461%200%200%201%206.462-6.462h44.307a6.46%206.46%200%200%201%206.462%206.462v.369c0%202.308%202.769%203.415%204.154%201.477Z%22%20fill%3D%22%23A0AEC0%22%20fill-opacity%3D%22.5%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M153.231%2092.5a33.233%2033.233%200%200%201-45.948%2030.701%2033.237%2033.237%200%200%201-17.984-17.984A33.233%2033.233%200%200%201%20120%2059.269%2033.232%2033.232%200%200%201%20153.231%2092.5Zm-5.262%2033.877a3.963%203.963%200%200%200-4.984-.369%2040.618%2040.618%200%200%201-54.212-7.54%2040.613%2040.613%200%200%201%202.52-54.675%2040.614%2040.614%200%200%201%2062.215%2051.692c-1.108%201.569-.923%203.692.369%204.984l18.185%2018.185a3.693%203.693%200%200%201%200%205.169l-.739.739a3.693%203.693%200%200%201-5.169%200l-18.185-18.185Z%22%20fill%3D%22%23A0AEC0%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CradialGradient%20id%3D%22b%22%20cx%3D%220%22%20cy%3D%220%22%20r%3D%221%22%20gradientUnits%3D%22userSpaceOnUse%22%20gradientTransform%3D%22matrix(0%2096.9231%20-119.218%200%20116.449%2092.5)%22%3E%20%3Cstop%20stop-color%3D%22%23CBD5E0%22%20stop-opacity%3D%22.8%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23CBD5E0%22%20stop-opacity%3D%220%22%2F%3E%20%3C%2FradialGradient%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20transform%3D%22translate(0%20.192)%22%20d%3D%22M0%200h240v184.615H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-explorer: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20fill%3D%22currentColor%22%20clip-path%3D%22url(%23explorer_svg__a)%22%3E%20%3Cpath%20d%3D%22M14.192%205.808a.624.624%200%200%200-.64-.15L7.927%207.531a.625.625%200%200%200-.395.395l-1.875%205.625a.625.625%200%200%200%20.79.791l5.626-1.875a.626.626%200%200%200%20.395-.395l1.875-5.625a.625.625%200%200%200-.151-.64Zm-6.954%206.954L8.62%208.619l2.762%202.762-4.143%201.38Z%22%2F%3E%20%3Cpath%20d%3D%22M10%2018.75A8.75%208.75%200%201%201%2018.75%2010%208.76%208.76%200%200%201%2010%2018.75ZM10%202.5a7.5%207.5%200%201%200%207.5%207.5A7.509%207.509%200%200%200%2010%202.5Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22explorer_svg__a%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-files-csv: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.4%202.933a.156.156%200%200%200-.155.156v10.844a.467.467%200%200%201-.934%200V3.09A1.089%201.089%200%200%201%206.401%202h7.474a.467.467%200%200%201%20.322.137l4.355%204.355a.467.467%200%200%201%20.137.33v7.111a.467.467%200%200%201-.933%200V7.29h-3.89a.467.467%200%200%201-.466-.467v-3.89h-7Zm7.933.66v2.763h2.763l-2.763-2.763Zm-3.11%2014.385c0-.186.064-.305.157-.385.1-.086.275-.16.542-.16.32.001.631.105.888.297a.467.467%200%200%200%20.558-.749%202.427%202.427%200%200%200-1.444-.481h-.002c-.433%200-.841.12-1.15.384-.315.27-.483.657-.483%201.094%200%20.235.065.447.189.628.12.175.28.297.436.386.28.16.633.253.915.327l.051.014c.327.087.568.157.733.257.13.08.165.145.165.254%200%20.24-.084.34-.184.404-.134.086-.36.14-.671.14-.32%200-.632-.104-.888-.296a.467.467%200%200%200-.558.749c.417.31.923.48%201.444.481h.001c.388%200%20.823-.062%201.175-.287.386-.247.614-.654.614-1.19%200-.513-.277-.847-.613-1.052-.298-.181-.674-.281-.967-.36l-.011-.002c-.333-.089-.576-.154-.745-.25a.377.377%200%200%201-.128-.103c-.012-.018-.025-.044-.025-.1Zm4.02-1.364c.238-.1.51.013.61.25l1.125%202.7%201.124-2.7a.467.467%200%201%201%20.862.36l-1.556%203.733a.467.467%200%200%201-.861%200l-1.556-3.733a.466.466%200%200%201%20.252-.61Zm-8.067.897c-.653.001-1.243.585-1.243%201.4s.59%201.399%201.243%201.4c.287-.003.564-.112.776-.306a.467.467%200%201%201%20.63.69%202.1%202.1%200%200%201-1.4.55h-.004C5.934%2021.244%205%2020.163%205%2018.91s.934-2.333%202.178-2.333h.004a2.1%202.1%200%200%201%201.4.55.467.467%200%201%201-.63.689%201.167%201.167%200%200%200-.776-.306Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-files-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m18.27%205.648-2.916-2.916A2.512%202.512%200%200%200%2013.586%202H6.5A2.5%202.5%200%200%200%204%204.5v15A2.5%202.5%200%200%200%206.5%2022h10c1.375%200%202.5-1.125%202.5-2.5V7.414c0-.66-.262-1.297-.73-1.766ZM17.125%2019.5c0%20.345-.28.625-.625.625h-10a.625.625%200%200%201-.624-.625L5.875%204.505c0-.345.28-.625.625-.625h6.25V7c0%20.69.56%201.25%201.25%201.25h3.09V19.5h.035Zm-4.715-6.094a.547.547%200%200%200-.455.244l-1.549%202.327-.456-.685a.544.544%200%200%200-.909-.002l-1.823%202.735a.547.547%200%200%200-.027.561.53.53%200%200%200%20.446.289h7.656a.547.547%200%200%200%20.455-.85L12.83%2013.65c-.065-.154-.237-.244-.42-.244ZM9%2013.25a1.25%201.25%200%201%200%200-2.5%201.25%201.25%200%200%200%200%202.5Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-files-json: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.4%202.933a.156.156%200%200%200-.156.156v10.844a.467.467%200%200%201-.933%200V3.09A1.089%201.089%200%200%201%206.4%202h7.476a.467.467%200%200%201%20.32.137l4.356%204.355a.467.467%200%200%201%20.137.33v7.111a.467.467%200%200%201-.934%200V7.29h-3.889a.467.467%200%200%201-.466-.467v-3.89h-7Zm7.933.66v2.763h2.762l-2.762-2.763Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.752%2020.137c-.016-.04-.03-.08-.043-.12-.068-.223.123-.42.356-.42h.074c.16%200%20.29.123.369.263.045.08.103.147.17.2a.787.787%200%200%200%20.256.136.99.99%200%200%200%20.326.05.944.944%200%200%200%20.421-.085.591.591%200%200%200%20.26-.232.69.69%200%200%200%20.086-.348.538.538%200%200%200-.036-.22.46.46%200%200%200-.119-.173c-.103-.096-.261-.173-.473-.232l-.63-.172a1.612%201.612%200%200%201-.55-.257%201.142%201.142%200%200%201-.36-.442%201.475%201.475%200%200%201-.125-.63c0-.293.065-.55.194-.768.13-.218.31-.388.538-.508.23-.12.495-.179.794-.179.31%200%20.575.06.795.183.221.122.392.287.51.493.051.085.092.174.124.267.075.217-.117.414-.346.414-.194%200-.35-.152-.462-.31a.655.655%200%200%200-.25-.218.817.817%200%200%200-.379-.082c-.22%200-.395.06-.522.183a.559.559%200%200%200-.141.204.654.654%200%200%200-.048.258c0%20.145.049.264.147.36a.922.922%200%200%200%20.412.21l.634.173c.222.06.415.144.578.254.157.101.29.25.383.43.091.178.137.403.137.674a1.6%201.6%200%200%201-.191.789%201.308%201.308%200%200%201-.55.528c-.24.126-.531.19-.876.19-.26%200-.486-.036-.68-.109a1.375%201.375%200%200%201-.487-.303%201.355%201.355%200%200%201-.296-.45Zm-3.168-.04a1.803%201.803%200%200%201-.045-.17c-.044-.212.136-.39.354-.39h.05c.187%200%20.332.157.412.325a.56.56%200%200%200%20.197.224.448.448%200%200%200%20.267.072c.194%200%20.337-.066.43-.198.093-.132.14-.318.14-.56v-2.898a.404.404%200%200%201%20.808%200v2.874c0%20.53-.122.93-.365%201.209-.242.276-.576.415-1.005.415a1.402%201.402%200%200%201-.58-.113%201.17%201.17%200%200%201-.415-.32%201.428%201.428%200%200%201-.248-.47Zm9.279-1.906v.628c0%20.308-.04.565-.12.771-.067.19-.182.352-.328.466a.795.795%200%200%201-.48.151.8.8%200%200%201-.48-.151%201.027%201.027%200%200%201-.326-.466%202.159%202.159%200%200%201-.12-.77v-.629c0-.31.04-.566.12-.77.067-.19.181-.352.326-.466a.787.787%200%200%201%20.48-.155c.18%200%20.34.052.48.155.146.113.26.275.329.465.08.205.119.461.119.771Zm.82.625v-.617c0-.454-.07-.844-.21-1.17a1.674%201.674%200%200%200-.602-.758c-.258-.176-.57-.265-.935-.265a1.65%201.65%200%200%200-.939.265c-.26.173-.47.437-.601.755-.14.326-.21.717-.21%201.173v.617c0%20.45.07.84.21%201.17.14.326.34.577.601.753.263.174.576.26.94.26s.676-.086.935-.26c.261-.176.462-.427.601-.753.14-.33.21-.72.21-1.17ZM16%2017.69v2.838a.38.38%200%200%201-.762%200v-4.003a.426.426%200%200%201%20.797-.208l1.66%202.97a.02.02%200%200%200%20.04-.01v-2.796a.383.383%200%201%201%20.765%200v4.006a.422.422%200%200%201-.79.206l-1.661-2.974a.056.056%200%200%200-.049-.028Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.3%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-files-placeholder: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224.48px%22%20viewBox%3D%220%200%2051%2050%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.693%205.058c.498-.57%201.172-.891%201.875-.891h15.91c.351%200%20.688.16.937.446l9.28%2010.657c.249.285.388.672.388%201.076v24.36c0%20.807-.279%201.581-.776%202.152-.498.571-1.172.892-1.875.892H13.568c-.703%200-1.377-.32-1.875-.892-.497-.57-.776-1.345-.776-2.153V7.212c0-.808.28-1.582.776-2.154Zm17.235%202.154h-15.36v33.493h23.864V16.977l-8.504-9.765Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M28.556%205a1.39%201.39%200%200%201%201.389%201.389v8.333h8.333a1.389%201.389%200%200%201%200%202.778h-9.722a1.389%201.389%200%200%201-1.39-1.389V6.39a1.39%201.39%200%200%201%201.39-1.389ZM22.46%2025.151a1.326%201.326%200%200%200-1.875%201.875l3.04%203.04-3.04%203.04a1.326%201.326%200%200%200%201.875%201.875l3.04-3.04%203.04%203.04a1.326%201.326%200%200%200%201.875-1.875l-3.04-3.04%203.04-3.04a1.326%201.326%200%200%200-1.875-1.875l-3.04%203.04-3.04-3.04Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-files-sol: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.4%202.933a.156.156%200%200%200-.155.156v10.844a.467.467%200%200%201-.934%200V3.09A1.089%201.089%200%200%201%206.401%202h7.474a.467.467%200%200%201%20.322.137l4.355%204.355a.467.467%200%200%201%20.137.33v7.111a.467.467%200%200%201-.933%200V7.29h-3.89a.467.467%200%200%201-.466-.467v-3.89h-7Zm7.933.66v2.763h2.763l-2.763-2.763Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.224%2018.185v.628c0%20.308-.04.565-.12.771-.067.19-.181.352-.328.465a.794.794%200%200%201-.48.152.8.8%200%200%201-.48-.152%201.026%201.026%200%200%201-.326-.465%202.159%202.159%200%200%201-.12-.77v-.629c0-.31.04-.566.12-.77.068-.19.181-.352.327-.466a.788.788%200%200%201%20.48-.155c.18%200%20.34.052.479.155.146.113.26.275.329.465.08.205.12.461.12.771Zm.82.625v-.617c0-.454-.07-.844-.21-1.17a1.674%201.674%200%200%200-.602-.758c-.258-.176-.57-.265-.935-.265-.363%200-.675.089-.939.265a1.65%201.65%200%200%200-.6.755c-.14.326-.21.717-.21%201.173v.616c0%20.452.07.841.21%201.17.139.327.339.578.6.754.264.174.576.26.94.26s.676-.086.935-.26c.262-.176.462-.427.601-.753.14-.33.21-.72.21-1.17Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.22%2016.056c.31-.206.671-.306%201.077-.306.406%200%20.77.1%201.075.308.306.205.545.51.693.868.155.364.229.788.229%201.267v.616c0%20.477-.075.901-.23%201.268v.001a1.923%201.923%200%200%201-.691.862c-.307.207-.67.304-1.076.304-.404%200-.766-.097-1.077-.303h-.001a1.923%201.923%200%200%201-.692-.863c-.156-.367-.23-.793-.23-1.268v-.617c0-.48.074-.905.23-1.27a1.9%201.9%200%200%201%20.693-.866Zm1.077.194c-.32%200-.583.078-.8.223a1.403%201.403%200%200%200-.509.642l-.001.004c-.123.287-.19.642-.19%201.074v.616c0%20.426.066.781.19%201.073.123.287.294.498.51.643.216.143.479.219.8.219.324%200%20.586-.077.797-.219.216-.145.387-.355.51-.643.123-.292.19-.647.19-1.073v-.616c0-.429-.067-.784-.19-1.073v-.002a1.425%201.425%200%200%200-.511-.646h-.001c-.21-.144-.472-.222-.795-.222Zm-.33.898a.78.78%200%200%200-.242.35l-.002.007c-.065.167-.103.39-.103.68v.635c-.006.234.03.466.106.68a.78.78%200%200%200%20.24.349c.102.07.215.104.325.102h.011a.55.55%200%200%200%20.325-.102.768.768%200%200%200%20.242-.349l.002-.006c.066-.168.103-.392.103-.68v-.629c0-.29-.037-.514-.102-.68l-.003-.007a.767.767%200%200%200-.244-.35.535.535%200%200%200-.329-.104h-.005a.537.537%200%200%200-.324.104Zm.332-.604a1.037%201.037%200%200%200-.63.203l-.007.005a1.276%201.276%200%200%200-.406.575%202.39%202.39%200%200%200-.136.858v.625a2.41%202.41%200%200%200%20.134.857v.001c.083.23.223.433.408.578l.01.008c.185.13.4.2.624.197.224.004.44-.066.625-.198l.008-.006c.187-.144.328-.346.41-.576.093-.243.135-.532.135-.858v-.628a2.39%202.39%200%200%200-.135-.858%201.265%201.265%200%200%200-.41-.576l-.004-.003a1.034%201.034%200%200%200-.626-.204Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M17.06%2021v-1h1.301a.5.5%200%200%201%20.5.5v.5H17.06Zm-.699%200a.5.5%200%200%201-.5-.5v-3.9a.6.6%200%200%201%201.199%200V21h-.699Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.861%2021v-.5a.5.5%200%200%200-.5-.5H17.06v-3.4a.6.6%200%200%200-1.199%200v3.9a.5.5%200%200%200%20.5.5h2.5Zm-1.701-1.1v-3.3a.7.7%200%200%200-1.399%200v3.9a.6.6%200%200%200%20.6.6h2.6v-.6a.6.6%200%200%200-.6-.6H17.16Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M6.468%2017.532c0-.192.067-.316.163-.398.104-.09.286-.166.562-.166.332%200%20.655.108.921.307a.484.484%200%200%200%20.579-.776A2.516%202.516%200%200%200%207.195%2016h-.001c-.45%200-.873.125-1.192.399-.328.28-.502.68-.502%201.133%200%20.244.067.464.196.651.124.182.29.309.452.401.29.165.657.262.949.34l.053.013c.339.09.589.163.76.267.135.083.17.15.17.264%200%20.25-.086.352-.19.419-.138.089-.372.145-.696.145a1.548%201.548%200%200%201-.92-.307.484.484%200%200%200-.58.776A2.52%202.52%200%200%200%207.192%2021h.002c.402%200%20.853-.064%201.218-.298.4-.256.636-.677.636-1.234%200-.532-.287-.878-.635-1.09-.31-.189-.699-.292-1.003-.373l-.012-.003c-.344-.091-.597-.16-.772-.26a.39.39%200%200%201-.132-.106c-.013-.018-.026-.045-.026-.104Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-files-yul: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.4%202.933a.156.156%200%200%200-.155.156v10.844a.467.467%200%200%201-.934%200V3.09A1.089%201.089%200%200%201%206.401%202h7.474a.467.467%200%200%201%20.322.137l4.355%204.355a.467.467%200%200%201%20.137.33v7.111a.467.467%200%200%201-.933%200V7.29h-3.89a.467.467%200%200%201-.466-.467v-3.89h-7Zm7.933.66v2.763h2.763l-2.763-2.763Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20d%3D%22M17.06%2020h1.301a.5.5%200%200%201%20.5.5v.5h-2.5a.5.5%200%200%201-.5-.5v-3.9a.6.6%200%200%201%201.199%200V20Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.861%2021v-.5a.5.5%200%200%200-.5-.5H17.06v-3.4a.6.6%200%200%200-1.199%200v3.9a.5.5%200%200%200%20.5.5h2.5Zm-1.701-1.1v-3.3a.7.7%200%200%200-1.399%200v3.9a.6.6%200%200%200%20.6.6h2.6v-.6a.6.6%200%200%200-.6-.6H17.16Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M11.18%2015.85a.63.63%200%200%201%20.63.63v3.131c0%20.177.043.291.11.365a.378.378%200%200%200%20.29.115c.135-.002.222-.044.282-.113l.002-.002c.067-.074.11-.188.11-.364V16.48a.63.63%200%200%201%201.26%200v3.288h-.007a1.44%201.44%200%200%201-.213.641l-.001.002a1.592%201.592%200%200%201-.592.543l-.002.001a1.74%201.74%200%200%201-.682.189v.006h-.313v-.006a1.788%201.788%200%200%201-.688-.188l-.003-.002a1.592%201.592%200%200%201-.592-.543v-.002a1.44%201.44%200%200%201-.214-.64h-.007v-3.29a.63.63%200%200%201%20.63-.629Zm-3.894.435.397%201.229.484-1.3a.558.558%200%200%201%201.046.388l-.983%202.656v1.304a.588.588%200%201%201-1.177%200v-1.304l-.953-2.56a.628.628%200%201%201%201.186-.413Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-filter: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M8.5%2014.167c0%20.46.373.833.833.833H11a.833.833%200%201%200%200-1.667H9.333a.833.833%200%200%200-.833.834ZM3.5%205a.833.833%200%200%200%200%201.667h13.333a.833.833%200%200%200%200-1.667H3.5Zm1.667%205c0%20.46.373.833.833.833h8.333a.833.833%200%200%200%200-1.666H6a.833.833%200%200%200-.833.833Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-flame: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M9.976%2020a6.977%206.977%200%200%200%206.977-6.977c0-.805-.214-1.578-.465-2.297-1.55%201.532-2.729%202.297-3.535%202.297C16.669%206.512%2014.627%203.721%209.046%200c.465%204.651-2.601%206.767-3.85%207.941A6.977%206.977%200%200%200%209.977%2020Zm.66-16.526c3.016%202.559%203.03%204.546.701%208.627-.708%201.24.188%202.783%201.616%202.783.64%200%201.287-.186%201.971-.554a5.116%205.116%200%201%201-8.453-5.034c.117-.11.712-.637.738-.66.394-.354.719-.668%201.04-1.01%201.144-1.227%201.967-2.587%202.388-4.152Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-games: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.6%22%20d%3D%22M24.24%2018.89v-8.582c0-.28-.072-.556-.206-.8a1.576%201.576%200%200%200-.56-.587L16.16%204.476A2.232%202.232%200%200%200%2015%204.149c-.408%200-.809.113-1.161.327L6.525%208.92a1.576%201.576%200%200%200-.56.587c-.134.244-.204.52-.205.8v8.581c0%20.281.071.557.205.801s.327.446.56.588l7.315%204.445c.352.214.753.327%201.16.327.408%200%20.809-.113%201.161-.327l7.315-4.445c.232-.142.425-.345.559-.588.134-.244.204-.52.204-.8Z%22%2F%3E%20%3Cpath%20stroke%3D%22transparent%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-opacity%3D%22.2%22%20stroke-width%3D%221.6%22%20d%3D%22M24.24%2018.89v-8.582c0-.28-.072-.556-.206-.8a1.576%201.576%200%200%200-.56-.587L16.16%204.476A2.232%202.232%200%200%200%2015%204.149c-.408%200-.809.113-1.161.327L6.525%208.92a1.576%201.576%200%200%200-.56.587c-.134.244-.204.52-.205.8v8.581c0%20.281.071.557.205.801s.327.446.56.588l7.315%204.445c.352.214.753.327%201.16.327.408%200%20.809-.113%201.161-.327l7.315-4.445c.232-.142.425-.345.559-.588.134-.244.204-.52.204-.8Z%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6.42%208.792a.8.8%200%201%200-.838%201.364l8.618%205.293v9.602a.8.8%200%201%200%201.6%200V15.45l8.617-5.293a.8.8%200%200%200-.837-1.364L15%2014.062l-8.58-5.27Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20fill%3D%22transparent%22%20fill-opacity%3D%22.2%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6.42%208.792a.8.8%200%201%200-.838%201.364l8.618%205.293v9.602a.8.8%200%201%200%201.6%200V15.45l8.617-5.293a.8.8%200%200%200-.837-1.364L15%2014.062l-8.58-5.27Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M15%2010.177c.638%200%201.155-.36%201.155-.804%200-.444-.517-.804-1.155-.804-.637%200-1.155.36-1.155.804%200%20.444.518.804%201.155.804Zm-2.9%207.735c.497%200%20.9-.54.9-1.206%200-.666-.403-1.206-.9-1.206s-.9.54-.9%201.206c0%20.666.403%201.206.9%201.206Zm-3%20.306c0%20.666-.403%201.206-.9%201.206s-.9-.54-.9-1.206c0-.667.403-1.207.9-1.207s.9.54.9%201.207Zm8.458-.404c.496.029.93-.487.968-1.152.04-.665-.331-1.227-.828-1.256-.496-.03-.93.486-.968%201.15-.04.666.331%201.228.828%201.258Zm5.068-3.305c-.039.665-.472%201.18-.969%201.152-.496-.03-.866-.592-.828-1.257.04-.665.473-1.18.97-1.151.496.029.866.591.827%201.256Zm-5.069%207.352c.497.029.93-.487.97-1.152.038-.665-.332-1.227-.829-1.256-.496-.03-.93.486-.969%201.151-.039.665.332%201.227.828%201.257Zm5.07-3.591c-.04.665-.473%201.18-.97%201.151-.496-.029-.866-.591-.828-1.256.04-.665.473-1.18.97-1.152.496.03.866.592.827%201.257Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20fill%3D%22transparent%22%20fill-opacity%3D%22.2%22%20fill-rule%3D%22evenodd%22%20d%3D%22M15%2010.177c.638%200%201.155-.36%201.155-.804%200-.444-.517-.804-1.155-.804-.637%200-1.155.36-1.155.804%200%20.444.518.804%201.155.804Zm-2.9%207.735c.497%200%20.9-.54.9-1.206%200-.666-.403-1.206-.9-1.206s-.9.54-.9%201.206c0%20.666.403%201.206.9%201.206Zm-3%20.306c0%20.666-.403%201.206-.9%201.206s-.9-.54-.9-1.206c0-.667.403-1.207.9-1.207s.9.54.9%201.207Zm8.458-.404c.496.029.93-.487.968-1.152.04-.665-.331-1.227-.828-1.256-.496-.03-.93.486-.968%201.15-.04.666.331%201.228.828%201.258Zm5.068-3.305c-.039.665-.472%201.18-.969%201.152-.496-.03-.866-.592-.828-1.257.04-.665.473-1.18.97-1.151.496.029.866.591.827%201.256Zm-5.069%207.352c.497.029.93-.487.97-1.152.038-.665-.332-1.227-.829-1.256-.496-.03-.93.486-.969%201.151-.039.665.332%201.227.828%201.257Zm5.07-3.591c-.04.665-.473%201.18-.97%201.151-.496-.029-.866-.591-.828-1.256.04-.665.473-1.18.97-1.152.496.03.866.592.827%201.257Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-gas: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%3E%20%3Cpath%20d%3D%22M12%2017h1v2H0v-2h1V2a1%201%200%200%201%201-1h9a1%201%200%200%201%201%201v8h2a2%202%200%200%201%202%202v4a1%201%200%200%200%202%200V9h-2a1%201%200%200%201-1-1V4.414l-1.657-1.657%201.414-1.414%204.95%204.95A.996.996%200%200%201%2020%207v9a3%203%200%200%201-6%200v-4h-2v5Zm-9%200h7v-6H3v6ZM3%203v6h7V3H3Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-gas-xl: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2042%2042%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M6.121%201C3.131%201%20.667%203.464.667%206.455V41H26.12V28.273h3.637v7.272c0%202.99%202.464%205.455%205.454%205.455%202.99%200%205.455-2.465%205.455-5.455V17.023a5.33%205.33%200%200%200-1.591-3.807l-8.58-8.58-2.557%202.557%205.17%205.17c-1.952.832-3.352%202.756-3.352%205%200%202.99%202.465%205.455%205.455%205.455.64%200%201.243-.135%201.818-.34v13.067c0%201.03-.788%201.819-1.818%201.819a1.786%201.786%200%200%201-1.818-1.819v-7.272c0-1.989-1.648-3.637-3.636-3.637H26.12V6.455C26.12%203.465%2023.656%201%2020.666%201H6.12Zm0%203.636h14.546c1.03%200%201.818.789%201.818%201.819v7.272H4.303V6.455c0-1.03.788-1.819%201.818-1.819Zm29.091%2010.91c1.023%200%201.818.795%201.818%201.818a1.795%201.795%200%200%201-1.818%201.818%201.795%201.795%200%200%201-1.818-1.818c0-1.023.795-1.819%201.818-1.819ZM4.303%2017.364h18.182v20H4.303v-20Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-gear: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22m23.528%2010.345-.622-1.08a1.913%201.913%200%200%200-2.609-.704v0a1.904%201.904%200%200%201-2.609-.678%201.83%201.83%200%200%201-.256-.915v0A1.914%201.914%200%200%200%2015.519%205h-1.254a1.904%201.904%200%200%200-1.904%201.913v0a1.913%201.913%200%200%201-1.913%201.886%201.83%201.83%200%200%201-.915-.257v0a1.913%201.913%200%200%200-2.609.705l-.668%201.098a1.913%201.913%200%200%200%20.695%202.61v0a1.913%201.913%200%200%201%200%203.313v0a1.904%201.904%200%200%200-.695%202.6v0l.631%201.088a1.913%201.913%200%200%200%202.61.742v0a1.895%201.895%200%200%201%202.599.696c.164.277.252.593.256.915v0c0%201.056.856%201.913%201.913%201.913h1.254a1.913%201.913%200%200%200%201.913-1.904v0a1.904%201.904%200%200%201%201.913-1.913c.322.009.636.097.915.256v0a1.913%201.913%200%200%200%202.61-.695v0l.658-1.099a1.904%201.904%200%200%200-.696-2.608v0a1.904%201.904%200%200%201-.695-2.61c.166-.289.406-.529.695-.695v0a1.913%201.913%200%200%200%20.696-2.6v0-.008Z%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Ccircle%20cx%3D%2214.896%22%20cy%3D%2214.611%22%20r%3D%222.636%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-gear-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8.039%2017.16h2.432a.608.608%200%200%200%20.584-.608v-.827a.84.84%200%200%201%201.429-.608l.608.608a.608.608%200%200%200%20.864%200l1.72-1.72a.61.61%200%200%200%200-.864l-.608-.608a.84.84%200%200%201%20.608-1.43h.876a.608.608%200%200%200%20.608-.607V8.063a.608.608%200%200%200-.608-.608h-.857a.84.84%200%200%201-.608-1.429l.608-.608a.607.607%200%200%200%200-.863l-1.721-1.721a.609.609%200%200%200-.864%200l-.608.608a.84.84%200%200%201-1.429-.608v-.876a.608.608%200%200%200-.608-.608H8.033a.608.608%200%200%200-.608.608v.845a.84.84%200%200%201-1.43.608l-.607-.608a.608.608%200%200%200-.864%200L2.834%204.53a.608.608%200%200%200%200%20.864l.608.608a.84.84%200%200%201-.608%201.429h-.876a.608.608%200%200%200-.608.608v2.438a.608.608%200%200%200%20.608.608h.845a.839.839%200%200%201%20.608%201.43l-.608.607a.609.609%200%200%200%200%20.864l1.727%201.69a.608.608%200%200%200%20.864%200l.608-.608a.84.84%200%200%201%201.429.608v.876a.608.608%200%200%200%20.608.608Zm1.824-1.216H8.647v-.268a2.049%202.049%200%200%200-3.503-1.447l-.188.189-.863-.864.188-.188a2.05%202.05%200%200%200-1.447-3.503h-.268V8.647h.268A2.05%202.05%200%200%200%204.28%205.144l-.188-.188.863-.864.188.189a2.05%202.05%200%200%200%203.503-1.447v-.268h1.216v.268a2.05%202.05%200%200%200%203.503%201.447l.188-.189.864.864-.189.188a2.05%202.05%200%200%200%201.447%203.503h.268v1.216h-.268a2.05%202.05%200%200%200-1.447%203.503l.189.188-.864.864-.188-.189a2.05%202.05%200%200%200-3.503%201.447v.268Zm-2.297-4.161a3.04%203.04%200%201%200%203.378-5.056%203.04%203.04%200%200%200-3.378%205.056Zm.676-4.045a1.824%201.824%200%201%201%202.027%203.034%201.824%201.824%200%200%201-2.027-3.034Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-globe: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M12.2%2019.4c3.972%200%207.2-3.228%207.2-7.2S16.172%205%2012.2%205A7.206%207.206%200%200%200%205%2012.2c0%203.972%203.228%207.2%207.2%207.2Zm-5.574-4.332%202.926-.023a10.424%2010.424%200%200%200%201.614%203.333%206.28%206.28%200%200%201-4.54-3.31Zm3.67-4.842h3.646a9.853%209.853%200%200%201%20.023%203.867l-3.67.023a9.544%209.544%200%200%201%200-3.89Zm1.823%207.885a9.323%209.323%200%200%201-1.591-3.066l3.193-.023a9.813%209.813%200%200%201-1.602%203.089Zm.929.302a10.24%2010.24%200%200%200%201.637-3.403l3.124-.023a6.286%206.286%200%200%201-4.761%203.426ZM18.47%2012.2c0%20.65-.105%201.277-.279%201.858l-3.286.023c.232-1.277.22-2.578-.023-3.855h3.263a6.17%206.17%200%200%201%20.325%201.974Zm-.72-2.903h-3.09a10.675%2010.675%200%200%200-1.613-3.31%206.244%206.244%200%200%201%204.703%203.31Zm-4.053%200H10.54a9.593%209.593%200%200%201%201.58-3.008%209.595%209.595%200%200%201%201.58%203.008Zm-2.532-3.275a10.317%2010.317%200%200%200-1.59%203.275H6.648a6.249%206.249%200%200%201%204.517-3.275Zm-1.811%204.204a10.685%2010.685%200%200%200-.012%203.89l-3.1.023a6.173%206.173%200%200%201%20.012-3.914h3.1Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-globe-b: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M14.688%204.75c-5.482%200-9.938%204.456-9.938%209.938%200%205.481%204.456%209.937%209.938%209.937%205.481%200%209.937-4.456%209.937-9.938%200-5.481-4.456-9.937-9.938-9.937Zm3.499%205.781a14.655%2014.655%200%200%200-1.813-3.855%208.151%208.151%200%200%201%205.359%203.855h-3.546Zm-7.219%200H7.644a8.16%208.16%200%200%201%205.094-3.787%2014.079%2014.079%200%200%200-1.77%203.787Zm5.39%200h-3.56a12.705%2012.705%200%200%201%201.78-3.382%2012.64%2012.64%200%200%201%201.78%203.382ZM6.5%2014.687c0-.831.131-1.65.369-2.406h3.692a14.62%2014.62%200%200%200-.013%204.737l-3.695.027a7.864%207.864%200%200%201-.353-2.358Zm5.83%202.327c-.3-1.57-.3-3.176%200-4.733h4.496c.3%201.555.3%203.147.028%204.705l-4.524.028Zm6.295-.047a14.364%2014.364%200%200%200-.029-4.686h3.91c.238.756.369%201.575.369%202.406%200%20.783-.116%201.542-.313%202.252l-3.937.028Zm-2.246%205.73a14.004%2014.004%200%200%200%201.843-3.98l3.596-.026a8.21%208.21%200%200%201-5.439%204.005Zm-1.802-.472a12.283%2012.283%200%200%201-1.8-3.462l3.613-.026a12.946%2012.946%200%200%201-1.813%203.488Zm-1.84.406a8.208%208.208%200%200%201-5.128-3.837l3.328-.027c.394%201.347%201%202.657%201.8%203.864Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-graph-ql: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m17.613%205.751%205.082%202.85a2.255%202.255%200%200%201%203.123-.077c.153.14.282.301.389.477.606%201.028.238%202.339-.82%202.928-.18.1-.372.175-.575.223v5.699c1.18.273%201.91%201.423%201.627%202.569-.05.204-.13.4-.239.581-.61%201.023-1.958%201.374-3.014.782a2.18%202.18%200%200%201-.542-.429l-5.052%202.832c.383%201.124-.245%202.335-1.402%202.706a2.275%202.275%200%200%201-.69.108c-1.216.001-2.203-.955-2.204-2.136%200-.205.03-.41.09-.609l-5.083-2.847a2.252%202.252%200%200%201-3.117.07%202.098%202.098%200%200%201-.072-3.026%202.224%202.224%200%200%201%201.075-.603l.001-5.699c-1.184-.276-1.913-1.433-1.628-2.584.048-.198.127-.389.23-.566.61-1.024%201.96-1.374%203.015-.782.183.101.35.228.495.377l5.086-2.85c-.347-1.133.32-2.322%201.484-2.657.203-.059.416-.088.628-.088%201.216-.001%202.203.954%202.204%202.134.001.209-.03.418-.091.617Zm-.53.877a.799.799%200%200%201-.06.058l6.654%2011.19c.027-.009.058-.016.084-.023v-5.707c-1.179-.283-1.897-1.442-1.604-2.588.006-.024.012-.049.02-.072l-5.095-2.858Zm-3.106.059-.062-.06L8.82%209.479c.337%201.135-.337%202.318-1.505%202.645l-.078.021v5.708l.086.023%206.655-11.19-.002.001Zm2.138.507a2.285%202.285%200%200%201-1.228%200L8.234%2018.383c.302.283.517.645.618%201.041h13.297c.1-.398.317-.761.622-1.044L16.115%207.194Zm1.016%2016.227%205.06-2.838a1.715%201.715%200%200%201-.04-.142H8.85l-.022.083%205.087%202.852c.4-.404.962-.653%201.586-.653.646%200%201.226.269%201.63.698Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-heart-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2222.857142857142854px%22%20viewBox%3D%220%200%2020%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m10%204.34-.555-.578c-.947-.946-2.205-.988-3.508-.97A4.876%204.876%200%200%200%202.468%204.34a5.443%205.443%200%200%200-1.467%203.664%205.46%205.46%200%200%200%201.363%203.71L10%2019.282l7.636-7.58a5.46%205.46%200%200%200%201.363-3.71%205.443%205.443%200%200%200-1.467-3.663%204.876%204.876%200%200%200-3.47-1.547c-1.302-.019-2.56.023-3.507.97L10%204.338Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-heart-outline: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2222.857142857142854px%22%20viewBox%3D%220%200%2020%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.005%204.24a5.332%205.332%200%200%201%207.542%207.532l-.007.008L10%2019.328l-7.54-7.54-.007-.007a5.332%205.332%200%200%201%207.542-7.532l.003-.002.007-.007Zm1.017%201.061L10.004%206.32%208.98%205.312a3.862%203.862%200%200%200-5.465%205.453L10%2017.25l6.485-6.493A3.862%203.862%200%200%200%2011.022%205.3Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.005%204.24a5.332%205.332%200%200%201%207.542%207.532l-.007.008L10%2019.328l-7.54-7.54-.007-.007a5.332%205.332%200%200%201%207.542-7.532l.003-.002.007-.007Zm1.017%201.061L10.004%206.32%208.98%205.312a3.862%203.862%200%200%200-5.465%205.453L10%2017.25l6.485-6.493A3.863%203.863%200%200%200%2011.022%205.3Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-hourglass: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M15.125%206.906a1.257%201.257%200%200%200%20.5-1V3.125a1.25%201.25%200%200%200-1.25-1.25h-8.75a1.25%201.25%200%200%200-1.25%201.25v2.813a1.258%201.258%200%200%200%20.5%201L6.289%208l2.672%202-4.086%203.063a1.258%201.258%200%200%200-.5%201v2.812a1.25%201.25%200%200%200%201.25%201.25h8.75a1.25%201.25%200%200%200%201.25-1.25v-2.781a1.257%201.257%200%200%200-.5-1L11.039%2010l1.774-1.344%202.312-1.75Zm-9.5-3.781h8.75v2.781l-.453.344H6.039l-.414-.313V3.126Zm8.75%2010.969v2.781h-8.75v-2.813l3.75-2.812v1.875a.625.625%200%201%200%201.25%200v-1.867l3.75%202.836Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-info: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.034%203H6.965C4.587%203%203%204.703%203%207.141v5.718C3%2015.299%204.583%2017%206.965%2017h6.068C15.416%2017%2017%2015.3%2017%2012.859V7.14C17%204.701%2015.416%203%2013.034%203ZM6.965%204.05h6.069c1.785%200%202.916%201.214%202.916%203.091v5.718c0%201.877-1.13%203.091-2.917%203.091H6.966c-1.786%200-2.916-1.214-2.916-3.091V7.14c0-1.874%201.134-3.091%202.915-3.091ZM10%206.818a.525.525%200%200%201%20.072%201.045l-.079.005a.525.525%200%200%201-.07-1.045L10%206.818Zm-.007%202.221c.266%200%20.486.198.52.454l.005.071v3.093a.525.525%200%200%201-1.045.072l-.005-.072V9.564c0-.29.235-.525.525-.525Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-info-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M10%2018.333a8.333%208.333%200%201%201%200-16.666%208.333%208.333%200%201%201%200%2016.666Zm-.834-9.166v5h1.667v-5H9.166Zm0-3.334V7.5h1.667V5.833H9.166Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-integration-full: url("data:image/svg+xml,%3Csvg%20viewBox%3D%22-1%20-1%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.24.661a.964.964%200%201%200-1.831.607l.426%201.285a.964.964%200%200%200%201.83-.606L7.24.661Zm10.478.985A.964.964%200%200%200%2016.354.283l-3.495%203.495-.204-.204a2.893%202.893%200%200%200-4.091%200L6.75%205.388A.964.964%200%200%200%205.388%206.75L3.575%208.562a2.893%202.893%200%200%200%200%204.091l.204.204-3.496%203.497a.964.964%200%201%200%201.364%201.363l3.496-3.496.205.205a2.893%202.893%200%200%200%204.091%200l1.813-1.813a.964.964%200%200%200%201.361-1.361l1.815-1.814a2.893%202.893%200%200%200%200-4.091l-.206-.206%203.496-3.495ZM11.25%209.887l1.813-1.813a.964.964%200%200%200%200-1.364l-.839-.839a.996.996%200%200%201-.096-.096l-.838-.838a.964.964%200%200%200-1.363%200L8.114%206.751l3.137%203.136Zm-4.5-1.773L4.939%209.926a.964.964%200%200%200%200%201.364l.864.864a1.193%201.193%200%200%201%20.044.043l.865.866a.964.964%200%200%200%201.363%200l1.812-1.812-3.136-3.137Zm4.196%206.72a.964.964%200%200%201%201.218.613l.426%201.285a.964.964%200%201%201-1.83.607l-.426-1.286a.964.964%200%200%201%20.612-1.219Zm3.888-3.887a.964.964%200%200%201%201.218-.612l1.286.425a.964.964%200%201%201-.607%201.831l-1.285-.426a.964.964%200%200%201-.612-1.218ZM1.268%205.409a.964.964%200%201%200-.607%201.83l1.286.426a.964.964%200%201%200%20.606-1.83l-1.285-.426Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-integration-partial: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%20-1%2019%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.394.273a.931.931%200%200%201%200%201.316l-1.825%201.825.194.194h.001a2.795%202.795%200%200%201%200%203.956l-1.747%201.747a.931.931%200%200%201-1.354%201.278l-.609-.61-.011-.01-.012-.012L8.71%205.635l-.011-.011-.011-.012-.61-.609A.931.931%200%200%201%209.355%203.65l1.747-1.747a2.794%202.794%200%200%201%203.956%200l.195.194L17.077.273a.931.931%200%200%201%201.317%200Zm-2.945%205.973L13.7%207.994l-3.028-3.029%201.748-1.747a.93.93%200%200%201%201.319%200l1.708%201.708a.93.93%200%200%201%200%201.32ZM6.563%208.304l-.893-.893a.931.931%200%200%200-1.354%201.278L2.57%2010.435l-.001.001a2.793%202.793%200%200%200%200%203.956l.195.194-1.825%201.825a.931.931%200%200%200%201.317%201.316l1.824-1.824.194.194a2.793%202.793%200%200%200%203.956%200h.001l1.747-1.747a.931.931%200%200%200%201.278-1.353l-.894-.893.894-.894a.931.931%200%200%200-1.317-1.317l-.893.894L7.88%209.62l.893-.894A.931.931%200%201%200%207.456%207.41l-.893.893Zm-.655%201.978-.003-.003-.004-.003-.27-.27-1.747%201.748a.931.931%200%200%200%200%201.32l.845.844.01.01.01.01.843.843.001.002a.93.93%200%200%200%201.319%200l1.748-1.748-2.752-2.753Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-internal-txns: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22m5.29%209.053%203.723-3.828a.972.972%200%200%201%201.336.06%201.051%201.051%200%200%201%20.058%201.394L8.4%208.751h14.37c.262%200%20.514.107.7.3.188.191.294.454.294.729%200%20.275-.106.537-.293.73a.976.976%200%200%201-.7.298H5.987a.969.969%200%200%201-.55-.17%201.02%201.02%200%200%201-.367-.46%201.062%201.062%200%200%201%20.22-1.125Zm18.724%206a.97.97%200%200%201%20.55.17c.163.111.291.271.367.46a1.062%201.062%200%200%201-.22%201.125l-3.737%203.841-.006.008a.997.997%200%200%201-.322.255.966.966%200%200%201-1.13-.197%201.06%201.06%200%200%201%20.056-1.513l.008-.006%202.021-2.087H15.72c.103-.684.183-1.403%200-2.072l8.294.016Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22m5.29%209.053%203.723-3.828a.972.972%200%200%201%201.336.06%201.051%201.051%200%200%201%20.058%201.394L8.4%208.751h14.37c.262%200%20.514.107.7.3.188.191.294.454.294.729%200%20.275-.106.537-.293.73a.976.976%200%200%201-.7.298H5.987a.969.969%200%200%201-.55-.17%201.02%201.02%200%200%201-.367-.46%201.062%201.062%200%200%201%20.22-1.125Zm18.724%206a.97.97%200%200%201%20.55.17c.163.111.291.271.367.46a1.062%201.062%200%200%201-.22%201.125l-3.737%203.841-.006.008a.997.997%200%200%201-.322.255.966.966%200%200%201-1.13-.197%201.06%201.06%200%200%201%20.056-1.513l.008-.006%202.021-2.087H15.72c.103-.684.183-1.403%200-2.072l8.294.016ZM6.209%2013.24a.67.67%200%200%201%20.504-.24h4.277c.095%200%20.186.043.252.12l2.496%202.865c.067.077.104.181.104.29v6.55a.884.884%200%200%201-.209.578.67.67%200%200%201-.504.24H6.713a.67.67%200%200%201-.504-.24.884.884%200%200%201-.209-.579V13.82c0-.217.075-.426.209-.58Zm4.634.579h-4.13v9.005h6.416v-6.38l-2.286-2.625Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.209%2013.24a.67.67%200%200%201%20.504-.24h4.277c.095%200%20.186.043.252.12l2.496%202.865c.067.077.104.181.104.29v6.55a.884.884%200%200%201-.209.578.67.67%200%200%201-.504.24H6.713a.67.67%200%200%201-.504-.24.884.884%200%200%201-.209-.579V13.82c0-.217.075-.426.209-.58Zm4.634.579h-4.13v9.005h6.416v-6.38l-2.286-2.625Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22M6.209%2013.24a.67.67%200%200%201%20.504-.24h4.277c.095%200%20.186.043.252.12l2.496%202.865c.067.077.104.181.104.29v6.55a.884.884%200%200%201-.209.578.67.67%200%200%201-.504.24H6.713a.67.67%200%200%201-.504-.24.884.884%200%200%201-.209-.579V13.82c0-.217.075-.426.209-.58Zm4.634.579h-4.13v9.005h6.416v-6.38l-2.286-2.625Z%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22M6.209%2013.24a.67.67%200%200%201%20.504-.24h4.277c.095%200%20.186.043.252.12l2.496%202.865c.067.077.104.181.104.29v6.55a.884.884%200%200%201-.209.578.67.67%200%200%201-.504.24H6.713a.67.67%200%200%201-.504-.24.884.884%200%200%201-.209-.579V13.82c0-.217.075-.426.209-.58Zm4.634.579h-4.13v9.005h6.416v-6.38l-2.286-2.625Z%22%20stroke%3D%22currentColor%22%20stroke-opacity%3D%22.2%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.743%2013.224c.206%200%20.373.167.373.373v2.24h2.24a.373.373%200%201%201%200%20.748h-2.613a.373.373%200%200%201-.374-.374v-2.614c0-.206.167-.373.374-.373Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.743%2013.224c.206%200%20.373.167.373.373v2.24h2.24a.373.373%200%201%201%200%20.748h-2.613a.373.373%200%200%201-.374-.374v-2.614c0-.206.167-.373.374-.373Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22M10.743%2013.224c.206%200%20.373.167.373.373v2.24h2.24a.373.373%200%201%201%200%20.748h-2.613a.373.373%200%200%201-.374-.374v-2.614c0-.206.167-.373.374-.373Z%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20clip-rule%3D%22evenodd%22%20d%3D%22M10.743%2013.224c.206%200%20.373.167.373.373v2.24h2.24a.373.373%200%201%201%200%20.748h-2.613a.373.373%200%200%201-.374-.374v-2.614c0-.206.167-.373.374-.373Z%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-interop: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M8.455%206c.602%200%201.09.488%201.09%201.09v.864a6%206%200%200%200%2010.91%200v-.863a1.091%201.091%200%200%201%202.181%200v.65a7.1%207.1%200%200%200%202.551%201.596%201.09%201.09%200%200%201-.738%202.053%209.3%209.3%200%200%201-1.813-.885v6.404h3.273a1.09%201.09%200%201%201%200%202.182h-3.273v3.273a1.09%201.09%200%200%201-2.181%200V19.09H9.545v3.273a1.09%201.09%200%201%201-2.181%200V19.09H4.09a1.09%201.09%200%201%201%200-2.182h3.273v-6.404a9.3%209.3%200%200%201-1.813.885%201.09%201.09%200%200%201-.738-2.053%207.1%207.1%200%200%200%202.55-1.596v-.65A1.094%201.094%200%200%201%208.456%206m7.636%2010.91h4.363v-5.357a8.17%208.17%200%200%201-4.363%202.01zm-2.182-3.347v3.346H9.545v-5.356a8.18%208.18%200%200%200%204.364%202.01%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-key: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8%209a7%207%200%201%201%207%207h-2v2h-2v2H9v2H2v-5.414l6.148-6.148A7.025%207.025%200%200%201%208%209Zm3%205h4a5%205%200%201%200-4.786-3.547l.174.573L4%2017.414V20h3v-2h2v-2h2v-2Zm4-3a2%202%200%201%201%200-4%202%202%200%200%201%200%204Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-lightning: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M10.833%207.5H17.5L9.167%2020v-7.5H3.333l7.5-12.5v7.5ZM9.167%209.167v-3.15l-2.89%204.816h4.556v3.662l3.553-5.328h-5.22Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-lightning-navbar: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M5.375%2016v-5.006H.676L7.697%200h7.9v6l.027%2010H5.374Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8.72%206.01V0L2.63%2010.15h4.02V16l6.66-9.99H8.72Z%22%20fill%3D%22%23ED8936%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-link: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.17%203a5.073%205.073%200%200%200-3.568%201.424l-.01.01-1.401%201.393a1%201%200%200%200%201.41%201.419l1.396-1.388a3.073%203.073%200%200%201%204.346%204.344l-2.437%202.438a3.072%203.072%200%200%201-4.635-.332%201%201%200%201%200-1.601%201.198%205.074%205.074%200%200%200%207.65.548l2.444-2.444.012-.012A5.073%205.073%200%200%200%2016.17%203Zm-5.34%205.657a5.073%205.073%200%200%200-3.95%201.474l-2.444%202.444-.012.012a5.073%205.073%200%200%200%207.174%207.174l.012-.013%201.393-1.393a1%201%200%201%200-1.414-1.414l-1.387%201.387a3.073%203.073%200%200%201-4.345-4.346l2.437-2.437a3.072%203.072%200%200%201%204.635.332%201%201%200%200%200%201.601-1.198%205.074%205.074%200%200%200-3.7-2.022Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-link-external: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2012%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M10.621%204.353%205.176%209.798a.69.69%200%201%201-.974-.974l5.444-5.446H5.108a.69.69%200%200%201%200-1.378H12v6.892a.69.69%200%201%201-1.379%200V4.353Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-lock: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M16.729%2018.75h-8.1a1.35%201.35%200%200%201-1.35-1.35v-4.95a1.35%201.35%200%200%201%201.35-1.35h8.1a1.35%201.35%200%200%201%201.35%201.35v4.95a1.35%201.35%200%200%201-1.35%201.35ZM8.629%2012a.45.45%200%200%200-.45.45v4.95a.45.45%200%200%200%20.45.45h8.1a.45.45%200%200%200%20.45-.45v-4.95a.45.45%200%200%200-.45-.45h-8.1Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.5%22%2F%3E%20%3Cpath%20d%3D%22M16.279%2012h-7.2a.45.45%200%200%201-.45-.45v-2.7a3.6%203.6%200%200%201%203.6-3.6h.9a3.6%203.6%200%200%201%203.6%203.6v2.7a.45.45%200%200%201-.45.45Zm-6.75-.9h6.3V8.85a2.7%202.7%200%200%200-2.7-2.7h-.9a2.7%202.7%200%200%200-2.7%202.7v2.25Zm3.15%204.05a.9.9%200%201%201%200-1.8.9.9%200%200%201%200%201.8Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.5%22%2F%3E%20%3Cpath%20d%3D%22M13.129%2014.7h-.9v1.8h.9v-1.8Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.5%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-merits: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M13.229%209.946c.401%200%20.727.329.727.735v.636a.731.731%200%200%201-.727.735h-.353a.731.731%200%200%200-.727.735v6.532a.731.731%200%200%201-.727.735h-.695A.731.731%200%200%201%2010%2019.32v-6.532c0-.406.326-.735.727-.735h.352c.402%200%20.728-.33.728-.736v-.635a.73.73%200%200%201%20.727-.735h.694Zm4.311%200c.402%200%20.728.329.728.735v.636c0%20.405.326.735.727.735h.278c.401%200%20.727.329.727.735v6.532a.731.731%200%200%201-.727.735h-.695a.731.731%200%200%201-.727-.735v-6.532a.731.731%200%200%200-.727-.735h-.278a.731.731%200%200%201-.727-.736v-.635c0-.406.326-.735.727-.735h.695Zm-2.178%204.031c.402%200%20.727.33.727.735v2.622a.731.731%200%200%201-.727.735h-.694a.731.731%200%200%201-.728-.735v-2.622c0-.406.326-.735.728-.735h.694Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.894%204.213a1.98%201.98%200%200%200-1.788%200l-8%204.044A2.024%202.024%200%200%200%205%2010.065v9.87c0%20.766.428%201.466%201.106%201.808l8%204.044a1.981%201.981%200%200%200%201.788%200l8-4.044A2.024%202.024%200%200%200%2025%2019.935v-9.87c0-.766-.428-1.466-1.106-1.808l-8-4.044ZM7%2010.065l8-4.043%208%204.043v9.87l-8%204.043-8-4.043v-9.87Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-merits-colored: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2221.818181818181817px%22%20viewBox%3D%220%200%2040%2044%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M21.787%201.923a3.574%203.574%200%200%200-3.574%200l-14.706%208.49a3.574%203.574%200%200%200-1.788%203.096v16.982c0%201.277.682%202.457%201.788%203.095l14.706%208.49a3.574%203.574%200%200%200%203.574%200l14.706-8.49a3.574%203.574%200%200%200%201.788-3.095V13.509a3.574%203.574%200%200%200-1.788-3.095l-14.706-8.49Z%22%20fill%3D%22url(%23a)%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.92%22%2F%3E%20%3Cpath%20d%3D%22M18.693%202.755a2.614%202.614%200%200%201%202.614%200l14.706%208.49a2.614%202.614%200%200%201%201.308%202.264v16.982c0%20.934-.499%201.797-1.308%202.264l-14.706%208.49a2.614%202.614%200%200%201-2.614%200l-14.706-8.49a2.614%202.614%200%200%201-1.308-2.265V13.51c0-.935.499-1.798%201.308-2.265l14.706-8.49Z%22%20fill%3D%22url(%23b)%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.33%2015.164c0-.643-.522-1.164-1.164-1.164h-1.111c-.643%200-1.164.521-1.164%201.164v1.006c0%20.642-.521%201.163-1.164%201.163h-.563c-.643%200-1.164.521-1.164%201.164v10.34c0%20.642.521%201.163%201.164%201.163h1.11c.643%200%201.164-.521%201.164-1.164V18.497c0-.643.521-1.164%201.164-1.164h.564c.642%200%201.163-.52%201.163-1.163v-1.006Zm6.899%200c0-.643-.521-1.164-1.164-1.164h-1.11c-.643%200-1.164.521-1.164%201.164v1.006c0%20.642.52%201.163%201.163%201.163h.444c.643%200%201.164.521%201.164%201.164v10.34c0%20.642.52%201.163%201.163%201.163h1.111C27.48%2030%2028%2029.479%2028%2028.836v-10.34c0-.642-.521-1.163-1.164-1.163h-.443a1.164%201.164%200%200%201-1.164-1.163v-1.006Zm-3.486%206.38c0-.642-.521-1.163-1.164-1.163h-1.11c-.643%200-1.164.521-1.164%201.164v4.149c0%20.642.52%201.163%201.163%201.163h1.111c.643%200%201.164-.52%201.164-1.163v-4.15Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22a%22%20x1%3D%2220%22%20y1%3D%222%22%20x2%3D%2220%22%20y2%3D%2242%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-color%3D%22%232C5282%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23153967%22%2F%3E%20%3C%2FlinearGradient%3E%20%3ClinearGradient%20id%3D%22b%22%20x1%3D%2220%22%20y1%3D%222%22%20x2%3D%2220%22%20y2%3D%2242%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-color%3D%22%23008BE4%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2381C5F1%22%2F%3E%20%3C%2FlinearGradient%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-merits-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M10.229%206.946c.401%200%20.727.329.727.735v.636a.731.731%200%200%201-.727.735h-.353a.731.731%200%200%200-.727.735v6.532a.731.731%200%200%201-.727.735h-.695A.731.731%200%200%201%207%2016.32V9.787c0-.406.326-.735.727-.735h.353c.401%200%20.727-.33.727-.736v-.635a.73.73%200%200%201%20.727-.735h.694Zm4.311%200a.73.73%200%200%201%20.728.735v.635c0%20.407.326.736.727.736h.278c.401%200%20.727.329.727.735v6.532a.731.731%200%200%201-.727.735h-.695a.731.731%200%200%201-.727-.735V9.787a.731.731%200%200%200-.727-.735h-.278a.731.731%200%200%201-.727-.735V7.68c0-.406.326-.735.727-.735h.695Zm-2.178%204.031c.402%200%20.727.33.727.735v2.622a.731.731%200%200%201-.727.735h-.694a.731.731%200%200%201-.728-.736v-2.62c0-.407.326-.736.728-.736h.694Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.894%201.213a1.98%201.98%200%200%200-1.788%200l-8%204.044A2.024%202.024%200%200%200%202%207.065v9.87c0%20.766.428%201.466%201.106%201.808l8%204.044a1.981%201.981%200%200%200%201.788%200l8-4.044A2.024%202.024%200%200%200%2022%2016.935v-9.87c0-.766-.428-1.466-1.106-1.808l-8-4.044ZM4%207.065l8-4.043%208%204.043v9.87l-8%204.043-8-4.043v-9.87Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-merits-with-dot: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22m19.133%205.85-3.239-1.637a1.98%201.98%200%200%200-1.788%200l-8%204.044A2.024%202.024%200%200%200%205%2010.065v9.87c0%20.766.428%201.466%201.106%201.808l8%204.044a1.981%201.981%200%200%200%201.788%200l8-4.044A2.024%202.024%200%200%200%2025%2019.935V11.9a5.022%205.022%200%200%201-2%200v8.035l-8%204.043-8-4.043v-9.87l8-4.043%204.123%202.083a5.02%205.02%200%200%201%20.01-2.255Zm-5.177%204.83a.731.731%200%200%200-.727-.734h-.695a.731.731%200%200%200-.727.735v.636a.731.731%200%200%201-.728.735h-.352a.731.731%200%200%200-.727.735v6.532c0%20.406.326.735.727.735h.695a.731.731%200%200%200%20.727-.735v-6.532c0-.406.326-.735.727-.735h.353c.401%200%20.727-.33.727-.736v-.635Zm4.312%200a.731.731%200%200%200-.727-.734h-.695a.731.731%200%200%200-.727.735v.636c0%20.406.326.735.727.735h.278a.73.73%200%200%201%20.727.735v6.532c0%20.406.326.735.727.735h.695a.731.731%200%200%200%20.727-.735v-6.532a.731.731%200%200%200-.727-.735h-.278a.731.731%200%200%201-.727-.736v-.635Zm-2.906%203.297c.402%200%20.727.33.727.735v2.622a.731.731%200%200%201-.727.735h-.694a.731.731%200%200%201-.728-.735v-2.622c0-.406.326-.735.728-.735h.694Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Ccircle%20cx%3D%2224%22%20cy%3D%227%22%20r%3D%223%22%20fill%3D%22%23E53E3E%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-merits-with-dot-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22m16.133%202.85-3.239-1.637a1.98%201.98%200%200%200-1.788%200l-8%204.044A2.024%202.024%200%200%200%202%207.065v9.87c0%20.766.428%201.466%201.106%201.808l8%204.044a1.981%201.981%200%200%200%201.788%200l8-4.044A2.024%202.024%200%200%200%2022%2016.935V8.9a5.022%205.022%200%200%201-2%200v8.035l-8%204.043-8-4.043v-9.87l8-4.043%204.123%202.083a5.02%205.02%200%200%201%20.01-2.255Zm-5.177%204.83a.731.731%200%200%200-.727-.734h-.695a.731.731%200%200%200-.727.735v.635a.731.731%200%200%201-.727.736h-.353A.731.731%200%200%200%207%209.787v6.532c0%20.406.326.735.727.735h.695a.731.731%200%200%200%20.727-.735V9.787c0-.406.326-.735.727-.735h.353c.401%200%20.727-.33.727-.735V7.68Zm4.312%200a.731.731%200%200%200-.727-.734h-.695a.731.731%200%200%200-.727.735v.636c0%20.406.326.735.727.735h.278c.401%200%20.727.329.727.735v6.532c0%20.406.326.735.727.735h.695a.731.731%200%200%200%20.727-.735V9.787a.731.731%200%200%200-.727-.735h-.278a.731.731%200%200%201-.727-.736v-.635Zm-2.906%203.297c.402%200%20.727.33.727.735v2.622a.731.731%200%200%201-.727.735h-.694a.731.731%200%200%201-.728-.736v-2.62c0-.407.326-.736.728-.736h.694Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Ccircle%20cx%3D%2221%22%20cy%3D%224%22%20r%3D%223%22%20fill%3D%22%23E53E3E%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-minus: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M8.857%209H17a1%201%200%200%201%201%201v.286a1%201%200%200%201-1%201H3a1%201%200%200%201-1-1V10a1%201%200%200%201%201-1h5.857Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-cargo: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2222.947065808386977px%22%20viewBox%3D%220%200%20152.99%20160.01%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20fill%3D%22%23ffa270%22%3E%20%3Cpath%20d%3D%22M11.032%20117.804v-75.59L76.495%204.417l65.463%2037.795v75.591L76.495%20155.6z%22%2F%3E%20%3Cpath%20d%3D%22M76.495%204.414%2011.032%2042.21l65.463%2037.795%2065.463-37.795zm0%2075.591v75.591l65.463-37.795v-75.59z%22%2F%3E%20%3Cpath%20d%3D%22m102.682%2019.532%2013.093%207.56-65.463%2037.794-13.093-7.559z%22%20fill%3D%22%23fafafa%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-file: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M13%209h5.5L13%203.5V9M6%202h8l6%206v12a2%202%200%200%201-2%202H6a2%202%200%200%201-2-2V4c0-1.11.89-2%202-2m5%202H6v16h12v-9h-7V4z%22%20fill%3D%22%2342a5f5%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-folder-open: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M19%2020H4a2%202%200%200%201-2-2V6c0-1.11.89-2%202-2h6l2%202h7a2%202%200%200%201%202%202H4v10l2.14-8h17.07l-2.28%208.5c-.23.87-1.01%201.5-1.93%201.5z%22%20fill%3D%22%2390a4ae%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-folder: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M10%204H4c-1.11%200-2%20.89-2%202v12a2%202%200%200%200%202%202h16a2%202%200%200%200%202-2V8a2%202%200%200%200-2-2h-8l-2-2z%22%20fill%3D%22%2390a4ae%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-rust: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20fill%3D%22%23a72146%22%20d%3D%22m14.9%207.831-.587-.363c0-.057-.01-.114-.017-.171l.5-.471a.2.2%200%200%200-.067-.337l-.645-.241-.05-.167.4-.559a.2.2%200%200%200%20.023-.2.2.2%200%200%200-.149-.122l-.68-.111c-.026-.052-.054-.1-.082-.153l.286-.628a.2.2%200%200%200-.191-.286l-.69.024-.109-.133.158-.667A.2.2%200%200%200%2012.758%203l-.672.159c-.044-.035-.086-.071-.133-.107l.024-.69a.2.2%200%200%200-.089-.175.2.2%200%200%200-.2-.016l-.628.286-.153-.082-.107-.68a.2.2%200%200%200-.123-.154.2.2%200%200%200-.2.023l-.559.4-.166-.05-.235-.644a.2.2%200%200%200-.337-.07l-.471.505-.171-.014-.364-.591a.2.2%200%200%200-.344%200l-.363.587-.167.021-.475-.508a.2.2%200%200%200-.337.067l-.242.645-.166.05-.559-.4a.2.2%200%200%200-.318.131l-.111.68-.152.084-.628-.286a.2.2%200%200%200-.2.016.2.2%200%200%200-.089.175l.024.69-.133.109L3.245%203A.2.2%200%200%200%203%203.246l.161.673a4.83%204.83%200%200%200-.109.133l-.69-.024a.2.2%200%200%200-.191.286l.286.626c-.028.05-.055.1-.082.153l-.68.107a.2.2%200%200%200-.131.318l.4.559a8.138%208.138%200%200%200-.05.167l-.644.245a.2.2%200%200%200-.067.337l.505.474c-.008.054-.008.111-.017.168l-.591.363a.2.2%200%200%200%200%20.344l.591.363c.009.062.009.115.017.171L1.2%209.18a.2.2%200%200%200%20.067.337l.648.242.05.167-.4.559a.2.2%200%200%200-.023.195.2.2%200%200%200%20.154.122l.68.111c.026.052.054.1.082.153l-.286.627a.2.2%200%200%200%20.191.286l.69-.024.109.133-.162.671a.2.2%200%200%200%20.245.241l.673-.158.133.109-.024.691a.2.2%200%200%200%20.286.19l.628-.286c.05.028.1.055.153.082l.106.683a.2.2%200%200%200%20.122.154.205.205%200%200%200%20.2-.022l.559-.4.167.05.242.645a.2.2%200%200%200%20.337.067L7.3%2014.3c.057.007.114.012.172.017l.36.583a.2.2%200%200%200%20.343%200l.363-.587.171-.013.471.5a.2.2%200%200%200%20.337-.067l.242-.645.167-.05.559.4a.2.2%200%200%200%20.2.022.2.2%200%200%200%20.122-.154l.111-.68.153-.082.628.286a.2.2%200%200%200%20.285-.19l-.024-.691.133-.109.667.16a.2.2%200%200%200%20.189-.054.2.2%200%200%200%20.051-.187l-.158-.673a4.83%204.83%200%200%200%20.109-.133l.69.024a.2.2%200%200%200%20.175-.089.2.2%200%200%200%20.015-.2l-.286-.627c.027-.05.055-.1.082-.153l.68-.111a.2.2%200%200%200%20.131-.317l-.4-.559.05-.167.645-.241a.2.2%200%200%200%20.127-.15.2.2%200%200%200-.06-.183l-.5-.471.017-.171.583-.363a.2.2%200%200%200%200-.344ZM10.968%2012.7a.416.416%200%201%201%20.493-.319.417.417%200%200%201-.493.319Zm-.2-1.349a.378.378%200%200%200-.449.291l-.209.973a5.129%205.129%200%200%201-4.264-.015l-.209-.973a.379.379%200%200%200-.449-.291l-.859.184a5.153%205.153%200%200%201-.444-.523h4.18c.047%200%20.079-.009.079-.052V9.463c0-.043-.032-.052-.079-.052H6.842v-.937h1.322a.831.831%200%200%201%20.813.7c.052.206.168.877.247%201.092a1.067%201.067%200%200%200%20.739.722h2.083a.432.432%200%200%200%20.075-.007%205.112%205.112%200%200%201-.473.556l-.879-.189Zm-5.78%201.329a.416.416%200%201%201%20.319-.494.415.415%200%200%201-.319.496ZM3.4%206.253a.415.415%200%201%201-.548-.212.416.416%200%200%201%20.548.212Zm-.484%201.155.895-.4A.379.379%200%200%200%204%206.51l-.181-.417h.724V9.36H3.081a5.107%205.107%200%200%201-.2-1.4%205.29%205.29%200%200%201%20.029-.55Zm3.927-.317v-.962h1.726a.644.644%200%200%201%20.63.507.642.642%200%200%201-.755.455h-1.6Zm6.272.866q0%20.192-.014.379h-.526a.072.072%200%200%200-.074.086v.242a.619.619%200%200%201-.6.722.574.574%200%200%201-.6-.275%201.8%201.8%200%200%200-.834-1.4%201.886%201.886%200%200%200%201.049-1.453%201.643%201.643%200%200%200-.8-1.349%202.282%202.282%200%200%200-1.1-.361H4.19a5.107%205.107%200%200%201%202.861-1.616l.64.668a.379.379%200%200%200%20.535.012l.716-.682a5.118%205.118%200%200%201%203.5%202.494l-.489%201.106a.38.38%200%200%200%20.193.5l.943.42c.017.167.025.337.025.508Zm-5.423-5.6a.415.415%200%201%201-.014.588.415.415%200%200%201%20.013-.584Zm4.862%203.912a.415.415%200%201%201%20.211.549.416.416%200%200%201-.211-.545Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-solidity: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20fill%3D%22%230288d1%22%3E%20%3Cpath%20d%3D%22m5.747%2014.046%206.254%208.61%206.252-8.61-6.254%203.807z%22%2F%3E%20%3Cpath%20d%3D%22M11.999%201.343%205.747%2011.83l6.252%203.807%206.253-3.807z%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-toml: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%20%3Cpath%20fill%3D%22%238BC34A%22%20d%3D%22M487.8%20487.8H384.722v-50.928h47.402V78.174h-47.402V27H487.8zM365.297%20123.968v53.41H283.25V425.67h-57.695V177.378h-82.428v-53.41zM27%2027h102.567v50.928H82.166v358.698h47.4V487.8H27z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-monaco-transparent-logo: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2227.71281334220408px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20data-name%3D%22Transparent%20Logo%22%20viewBox%3D%220%200%202048%201773.62%22%3E%20%3Cpath%20d%3D%22m1024%20886.81-256%20443.41%20256%20443.4%20256-443.4-256-443.41z%22%20style%3D%22opacity%3A.8%22%2F%3E%20%3Cpath%20d%3D%22m1280%20443.41-256%20443.4%20256%20443.41%20256-443.41-256-443.4zm-512%200-256%20443.4%20256%20443.41%20256-443.41-256-443.4z%22%20style%3D%22opacity%3A.6%22%2F%3E%20%3Cpath%20d%3D%22m1536%200-256%20443.41%20256%20443.4%20256-443.4L1536%200zm-384%20221.7H896L768%20443.41l256%20443.4%20256-443.4-128-221.71zM512%200%20256%20443.41l256%20443.4%20256-443.4L512%200z%22%20style%3D%22opacity%3A.45%22%2F%3E%20%3Cpath%20d%3D%22M1792%20443.4%202048%200h-512l256%20443.4zm-1536%200L512%200H0l256%20443.4z%22%20style%3D%22opacity%3A.3%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-moon: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.557%209.542a.75.75%200%200%201%20.441.729%206.798%206.798%200%201%201-7.214-7.186.75.75%200%200%201%20.548%201.307l-.149.133a3.786%203.786%200%200%200%205.364%205.344l.172-.173a.75.75%200%200%201%20.838-.154ZM14.063%2012a5.297%205.297%200%200%201-2.195.476%205.285%205.285%200%200%201-4.822-7.44A5.297%205.297%200%201%200%2014.063%2012Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-moon-with-star: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.557%209.542a.75.75%200%200%201%20.441.729%206.798%206.798%200%201%201-7.214-7.186.75.75%200%200%201%20.548%201.307l-.149.133a3.786%203.786%200%200%200%205.364%205.344l.172-.173a.75.75%200%200%201%20.838-.154ZM14.063%2012a5.297%205.297%200%200%201-2.195.476%205.285%205.285%200%200%201-4.822-7.44A5.297%205.297%200%201%200%2014.063%2012Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m12.631%205.626.193.386a.75.75%200%200%200%20.336.335l.386.194-.386.193a.75.75%200%200%200-.336.335l-.193.386-.193-.386a.75.75%200%200%200-.335-.335l-.386-.193.386-.194a.75.75%200%200%200%20.335-.335l.193-.386Z%22%20stroke%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-networks: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M0%202.632a2.632%202.632%200%201%201%205.263%200%202.632%202.632%200%200%201-5.263%200Zm7.368%200a2.632%202.632%200%201%201%205.263%200%202.632%202.632%200%200%201-5.263%200Zm10-2.632a2.632%202.632%200%201%200%200%205.263%202.632%202.632%200%200%200%200-5.263ZM0%2010a2.632%202.632%200%201%201%205.263%200A2.632%202.632%200%200%201%200%2010Zm7.368%200a2.632%202.632%200%201%201%205.263%200%202.632%202.632%200%200%201-5.263%200Zm10-2.632a2.632%202.632%200%201%200%200%205.264%202.632%202.632%200%200%200%200-5.264Zm-2.631%2010a2.632%202.632%200%201%201%205.263%200%202.632%202.632%200%200%201-5.263%200ZM2.632%2014.737a2.632%202.632%200%201%200%200%205.263%202.632%202.632%200%200%200%200-5.263Zm7.368%200A2.632%202.632%200%201%200%2010%2020a2.632%202.632%200%200%200%200-5.263Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-nft-shield: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.24.061a.502.502%200%200%200-.48%200L1.238%205.835A.449.449%200%200%200%201%206.226v11.548c0%20.161.09.31.238.391L11.76%2023.94a.502.502%200%200%200%20.48%200l10.522-5.774a.45.45%200%200%200%20.238-.391V6.226a.45.45%200%200%200-.238-.391L12.24.06ZM1.957%2017.513V6.487L12%20.977l10.044%205.51v11.026L12%2023.023l-10.043-5.51ZM8.174%206.566a.466.466%200%200%200-.478-.453.466.466%200%200%200-.479.453v7.625L5.28%208.687a.481.481%200%200%200-.53-.304.461.461%200%200%200-.402.447v6.793c0%20.25.214.453.478.453a.466.466%200%200%200%20.478-.453V11.62l1.938%205.503c.074.211.299.34.53.304a.461.461%200%200%200%20.402-.447V6.566Zm3.578-2.938a.501.501%200%200%201%20.49-.003l2.866%201.585a.44.44%200%200%201%20.172.619.493.493%200%200%201-.654.163l-2.622-1.45L9.61%205.916v5.631h2.87c.263%200%20.478.203.478.453s-.215.453-.479.453h-2.87v5.887c0%20.25-.213.452-.478.452a.466.466%200%200%201-.478-.452V5.66c0-.158.088-.305.23-.387l2.87-1.645Zm4.05%202.472a.493.493%200%200%201%20.652-.168l2.957%201.6c.23.123.31.4.178.617a.493.493%200%200%201-.652.169l-.72-.39v9.053c0%20.25-.214.453-.478.453a.466.466%200%200%201-.478-.453v-9.57l-1.281-.693a.44.44%200%200%201-.178-.618Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-open-link: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.16%203A2.16%202.16%200%200%200%203%205.16v10.18a2.16%202.16%200%200%200%202.16%202.16h10.18a2.16%202.16%200%200%200%202.16-2.16v-3.272h-1.614v3.114a.704.704%200%200%201-.704.704H5.318a.705.705%200%200%201-.704-.704V5.318c0-.389.315-.704.704-.704h3.114V3H5.159Zm6.135%200a.41.41%200%200%200-.41.41v.793a.41.41%200%200%200%20.41.409h3.453l-4.244%204.245a.409.409%200%200%200%200%20.578l.56.561c.16.16.42.16.58%200l4.244-4.245v3.454c0%20.226.183.41.41.41h.793a.41.41%200%200%200%20.409-.41V3h-6.205Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-operation: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M21.7%204a3.3%203.3%200%200%201%20.99%206.447v9.105A3.301%203.301%200%200%201%2021.7%2026a3.3%203.3%200%200%201-3.26-3.809L8.502%2017.46a3.297%203.297%200%200%201-2.203.84A3.29%203.29%200%200%201%203%2015.019l.004-.17A3.293%203.293%200%200%201%206.3%2011.735l.17.005a3.299%203.299%200%200%201%202.355%201.166l9.666-4.834A3.3%203.3%200%200%201%2021.7%204Zm0%2017.38a1.32%201.32%200%201%200%200%202.641%201.32%201.32%200%200%200%200-2.641ZM9.585%2014.74c.003.036.009.072.01.109l.005.17c0%20.251-.03.496-.084.731l9.802%204.667c.38-.396.856-.697%201.392-.865v-9.105a3.293%203.293%200%200%201-1.193-.675L9.585%2014.74ZM6.3%2013.715c-.74%200-1.32.594-1.32%201.303%200%20.708.58%201.301%201.32%201.301.739%200%201.32-.593%201.32-1.301%200-.71-.581-1.303-1.32-1.303Zm15.4-7.737a1.32%201.32%200%201%200%200%202.642%201.32%201.32%200%200%200%200-2.642Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-operation-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M17%200a3%203%200%200%201%20.9%205.862v8.275A3.002%203.002%200%200%201%2017%2020a3%203%200%200%201-2.965-3.463L5%2012.234A2.993%202.993%200%200%201%203%2013c-1.657%200-3-1.336-3-2.983l.004-.155A2.993%202.993%200%200%201%203%207.032l.154.004a3%203%200%200%201%202.142%201.06L14.085%203.7A3%203%200%200%201%2017%200Zm0%2015.8a1.2%201.2%200%201%200%200%202.4%201.2%201.2%200%200%200%200-2.4ZM5.985%209.763c.003.033.01.066.011.1l.004.154c0%20.228-.028.45-.077.664l8.913%204.244a3%203%200%200%201%201.264-.788V5.862a2.992%202.992%200%200%201-1.083-.615L5.985%209.763ZM3%208.832c-.672%200-1.2.54-1.2%201.185%200%20.644.528%201.183%201.2%201.183.672%200%201.2-.539%201.2-1.183%200-.645-.528-1.185-1.2-1.185ZM17%201.8a1.2%201.2%200%201%200%200%202.4%201.2%201.2%200%200%200%200-2.4Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-output-roots: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M14.917%203.667c0-.92.746-1.667%201.666-1.667h5c.92%200%201.667.746%201.667%201.667v5c0%20.92-.746%201.666-1.667%201.666h-5c-.92%200-1.666-.746-1.666-1.666V7h-.837a1.656%201.656%200%200%200-1.663%201.663v6.674A1.654%201.654%200%200%200%2014.08%2017h.837v-1.667c0-.92.746-1.666%201.666-1.666h5c.92%200%201.667.746%201.667%201.666v5c0%20.92-.746%201.667-1.667%201.667h-5c-.92%200-1.666-.746-1.666-1.667v-1.666h-.832a3.323%203.323%200%200%201-3.335-3.335v-2.499h-2.5v1.25c0%20.92-.746%201.667-1.667%201.667H2.417c-.92%200-1.667-.746-1.667-1.667V9.917c0-.92.746-1.667%201.667-1.667h4.166c.92%200%201.667.746%201.667%201.667v1.25h2.5V8.668a3.323%203.323%200%200%201%203.335-3.335h.832V3.667Zm1.666%202.498v2.502h5v-5h-5v2.498Zm0%2011.67v2.498h5v-5h-5v2.502Zm-10-7.918v4.166H2.417V9.917h4.166Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M14.917%207h.1a.1.1%200%200%200-.1-.1V7Zm-.834%200v.1V7Zm-.003%200v.1V7Zm-.638.125.038.092-.038-.092Zm-.54.36.07.07-.07-.07Zm-.36.54-.093-.037.092.038Zm-.125.638h.1-.1Zm0%20.004h.1-.1Zm0%206.666h.1-.1Zm0%20.004h.1-.1Zm.124.637-.092.038.092-.038Zm.36.54.072-.07-.071.07Zm.541.361-.038.093.038-.093Zm.638.125v-.1.1Zm.003%200v-.1.1Zm.834%200v.1a.1.1%200%200%200%20.1-.1h-.1Zm0%201.667h.1a.1.1%200%200%200-.1-.1v.1Zm-.832%200v-.1.1Zm-1.277-.25.038-.093-.038.092Zm-1.085-.724.071-.07-.07.07ZM11%2016.61l-.092.038.092-.038Zm-.25-1.277h.1-.1Zm0-2.499h.1a.1.1%200%200%200-.1-.1v.1Zm-2.5%200v-.1a.1.1%200%200%200-.1.1h.1Zm0-1.666h-.1a.1.1%200%200%200%20.1.1v-.1Zm2.5%200v.1a.1.1%200%200%200%20.1-.1h-.1Zm0-2.499h.1-.1ZM11%207.391l-.092-.038.092.038Zm.723-1.084.071.07-.07-.07Zm1.085-.723.038.092-.038-.092Zm1.277-.25v.1-.1Zm.832%200v.1a.1.1%200%200%200%20.1-.1h-.1Zm1.666%203.333h-.1a.1.1%200%200%200%20.1.1v-.1Zm5%200v.1a.1.1%200%200%200%20.1-.1h-.1Zm0-5h.1a.1.1%200%200%200-.1-.1v.1Zm-5%200v-.1a.1.1%200%200%200-.1.1h.1Zm0%2016.666h-.1a.1.1%200%200%200%20.1.1v-.1Zm5%200v.1a.1.1%200%200%200%20.1-.1h-.1Zm0-5h.1a.1.1%200%200%200-.1-.1v.1Zm-5%200v-.1a.1.1%200%200%200-.1.1h.1ZM6.583%2012h.1-.1Zm0-2.083h.1a.1.1%200%200%200-.1-.1v.1Zm0%204.166v.1a.1.1%200%200%200%20.1-.1h-.1Zm-4.166%200h-.1a.1.1%200%200%200%20.1.1v-.1Zm0-4.166v-.1a.1.1%200%200%200-.1.1h.1ZM16.583%201.9c-.975%200-1.766.791-1.766%201.767h.2c0-.866.701-1.567%201.566-1.567v-.2Zm5%200h-5v.2h5v-.2Zm1.767%201.767c0-.976-.791-1.767-1.767-1.767v.2c.866%200%201.567.701%201.567%201.567h.2Zm0%205v-5h-.2v5h.2Zm-1.767%201.766c.976%200%201.767-.79%201.767-1.766h-.2c0%20.865-.701%201.566-1.567%201.566v.2Zm-5%200h5v-.2h-5v.2Zm-1.766-1.766c0%20.975.79%201.766%201.766%201.766v-.2a1.567%201.567%200%200%201-1.566-1.566h-.2Zm0-1.667v1.667h.2V7h-.2Zm.1-.1h-.834v.2h.834v-.2Zm-.833%200h-.004v.2h.003v-.2Zm-.004%200a1.756%201.756%200%200%200-.676.132l.076.185a1.56%201.56%200%200%201%20.6-.117v-.2Zm-.676.132a1.77%201.77%200%200%200-.573.382l.142.142c.145-.145.317-.26.507-.339l-.076-.185Zm-.573.382a1.757%201.757%200%200%200-.382.574l.185.076c.078-.19.193-.363.338-.508l-.141-.142Zm-.382.574a1.755%201.755%200%200%200-.132.676l.2-.001a1.56%201.56%200%200%201%20.117-.6l-.185-.075Zm-.132.675v.004h.2v-.004h-.2Zm0%20.004v6.666h.2V8.667h-.2Zm0%206.666v.004h.2v-.003h-.2Zm0%20.003c-.001.232.044.462.132.676l.185-.076a1.554%201.554%200%200%201-.117-.599h-.2Zm.132.676c.088.215.218.41.382.574l.142-.142a1.556%201.556%200%200%201-.34-.508l-.184.076Zm.382.574c.164.164.359.294.573.382l.076-.185a1.555%201.555%200%200%201-.508-.339l-.141.142Zm.573.382c.215.088.444.133.676.132v-.2a1.58%201.58%200%200%201-.6-.117l-.076.185Zm.676.132h.004v-.2h-.004v.2Zm.003%200h.834v-.2h-.834v.2Zm.934-.1v-1.667h-.2V17h.2Zm0-1.667c0-.865.701-1.566%201.566-1.566v-.2c-.975%200-1.766.79-1.766%201.766h.2Zm1.566-1.566h5v-.2h-5v.2Zm5%200c.866%200%201.567.701%201.567%201.566h.2c0-.975-.791-1.766-1.767-1.766v.2Zm1.567%201.566v5h.2v-5h-.2Zm0%205c0%20.866-.701%201.567-1.567%201.567v.2c.976%200%201.767-.791%201.767-1.767h-.2ZM21.583%2021.9h-5v.2h5v-.2Zm-5%200a1.567%201.567%200%200%201-1.566-1.567h-.2c0%20.976.79%201.767%201.766%201.767v-.2Zm-1.566-1.567v-1.666h-.2v1.666h.2Zm-.1-1.766h-.832v.2h.832v-.2Zm-.832%200a3.223%203.223%200%200%201-1.24-.243l-.075.185c.417.172.864.26%201.315.258v-.2Zm-1.24-.243a3.221%203.221%200%200%201-1.051-.701l-.142.141c.32.32.7.573%201.118.745l.076-.185Zm-1.051-.701c-.3-.301-.54-.659-.701-1.052l-.185.076c.172.418.425.798.745%201.117l.141-.141Zm-.701-1.052a3.223%203.223%200%200%201-.243-1.239h-.2c-.002.45.086.898.258%201.315l.185-.076Zm-.243-1.24v-2.498h-.2v2.499h.2Zm-2.6-2.398h2.5v-.2h-2.5v.2Zm.1%201.15v-1.25h-.2v1.25h.2ZM6.583%2015.85c.976%200%201.767-.791%201.767-1.767h-.2c0%20.866-.701%201.567-1.567%201.567v.2Zm-4.166%200h4.166v-.2H2.417v.2ZM.65%2014.083c0%20.976.791%201.767%201.767%201.767v-.2A1.567%201.567%200%200%201%20.85%2014.083h-.2Zm0-4.166v4.166h.2V9.917h-.2ZM2.417%208.15C1.44%208.15.65%208.941.65%209.917h.2c0-.866.701-1.567%201.567-1.567v-.2Zm4.166%200H2.417v.2h4.166v-.2ZM8.35%209.917c0-.976-.791-1.767-1.767-1.767v.2c.866%200%201.567.701%201.567%201.567h.2Zm0%201.25v-1.25h-.2v1.25h.2Zm2.4-.1h-2.5v.2h2.5v-.2Zm.1.1V8.668h-.2v2.499h.2Zm0-2.5c-.002-.424.08-.845.243-1.238l-.185-.076a3.41%203.41%200%200%200-.258%201.316l.2-.001Zm.243-1.238c.162-.393.4-.75.701-1.052l-.142-.141c-.319.32-.572.7-.744%201.117l.185.076Zm.701-1.052c.3-.3.658-.539%201.052-.7l-.076-.186a3.424%203.424%200%200%200-1.117.745l.141.141Zm1.052-.7a3.223%203.223%200%200%201%201.239-.244v-.2a3.423%203.423%200%200%200-1.315.258l.076.185Zm1.239-.244h.832v-.2h-.832v.2Zm.732-1.766v1.666h.2V3.667h-.2Zm1.666%202.498v.001h.2-.2Zm0%20.002h.2-.2Zm.2%202.5v-2.5h-.2v2.5h.2Zm4.9-.1h-5v.2h5v-.2Zm-.1-4.9v5h.2v-5h-.2Zm-4.9.1h5v-.2h-5v.2Zm.1%202.398V3.667h-.2v2.498h.2Zm-.2%2011.67v2.498h.2v-2.498h-.2Zm.1%202.598h5v-.2h-5v.2Zm5.1-.1v-5h-.2v5h.2Zm-.1-5.1h-5v.2h5v-.2Zm-5.1.1v2.5h.2v-2.5h-.2Zm0%202.5h.2-.2Zm0%200v.002h.2v-.002h-.2ZM6.683%2012V9.917h-.2V12h.2Zm0%202.083V12h-.2v2.083h.2Zm-4.266.1h4.166v-.2H2.417v.2Zm-.1-4.266v4.166h.2V9.917h-.2Zm4.266-.1H2.417v.2h4.166v-.2Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-payment-link: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.603%202.425A5.072%205.072%200%200%201%2019.2%206.034a5.08%205.08%200%200%201-1.423%203.571l-.012.012-2.202%202.204c.21-.479.325-1.047.325-1.718%200-.474-.057-.896-.165-1.272l.62-.62A3.08%203.08%200%200%200%2014.154%203a3.072%203.072%200%200%200-2.156.859l-1.396%201.389a1%201%200%200%201-1.41-1.418l1.4-1.394.01-.01Zm-5.96%205.95-2.207%202.209-.012.012A5.079%205.079%200%200%200%206.03%2019.2c1.33.011%202.612-.5%203.569-1.425l.012-.013%201.393-1.394a1%201%200%200%200-1.414-1.414l-1.387%201.388A3.072%203.072%200%200%201%203%2014.15a3.08%203.08%200%200%201%20.858-2.16l.62-.62a4.617%204.617%200%200%201-.163-1.268c0-.676.115-1.247.328-1.727Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M8.308%2012.49v-1.173h2.863a.247.247%200%200%200%20.184-.086.313.313%200%200%200%20.076-.207.313.313%200%200%200-.076-.207.247.247%200%200%200-.184-.086H9.089c-.346%200-.677-.155-.92-.43a1.564%201.564%200%200%201-.382-1.036c0-.388.137-.76.381-1.036.244-.275.575-.429.92-.429h.521V6.628h1.041V7.8h1.302v1.172H9.088a.246.246%200%200%200-.184.086.313.313%200%200%200-.076.207c0%20.078.028.153.076.208a.246.246%200%200%200%20.184.085h2.083c.345%200%20.676.155.92.43.244.274.381.647.381%201.036%200%20.388-.137.761-.381%201.036s-.575.43-.92.43h-.52v1.171H9.608V12.49h-1.3Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-plus: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.857%209.052a1%201%200%200%200%201-1V3.195a1%201%200%200%201%201-1h.286a1%201%200%200%201%201%201v4.857a1%201%200%200%200%201%201H17a1%201%200%200%201%201%201v.286a1%201%200%200%201-1%201h-4.857a1%201%200%200%200-1%201v4.857a1%201%200%200%201-1%201h-.286a1%201%200%200%201-1-1v-4.857a1%201%200%200%200-1-1H3a1%201%200%200%201-1-1v-.286a1%201%200%200%201%201-1h4.857Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-private-tags-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.605%2021a2.26%202.26%200%200%201-1.614-.665l-6.314-6.318a2.266%202.266%200%200%201%200-3.23l8.45-8.457C10.888%201.57%2012.265%201%2013.31%201h5.412C19.956%201%2021%202.045%2021%203.28v5.416c0%20.403-.085.856-.233%201.304H19.18c.208-.443.348-.944.348-1.352V3.233a.851.851%200%200%200-.854-.855h-5.365v.047c-.665%200-1.71.428-2.184.903l-8.451%208.456a.832.832%200%200%200%200%201.188l6.314%206.318c.332.332.902.332%201.187%200l1.818-1.82v2.09l-.773.775A2.26%202.26%200%200%201%209.605%2021Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m7.991%2020.335-.177.177.177-.177Zm-6.314-6.318.176-.177-.176.177Zm0-3.23.176.176-.176-.177Zm8.45-8.457-.176-.177.177.177ZM20.768%2010v.25h.181l.057-.172-.238-.078Zm-1.587%200-.226-.106-.168.356h.394V10ZM13.31%202.378v-.25h-.25v.25h.25Zm0%20.047v.25h.25v-.25h-.25Zm-2.184.903-.177-.177.177.177Zm-8.451%208.456.176.177-.176-.177Zm0%201.188-.177.176.177-.176Zm6.314%206.318-.177.177.177-.177Zm1.187%200-.177-.177-.007.007-.006.007.19.163Zm1.818-1.82h.25v-.604l-.426.428.176.176Zm0%202.09.177.177.073-.073v-.103h-.25Zm-.773.775.176.177-.176-.177Zm-3.406.177a2.51%202.51%200%200%200%201.791.738v-.5a2.01%202.01%200%200%201-1.437-.592l-.354.354ZM1.5%2014.193l6.314%206.319.354-.354-6.315-6.318-.353.353Zm0-3.583c-1%201-1%202.583%200%203.583l.353-.353a2.016%202.016%200%200%201%200-2.877L1.5%2010.61Zm8.45-8.457L1.5%2010.61l.353.353%208.451-8.456-.353-.354ZM13.31.75c-.564%200-1.202.153-1.794.4-.592.246-1.156.595-1.564%201.003l.353.354c.352-.352.856-.668%201.403-.896.548-.229%201.12-.361%201.602-.361v-.5Zm5.412%200H13.31v.5h5.412v-.5Zm2.529%202.53c0-1.373-1.156-2.53-2.529-2.53v.5c1.096%200%202.029.933%202.029%202.03h.5Zm0%205.416V3.28h-.5v5.416h.5Zm-.245%201.382c.154-.466.245-.946.245-1.382h-.5c0%20.37-.078.797-.22%201.226l.475.156Zm-1.825.172h1.587v-.5H19.18v.5Zm.098-1.602c0%20.36-.126.823-.324%201.246l.452.213c.218-.464.372-1.002.372-1.459h-.5Zm0-5.415v5.415h.5V3.233h-.5Zm-.604-.605c.336%200%20.604.268.604.605h.5a1.1%201.1%200%200%200-1.104-1.105v.5Zm-5.365%200h5.365v-.5H13.31v.5Zm.25-.203v-.047h-.5v.047h.5Zm-2.257%201.08c.205-.206.552-.416.939-.576.386-.159.78-.254%201.068-.254v-.5c-.377%200-.839.119-1.259.292-.42.173-.833.414-1.102.684l.354.354ZM2.85%2011.96l8.452-8.456-.354-.354-8.451%208.456.353.354Zm0%20.834a.582.582%200%200%201%200-.834l-.353-.354c-.43.43-.43%201.111%200%201.541l.353-.353Zm6.315%206.318L2.85%2012.795l-.353.353%206.314%206.319.354-.354Zm.82.014c-.178.208-.577.23-.82-.014l-.354.354c.422.422%201.162.443%201.554-.015l-.38-.325Zm1.832-1.833-1.819%201.82.354.352%201.818-1.819-.353-.353Zm.426%202.267v-2.09h-.5v2.09h.5Zm-.847.95.774-.774-.353-.353-.774.774.353.354Zm-1.79.739a2.51%202.51%200%200%200%201.79-.738l-.353-.354a2.01%202.01%200%200%201-1.438.592v.5ZM20.988%2020v-5c0-.55-.45-1-1-1h-5.996c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201h5.996c.55%200%201-.45%201-1Zm-2.998-2.5c0%20.55-.45%201-1%201s-1-.45-1-1%20.45-1%201-1%201%20.45%201%201Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M19.489%2016v-2.5c0-1.4-1.1-2.5-2.499-2.5s-2.498%201.1-2.498%202.5V16%22%20stroke%3D%22currentColor%22%20stroke-opacity%3D%22.8%22%20stroke-miterlimit%3D%2210%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-privattags: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.61%2025a2.262%202.262%200%200%201-1.615-.665l-6.318-6.318a2.265%202.265%200%200%201%200-3.23l8.456-8.457c.76-.76%202.138-1.33%203.183-1.33h5.416c1.235%200%202.28%201.045%202.28%202.28v5.416c0%20.403-.085.856-.233%201.304h-1.588c.208-.443.348-.944.348-1.351V7.232a.852.852%200%200%200-.855-.855h-5.368v.047c-.665%200-1.71.428-2.185.903l-8.456%208.456a.832.832%200%200%200%200%201.187l6.318%206.319c.332.332.902.332%201.188%200L16%2021.47v2.09l-.774.775A2.262%202.262%200%200%201%2013.61%2025Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m11.995%2024.335-.176.177.176-.177Zm-6.318-6.318.177-.177-.177.177Zm0-3.23.177.176-.177-.177Zm8.456-8.457-.177-.177.177.177ZM24.779%2014v.25h.18l.057-.172L24.78%2014Zm-1.588%200-.227-.107-.167.357h.394V14Zm-5.875-7.622v-.25h-.25v.25h.25Zm0%20.047v.25h.25v-.25h-.25Zm-2.185.903-.177-.177.177.177Zm-8.456%208.456.176.177-.176-.177Zm0%201.187-.177.177.177-.177Zm6.318%206.319-.177.177.177-.177Zm1.188%200-.177-.177-.007.007-.006.007.19.163ZM16%2021.47h.25v-.603l-.427.427.177.176Zm0%202.09.177.177.073-.073v-.103H16Zm-.774.775.176.177-.176-.177Zm-3.408.177a2.512%202.512%200%200%200%201.792.738v-.5a2.012%202.012%200%200%201-1.438-.592l-.354.354ZM5.5%2018.193l6.319%206.319.353-.354-6.318-6.318-.354.353Zm0-3.584c-1%201-1%202.584%200%203.584l.354-.353a2.015%202.015%200%200%201%200-2.877l-.354-.354Zm8.456-8.456L5.5%2014.61l.354.354%208.456-8.456-.354-.354Zm3.36-1.403c-.564%200-1.203.153-1.795.4-.592.246-1.156.595-1.565%201.003l.354.354c.351-.352.856-.668%201.404-.896.548-.229%201.12-.361%201.602-.361v-.5Zm5.416%200h-5.416v.5h5.416v-.5Zm2.53%202.53c0-1.373-1.157-2.53-2.53-2.53v.5c1.097%200%202.03.933%202.03%202.03h.5Zm0%205.416V7.28h-.5v5.416h.5Zm-.246%201.382c.155-.466.246-.946.246-1.382h-.5c0%20.37-.079.796-.22%201.226l.474.156Zm-1.825.172h1.588v-.5h-1.588v.5Zm.098-1.601c0%20.359-.126.822-.325%201.245l.453.213c.218-.464.372-1.002.372-1.458h-.5Zm0-5.416v5.416h.5V7.232h-.5Zm-.605-.605c.337%200%20.605.268.605.605h.5c0-.613-.492-1.105-1.105-1.105v.5Zm-5.368%200h5.368v-.5h-5.368v.5Zm.25-.203v-.047h-.5v.047h.5Zm-2.259%201.08c.206-.206.553-.416.94-.575.387-.16.781-.255%201.069-.255v-.5c-.377%200-.839.119-1.26.292-.42.173-.833.414-1.102.684l.353.354ZM6.851%2015.96l8.456-8.456-.353-.354-8.456%208.456.353.354Zm0%20.834a.582.582%200%200%201%200-.834l-.353-.354c-.43.43-.43%201.111%200%201.541l.353-.353Zm6.319%206.318-6.32-6.317-.353.353%206.318%206.319.354-.354Zm.82.014c-.178.208-.577.23-.82-.014l-.354.354c.422.422%201.162.443%201.554-.014l-.38-.326Zm1.833-1.833-1.82%201.819.354.354%201.82-1.82-.354-.353Zm.427%202.267v-2.09h-.5v2.09h.5Zm-.848.95.775-.774-.354-.353-.774.774.353.354Zm-1.792.739c.684%200%201.318-.264%201.792-.738l-.353-.354c-.38.38-.887.592-1.439.592v.5ZM25%2024v-5c0-.55-.45-1-1-1h-6c-.55%200-1%20.45-1%201v5c0%20.55.45%201%201%201h6c.55%200%201-.45%201-1Zm-3-2.5c0%20.55-.45%201-1%201s-1-.45-1-1%20.45-1%201-1%201%20.45%201%201Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M23.5%2020v-2.5c0-1.4-1.1-2.5-2.5-2.5s-2.5%201.1-2.5%202.5V20%22%20stroke%3D%22currentColor%22%20stroke-miterlimit%3D%2210%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-profile: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10%201.593A8.407%208.407%200%200%200%203.332%2015.12c1.465-2.162%203.89-3.556%206.668-3.556%202.784%200%205.2%201.461%206.66%203.567A8.407%208.407%200%200%200%2010%201.593ZM0%2010C0%204.477%204.477%200%2010%200s10%204.477%2010%2010-4.477%2010-10%2010S0%2015.523%200%2010Zm4.476%206.287c1.443%201.295%203.412%202.039%205.524%202.039a8.529%208.529%200%200%200%205.51-2.045c-1.17-1.85-3.2-3.123-5.51-3.123-2.333%200-4.363%201.225-5.524%203.129Zm3.388-8.975a2.136%202.136%200%201%201%204.272%200%202.136%202.136%200%200%201-4.272%200ZM10%203.584a3.729%203.729%200%201%200%200%207.457%203.729%203.729%200%200%200%200-7.457Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-publictags: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M13.61%2025a2.262%202.262%200%200%201-1.615-.665l-6.318-6.318a2.265%202.265%200%200%201%200-3.23l8.456-8.457c.76-.76%202.138-1.33%203.183-1.33h5.416c1.235%200%202.28%201.045%202.28%202.28v5.416c0%201.045-.57%202.423-1.33%203.183l-8.456%208.456A2.262%202.262%200%200%201%2013.61%2025Zm3.706-18.575c-.665%200-1.71.428-2.185.903l-8.456%208.456a.832.832%200%200%200%200%201.187l6.318%206.319c.332.332.902.332%201.188%200l8.456-8.456c.475-.475.902-1.473.902-2.185V7.232a.852.852%200%200%200-.855-.855h-5.368v.047Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.5%22%2F%3E%20%3Cpath%20d%3D%22M19.311%2013.504a2.808%202.808%200%200%201-2.803-2.803%202.808%202.808%200%200%201%202.803-2.803%202.808%202.808%200%200%201%202.803%202.803%202.808%202.808%200%200%201-2.803%202.803Zm0-4.276a1.48%201.48%200%200%200-1.473%201.473%201.48%201.48%200%200%200%201.473%201.473%201.48%201.48%200%200%200%201.473-1.473%201.48%201.48%200%200%200-1.473-1.473Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.5%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-publictags-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M9.094%2019.3c-.58%200-1.116-.223-1.517-.625l-5.936-5.94a2.13%202.13%200%200%201%200-3.036L9.585%201.75c.714-.714%202.008-1.25%202.99-1.25h5.088c1.16%200%202.142.982%202.142%202.143v5.091c0%20.983-.536%202.278-1.25%202.992l-7.944%207.949a2.125%202.125%200%200%201-1.517.625Zm3.481-17.46c-.625%200-1.607.402-2.053.848l-7.944%207.949a.782.782%200%200%200%200%201.116l5.936%205.94c.312.312.848.312%201.115%200l7.944-7.95c.447-.446.848-1.384.848-2.053V2.599a.8.8%200%200%200-.803-.804h-5.043v.045Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M14.45%208.493a2.639%202.639%200%200%201-2.634-2.634%202.639%202.639%200%200%201%202.633-2.635%202.639%202.639%200%200%201%202.634%202.635%202.639%202.639%200%200%201-2.633%202.634Zm0-4.019a1.39%201.39%200%200%200-1.384%201.385%201.39%201.39%200%200%200%201.383%201.384%201.39%201.39%200%200%200%201.384-1.384%201.39%201.39%200%200%200-1.383-1.385Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-qr-code: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M15.938%2013.125h-2.5a.312.312%200%200%200-.313.313v2.5c0%20.172.14.312.313.312h2.5c.172%200%20.312-.14.312-.313v-2.5a.312.312%200%200%200-.313-.312Zm-3.125-2.5h-1.876a.312.312%200%200%200-.312.313v1.874c0%20.173.14.313.313.313h1.874c.173%200%20.313-.14.313-.313v-1.874a.312.312%200%200%200-.313-.313Zm5.625%205.625h-1.875a.312.312%200%200%200-.313.313v1.875c0%20.172.14.312.313.312h1.875c.172%200%20.312-.14.312-.313v-1.875a.312.312%200%200%200-.313-.312Zm0-5.625h-1.25a.312.312%200%200%200-.313.313v1.25c0%20.172.14.312.313.312h1.25c.172%200%20.312-.14.312-.313v-1.25a.312.312%200%200%200-.313-.312Zm-6.25%206.25h-1.25a.312.312%200%200%200-.313.313v1.25c0%20.172.14.312.313.312h1.25c.172%200%20.312-.14.312-.313v-1.25a.312.312%200%200%200-.313-.312ZM17.5%201.25h-5.625a1.25%201.25%200%200%200-1.25%201.25v5.625a1.25%201.25%200%200%200%201.25%201.25H17.5a1.25%201.25%200%200%200%201.25-1.25V2.5a1.25%201.25%200%200%200-1.25-1.25Zm-1.25%205.313a.312.312%200%200%201-.313.312h-2.5a.313.313%200%200%201-.312-.313v-2.5a.312.312%200%200%201%20.313-.312h2.5a.313.313%200%200%201%20.312.313v2.5ZM8.125%201.25H2.5A1.25%201.25%200%200%200%201.25%202.5v5.625a1.25%201.25%200%200%200%201.25%201.25h5.625a1.25%201.25%200%200%200%201.25-1.25V2.5a1.25%201.25%200%200%200-1.25-1.25Zm-1.25%205.313a.312.312%200%200%201-.313.312h-2.5a.312.312%200%200%201-.312-.313v-2.5a.312.312%200%200%201%20.313-.312h2.5a.312.312%200%200%201%20.312.313v2.5Zm1.25%204.062H2.5a1.25%201.25%200%200%200-1.25%201.25V17.5a1.25%201.25%200%200%200%201.25%201.25h5.625a1.25%201.25%200%200%200%201.25-1.25v-5.625a1.25%201.25%200%200%200-1.25-1.25Zm-1.25%205.313a.313.313%200%200%201-.313.312h-2.5a.312.312%200%200%201-.312-.313v-2.5a.313.313%200%200%201%20.313-.312h2.5a.312.312%200%200%201%20.312.313v2.5Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-refresh: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5.396%202.285a8.837%208.837%200%200%201%2013.173%206.436.9.9%200%201%201-1.783.247A7.037%207.037%200%200%200%204.105%205.826a.1.1%200%200%200%20.081.159H5.92a.9.9%200%201%201%200%201.8H2a.9.9%200%200%201-.9-.9v-3.92a.9.9%200%200%201%201.8%200v1.192a.1.1%200%200%200%20.176.065%208.836%208.836%200%200%201%202.32-1.937Zm2.563%207.54a1.88%201.88%200%201%201%203.76%200%201.88%201.88%200%200%201-3.76%200Zm-6.083.088a.9.9%200%200%201%201.015.767%207.037%207.037%200%200%200%2012.682%203.142.1.1%200%200%200-.082-.158h-1.733a.9.9%200%201%201%200-1.8h3.41a.93.93%200%200%201%20.04%200h.47a.9.9%200%200%201%20.9.9v3.92a.9.9%200%201%201-1.8%200V15.49a.1.1%200%200%200-.177-.064%208.834%208.834%200%200%201-12.958.564%208.837%208.837%200%200%201-2.534-5.063.9.9%200%200%201%20.767-1.015Zm7.983-.088V9.82l-.002-.005a.019.019%200%200%200-.004-.006.019.019%200%200%200-.006-.004h-.002l-.004-.001h-.006l-.005.001a.019.019%200%200%200-.006.004.019.019%200%200%200-.004.006.028.028%200%200%200-.001.005v.003l.04.001Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-repeat: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M6.485%207.012h1.446a.918.918%200%201%201%200%201.84H4.253a.919.919%200%200%201-.92-.92V4.254a.919.919%200%201%201%201.84%200v1.47l.505-.505a6.436%206.436%200%200%201%209.103%200%206.436%206.436%200%200%201%200%209.103%206.436%206.436%200%200%201-9.103%200%20.92.92%200%200%201%201.302-1.301%204.597%204.597%200%201%200%200-6.503l-.495.494Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-rest-api: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cg%20fill-rule%3D%22evenodd%22%20clip-path%3D%22url(%23restAPI_svg__a)%22%20clip-rule%3D%22evenodd%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M23%204.3H7A2.7%202.7%200%200%200%204.3%207v16A2.7%202.7%200%200%200%207%2025.7h16a2.7%202.7%200%200%200%202.7-2.7V7A2.7%202.7%200%200%200%2023%204.3ZM7%203a4%204%200%200%200-4%204v16a4%204%200%200%200%204%204h16a4%204%200%200%200%204-4V7a4%204%200%200%200-4-4H7Z%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M14.911%2011a1%201%200%200%200-1%201v7.111a1%201%200%201%200%202%200v-1.667h1.667a2.778%202.778%200%200%200%202.777-2.777v-.89A2.778%202.778%200%200%200%2017.578%2011H14.91Zm2.667%204.444H15.91V13h1.667a.777.777%200%200%201%20.777.778v.889a.777.777%200%200%201-.777.777Zm-10.778%201v-2.222a3.222%203.222%200%200%201%206.444%200v4.889a1%201%200%201%201-2%200v-1.667H8.8v1.667a1%201%200%201%201-2%200v-2.667Zm2-1h2.444v-1.222a1.222%201.222%200%201%200-2.444%200v1.222ZM22.022%2011a1%201%200%200%201%201%201v7.111a1%201%200%201%201-2%200V12a1%201%200%200%201%201-1Z%22%2F%3E%20%3Cpath%20d%3D%22M15.711%2017.444c0-.11.09-.2.2-.2h1.667a2.577%202.577%200%200%200%202.578-2.577v-.89a2.577%202.577%200%200%200-2.578-2.577H14.91a.8.8%200%200%200-.8.8v7.111a.8.8%200%200%200%201.6%200v-1.667Zm.2-1.8a.2.2%200%200%201-.2-.2V13c0-.11.09-.2.2-.2h1.667a.978.978%200%200%201%20.977.978v.889a.978.978%200%200%201-.977.977H15.91Zm-4.667%201.6c.11%200%20.2.09.2.2v1.667a.8.8%200%200%200%201.6%200v-4.889a3.022%203.022%200%200%200-6.044%200v4.89a.8.8%200%200%200%201.6%200v-1.668c0-.11.09-.2.2-.2h2.444Zm-2.444-1.6a.2.2%200%200%201-.2-.2v-1.222a1.422%201.422%200%201%201%202.844%200v1.222a.2.2%200%200%201-.2.2H8.8Zm7.111%203.467a1%201%200%201%201-2%200V12a1%201%200%200%201%201-1h2.667a2.778%202.778%200%200%201%202.777%202.778v.889a2.778%202.778%200%200%201-2.777%202.777H15.91v1.667Zm1.667-3.667a.777.777%200%200%200%20.777-.777v-.89a.778.778%200%200%200-.777-.777H15.91v2.444h1.667ZM8.8%2019.111a1%201%200%201%201-2%200v-4.889a3.222%203.222%200%200%201%206.444%200v4.89a1%201%200%201%201-2%200v-1.668H8.8v1.667Zm2.444-4.889a1.222%201.222%200%201%200-2.444%200v1.222h2.444v-1.222ZM22.822%2012a.8.8%200%200%200-1.6%200v7.111a.8.8%200%200%200%201.6%200V12Zm.2%200a1%201%200%201%200-2%200v7.111a1%201%200%201%200%202%200V12Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22restAPI_svg__a%22%3E%20%3Cpath%20d%3D%22M3%203h24v24H3z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-rocket: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M10%209.375a1.25%201.25%200%201%200%200-2.5%201.25%201.25%200%200%200%200%202.5Z%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.4%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3Cpath%20d%3D%22M6.25%209.938c-1.188.937-2.125%202.25-2.5%203.812h1.438c.937%200%201.625-.875%201.375-1.75a9.626%209.626%200%200%201-.375-2.688C6.25%205.876%207.813%202.939%2010%201.875c2.188%201.063%203.75%204%203.75%207.375%200%20.938-.125%201.875-.375%202.688-.25.874.438%201.75%201.375%201.75h1.5c-.375-1.563-1.313-2.938-2.5-3.813M10%2013.75v5M8.125%2015v2.5m3.75-2.5v2.5%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.4%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-rocket-xl: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.05%208.552c3.799-3.798%207.474-4.099%209.352-3.954.145%201.878-.156%205.553-3.954%209.352l-11.32%2011.32-5.398-5.398%209.163-9.162.008-.01%202.15-2.148ZM22.817%205.32l-1.484%201.483H9.94a3.81%203.81%200%200%200-2.656%201.132l-6.166%206.147-.003.003a3.81%203.81%200%200%200%201.95%206.43h.002l7.302%201.464%207.653%207.653%201.463%207.301v.003a3.812%203.812%200%200%200%206.43%201.95l6.151-6.169a3.81%203.81%200%200%200%201.132-2.656V18.667l1.483-1.484C40.216%2011.65%2040.24%205.961%2039.863%203.36A3.773%203.773%200%200%200%2036.641.137c-2.602-.376-8.29-.353-13.824%205.182ZM5.358%2016.31l5.388%201.08%206.015-6.015h-6.452l-4.95%204.935ZM22.61%2029.255l1.08%205.387%204.935-4.951v-6.452l-6.015%206.015Zm-13.608-.278a2.286%202.286%200%201%200-2.29-3.958c-3.224%201.866-4.709%205.062-5.404%207.487a19.116%2019.116%200%200%200-.697%204.184%2011.72%2011.72%200%200%200-.012.38v.044l2.286.001H.598a2.286%202.286%200%200%200%202.287%202.287v-2.287l.001%202.287h.045a9.419%209.419%200%200%200%20.38-.013%2019.11%2019.11%200%200%200%204.184-.698c2.424-.694%205.62-2.179%207.486-5.404a2.286%202.286%200%200%200-3.958-2.29c-1.012%201.749-2.874%202.75-4.788%203.299-.244.07-.483.13-.714.183.053-.23.113-.47.183-.714.549-1.914%201.55-3.776%203.298-4.788Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-scope: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M2.667%202A.667.667%200%200%200%202%202.667V6a.667.667%200%200%200%201.333%200V3.333H6A.667.667%200%201%200%206%202H2.667Zm0%2012A.667.667%200%200%201%202%2013.333V10a.667.667%200%200%201%201.333%200v2.667H6A.667.667%200%201%201%206%2014H2.667ZM14%202.667A.667.667%200%200%200%2013.333%202H10a.667.667%200%200%200%200%201.333h2.667V6A.667.667%200%201%200%2014%206V2.667ZM13.333%2014a.667.667%200%200%200%20.667-.667V10a.667.667%200%200%200-1.333%200v2.667H10A.667.667%200%201%200%2010%2014h3.333Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-score-score-not-ok: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%203.6v4.812c0%206.447%205.414%208.703%206.79%209.17%201.377-.467%206.791-2.723%206.791-9.17V3.6H3ZM1.506%202.091A1.714%201.714%200%200%201%202.708%201.6h14.165c.448%200%20.88.175%201.202.491.322.317.506.75.506%201.206v5.115c0%208.015-6.912%2010.66-8.246%2011.097a1.647%201.647%200%200%201-1.089%200C7.912%2019.072%201%2016.427%201%208.412V3.297c0-.455.184-.889.506-1.206Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.9%205.4a1.1%201.1%200%200%200-1.1%201.1v3.8a1.1%201.1%200%200%200%202.2%200V6.5a1.1%201.1%200%200%200-1.1-1.1Zm1.1%208.343a1.1%201.1%200%201%201-2.2%200%201.1%201.1%200%200%201%202.2%200Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-score-score-ok: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%208.412V3.6h13.581v4.812c0%206.447-5.414%208.703-6.79%209.17C8.414%2017.115%203%2014.86%203%208.412ZM2.708%201.6c-.448%200-.88.175-1.202.491-.322.317-.506.75-.506%201.206v5.115c0%208.015%206.912%2010.66%208.246%2011.097.352.123.737.123%201.089%200%201.334-.437%208.246-3.082%208.246-11.097V3.297c0-.455-.184-.889-.506-1.206a1.714%201.714%200%200%200-1.202-.491H2.708ZM14.37%208.208a1%201%200%201%200-1.369-1.458L8.49%2010.986%206.58%209.191a1%201%200%201%200-1.37%201.457l2.594%202.44a1%201%200%200%200%201.37%200l5.196-4.88Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-search: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m14.048%2013.074%202.464%202.463a.69.69%200%201%201-.975.975l-2.463-2.464A6.205%206.205%200%200%201%203%209.202%206.205%206.205%200%200%201%209.203%203a6.205%206.205%200%200%201%204.845%2010.074Zm-1.382-.512a4.823%204.823%200%200%200-3.463-8.184%204.822%204.822%200%200%200-4.825%204.825%204.823%204.823%200%200%200%208.184%203.463l.104-.104Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-share: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2221.176470588235293px%22%20viewBox%3D%220%200%2015%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M12.502%2011.242a2.491%202.491%200%200%200-1.802.77L4.919%208.758c.112-.42.112-.863%200-1.284L10.7%204.222a2.492%202.492%200%201%200-.614-1.088L4.303%206.386a2.5%202.5%200%201%200%200%203.461l5.781%203.253a2.5%202.5%200%201%200%202.417-1.858Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-sign-out: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M19.916%209.556c-.111-.111-.111-.223-.222-.334L16.356%205.89a1.077%201.077%200%200%200-1.558%200%201.073%201.073%200%200%200%200%201.556l1.446%201.444h-5.118c-.667%200-1.112.444-1.112%201.111s.445%201.111%201.112%201.111h5.118l-1.446%201.445a1.073%201.073%200%200%200%200%201.555c.223.222.556.334.779.334.223%200%20.556-.112.779-.334l3.338-3.333c.111-.111.222-.222.222-.333a1.225%201.225%200%200%200%200-.89Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M13.908%2016.778a8.135%208.135%200%200%201-3.894%201c-4.34%200-7.789-3.445-7.789-7.778s3.45-7.778%207.789-7.778c1.335%200%202.67.334%203.894%201%20.556.334%201.224.111%201.558-.444.334-.556.111-1.222-.445-1.556C13.463.444%2011.794%200%2010.014%200A9.965%209.965%200%200%200%200%2010c0%205.556%204.45%2010%2010.014%2010a9.94%209.94%200%200%200%205.007-1.333c.556-.334.667-1%20.445-1.556-.334-.444-1.002-.667-1.558-.333Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-coingecko: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.2%202a9.996%209.996%200%200%201%2010.014%2010.026c0%205.483-4.523%2010-10.092%209.974-5.385-.052-9.908-4.49-9.908-10%200-5.535%204.444-10.026%209.987-10ZM4.594%2017.222c0%20.104.052.156.105.235.392.548.836%201.07%201.359%201.514.235.21.47.418.732.6.732.47%201.49.914%202.327%201.202.68.235%201.385.418%202.091.496.55.052%201.124.078%201.673%200%20.314-.052.654-.052.968-.183.052.026-.026-.958%200-.958.653-.105.392-.896%201.02-1.157%202.039-.887%202.797-1.828%203.79-3.812.89-1.75%201.726-2.767%201.438-4.7-.261-1.853-1.882-2.428-3.137-3.785-1.673-1.906-1.908-2.455-4.444-2.611-1.125-.079-1.15.81-2.223%201.175-1.751.574-3.059.391-4.235%201.827C4.724%208.71%204.776%209.911%204.697%2012c-.026.522-.182%201.332-.104%201.854.157%201.175-1.02%201.801-.418%202.82.157.156.261.365.418.548Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.253%207.04c-.575-.105-1.15-.21-1.752-.183-.653.026-1.228.235-1.83.47-.705.26-1.359.626-1.882%201.174-.575.601-.889%201.332-1.02%202.168-.104.704-.13%201.41-.209%202.114-.13%201.515-.366%203.03-.993%204.413-.183-.157-.288-.392-.392-.575a8.801%208.801%200%200%201-1.15-3.315c-.079-.523-.131-1.019-.105-1.54.078-2.09.732-3.97%202.065-5.614C6.135%204.716%207.6%203.723%209.351%203.149a9.54%209.54%200%200%201%203.32-.444c2.51.157%204.654%201.175%206.353%203.029a9.16%209.16%200%200%201%202.301%204.83c.288%201.932%200%203.786-.889%205.535-.993%201.985-2.536%203.42-4.575%204.308a7.7%207.7%200%200%201-1.909.575c-.052%200-.078.078-.104.026-.157-.992.078-1.932.47-2.846.497-1.097%201.203-2.037%201.987-2.95.654-.758%201.412-1.463%202.144-2.168.418-.417.785-.835.994-1.383.366-.888.157-1.62-.628-2.194-.601-.443-1.307-.678-2.013-.887a26.36%2026.36%200%200%201-2.013-.731c-.13-.444-.444-.731-.863-.888-.549-.13-1.098-.078-1.673.078Zm8.55%205.56h.052c.104-.365.104-.757.104-1.148%200-.444-.052-.888-.13-1.332a7.48%207.48%200%200%200-1.962-3.76c-.627-.652-1.333-1.2-2.039-1.775-.627-.522-1.307-.914-2.091-1.123-.758-.182-1.49-.287-2.275-.156-.052%200-.104%200-.104.052s.052.052.104.052c1.15.209%202.249.575%203.32.992%201.046.418%201.935%201.019%202.589%201.958.444.653.863%201.332%201.202%202.063.445.992.785%202.01.994%203.055.105.418.183.757.235%201.123Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M10.894%207.927c.993%200%201.778.81%201.778%201.775%200%20.992-.81%201.776-1.804%201.802-.994%200-1.778-.81-1.778-1.802s.81-1.775%201.804-1.775Zm1.255%201.801c0-.705-.55-1.253-1.255-1.253-.706%200-1.255.548-1.255%201.253%200%20.68.55%201.254%201.229%201.254h.026c.68%200%201.229-.549%201.255-1.254Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.358%2013.41c.68.418%201.438.47%202.196.444a8.302%208.302%200%200%200%202.98-.705c.367-.157.733-.314%201.072-.522.027-.027.053-.053.105-.027-.026.079-.105.105-.183.157-1.02.679-2.144%201.097-3.346%201.332-.68.13-1.386.13-2.04-.105-.34-.13-.653-.34-.784-.574Zm-.104-6.37c.549-.158%201.124-.21%201.673%200%20.418.156.732.443.862.887-.784-.418-1.647-.679-2.535-.888Z%22%20fill%3D%22transparent%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.358%2013.41c.68.417%201.438.469%202.196.443a8.304%208.304%200%200%200%202.98-.705c.367-.157.733-.313%201.073-.522.026-.026.052-.052.104-.026-.026.078-.104.104-.183.156-1.02.68-2.144%201.097-3.346%201.332-.68.13-1.386.13-2.04-.104-.34-.131-.653-.34-.784-.575Zm4.942-1.54a.402.402%200%200%201-.393-.392c0-.21.157-.392.366-.392.21%200%20.392.157.418.365-.026.236-.183.418-.392.418Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.815%2012.523a.056.056%200%200%201-.052.052c0-.052.026-.078.052-.052Zm.078-.052-.078.052-.026-.026c.052-.026.078-.026.104-.026Z%22%20fill%3D%22transparent%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-coinmarketcap: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20.59%2014.774c.245-.016.482-.099.684-.238h.004c.197-.125.369-.288.511-.484.138-.662.211-1.349.211-2.052%200-5.523-4.477-10-10-10S2%206.477%202%2012c0%201.55.352%203.017.981%204.326l5.643-9.058c.733-1.118%201.486-1.178%201.989-1.03.76.22%201.161.96%201.191%202.195v5.356l2.712-4.388.02-.034c.457-.73%201.59-2.544%203.1-2.102.907.264%201.449%201.239%201.449%202.608v2.852c0%20.93.278%201.613.793%201.905.22.11.465.16.711.144Zm-.018%202.38a3.683%203.683%200%200%201-1.808-.442c-1.28-.717-2.009-2.17-2.009-3.987v-2.48c-.08.116-.17.25-.264.408l-3.013%204.877c-1.014%201.647-1.982%201.774-2.614%201.59-.633-.184-1.386-.813-1.386-2.758v-4.047L4.392%2018.49A9.978%209.978%200%200%200%2012%2022a9.995%209.995%200%200%200%208.572-4.847Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-defi-llama: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m8.074%2022%20.128-3.79a13.266%2013.266%200%200%201-5.491%201.181v.805a1.803%201.803%200%200%200%201.803%201.805h3.56Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.631%202h2.797a9.95%209.95%200%200%201%204.552%201.094%2013.202%2013.202%200%200%200-1.871%202.688.873.873%200%200%200-.633.03.942.942%200%200%200-1.806%200%20.922.922%200%200%200-1.09.287.913.913%200%200%200-.126.207c-.24-.328-.586-.533-.96-.754-.309-.183-.637-.377-.937-.661a.266.266%200%200%200-.406.02.534.534%200%200%200-.058.54c.323.762.72%201.305%201.075%201.787.114.156.224.305.325.454a.667.667%200%200%200%20.488.316%203.043%203.043%200%200%200-.417%201.13c-.458.124-.805.676-.805%201.341%200%20.59.276%201.096.66%201.286l-.217%206.446a13.266%2013.266%200%200%201-5.491%201.18V6.922A4.924%204.924%200%200%200%207.63%202Zm-.514%206.574a.457.457%200%200%200-.11-.345.446.446%200%200%200-.149-.11L5.591%207.55a.304.304%200%200%200-.304.524l1.127.814a.444.444%200%200%200%20.522-.003.456.456%200%200%200%20.125-.136.456.456%200%200%200%20.056-.175Zm-.11%207.395a.446.446%200%200%200%20.092-.16h-.002a.456.456%200%200%200-.038-.359.445.445%200%200%200-.646-.138l-1.128.812a.304.304%200%200%200%20.305.525l1.267-.57a.446.446%200%200%200%20.15-.11ZM4.33%2012.372l.484.166a.544.544%200%201%200%200-1.032l-.484.166a.37.37%200%200%200%200%20.7Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14.98%203.094A9.993%209.993%200%200%201%2020.422%2012a9.997%209.997%200%200%201-5.394%208.877l-.304-9.017v-.096a.403.403%200%200%200%20.065-.038c.352-.211.595-.692.595-1.247%200-.066-.003-.132-.01-.198-.061-.575-.382-1.032-.795-1.144a2.988%202.988%200%200%200-.409-1.13.666.666%200%200%200%20.496-.316c.101-.15.211-.3.326-.458.35-.481.745-1.022%201.066-1.768l.018-.042a.365.365%200%200%200-.044-.38.373.373%200%200%200-.566-.035c-.294.28-.607.457-.9.623-.34.194-.652.37-.874.674a.97.97%200%200%200-.583-.523c.51-.97%201.138-1.873%201.871-2.688Zm3.348%209.442.486-.166a.37.37%200%200%200%200-.7l-.486-.166a.545.545%200%201%200%200%201.032Zm-.708%204.122a.304.304%200%200%200%20.084-.536l-1.127-.813a.443.443%200%200%200-.645.139.443.443%200%200%200%20.202.628l1.268.57a.294.294%200%200%200%20.218.012ZM15.985%208.23a.448.448%200%200%200-.11.345.444.444%200%200%200%20.182.313.447.447%200%200%200%20.521.002l1.128-.814a.304.304%200%200%200-.304-.524l-1.268.57a.445.445%200%200%200-.15.108Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M6.19%205.48A4.924%204.924%200%200%200%207.63%202H4.514A1.803%201.803%200%200%200%202.71%203.803v3.119a4.92%204.92%200%200%200%203.479-1.443Zm6.286%205.224-.507.466a.314.314%200%200%200-.09.152c-.033.134-.099.397-.152.647a.152.152%200%200%201-.152.115.152.152%200%200%201-.152-.115l-.162-.647a.304.304%200%200%200-.09-.152l-.506-.466a.151.151%200%200%201-.033-.175.153.153%200%200%201%20.156-.086l.76.103h.042l.06-.007.7-.096a.153.153%200%200%201%20.153.085.152.152%200%200%201-.035.176m.76-.17a1.82%201.82%200%200%201%20.271-.927.608.608%200%200%200%20.05-.503l-.036.032a.888.888%200%200%201-1.086.009c0%20.313-.286.572-.66.618a.988.988%200%200%201-.118%200c-.427%200-.776-.28-.776-.626a.888.888%200%200%201-1.086-.009.65.65%200%200%201-.114-.12.596.596%200%200%200-.034.628c.147.277.224.585.223.898%200%20.327-.087.648-.253.93a.609.609%200%200%200%20.056.689c.437.525%201.135.961%201.803%201.02h.165c.773%200%201.38-.482%201.813-1.114a.599.599%200%200%200%20.026-.626%201.892%201.892%200%200%201-.228-.897%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-discord: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20stroke%3D%22currentColor%22%20stroke-width%3D%22.8%22%20d%3D%22M20.133%2010.988a22.045%2022.045%200%200%200-1.62-4.36.295.295%200%200%200-.1-.108%2012.246%2012.246%200%200%200-2.142-1.008C14.891%205.01%2014.238%205%2014.211%205a.281.281%200%200%200-.281.242l-.084.586a18.721%2018.721%200%200%200-3.696%200l-.084-.586A.282.282%200%200%200%209.785%205c-.027%200-.68%200-2.06.508-.743.267-1.459.607-2.136%201.012a.295.295%200%200%200-.1.108%2022.039%2022.039%200%200%200-1.62%204.36C3.142%2013.924%203%2015.393%203%2015.454a.281.281%200%200%200%20.069.21%207.763%207.763%200%200%200%202.56%201.792c.888.378%201.824.634%202.782.762a.281.281%200%200%200%20.27-.14l.76-1.301a14.77%2014.77%200%200%200%202.559.21%2014.83%2014.83%200%200%200%202.559-.213l.76%201.303a.28.28%200%200%200%20.241.141h.028a10.73%2010.73%200%200%200%202.782-.756%207.76%207.76%200%200%200%202.559-1.792.28.28%200%200%200%20.069-.21c.001-.067-.132-1.536-.866-4.473Zm-1.977%205.95c-.785.325-1.606.557-2.446.69l-.574-.983c.659-.175%202.028-.628%203.07-1.575a.283.283%200%200%200-.378-.422c-1.245%201.138-3.097%201.512-3.176%201.528h-.01c-.87.169-1.755.252-2.641.248a13.58%2013.58%200%200%201-2.641-.24h-.01c-.02%200-1.905-.37-3.178-1.528a.283.283%200%201%200-.378.422c1.042.948%202.412%201.406%203.07%201.575l-.574.984a10.7%2010.7%200%200%201-2.445-.692%207.345%207.345%200%200%201-2.271-1.567c.046-.41.236-1.838.844-4.253a22.03%2022.03%200%200%201%201.535-4.168%2012.397%2012.397%200%200%201%201.969-.916%208.627%208.627%200%200%201%201.628-.449l.05.336c-.563.14-1.948.543-3.045%201.34a.281.281%200%200%200%20.332.454c1.23-.894%202.925-1.268%203.07-1.3h.004A16.65%2016.65%200%200%201%2012%206.304c.682-.003%201.363.036%202.04.118.128.026%201.828.398%203.074%201.3a.281.281%200%201%200%20.332-.454c-1.097-.797-2.476-1.198-3.044-1.34l.049-.336a8.68%208.68%200%200%201%201.627.449c.681.247%201.34.554%201.968.916a21.975%2021.975%200%200%201%201.547%204.168c.603%202.415.793%203.843.844%204.253a7.345%207.345%200%200%201-2.282%201.56ZM9.36%2010.652c-.866%200-1.57.787-1.57%201.755%200%20.967.703%201.753%201.57%201.753.868%200%201.57-.786%201.57-1.753%200-.968-.705-1.755-1.57-1.755Zm0%202.953c-.562%200-1.008-.534-1.008-1.191s.451-1.193%201.008-1.193c.557%200%201.007.535%201.007%201.193s-.451%201.184-1.007%201.184v.007Zm3.71-1.198c0-.968.704-1.755%201.57-1.755.865%200%201.57.787%201.57%201.755%200%20.967-.705%201.753-1.57%201.753-.867%200-1.57-.786-1.57-1.753Zm.562.007c0%20.657.445%201.19%201.007%201.19V13.6c.557%200%201.008-.526%201.008-1.184%200-.658-.452-1.193-1.008-1.193-.555%200-1.007.536-1.007%201.193Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-discord-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M22%2012c0%205.523-4.477%2010-10%2010S2%2017.523%202%2012%206.477%202%2012%202s10%204.477%2010%2010Zm-8.293-4.547c1.539.117%202.84%201.137%202.84%201.137s1.453%202.11%201.71%206.25c-1.464%201.691-3.69%201.703-3.69%201.703l-.466-.621a5.672%205.672%200%200%200%202.454-1.652c-.922.699-2.309%201.422-4.547%201.422-2.239%200-3.63-.727-4.547-1.422a5.672%205.672%200%200%200%202.453%201.652l-.465.621s-2.226-.012-3.691-1.703c.25-4.14%201.703-6.25%201.703-6.25s1.226-.984%202.84-1.137l.136.278c-1.27.285-2.027.828-2.695%201.425%201.149-.586%202.285-1.136%204.262-1.136%201.976%200%203.113.55%204.262%201.136-.668-.597-1.305-1.086-2.696-1.425l.137-.278Zm-4.55%205.114c0%20.628.444%201.136.995%201.136.551%200%20.996-.508.996-1.136%200-.63-.445-1.137-.996-1.137-.55%200-.996.508-.996%201.137Zm3.694%200c0%20.628.446%201.136.997%201.136.546%200%20.996-.508.996-1.136%200-.63-.446-1.137-.996-1.137-.551%200-.997.508-.997%201.137Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-facebook-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M22.122%2012.061C22.122%206.505%2017.618%202%2012.062%202%206.504%202%202%206.505%202%2012.061c0%205.022%203.68%209.184%208.49%209.939v-7.03H7.933v-2.91h2.555V9.845c0-2.522%201.502-3.915%203.8-3.915%201.101%200%202.252.197%202.252.197v2.476h-1.268c-1.25%200-1.64.775-1.64%201.57v1.888h2.79l-.445%202.908h-2.345V22c4.81-.755%208.49-4.917%208.49-9.939Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-git: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.568%2013.835c1.948-.23%204.02-.939%204.02-4.304%200-.957-.336-1.737-.885-2.34.089-.23.372-1.097-.106-2.302%200%200-.709-.23-2.374.886a8.582%208.582%200%200%200-2.214-.32%208.37%208.37%200%200%200-2.215.32c-1.683-1.116-2.391-.886-2.391-.886-.478%201.205-.195%202.073-.106%202.303-.55.602-.886%201.382-.886%202.339%200%203.365%202.072%204.074%204.021%204.304-.248.213-.478.62-.567%201.187-.496.212-1.789.62-2.568-.726%200%200-.461-.833-1.329-.886%200%200-.868-.018-.07.531%200%200%20.584.266.974%201.276%200%200%20.53%201.683%202.975%201.151v1.506c0%20.23-.177.496-.62.425a8.751%208.751%200%200%201-5.97-8.308%208.747%208.747%200%200%201%208.752-8.75c4.818%200%208.75%203.914%208.733%208.75a8.768%208.768%200%200%201-5.97%208.308c-.443.089-.62-.177-.62-.425v-2.427c0-.815-.266-1.346-.584-1.612ZM20%2010.009C20%204.482%2015.518%200%2010.009%200%204.482%200%200%204.482%200%2010.009%200%2015.519%204.482%2020%2010.009%2020%2015.519%2020%2020%2015.518%2020%2010.009Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-github-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.005%202c-5.525%200-10%204.475-10%2010a9.994%209.994%200%200%200%206.837%209.488c.5.087.688-.213.688-.476%200-.237-.013-1.024-.013-1.862-2.512.463-3.162-.612-3.362-1.175-.113-.288-.6-1.175-1.025-1.413-.35-.187-.85-.65-.013-.662.788-.013%201.35.725%201.538%201.025.9%201.512%202.337%201.087%202.912.825.088-.65.35-1.087.638-1.337-2.225-.25-4.55-1.113-4.55-4.938%200-1.088.387-1.987%201.025-2.688-.1-.25-.45-1.275.1-2.65%200%200%20.837-.262%202.75%201.026a9.28%209.28%200%200%201%202.5-.338c.85%200%201.7.112%202.5.337%201.912-1.3%202.75-1.024%202.75-1.024.55%201.375.2%202.4.1%202.65.637.7%201.025%201.587%201.025%202.687%200%203.838-2.338%204.688-4.563%204.938.363.312.675.912.675%201.85%200%201.337-.012%202.412-.012%202.75%200%20.262.187.574.687.474A10.016%2010.016%200%200%200%2022.005%2012c0-5.525-4.475-10-10-10Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-linkedin-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%202c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010S2%2017.52%202%2012%206.48%202%2012%202ZM8.874%2017.62V9.81H6.277v7.81h2.597Zm9.36%200v-4.478c0-2.4-1.281-3.515-2.989-3.515-1.377%200-1.994.757-2.34%201.29V9.81H10.31c.034.732%200%207.809%200%207.809h2.596v-4.361c0-.234.016-.467.085-.634.188-.466.615-.95%201.332-.95.939%200%201.315.717%201.315%201.767v4.178h2.596ZM7.593%206.045c-.888%200-1.469.584-1.469%201.35%200%20.749.563%201.349%201.435%201.349h.016c.906%200%201.47-.6%201.47-1.35-.018-.765-.564-1.35-1.452-1.35Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-medium-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M12%202C6.478%202%202%206.477%202%2012s4.478%2010%2010%2010c5.523%200%2010-4.477%2010-10S17.523%202%2012%202Zm5.673%206.628h-.455c-.17%200-.409.244-.409.4v5.662c0%20.156.24.369.409.369h.455v1.344h-4.127v-1.344h.864V9.108h-.043l-2.017%207.295h-1.562L8.797%209.108h-.05v5.951h.863v1.344H6.155v-1.344h.442c.182%200%20.421-.213.421-.37v-5.66c0-.156-.239-.4-.421-.4h-.442V7.284h4.32l1.42%205.28h.038l1.432-5.28h4.308v1.344Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-opensea-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cmask%20id%3D%22opensea_filled_svg__a%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%222%22%20y%3D%222%22%20width%3D%2220%22%20height%3D%2220%22%3E%20%3Cpath%20d%3D%22M22%202H2v20h20V2Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23opensea_filled_svg__a)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12.037%202.035c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010-10-4.48-10-10%204.48-10%2010-10Zm2.732%207.245.053.068.075.098c.02.04.06.081.08.142.036.053.068.106.099.16l.026.045c.031.053.063.107.099.16.02.06.06.121.08.182.082.162.143.325.163.507.02.04.02.081.02.101.02.04.02.102.02.162.02.183%200%20.345-.02.527-.007.03-.015.058-.023.085l-.015.054a2.655%202.655%200%200%200-.023.084c-.02.061-.04.142-.08.223-.062.142-.143.284-.224.426-.02.04-.06.101-.101.162-.04.061-.081.102-.101.162-.041.061-.102.122-.142.183-.04.06-.081.121-.142.182-.061.081-.142.162-.203.243-.04.041-.081.102-.142.142-.04.04-.08.102-.142.142-.06.061-.121.122-.182.162l-.122.102c-.02.02-.04.02-.06.02h-.893v1.135h1.115c.244%200%20.487-.08.67-.243.06-.06.344-.304.688-.669.02-.02.02-.02.041-.02l3.081-.892c.122-.06.162-.02.162.04v.65c0%20.04-.02.06-.06.08-.203.081-.913.405-1.197.81-.75%201.035-1.317%202.514-2.574%202.514h-5.29a3.396%203.396%200%200%201-3.385-3.405v-.06c0-.041.04-.082.08-.082h2.98c.061%200%20.102.061.102.101-.02.183.02.386.101.568.182.365.547.568.933.568h1.459v-1.135h-1.44a.091.091%200%200%201-.08-.142.28.28%200%200%200%20.06-.082c.142-.202.325-.486.527-.83.142-.224.264-.487.365-.73.02-.04.04-.081.061-.142.02-.081.061-.162.081-.223l.061-.183c.04-.202.06-.425.06-.668%200-.082%200-.183-.02-.284%200-.045-.003-.089-.008-.133l-.003-.038a1.319%201.319%200%200%201-.009-.133c0-.081-.02-.183-.04-.264a2.866%202.866%200%200%200-.081-.405l-.02-.04c-.02-.082-.041-.183-.082-.264a7.58%207.58%200%200%200-.283-.811l-.122-.304a7.912%207.912%200%200%200-.182-.406c-.02-.06-.061-.1-.082-.162-.02-.06-.06-.121-.08-.182l-.061-.122-.183-.324c-.02-.04.02-.101.06-.081l1.116.304.142.04.162.041.06.02v-.669c0-.324.264-.588.568-.588.162%200%20.304.061.406.163a.566.566%200%200%201%20.162.405V7.5l.121.04s.02%200%20.02.02c.021.021.061.062.122.102.04.04.081.081.142.122.102.08.243.203.385.324.04.04.081.06.102.101.182.163.385.365.588.588.06.061.1.122.162.183.06.06.101.142.162.202l.075.098Zm-7.88%203.105.041-.06%202.635-4.116c.041-.06.122-.06.163.02.446.994.81%202.21.648%202.98-.08.325-.284.75-.527%201.136a.442.442%200%200%201-.101.162c-.02.02-.04.04-.081.04H6.95c-.061-.02-.102-.101-.061-.162Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-reddit-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%202c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010S2%2017.52%202%2012%206.48%202%2012%202Zm6.667%2010c0-.807-.655-1.462-1.462-1.462a1.4%201.4%200%200%200-1.006.41c-.994-.714-2.374-1.182-3.895-1.24l.667-3.123%202.163.456a1.042%201.042%200%200%200%202.082-.047c0-.573-.467-1.04-1.04-1.04-.41%200-.76.233-.925.584l-2.42-.515a.291.291%200%200%200-.2.035.285.285%200%200%200-.116.164l-.737%203.486c-1.556.046-2.948.502-3.953%201.24a1.476%201.476%200%200%200-1.006-.41%201.463%201.463%200%200%200-.597%202.795c-.023.14-.035.293-.035.445%200%202.245%202.608%204.058%205.836%204.058s5.837-1.813%205.837-4.058c0-.152-.012-.293-.035-.433.48-.234.842-.748.842-1.345Zm-4.188%203.79c-.713.713-2.07.76-2.467.76-.398%200-1.766-.059-2.468-.76a.275.275%200%200%201%200-.386.275.275%200%200%201%20.386%200c.444.444%201.403.608%202.093.608s1.638-.164%202.094-.609a.275.275%200%200%201%20.386%200%20.3.3%200%200%201-.024.386Zm-5.812-2.75c0-.572.467-1.04%201.04-1.04.574%200%201.042.468%201.042%201.04%200%20.574-.468%201.042-1.041%201.042a1.043%201.043%200%200%201-1.041-1.041Zm5.625%201.042a1.043%201.043%200%200%201-1.04-1.041c0-.573.467-1.041%201.04-1.041.574%200%201.041.468%201.041%201.04%200%20.574-.467%201.042-1.04%201.042Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-slack-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%202c5.52%200%2010%204.48%2010%2010s-4.48%2010-10%2010S2%2017.52%202%2012%206.48%202%2012%202Zm1.598%2013.51c.7%200%201.272.572%201.272%201.273%200%20.7-.572%201.272-1.272%201.272-.7%200-1.273-.572-1.273-1.272V15.51h1.273ZM9.13%2013.599c0-.7.572-1.273%201.272-1.273.7%200%201.273.572%201.273%201.273v3.185c0%20.7-.572%201.272-1.273%201.272-.7%200-1.272-.572-1.272-1.272v-3.186Zm-.64%200c0%20.7-.572%201.272-1.273%201.272-.7%200-1.272-.572-1.272-1.272%200-.7.572-1.273%201.272-1.273H8.49v1.273Zm8.293%201.272c.7%200%201.272-.572%201.272-1.272%200-.7-.572-1.273-1.272-1.273h-3.186c-.7%200-1.272.572-1.272%201.273%200%20.7.572%201.272%201.273%201.272h3.185Zm0-3.195c.7%200%201.272-.572%201.272-1.273%200-.7-.572-1.272-1.272-1.272-.7%200-1.273.572-1.273%201.272v1.273h1.273Zm-1.913-1.273c0%20.7-.572%201.273-1.272%201.273-.7%200-1.273-.572-1.273-1.273V7.217c0-.7.572-1.272%201.273-1.272.7%200%201.272.572%201.272%201.272v3.186Zm-4.467%201.273c.7%200%201.272-.572%201.272-1.273%200-.7-.572-1.272-1.273-1.272H7.217c-.7%200-1.272.572-1.272%201.272%200%20.7.572%201.273%201.272%201.273h3.186Zm1.272-3.186V7.217c0-.7-.572-1.272-1.273-1.272-.7%200-1.272.572-1.272%201.272%200%20.7.572%201.272%201.272%201.272h1.273Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-stats: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.193%2015.193h.702a.526.526%200%200%200%20.526-.527V5.193a.526.526%200%200%200-.526-.526h-.702a.526.526%200%200%200-.526.526v9.473a.526.526%200%200%200%20.526.527Zm5.614%200h-.702a.526.526%200%200%201-.526-.527V6.947a.526.526%200%200%201%20.526-.526h.702a.526.526%200%200%201%20.527.526v7.72a.526.526%200%200%201-.527.526Zm-2.456%200H9.65a.526.526%200%200%201-.526-.527V9.403a.526.526%200%200%201%20.526-.526h.702a.526.526%200%200%201%20.526.526v5.263a.526.526%200%200%201-.526.527Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%229%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-telega: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2225.200000000000003px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2020%22%3E%20%3Cpath%20d%3D%22M14.48%205.399%204.63%209.197c-.672.27-.668.645-.123.812l2.53.79%205.85-3.692c.277-.169.53-.078.322.106l-4.74%204.279h-.002.001L8.294%2014.1c.255%200%20.368-.117.512-.256l1.228-1.194%202.555%201.887c.471.26.81.126.927-.436l1.677-7.905c.171-.688-.263-1-.712-.796Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Ccircle%20cx%3D%2210.333%22%20cy%3D%2210%22%20r%3D%229%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-telegram-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M22.01%2012c0%205.523-4.477%2010-10%2010s-10-4.477-10-10%204.477-10%2010-10%2010%204.477%2010%2010Zm-9.73-3.495a525.959%20525.959%200%200%200-6.445%202.776c-.523.208-.797.412-.822.61-.042.337.38.47.953.65l.241.076c.564.184%201.323.398%201.718.407.358.008.757-.14%201.198-.443%203.01-2.031%204.564-3.058%204.661-3.08.069-.016.164-.036.229.022.064.057.058.166.051.195-.041.178-1.694%201.715-2.55%202.51-.267.248-.456.424-.494.464-.087.09-.175.175-.26.257-.524.505-.917.884.021%201.503.452.297.813.543%201.173.789.393.267.786.535%201.293.867.13.085.253.173.374.259.457.326.869.62%201.377.573.295-.027.6-.305.755-1.133.366-1.957%201.086-6.197%201.252-7.944a1.942%201.942%200%200%200-.019-.435.465.465%200%200%200-.157-.3c-.132-.107-.337-.13-.428-.128-.416.007-1.053.23-4.122%201.505Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-twitter: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2225px%22%20viewBox%3D%220%200%2025%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m4.044%204%206.95%209.292L4%2020.847h1.574l6.123-6.614%204.947%206.614H22l-7.34-9.815L21.168%204h-1.574l-5.639%206.092L9.4%204H4.044Zm2.315%201.16h2.46l10.866%2014.528h-2.46L6.358%205.159Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-social-twitter-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2225px%22%20viewBox%3D%220%200%2025%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13%202C7.477%202%203%206.477%203%2012s4.477%2010%2010%2010%2010-4.477%2010-10S18.523%202%2013%202Zm-1.338%2010.619L7.03%206h3.57l3.037%204.34L17.398%206h1.049l-4.34%205.009L19%2018h-3.57l-3.299-4.711L8.05%2018H7l4.662-5.381Zm-1.45-5.793h-1.64l7.244%2010.348h1.64L10.214%206.826Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-star-filled: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%3E%20%3Cpath%20d%3D%22M15.713%2020a.724.724%200%200%201-.354-.09L10%2016.956%204.64%2019.91a.728.728%200%200%201-.796-.061.788.788%200%200%201-.256-.342.827.827%200%200%201-.045-.432l1.024-6.252L.229%208.394a.802.802%200%200%201-.207-.377.829.829%200%200%201%20.015-.435.795.795%200%200%201%20.232-.361.741.741%200%200%201%20.379-.179L6.64%206.13%209.321.442a.78.78%200%200%201%20.28-.323.731.731%200%200%201%20.798%200%20.78.78%200%200%201%20.28.323l2.68%205.688%205.993.912a.74.74%200%200%201%20.379.178.8.8%200%200%201%20.232.361.828.828%200%200%201-.192.813l-4.338%204.428%201.024%206.252a.83.83%200%200%201-.167.644.762.762%200%200%201-.26.208.728.728%200%200%201-.319.074h.002Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-star-outline: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.711%2020a.724.724%200%200%201-.352-.09Zm.005%200a.73.73%200%200%200%20.314-.074.77.77%200%200%200%20.26-.208.806.806%200%200%200%20.167-.644l-1.024-6.252%204.338-4.428a.828.828%200%200%200%20.192-.813.796.796%200%200%200-.232-.36.74.74%200%200%200-.38-.179l-5.86-.892a.25.25%200%200%201-.19-.14L10.679.442A.78.78%200%200%200%2010.4.119a.732.732%200%200%200-.798%200%20.78.78%200%200%200-.28.323L6.699%206.01a.25.25%200%200%201-.188.14l-5.862.892a.741.741%200%200%200-.38.179.795.795%200%200%200-.231.36.829.829%200%200%200-.015.436.802.802%200%200%200%20.207.377l4.25%204.338a.25.25%200%200%201%20.068.215l-1.004%206.127a.827.827%200%200%200%20.045.432.788.788%200%200%200%20.256.342.728.728%200%200%200%20.796.061l5.24-2.886a.25.25%200%200%201%20.24%200l5.24%202.886m-9.354-3.497a.25.25%200%200%200%20.367.26L9.88%2014.74a.25.25%200%200%201%20.24%200l3.507%201.932a.25.25%200%200%200%20.367-.26l-.678-4.141a.25.25%200%200%201%20.068-.216l2.982-3.043a.25.25%200%200%200-.14-.423l-4.09-.622a.25.25%200%200%201-.189-.14l-1.72-3.653a.25.25%200%200%200-.453%200L8.053%207.826a.25.25%200%200%201-.189.141l-4.09.622a.25.25%200%200%200-.14.423l2.982%203.043a.25.25%200%200%201%20.068.216l-.678%204.14ZM15.716%2020h-.003Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-stats: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.615%205.192c0-.934.758-1.692%201.693-1.692h2.538c.935%200%201.692.758%201.692%201.692v18.616c0%20.934-.757%201.692-1.692%201.692h-2.538a1.692%201.692%200%200%201-1.693-1.692V5.192Zm4.231.339a.339.339%200%200%200-.338-.339h-1.862a.339.339%200%200%200-.338.339v17.938c0%20.187.151.339.338.339h1.862a.339.339%200%200%200%20.338-.339V5.531ZM4%2019.577c0-.935.758-1.692%201.692-1.692h2.539c.934%200%201.692.757%201.692%201.692v4.23c0%20.935-.758%201.693-1.692%201.693H5.692A1.692%201.692%200%200%201%204%2023.808v-4.231Zm4.23.338a.339.339%200%200%200-.338-.338H6.031a.339.339%200%200%200-.339.338v3.554a.34.34%200%200%200%20.339.339h1.861a.338.338%200%200%200%20.339-.339v-3.554Zm12.693-9.646c-.934%200-1.692.758-1.692%201.693v11.846c0%20.934.757%201.692%201.692%201.692h2.539c.934%200%201.692-.758%201.692-1.692V11.962c0-.935-.758-1.693-1.692-1.693h-2.539Zm2.2%201.693c.187%200%20.339.151.339.338v11.17a.338.338%200%200%201-.339.338h-1.861a.338.338%200%200%201-.339-.339V12.3c0-.187.152-.338.339-.338h1.861Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-status-error: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2010%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%2010A5%205%200%201%200%205%200a5%205%200%200%200%200%2010ZM3.567%202.683a.625.625%200%201%200-.884.884L4.116%205%202.683%206.433a.625.625%200%201%200%20.884.884L5%205.884l1.433%201.433a.625.625%200%201%200%20.884-.884L5.884%205l1.433-1.433a.625.625%200%201%200-.884-.884L5%204.116%203.567%202.683Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-status-pending: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2221.818181818181817px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010%2011%22%20fill%3D%22none%22%3E%20%3Ccircle%20cx%3D%225%22%20cy%3D%225.438%22%20r%3D%225%22%20fill%3D%22%23E2E8F0%22%2F%3E%20%3Ccircle%20cx%3D%225%22%20cy%3D%225.438%22%20r%3D%222.5%22%20fill%3D%22%234A5568%22%2F%3E%20%3Ccircle%20cx%3D%225%22%20cy%3D%225.438%22%20r%3D%222.5%22%20fill%3D%22%23000%22%20fill-opacity%3D%22.2%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-status-success: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2010%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%2010A5%205%200%201%200%205%200a5%205%200%200%200%200%2010Zm2.552-6.652a.625.625%200%200%200-1.083-.625L4.492%206.148l-1.34-.954a.625.625%200%200%200-.725%201.018l1.9%201.353a.625.625%200%200%200%20.903-.196l2.322-4.02Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-status-warning: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m17.667%2013.75-5.5-9.834c-.417-.833-1.25-1.25-2.167-1.25-.916%200-1.75.417-2.167%201.25l-5.5%209.834a2.656%202.656%200%200%200%200%202.5C2.75%2017%203.583%2017.5%204.5%2017.5h11c.917%200%201.667-.5%202.167-1.25.5-.75.416-1.667%200-2.5Zm-1.417%201.666c-.083.084-.25.417-.75.417h-11c-.417%200-.667-.25-.75-.417-.083-.166-.25-.416%200-.833l5.5-9.916c.25-.417.584-.417.75-.417.167%200%20.5%200%20.75.417l5.5%209.916c.167.417%200%20.75%200%20.833Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M10%207.5c-.5%200-.833.333-.833.833v2.5c0%20.5.333.834.833.834.5%200%20.834-.334.834-.834v-2.5c0-.5-.334-.833-.834-.833Zm0%206.667a.833.833%200%201%200%200-1.667.833.833%200%200%200%200%201.667Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-sun: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22m4.7%2014.167-.592.591a.833.833%200%200%200%200%201.175.833.833%200%200%200%201.175%200l.592-.591A.833.833%200%200%200%204.7%2014.167ZM4.167%2010a.833.833%200%200%200-.834-.833H2.5a.833.833%200%200%200%200%201.666h.833A.833.833%200%200%200%204.167%2010ZM10%204.167a.833.833%200%200%200%20.833-.834V2.5a.833.833%200%201%200-1.666%200v.833a.833.833%200%200%200%20.833.834ZM4.7%205.875a.833.833%200%200%200%201.175%200%20.833.833%200%200%200%200-1.175l-.592-.592a.833.833%200%200%200-1.175%201.175l.592.592Zm10%20.242a.833.833%200%200%200%20.583-.242l.592-.592a.835.835%200%200%200-.574-1.465.833.833%200%200%200-.601.29l-.533.592a.833.833%200%200%200%200%201.175.833.833%200%200%200%20.55.242H14.7Zm2.8%203.05h-.833a.833.833%200%200%200%200%201.666h.833a.833.833%200%200%200%200-1.666ZM10%2015.833a.834.834%200%200%200-.833.834v.833a.833.833%200%200%200%201.666%200v-.833a.833.833%200%200%200-.833-.834Zm5.3-1.666a.834.834%200%200%200-1.133%201.133l.591.592a.833.833%200%200%200%201.175%200%20.833.833%200%200%200%200-1.175l-.633-.55ZM10%205.417A4.583%204.583%200%201%200%2014.583%2010%204.592%204.592%200%200%200%2010%205.417Zm0%207.5a2.917%202.917%200%201%201%200-5.834%202.917%202.917%200%200%201%200%205.834Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-swap: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2.944%2010.007c0%20.58-.406.967-1.015.967-.609%200-1.015-.386-.913-.773%200-4.835%204.06-8.703%209.136-8.703h1.218c.102%200%20.204.025.305.049s.203.048.304.048c.305.097.711.193%201.117.29.09.043.178.066.259.088.103.027.192.051.249.106h.101c.153.096.305.169.457.241.152.073.305.145.457.242.082.052.156.097.225.138.188.114.337.204.486.345.101%200%20.203.097.304.194h.102c.203.097.507.387.71.58l-.304-1.644a1.007%201.007%200%200%201%20.812-1.16c.61-.097%201.117.29%201.218.773l.812%203.965a1.007%201.007%200%200%201-.812%201.16l-4.264.774h-.203c-.507%200-.913-.29-1.015-.774a1.006%201.006%200%200%201%20.812-1.16l1.828-.29-.203-.194a.913.913%200%200%201-.311-.277%201.259%201.259%200%200%200-.096-.11c-.05-.048-.101-.072-.152-.096-.05-.024-.101-.048-.152-.097a.534.534%200%200%200-.152-.096.534.534%200%200%201-.153-.097c-.609-.484-1.32-.774-2.03-.967a.373.373%200%200%201-.152-.048.366.366%200%200%200-.152-.049.783.783%200%200%201-.254-.048.783.783%200%200%200-.254-.048c-.203-.097-.305-.097-.508-.097h-.71c-3.96%200-7.107%202.997-7.107%206.768Zm14.112%200c0-.58.406-.966%201.015-.966.508%200%201.015.386.914.87%200%204.835-4.06%208.702-9.137%208.702H8.63c-.102%200-.203-.024-.305-.048a1.336%201.336%200%200%200-.304-.048c-.305-.097-.71-.194-1.117-.29a1.458%201.458%200%200%200-.258-.088c-.103-.028-.192-.052-.25-.106h-.101a4.445%204.445%200%200%200-.198-.116c-.234-.133-.455-.258-.614-.56-.305-.097-.508-.194-.71-.387-.102%200-.204-.097-.305-.194h-.102a4.366%204.366%200%200%200-.355-.29%204.347%204.347%200%200%201-.355-.29l.304%201.644A1.007%201.007%200%200%201%203.148%2019h-.203c-.508%200-.914-.29-1.015-.773l-.812-4.062c0-.193.101-.483.203-.676a.686.686%200%200%201%20.609-.387l.812-.194%203.35-.58c.61-.096%201.117.29%201.218.774a1.007%201.007%200%200%201-.812%201.16l-1.827.29.203.194c.101.096.304.29.507.386.102%200%20.203.097.305.194%200%20.06.039.082.092.114.033.02.072.042.11.08.61.386%201.32.773%202.031.966.051%200%20.102.024.153.048.05.025.101.049.152.049.101%200%20.178.024.254.048a.783.783%200%200%200%20.253.048c.203.097.305.097.508.097h.71c3.96%200%207.107-2.997%207.107-6.768Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-testnet: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2263.42857142857143px%22%20viewBox%3D%220%200%2037%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M6.467%205.14v.62H4v-.62h2.467ZM4.719%204h.731v4.537c0%20.207.03.362.09.465.062.101.14.17.236.205.097.033.2.05.307.05.08%200%20.146-.005.198-.013l.124-.025.149.657a1.529%201.529%200%200%201-.545.087c-.207%200-.41-.045-.608-.133a1.207%201.207%200%200%201-.49-.406c-.128-.182-.192-.412-.192-.688V4Zm4.793%206c-.459%200-.854-.101-1.187-.304a2.039%202.039%200%200%201-.766-.855c-.177-.368-.266-.796-.266-1.283%200-.488.089-.917.266-1.29.18-.373.43-.665.75-.873a2.016%202.016%200%200%201%201.129-.316c.247%200%20.492.04.734.123.242.083.462.217.66.403.198.184.356.428.474.732s.177.677.177%201.122v.31h-3.67v-.633h2.926c0-.268-.054-.508-.161-.719a1.214%201.214%200%200%200-.452-.499%201.267%201.267%200%200%200-.688-.182c-.292%200-.544.072-.757.216-.21.143-.373.329-.486.558-.114.23-.17.476-.17.738v.421c0%20.36.061.665.185.915.126.248.3.437.524.567.223.128.482.192.778.192.192%200%20.366-.027.52-.08a1.1%201.1%200%200%200%20.406-.249%201.12%201.12%200%200%200%20.264-.415l.707.199c-.075.24-.2.45-.375.632-.176.18-.393.32-.651.421-.258.1-.549.149-.871.149Zm6.455-3.793-.657.186a1.219%201.219%200%200%200-.182-.32.888.888%200%200%200-.323-.26%201.17%201.17%200%200%200-.524-.102c-.29%200-.534.067-.728.201-.192.132-.288.3-.288.505%200%20.182.066.326.198.431.133.106.34.193.62.264l.707.173c.425.103.743.261.951.474.209.211.313.483.313.815%200%20.273-.078.517-.235.732a1.562%201.562%200%200%201-.651.508%202.377%202.377%200%200%201-.973.186c-.486%200-.888-.105-1.206-.316-.318-.21-.52-.519-.604-.924l.694-.173c.066.256.191.448.375.576.186.128.429.192.728.192.341%200%20.612-.072.812-.217.203-.146.304-.322.304-.526a.554.554%200%200%200-.174-.416c-.115-.113-.293-.198-.533-.254l-.793-.186c-.436-.103-.756-.263-.96-.48a1.163%201.163%200%200%201-.304-.821c0-.269.075-.507.226-.713a1.54%201.54%200%200%201%20.623-.487c.264-.118.564-.176.899-.176.47%200%20.84.103%201.109.31.27.206.463.479.576.818Zm3.259-1.067v.62h-2.467v-.62h2.466ZM17.477%204h.73v4.537c0%20.207.03.362.09.465.063.101.141.17.236.205.098.033.2.05.307.05.08%200%20.147-.005.198-.013l.124-.025.15.657a1.528%201.528%200%200%201-.545.087%201.49%201.49%200%200%201-.609-.133%201.207%201.207%200%200%201-.49-.406c-.127-.182-.192-.412-.192-.688V4Zm3.58%203.037v2.864h-.731V5.14h.706v.743h.062a1.36%201.36%200%200%201%20.508-.582c.228-.15.521-.223.88-.223.323%200%20.605.066.847.198.241.13.43.328.564.595.134.264.201.6.201%201.004V9.9h-.731V6.926c0-.374-.097-.666-.291-.874-.195-.211-.461-.316-.8-.316-.233%200-.442.05-.626.151a1.087%201.087%200%200%200-.43.444c-.106.194-.159.43-.159.706ZM27.427%2010c-.459%200-.855-.101-1.187-.304a2.038%202.038%200%200%201-.766-.855c-.177-.368-.266-.796-.266-1.283%200-.488.089-.917.266-1.29.18-.373.43-.665.75-.873a2.013%202.013%200%200%201%201.128-.316c.248%200%20.493.04.735.123.241.083.462.217.66.403.198.184.356.428.474.732s.177.677.177%201.122v.31h-3.67v-.633h2.926c0-.268-.054-.508-.161-.719a1.214%201.214%200%200%200-.453-.499%201.267%201.267%200%200%200-.688-.182c-.291%200-.543.072-.756.216-.21.143-.373.329-.486.558a1.64%201.64%200%200%200-.17.738v.421c0%20.36.061.665.185.915.126.248.3.437.524.567.223.128.482.192.778.192.192%200%20.365-.027.52-.08.157-.056.293-.139.406-.249a1.12%201.12%200%200%200%20.264-.415l.706.199c-.074.24-.199.45-.375.632-.175.18-.392.32-.65.421a2.4%202.4%200%200%201-.871.149Zm5.153-4.86v.62h-2.466v-.62h2.467ZM30.834%204h.731v4.537c0%20.207.03.362.09.465.062.101.14.17.236.205.097.033.199.05.306.05.08%200%20.147-.005.199-.013l.124-.025.148.657a1.528%201.528%200%200%201-.546.087c-.206%200-.408-.045-.607-.133a1.207%201.207%200%200%201-.49-.406c-.127-.182-.191-.412-.191-.688V4Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Crect%20x%3D%22.2%22%20y%3D%22.2%22%20width%3D%2236.267%22%20height%3D%2213.6%22%20rx%3D%223.8%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.4%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-token: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20d%3D%22M10.466%2011.652c-1.382%200-2.697-.3-3.697-.848C5.63%2010.182%205%209.3%205%208.326c0-.974.628-1.854%201.77-2.478C7.768%205.301%209.081%205%2010.465%205c1.385%200%202.698.301%203.695.848%201.142.624%201.77%201.504%201.77%202.478%200%20.974-.626%201.856-1.77%202.478-.997.547-2.31.848-3.695.848Zm0-5.171c-1.123%200-2.212.243-2.986.666-.635.345-1%20.777-1%201.18%200%20.4.365.83%201%201.178.774.424%201.863.666%202.986.666%201.123%200%202.213-.242%202.987-.666.635-.345.999-.777.999-1.179s-.364-.832-1-1.179c-.771-.423-1.862-.666-2.986-.666Z%22%2F%3E%20%3Cpath%20d%3D%22M22.131%2014.976a.74.74%200%200%201-.484-1.3c.216-.187.473-.48.473-.82%200-.871-1.704-1.845-3.985-1.845-.967%200-1.907.177-2.647.5a.74.74%200%201%201-.592-1.357c.935-.408%202.056-.624%203.239-.624%201.384%200%202.697.3%203.696.848%201.142.624%201.77%201.504%201.77%202.478%200%20.713-.341%201.382-.987%201.94a.74.74%200%200%201-.483.18Zm-11.665%206.056c-1.382%200-2.697-.302-3.697-.849C5.629%2019.56%205%2018.679%205%2017.705V8.328a.74.74%200%200%201%201.48%200v9.377c0%20.402.365.832%201%201.179.774.424%201.862.667%202.986.667a7.128%207.128%200%200%200%202.205-.333c.111-.037.218-.076.316-.115a.74.74%200%200%201%20.556%201.372%205.529%205.529%200%200%201-.409.148%208.633%208.633%200%200%201-2.668.409Z%22%2F%3E%20%3Cpath%20d%3D%22M15.192%2014.456a.74.74%200%200%201-.74-.74v-5.39a.74.74%200%200%201%201.48%200v5.39a.74.74%200%200%201-.74.74Zm-4.726%204.174c-1.382%200-2.697-.3-3.697-.848C5.629%2017.159%205%2016.28%205%2015.305a.74.74%200%201%201%201.48%200c0%20.87%201.705%201.845%203.986%201.845a7.134%207.134%200%200%200%202.205-.332c.159-.053.31-.11.449-.172a.74.74%200%201%201%20.597%201.355%206.64%206.64%200%200%201-.581.223%208.624%208.624%200%200%201-2.67.407Z%22%2F%3E%20%3Cpath%20d%3D%22M10.466%2016.231c-1.382%200-2.697-.301-3.697-.848C5.629%2014.758%205%2013.879%205%2012.905a.74.74%200%201%201%201.48%200c0%20.871%201.705%201.845%203.986%201.845.941%200%201.829-.161%202.567-.466a.74.74%200%201%201%20.566%201.368c-.916.379-1.999.579-3.133.579Zm4.402-1.644a.74.74%200%200%201-.602-1.17.882.882%200%200%200%20.186-.512.74.74%200%201%201%201.48%200c0%20.482-.155.944-.46%201.373a.74.74%200%200%201-.604.31Z%22%2F%3E%20%3Cpath%20d%3D%22M10.466%2013.83c-1.382%200-2.697-.3-3.697-.848C5.63%2012.358%205%2011.478%205%2010.505a.74.74%200%201%201%201.48%200c0%20.401.365.83%201%201.178.774.424%201.863.667%202.986.667%201.123%200%202.215-.243%202.987-.667.635-.345.999-.777.999-1.178a.74.74%200%201%201%201.48%200c0%20.973-.627%201.853-1.769%202.477-.999.548-2.312.849-3.697.849Zm7.668%205.856c-1.52%200-2.96-.33-4.055-.93-1.236-.676-1.917-1.625-1.917-2.673s.681-1.997%201.917-2.674c1.096-.599%202.536-.929%204.055-.929%201.52%200%202.962.33%204.055.93%201.236.676%201.918%201.628%201.918%202.673%200%201.045-.681%201.996-1.918%202.674-1.095.599-2.535.929-4.055.929Zm0-5.725c-1.257%200-2.475.272-3.343.747-.73.4-1.148.9-1.148%201.375s.418.976%201.148%201.375c.868.473%202.085.747%203.343.747%201.26%200%202.476-.272%203.344-.747.73-.4%201.148-.9%201.148-1.375s-.42-.976-1.148-1.375c-.868-.475-2.085-.747-3.344-.747Z%22%2F%3E%20%3Cpath%20d%3D%22M18.134%2025c-1.52%200-2.96-.33-4.055-.93-1.236-.675-1.917-1.625-1.917-2.673v-5.314a.74.74%200%200%201%201.481%200v5.314c0%20.475.418.976%201.148%201.375.868.475%202.086.748%203.343.748%201.258%200%202.476-.273%203.344-.748.728-.398%201.148-.9%201.148-1.375v-5.314a.74.74%200%200%201%201.48%200v5.314c0%201.048-.68%201.998-1.917%202.674-1.095.6-2.535.93-4.055.93Z%22%2F%3E%20%3Cpath%20d%3D%22M18.134%2022.343c-1.52%200-2.96-.33-4.055-.93-1.236-.676-1.917-1.626-1.917-2.673a.74.74%200%201%201%201.481%200c0%20.474.418.976%201.148%201.374.868.476%202.086.748%203.343.748%201.258%200%202.476-.272%203.344-.748.728-.398%201.148-.9%201.148-1.374a.74.74%200%201%201%201.48%200c0%201.047-.68%201.997-1.917%202.674-1.095.599-2.535.929-4.055.929Zm4.726-6.673a.74.74%200%200%201-.74-.741v-2.073a.74.74%200%201%201%201.48%200v2.073a.74.74%200%200%201-.74.74Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-token-placeholder: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M7.224%208.076V6.048h9.557v2.028H13.22v9.608h-2.432V8.076H7.224Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-token-transfers: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22m6.134%2010.067%203.722-3.828a.97.97%200%200%201%201.337.06c.177.182.283.428.292.69a1.05%201.05%200%200%201-.234.704L9.243%209.765h14.371c.261%200%20.513.107.7.299s.294.454.294.73c0%20.274-.107.537-.294.729a.98.98%200%200%201-.7.299H6.831a.97.97%200%200%201-.55-.17%201%201%200%200%201-.368-.46%201.06%201.06%200%200%201%20.22-1.126m18.723%206a.965.965%200%200%201%20.55.17c.163.111.291.27.368.459a1.06%201.06%200%200%201-.22%201.125l-3.737%203.842-.006.008a1%201%200%200%201-.323.255.97.97%200%200%201-1.13-.197q-.146-.152-.224-.353a1.06%201.06%200%200%201%20.281-1.16l.007-.007%202.022-2.086h-5.882c.104-.685.184-1.404%200-2.073z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M10%2019.513c-1.272%200-2.48-.276-3.395-.778C5.57%2018.169%205%2017.374%205%2016.497c0-.878.57-1.672%201.605-2.239.917-.502%202.123-.778%203.395-.778s2.48.276%203.395.778C14.43%2014.825%2015%2015.622%2015%2016.497s-.57%201.671-1.605%202.238c-.917.502-2.123.778-3.395.778m0-4.793c-1.052%200-2.073.228-2.8.626-.61.334-.96.753-.96%201.15%200%20.398.35.818.96%201.151.727.397%201.746.626%202.8.626s2.073-.228%202.8-.626c.61-.333.96-.753.96-1.15%200-.398-.35-.817-.96-1.151-.727-.398-1.746-.626-2.8-.626%22%2F%3E%20%3Cpath%20stroke%3D%22currentColor%22%20stroke-width%3D%22.3%22%20d%3D%22M10%2019.513c-1.272%200-2.48-.276-3.395-.778C5.57%2018.169%205%2017.374%205%2016.497c0-.878.57-1.672%201.605-2.239.917-.502%202.123-.778%203.395-.778s2.48.276%203.395.778C14.43%2014.825%2015%2015.622%2015%2016.497s-.57%201.671-1.605%202.238c-.917.502-2.123.778-3.395.778Zm0-4.793c-1.052%200-2.073.228-2.8.626-.61.334-.96.753-.96%201.15%200%20.398.35.818.96%201.151.727.397%201.746.626%202.8.626s2.073-.228%202.8-.626c.61-.333.96-.753.96-1.15%200-.398-.35-.817-.96-1.151-.727-.398-1.746-.626-2.8-.626Z%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M10%2023.962c-1.272%200-2.48-.276-3.395-.778C5.57%2022.618%205%2021.823%205%2020.946v-4.45a.62.62%200%200%201%201.24%200v4.45c0%20.397.35.817.96%201.151.727.397%201.748.626%202.8.626%201.053%200%202.073-.229%202.8-.626.61-.334.96-.754.96-1.151v-4.45a.62.62%200%200%201%201.24%200v4.45c0%20.877-.57%201.672-1.605%202.238-.917.502-2.123.778-3.395.778%22%2F%3E%20%3Cpath%20stroke%3D%22currentColor%22%20stroke-width%3D%22.3%22%20d%3D%22M10%2023.962c-1.272%200-2.48-.276-3.395-.778C5.57%2022.618%205%2021.823%205%2020.946v-4.45a.62.62%200%200%201%201.24%200v4.45c0%20.397.35.817.96%201.151.727.397%201.748.626%202.8.626%201.053%200%202.073-.229%202.8-.626.61-.334.96-.754.96-1.151v-4.45a.62.62%200%200%201%201.24%200v4.45c0%20.877-.57%201.672-1.605%202.238-.917.502-2.123.778-3.395.778Z%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M10%2021.738c-1.272%200-2.48-.277-3.395-.778C5.57%2020.393%205%2019.598%205%2018.72a.62.62%200%201%201%201.24%200c0%20.397.35.817.96%201.151.727.398%201.748.626%202.8.626%201.053%200%202.073-.228%202.8-.626.61-.334.96-.754.96-1.15a.62.62%200%201%201%201.24%200c0%20.876-.57%201.671-1.605%202.238-.917.501-2.123.778-3.395.778%22%2F%3E%20%3Cpath%20stroke%3D%22currentColor%22%20stroke-width%3D%22.3%22%20d%3D%22M10%2021.738c-1.272%200-2.48-.277-3.395-.778C5.57%2020.393%205%2019.598%205%2018.72a.62.62%200%201%201%201.24%200c0%20.397.35.817.96%201.151.727.398%201.748.626%202.8.626%201.053%200%202.073-.228%202.8-.626.61-.334.96-.754.96-1.15a.62.62%200%201%201%201.24%200c0%20.876-.57%201.671-1.605%202.238-.917.501-2.123.778-3.395.778Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-tokens: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2225.5px%22%20fill%3D%22currentColor%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017%2016%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.281%200a3.636%203.636%200%201%200%200%207.273%203.636%203.636%200%200%200%200-7.273ZM2.099%203.636a2.182%202.182%200%201%201%204.364%200%202.182%202.182%200%200%201-4.364%200ZM13.01%200a3.636%203.636%200%201%200%200%207.273%203.636%203.636%200%200%200%200-7.273Zm-2.183%203.636a2.182%202.182%200%201%201%204.364%200%202.182%202.182%200%200%201-4.364%200ZM.646%2012.364a3.636%203.636%200%201%201%207.272%200%203.636%203.636%200%200%201-7.272%200Zm3.636-2.182a2.182%202.182%200%201%200%200%204.363%202.182%202.182%200%200%200%200-4.363Zm8.727-1.455a3.636%203.636%200%201%200%200%207.273%203.636%203.636%200%200%200%200-7.273Zm-2.181%203.637a2.182%202.182%200%201%201%204.363%200%202.182%202.182%200%200%201-4.364%200Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-top-accounts: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23top-accounts_svg__a)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M7.585%202.973a3.412%203.412%200%200%200-3.412%203.412v17.23a3.412%203.412%200%200%200%203.412%203.412h17.23a.95.95%200%200%200%200-1.9H7.585a1.512%201.512%200%201%201%200-3.023h17.23a.95.95%200%200%200%20.934-1.126.954.954%200%200%200%20.016-.176V4.662c0-.933-.756-1.689-1.688-1.689H7.585ZM6.073%206.385c0-.835.677-1.512%201.512-1.512h16.28v15.33H7.585a3.4%203.4%200%200%200-1.512.353V6.385Zm8.897%201.4a3.013%203.013%200%201%200%200%206.026%203.013%203.013%200%200%200%200-6.026Zm-1.024%203.013a1.024%201.024%200%201%201%202.048%200%201.024%201.024%200%200%201-2.048%200Zm1.025%203.097c-2.316%200-4.3%201.303-5.319%203.243a.446.446%200%200%200%20.395.654h1.281a.446.446%200%200%200%20.366-.19%203.972%203.972%200%200%201%203.277-1.718c1.33%200%202.52.685%203.268%201.723a.446.446%200%200%200%20.362.185h1.292a.446.446%200%200%200%20.393-.659c-1.01-1.866-2.983-3.238-5.315-3.238Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22top-accounts_svg__a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20transform%3D%22translate(3%203)%22%20d%3D%22M0%200h24v24H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-transactions: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M23.433%2012.64a1.212%201.212%200%200%201-.857.354H6.212a1.212%201.212%200%200%201-1.12-.745%201.212%201.212%200%200%201%20.266-1.321L8.994%207.29A1.212%201.212%200%200%201%2010.704%209L9.14%2010.57h13.436a1.212%201.212%200%200%201%20.857%202.068ZM7.424%2017.236h16.363a1.213%201.213%200%200%201%201.121.745%201.212%201.212%200%200%201-.266%201.321l-3.636%203.637a1.213%201.213%200%201%201-1.71-1.71l1.564-1.569H7.424a1.212%201.212%200%200%201%200-2.424Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-transactions-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.77%207.794H.987a.97.97%200%200%201-.549-.17%201.009%201.009%200%200%201-.364-.453%201.041%201.041%200%200%201%20.218-1.106l3.722-3.827a.97.97%200%200%201%201.333.06%201.033%201.033%200%200%201%20.058%201.37L3.371%205.764H17.77c.262%200%20.513.107.698.297a1.031%201.031%200%200%201%200%201.435.973.973%200%200%201-.698.297ZM2.23%2012.066h16.783c.195%200%20.386.059.549.17.162.11.289.269.364.454a1.042%201.042%200%200%201-.218%201.106l-3.737%203.842-.006.007a.99.99%200%200%201-.711.354.963.963%200%200%201-.736-.296%201.017%201.017%200%200%201-.289-.757%201.04%201.04%200%200%201%20.345-.731l.007-.007%202.047-2.112H2.23a.973.973%200%200%201-.698-.298%201.03%201.03%200%200%201-.29-.717c0-.27.105-.527.29-.718a.974.974%200%200%201%20.698-.297Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-txn-batches: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M14.806%2021.313H4.582A.583.583%200%200%201%204%2020.731V6.179c0-.322.261-.583.582-.583h2.654V3.27c0-.321.26-.582.582-.582h7.313c.007%200%20.013.002.02.004.005.001.01.003.017.003a.558.558%200%200%201%20.153.031l.02.006a.575.575%200%200%201%20.194.118l4.285%204.11-.002.002a.58.58%200%200%201%20.181.419v9.064a1.96%201.96%200%200%201-1.958%201.959h-1.277v.95a1.96%201.96%200%200%201-1.96%201.959ZM18.31%206.798l-2.598-2.506v1.713c0%20.437.356.793.793.793h1.805Zm-3.42-3.289H8.058v14.072h10.327a.794.794%200%200%200%20.793-.793V7.62h-2.671c-1.08%200-1.616-.535-1.616-1.615V3.509ZM7.236%206.42H4.822v14.07H15.15c.437%200%20.793-.7.793-1.136v-.951H7.818a.582.582%200%200%201-.582-.583V6.42Zm9.482%204.532a.39.39%200%201%200%200-.78h-5.12l.502-.504a.39.39%200%200%200-.55-.549l-1.168%201.169a.39.39%200%200%200%20.059.599.39.39%200%200%200%20.216.065h6.06Zm-.012%201.363h-6.061a.39.39%200%200%200%200%20.779h5.12l-.502.504a.39.39%200%201%200%20.549.55l1.168-1.17a.39.39%200%200%200-.058-.598.39.39%200%200%200-.216-.065Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.236%205.596v.25h.25v-.25h-.25Zm7.915-2.905-.07.24.07-.24Zm.017.003.014-.25-.014.25Zm.153.031.085-.235-.003-.001-.082.236Zm.02.006.072-.239-.072.24Zm.031.012.104-.228h-.001l-.103.228Zm.162.106.173-.18-.173.18Zm4.287%204.111.177.177.18-.18-.184-.177-.173.18Zm-.002.002-.176-.177-.18.18.183.177.173-.18Zm-3.054%2011.442v-.25h-.25v.25h.25ZM15.713%204.292l.174-.18-.424-.408v.588h.25Zm2.598%202.506v.25h.62l-.446-.43-.174.18ZM8.058%203.51v-.25h-.25v.25h.25Zm6.833%200h.25v-.25h-.25v.25ZM8.058%2017.581h-.25v.25h.25v-.25Zm11.12-9.96h.25v-.25h-.25v.25ZM4.822%206.418v-.25h-.25v.25h.25Zm2.414%200h.25v-.25h-.25v.25ZM4.822%2020.49h-.25v.25h.25v-.25Zm11.12-2.087h.25v-.25h-.25v.25Zm1.051-7.567-.177-.177.177.177Zm0-.551-.177.177.177-.177Zm-5.396-.114-.177-.177-.425.427h.602v-.25Zm.503-.505.177.177.007-.007.006-.007-.19-.163Zm.093-.268.25-.01-.25.01Zm-.114-.26.177-.177-.177.177Zm-.26-.114.01-.25-.01.25Zm-.268.093-.163-.19-.007.007-.007.007.177.176Zm-1.169%201.169.177.177-.177-.177Zm-.107.199.245.05-.245-.05Zm.022.225-.232.095.001.001.23-.096Zm.143.175.139-.209-.139.209Zm.217.065v-.25.25Zm6.049%201.363v.25-.25Zm-6.337.114.177.177-.177-.177Zm0%20.55.177-.176-.177.177Zm5.396.115.177.176.425-.426h-.602v.25Zm-.502.504.162.19.008-.007.007-.007-.177-.176Zm-.098.126.225.11-.225-.11Zm-.038.155-.25-.01.25.01Zm.026.157.233-.091-.233.09Zm.088.133-.177.177.177-.177Zm.29.114-.01-.25.01.25Zm.154-.039.11.225-.11-.225Zm.127-.097-.177-.177-.007.007-.006.007.19.163Zm1.168-1.168-.176-.178v.001l.176.177Zm.086-.425.23-.095v-.001l-.23.096Zm-.144-.174-.139.208.139-.208Zm-12.34%209.184h10.224v-.5H4.582v.5Zm-.832-.832c0%20.46.373.832.832.832v-.5a.333.333%200%200%201-.332-.332h-.5Zm0-14.552V20.73h.5V6.179h-.5Zm.832-.833a.833.833%200%200%200-.832.833h.5c0-.184.149-.333.332-.333v-.5Zm2.654%200H4.582v.5h2.654v-.5Zm-.25-2.077v2.327h.5V3.27h-.5Zm.832-.832a.832.832%200%200%200-.832.832h.5c0-.183.148-.332.332-.332v-.5Zm7.313%200H7.818v.5h7.313v-.5Zm.09.014c-.002%200-.041-.014-.09-.014v.5a.202.202%200%200%201-.042-.004c-.007-.002-.013-.004-.009-.002l.14-.48Zm-.04-.006a.2.2%200%200%201%20.034.004l.006.002-.14.48s.034.01.073.013l.027-.5Zm.222.044a.808.808%200%200%200-.22-.044l-.03.499a.307.307%200%200%201%20.085.017l.165-.472Zm.01.003a2.077%202.077%200%200%201-.007-.002s-.001%200%200%200l-.17.47.032.01.145-.478Zm.062.022a.443.443%200%200%200-.062-.022l-.145.479a.198.198%200%200%201%20.008.002l-.006-.002.205-.457Zm.232.154a.823.823%200%200%200-.231-.153l-.208.455c.041.018.07.038.093.06l.346-.362Zm4.287%204.112-4.287-4.111-.346.36%204.287%204.112.346-.361Zm.002.359.002-.002-.354-.354-.001.002.353.354Zm.254.242a.83.83%200%200%200-.257-.6l-.347.361a.33.33%200%200%201%20.104.239h.5Zm0%209.064V7.381h-.5v9.064h.5Zm-2.208%202.209a2.21%202.21%200%200%200%202.208-2.209h-.5a1.71%201.71%200%200%201-1.708%201.709v.5Zm-1.277%200h1.277v-.5h-1.277v.5Zm.25.7v-.95h-.5v.95h.5Zm-2.21%202.209a2.21%202.21%200%200%200%202.21-2.208h-.5a1.71%201.71%200%200%201-1.71%201.708v.5Zm.735-17.09%202.598%202.505.347-.36-2.598-2.506-.348.36Zm.423%201.532V4.292h-.5v1.713h.5Zm.543.543a.544.544%200%200%201-.543-.543h-.5c0%20.575.468%201.043%201.043%201.043v-.5Zm1.805%200h-1.805v.5h1.805v-.5ZM8.058%203.76h6.833v-.5H8.058v.5Zm.25%2013.822V3.51h-.5v14.072h.5Zm10.077-.25H8.058v.5h10.327v-.5Zm.543-.543c0%20.3-.244.543-.543.543v.5c.575%200%201.043-.468%201.043-1.043h-.5Zm0-9.168v9.168h.5V7.62h-.5Zm-2.421.25h2.67v-.5h-2.67v.5ZM14.64%206.005c0%20.578.143%201.057.476%201.39.333.332.812.475%201.39.475v-.5c-.502%200-.831-.124-1.037-.33-.205-.205-.33-.533-.33-1.035h-.5Zm0-2.496v2.496h.5V3.509h-.5ZM4.822%206.67h2.414v-.5H4.822v.5Zm.25%2013.822V6.419h-.5V20.49h.5Zm10.077-.25H4.822v.5h10.326v-.5Zm.543-.886c0%20.162-.07.401-.195.599-.13.21-.264.287-.348.287v.5c.352%200%20.616-.272.772-.522.164-.26.27-.59.27-.864h-.5Zm0-.951v.95h.5v-.95h-.5Zm-7.874.25h8.124v-.5H7.818v.5Zm-.832-.833c0%20.46.372.833.832.833v-.5a.332.332%200%200%201-.332-.333h-.5Zm0-11.402v11.4h.5V6.42h-.5Zm9.83%204.24a.14.14%200%200%201-.098.042v.5a.64.64%200%200%200%20.452-.188l-.354-.353Zm.041-.098a.14.14%200%200%201-.04.099l.353.353a.64.64%200%200%200%20.187-.452h-.5Zm-.04-.098a.14.14%200%200%201%20.04.098h.5a.64.64%200%200%200-.187-.452l-.354.354Zm-.1-.041a.14.14%200%200%201%20.1.04l.353-.353a.64.64%200%200%200-.452-.187v.5Zm-5.12%200h5.12v-.5h-5.12v.5Zm.326-.931-.503.504.355.353.502-.504-.354-.353Zm.02-.082a.14.14%200%200%201-.033.096l.38.325a.64.64%200%200%200%20.153-.44l-.5.019Zm-.04-.093a.14.14%200%200%201%20.04.093l.5-.02a.64.64%200%200%200-.187-.427l-.353.354Zm-.094-.041a.14.14%200%200%201%20.094.04l.353-.353a.64.64%200%200%200-.427-.187l-.02.5Zm-.096.033a.14.14%200%200%201%20.096-.033l.02-.5a.64.64%200%200%200-.44.153l.324.38Zm-1.154%201.155%201.168-1.168-.353-.353-1.168%201.168.353.354Zm-.039.072a.139.139%200%200%201%20.039-.071l-.353-.355a.64.64%200%200%200-.176.328l.49.098Zm.008.081a.139.139%200%200%201-.008-.08l-.49-.1a.64.64%200%200%200%20.036.37l.462-.19Zm.05.061a.14.14%200%200%201-.05-.062l-.462.192c.049.117.13.217.236.287l.277-.417Zm.078.024a.14.14%200%200%201-.077-.024l-.277.417a.64.64%200%200%200%20.356.107l-.002-.5Zm6.062%200h-6.061v.5h6.06v-.5Zm-6.073%201.863h6.06v-.5h-6.06v.5Zm-.099.04a.14.14%200%200%201%20.099-.04v-.5a.64.64%200%200%200-.452.187l.353.354Zm-.04.1a.14.14%200%200%201%20.04-.1l-.353-.353a.639.639%200%200%200-.188.452h.5Zm.04.098a.14.14%200%200%201-.04-.099h-.5c0%20.17.067.333.187.452l.353-.353Zm.099.04a.14.14%200%200%201-.099-.04l-.353.353a.64.64%200%200%200%20.452.188v-.5Zm5.12%200h-5.12v.5h5.12v-.5Zm-.325.931.502-.504-.354-.353-.502.505.354.352Zm-.05.06a.138.138%200%200%201%20.035-.046l-.325-.38a.639.639%200%200%200-.16.207l.45.218Zm-.014.054a.14.14%200%200%201%20.014-.055l-.45-.218a.64.64%200%200%200-.063.254l.5.02Zm.01.057a.139.139%200%200%201-.01-.057l-.5-.019a.64.64%200%200%200%20.045.258l.465-.182Zm.031.047a.139.139%200%200%201-.03-.047l-.466.182a.64.64%200%200%200%20.143.219l.353-.354Zm.048.032a.139.139%200%200%201-.048-.032l-.353.354a.64.64%200%200%200%20.219.143l.182-.465Zm.056.01a.139.139%200%200%201-.056-.01l-.182.465a.64.64%200%200%200%20.258.044l-.02-.5Zm.056-.015a.138.138%200%200%201-.056.014l.02.5a.64.64%200%200%200%20.253-.064l-.217-.45Zm.045-.035a.138.138%200%200%201-.045.035l.217.45a.64.64%200%200%200%20.208-.16l-.38-.325Zm1.181-1.182-1.168%201.168.354.354%201.168-1.168-.354-.354Zm.04-.072a.139.139%200%200%201-.04.071l.353.355a.64.64%200%200%200%20.176-.327l-.49-.099Zm-.009-.08a.14.14%200%200%201%20.008.08l.49.099a.64.64%200%200%200-.035-.37l-.463.19Zm-.05-.062a.14.14%200%200%201%20.051.063l.461-.193a.64.64%200%200%200-.236-.286l-.276.416Zm-.078-.023a.14.14%200%200%201%20.078.023l.276-.416a.639.639%200%200%200-.355-.107l.001.5Z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-txn-batches-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2221.818181818181817px%22%20viewBox%3D%220%200%2020%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M13.013%2021H2.035a.626.626%200%200%201-.625-.625V4.749c0-.345.28-.625.625-.625h2.85V1.625c0-.345.279-.625.624-.625h7.853c.008%200%20.014.002.021.004l.018.004a.6.6%200%200%201%20.186.04.616.616%200%200%201%20.208.126l4.603%204.414-.002.002a.622.622%200%200%201%20.194.45v9.733c0%201.16-.943%202.103-2.102%202.103h-1.372v1.021c0%201.16-.944%202.103-2.103%202.103Zm3.764-15.586-2.79-2.69v1.838c0%20.47.382.852.852.852h1.938Zm-3.673-3.531H5.767v15.11h11.089a.852.852%200%200%200%20.851-.852V6.297H14.84c-1.16%200-1.735-.575-1.735-1.735v-2.68Zm-8.22%203.124H2.293v15.11H13.38c.47%200%20.852-.75.852-1.22v-1.02H5.509a.625.625%200%200%201-.625-.626V5.007Zm10.182%204.866a.418.418%200%201%200%200-.836H9.568l.54-.542a.418.418%200%200%200-.302-.69c-.105-.004-.226-.068-.306%200L8.172%209.103c-.06.058-.007.191-.024.272a.418.418%200%200%200%20.178.43c.069.045.137.157.22.157l6.52-.088Zm-.013%201.377H8.545c-.11%200-.217.05-.295.129-.079.078-.123.265-.123.376a.418.418%200%200%200%20.418.418h5.498l-.54.542a.417.417%200%200%200%20.12.707.415.415%200%200%200%20.47-.118l1.347-1.218c.059-.058.007-.169.023-.25a.417.417%200%200%200-.178-.43c-.068-.045-.15-.156-.232-.156Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M4.784%201.625c0-.4.325-.725.725-.725h7.853c.023%200%20.042.006.048.008h.001a.705.705%200%200%201%20.205.044h.002l.044.016a.72.72%200%200%201%20.202.134l4.677%204.485-.007.007a.717.717%200%200%201%20.156.446v9.733a2.205%202.205%200%200%201-2.202%202.203h-1.272v.921a2.205%202.205%200%200%201-2.203%202.203H2.035a.726.726%200%200%201-.725-.725V4.749c0-.4.325-.725.725-.725h2.75V1.625ZM18.255%205.59l-4.53-4.344a.518.518%200%200%200-.167-.103l-.026-.008a.492.492%200%200%200-.136-.027m4.86%204.482-.003.002.074.07c.1.097.163.23.163.378v9.733a2.005%202.005%200%200%201-2.002%202.003h-1.472v1.121a2.005%202.005%200%200%201-2.003%202.003H2.035a.526.526%200%200%201-.525-.525V4.749c0-.29.235-.525.525-.525h2.95V1.625c0-.29.234-.525.524-.525h7.846m-7.688.683h7.537v2.78c0%20.564.14.968.403%201.231.264.263.668.403%201.232.403h2.968v9.944a.953.953%200%200%201-.951.952H5.667V1.783Zm.2.2v14.91h10.989a.753.753%200%200%200%20.751-.752V6.397H14.84c-.595%200-1.059-.147-1.373-.462-.314-.314-.462-.778-.462-1.373v-2.58H5.867Zm8.02.505%203.138%203.026h-2.186a.953.953%200%200%201-.952-.952V2.488Zm.2.471v1.603c0%20.415.337.752.752.752h1.69L14.087%202.96ZM2.193%204.907h2.791V17.25c0%20.29.235.525.525.525h8.824v1.121c0%20.257-.103.58-.265.84-.16.254-.399.48-.687.48H2.193V4.907Zm.2.2v14.91H13.38c.18%200%20.368-.148.517-.387.146-.234.235-.52.235-.733v-.92H5.509a.725.725%200%200%201-.725-.726V5.107H2.393Zm7.193%202.872L8.334%209.231a.32.32%200%200%200-.07.347.318.318%200%200%200%20.294.195h6.508a.318.318%200%200%200%200-.636H9.327l.707-.71a.319.319%200%200%200-.448-.448Zm-.133-.15a.518.518%200%200%201%20.73.731l-.004.006-.37.37h5.257a.518.518%200%200%201%200%201.037H8.56m-.366-.884a.518.518%200%200%200%20.366.884m.894-2.143-1.26%201.26%201.26-1.26Zm-.908%203.607a.318.318%200%201%200%200%20.636h5.739l-.715.718a.319.319%200%200%200%20.09.537.319.319%200%200%200%20.358-.089l.005-.006%201.255-1.254a.318.318%200%200%200-.047-.489.318.318%200%200%200-.177-.053H8.545Zm-.366-.048a.518.518%200%200%201%20.366-.152h6.508m.365.883a.518.518%200%200%200-.365-.883m.365.883-1.251%201.252a.518.518%200%201%201-.732-.73l.367-.369H8.545a.518.518%200%200%201-.366-.884%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-uniswap: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224.75px%22%20viewBox%3D%220%200%2033%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M14.346%2013.736c.607%201.073-.75%201.406-1.386%201.467-.965.094-1.165-.464-.976-1.166a1.262%201.262%200%200%201%201.085-.951%201.342%201.342%200%200%201%201.277.65Zm3.787-1.984c-.705%205.417%208.8%204.29%208.618%208.6.938-1.223%201.34-4.55-1.42-6.262-2.458-1.526-5.662-.69-7.198-2.338Zm5.474-2.042c-.061-.058-.125-.114-.187-.17.063.057.125.117.187.17Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m25.817%2013.658-.006-.009a3.601%203.601%200%200%200-.292-.458%202.358%202.358%200%200%200-1.303-.886%205.545%205.545%200%200%200-1.06-.167c-.364-.027-.734-.042-1.108-.061-.75-.042-1.518-.12-2.268-.334a6.304%206.304%200%200%201-1.11-.425%204.745%204.745%200%200%201-.973-.71c-.577-.54-1.031-1.151-1.486-1.745a20.606%2020.606%200%200%200-1.378-1.714%206.285%206.285%200%200%200-1.687-1.324%205.812%205.812%200%200%200-2.101-.602%204.947%204.947%200%200%201%202.244.275%205.934%205.934%200%200%201%201.947%201.242c.367.345.712.714%201.032%201.104%202.38-.47%204.312-.052%205.796.76l.034.016a7.31%207.31%200%200%201%201.507%201.092c.316.292.61.606.88.942l.021.027c.877%201.115%201.31%202.274%201.31%202.977Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m25.816%2013.658-.005-.011.005.01ZM11.165%205.92c.608.088%201.228.331%201.627.795.4.463.546%201.066.662%201.64.093.444.168.897.342%201.318.084.205.208.385.311.579.086.161.241.306.301.478a.154.154%200%200%201-.018.153c-.212.235-.783-.026-1-.132a3.254%203.254%200%200%201-.982-.753c-.866-.966-1.313-2.355-1.286-3.62a4.22%204.22%200%200%201%20.043-.458Zm10.161%2010.887c-1.312%203.679%204.64%206.147%202.41%209.888%202.289-.95%203.375-3.817%202.425-6.092-.83-1.998-3.286-2.726-4.835-3.796Zm-7.873%204.809c.358-.27.749-.493%201.164-.663.42-.17.854-.295%201.299-.377.882-.169%201.755-.21%202.488-.507.362-.142.695-.35.983-.612.279-.26.492-.583.623-.942.133-.378.188-.78.16-1.181a4.348%204.348%200%200%200-.289-1.256%202.883%202.883%200%200%201%20.734%202.614%202.71%202.71%200%200%201-.715%201.294c-.35.346-.77.61-1.234.773-.441.155-.902.25-1.37.282-.45.038-.884.048-1.312.074a8.433%208.433%200%200%200-2.53.502Zm8.397%206.469c-.133.105-.265.217-.41.315-.147.097-.3.183-.459.257-.33.162-.695.245-1.063.242-.997-.02-1.702-.765-2.115-1.608-.281-.574-.475-1.195-.809-1.742-.477-.783-1.294-1.413-2.25-1.296-.39.049-.755.225-.972.565-.57.888.248%202.132%201.292%201.956a1.14%201.14%200%200%200%20.259-.072.936.936%200%200%200%20.23-.14%201.05%201.05%200%200%200%20.317-.461c.069-.188.084-.391.044-.587a.806.806%200%200%200-.335-.502c.2.094.356.263.435.47.082.215.104.447.061.672a1.332%201.332%200%200%201-.298.635%201.304%201.304%200%200%201-.281.24%201.638%201.638%200%200%201-1.064.234%201.946%201.946%200%200%201-.947-.413c-.322-.256-.562-.591-.854-.88a4.057%204.057%200%200%200-1.164-.854c-.3-.132-.615-.23-.938-.291a6.176%206.176%200%200%200-.49-.08c-.075-.007-.443-.089-.494-.041a10.29%2010.29%200%200%201%201.65-1.243%208.013%208.013%200%200%201%201.935-.832%205.497%205.497%200%200%201%202.164-.166c.374.045.74.14%201.088.282.365.147.702.356.995.618.291.275.526.604.692.97.15.34.262.698.334%201.064.214%201.095.135%202.793%201.563%203.044.074.014.15.025.225.032l.233.006c.16-.012.32-.035.477-.07.326-.076.644-.185.948-.324Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m13.553%2026.89-.037-.029.037.03Zm-1.281-15.456a1.59%201.59%200%200%201-.267.554%202.167%202.167%200%200%201-.889.683c-.315.137-.65.225-.99.262-.075.01-.152.015-.226.02a1.01%201.01%200%200%200-.94.754%202.57%202.57%200%200%200-.057.317c-.034.277-.04.565-.07.914a5.428%205.428%200%200%201-.505%201.706c-.34.718-.72%201.296-.632%202.123.058.537.332.896.696%201.268.656.674%202.125.975%201.797%202.637-.198.991-1.835%202.032-4.135%202.395.229-.035-.294-.919-.326-.975-.247-.388-.517-.754-.713-1.175-.384-.816-.562-1.76-.405-2.655.166-.942.86-1.664%201.436-2.383.687-.856%201.407-1.978%201.566-3.089.037-.27.064-.606.124-.942.057-.371.173-.731.343-1.066.116-.22.269-.417.452-.585a.585.585%200%200%200%20.112-.712L4.976%204.86l5.267%206.53a.656.656%200%200%200%201.01.022.448.448%200%200%200%20.013-.565c-.344-.442-.708-.892-1.06-1.335L8.88%207.864l-2.66-3.29L2.592%200%206.56%204.278l2.832%203.146L10.806%209c.469.53.937%201.044%201.406%201.601l.077.094.017.146a1.74%201.74%200%200%201-.034.593Zm1.214%2015.413a3.535%203.535%200%200%201-.674-.689c.207.247.432.477.674.689Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-user-op: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M22.576%2011.994a1.212%201.212%200%200%200%200-2.424H9.14L10.703%208a1.212%201.212%200%200%200-1.709-1.709L5.358%209.928a1.212%201.212%200%200%200-.267%201.32%201.212%201.212%200%200%200%201.121.746h16.364Z%22%2F%3E%20%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M15.859%2018.661c.091-.363.14-.754.14-1.161%200-.445-.059-.871-.167-1.263h7.955a1.213%201.213%200%200%201%201.121.745%201.212%201.212%200%200%201-.267%201.321l-3.636%203.637a1.214%201.214%200%200%201-2.049-.347%201.212%201.212%200%200%201%20.34-1.362l1.564-1.57h-5.001Zm-3.633%201.862a3.636%203.636%200%200%200%201.275-1.83%203.615%203.615%200%200%200-.035-2.225%203.638%203.638%200%200%200-1.334-1.787%203.675%203.675%200%200%200-4.264%200%203.638%203.638%200%200%200-1.333%201.787%203.615%203.615%200%200%200-.036%202.226%203.636%203.636%200%200%200%201.275%201.829%205.482%205.482%200%200%200-2.714%202.606.588.588%200%200%200%20.038.583.593.593%200%200%200%20.51.288h1.413C7.2%2022.76%208.465%2021.8%2010%2021.8c1.535%200%202.8.96%202.979%202.2h1.412a.599.599%200%200%200%20.511-.288.588.588%200%200%200%20.038-.583%205.482%205.482%200%200%200-2.714-2.606ZM11.7%2017.5a1.7%201.7%200%201%201-3.4%200%201.7%201.7%200%200%201%203.4%200Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-user-op-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2222.857142857142854px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2021%22%3E%20%3Cpath%20d%3D%22m.29%205.053%203.722-3.828a.972.972%200%200%201%201.337.06c.177.183.283.429.292.69.01.257-.074.509-.234.704L3.399%204.751H17.77c.262%200%20.514.107.7.3a1.05%201.05%200%200%201%200%201.459.976.976%200%200%201-.7.298H.987a.969.969%200%200%201-.55-.17%201.021%201.021%200%200%201-.368-.46%201.062%201.062%200%200%201%20.22-1.125zm18.723%206a.97.97%200%200%201%20.55.17c.163.111.292.271.368.46a1.061%201.061%200%200%201-.22%201.125l-3.737%203.841-.006.008a.997.997%200%200%201-.322.255.966.966%200%200%201-1.13-.197c-.097-.1-.174-.22-.224-.352a1.067%201.067%200%200%201%20.03-.828c.06-.128.146-.241.25-.333l.008-.006%202.02-2.087h-5.88c.103-.684.183-1.403%200-2.072zM8.501%2013.694a3.636%203.636%200%200%201-1.275%201.829%205.482%205.482%200%200%201%202.714%202.606.588.588%200%200%201-.038.583.593.593%200%200%201-.51.288H7.978C7.8%2017.76%206.535%2016.8%205%2016.8s-2.8.96-2.979%202.2H.61a.599.599%200%200%201-.511-.288.588.588%200%200%201-.038-.583%205.482%205.482%200%200%201%202.714-2.606%203.636%203.636%200%200%201-1.275-1.83%203.615%203.615%200%200%201%20.036-2.224A3.638%203.638%200%200%201%202.868%209.68a3.675%203.675%200%200%201%204.264%200%203.638%203.638%200%200%201%201.333%201.788c.246.72.259%201.497.036%202.225zM6.7%2012.5a1.7%201.7%200%201%201-3.4%200%201.7%201.7%200%200%201%203.4%200z%22%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-validator: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.671%2022.827a4.363%204.363%200%200%200%201.53-2.195%204.338%204.338%200%200%200-.042-2.67%204.366%204.366%200%200%200-1.6-2.145%204.41%204.41%200%200%200-5.117%200%204.366%204.366%200%200%200-1.6%202.145%204.338%204.338%200%200%200-.044%202.67c.267.873.802%201.64%201.53%202.195a6.578%206.578%200%200%200-3.256%203.127.705.705%200%200%200%20.046.7.712.712%200%200%200%20.613.346h1.246c.461-1.593%202.088-2.77%204.023-2.77%201.936%200%203.562%201.177%204.023%202.77h1.247a.716.716%200%200%200%20.612-.346.705.705%200%200%200%20.046-.7%206.578%206.578%200%200%200-3.257-3.127Zm-.179-3.489a2.492%202.492%200%201%201-4.984%200%202.492%202.492%200%200%201%204.984%200ZM15.002%203a1%201%200%200%201%20.832.445l2.063%203.094%202.482-1.986a1%201%200%200%201%201.605.977l-1.333%206.669a1%201%200%200%201-.98.804h-9.337a1%201%200%200%201-.98-.804l-1.335-6.67a1%201%200%200%201%201.606-.976l2.482%201.986%202.063-3.094A1%201%200%200%201%2015.002%203Zm0%202.803-1.836%202.753a1%201%200%200%201-1.456.226l-1.191-.952.635%203.173h7.696l.635-3.173-1.19.952a1%201%200%200%201-1.458-.226l-1.835-2.753Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-verification-steps-error: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Crect%20x%3D%22.8%22%20y%3D%22.8%22%20width%3D%2218.4%22%20height%3D%2218.4%22%20rx%3D%225.2%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.6%22%2F%3E%20%3Cpath%20d%3D%22M9.293%208.182a1%201%200%200%200%201.414%200l2.627-2.627a.786.786%200%201%201%201.11%201.111l-2.626%202.627a1%201%200%200%200%200%201.414l2.627%202.627a.785.785%200%201%201-1.111%201.11l-2.627-2.626a1%201%200%200%200-1.414%200l-2.627%202.627a.786.786%200%201%201-1.11-1.111l2.626-2.627a1%201%200%200%200%200-1.414L5.555%206.666a.786.786%200%201%201%201.111-1.11l2.627%202.626Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-verification-steps-finalized: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.79%2011.839a1%201%200%200%200%201.42%200l5.285-5.33a.71.71%200%201%201%201.009%201L9.21%2013.854a1%201%200%200%201-1.42%200l-3.294-3.322a.71.71%200%201%201%201.008-1L7.79%2011.84Z%22%2F%3E%20%3Crect%20width%3D%2218.4%22%20height%3D%2218.4%22%20x%3D%22.8%22%20y%3D%22.8%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.6%22%20rx%3D%223.2%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-verification-steps-unfinalized: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Crect%20width%3D%2218.4%22%20height%3D%2218.4%22%20x%3D%22.8%22%20y%3D%22.8%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221.6%22%20rx%3D%223.2%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-verified: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2030%2030%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cg%20clip-path%3D%22url(%23verified_svg__a)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M23.4%2015a8.4%208.4%200%201%201-16.8%200%208.4%208.4%200%200%201%2016.8%200Zm1.6%200c0%205.523-4.477%2010-10%2010S5%2020.523%205%2015%209.477%205%2015%205s10%204.477%2010%2010Zm-5.895-3.706a.916.916%200%201%201%201.295%201.295l-6.022%206.022a1.05%201.05%200%200%201-1.485%200l-3.2-3.199a.915.915%200%200%201%201.296-1.295l2.257%202.258a.55.55%200%200%200%20.778%200l5.081-5.081Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22verified_svg__a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20transform%3D%22translate(5%205)%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-verified-slim: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.4%2011a8.4%208.4%200%201%201-16.8%200%208.4%208.4%200%200%201%2016.8%200Zm1.6%200c0%205.523-4.477%2010-10%2010S1%2016.523%201%2011%205.477%201%2011%201s10%204.477%2010%2010Zm-5.895-3.706A.916.916%200%201%201%2016.4%208.589l-6.022%206.022a1.05%201.05%200%200%201-1.485%200l-3.2-3.199a.915.915%200%200%201%201.295-1.295l2.258%202.258a.55.55%200%200%200%20.778%200l5.081-5.081Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22m16.4%207.293-.141.142.141-.142Zm-1.295%200%20.142.142-.142-.141ZM16.4%208.59l-.141-.142.141.142Zm-6.022%206.022.141.141-.141-.141Zm-4.684-3.199.141-.141-.141.141Zm0-1.295-.142-.141.142.141Zm1.294%200-.141.142.141-.142Zm2.258%202.258-.14.142.14-.142Zm.778%200-.141-.141.141.141ZM11%2019.6a8.6%208.6%200%200%200%208.6-8.6h-.4a8.2%208.2%200%200%201-8.2%208.2v.4ZM2.4%2011a8.6%208.6%200%200%200%208.6%208.6v-.4A8.2%208.2%200%200%201%202.8%2011h-.4ZM11%202.4A8.6%208.6%200%200%200%202.4%2011h.4A8.2%208.2%200%200%201%2011%202.8v-.4Zm8.6%208.6A8.6%208.6%200%200%200%2011%202.4v.4a8.2%208.2%200%200%201%208.2%208.2h.4ZM11%2021.2c5.633%200%2010.2-4.567%2010.2-10.2h-.4c0%205.412-4.388%209.8-9.8%209.8v.4ZM.8%2011c0%205.633%204.567%2010.2%2010.2%2010.2v-.4c-5.412%200-9.8-4.388-9.8-9.8H.8ZM11%20.8C5.367.8.8%205.367.8%2011h.4c0-5.412%204.388-9.8%209.8-9.8V.8ZM21.2%2011C21.2%205.367%2016.633.8%2011%20.8v.4c5.412%200%209.8%204.388%209.8%209.8h.4Zm-4.659-3.848a1.116%201.116%200%200%200-1.577%200l.283.283a.716.716%200%200%201%201.012%200l.282-.283Zm0%201.578a1.116%201.116%200%200%200%200-1.578l-.282.283c.28.28.28.733%200%201.012l.283.283Zm-6.022%206.022%206.023-6.022-.283-.283-6.023%206.023.283.282Zm-1.767%200a1.25%201.25%200%200%200%201.767%200l-.283-.282a.85.85%200%200%201-1.202%200l-.282.282Zm-3.2-3.199%203.2%203.2.282-.283-3.199-3.2-.283.283Zm0-1.577a1.115%201.115%200%200%200%200%201.577l.283-.282a.715.715%200%200%201%200-1.012l-.283-.283Zm1.578%200a1.115%201.115%200%200%200-1.578%200l.283.283a.715.715%200%200%201%201.012%200l.283-.283Zm2.258%202.258L7.13%209.976l-.283.283%202.258%202.258.283-.283Zm.495%200a.35.35%200%200%201-.495%200l-.283.283a.75.75%200%200%200%201.06%200l-.282-.283Zm5.081-5.082-5.081%205.082.283.283%205.08-5.082-.282-.283Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-wallet: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2225.200000000000003px%22%20viewBox%3D%220%200%2021%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cpath%20d%3D%22M17.139%2020H4.83a3.847%203.847%200%200%201-3.846-3.845V5.39a.769.769%200%200%201%20.77-.769h15.384a3.847%203.847%200%200%201%203.846%203.845v7.69A3.844%203.844%200%200%201%2017.139%2020ZM2.524%206.16v9.996a2.307%202.307%200%200%200%202.307%202.307H17.14a2.308%202.308%200%200%200%202.308-2.307v-7.69A2.306%202.306%200%200%200%2017.14%206.16H2.524Z%22%20fill%3D%22currentColor%22%2F%3E%20%3Cpath%20d%3D%22M18.677%206.159a.77.77%200%200%201-.769-.77V3.276a1.79%201.79%200%200%200-.6-1.438%201.493%201.493%200%200%200-1.284-.246l-12.9%202.93a.77.77%200%200%200-.6.769.769.769%200%200%201-1.539%200A2.306%202.306%200%200%201%202.778%203.02L15.685.091a3%203%200%200%201%202.585.546%203.338%203.338%200%200%201%201.177%202.638V5.39a.77.77%200%200%201-.77.769Zm1.539%209.227H14.83a3.077%203.077%200%200%201-2.175-5.25%203.074%203.074%200%200%201%202.175-.902h5.385a.77.77%200%200%201%20.769.77v4.613a.77.77%200%200%201-.77.769Zm-5.385-4.614a1.539%201.539%200%201%200%200%203.076h4.616v-3.076H14.83Z%22%20fill%3D%22currentColor%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-wallets-coinbase: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%202500%202500%22%3E%20%3Crect%20fill%3D%22none%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%230052FF%22%20d%3D%22M520.7%200h1458.5C2266.9%200%202500%20250.8%202500%20560.2v1379.6c0%20309.4-233.1%20560.2-520.7%20560.2H520.7C233.1%202500%200%202249.2%200%201939.8V560.2C0%20250.8%20233.1%200%20520.7%200z%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23FFF%22%20d%3D%22M1250%20362.1c490.4%200%20887.9%20397.5%20887.9%20887.9s-397.5%20887.9-887.9%20887.9-887.9-397.5-887.9-887.9S759.6%20362.1%201250%20362.1z%22%2F%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%230052FF%22%20d%3D%22M1031.3%20966.2h437.3c36%200%2065.1%2031.4%2065.1%2070v427.5c0%2038.7-29.2%2070-65.1%2070h-437.3c-36%200-65.1-31.4-65.1-70v-427.5c0-38.6%2029.2-70%2065.1-70z%22%2F%3E%20%3C%2Fsvg%3E"); + --kda-icons-wallets-metamask: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2020%2020%22%3E%20%3Cg%20clip-path%3D%22url(%23a)%22%3E%20%3Cpath%20fill%3D%22%23FF5C16%22%20d%3D%22m17.763%2017.7-3.864-1.15-2.914%201.742H8.952L6.037%2016.55%202.175%2017.7%201%2013.736l1.175-4.402L1%205.613%202.175%201l6.034%203.605h3.519L17.763%201l1.175%204.612-1.175%203.721%201.175%204.402-1.175%203.966Z%22%2F%3E%20%3Cpath%20fill%3D%22%23FF5C16%22%20d%3D%22M2.176%201%208.21%204.608l-.24%202.476L2.176%201Zm3.862%2012.737%202.655%202.022-2.655.791v-2.813Zm2.443-3.344-.51-3.307-3.267%202.249-.002-.001v.001l.01%202.315%201.325-1.257H8.48ZM17.763%201l-6.035%203.608.24%202.476L17.762%201ZM13.9%2013.737l-2.656%202.022%202.656.791v-2.813Zm1.335-4.402v-.002l-.001.001-3.267-2.248-.51%203.307H13.9l1.325%201.257.01-2.315Z%22%2F%3E%20%3Cpath%20fill%3D%22%23E34807%22%20d%3D%22M6.037%2016.55%202.175%2017.7%201%2013.737h5.037v2.814Zm2.443-6.159.738%204.781-1.023-2.658-3.485-.865%201.326-1.257H8.48Zm5.42%206.159%203.863%201.15%201.175-3.964H13.9v2.814Zm-2.442-6.159-.738%204.781%201.022-2.658%203.485-.865-1.326-1.257h-2.443Z%22%2F%3E%20%3Cpath%20fill%3D%22%23FF8D5D%22%20d%3D%22m1%2013.735%201.175-4.402H4.7l.01%202.316%203.484.864%201.023%202.658-.526.586-2.655-2.023H1Zm17.938%200-1.175-4.402h-2.527l-.009%202.316-3.485.864-1.022%202.658.525.586%202.656-2.023h5.037Zm-7.21-9.13H8.209l-.238%202.476%201.247%208.088h1.502l1.248-8.088-.24-2.476Z%22%2F%3E%20%3Cpath%20fill%3D%22%23661800%22%20d%3D%22M2.175%201%201%205.612l1.175%203.721H4.7l3.27-2.249L2.175%201ZM7.75%2011.352H6.605l-.623.61%202.214.55-.446-1.16ZM17.763%201l1.175%204.612-1.175%203.721h-2.527l-3.268-2.249L17.763%201Zm-5.574%2010.352h1.147l.623.611-2.217.55.447-1.162Zm-1.205%205.363.261-.957-.525-.585H9.217l-.526.585.261.957%22%2F%3E%20%3Cpath%20fill%3D%22%23C0C4CD%22%20d%3D%22M10.984%2016.714v1.579H8.952v-1.579h2.032Z%22%2F%3E%20%3Cpath%20fill%3D%22%23E7EBF6%22%20d%3D%22m6.038%2016.548%202.916%201.744v-1.579l-.261-.956-2.655.791Zm7.863%200-2.917%201.744v-1.579l.262-.956%202.655.791Z%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3CclipPath%20id%3D%22a%22%3E%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M1%201h18v17.366H1z%22%2F%3E%20%3C%2FclipPath%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-wallets-token-pocket: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cmask%20id%3D%22token-pocket_svg__a%22%20style%3D%22mask-type%3Aluminance%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%222%22%20y%3D%226%22%20width%3D%2220%22%20height%3D%2213%22%3E%20%3Cpath%20d%3D%22M22%206H2v12.904h20V6Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fmask%3E%20%3Cg%20mask%3D%22url(%23token-pocket_svg__a)%22%3E%20%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.84%206H2.611A.61.61%200%200%200%202%206.611v2.482a.61.61%200%200%200%20.611.611h2.327v8.589c0%20.338.274.611.612.611h2.604a.61.61%200%200%200%20.611-.611V9.704h1.064c1.022%200%201.853-.83%201.853-1.852A1.838%201.838%200%200%200%209.84%206Zm5.877%2010.112.003.001v-4.992a1.156%201.156%200%200%201%202.309%200%201.15%201.15%200%200%201-1.154%201.155v3.967a5.125%205.125%200%200%200%205.121-5.121A5.119%205.119%200%200%200%2016.875%206a5.123%205.123%200%200%200-5.121%205.121v7.154a.61.61%200%200%200%20.611.612h2.74a.61.61%200%200%200%20.612-.612v-2.163Z%22%20fill%3D%22%232980FE%22%2F%3E%20%3Cpath%20d%3D%22M15.72%2011.122v4.991a5.169%205.169%200%200%200%201.04.13h.036v-3.97c-.6-.04-1.075-.54-1.075-1.151Z%22%20fill%3D%22url(%23token-pocket_svg__b)%22%2F%3E%20%3Cpath%20d%3D%22M16.875%2016.243v-3.967c-.029%200-.054%200-.083-.004v3.97h.083Z%22%20fill%3D%22%232980FE%22%2F%3E%20%3C%2Fg%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22token-pocket_svg__b%22%20x1%3D%2216.877%22%20y1%3D%2213.683%22%20x2%3D%2215.721%22%20y2%3D%2213.683%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%3Cstop%20stop-color%3D%22%232980FE%22%2F%3E%20%3Cstop%20offset%3D%22.967%22%20stop-color%3D%22%236CA8FF%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%232980FE%22%2F%3E%20%3C%2FlinearGradient%3E%20%3C%2Fdefs%3E%20%3C%2Fsvg%3E"); + --kda-icons-watchlist: url("data:image/svg+xml,%3Csvg%20height%3D%2224px%22%20width%3D%2224px%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2030%2030%22%3E%20%3Cpath%20d%3D%22M20.712%2025a.724.724%200%200%201-.353-.09L15%2021.956%209.64%2024.91a.728.728%200%200%201-.796-.061.788.788%200%200%201-.256-.342.827.827%200%200%201-.045-.432l1.024-6.252-4.338-4.428a.803.803%200%200%201-.207-.377.828.828%200%200%201%20.015-.435.795.795%200%200%201%20.232-.361.741.741%200%200%201%20.379-.179l5.993-.912%202.68-5.688a.78.78%200%200%201%20.28-.323.732.732%200%200%201%20.798%200%20.78.78%200%200%201%20.28.323l2.68%205.688%205.993.912c.14.021.27.083.379.178a.8.8%200%200%201%20.232.361.828.828%200%200%201-.192.813l-4.338%204.428%201.024%206.252a.83.83%200%200%201-.167.644.762.762%200%200%201-.26.208.728.728%200%200%201-.319.074h.002ZM7.382%2013.38l3.524%203.598a.8.8%200%200%201%20.192.321.829.829%200%200%201%20.026.378l-.832%205.08%204.355-2.397a.73.73%200%200%201%20.706%200l4.356%202.399-.833-5.082a.828.828%200%200%201%20.026-.378.799.799%200%200%201%20.191-.323l3.524-3.596-4.87-.74a.738.738%200%200%201-.335-.143.785.785%200%200%201-.234-.29L15%207.585l-2.178%204.622a.785.785%200%200%201-.234.29.738.738%200%200%201-.336.143l-4.87.74Z%22%20fill%3D%22currentColor%22%20stroke%3D%22currentColor%22%20stroke-width%3D%22.5%22%2F%3E%20%3C%2Fsvg%3E"); +} diff --git a/toolkit/theme/design-system/dist/css/tokens.css b/toolkit/theme/design-system/dist/css/tokens.css new file mode 100644 index 0000000000..4bf2400bd4 --- /dev/null +++ b/toolkit/theme/design-system/dist/css/tokens.css @@ -0,0 +1,2025 @@ +/* kda Design System | */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +:root { + --kda-explorer-alert-surface-text: #0b1d2e; + --kda-explorer-alert-background: #e9f8ef; + --kda-explorer-alert-background-semantic-positive: #e9fce3; + --kda-explorer-alert-background-semantic-negative: #fff5f5; + --kda-explorer-alert-background-semantic-warning: #fbf8dd; + --kda-explorer-alert-background-semantic-info: #f0f8ff; + --kda-explorer-alert-loading: #194268; + --kda-explorer-button-background-color: #20624c; + --kda-explorer-button-surface-color: #fff; + --kda-explorer-hero-banner-title-font-size: 1.5rem; + --kda-explorer-hero-banner-title-font-weight: 500; + --kda-explorer-hero-banner-title-font-line-height: 1.5rem; + --kda-explorer-hero-banner-title-font-color-name: #fff; + --kda-explorer-hero-banner-title-font-color-prefix: #fff6; + --kda-explorer-hero-banner-title-font-color-selector: #fff; + --kda-explorer-hero-banner-title-margin-gap: 1rem; + --kda-explorer-hero-banner-title-margin-bottom: 1rem; + --kda-explorer-hero-banner-border: 1px solid #4a9079; + --kda-explorer-hero-banner-radius: 2px; + --kda-explorer-hero-banner-background: #4a9079; + --kda-explorer-hero-banner-padding: 1rem; + --kda-explorer-hero-banner-column-width: 100%; + --kda-explorer-hero-banner-column-gap: 2rem; + --kda-explorer-hero-banner-button-dimensions-radius: 0px; + --kda-explorer-hero-banner-button-default-background: #20624c; + --kda-explorer-hero-banner-button-default-surface: #fff; + --kda-explorer-hero-banner-button-hover-background: #27795e; + --kda-explorer-hero-banner-button-hover-surface: #fff; + --kda-explorer-hero-banner-button-active-background: #2e8f6f; + --kda-explorer-hero-banner-button-active-surface: #e4e5e5; + --kda-explorer-input-dimensions-radius-base: 0px; + --kda-explorer-input-border-color-semantic-negative: #ea3829; + --kda-explorer-input-border-color-focus: #356f5a; + --kda-explorer-navigation-background-active: #e9f8ef; + --kda-explorer-navigation-surface-text: #1f4f3c; + --kda-explorer-navigation-surface-text-selected: #061a10; + --kda-explorer-toast-surface-text: #0b1d2e; + --kda-explorer-toast-background: #e9f8ef; + --kda-explorer-toast-background-semantic-positive: #e9fce3; + --kda-explorer-toast-background-semantic-negative: #fff5f5; + --kda-explorer-toast-background-semantic-warning: #fbf8dd; + --kda-explorer-toast-background-semantic-info: #f0f8ff; + --kda-explorer-toast-loading: #194268; + --kda-explorer-top-bar-font-size: 0.75rem; + --kda-explorer-widget-stats-background: #e9f8ef; + --kda-explorer-widget-stats-background-hover: #e9f8ef; + --kda-explorer-widget-stats-background-focus: #e9f8ef; + --kda-explorer-widget-stats-background-visited: #e9f8ef; + --kda-explorer-widget-stats-surface-text-subtle: #000c; + --kda-explorer-widget-stats-surface-text: #1f4f3c; + --kda-explorer-widget-stats-surface-icon-color: #4a9079; + --kda-border-width-hairline: 1px; + --kda-border-width-normal: 2px; + --kda-border-width-thick: 4px; + --kda-border-hairline: 1px solid #252f3a40; + --kda-border-normal: 2px solid #020e1b80; + --kda-border-thick: 4px solid #020e1b80; + --kda-breakpoint-xs: 0rem; + --kda-breakpoint-sm: 40rem; + --kda-breakpoint-md: 48rem; + --kda-breakpoint-lg: 64rem; + --kda-breakpoint-xl: 80rem; + --kda-breakpoint-xxl: 96rem; + --kda-color-accent-blue: #358cdd; + --kda-color-accent-celery: #07a721; + --kda-color-accent-green: #4a9079; + --kda-color-accent-magenta: #e41968; + --kda-color-accent-orange: #e27b38; + --kda-color-accent-red: #f75c46; + --kda-color-accent-yellow: #b08c00; + --kda-color-accent-brand-primary: #4a9079; + --kda-color-accent-brand-secondary: #358cdd; + --kda-color-accent-brand-tertiary: #e27b38; + --kda-color-accent-brand-tint-primary: #52ffc6; + --kda-color-accent-brand-tint-secondary: #e41968; + --kda-color-accent-brand-tint-tertiary: #e27b38; + --kda-color-accent-semantic-info: #358cdd; + --kda-color-accent-semantic-warning: #b08c00; + --kda-color-accent-semantic-positive: #07a721; + --kda-color-accent-semantic-negative: #f75c46; + --kda-color-background-base: #f5f5f5; + --kda-color-background-base-warm: #f0eae6; + --kda-color-background-base-hover: #d2d4d6; + --kda-color-background-base-focus: #e4e5e5cc; + --kda-color-background-base-active: #e4e5e5; + --kda-color-background-base-disabled: #0000001a; + --kda-color-background-base-inverse: #020e1b; + --kda-color-background-base-inverse-warm: #0f0f0f; + --kda-color-background-base-inverse-hover: #252f3a; + --kda-color-background-base-inverse-focus: #131e2bcc; + --kda-color-background-base-inverse-disabled: #ffffff1a; + --kda-color-background-layer: #fffc; + --kda-color-background-layer-solid: #fff; + --kda-color-background-overlay: #fffffff2; + --kda-color-background-overlay-context: #fffffff2; + --kda-color-background-overlay-hover: #fff; + --kda-color-background-surface: #020e1b0f; + --kda-color-background-surface-inverse: #020e1bcc; + --kda-color-background-surface-subtle: #020e1b08; + --kda-color-background-surface-subtle-inverse: #020e1bcc; + --kda-color-background-surface-high-contrast: #ffffffe6; + --kda-color-background-surface-high-contrast-inverse: #000000e6; + --kda-color-background-brand-primary: #b8e7cf; + --kda-color-background-brand-primary-subtle: #cef8e0; + --kda-color-background-brand-primary-subtlest: #e9f8ef; + --kda-color-background-brand-primary-hover: #a2d5be; + --kda-color-background-brand-primary-focus: #8cc4ad; + --kda-color-background-brand-primary-active: #76b39b; + --kda-color-background-brand-primary-inverse: #153e2c; + --kda-color-background-brand-primary-inverse-subtle: #0a2e1d; + --kda-color-background-brand-primary-inverse-subtlest: #061a10; + --kda-color-background-brand-primary-inverse-hover: #1f4f3c; + --kda-color-background-brand-primary-inverse-focus: #2a5f4b; + --kda-color-background-brand-primary-inverse-active: #356f5a; + --kda-color-background-brand-secondary: #bbdbf9; + --kda-color-background-brand-secondary-subtle: #d6ebff; + --kda-color-background-brand-secondary-subtlest: #f0f8ff; + --kda-color-background-brand-secondary-hover: #bbdbf9; + --kda-color-background-brand-secondary-focus: #a0cbf4; + --kda-color-background-brand-secondary-active: #86bcee; + --kda-color-background-brand-secondary-inverse: #112c46; + --kda-color-background-brand-secondary-inverse-subtle: #0b1d2e; + --kda-color-background-brand-secondary-inverse-subtlest: #06101a; + --kda-color-background-brand-secondary-inverse-hover: #112c46; + --kda-color-background-brand-secondary-inverse-focus: #194268; + --kda-color-background-brand-secondary-inverse-active: #205586; + --kda-color-background-accent-primary: #52ffc6; + --kda-color-background-accent-primary-hover: #4be9b5; + --kda-color-background-accent-primary-focus: #52ffc6cc; + --kda-color-background-accent-primary-active: #7affd3; + --kda-color-background-accent-primary-inverse: #20624c; + --kda-color-background-accent-primary-inverse-hover: #2e8f6f; + --kda-color-background-accent-primary-inverse-focus: #27795ecc; + --kda-color-background-accent-primary-inverse-active: #27795e; + --kda-color-background-accent-secondary: #e41968; + --kda-color-background-accent-secondary-hover: #cf175e; + --kda-color-background-accent-secondary-focus: #cf175e; + --kda-color-background-accent-secondary-active: #cf175e; + --kda-color-background-accent-secondary-inverse: #e41968; + --kda-color-background-accent-secondary-inverse-hover: #e93c7f; + --kda-color-background-accent-secondary-inverse-focus: #e93c7f; + --kda-color-background-accent-secondary-inverse-active: #e93c7f; + --kda-color-background-accent-tertiary: #e27b38; + --kda-color-background-accent-tertiary-hover: #cb5d00; + --kda-color-background-accent-tertiary-focus: #cb5d00; + --kda-color-background-accent-tertiary-active: #cb5d00; + --kda-color-background-accent-tertiary-inverse: #e27b38; + --kda-color-background-accent-tertiary-inverse-hover: #ec9046; + --kda-color-background-accent-tertiary-inverse-focus: #ec9046; + --kda-color-background-accent-tertiary-inverse-active: #ec9046; + --kda-color-background-semantic-positive: #72e06a; + --kda-color-background-semantic-positive-subtle: #72e06a33; + --kda-color-background-semantic-positive-subtlest: #e9fce3; + --kda-color-background-semantic-positive-hover: #4ecf50; + --kda-color-background-semantic-positive-focus: #72e06acc; + --kda-color-background-semantic-positive-active: #96ee85; + --kda-color-background-semantic-positive-inverse: #00670f; + --kda-color-background-semantic-positive-inverse-subtle: #00670f33; + --kda-color-background-semantic-positive-inverse-subtlest: #001a04; + --kda-color-background-semantic-positive-inverse-hover: #007c0f; + --kda-color-background-semantic-positive-inverse-focus: #00670fcc; + --kda-color-background-semantic-positive-inverse-active: #00530d; + --kda-color-background-semantic-negative: #ffb7a9; + --kda-color-background-semantic-negative-subtle: #ffb7a933; + --kda-color-background-semantic-negative-subtlest: #fff5f5; + --kda-color-background-semantic-negative-hover: #ff9b88; + --kda-color-background-semantic-negative-focus: #ffb7a9cc; + --kda-color-background-semantic-negative-active: #ffcdc3; + --kda-color-background-semantic-negative-inverse: #b40000; + --kda-color-background-semantic-negative-inverse-subtle: #b4000033; + --kda-color-background-semantic-negative-inverse-subtlest: #300; + --kda-color-background-semantic-negative-inverse-hover: #d31510; + --kda-color-background-semantic-negative-inverse-focus: #b40000cc; + --kda-color-background-semantic-negative-inverse-active: #930000; + --kda-color-background-semantic-warning: #e8c600; + --kda-color-background-semantic-warning-subtle: #e8c60033; + --kda-color-background-semantic-warning-subtlest: #fbf8dd; + --kda-color-background-semantic-warning-hover: #d7b300; + --kda-color-background-semantic-warning-focus: #e8c600cc; + --kda-color-background-semantic-warning-active: #f8d904; + --kda-color-background-semantic-warning-inverse: #705300; + --kda-color-background-semantic-warning-inverse-subtle: #70530033; + --kda-color-background-semantic-warning-inverse-subtlest: #1a1100; + --kda-color-background-semantic-warning-inverse-hover: #856600; + --kda-color-background-semantic-warning-inverse-focus: #705300cc; + --kda-color-background-semantic-warning-inverse-active: #5b4300; + --kda-color-background-semantic-info: #86bcee; + --kda-color-background-semantic-info-subtle: #86bcee33; + --kda-color-background-semantic-info-subtlest: #f0f8ff; + --kda-color-background-semantic-info-hover: #6bace8; + --kda-color-background-semantic-info-focus: #86bceecc; + --kda-color-background-semantic-info-active: #a0cbf4; + --kda-color-background-semantic-info-inverse: #205586; + --kda-color-background-semantic-info-inverse-subtle: #20558633; + --kda-color-background-semantic-info-inverse-subtlest: #06101a; + --kda-color-background-semantic-info-inverse-hover: #2767a3; + --kda-color-background-semantic-info-inverse-focus: #205586cc; + --kda-color-background-semantic-info-inverse-active: #194268; + --kda-color-background-input: #f5f5f5cc; + --kda-color-background-input-hover: #d2d4d6; + --kda-color-background-input-focus: #e4e5e5cc; + --kda-color-background-input-active: #e4e5e5; + --kda-color-background-input-disabled: #0000001a; + --kda-color-background-input-inverse: #475059cc; + --kda-color-background-input-inverse-hover: #252f3a; + --kda-color-background-input-inverse-focus: #131e2bcc; + --kda-color-background-input-inverse-active: #131e2b; + --kda-color-background-input-inverse-disabled: #ffffff1a; + --kda-color-background-skeleton: #d2d4d6; + --kda-color-background-table-row: #fffc; + --kda-color-background-table-row-hover: #f5f5f5cc; + --kda-color-border-base-subtle: #d2d4d6cc; + --kda-color-border-base: #252f3a40; + --kda-color-border-base-bold: #020e1b80; + --kda-color-border-base-boldest: #000000b3; + --kda-color-border-base-high-contrast: #000; + --kda-color-border-base-disabled: #b0b3b7; + --kda-color-border-base-hover: #b0b3b7; + --kda-color-border-base-focus: #6a7178; + --kda-color-border-base-active: #475059; + --kda-color-border-base-inverse-subtle: #f5f5f51a; + --kda-color-border-base-inverse: #f5f5f533; + --kda-color-border-base-inverse-bold: #fff6; + --kda-color-border-base-inverse-boldest: #f5f5f580; + --kda-color-border-base-inverse-high-contrast: #fff; + --kda-color-border-base-inverse-disabled: #b0b3b7; + --kda-color-border-base-inverse-hover: #b0b3b7; + --kda-color-border-base-inverse-focus: #6a7178; + --kda-color-border-base-inverse-active: #475059; + --kda-color-border-brand-primary: #60a18a; + --kda-color-border-brand-primary-subtle: #8cc4ad; + --kda-color-border-brand-primary-hover: #3f806a; + --kda-color-border-brand-primary-focus: #356f5a; + --kda-color-border-brand-primary-inverse: #2a5f4b; + --kda-color-border-brand-primary-inverse-hover: #356f5a; + --kda-color-border-brand-primary-inverse-focus: #3f806a; + --kda-color-border-brand-secondary: #509ce3; + --kda-color-border-brand-secondary-subtle: #86bcee; + --kda-color-border-brand-secondary-hover: #2e7ac0; + --kda-color-border-brand-secondary-focus: #2767a3; + --kda-color-border-brand-secondary-inverse: #205586; + --kda-color-border-brand-secondary-inverse-hover: #2767a3; + --kda-color-border-brand-secondary-inverse-focus: #2e7ac0; + --kda-color-border-semantic-positive: #009112; + --kda-color-border-semantic-positive-subtle: #72e06a; + --kda-color-border-semantic-positive-disabled: #72e06a; + --kda-color-border-semantic-positive-hover: #007c0f; + --kda-color-border-semantic-positive-focus: #009112; + --kda-color-border-semantic-positive-inverse: #27bb36; + --kda-color-border-semantic-positive-inverse-hover: #4ecf50; + --kda-color-border-semantic-positive-inverse-focus: #72e06a; + --kda-color-border-semantic-negative: #ea3829; + --kda-color-border-semantic-negative-subtle: #ffb7a9; + --kda-color-border-semantic-negative-disabled: #ffb7a9; + --kda-color-border-semantic-negative-hover: #d31510; + --kda-color-border-semantic-negative-focus: #ea3829; + --kda-color-border-semantic-negative-inverse: #ff7c65; + --kda-color-border-semantic-negative-inverse-hover: #ff9b88; + --kda-color-border-semantic-negative-inverse-focus: #ffb7a9; + --kda-color-border-semantic-warning: #9b7800; + --kda-color-border-semantic-warning-subtle: #e8c600; + --kda-color-border-semantic-warning-disabled: #e8c600; + --kda-color-border-semantic-warning-hover: #856600; + --kda-color-border-semantic-warning-focus: #9b7800; + --kda-color-border-semantic-warning-inverse: #c49f00; + --kda-color-border-semantic-warning-inverse-hover: #d7b300; + --kda-color-border-semantic-warning-inverse-focus: #e8c600; + --kda-color-border-semantic-info: #2e7ac0; + --kda-color-border-semantic-info-subtle: #86bcee; + --kda-color-border-semantic-info-disabled: #86bcee; + --kda-color-border-semantic-info-hover: #2767a3; + --kda-color-border-semantic-info-focus: #2e7ac0; + --kda-color-border-semantic-info-inverse: #509ce3; + --kda-color-border-semantic-info-inverse-hover: #6bace8; + --kda-color-border-semantic-info-inverse-focus: #86bcee; + --kda-color-border-tint-outline: #2e7ac0; + --kda-color-border-tint-focus: #27795ecc; + --kda-color-border-overlay-context: #b0b3b7cc; + --kda-color-brand-primary-n0: #e9f8ef; + --kda-color-brand-primary-n1: #cef8e0; + --kda-color-brand-primary-n5: #b8e7cf; + --kda-color-brand-primary-n10: #a2d5be; + --kda-color-brand-primary-n20: #8cc4ad; + --kda-color-brand-primary-n30: #76b39b; + --kda-color-brand-primary-n40: #60a18a; + --kda-color-brand-primary-n50: #4a9079; + --kda-color-brand-primary-n60: #3f806a; + --kda-color-brand-primary-n70: #356f5a; + --kda-color-brand-primary-n80: #2a5f4b; + --kda-color-brand-primary-n90: #1f4f3c; + --kda-color-brand-primary-n95: #153e2c; + --kda-color-brand-primary-n99: #0a2e1d; + --kda-color-brand-primary-n100: #061a10; + --kda-color-brand-secondary-n0: #f0f8ff; + --kda-color-brand-secondary-n1: #d6ebff; + --kda-color-brand-secondary-n5: #bbdbf9; + --kda-color-brand-secondary-n10: #a0cbf4; + --kda-color-brand-secondary-n20: #86bcee; + --kda-color-brand-secondary-n30: #6bace8; + --kda-color-brand-secondary-n40: #509ce3; + --kda-color-brand-secondary-n50: #358cdd; + --kda-color-brand-secondary-n60: #2e7ac0; + --kda-color-brand-secondary-n70: #2767a3; + --kda-color-brand-secondary-n80: #205586; + --kda-color-brand-secondary-n90: #194268; + --kda-color-brand-secondary-n95: #112c46; + --kda-color-brand-secondary-n99: #0b1d2e; + --kda-color-brand-secondary-n100: #06101a; + --kda-color-brand-tertiary-n0: #fff7eb; + --kda-color-brand-tertiary-n1: #ffeccc; + --kda-color-brand-tertiary-n5: #ffdfad; + --kda-color-brand-tertiary-n10: #fdd291; + --kda-color-brand-tertiary-n20: #ffbb63; + --kda-color-brand-tertiary-n30: #f5a655; + --kda-color-brand-tertiary-n40: #ec9046; + --kda-color-brand-tertiary-n50: #e27b38; + --kda-color-brand-tertiary-n60: #cb5d00; + --kda-color-brand-tertiary-n70: #b14c00; + --kda-color-brand-tertiary-n80: #953d00; + --kda-color-brand-tertiary-n90: #7a2f00; + --kda-color-brand-tertiary-n95: #612300; + --kda-color-brand-tertiary-n99: #491901; + --kda-color-brand-tertiary-n100: #290e01; + --kda-color-brand-key-primary: #4a9079; + --kda-color-brand-key-secondary: #0b1d2e; + --kda-color-brand-key-tertiary: #e27b38; + --kda-color-brand-key-accent: #e41968; + --kda-color-brand-key-neutralwarm: #f0eae6; + --kda-color-brand-key-white: #f5f5f5; + --kda-color-brand-key-black: #020e1b; + --kda-color-gradient-base-subtle: linear-gradient( 90deg, #f5f5f5, #f5f5f500 ); + --kda-color-icon-base: #131e2b; + --kda-color-icon-base-bold: #020e1b; + --kda-color-icon-base-init: #020e1b; + --kda-color-icon-base-hover: #020e1b80; + --kda-color-icon-base-focus: #020e1b; + --kda-color-icon-base-active: #000; + --kda-color-icon-base-disabled: #0003; + --kda-color-icon-base-inverse: #e4e5e5; + --kda-color-icon-base-inverse-bold: #f5f5f5; + --kda-color-icon-base-inverse-init: #f5f5f5; + --kda-color-icon-base-inverse-hover: #f5f5f580; + --kda-color-icon-base-inverse-focus: #f5f5f5; + --kda-color-icon-base-inverse-active: #fff; + --kda-color-icon-base-inverse-disabled: #fff3; + --kda-color-icon-brand-logo: #4a9079; + --kda-color-icon-brand-logo-inverse: #f5f5f5; + --kda-color-icon-brand-primary: #2a5f4b; + --kda-color-icon-brand-primary-bold: #1f4f3c; + --kda-color-icon-brand-primary-hover: #356f5a; + --kda-color-icon-brand-primary-focus: #3f806a; + --kda-color-icon-brand-primary-active: #4a9079; + --kda-color-icon-brand-primary-disabled: #9ea3a7; + --kda-color-icon-brand-primary-inverse: #8cc4ad; + --kda-color-icon-brand-primary-inverse-hover: #76b39b; + --kda-color-icon-brand-primary-inverse-focus: #60a18a; + --kda-color-icon-brand-primary-inverse-active: #4a9079; + --kda-color-icon-brand-primary-inverse-disabled: #9ea3a7; + --kda-color-icon-brand-secondary: #205586; + --kda-color-icon-brand-secondary-bold: #194268; + --kda-color-icon-brand-secondary-hover: #2767a3; + --kda-color-icon-brand-secondary-focus: #2e7ac0; + --kda-color-icon-brand-secondary-active: #358cdd; + --kda-color-icon-brand-secondary-disabled: #9ea3a7; + --kda-color-icon-brand-secondary-inverse: #86bcee; + --kda-color-icon-brand-secondary-inverse-hover: #6bace8; + --kda-color-icon-brand-secondary-inverse-focus: #509ce3; + --kda-color-icon-brand-secondary-inverse-active: #358cdd; + --kda-color-icon-brand-secondary-inverse-disabled: #9ea3a7; + --kda-color-icon-semantic-positive: #00670f; + --kda-color-icon-semantic-positive-hover: #007c0f; + --kda-color-icon-semantic-positive-focus: #009112; + --kda-color-icon-semantic-positive-active: #07a721; + --kda-color-icon-semantic-positive-disabled: #9ea3a7; + --kda-color-icon-semantic-positive-inverse: #72e06a; + --kda-color-icon-semantic-positive-inverse-hover: #4ecf50; + --kda-color-icon-semantic-positive-inverse-focus: #27bb36; + --kda-color-icon-semantic-positive-inverse-active: #07a721; + --kda-color-icon-semantic-positive-inverse-disabled: #9ea3a7; + --kda-color-icon-semantic-negative: #b40000; + --kda-color-icon-semantic-negative-hover: #d31510; + --kda-color-icon-semantic-negative-focus: #ea3829; + --kda-color-icon-semantic-negative-active: #f75c46; + --kda-color-icon-semantic-negative-disabled: #9ea3a7; + --kda-color-icon-semantic-negative-inverse: #ffb7a9; + --kda-color-icon-semantic-negative-inverse-hover: #ff9b88; + --kda-color-icon-semantic-negative-inverse-focus: #ff7c65; + --kda-color-icon-semantic-negative-inverse-active: #f75c46; + --kda-color-icon-semantic-negative-inverse-disabled: #9ea3a7; + --kda-color-icon-semantic-warning: #705300; + --kda-color-icon-semantic-warning-hover: #856600; + --kda-color-icon-semantic-warning-focus: #9b7800; + --kda-color-icon-semantic-warning-active: #b08c00; + --kda-color-icon-semantic-warning-disabled: #9ea3a7; + --kda-color-icon-semantic-warning-inverse: #e8c600; + --kda-color-icon-semantic-warning-inverse-hover: #d7b300; + --kda-color-icon-semantic-warning-inverse-focus: #c49f00; + --kda-color-icon-semantic-warning-inverse-active: #b08c00; + --kda-color-icon-semantic-warning-inverse-disabled: #9ea3a7; + --kda-color-icon-semantic-info: #205586; + --kda-color-icon-semantic-info-hover: #2767a3; + --kda-color-icon-semantic-info-focus: #2e7ac0; + --kda-color-icon-semantic-info-active: #358cdd; + --kda-color-icon-semantic-info-disabled: #9ea3a7; + --kda-color-icon-semantic-info-inverse: #86bcee; + --kda-color-icon-semantic-info-inverse-hover: #6bace8; + --kda-color-icon-semantic-info-inverse-focus: #509ce3; + --kda-color-icon-semantic-info-inverse-active: #358cdd; + --kda-color-icon-semantic-info-inverse-disabled: #9ea3a7; + --kda-color-icon-product-spirekey-animation-start: #4a9079; + --kda-color-icon-product-spirekey-animation-step1: #4aa688; + --kda-color-icon-product-spirekey-animation-step2: #4bbd97; + --kda-color-icon-product-spirekey-animation-step3: #4bd3a6; + --kda-color-icon-product-spirekey-animation-end: #4be9b5; + --kda-color-link-base: #20624c; + --kda-color-link-base-hover: #0a1f18; + --kda-color-link-base-focus: #0a1f18; + --kda-color-link-base-visited: #a5124b; + --kda-color-link-brand-primary: #356f5a; + --kda-color-link-brand-primary-hover: #2a5f4b; + --kda-color-link-brand-primary-focus: #3f806a; + --kda-color-link-brand-primary-visited: #a5124b; + --kda-color-link-brand-secondary: #2767a3; + --kda-color-link-brand-secondary-hover: #205586; + --kda-color-link-brand-secondary-focus: #2e7ac0; + --kda-color-link-brand-secondary-visited: #a5124b; + --kda-color-link-semantic-positive: #00530d; + --kda-color-link-semantic-positive-hover: #00400a; + --kda-color-link-semantic-positive-focus: #00670f; + --kda-color-link-semantic-positive-visited: #a5124b; + --kda-color-link-semantic-negative: #930000; + --kda-color-link-semantic-negative-hover: #740000; + --kda-color-link-semantic-negative-focus: #b40000; + --kda-color-link-semantic-negative-visited: #a5124b; + --kda-color-link-semantic-warning: #5b4300; + --kda-color-link-semantic-warning-hover: #483300; + --kda-color-link-semantic-warning-focus: #705300; + --kda-color-link-semantic-warning-visited: #a5124b; + --kda-color-link-semantic-info: #194268; + --kda-color-link-semantic-info-hover: #112c46; + --kda-color-link-semantic-info-focus: #205586; + --kda-color-link-semantic-info-visited: #a5124b; + --kda-color-neutral-n0: #fff; + --kda-color-neutral-n0-alpha0: #fff0; + --kda-color-neutral-n0-alpha10: #ffffff1a; + --kda-color-neutral-n0-alpha20: #fff3; + --kda-color-neutral-n0-alpha40: #fff6; + --kda-color-neutral-n0-alpha70: #ffffffb3; + --kda-color-neutral-n0-alpha80: #fffc; + --kda-color-neutral-n0-alpha90: #ffffffe6; + --kda-color-neutral-n0-alpha95: #fffffff2; + --kda-color-neutral-n1: #f5f5f5; + --kda-color-neutral-n1-alpha0: #f5f5f500; + --kda-color-neutral-n1-alpha1: #f5f5f503; + --kda-color-neutral-n1-alpha3: #f5f5f508; + --kda-color-neutral-n1-alpha4: #f5f5f50a; + --kda-color-neutral-n1-alpha5: #f5f5f50d; + --kda-color-neutral-n1-alpha6: #f5f5f50f; + --kda-color-neutral-n1-alpha10: #f5f5f51a; + --kda-color-neutral-n1-alpha20: #f5f5f533; + --kda-color-neutral-n1-alpha30: #f5f5f54d; + --kda-color-neutral-n1-alpha40: #f5f5f566; + --kda-color-neutral-n1-alpha50: #f5f5f580; + --kda-color-neutral-n1-alpha80: #f5f5f5cc; + --kda-color-neutral-n1-alpha90: #f5f5f5e6; + --kda-color-neutral-n5: #e4e5e5; + --kda-color-neutral-n5-alpha80: #e4e5e5cc; + --kda-color-neutral-n5-alpha95: #e4e5e5f2; + --kda-color-neutral-n10: #d2d4d6; + --kda-color-neutral-n10-alpha80: #d2d4d6cc; + --kda-color-neutral-n15: #c1c4c6; + --kda-color-neutral-n20: #b0b3b7; + --kda-color-neutral-n20-alpha80: #b0b3b7cc; + --kda-color-neutral-n30: #9ea3a7; + --kda-color-neutral-n40: #8d9298; + --kda-color-neutral-n50: #7c8288; + --kda-color-neutral-n60: #6a7178; + --kda-color-neutral-n70: #596069; + --kda-color-neutral-n80: #475059; + --kda-color-neutral-n80-alpha80: #475059cc; + --kda-color-neutral-n85: #36404a; + --kda-color-neutral-n90: #252f3a; + --kda-color-neutral-n90-alpha20: #252f3a33; + --kda-color-neutral-n90-alpha25: #252f3a40; + --kda-color-neutral-n95: #131e2b; + --kda-color-neutral-n95-alpha80: #131e2bcc; + --kda-color-neutral-n95-alpha95: #131e2bf2; + --kda-color-neutral-n99: #020e1b; + --kda-color-neutral-n99-alpha0: #020e1b00; + --kda-color-neutral-n99-alpha1: #020e1b03; + --kda-color-neutral-n99-alpha3: #020e1b08; + --kda-color-neutral-n99-alpha4: #020e1b0a; + --kda-color-neutral-n99-alpha5: #020e1b0d; + --kda-color-neutral-n99-alpha6: #020e1b0f; + --kda-color-neutral-n99-alpha10: #020e1b1a; + --kda-color-neutral-n99-alpha20: #020e1b33; + --kda-color-neutral-n99-alpha30: #020e1b4d; + --kda-color-neutral-n99-alpha40: #020e1b66; + --kda-color-neutral-n99-alpha50: #020e1b80; + --kda-color-neutral-n99-alpha80: #020e1bcc; + --kda-color-neutral-n99-alpha90: #020e1be6; + --kda-color-neutral-n100: #000; + --kda-color-neutral-n100-alpha0: #0000; + --kda-color-neutral-n100-alpha10: #0000001a; + --kda-color-neutral-n100-alpha20: #0003; + --kda-color-neutral-n100-alpha40: #0006; + --kda-color-neutral-n100-alpha70: #000000b3; + --kda-color-neutral-n100-alpha80: #000c; + --kda-color-neutral-n100-alpha90: #000000e6; + --kda-color-neutral-n100-alpha95: #000000f2; + --kda-color-neutralwarm-n0: #fbfaf9; + --kda-color-neutralwarm-n1: #f0eae6; + --kda-color-neutralwarm-n1-alpha30: #f0eae64d; + --kda-color-neutralwarm-n1-alpha60: #f0eae699; + --kda-color-neutralwarm-n1-alpha80: #f0eae6cc; + --kda-color-neutralwarm-n1-alpha95: #f0eae6f2; + --kda-color-neutralwarm-n5: #ddd8d4; + --kda-color-neutralwarm-n10: #cbc6c2; + --kda-color-neutralwarm-n20: #b8b3b0; + --kda-color-neutralwarm-n30: #a5a19e; + --kda-color-neutralwarm-n40: #928f8c; + --kda-color-neutralwarm-n50: #807d7b; + --kda-color-neutralwarm-n60: #6d6a69; + --kda-color-neutralwarm-n70: #5a5857; + --kda-color-neutralwarm-n80: #474645; + --kda-color-neutralwarm-n90: #353433; + --kda-color-neutralwarm-n95: #222121; + --kda-color-neutralwarm-n99: #0f0f0f; + --kda-color-neutralwarm-n100: #050505; + --kda-color-palette-aqua-n0: #f0fffa; + --kda-color-palette-aqua-n1: #c9ffed; + --kda-color-palette-aqua-n5: #a1ffe0; + --kda-color-palette-aqua-n10: #7affd3; + --kda-color-palette-aqua-n20: #52ffc6; + --kda-color-palette-aqua-n20-alpha80: #52ffc6cc; + --kda-color-palette-aqua-n30: #4be9b5; + --kda-color-palette-aqua-n40: #44d2a3; + --kda-color-palette-aqua-n50: #3cbc92; + --kda-color-palette-aqua-n60: #35a580; + --kda-color-palette-aqua-n70: #2e8f6f; + --kda-color-palette-aqua-n80: #27795e; + --kda-color-palette-aqua-n80-alpha80: #27795ecc; + --kda-color-palette-aqua-n90: #20624c; + --kda-color-palette-aqua-n95: #184c3b; + --kda-color-palette-aqua-n99: #113529; + --kda-color-palette-aqua-n100: #0a1f18; + --kda-color-palette-blue-n0: #f0f8ff; + --kda-color-palette-blue-n1: #d6ebff; + --kda-color-palette-blue-n5: #bbdbf9; + --kda-color-palette-blue-n10: #a0cbf4; + --kda-color-palette-blue-n20: #86bcee; + --kda-color-palette-blue-n20-alpha20: #86bcee33; + --kda-color-palette-blue-n20-alpha80: #86bceecc; + --kda-color-palette-blue-n30: #6bace8; + --kda-color-palette-blue-n40: #509ce3; + --kda-color-palette-blue-n50: #358cdd; + --kda-color-palette-blue-n60: #2e7ac0; + --kda-color-palette-blue-n70: #2767a3; + --kda-color-palette-blue-n80: #205586; + --kda-color-palette-blue-n80-alpha20: #20558633; + --kda-color-palette-blue-n80-alpha80: #205586cc; + --kda-color-palette-blue-n90: #194268; + --kda-color-palette-blue-n95: #112c46; + --kda-color-palette-blue-n99: #0b1d2e; + --kda-color-palette-blue-n100: #06101a; + --kda-color-palette-celery-n0: #e9fce3; + --kda-color-palette-celery-n1: #cdfcbf; + --kda-color-palette-celery-n5: #aef69d; + --kda-color-palette-celery-n10: #96ee85; + --kda-color-palette-celery-n20: #72e06a; + --kda-color-palette-celery-n20-alpha20: #72e06a33; + --kda-color-palette-celery-n20-alpha80: #72e06acc; + --kda-color-palette-celery-n30: #4ecf50; + --kda-color-palette-celery-n40: #27bb36; + --kda-color-palette-celery-n50: #07a721; + --kda-color-palette-celery-n60: #009112; + --kda-color-palette-celery-n70: #007c0f; + --kda-color-palette-celery-n80: #00670f; + --kda-color-palette-celery-n80-alpha20: #00670f33; + --kda-color-palette-celery-n80-alpha80: #00670fcc; + --kda-color-palette-celery-n90: #00530d; + --kda-color-palette-celery-n95: #00400a; + --kda-color-palette-celery-n99: #003007; + --kda-color-palette-celery-n100: #001a04; + --kda-color-palette-green-n0: #e9f8ef; + --kda-color-palette-green-n1: #cef8e0; + --kda-color-palette-green-n5: #b8e7cf; + --kda-color-palette-green-n10: #a2d5be; + --kda-color-palette-green-n20: #8cc4ad; + --kda-color-palette-green-n30: #76b39b; + --kda-color-palette-green-n40: #60a18a; + --kda-color-palette-green-n50: #4a9079; + --kda-color-palette-green-n60: #3f806a; + --kda-color-palette-green-n70: #356f5a; + --kda-color-palette-green-n80: #2a5f4b; + --kda-color-palette-green-n90: #1f4f3c; + --kda-color-palette-green-n95: #153e2c; + --kda-color-palette-green-n99: #0a2e1d; + --kda-color-palette-green-n100: #061a10; + --kda-color-palette-magenta-n0: #fff7fa; + --kda-color-palette-magenta-n1: #ffeaf1; + --kda-color-palette-magenta-n5: #fbc7da; + --kda-color-palette-magenta-n10: #f6a4c3; + --kda-color-palette-magenta-n20: #f282ad; + --kda-color-palette-magenta-n30: #ed5f96; + --kda-color-palette-magenta-n40: #e93c7f; + --kda-color-palette-magenta-n50: #e41968; + --kda-color-palette-magenta-n60: #cf175e; + --kda-color-palette-magenta-n70: #ba1455; + --kda-color-palette-magenta-n80: #a5124b; + --kda-color-palette-magenta-n90: #901041; + --kda-color-palette-magenta-n95: #7b0d38; + --kda-color-palette-magenta-n99: #660b2e; + --kda-color-palette-magenta-n100: #470820; + --kda-color-palette-orange-n0: #fff7eb; + --kda-color-palette-orange-n1: #ffeccc; + --kda-color-palette-orange-n5: #ffdfad; + --kda-color-palette-orange-n10: #fdd291; + --kda-color-palette-orange-n20: #ffbb63; + --kda-color-palette-orange-n30: #f5a655; + --kda-color-palette-orange-n40: #ec9046; + --kda-color-palette-orange-n50: #e27b38; + --kda-color-palette-orange-n60: #cb5d00; + --kda-color-palette-orange-n70: #b14c00; + --kda-color-palette-orange-n80: #953d00; + --kda-color-palette-orange-n90: #7a2f00; + --kda-color-palette-orange-n95: #612300; + --kda-color-palette-orange-n99: #491901; + --kda-color-palette-orange-n100: #290e01; + --kda-color-palette-red-n0: #fff5f5; + --kda-color-palette-red-n1: #ffebe7; + --kda-color-palette-red-n5: #ffddd6; + --kda-color-palette-red-n10: #ffcdc3; + --kda-color-palette-red-n20: #ffb7a9; + --kda-color-palette-red-n20-alpha20: #ffb7a933; + --kda-color-palette-red-n20-alpha80: #ffb7a9cc; + --kda-color-palette-red-n30: #ff9b88; + --kda-color-palette-red-n40: #ff7c65; + --kda-color-palette-red-n50: #f75c46; + --kda-color-palette-red-n60: #ea3829; + --kda-color-palette-red-n70: #d31510; + --kda-color-palette-red-n80: #b40000; + --kda-color-palette-red-n80-alpha20: #b4000033; + --kda-color-palette-red-n80-alpha80: #b40000cc; + --kda-color-palette-red-n90: #930000; + --kda-color-palette-red-n95: #740000; + --kda-color-palette-red-n99: #590000; + --kda-color-palette-red-n100: #300; + --kda-color-palette-yellow-n0: #fbf8dd; + --kda-color-palette-yellow-n1: #fbf198; + --kda-color-palette-yellow-n5: #f8e750; + --kda-color-palette-yellow-n10: #f8d904; + --kda-color-palette-yellow-n20: #e8c600; + --kda-color-palette-yellow-n20-alpha20: #e8c60033; + --kda-color-palette-yellow-n20-alpha80: #e8c600cc; + --kda-color-palette-yellow-n30: #d7b300; + --kda-color-palette-yellow-n40: #c49f00; + --kda-color-palette-yellow-n50: #b08c00; + --kda-color-palette-yellow-n60: #9b7800; + --kda-color-palette-yellow-n70: #856600; + --kda-color-palette-yellow-n80: #705300; + --kda-color-palette-yellow-n80-alpha20: #70530033; + --kda-color-palette-yellow-n80-alpha80: #705300cc; + --kda-color-palette-yellow-n90: #5b4300; + --kda-color-palette-yellow-n95: #483300; + --kda-color-palette-yellow-n99: #362500; + --kda-color-palette-yellow-n100: #1a1100; + --kda-color-categorical-category1: #2898bd; + --kda-color-categorical-category1-hover: #227d9b; + --kda-color-categorical-category2: #5e4db2; + --kda-color-categorical-category2-hover: #352c63; + --kda-color-categorical-category3: #e56910; + --kda-color-categorical-category3-hover: #c25100; + --kda-color-categorical-category4: #943d73; + --kda-color-categorical-category4-hover: #50253f; + --kda-color-categorical-category5: #09326c; + --kda-color-categorical-category5-hover: #1c2b41; + --kda-color-categorical-category6: #8f7ee7; + --kda-color-categorical-category6-hover: #8270db; + --kda-color-categorical-category7: #50253f; + --kda-color-categorical-category7-hover: #3d2232; + --kda-color-categorical-category8: #a54800; + --kda-color-categorical-category8-hover: #702e00; + --kda-color-semantic-info-n0: #f0f8ff; + --kda-color-semantic-info-n1: #d6ebff; + --kda-color-semantic-info-n5: #bbdbf9; + --kda-color-semantic-info-n10: #a0cbf4; + --kda-color-semantic-info-n20: #86bcee; + --kda-color-semantic-info-n20-alpha20: #86bcee33; + --kda-color-semantic-info-n20-alpha80: #86bceecc; + --kda-color-semantic-info-n30: #6bace8; + --kda-color-semantic-info-n40: #509ce3; + --kda-color-semantic-info-n50: #358cdd; + --kda-color-semantic-info-n60: #2e7ac0; + --kda-color-semantic-info-n70: #2767a3; + --kda-color-semantic-info-n80: #205586; + --kda-color-semantic-info-n80-alpha20: #20558633; + --kda-color-semantic-info-n80-alpha80: #205586cc; + --kda-color-semantic-info-n90: #194268; + --kda-color-semantic-info-n95: #112c46; + --kda-color-semantic-info-n99: #0b1d2e; + --kda-color-semantic-info-n100: #06101a; + --kda-color-semantic-negative-n0: #fff5f5; + --kda-color-semantic-negative-n1: #ffebe7; + --kda-color-semantic-negative-n5: #ffddd6; + --kda-color-semantic-negative-n10: #ffcdc3; + --kda-color-semantic-negative-n20: #ffb7a9; + --kda-color-semantic-negative-n20-alpha20: #ffb7a933; + --kda-color-semantic-negative-n20-alpha80: #ffb7a9cc; + --kda-color-semantic-negative-n30: #ff9b88; + --kda-color-semantic-negative-n40: #ff7c65; + --kda-color-semantic-negative-n50: #f75c46; + --kda-color-semantic-negative-n60: #ea3829; + --kda-color-semantic-negative-n70: #d31510; + --kda-color-semantic-negative-n80: #b40000; + --kda-color-semantic-negative-n80-alpha20: #b4000033; + --kda-color-semantic-negative-n80-alpha80: #b40000cc; + --kda-color-semantic-negative-n90: #930000; + --kda-color-semantic-negative-n95: #740000; + --kda-color-semantic-negative-n99: #590000; + --kda-color-semantic-negative-n100: #300; + --kda-color-semantic-positive-n0: #e9fce3; + --kda-color-semantic-positive-n1: #cdfcbf; + --kda-color-semantic-positive-n5: #aef69d; + --kda-color-semantic-positive-n10: #96ee85; + --kda-color-semantic-positive-n20: #72e06a; + --kda-color-semantic-positive-n20-alpha20: #72e06a33; + --kda-color-semantic-positive-n20-alpha80: #72e06acc; + --kda-color-semantic-positive-n30: #4ecf50; + --kda-color-semantic-positive-n40: #27bb36; + --kda-color-semantic-positive-n50: #07a721; + --kda-color-semantic-positive-n60: #009112; + --kda-color-semantic-positive-n70: #007c0f; + --kda-color-semantic-positive-n80: #00670f; + --kda-color-semantic-positive-n80-alpha20: #00670f33; + --kda-color-semantic-positive-n80-alpha80: #00670fcc; + --kda-color-semantic-positive-n90: #00530d; + --kda-color-semantic-positive-n95: #00400a; + --kda-color-semantic-positive-n99: #003007; + --kda-color-semantic-positive-n100: #001a04; + --kda-color-semantic-warning-n0: #fbf8dd; + --kda-color-semantic-warning-n1: #fbf198; + --kda-color-semantic-warning-n5: #f8e750; + --kda-color-semantic-warning-n10: #f8d904; + --kda-color-semantic-warning-n20: #e8c600; + --kda-color-semantic-warning-n20-alpha20: #e8c60033; + --kda-color-semantic-warning-n20-alpha80: #e8c600cc; + --kda-color-semantic-warning-n30: #d7b300; + --kda-color-semantic-warning-n40: #c49f00; + --kda-color-semantic-warning-n50: #b08c00; + --kda-color-semantic-warning-n60: #9b7800; + --kda-color-semantic-warning-n70: #856600; + --kda-color-semantic-warning-n80: #705300; + --kda-color-semantic-warning-n80-alpha20: #70530033; + --kda-color-semantic-warning-n80-alpha80: #705300cc; + --kda-color-semantic-warning-n90: #5b4300; + --kda-color-semantic-warning-n95: #483300; + --kda-color-semantic-warning-n99: #362500; + --kda-color-semantic-warning-n100: #1a1100; + --kda-color-text-base: #000000f2; + --kda-color-text-base-init: #000; + --kda-color-text-base-hover: #131e2b; + --kda-color-text-base-focus: #020e1b; + --kda-color-text-base-active: #000; + --kda-color-text-base-disabled: #0006; + --kda-color-text-base-selected: #000; + --kda-color-text-base-inverse: #fffffff2; + --kda-color-text-base-inverse-init: #fff; + --kda-color-text-base-inverse-hover: #e4e5e5; + --kda-color-text-base-inverse-focus: #f5f5f5; + --kda-color-text-base-inverse-active: #fff; + --kda-color-text-base-inverse-disabled: #fff6; + --kda-color-text-base-inverse-selected: #fff; + --kda-color-text-subtle: #000c; + --kda-color-text-subtle-hover: #000000f2; + --kda-color-text-subtle-inverse: #fffffff2; + --kda-color-text-subtlest: #000000b3; + --kda-color-text-subtlest-hover: #000c; + --kda-color-text-subtlest-inverse: #ffffffb3; + --kda-color-text-gray: #0006; + --kda-color-text-gray-lighter: #6a7178; + --kda-color-text-gray-bolder: #475059; + --kda-color-text-gray-inverse: #fff6; + --kda-color-text-gray-inverse-lighter: #8d9298; + --kda-color-text-gray-inverse-bolder: #b0b3b7; + --kda-color-text-brand-wordmark: #0f0f0f; + --kda-color-text-brand-wordmark-inverse: #f0eae6; + --kda-color-text-brand-primary: #1f4f3c; + --kda-color-text-brand-primary-hover: #153e2c; + --kda-color-text-brand-primary-focus: #0a2e1d; + --kda-color-text-brand-primary-inverse: #a2d5be; + --kda-color-text-brand-primary-inverse-hover: #b8e7cf; + --kda-color-text-brand-primary-inverse-focus: #cef8e0; + --kda-color-text-brand-secondary: #194268; + --kda-color-text-brand-secondary-hover: #112c46; + --kda-color-text-brand-secondary-focus: #0b1d2e; + --kda-color-text-brand-secondary-inverse: #a0cbf4; + --kda-color-text-brand-secondary-inverse-hover: #bbdbf9; + --kda-color-text-brand-secondary-inverse-focus: #d6ebff; + --kda-color-text-accent-primary: #000; + --kda-color-text-accent-primary-hover: #131e2b; + --kda-color-text-accent-primary-focus: #020e1b; + --kda-color-text-accent-primary-active: #000; + --kda-color-text-accent-primary-inverse: #fff; + --kda-color-text-accent-primary-inverse-hover: #e4e5e5; + --kda-color-text-accent-primary-inverse-focus: #f5f5f5; + --kda-color-text-accent-primary-inverse-active: #fff; + --kda-color-text-semantic-positive: #003007; + --kda-color-text-semantic-positive-hover: #001a04; + --kda-color-text-semantic-positive-focus: #001a04; + --kda-color-text-semantic-positive-inverse: #cdfcbf; + --kda-color-text-semantic-positive-inverse-hover: #e9fce3; + --kda-color-text-semantic-positive-inverse-focus: #e9fce3; + --kda-color-text-semantic-negative: #590000; + --kda-color-text-semantic-negative-hover: #300; + --kda-color-text-semantic-negative-focus: #300; + --kda-color-text-semantic-negative-inverse: #ffebe7; + --kda-color-text-semantic-negative-inverse-hover: #fff5f5; + --kda-color-text-semantic-negative-inverse-focus: #fff5f5; + --kda-color-text-semantic-warning: #362500; + --kda-color-text-semantic-warning-hover: #1a1100; + --kda-color-text-semantic-warning-focus: #1a1100; + --kda-color-text-semantic-warning-inverse: #fbf198; + --kda-color-text-semantic-warning-inverse-hover: #fbf8dd; + --kda-color-text-semantic-warning-inverse-focus: #fbf8dd; + --kda-color-text-semantic-info: #0b1d2e; + --kda-color-text-semantic-info-hover: #06101a; + --kda-color-text-semantic-info-focus: #06101a; + --kda-color-text-semantic-info-inverse: #d6ebff; + --kda-color-text-semantic-info-inverse-hover: #f0f8ff; + --kda-color-text-semantic-info-inverse-focus: #f0f8ff; + --kda-effect-default-blur: 0.5rem; + --kda-effect-shadow-level1: 4px 0.5rem 0.5rem 4px #000; + --kda-effect-shadow-level2: 4rem 4rem 0.5rem 2rem #000; + --kda-effect-shadow-level3: 0px 0px 0.5rem 24px #000; + --kda-layout-content-min-width: 33.75rem; + --kda-layout-content-max-width: 42.5rem; + --kda-radius-no: 0px; + --kda-radius-xs: 2px; + --kda-radius-sm: 4px; + --kda-radius-md: 6px; + --kda-radius-lg: 8px; + --kda-radius-xl: 16px; + --kda-radius-xxl: 24px; + --kda-radius-xs-outline: 3px; + --kda-radius-sm-outline: 5px; + --kda-radius-md-outline: 7px; + --kda-radius-round: 999rem; + --kda-screen-resolutions-width-mobile-apple-iphone-se: 320; + --kda-screen-resolutions-width-mobile-apple-iphone-8: 375; + --kda-screen-resolutions-width-mobile-apple-iphone-11: 375; + --kda-screen-resolutions-width-mobile-apple-iphone-11-pro: 414; + --kda-screen-resolutions-width-mobile-samsung-galaxy-s9: 360; + --kda-screen-resolutions-width-tablet-apple-ipad-mini: 768; + --kda-screen-resolutions-width-tablet-apple-ipad: 810; + --kda-screen-resolutions-width-tablet-apple-ipad-pro: 1024; + --kda-screen-resolutions-width-laptop-mac-book-air: 1440; + --kda-screen-resolutions-width-laptop-mac-book-pro-13: 1280; + --kda-screen-resolutions-width-laptop-mac-book-pro-16: 3072; + --kda-screen-resolutions-width-desktop-small: 1024; + --kda-screen-resolutions-width-desktop-widescreen: 1280; + --kda-screen-resolutions-width-desktop-hd: 1366; + --kda-screen-resolutions-width-desktop-full-hd: 1920; + --kda-screen-resolutions-width-desktop-2k: 2560; + --kda-screen-resolutions-width-desktop-ultra-wide: 3440; + --kda-screen-resolutions-width-desktop-4k: 3840; + --kda-screen-resolutions-height-mobile-apple-iphone-se: 568; + --kda-screen-resolutions-height-mobile-apple-iphone-8: 667; + --kda-screen-resolutions-height-mobile-apple-iphone-11: 812; + --kda-screen-resolutions-height-mobile-apple-iphone-11-pro: 896; + --kda-screen-resolutions-height-mobile-samsung-galaxy-s9: 740; + --kda-screen-resolutions-height-tablet-apple-ipad-mini: 1024; + --kda-screen-resolutions-height-tablet-apple-ipad: 1080; + --kda-screen-resolutions-height-tablet-apple-ipad-pro: 1366; + --kda-screen-resolutions-height-laptop-mac-book-air: 900; + --kda-screen-resolutions-height-laptop-mac-book-pro-13: 800; + --kda-screen-resolutions-height-laptop-mac-book-pro-16: 1920; + --kda-screen-resolutions-height-desktop-small: 768; + --kda-screen-resolutions-height-desktop-widescreen: 800; + --kda-screen-resolutions-height-desktop-hd: 768; + --kda-screen-resolutions-height-desktop-full-hd: 1080; + --kda-screen-resolutions-height-desktop-2k: 1440; + --kda-screen-resolutions-height-desktop-ultra-wide: 1440; + --kda-screen-resolutions-height-desktop-4k: 2160; + --kda-size-n0: 0; + --kda-size-n1: 0.25rem; + --kda-size-n2: 0.5rem; + --kda-size-n3: 0.75rem; + --kda-size-n4: 1rem; + --kda-size-n5: 1.25rem; + --kda-size-n6: 1.5rem; + --kda-size-n7: 1.75rem; + --kda-size-n8: 2rem; + --kda-size-n9: 2.25rem; + --kda-size-n10: 2.5rem; + --kda-size-n11: 2.75rem; + --kda-size-n12: 3rem; + --kda-size-n13: 3.25rem; + --kda-size-n14: 3.5rem; + --kda-size-n15: 3.75rem; + --kda-size-n16: 4rem; + --kda-size-n17: 4.25rem; + --kda-size-n18: 4.5rem; + --kda-size-n19: 4.75rem; + --kda-size-n20: 5rem; + --kda-size-n24: 6rem; + --kda-size-n25: 6.25rem; + --kda-size-n30: 7.5rem; + --kda-size-n32: 8rem; + --kda-size-n35: 8.75rem; + --kda-size-n40: 10rem; + --kda-size-n48: 12rem; + --kda-size-n56: 14rem; + --kda-size-n64: 16rem; + --kda-spacing-no: 0; + --kda-spacing-xxs: 0.125rem; + --kda-spacing-xs: 0.25rem; + --kda-spacing-sm: 0.5rem; + --kda-spacing-md: 1rem; + --kda-spacing-lg: 1.5rem; + --kda-spacing-xl: 1.75rem; + --kda-spacing-xxl: 2.25rem; + --kda-spacing-xxxl: 2.5rem; + --kda-spacing-n0: 0; + --kda-spacing-n1: 0.25rem; + --kda-spacing-n2: 0.5rem; + --kda-spacing-n3: 0.75rem; + --kda-spacing-n4: 1rem; + --kda-spacing-n5: 1.25rem; + --kda-spacing-n6: 1.5rem; + --kda-spacing-n7: 1.75rem; + --kda-spacing-n8: 2rem; + --kda-spacing-n9: 2.25rem; + --kda-spacing-n10: 2.5rem; + --kda-spacing-n11: 2.75rem; + --kda-spacing-n12: 3rem; + --kda-spacing-n13: 3.25rem; + --kda-spacing-n14: 3.5rem; + --kda-spacing-n15: 3.75rem; + --kda-spacing-n16: 4rem; + --kda-spacing-n17: 4.25rem; + --kda-spacing-n18: 4.5rem; + --kda-spacing-n19: 4.75rem; + --kda-spacing-n20: 5rem; + --kda-spacing-n24: 6rem; + --kda-spacing-n25: 6.25rem; + --kda-spacing-n30: 7.5rem; + --kda-spacing-n32: 8rem; + --kda-spacing-n35: 8.75rem; + --kda-spacing-n40: 10rem; + --kda-spacing-n48: 12rem; + --kda-spacing-n56: 14rem; + --kda-spacing-n64: 16rem; + --kda-transition-delay-none: 0ms; + --kda-transition-duration-base: 400ms; + --kda-transition-duration-d200: 200ms; + --kda-transition-animation-ease-out-sine: 200ms cubic-bezier(0.61, 1, 0.88, 1); + --kda-transition-animation-ease-out-cubic: 200ms cubic-bezier(0.33, 1, 0.68, 1); + --kda-typography-family-primary-font: Inter; + --kda-typography-family-monospace-font: Kode Mono; + --kda-typography-font-size-xxs: 0.6875rem; + --kda-typography-font-size-xs: 0.75rem; + --kda-typography-font-size-sm: 0.875rem; + --kda-typography-font-size-base: 1rem; + --kda-typography-font-size-md: 1.125rem; + --kda-typography-font-size-lg: 1.25rem; + --kda-typography-font-size-xl: 1.5rem; + --kda-typography-font-size-2xl: 1.75rem; + --kda-typography-font-size-3xl: 2rem; + --kda-typography-font-size-4xl: 2.25rem; + --kda-typography-font-size-5xl: 2.5rem; + --kda-typography-font-size-6xl: 2.75rem; + --kda-typography-font-size-7xl: 3rem; + --kda-typography-font-size-8xl: 3.25rem; + --kda-typography-font-size-9xl: 3.75rem; + --kda-typography-font-size-10xl: 4.5rem; + --kda-typography-font-size-11xl: 5rem; + --kda-typography-font-size-12xl: 5.25rem; + --kda-typography-line-height-7xl: 3rem; + --kda-typography-line-height-4xl: 2.25rem; + --kda-typography-line-height-3xl: 2rem; + --kda-typography-line-height-2xl: 1.75rem; + --kda-typography-line-height-xl: 1.5rem; + --kda-typography-line-height-base: 1.25rem; + --kda-typography-line-height-md: 1rem; + --kda-typography-line-height-sm: 0.875rem; + --kda-typography-weight-primary-font-light: 300; + --kda-typography-weight-primary-font-regular: 400; + --kda-typography-weight-primary-font-medium: 500; + --kda-typography-weight-primary-font-semi-bold: 600; + --kda-typography-weight-primary-font-bold: 700; + --kda-typography-weight-monospace-font-regular: 400; + --kda-typography-weight-monospace-font-medium: 500; + --kda-typography-weight-monospace-font-semi-bold: 600; + --kda-typography-weight-monospace-font-bold: 700; + --kda-z-index-deepdive: -99999; + --kda-z-index: 1; + --kda-z-index-dialog: 6000; + --kda-z-index-surface: 4; + --kda-z-index-dropdown: 7000; + --kda-z-index-modal: 9000; + --kda-z-index-overlay: 8000; + --kda-z-index-popup: 5000; + --kda-z-index-spinner: 9050; + --kda-z-index-sticky: 100; + --kda-z-index-toast: 10000; + + &.dark { + --kda-explorer-alert-surface-text: #d6ebff; + --kda-explorer-alert-background: #061a10; + --kda-explorer-alert-background-semantic-positive: #001a04; + --kda-explorer-alert-background-semantic-negative: #300; + --kda-explorer-alert-background-semantic-warning: #1a1100; + --kda-explorer-alert-background-semantic-info: #06101a; + --kda-explorer-alert-loading: #a0cbf4; + --kda-explorer-button-background-color: #52ffc6; + --kda-explorer-button-surface-color: #000; + --kda-explorer-hero-banner-title-font-size: 1.5rem; + --kda-explorer-hero-banner-title-font-weight: 500; + --kda-explorer-hero-banner-title-font-line-height: 1.5rem; + --kda-explorer-hero-banner-title-font-color-name: #fff; + --kda-explorer-hero-banner-title-font-color-prefix: #fff6; + --kda-explorer-hero-banner-title-font-color-selector: #fff; + --kda-explorer-hero-banner-title-margin-gap: 1rem; + --kda-explorer-hero-banner-title-margin-bottom: 1rem; + --kda-explorer-hero-banner-border: 1px solid #4a9079; + --kda-explorer-hero-banner-radius: 2px; + --kda-explorer-hero-banner-background: #4a9079; + --kda-explorer-hero-banner-padding: 1rem; + --kda-explorer-hero-banner-column-width: 100%; + --kda-explorer-hero-banner-column-gap: 2rem; + --kda-explorer-hero-banner-button-dimensions-radius: 0px; + --kda-explorer-hero-banner-button-default-background: #52ffc6; + --kda-explorer-hero-banner-button-default-surface: #000; + --kda-explorer-hero-banner-button-hover-background: #52ffc6; + --kda-explorer-hero-banner-button-hover-surface: #000; + --kda-explorer-hero-banner-button-active-background: #4be9b5; + --kda-explorer-hero-banner-button-active-surface: #131e2b; + --kda-explorer-input-dimensions-radius-base: 0px; + --kda-explorer-input-border-color-semantic-negative: #ff7c65; + --kda-explorer-input-border-color-focus: #4a9079; + --kda-explorer-navigation-background-active: #2a5f4b; + --kda-explorer-navigation-surface-text: #cef8e0; + --kda-explorer-navigation-surface-text-selected: #e9f8ef; + --kda-explorer-toast-surface-text: #d6ebff; + --kda-explorer-toast-background: #061a10; + --kda-explorer-toast-background-semantic-positive: #001a04; + --kda-explorer-toast-background-semantic-negative: #300; + --kda-explorer-toast-background-semantic-warning: #1a1100; + --kda-explorer-toast-background-semantic-info: #06101a; + --kda-explorer-toast-loading: #a0cbf4; + --kda-explorer-top-bar-font-size: 0.75rem; + --kda-explorer-widget-stats-background: #0006; + --kda-explorer-widget-stats-background-hover: #061a10; + --kda-explorer-widget-stats-background-focus: #061a10; + --kda-explorer-widget-stats-background-visited: #061a10; + --kda-explorer-widget-stats-surface-text-subtle: #fffc; + --kda-explorer-widget-stats-surface-text: #a2d5be; + --kda-explorer-widget-stats-surface-icon-color: #4a9079; + --kda-border-width-hairline: 1px; + --kda-border-width-normal: 2px; + --kda-border-width-thick: 4px; + --kda-border-hairline: 1px solid #d2d4d640; + --kda-border-normal: 2px solid #f5f5f580; + --kda-border-thick: 4px solid #f5f5f580; + --kda-breakpoint-xs: 0rem; + --kda-breakpoint-sm: 40rem; + --kda-breakpoint-md: 48rem; + --kda-breakpoint-lg: 64rem; + --kda-breakpoint-xl: 80rem; + --kda-breakpoint-xxl: 96rem; + --kda-color-accent-blue: #358cdd; + --kda-color-accent-celery: #07a721; + --kda-color-accent-green: #4a9079; + --kda-color-accent-magenta: #e41968; + --kda-color-accent-orange: #e27b38; + --kda-color-accent-red: #f75c46; + --kda-color-accent-yellow: #b08c00; + --kda-color-accent-brand-primary: #4a9079; + --kda-color-accent-brand-secondary: #358cdd; + --kda-color-accent-brand-tertiary: #e27b38; + --kda-color-accent-brand-tint-primary: #27795e; + --kda-color-accent-brand-tint-secondary: #e41968; + --kda-color-accent-brand-tint-tertiary: #e27b38; + --kda-color-accent-semantic-info: #358cdd; + --kda-color-accent-semantic-warning: #b08c00; + --kda-color-accent-semantic-positive: #07a721; + --kda-color-accent-semantic-negative: #f75c46; + --kda-color-background-base: #020e1b; + --kda-color-background-base-warm: #0f0f0f; + --kda-color-background-base-hover: #252f3a; + --kda-color-background-base-focus: #131e2bcc; + --kda-color-background-base-active: #131e2b; + --kda-color-background-base-disabled: #ffffff1a; + --kda-color-background-base-inverse: #f5f5f5; + --kda-color-background-base-inverse-warm: #f0eae6; + --kda-color-background-base-inverse-hover: #d2d4d6; + --kda-color-background-base-inverse-focus: #e4e5e5cc; + --kda-color-background-base-inverse-disabled: #0000001a; + --kda-color-background-layer: #131e2bcc; + --kda-color-background-layer-solid: #131e2b; + --kda-color-background-overlay: #131e2bf2; + --kda-color-background-overlay-context: #131e2bf2; + --kda-color-background-overlay-hover: #131e2b; + --kda-color-background-surface: #f5f5f50f; + --kda-color-background-surface-inverse: #f5f5f5cc; + --kda-color-background-surface-subtle: #0003; + --kda-color-background-surface-subtle-inverse: #f5f5f5cc; + --kda-color-background-surface-high-contrast: #000000e6; + --kda-color-background-surface-high-contrast-inverse: #ffffffe6; + --kda-color-background-brand-primary: #153e2c; + --kda-color-background-brand-primary-subtle: #0a2e1d; + --kda-color-background-brand-primary-subtlest: #061a10; + --kda-color-background-brand-primary-hover: #1f4f3c; + --kda-color-background-brand-primary-focus: #2a5f4b; + --kda-color-background-brand-primary-active: #356f5a; + --kda-color-background-brand-primary-inverse: #b8e7cf; + --kda-color-background-brand-primary-inverse-subtle: #cef8e0; + --kda-color-background-brand-primary-inverse-subtlest: #e9f8ef; + --kda-color-background-brand-primary-inverse-hover: #a2d5be; + --kda-color-background-brand-primary-inverse-focus: #8cc4ad; + --kda-color-background-brand-primary-inverse-active: #76b39b; + --kda-color-background-brand-secondary: #112c46; + --kda-color-background-brand-secondary-subtle: #0b1d2e; + --kda-color-background-brand-secondary-subtlest: #06101a; + --kda-color-background-brand-secondary-hover: #112c46; + --kda-color-background-brand-secondary-focus: #194268; + --kda-color-background-brand-secondary-active: #205586; + --kda-color-background-brand-secondary-inverse: #bbdbf9; + --kda-color-background-brand-secondary-inverse-subtle: #d6ebff; + --kda-color-background-brand-secondary-inverse-subtlest: #f0f8ff; + --kda-color-background-brand-secondary-inverse-hover: #bbdbf9; + --kda-color-background-brand-secondary-inverse-focus: #a0cbf4; + --kda-color-background-brand-secondary-inverse-active: #86bcee; + --kda-color-background-accent-primary: #27795e; + --kda-color-background-accent-primary-hover: #2e8f6f; + --kda-color-background-accent-primary-focus: #27795ecc; + --kda-color-background-accent-primary-active: #20624c; + --kda-color-background-accent-primary-inverse: #52ffc6; + --kda-color-background-accent-primary-inverse-hover: #4be9b5; + --kda-color-background-accent-primary-inverse-focus: #52ffc6cc; + --kda-color-background-accent-primary-inverse-active: #52ffc6; + --kda-color-background-accent-secondary: #e41968; + --kda-color-background-accent-secondary-hover: #e93c7f; + --kda-color-background-accent-secondary-focus: #e93c7f; + --kda-color-background-accent-secondary-active: #e93c7f; + --kda-color-background-accent-secondary-inverse: #e41968; + --kda-color-background-accent-secondary-inverse-hover: #cf175e; + --kda-color-background-accent-secondary-inverse-focus: #cf175e; + --kda-color-background-accent-secondary-inverse-active: #cf175e; + --kda-color-background-accent-tertiary: #e27b38; + --kda-color-background-accent-tertiary-hover: #ec9046; + --kda-color-background-accent-tertiary-focus: #ec9046; + --kda-color-background-accent-tertiary-active: #ec9046; + --kda-color-background-accent-tertiary-inverse: #e27b38; + --kda-color-background-accent-tertiary-inverse-hover: #cb5d00; + --kda-color-background-accent-tertiary-inverse-focus: #cb5d00; + --kda-color-background-accent-tertiary-inverse-active: #cb5d00; + --kda-color-background-semantic-positive: #00670f; + --kda-color-background-semantic-positive-subtle: #00670f33; + --kda-color-background-semantic-positive-subtlest: #001a04; + --kda-color-background-semantic-positive-hover: #007c0f; + --kda-color-background-semantic-positive-focus: #00670fcc; + --kda-color-background-semantic-positive-active: #00530d; + --kda-color-background-semantic-positive-inverse: #72e06a; + --kda-color-background-semantic-positive-inverse-subtle: #72e06a33; + --kda-color-background-semantic-positive-inverse-subtlest: #e9fce3; + --kda-color-background-semantic-positive-inverse-hover: #4ecf50; + --kda-color-background-semantic-positive-inverse-focus: #72e06acc; + --kda-color-background-semantic-positive-inverse-active: #96ee85; + --kda-color-background-semantic-negative: #b40000; + --kda-color-background-semantic-negative-subtle: #b4000033; + --kda-color-background-semantic-negative-subtlest: #300; + --kda-color-background-semantic-negative-hover: #d31510; + --kda-color-background-semantic-negative-focus: #b40000cc; + --kda-color-background-semantic-negative-active: #930000; + --kda-color-background-semantic-negative-inverse: #ffb7a9; + --kda-color-background-semantic-negative-inverse-subtle: #ffb7a933; + --kda-color-background-semantic-negative-inverse-subtlest: #fff5f5; + --kda-color-background-semantic-negative-inverse-hover: #ff9b88; + --kda-color-background-semantic-negative-inverse-focus: #ffb7a9cc; + --kda-color-background-semantic-negative-inverse-active: #ffcdc3; + --kda-color-background-semantic-warning: #705300; + --kda-color-background-semantic-warning-subtle: #70530033; + --kda-color-background-semantic-warning-subtlest: #1a1100; + --kda-color-background-semantic-warning-hover: #856600; + --kda-color-background-semantic-warning-focus: #705300cc; + --kda-color-background-semantic-warning-active: #5b4300; + --kda-color-background-semantic-warning-inverse: #e8c600; + --kda-color-background-semantic-warning-inverse-subtle: #e8c60033; + --kda-color-background-semantic-warning-inverse-subtlest: #fbf8dd; + --kda-color-background-semantic-warning-inverse-hover: #d7b300; + --kda-color-background-semantic-warning-inverse-focus: #e8c600cc; + --kda-color-background-semantic-warning-inverse-active: #f8d904; + --kda-color-background-semantic-info: #205586; + --kda-color-background-semantic-info-subtle: #20558633; + --kda-color-background-semantic-info-subtlest: #06101a; + --kda-color-background-semantic-info-hover: #2767a3; + --kda-color-background-semantic-info-focus: #205586cc; + --kda-color-background-semantic-info-active: #194268; + --kda-color-background-semantic-info-inverse: #86bcee; + --kda-color-background-semantic-info-inverse-subtle: #86bcee33; + --kda-color-background-semantic-info-inverse-subtlest: #f0f8ff; + --kda-color-background-semantic-info-inverse-hover: #6bace8; + --kda-color-background-semantic-info-inverse-focus: #86bceecc; + --kda-color-background-semantic-info-inverse-active: #a0cbf4; + --kda-color-background-input: #131e2bcc; + --kda-color-background-input-hover: #475059cc; + --kda-color-background-input-focus: #131e2bcc; + --kda-color-background-input-active: #131e2b; + --kda-color-background-input-disabled: #ffffff1a; + --kda-color-background-input-inverse: #b0b3b7cc; + --kda-color-background-input-inverse-hover: #d2d4d6; + --kda-color-background-input-inverse-focus: #e4e5e5cc; + --kda-color-background-input-inverse-active: #e4e5e5; + --kda-color-background-input-inverse-disabled: #0000001a; + --kda-color-background-skeleton: #475059cc; + --kda-color-background-table-row: #131e2bcc; + --kda-color-background-table-row-hover: #252f3acc; + --kda-color-border-base-subtle: #f5f5f51a; + --kda-color-border-base: #d2d4d640; + --kda-color-border-base-bold: #f5f5f580; + --kda-color-border-base-boldest: #ffffffb3; + --kda-color-border-base-high-contrast: #fff; + --kda-color-border-base-disabled: #475059; + --kda-color-border-base-hover: #475059; + --kda-color-border-base-focus: #8d9298; + --kda-color-border-base-active: #b0b3b7; + --kda-color-border-base-inverse-subtle: #020e1b1a; + --kda-color-border-base-inverse: #020e1b33; + --kda-color-border-base-inverse-bold: #0006; + --kda-color-border-base-inverse-boldest: #020e1b80; + --kda-color-border-base-inverse-high-contrast: #000; + --kda-color-border-base-inverse-disabled: #475059; + --kda-color-border-base-inverse-hover: #475059; + --kda-color-border-base-inverse-focus: #8d9298; + --kda-color-border-base-inverse-active: #b0b3b7; + --kda-color-border-brand-primary: #3f806a; + --kda-color-border-brand-primary-subtle: #2a5f4b; + --kda-color-border-brand-primary-hover: #60a18a; + --kda-color-border-brand-primary-focus: #76b39b; + --kda-color-border-brand-primary-inverse: #8cc4ad; + --kda-color-border-brand-primary-inverse-hover: #76b39b; + --kda-color-border-brand-primary-inverse-focus: #60a18a; + --kda-color-border-brand-secondary: #2e7ac0; + --kda-color-border-brand-secondary-subtle: #205586; + --kda-color-border-brand-secondary-hover: #509ce3; + --kda-color-border-brand-secondary-focus: #6bace8; + --kda-color-border-brand-secondary-inverse: #86bcee; + --kda-color-border-brand-secondary-inverse-hover: #6bace8; + --kda-color-border-brand-secondary-inverse-focus: #509ce3; + --kda-color-border-semantic-positive: #27bb36; + --kda-color-border-semantic-positive-subtle: #00400a; + --kda-color-border-semantic-positive-disabled: #00670f; + --kda-color-border-semantic-positive-hover: #4ecf50; + --kda-color-border-semantic-positive-focus: #27bb36; + --kda-color-border-semantic-positive-inverse: #009112; + --kda-color-border-semantic-positive-inverse-hover: #007c0f; + --kda-color-border-semantic-positive-inverse-focus: #00670f; + --kda-color-border-semantic-negative: #ff7c65; + --kda-color-border-semantic-negative-subtle: #740000; + --kda-color-border-semantic-negative-disabled: #b40000; + --kda-color-border-semantic-negative-hover: #ff9b88; + --kda-color-border-semantic-negative-focus: #ff7c65; + --kda-color-border-semantic-negative-inverse: #ea3829; + --kda-color-border-semantic-negative-inverse-hover: #d31510; + --kda-color-border-semantic-negative-inverse-focus: #b40000; + --kda-color-border-semantic-warning: #c49f00; + --kda-color-border-semantic-warning-subtle: #483300; + --kda-color-border-semantic-warning-disabled: #705300; + --kda-color-border-semantic-warning-hover: #d7b300; + --kda-color-border-semantic-warning-focus: #c49f00; + --kda-color-border-semantic-warning-inverse: #9b7800; + --kda-color-border-semantic-warning-inverse-hover: #856600; + --kda-color-border-semantic-warning-inverse-focus: #705300; + --kda-color-border-semantic-info: #509ce3; + --kda-color-border-semantic-info-subtle: #112c46; + --kda-color-border-semantic-info-disabled: #205586; + --kda-color-border-semantic-info-hover: #6bace8; + --kda-color-border-semantic-info-focus: #509ce3; + --kda-color-border-semantic-info-inverse: #2e7ac0; + --kda-color-border-semantic-info-inverse-hover: #2767a3; + --kda-color-border-semantic-info-inverse-focus: #205586; + --kda-color-border-tint-outline: #509ce3; + --kda-color-border-tint-focus: #27795ecc; + --kda-color-border-overlay-context: #475059cc; + --kda-color-brand-primary-n0: #061a10; + --kda-color-brand-primary-n1: #0a2e1d; + --kda-color-brand-primary-n5: #153e2c; + --kda-color-brand-primary-n10: #1f4f3c; + --kda-color-brand-primary-n20: #2a5f4b; + --kda-color-brand-primary-n30: #356f5a; + --kda-color-brand-primary-n40: #3f806a; + --kda-color-brand-primary-n50: #4a9079; + --kda-color-brand-primary-n60: #60a18a; + --kda-color-brand-primary-n70: #76b39b; + --kda-color-brand-primary-n80: #8cc4ad; + --kda-color-brand-primary-n90: #a2d5be; + --kda-color-brand-primary-n95: #b8e7cf; + --kda-color-brand-primary-n99: #cef8e0; + --kda-color-brand-primary-n100: #e9f8ef; + --kda-color-brand-secondary-n0: #06101a; + --kda-color-brand-secondary-n1: #0b1d2e; + --kda-color-brand-secondary-n5: #112c46; + --kda-color-brand-secondary-n10: #194268; + --kda-color-brand-secondary-n20: #205586; + --kda-color-brand-secondary-n30: #2767a3; + --kda-color-brand-secondary-n40: #2e7ac0; + --kda-color-brand-secondary-n50: #358cdd; + --kda-color-brand-secondary-n60: #509ce3; + --kda-color-brand-secondary-n70: #6bace8; + --kda-color-brand-secondary-n80: #86bcee; + --kda-color-brand-secondary-n90: #a0cbf4; + --kda-color-brand-secondary-n95: #bbdbf9; + --kda-color-brand-secondary-n99: #d6ebff; + --kda-color-brand-secondary-n100: #f0f8ff; + --kda-color-brand-tertiary-n0: #290e01; + --kda-color-brand-tertiary-n1: #491901; + --kda-color-brand-tertiary-n5: #612300; + --kda-color-brand-tertiary-n10: #7a2f00; + --kda-color-brand-tertiary-n20: #953d00; + --kda-color-brand-tertiary-n30: #b14c00; + --kda-color-brand-tertiary-n40: #cb5d00; + --kda-color-brand-tertiary-n50: #e27b38; + --kda-color-brand-tertiary-n60: #ec9046; + --kda-color-brand-tertiary-n70: #f5a655; + --kda-color-brand-tertiary-n80: #ffbb63; + --kda-color-brand-tertiary-n90: #fdd291; + --kda-color-brand-tertiary-n95: #ffdfad; + --kda-color-brand-tertiary-n99: #ffeccc; + --kda-color-brand-tertiary-n100: #fff7eb; + --kda-color-brand-key-primary: #4a9079; + --kda-color-brand-key-secondary: #0b1d2e; + --kda-color-brand-key-tertiary: #e27b38; + --kda-color-brand-key-accent: #e41968; + --kda-color-brand-key-neutralwarm: #0f0f0f; + --kda-color-brand-key-white: #f5f5f5; + --kda-color-brand-key-black: #020e1b; + --kda-color-gradient-base-subtle: linear-gradient( 90deg, #f5f5f5, #f5f5f500 ); + --kda-color-icon-base: #e4e5e5; + --kda-color-icon-base-bold: #f5f5f5; + --kda-color-icon-base-init: #f5f5f5; + --kda-color-icon-base-hover: #f5f5f580; + --kda-color-icon-base-focus: #f5f5f5; + --kda-color-icon-base-active: #fff; + --kda-color-icon-base-disabled: #fff3; + --kda-color-icon-base-inverse: #131e2b; + --kda-color-icon-base-inverse-bold: #020e1b; + --kda-color-icon-base-inverse-init: #020e1b; + --kda-color-icon-base-inverse-hover: #020e1b80; + --kda-color-icon-base-inverse-focus: #020e1b; + --kda-color-icon-base-inverse-active: #000; + --kda-color-icon-base-inverse-disabled: #0003; + --kda-color-icon-brand-logo: #4a9079; + --kda-color-icon-brand-logo-inverse: #f0eae6; + --kda-color-icon-brand-primary: #8cc4ad; + --kda-color-icon-brand-primary-bold: #a2d5be; + --kda-color-icon-brand-primary-hover: #76b39b; + --kda-color-icon-brand-primary-focus: #60a18a; + --kda-color-icon-brand-primary-active: #4a9079; + --kda-color-icon-brand-primary-disabled: #596069; + --kda-color-icon-brand-primary-inverse: #2a5f4b; + --kda-color-icon-brand-primary-inverse-hover: #356f5a; + --kda-color-icon-brand-primary-inverse-focus: #3f806a; + --kda-color-icon-brand-primary-inverse-active: #4a9079; + --kda-color-icon-brand-primary-inverse-disabled: #596069; + --kda-color-icon-brand-secondary: #86bcee; + --kda-color-icon-brand-secondary-bold: #a0cbf4; + --kda-color-icon-brand-secondary-hover: #6bace8; + --kda-color-icon-brand-secondary-focus: #509ce3; + --kda-color-icon-brand-secondary-active: #358cdd; + --kda-color-icon-brand-secondary-disabled: #596069; + --kda-color-icon-brand-secondary-inverse: #205586; + --kda-color-icon-brand-secondary-inverse-hover: #2767a3; + --kda-color-icon-brand-secondary-inverse-focus: #2e7ac0; + --kda-color-icon-brand-secondary-inverse-active: #358cdd; + --kda-color-icon-brand-secondary-inverse-disabled: #596069; + --kda-color-icon-semantic-positive: #72e06a; + --kda-color-icon-semantic-positive-hover: #4ecf50; + --kda-color-icon-semantic-positive-focus: #27bb36; + --kda-color-icon-semantic-positive-active: #07a721; + --kda-color-icon-semantic-positive-disabled: #596069; + --kda-color-icon-semantic-positive-inverse: #00670f; + --kda-color-icon-semantic-positive-inverse-hover: #007c0f; + --kda-color-icon-semantic-positive-inverse-focus: #009112; + --kda-color-icon-semantic-positive-inverse-active: #07a721; + --kda-color-icon-semantic-positive-inverse-disabled: #596069; + --kda-color-icon-semantic-negative: #ffb7a9; + --kda-color-icon-semantic-negative-hover: #ff9b88; + --kda-color-icon-semantic-negative-focus: #ff7c65; + --kda-color-icon-semantic-negative-active: #f75c46; + --kda-color-icon-semantic-negative-disabled: #596069; + --kda-color-icon-semantic-negative-inverse: #b40000; + --kda-color-icon-semantic-negative-inverse-hover: #d31510; + --kda-color-icon-semantic-negative-inverse-focus: #ea3829; + --kda-color-icon-semantic-negative-inverse-active: #f75c46; + --kda-color-icon-semantic-negative-inverse-disabled: #596069; + --kda-color-icon-semantic-warning: #e8c600; + --kda-color-icon-semantic-warning-hover: #d7b300; + --kda-color-icon-semantic-warning-focus: #c49f00; + --kda-color-icon-semantic-warning-active: #b08c00; + --kda-color-icon-semantic-warning-disabled: #596069; + --kda-color-icon-semantic-warning-inverse: #705300; + --kda-color-icon-semantic-warning-inverse-hover: #856600; + --kda-color-icon-semantic-warning-inverse-focus: #9b7800; + --kda-color-icon-semantic-warning-inverse-active: #b08c00; + --kda-color-icon-semantic-warning-inverse-disabled: #596069; + --kda-color-icon-semantic-info: #86bcee; + --kda-color-icon-semantic-info-hover: #6bace8; + --kda-color-icon-semantic-info-focus: #509ce3; + --kda-color-icon-semantic-info-active: #358cdd; + --kda-color-icon-semantic-info-disabled: #596069; + --kda-color-icon-semantic-info-inverse: #205586; + --kda-color-icon-semantic-info-inverse-hover: #2767a3; + --kda-color-icon-semantic-info-inverse-focus: #2e7ac0; + --kda-color-icon-semantic-info-inverse-active: #358cdd; + --kda-color-icon-semantic-info-inverse-disabled: #596069; + --kda-color-icon-product-spirekey-animation-start: #4a9079; + --kda-color-icon-product-spirekey-animation-step1: #4aa688; + --kda-color-icon-product-spirekey-animation-step2: #4bbd97; + --kda-color-icon-product-spirekey-animation-step3: #4bd3a6; + --kda-color-icon-product-spirekey-animation-end: #4be9b5; + --kda-color-link-base: #3cbc92; + --kda-color-link-base-hover: #4be9b5; + --kda-color-link-base-focus: #4be9b5; + --kda-color-link-base-visited: #f282ad; + --kda-color-link-brand-primary: #76b39b; + --kda-color-link-brand-primary-hover: #8cc4ad; + --kda-color-link-brand-primary-focus: #60a18a; + --kda-color-link-brand-primary-visited: #f282ad; + --kda-color-link-brand-secondary: #6bace8; + --kda-color-link-brand-secondary-hover: #86bcee; + --kda-color-link-brand-secondary-focus: #509ce3; + --kda-color-link-brand-secondary-visited: #f282ad; + --kda-color-link-semantic-positive: #96ee85; + --kda-color-link-semantic-positive-hover: #aef69d; + --kda-color-link-semantic-positive-focus: #72e06a; + --kda-color-link-semantic-positive-visited: #f282ad; + --kda-color-link-semantic-negative: #ffcdc3; + --kda-color-link-semantic-negative-hover: #ffddd6; + --kda-color-link-semantic-negative-focus: #ffb7a9; + --kda-color-link-semantic-negative-visited: #f282ad; + --kda-color-link-semantic-warning: #f8d904; + --kda-color-link-semantic-warning-hover: #f8e750; + --kda-color-link-semantic-warning-focus: #e8c600; + --kda-color-link-semantic-warning-visited: #f282ad; + --kda-color-link-semantic-info: #a0cbf4; + --kda-color-link-semantic-info-hover: #bbdbf9; + --kda-color-link-semantic-info-focus: #86bcee; + --kda-color-link-semantic-info-visited: #f282ad; + --kda-color-neutral-n0: #000; + --kda-color-neutral-n0-alpha0: #0000; + --kda-color-neutral-n0-alpha10: #0000001a; + --kda-color-neutral-n0-alpha20: #0003; + --kda-color-neutral-n0-alpha40: #0006; + --kda-color-neutral-n0-alpha70: #000000b3; + --kda-color-neutral-n0-alpha80: #000c; + --kda-color-neutral-n0-alpha90: #000000e6; + --kda-color-neutral-n0-alpha95: #000000f2; + --kda-color-neutral-n1: #020e1b; + --kda-color-neutral-n1-alpha0: #020e1b00; + --kda-color-neutral-n1-alpha1: #020e1b03; + --kda-color-neutral-n1-alpha3: #020e1b08; + --kda-color-neutral-n1-alpha4: #020e1b0a; + --kda-color-neutral-n1-alpha5: #020e1b0d; + --kda-color-neutral-n1-alpha6: #020e1b0f; + --kda-color-neutral-n1-alpha10: #020e1b1a; + --kda-color-neutral-n1-alpha20: #020e1b33; + --kda-color-neutral-n1-alpha30: #020e1b4d; + --kda-color-neutral-n1-alpha40: #020e1b66; + --kda-color-neutral-n1-alpha50: #020e1b80; + --kda-color-neutral-n1-alpha80: #020e1bcc; + --kda-color-neutral-n1-alpha90: #020e1be6; + --kda-color-neutral-n5: #131e2b; + --kda-color-neutral-n5-alpha80: #131e2bcc; + --kda-color-neutral-n5-alpha95: #131e2bf2; + --kda-color-neutral-n10: #252f3a; + --kda-color-neutral-n10-alpha80: #252f3acc; + --kda-color-neutral-n15: #36404a; + --kda-color-neutral-n20: #475059; + --kda-color-neutral-n20-alpha80: #475059cc; + --kda-color-neutral-n30: #596069; + --kda-color-neutral-n40: #6a7178; + --kda-color-neutral-n50: #7c8288; + --kda-color-neutral-n60: #8d9298; + --kda-color-neutral-n70: #9ea3a7; + --kda-color-neutral-n80: #b0b3b7; + --kda-color-neutral-n80-alpha80: #b0b3b7cc; + --kda-color-neutral-n85: #c1c4c6; + --kda-color-neutral-n90: #d2d4d6; + --kda-color-neutral-n90-alpha20: #d2d4d633; + --kda-color-neutral-n90-alpha25: #d2d4d640; + --kda-color-neutral-n95: #e4e5e5; + --kda-color-neutral-n95-alpha80: #e4e5e5cc; + --kda-color-neutral-n95-alpha95: #e4e5e5f2; + --kda-color-neutral-n99: #f5f5f5; + --kda-color-neutral-n99-alpha0: #f5f5f500; + --kda-color-neutral-n99-alpha1: #f5f5f503; + --kda-color-neutral-n99-alpha3: #f5f5f508; + --kda-color-neutral-n99-alpha4: #f5f5f50a; + --kda-color-neutral-n99-alpha5: #f5f5f50d; + --kda-color-neutral-n99-alpha6: #f5f5f50f; + --kda-color-neutral-n99-alpha10: #f5f5f51a; + --kda-color-neutral-n99-alpha20: #f5f5f533; + --kda-color-neutral-n99-alpha30: #f5f5f54d; + --kda-color-neutral-n99-alpha40: #f5f5f566; + --kda-color-neutral-n99-alpha50: #f5f5f580; + --kda-color-neutral-n99-alpha80: #f5f5f5cc; + --kda-color-neutral-n99-alpha90: #f5f5f5e6; + --kda-color-neutral-n100: #fff; + --kda-color-neutral-n100-alpha0: #fff0; + --kda-color-neutral-n100-alpha10: #ffffff1a; + --kda-color-neutral-n100-alpha20: #fff3; + --kda-color-neutral-n100-alpha40: #fff6; + --kda-color-neutral-n100-alpha70: #ffffffb3; + --kda-color-neutral-n100-alpha80: #fffc; + --kda-color-neutral-n100-alpha90: #ffffffe6; + --kda-color-neutral-n100-alpha95: #fffffff2; + --kda-color-neutralwarm-n0: #050505; + --kda-color-neutralwarm-n1: #0f0f0f; + --kda-color-neutralwarm-n1-alpha30: #0f0f0f4d; + --kda-color-neutralwarm-n1-alpha60: #0f0f0f99; + --kda-color-neutralwarm-n1-alpha80: #0f0f0fcc; + --kda-color-neutralwarm-n1-alpha95: #0f0f0ff2; + --kda-color-neutralwarm-n5: #222121; + --kda-color-neutralwarm-n10: #353433; + --kda-color-neutralwarm-n20: #474645; + --kda-color-neutralwarm-n30: #5a5857; + --kda-color-neutralwarm-n40: #6d6a69; + --kda-color-neutralwarm-n50: #807d7b; + --kda-color-neutralwarm-n60: #928f8c; + --kda-color-neutralwarm-n70: #a5a19e; + --kda-color-neutralwarm-n80: #b8b3b0; + --kda-color-neutralwarm-n90: #cbc6c2; + --kda-color-neutralwarm-n95: #ddd8d4; + --kda-color-neutralwarm-n99: #f0eae6; + --kda-color-neutralwarm-n100: #fbfaf9; + --kda-color-palette-aqua-n0: #0a1f18; + --kda-color-palette-aqua-n1: #113529; + --kda-color-palette-aqua-n5: #184c3b; + --kda-color-palette-aqua-n10: #20624c; + --kda-color-palette-aqua-n20: #27795e; + --kda-color-palette-aqua-n20-alpha80: #27795ecc; + --kda-color-palette-aqua-n30: #2e8f6f; + --kda-color-palette-aqua-n40: #35a580; + --kda-color-palette-aqua-n50: #3cbc92; + --kda-color-palette-aqua-n60: #44d2a3; + --kda-color-palette-aqua-n70: #4be9b5; + --kda-color-palette-aqua-n80: #52ffc6; + --kda-color-palette-aqua-n80-alpha80: #52ffc6cc; + --kda-color-palette-aqua-n90: #7affd3; + --kda-color-palette-aqua-n95: #a1ffe0; + --kda-color-palette-aqua-n99: #c9ffed; + --kda-color-palette-aqua-n100: #f0fffa; + --kda-color-palette-blue-n0: #06101a; + --kda-color-palette-blue-n1: #0b1d2e; + --kda-color-palette-blue-n5: #112c46; + --kda-color-palette-blue-n10: #194268; + --kda-color-palette-blue-n20: #205586; + --kda-color-palette-blue-n20-alpha20: #20558633; + --kda-color-palette-blue-n20-alpha80: #205586cc; + --kda-color-palette-blue-n30: #2767a3; + --kda-color-palette-blue-n40: #2e7ac0; + --kda-color-palette-blue-n50: #358cdd; + --kda-color-palette-blue-n60: #509ce3; + --kda-color-palette-blue-n70: #6bace8; + --kda-color-palette-blue-n80: #86bcee; + --kda-color-palette-blue-n80-alpha20: #86bcee33; + --kda-color-palette-blue-n80-alpha80: #86bceecc; + --kda-color-palette-blue-n90: #a0cbf4; + --kda-color-palette-blue-n95: #bbdbf9; + --kda-color-palette-blue-n99: #d6ebff; + --kda-color-palette-blue-n100: #f0f8ff; + --kda-color-palette-celery-n0: #001a04; + --kda-color-palette-celery-n1: #003007; + --kda-color-palette-celery-n5: #00400a; + --kda-color-palette-celery-n10: #00530d; + --kda-color-palette-celery-n20: #00670f; + --kda-color-palette-celery-n20-alpha20: #00670f33; + --kda-color-palette-celery-n20-alpha80: #00670fcc; + --kda-color-palette-celery-n30: #007c0f; + --kda-color-palette-celery-n40: #009112; + --kda-color-palette-celery-n50: #07a721; + --kda-color-palette-celery-n60: #27bb36; + --kda-color-palette-celery-n70: #4ecf50; + --kda-color-palette-celery-n80: #72e06a; + --kda-color-palette-celery-n80-alpha20: #72e06a33; + --kda-color-palette-celery-n80-alpha80: #72e06acc; + --kda-color-palette-celery-n90: #96ee85; + --kda-color-palette-celery-n95: #aef69d; + --kda-color-palette-celery-n99: #cdfcbf; + --kda-color-palette-celery-n100: #e9fce3; + --kda-color-palette-green-n0: #061a10; + --kda-color-palette-green-n1: #0a2e1d; + --kda-color-palette-green-n5: #153e2c; + --kda-color-palette-green-n10: #1f4f3c; + --kda-color-palette-green-n20: #2a5f4b; + --kda-color-palette-green-n30: #356f5a; + --kda-color-palette-green-n40: #3f806a; + --kda-color-palette-green-n50: #4a9079; + --kda-color-palette-green-n60: #60a18a; + --kda-color-palette-green-n70: #76b39b; + --kda-color-palette-green-n80: #8cc4ad; + --kda-color-palette-green-n90: #a2d5be; + --kda-color-palette-green-n95: #b8e7cf; + --kda-color-palette-green-n99: #cef8e0; + --kda-color-palette-green-n100: #e9f8ef; + --kda-color-palette-magenta-n0: #470820; + --kda-color-palette-magenta-n1: #660b2e; + --kda-color-palette-magenta-n5: #7b0d38; + --kda-color-palette-magenta-n10: #901041; + --kda-color-palette-magenta-n20: #a5124b; + --kda-color-palette-magenta-n30: #ba1455; + --kda-color-palette-magenta-n40: #cf175e; + --kda-color-palette-magenta-n50: #e41968; + --kda-color-palette-magenta-n60: #e93c7f; + --kda-color-palette-magenta-n70: #ed5f96; + --kda-color-palette-magenta-n80: #f282ad; + --kda-color-palette-magenta-n90: #f6a4c3; + --kda-color-palette-magenta-n95: #fbc7da; + --kda-color-palette-magenta-n99: #ffeaf1; + --kda-color-palette-magenta-n100: #fff7fa; + --kda-color-palette-orange-n0: #290e01; + --kda-color-palette-orange-n1: #491901; + --kda-color-palette-orange-n5: #612300; + --kda-color-palette-orange-n10: #7a2f00; + --kda-color-palette-orange-n20: #953d00; + --kda-color-palette-orange-n30: #b14c00; + --kda-color-palette-orange-n40: #cb5d00; + --kda-color-palette-orange-n50: #e27b38; + --kda-color-palette-orange-n60: #ec9046; + --kda-color-palette-orange-n70: #f5a655; + --kda-color-palette-orange-n80: #ffbb63; + --kda-color-palette-orange-n90: #fdd291; + --kda-color-palette-orange-n95: #ffdfad; + --kda-color-palette-orange-n99: #ffeccc; + --kda-color-palette-orange-n100: #fff7eb; + --kda-color-palette-red-n0: #300; + --kda-color-palette-red-n1: #590000; + --kda-color-palette-red-n5: #740000; + --kda-color-palette-red-n10: #930000; + --kda-color-palette-red-n20: #b40000; + --kda-color-palette-red-n20-alpha20: #b4000033; + --kda-color-palette-red-n20-alpha80: #b40000cc; + --kda-color-palette-red-n30: #d31510; + --kda-color-palette-red-n40: #ea3829; + --kda-color-palette-red-n50: #f75c46; + --kda-color-palette-red-n60: #ff7c65; + --kda-color-palette-red-n70: #ff9b88; + --kda-color-palette-red-n80: #ffb7a9; + --kda-color-palette-red-n80-alpha20: #ffb7a933; + --kda-color-palette-red-n80-alpha80: #ffb7a9cc; + --kda-color-palette-red-n90: #ffcdc3; + --kda-color-palette-red-n95: #ffddd6; + --kda-color-palette-red-n99: #ffebe7; + --kda-color-palette-red-n100: #fff5f5; + --kda-color-palette-yellow-n0: #1a1100; + --kda-color-palette-yellow-n1: #362500; + --kda-color-palette-yellow-n5: #483300; + --kda-color-palette-yellow-n10: #5b4300; + --kda-color-palette-yellow-n20: #705300; + --kda-color-palette-yellow-n20-alpha20: #70530033; + --kda-color-palette-yellow-n20-alpha80: #705300cc; + --kda-color-palette-yellow-n30: #856600; + --kda-color-palette-yellow-n40: #9b7800; + --kda-color-palette-yellow-n50: #b08c00; + --kda-color-palette-yellow-n60: #c49f00; + --kda-color-palette-yellow-n70: #d7b300; + --kda-color-palette-yellow-n80: #e8c600; + --kda-color-palette-yellow-n80-alpha20: #e8c60033; + --kda-color-palette-yellow-n80-alpha80: #e8c600cc; + --kda-color-palette-yellow-n90: #f8d904; + --kda-color-palette-yellow-n95: #f8e750; + --kda-color-palette-yellow-n99: #fbf198; + --kda-color-palette-yellow-n100: #fbf8dd; + --kda-color-categorical-category1: #2898bd; + --kda-color-categorical-category1-hover: #42b2d7; + --kda-color-categorical-category2: #b8acf6; + --kda-color-categorical-category2-hover: #dfd8fd; + --kda-color-categorical-category3: #e56910; + --kda-color-categorical-category3-hover: #f38a3f; + --kda-color-categorical-category4: #f797d2; + --kda-color-categorical-category4-hover: #fdd0ec; + --kda-color-categorical-category5: #cce0ff; + --kda-color-categorical-category5-hover: #e9f2ff; + --kda-color-categorical-category6: #8270db; + --kda-color-categorical-category6-hover: #8f7ee7; + --kda-color-categorical-category7: #fdd0ec; + --kda-color-categorical-category7-hover: #ffecf8; + --kda-color-categorical-category8: #fec195; + --kda-color-categorical-category8-hover: #fedec8; + --kda-color-semantic-info-n0: #06101a; + --kda-color-semantic-info-n1: #0b1d2e; + --kda-color-semantic-info-n5: #112c46; + --kda-color-semantic-info-n10: #194268; + --kda-color-semantic-info-n20: #205586; + --kda-color-semantic-info-n20-alpha20: #20558633; + --kda-color-semantic-info-n20-alpha80: #205586cc; + --kda-color-semantic-info-n30: #2767a3; + --kda-color-semantic-info-n40: #2e7ac0; + --kda-color-semantic-info-n50: #358cdd; + --kda-color-semantic-info-n60: #509ce3; + --kda-color-semantic-info-n70: #6bace8; + --kda-color-semantic-info-n80: #86bcee; + --kda-color-semantic-info-n80-alpha20: #86bcee33; + --kda-color-semantic-info-n80-alpha80: #86bceecc; + --kda-color-semantic-info-n90: #a0cbf4; + --kda-color-semantic-info-n95: #bbdbf9; + --kda-color-semantic-info-n99: #d6ebff; + --kda-color-semantic-info-n100: #f0f8ff; + --kda-color-semantic-negative-n0: #300; + --kda-color-semantic-negative-n1: #590000; + --kda-color-semantic-negative-n5: #740000; + --kda-color-semantic-negative-n10: #930000; + --kda-color-semantic-negative-n20: #b40000; + --kda-color-semantic-negative-n20-alpha20: #b4000033; + --kda-color-semantic-negative-n20-alpha80: #b40000cc; + --kda-color-semantic-negative-n30: #d31510; + --kda-color-semantic-negative-n40: #ea3829; + --kda-color-semantic-negative-n50: #f75c46; + --kda-color-semantic-negative-n60: #ff7c65; + --kda-color-semantic-negative-n70: #ff9b88; + --kda-color-semantic-negative-n80: #ffb7a9; + --kda-color-semantic-negative-n80-alpha20: #ffb7a933; + --kda-color-semantic-negative-n80-alpha80: #ffb7a9cc; + --kda-color-semantic-negative-n90: #ffcdc3; + --kda-color-semantic-negative-n95: #ffddd6; + --kda-color-semantic-negative-n99: #ffebe7; + --kda-color-semantic-negative-n100: #fff5f5; + --kda-color-semantic-positive-n0: #001a04; + --kda-color-semantic-positive-n1: #003007; + --kda-color-semantic-positive-n5: #00400a; + --kda-color-semantic-positive-n10: #00530d; + --kda-color-semantic-positive-n20: #00670f; + --kda-color-semantic-positive-n20-alpha20: #00670f33; + --kda-color-semantic-positive-n20-alpha80: #00670fcc; + --kda-color-semantic-positive-n30: #007c0f; + --kda-color-semantic-positive-n40: #009112; + --kda-color-semantic-positive-n50: #07a721; + --kda-color-semantic-positive-n60: #27bb36; + --kda-color-semantic-positive-n70: #4ecf50; + --kda-color-semantic-positive-n80: #72e06a; + --kda-color-semantic-positive-n80-alpha20: #72e06a33; + --kda-color-semantic-positive-n80-alpha80: #72e06acc; + --kda-color-semantic-positive-n90: #96ee85; + --kda-color-semantic-positive-n95: #aef69d; + --kda-color-semantic-positive-n99: #cdfcbf; + --kda-color-semantic-positive-n100: #e9fce3; + --kda-color-semantic-warning-n0: #1a1100; + --kda-color-semantic-warning-n1: #362500; + --kda-color-semantic-warning-n5: #483300; + --kda-color-semantic-warning-n10: #5b4300; + --kda-color-semantic-warning-n20: #705300; + --kda-color-semantic-warning-n20-alpha20: #70530033; + --kda-color-semantic-warning-n20-alpha80: #705300cc; + --kda-color-semantic-warning-n30: #856600; + --kda-color-semantic-warning-n40: #9b7800; + --kda-color-semantic-warning-n50: #b08c00; + --kda-color-semantic-warning-n60: #c49f00; + --kda-color-semantic-warning-n70: #d7b300; + --kda-color-semantic-warning-n80: #e8c600; + --kda-color-semantic-warning-n80-alpha20: #e8c60033; + --kda-color-semantic-warning-n80-alpha80: #e8c600cc; + --kda-color-semantic-warning-n90: #f8d904; + --kda-color-semantic-warning-n95: #f8e750; + --kda-color-semantic-warning-n99: #fbf198; + --kda-color-semantic-warning-n100: #fbf8dd; + --kda-color-text-base: #fffffff2; + --kda-color-text-base-init: #fff; + --kda-color-text-base-hover: #e4e5e5; + --kda-color-text-base-focus: #f5f5f5; + --kda-color-text-base-active: #fff; + --kda-color-text-base-disabled: #fff6; + --kda-color-text-base-selected: #fff; + --kda-color-text-base-inverse: #000000f2; + --kda-color-text-base-inverse-init: #000; + --kda-color-text-base-inverse-hover: #131e2b; + --kda-color-text-base-inverse-focus: #020e1b; + --kda-color-text-base-inverse-active: #000; + --kda-color-text-base-inverse-disabled: #0006; + --kda-color-text-base-inverse-selected: #000; + --kda-color-text-subtle: #fffc; + --kda-color-text-subtle-hover: #fffffff2; + --kda-color-text-subtle-inverse: #000000f2; + --kda-color-text-subtlest: #ffffffb3; + --kda-color-text-subtlest-hover: #fffc; + --kda-color-text-subtlest-inverse: #000000b3; + --kda-color-text-gray: #fff6; + --kda-color-text-gray-lighter: #8d9298; + --kda-color-text-gray-bolder: #b0b3b7; + --kda-color-text-gray-inverse: #0006; + --kda-color-text-gray-inverse-lighter: #6a7178; + --kda-color-text-gray-inverse-bolder: #475059; + --kda-color-text-brand-wordmark: #f0eae6; + --kda-color-text-brand-wordmark-inverse: #0f0f0f; + --kda-color-text-brand-primary: #a2d5be; + --kda-color-text-brand-primary-hover: #b8e7cf; + --kda-color-text-brand-primary-focus: #cef8e0; + --kda-color-text-brand-primary-inverse: #1f4f3c; + --kda-color-text-brand-primary-inverse-hover: #153e2c; + --kda-color-text-brand-primary-inverse-focus: #0a2e1d; + --kda-color-text-brand-secondary: #a0cbf4; + --kda-color-text-brand-secondary-hover: #bbdbf9; + --kda-color-text-brand-secondary-focus: #d6ebff; + --kda-color-text-brand-secondary-inverse: #194268; + --kda-color-text-brand-secondary-inverse-hover: #112c46; + --kda-color-text-brand-secondary-inverse-focus: #0b1d2e; + --kda-color-text-accent-primary: #fff; + --kda-color-text-accent-primary-hover: #e4e5e5; + --kda-color-text-accent-primary-focus: #f5f5f5; + --kda-color-text-accent-primary-active: #fff; + --kda-color-text-accent-primary-inverse: #000; + --kda-color-text-accent-primary-inverse-hover: #131e2b; + --kda-color-text-accent-primary-inverse-focus: #020e1b; + --kda-color-text-accent-primary-inverse-active: #000; + --kda-color-text-semantic-positive: #cdfcbf; + --kda-color-text-semantic-positive-hover: #e9fce3; + --kda-color-text-semantic-positive-focus: #e9fce3; + --kda-color-text-semantic-positive-inverse: #003007; + --kda-color-text-semantic-positive-inverse-hover: #001a04; + --kda-color-text-semantic-positive-inverse-focus: #001a04; + --kda-color-text-semantic-negative: #ffebe7; + --kda-color-text-semantic-negative-hover: #fff5f5; + --kda-color-text-semantic-negative-focus: #fff5f5; + --kda-color-text-semantic-negative-inverse: #590000; + --kda-color-text-semantic-negative-inverse-hover: #300; + --kda-color-text-semantic-negative-inverse-focus: #300; + --kda-color-text-semantic-warning: #fbf198; + --kda-color-text-semantic-warning-hover: #fbf8dd; + --kda-color-text-semantic-warning-focus: #fbf8dd; + --kda-color-text-semantic-warning-inverse: #362500; + --kda-color-text-semantic-warning-inverse-hover: #1a1100; + --kda-color-text-semantic-warning-inverse-focus: #1a1100; + --kda-color-text-semantic-info: #d6ebff; + --kda-color-text-semantic-info-hover: #f0f8ff; + --kda-color-text-semantic-info-focus: #f0f8ff; + --kda-color-text-semantic-info-inverse: #0b1d2e; + --kda-color-text-semantic-info-inverse-hover: #06101a; + --kda-color-text-semantic-info-inverse-focus: #06101a; + --kda-effect-default-blur: 0.5rem; + --kda-effect-shadow-level1: 4px 0.5rem 0.5rem 4px #000; + --kda-effect-shadow-level2: 4rem 4rem 0.5rem 2rem #000; + --kda-effect-shadow-level3: 0px 0px 0.5rem 24px #000; + --kda-layout-content-min-width: 33.75rem; + --kda-layout-content-max-width: 42.5rem; + --kda-radius-no: 0px; + --kda-radius-xs: 2px; + --kda-radius-sm: 4px; + --kda-radius-md: 6px; + --kda-radius-lg: 8px; + --kda-radius-xl: 16px; + --kda-radius-xxl: 24px; + --kda-radius-xs-outline: 3px; + --kda-radius-sm-outline: 5px; + --kda-radius-md-outline: 7px; + --kda-radius-round: 999rem; + --kda-screen-resolutions-width-mobile-apple-iphone-se: 320; + --kda-screen-resolutions-width-mobile-apple-iphone-8: 375; + --kda-screen-resolutions-width-mobile-apple-iphone-11: 375; + --kda-screen-resolutions-width-mobile-apple-iphone-11-pro: 414; + --kda-screen-resolutions-width-mobile-samsung-galaxy-s9: 360; + --kda-screen-resolutions-width-tablet-apple-ipad-mini: 768; + --kda-screen-resolutions-width-tablet-apple-ipad: 810; + --kda-screen-resolutions-width-tablet-apple-ipad-pro: 1024; + --kda-screen-resolutions-width-laptop-mac-book-air: 1440; + --kda-screen-resolutions-width-laptop-mac-book-pro-13: 1280; + --kda-screen-resolutions-width-laptop-mac-book-pro-16: 3072; + --kda-screen-resolutions-width-desktop-small: 1024; + --kda-screen-resolutions-width-desktop-widescreen: 1280; + --kda-screen-resolutions-width-desktop-hd: 1366; + --kda-screen-resolutions-width-desktop-full-hd: 1920; + --kda-screen-resolutions-width-desktop-2k: 2560; + --kda-screen-resolutions-width-desktop-ultra-wide: 3440; + --kda-screen-resolutions-width-desktop-4k: 3840; + --kda-screen-resolutions-height-mobile-apple-iphone-se: 568; + --kda-screen-resolutions-height-mobile-apple-iphone-8: 667; + --kda-screen-resolutions-height-mobile-apple-iphone-11: 812; + --kda-screen-resolutions-height-mobile-apple-iphone-11-pro: 896; + --kda-screen-resolutions-height-mobile-samsung-galaxy-s9: 740; + --kda-screen-resolutions-height-tablet-apple-ipad-mini: 1024; + --kda-screen-resolutions-height-tablet-apple-ipad: 1080; + --kda-screen-resolutions-height-tablet-apple-ipad-pro: 1366; + --kda-screen-resolutions-height-laptop-mac-book-air: 900; + --kda-screen-resolutions-height-laptop-mac-book-pro-13: 800; + --kda-screen-resolutions-height-laptop-mac-book-pro-16: 1920; + --kda-screen-resolutions-height-desktop-small: 768; + --kda-screen-resolutions-height-desktop-widescreen: 800; + --kda-screen-resolutions-height-desktop-hd: 768; + --kda-screen-resolutions-height-desktop-full-hd: 1080; + --kda-screen-resolutions-height-desktop-2k: 1440; + --kda-screen-resolutions-height-desktop-ultra-wide: 1440; + --kda-screen-resolutions-height-desktop-4k: 2160; + --kda-size-n0: 0; + --kda-size-n1: 0.25rem; + --kda-size-n2: 0.5rem; + --kda-size-n3: 0.75rem; + --kda-size-n4: 1rem; + --kda-size-n5: 1.25rem; + --kda-size-n6: 1.5rem; + --kda-size-n7: 1.75rem; + --kda-size-n8: 2rem; + --kda-size-n9: 2.25rem; + --kda-size-n10: 2.5rem; + --kda-size-n11: 2.75rem; + --kda-size-n12: 3rem; + --kda-size-n13: 3.25rem; + --kda-size-n14: 3.5rem; + --kda-size-n15: 3.75rem; + --kda-size-n16: 4rem; + --kda-size-n17: 4.25rem; + --kda-size-n18: 4.5rem; + --kda-size-n19: 4.75rem; + --kda-size-n20: 5rem; + --kda-size-n24: 6rem; + --kda-size-n25: 6.25rem; + --kda-size-n30: 7.5rem; + --kda-size-n32: 8rem; + --kda-size-n35: 8.75rem; + --kda-size-n40: 10rem; + --kda-size-n48: 12rem; + --kda-size-n56: 14rem; + --kda-size-n64: 16rem; + --kda-spacing-no: 0; + --kda-spacing-xxs: 0.125rem; + --kda-spacing-xs: 0.25rem; + --kda-spacing-sm: 0.5rem; + --kda-spacing-md: 1rem; + --kda-spacing-lg: 1.5rem; + --kda-spacing-xl: 1.75rem; + --kda-spacing-xxl: 2.25rem; + --kda-spacing-xxxl: 2.5rem; + --kda-spacing-n0: 0; + --kda-spacing-n1: 0.25rem; + --kda-spacing-n2: 0.5rem; + --kda-spacing-n3: 0.75rem; + --kda-spacing-n4: 1rem; + --kda-spacing-n5: 1.25rem; + --kda-spacing-n6: 1.5rem; + --kda-spacing-n7: 1.75rem; + --kda-spacing-n8: 2rem; + --kda-spacing-n9: 2.25rem; + --kda-spacing-n10: 2.5rem; + --kda-spacing-n11: 2.75rem; + --kda-spacing-n12: 3rem; + --kda-spacing-n13: 3.25rem; + --kda-spacing-n14: 3.5rem; + --kda-spacing-n15: 3.75rem; + --kda-spacing-n16: 4rem; + --kda-spacing-n17: 4.25rem; + --kda-spacing-n18: 4.5rem; + --kda-spacing-n19: 4.75rem; + --kda-spacing-n20: 5rem; + --kda-spacing-n24: 6rem; + --kda-spacing-n25: 6.25rem; + --kda-spacing-n30: 7.5rem; + --kda-spacing-n32: 8rem; + --kda-spacing-n35: 8.75rem; + --kda-spacing-n40: 10rem; + --kda-spacing-n48: 12rem; + --kda-spacing-n56: 14rem; + --kda-spacing-n64: 16rem; + --kda-transition-delay-none: 0ms; + --kda-transition-duration-base: 400ms; + --kda-transition-duration-d200: 200ms; + --kda-transition-animation-ease-out-sine: 200ms cubic-bezier(0.61, 1, 0.88, 1); + --kda-transition-animation-ease-out-cubic: 200ms cubic-bezier(0.33, 1, 0.68, 1); + --kda-typography-family-primary-font: Inter; + --kda-typography-family-monospace-font: Kode Mono; + --kda-typography-font-size-xxs: 0.6875rem; + --kda-typography-font-size-xs: 0.75rem; + --kda-typography-font-size-sm: 0.875rem; + --kda-typography-font-size-base: 1rem; + --kda-typography-font-size-md: 1.125rem; + --kda-typography-font-size-lg: 1.25rem; + --kda-typography-font-size-xl: 1.5rem; + --kda-typography-font-size-2xl: 1.75rem; + --kda-typography-font-size-3xl: 2rem; + --kda-typography-font-size-4xl: 2.25rem; + --kda-typography-font-size-5xl: 2.5rem; + --kda-typography-font-size-6xl: 2.75rem; + --kda-typography-font-size-7xl: 3rem; + --kda-typography-font-size-8xl: 3.25rem; + --kda-typography-font-size-9xl: 3.75rem; + --kda-typography-font-size-10xl: 4.5rem; + --kda-typography-font-size-11xl: 5rem; + --kda-typography-font-size-12xl: 5.25rem; + --kda-typography-line-height-7xl: 3rem; + --kda-typography-line-height-4xl: 2.25rem; + --kda-typography-line-height-3xl: 2rem; + --kda-typography-line-height-2xl: 1.75rem; + --kda-typography-line-height-xl: 1.5rem; + --kda-typography-line-height-base: 1.25rem; + --kda-typography-line-height-md: 1rem; + --kda-typography-line-height-sm: 0.875rem; + --kda-typography-weight-primary-font-light: 300; + --kda-typography-weight-primary-font-regular: 400; + --kda-typography-weight-primary-font-medium: 500; + --kda-typography-weight-primary-font-semi-bold: 600; + --kda-typography-weight-primary-font-bold: 700; + --kda-typography-weight-monospace-font-regular: 400; + --kda-typography-weight-monospace-font-medium: 500; + --kda-typography-weight-monospace-font-semi-bold: 600; + --kda-typography-weight-monospace-font-bold: 700; + --kda-z-index-deepdive: -99999; + --kda-z-index: 1; + --kda-z-index-dialog: 6000; + --kda-z-index-surface: 4; + --kda-z-index-dropdown: 7000; + --kda-z-index-modal: 9000; + --kda-z-index-overlay: 8000; + --kda-z-index-popup: 5000; + --kda-z-index-spinner: 9050; + --kda-z-index-sticky: 100; + --kda-z-index-toast: 10000; + } + +} diff --git a/toolkit/theme/design-system/dist/css/typography.css b/toolkit/theme/design-system/dist/css/typography.css new file mode 100644 index 0000000000..c8d3595d15 --- /dev/null +++ b/toolkit/theme/design-system/dist/css/typography.css @@ -0,0 +1,11 @@ +/* kda Design System | Typography */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +:root { +} + + diff --git a/toolkit/theme/design-system/dist/js/tokens.dark.config.ts b/toolkit/theme/design-system/dist/js/tokens.dark.config.ts new file mode 100644 index 0000000000..90f4c4f746 --- /dev/null +++ b/toolkit/theme/design-system/dist/js/tokens.dark.config.ts @@ -0,0 +1,2520 @@ +/* kda Design System | Theme: dark */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +import type { KDADesignSystemDarkTokens } from './tokens.dark.config.type.ts'; + +type CSSVars = Record; + +export const cssVars: CSSVars = { + 'kda-explorer-alert-surface-text': '#d6ebff', + 'kda-explorer-alert-background': '#061a10', + 'kda-explorer-alert-background-semantic-positive': '#001a04', + 'kda-explorer-alert-background-semantic-negative': '#300', + 'kda-explorer-alert-background-semantic-warning': '#1a1100', + 'kda-explorer-alert-background-semantic-info': '#06101a', + 'kda-explorer-alert-loading': '#a0cbf4', + 'kda-explorer-button-background-color': '#52ffc6', + 'kda-explorer-button-surface-color': '#000', + 'kda-explorer-hero-banner-title-font-size': '1.5rem', + 'kda-explorer-hero-banner-title-font-weight': '500', + 'kda-explorer-hero-banner-title-font-lineHeight': '1.5rem', + 'kda-explorer-hero-banner-title-font-color-name': '#fff', + 'kda-explorer-hero-banner-title-font-color-prefix': '#fff6', + 'kda-explorer-hero-banner-title-font-color-selector': '#fff', + 'kda-explorer-hero-banner-title-margin-gap': '1rem', + 'kda-explorer-hero-banner-title-margin-bottom': '1rem', + 'kda-explorer-hero-banner-border': '1px solid #4a9079', + 'kda-explorer-hero-banner-radius': '2px', + 'kda-explorer-hero-banner-background': '#4a9079', + 'kda-explorer-hero-banner-padding': '1rem', + 'kda-explorer-hero-banner-column-width': '100%', + 'kda-explorer-hero-banner-column-gap': '2rem', + 'kda-explorer-hero-banner-button-dimensions-radius': '0px', + 'kda-explorer-hero-banner-button-default-background': '#52ffc6', + 'kda-explorer-hero-banner-button-default-surface': '#000', + 'kda-explorer-hero-banner-button-@hover-background': '#52ffc6', + 'kda-explorer-hero-banner-button-@hover-surface': '#000', + 'kda-explorer-hero-banner-button-@active-background': '#4be9b5', + 'kda-explorer-hero-banner-button-@active-surface': '#131e2b', + 'kda-explorer-input-dimensions-radius-base': '0px', + 'kda-explorer-input-border-color-semantic-negative': '#ff7c65', + 'kda-explorer-input-border-color-@focus': '#4a9079', + 'kda-explorer-navigation-background-@active': '#2a5f4b', + 'kda-explorer-navigation-surface-text': '#cef8e0', + 'kda-explorer-navigation-surface-text-@selected': '#e9f8ef', + 'kda-explorer-toast-surface-text': '#d6ebff', + 'kda-explorer-toast-background': '#061a10', + 'kda-explorer-toast-background-semantic-positive': '#001a04', + 'kda-explorer-toast-background-semantic-negative': '#300', + 'kda-explorer-toast-background-semantic-warning': '#1a1100', + 'kda-explorer-toast-background-semantic-info': '#06101a', + 'kda-explorer-toast-loading': '#a0cbf4', + 'kda-explorer-top-bar-font-size': '0.75rem', + 'kda-explorer-widget-stats-background': '#0006', + 'kda-explorer-widget-stats-background-@hover': '#061a10', + 'kda-explorer-widget-stats-background-@focus': '#061a10', + 'kda-explorer-widget-stats-background-@visited': '#061a10', + 'kda-explorer-widget-stats-surface-text-subtle': '#fffc', + 'kda-explorer-widget-stats-surface-text': '#a2d5be', + 'kda-explorer-widget-stats-surface-icon-color': '#4a9079', + 'kda-border-width-hairline': '1px', + 'kda-border-width-normal': '2px', + 'kda-border-width-thick': '4px', + 'kda-border-hairline': '1px solid #d2d4d640', + 'kda-border-normal': '2px solid #f5f5f580', + 'kda-border-thick': '4px solid #f5f5f580', + 'kda-breakpoint-xs': '0rem', + 'kda-breakpoint-sm': '40rem', + 'kda-breakpoint-md': '48rem', + 'kda-breakpoint-lg': '64rem', + 'kda-breakpoint-xl': '80rem', + 'kda-breakpoint-xxl': '96rem', + 'kda-color-accent-blue': '#358cdd', + 'kda-color-accent-celery': '#07a721', + 'kda-color-accent-green': '#4a9079', + 'kda-color-accent-magenta': '#e41968', + 'kda-color-accent-orange': '#e27b38', + 'kda-color-accent-red': '#f75c46', + 'kda-color-accent-yellow': '#b08c00', + 'kda-color-accent-brand-primary': '#4a9079', + 'kda-color-accent-brand-secondary': '#358cdd', + 'kda-color-accent-brand-tertiary': '#e27b38', + 'kda-color-accent-brand-tint-primary': '#27795e', + 'kda-color-accent-brand-tint-secondary': '#e41968', + 'kda-color-accent-brand-tint-tertiary': '#e27b38', + 'kda-color-accent-semantic-info': '#358cdd', + 'kda-color-accent-semantic-warning': '#b08c00', + 'kda-color-accent-semantic-positive': '#07a721', + 'kda-color-accent-semantic-negative': '#f75c46', + 'kda-color-background-base': '#020e1b', + 'kda-color-background-base-warm': '#0f0f0f', + 'kda-color-background-base-@hover': '#252f3a', + 'kda-color-background-base-@focus': '#131e2bcc', + 'kda-color-background-base-@active': '#131e2b', + 'kda-color-background-base-@disabled': '#ffffff1a', + 'kda-color-background-base-inverse': '#f5f5f5', + 'kda-color-background-base-inverse-warm': '#f0eae6', + 'kda-color-background-base-inverse-@hover': '#d2d4d6', + 'kda-color-background-base-inverse-@focus': '#e4e5e5cc', + 'kda-color-background-base-inverse-@disabled': '#0000001a', + 'kda-color-background-layer': '#131e2bcc', + 'kda-color-background-layer-solid': '#131e2b', + 'kda-color-background-overlay': '#131e2bf2', + 'kda-color-background-overlay-context': '#131e2bf2', + 'kda-color-background-overlay-@hover': '#131e2b', + 'kda-color-background-surface': '#f5f5f50f', + 'kda-color-background-surface-inverse': '#f5f5f5cc', + 'kda-color-background-surface-subtle': '#0003', + 'kda-color-background-surface-subtle-inverse': '#f5f5f5cc', + 'kda-color-background-surfaceHighContrast': '#000000e6', + 'kda-color-background-surfaceHighContrast-inverse': '#ffffffe6', + 'kda-color-background-brand-primary': '#153e2c', + 'kda-color-background-brand-primary-subtle': '#0a2e1d', + 'kda-color-background-brand-primary-subtlest': '#061a10', + 'kda-color-background-brand-primary-@hover': '#1f4f3c', + 'kda-color-background-brand-primary-@focus': '#2a5f4b', + 'kda-color-background-brand-primary-@active': '#356f5a', + 'kda-color-background-brand-primary-inverse': '#b8e7cf', + 'kda-color-background-brand-primary-inverse-subtle': '#cef8e0', + 'kda-color-background-brand-primary-inverse-subtlest': '#e9f8ef', + 'kda-color-background-brand-primary-inverse-@hover': '#a2d5be', + 'kda-color-background-brand-primary-inverse-@focus': '#8cc4ad', + 'kda-color-background-brand-primary-inverse-@active': '#76b39b', + 'kda-color-background-brand-secondary': '#112c46', + 'kda-color-background-brand-secondary-subtle': '#0b1d2e', + 'kda-color-background-brand-secondary-subtlest': '#06101a', + 'kda-color-background-brand-secondary-@hover': '#112c46', + 'kda-color-background-brand-secondary-@focus': '#194268', + 'kda-color-background-brand-secondary-@active': '#205586', + 'kda-color-background-brand-secondary-inverse': '#bbdbf9', + 'kda-color-background-brand-secondary-inverse-subtle': '#d6ebff', + 'kda-color-background-brand-secondary-inverse-subtlest': '#f0f8ff', + 'kda-color-background-brand-secondary-inverse-@hover': '#bbdbf9', + 'kda-color-background-brand-secondary-inverse-@focus': '#a0cbf4', + 'kda-color-background-brand-secondary-inverse-@active': '#86bcee', + 'kda-color-background-accent-primary': '#27795e', + 'kda-color-background-accent-primary-@hover': '#2e8f6f', + 'kda-color-background-accent-primary-@focus': '#27795ecc', + 'kda-color-background-accent-primary-@active': '#20624c', + 'kda-color-background-accent-primary-inverse': '#52ffc6', + 'kda-color-background-accent-primary-inverse-@hover': '#4be9b5', + 'kda-color-background-accent-primary-inverse-@focus': '#52ffc6cc', + 'kda-color-background-accent-primary-inverse-@active': '#52ffc6', + 'kda-color-background-accent-secondary': '#e41968', + 'kda-color-background-accent-secondary-@hover': '#e93c7f', + 'kda-color-background-accent-secondary-@focus': '#e93c7f', + 'kda-color-background-accent-secondary-@active': '#e93c7f', + 'kda-color-background-accent-secondary-inverse': '#e41968', + 'kda-color-background-accent-secondary-inverse-@hover': '#cf175e', + 'kda-color-background-accent-secondary-inverse-@focus': '#cf175e', + 'kda-color-background-accent-secondary-inverse-@active': '#cf175e', + 'kda-color-background-accent-tertiary': '#e27b38', + 'kda-color-background-accent-tertiary-@hover': '#ec9046', + 'kda-color-background-accent-tertiary-@focus': '#ec9046', + 'kda-color-background-accent-tertiary-@active': '#ec9046', + 'kda-color-background-accent-tertiary-inverse': '#e27b38', + 'kda-color-background-accent-tertiary-inverse-@hover': '#cb5d00', + 'kda-color-background-accent-tertiary-inverse-@focus': '#cb5d00', + 'kda-color-background-accent-tertiary-inverse-@active': '#cb5d00', + 'kda-color-background-semantic-positive': '#00670f', + 'kda-color-background-semantic-positive-subtle': '#00670f33', + 'kda-color-background-semantic-positive-subtlest': '#001a04', + 'kda-color-background-semantic-positive-@hover': '#007c0f', + 'kda-color-background-semantic-positive-@focus': '#00670fcc', + 'kda-color-background-semantic-positive-@active': '#00530d', + 'kda-color-background-semantic-positive-inverse': '#72e06a', + 'kda-color-background-semantic-positive-inverse-subtle': '#72e06a33', + 'kda-color-background-semantic-positive-inverse-subtlest': '#e9fce3', + 'kda-color-background-semantic-positive-inverse-@hover': '#4ecf50', + 'kda-color-background-semantic-positive-inverse-@focus': '#72e06acc', + 'kda-color-background-semantic-positive-inverse-@active': '#96ee85', + 'kda-color-background-semantic-negative': '#b40000', + 'kda-color-background-semantic-negative-subtle': '#b4000033', + 'kda-color-background-semantic-negative-subtlest': '#300', + 'kda-color-background-semantic-negative-@hover': '#d31510', + 'kda-color-background-semantic-negative-@focus': '#b40000cc', + 'kda-color-background-semantic-negative-@active': '#930000', + 'kda-color-background-semantic-negative-inverse': '#ffb7a9', + 'kda-color-background-semantic-negative-inverse-subtle': '#ffb7a933', + 'kda-color-background-semantic-negative-inverse-subtlest': '#fff5f5', + 'kda-color-background-semantic-negative-inverse-@hover': '#ff9b88', + 'kda-color-background-semantic-negative-inverse-@focus': '#ffb7a9cc', + 'kda-color-background-semantic-negative-inverse-@active': '#ffcdc3', + 'kda-color-background-semantic-warning': '#705300', + 'kda-color-background-semantic-warning-subtle': '#70530033', + 'kda-color-background-semantic-warning-subtlest': '#1a1100', + 'kda-color-background-semantic-warning-@hover': '#856600', + 'kda-color-background-semantic-warning-@focus': '#705300cc', + 'kda-color-background-semantic-warning-@active': '#5b4300', + 'kda-color-background-semantic-warning-inverse': '#e8c600', + 'kda-color-background-semantic-warning-inverse-subtle': '#e8c60033', + 'kda-color-background-semantic-warning-inverse-subtlest': '#fbf8dd', + 'kda-color-background-semantic-warning-inverse-@hover': '#d7b300', + 'kda-color-background-semantic-warning-inverse-@focus': '#e8c600cc', + 'kda-color-background-semantic-warning-inverse-@active': '#f8d904', + 'kda-color-background-semantic-info': '#205586', + 'kda-color-background-semantic-info-subtle': '#20558633', + 'kda-color-background-semantic-info-subtlest': '#06101a', + 'kda-color-background-semantic-info-@hover': '#2767a3', + 'kda-color-background-semantic-info-@focus': '#205586cc', + 'kda-color-background-semantic-info-@active': '#194268', + 'kda-color-background-semantic-info-inverse': '#86bcee', + 'kda-color-background-semantic-info-inverse-subtle': '#86bcee33', + 'kda-color-background-semantic-info-inverse-subtlest': '#f0f8ff', + 'kda-color-background-semantic-info-inverse-@hover': '#6bace8', + 'kda-color-background-semantic-info-inverse-@focus': '#86bceecc', + 'kda-color-background-semantic-info-inverse-@active': '#a0cbf4', + 'kda-color-background-input': '#131e2bcc', + 'kda-color-background-input-@hover': '#475059cc', + 'kda-color-background-input-@focus': '#131e2bcc', + 'kda-color-background-input-@active': '#131e2b', + 'kda-color-background-input-@disabled': '#ffffff1a', + 'kda-color-background-input-inverse': '#b0b3b7cc', + 'kda-color-background-input-inverse-@hover': '#d2d4d6', + 'kda-color-background-input-inverse-@focus': '#e4e5e5cc', + 'kda-color-background-input-inverse-@active': '#e4e5e5', + 'kda-color-background-input-inverse-@disabled': '#0000001a', + 'kda-color-background-skeleton': '#475059cc', + 'kda-color-background-table-row': '#131e2bcc', + 'kda-color-background-table-row-@hover': '#252f3acc', + 'kda-color-border-base-subtle': '#f5f5f51a', + 'kda-color-border-base': '#d2d4d640', + 'kda-color-border-base-bold': '#f5f5f580', + 'kda-color-border-base-boldest': '#ffffffb3', + 'kda-color-border-base-high-contrast': '#fff', + 'kda-color-border-base-@disabled': '#475059', + 'kda-color-border-base-@hover': '#475059', + 'kda-color-border-base-@focus': '#8d9298', + 'kda-color-border-base-@active': '#b0b3b7', + 'kda-color-border-base-inverse-subtle': '#020e1b1a', + 'kda-color-border-base-inverse': '#020e1b33', + 'kda-color-border-base-inverse-bold': '#0006', + 'kda-color-border-base-inverse-boldest': '#020e1b80', + 'kda-color-border-base-inverse-high-contrast': '#000', + 'kda-color-border-base-inverse-@disabled': '#475059', + 'kda-color-border-base-inverse-@hover': '#475059', + 'kda-color-border-base-inverse-@focus': '#8d9298', + 'kda-color-border-base-inverse-@active': '#b0b3b7', + 'kda-color-border-brand-primary': '#3f806a', + 'kda-color-border-brand-primary-subtle': '#2a5f4b', + 'kda-color-border-brand-primary-@hover': '#60a18a', + 'kda-color-border-brand-primary-@focus': '#76b39b', + 'kda-color-border-brand-primary-inverse': '#8cc4ad', + 'kda-color-border-brand-primary-inverse-@hover': '#76b39b', + 'kda-color-border-brand-primary-inverse-@focus': '#60a18a', + 'kda-color-border-brand-secondary': '#2e7ac0', + 'kda-color-border-brand-secondary-subtle': '#205586', + 'kda-color-border-brand-secondary-@hover': '#509ce3', + 'kda-color-border-brand-secondary-@focus': '#6bace8', + 'kda-color-border-brand-secondary-inverse': '#86bcee', + 'kda-color-border-brand-secondary-inverse-@hover': '#6bace8', + 'kda-color-border-brand-secondary-inverse-@focus': '#509ce3', + 'kda-color-border-semantic-positive': '#27bb36', + 'kda-color-border-semantic-positive-subtle': '#00400a', + 'kda-color-border-semantic-positive-@disabled': '#00670f', + 'kda-color-border-semantic-positive-@hover': '#4ecf50', + 'kda-color-border-semantic-positive-@focus': '#27bb36', + 'kda-color-border-semantic-positive-inverse': '#009112', + 'kda-color-border-semantic-positive-inverse-@hover': '#007c0f', + 'kda-color-border-semantic-positive-inverse-@focus': '#00670f', + 'kda-color-border-semantic-negative': '#ff7c65', + 'kda-color-border-semantic-negative-subtle': '#740000', + 'kda-color-border-semantic-negative-@disabled': '#b40000', + 'kda-color-border-semantic-negative-@hover': '#ff9b88', + 'kda-color-border-semantic-negative-@focus': '#ff7c65', + 'kda-color-border-semantic-negative-inverse': '#ea3829', + 'kda-color-border-semantic-negative-inverse-@hover': '#d31510', + 'kda-color-border-semantic-negative-inverse-@focus': '#b40000', + 'kda-color-border-semantic-warning': '#c49f00', + 'kda-color-border-semantic-warning-subtle': '#483300', + 'kda-color-border-semantic-warning-@disabled': '#705300', + 'kda-color-border-semantic-warning-@hover': '#d7b300', + 'kda-color-border-semantic-warning-@focus': '#c49f00', + 'kda-color-border-semantic-warning-inverse': '#9b7800', + 'kda-color-border-semantic-warning-inverse-@hover': '#856600', + 'kda-color-border-semantic-warning-inverse-@focus': '#705300', + 'kda-color-border-semantic-info': '#509ce3', + 'kda-color-border-semantic-info-subtle': '#112c46', + 'kda-color-border-semantic-info-@disabled': '#205586', + 'kda-color-border-semantic-info-@hover': '#6bace8', + 'kda-color-border-semantic-info-@focus': '#509ce3', + 'kda-color-border-semantic-info-inverse': '#2e7ac0', + 'kda-color-border-semantic-info-inverse-@hover': '#2767a3', + 'kda-color-border-semantic-info-inverse-@focus': '#205586', + 'kda-color-border-tint-outline': '#509ce3', + 'kda-color-border-tint-@focus': '#27795ecc', + 'kda-color-border-overlay-context': '#475059cc', + 'kda-color-brand-primary-n0': '#061a10', + 'kda-color-brand-primary-n1': '#0a2e1d', + 'kda-color-brand-primary-n5': '#153e2c', + 'kda-color-brand-primary-n10': '#1f4f3c', + 'kda-color-brand-primary-n20': '#2a5f4b', + 'kda-color-brand-primary-n30': '#356f5a', + 'kda-color-brand-primary-n40': '#3f806a', + 'kda-color-brand-primary-n50': '#4a9079', + 'kda-color-brand-primary-n60': '#60a18a', + 'kda-color-brand-primary-n70': '#76b39b', + 'kda-color-brand-primary-n80': '#8cc4ad', + 'kda-color-brand-primary-n90': '#a2d5be', + 'kda-color-brand-primary-n95': '#b8e7cf', + 'kda-color-brand-primary-n99': '#cef8e0', + 'kda-color-brand-primary-n100': '#e9f8ef', + 'kda-color-brand-secondary-n0': '#06101a', + 'kda-color-brand-secondary-n1': '#0b1d2e', + 'kda-color-brand-secondary-n5': '#112c46', + 'kda-color-brand-secondary-n10': '#194268', + 'kda-color-brand-secondary-n20': '#205586', + 'kda-color-brand-secondary-n30': '#2767a3', + 'kda-color-brand-secondary-n40': '#2e7ac0', + 'kda-color-brand-secondary-n50': '#358cdd', + 'kda-color-brand-secondary-n60': '#509ce3', + 'kda-color-brand-secondary-n70': '#6bace8', + 'kda-color-brand-secondary-n80': '#86bcee', + 'kda-color-brand-secondary-n90': '#a0cbf4', + 'kda-color-brand-secondary-n95': '#bbdbf9', + 'kda-color-brand-secondary-n99': '#d6ebff', + 'kda-color-brand-secondary-n100': '#f0f8ff', + 'kda-color-brand-tertiary-n0': '#290e01', + 'kda-color-brand-tertiary-n1': '#491901', + 'kda-color-brand-tertiary-n5': '#612300', + 'kda-color-brand-tertiary-n10': '#7a2f00', + 'kda-color-brand-tertiary-n20': '#953d00', + 'kda-color-brand-tertiary-n30': '#b14c00', + 'kda-color-brand-tertiary-n40': '#cb5d00', + 'kda-color-brand-tertiary-n50': '#e27b38', + 'kda-color-brand-tertiary-n60': '#ec9046', + 'kda-color-brand-tertiary-n70': '#f5a655', + 'kda-color-brand-tertiary-n80': '#ffbb63', + 'kda-color-brand-tertiary-n90': '#fdd291', + 'kda-color-brand-tertiary-n95': '#ffdfad', + 'kda-color-brand-tertiary-n99': '#ffeccc', + 'kda-color-brand-tertiary-n100': '#fff7eb', + 'kda-color-brand-key-primary': '#4a9079', + 'kda-color-brand-key-secondary': '#0b1d2e', + 'kda-color-brand-key-tertiary': '#e27b38', + 'kda-color-brand-key-accent': '#e41968', + 'kda-color-brand-key-neutralwarm': '#0f0f0f', + 'kda-color-brand-key-white': '#f5f5f5', + 'kda-color-brand-key-black': '#020e1b', + 'kda-color-gradient-base-subtle': 'linear-gradient( 90deg, #f5f5f5, #f5f5f500 )', + 'kda-color-icon-base': '#e4e5e5', + 'kda-color-icon-base-bold': '#f5f5f5', + 'kda-color-icon-base-@init': '#f5f5f5', + 'kda-color-icon-base-@hover': '#f5f5f580', + 'kda-color-icon-base-@focus': '#f5f5f5', + 'kda-color-icon-base-@active': '#fff', + 'kda-color-icon-base-@disabled': '#fff3', + 'kda-color-icon-base-inverse': '#131e2b', + 'kda-color-icon-base-inverse-bold': '#020e1b', + 'kda-color-icon-base-inverse-@init': '#020e1b', + 'kda-color-icon-base-inverse-@hover': '#020e1b80', + 'kda-color-icon-base-inverse-@focus': '#020e1b', + 'kda-color-icon-base-inverse-@active': '#000', + 'kda-color-icon-base-inverse-@disabled': '#0003', + 'kda-color-icon-brand-logo': '#4a9079', + 'kda-color-icon-brand-logo-inverse': '#f0eae6', + 'kda-color-icon-brand-primary': '#8cc4ad', + 'kda-color-icon-brand-primary-bold': '#a2d5be', + 'kda-color-icon-brand-primary-@hover': '#76b39b', + 'kda-color-icon-brand-primary-@focus': '#60a18a', + 'kda-color-icon-brand-primary-@active': '#4a9079', + 'kda-color-icon-brand-primary-@disabled': '#596069', + 'kda-color-icon-brand-primary-inverse': '#2a5f4b', + 'kda-color-icon-brand-primary-inverse-@hover': '#356f5a', + 'kda-color-icon-brand-primary-inverse-@focus': '#3f806a', + 'kda-color-icon-brand-primary-inverse-@active': '#4a9079', + 'kda-color-icon-brand-primary-inverse-@disabled': '#596069', + 'kda-color-icon-brand-secondary': '#86bcee', + 'kda-color-icon-brand-secondary-bold': '#a0cbf4', + 'kda-color-icon-brand-secondary-@hover': '#6bace8', + 'kda-color-icon-brand-secondary-@focus': '#509ce3', + 'kda-color-icon-brand-secondary-@active': '#358cdd', + 'kda-color-icon-brand-secondary-@disabled': '#596069', + 'kda-color-icon-brand-secondary-inverse': '#205586', + 'kda-color-icon-brand-secondary-inverse-@hover': '#2767a3', + 'kda-color-icon-brand-secondary-inverse-@focus': '#2e7ac0', + 'kda-color-icon-brand-secondary-inverse-@active': '#358cdd', + 'kda-color-icon-brand-secondary-inverse-@disabled': '#596069', + 'kda-color-icon-semantic-positive': '#72e06a', + 'kda-color-icon-semantic-positive-@hover': '#4ecf50', + 'kda-color-icon-semantic-positive-@focus': '#27bb36', + 'kda-color-icon-semantic-positive-@active': '#07a721', + 'kda-color-icon-semantic-positive-@disabled': '#596069', + 'kda-color-icon-semantic-positive-inverse': '#00670f', + 'kda-color-icon-semantic-positive-inverse-@hover': '#007c0f', + 'kda-color-icon-semantic-positive-inverse-@focus': '#009112', + 'kda-color-icon-semantic-positive-inverse-@active': '#07a721', + 'kda-color-icon-semantic-positive-inverse-@disabled': '#596069', + 'kda-color-icon-semantic-negative': '#ffb7a9', + 'kda-color-icon-semantic-negative-@hover': '#ff9b88', + 'kda-color-icon-semantic-negative-@focus': '#ff7c65', + 'kda-color-icon-semantic-negative-@active': '#f75c46', + 'kda-color-icon-semantic-negative-@disabled': '#596069', + 'kda-color-icon-semantic-negative-inverse': '#b40000', + 'kda-color-icon-semantic-negative-inverse-@hover': '#d31510', + 'kda-color-icon-semantic-negative-inverse-@focus': '#ea3829', + 'kda-color-icon-semantic-negative-inverse-@active': '#f75c46', + 'kda-color-icon-semantic-negative-inverse-@disabled': '#596069', + 'kda-color-icon-semantic-warning': '#e8c600', + 'kda-color-icon-semantic-warning-@hover': '#d7b300', + 'kda-color-icon-semantic-warning-@focus': '#c49f00', + 'kda-color-icon-semantic-warning-@active': '#b08c00', + 'kda-color-icon-semantic-warning-@disabled': '#596069', + 'kda-color-icon-semantic-warning-inverse': '#705300', + 'kda-color-icon-semantic-warning-inverse-@hover': '#856600', + 'kda-color-icon-semantic-warning-inverse-@focus': '#9b7800', + 'kda-color-icon-semantic-warning-inverse-@active': '#b08c00', + 'kda-color-icon-semantic-warning-inverse-@disabled': '#596069', + 'kda-color-icon-semantic-info': '#86bcee', + 'kda-color-icon-semantic-info-@hover': '#6bace8', + 'kda-color-icon-semantic-info-@focus': '#509ce3', + 'kda-color-icon-semantic-info-@active': '#358cdd', + 'kda-color-icon-semantic-info-@disabled': '#596069', + 'kda-color-icon-semantic-info-inverse': '#205586', + 'kda-color-icon-semantic-info-inverse-@hover': '#2767a3', + 'kda-color-icon-semantic-info-inverse-@focus': '#2e7ac0', + 'kda-color-icon-semantic-info-inverse-@active': '#358cdd', + 'kda-color-icon-semantic-info-inverse-@disabled': '#596069', + 'kda-color-icon-product-spirekey-animation-start': '#4a9079', + 'kda-color-icon-product-spirekey-animation-step1': '#4aa688', + 'kda-color-icon-product-spirekey-animation-step2': '#4bbd97', + 'kda-color-icon-product-spirekey-animation-step3': '#4bd3a6', + 'kda-color-icon-product-spirekey-animation-end': '#4be9b5', + 'kda-color-link-base': '#3cbc92', + 'kda-color-link-base-@hover': '#4be9b5', + 'kda-color-link-base-@focus': '#4be9b5', + 'kda-color-link-base-@visited': '#f282ad', + 'kda-color-link-brand-primary': '#76b39b', + 'kda-color-link-brand-primary-@hover': '#8cc4ad', + 'kda-color-link-brand-primary-@focus': '#60a18a', + 'kda-color-link-brand-primary-@visited': '#f282ad', + 'kda-color-link-brand-secondary': '#6bace8', + 'kda-color-link-brand-secondary-@hover': '#86bcee', + 'kda-color-link-brand-secondary-@focus': '#509ce3', + 'kda-color-link-brand-secondary-@visited': '#f282ad', + 'kda-color-link-semantic-positive': '#96ee85', + 'kda-color-link-semantic-positive-@hover': '#aef69d', + 'kda-color-link-semantic-positive-@focus': '#72e06a', + 'kda-color-link-semantic-positive-@visited': '#f282ad', + 'kda-color-link-semantic-negative': '#ffcdc3', + 'kda-color-link-semantic-negative-@hover': '#ffddd6', + 'kda-color-link-semantic-negative-@focus': '#ffb7a9', + 'kda-color-link-semantic-negative-@visited': '#f282ad', + 'kda-color-link-semantic-warning': '#f8d904', + 'kda-color-link-semantic-warning-@hover': '#f8e750', + 'kda-color-link-semantic-warning-@focus': '#e8c600', + 'kda-color-link-semantic-warning-@visited': '#f282ad', + 'kda-color-link-semantic-info': '#a0cbf4', + 'kda-color-link-semantic-info-@hover': '#bbdbf9', + 'kda-color-link-semantic-info-@focus': '#86bcee', + 'kda-color-link-semantic-info-@visited': '#f282ad', + 'kda-color-neutral-n0': '#000', + 'kda-color-neutral-n0@alpha0': '#0000', + 'kda-color-neutral-n0@alpha10': '#0000001a', + 'kda-color-neutral-n0@alpha20': '#0003', + 'kda-color-neutral-n0@alpha40': '#0006', + 'kda-color-neutral-n0@alpha70': '#000000b3', + 'kda-color-neutral-n0@alpha80': '#000c', + 'kda-color-neutral-n0@alpha90': '#000000e6', + 'kda-color-neutral-n0@alpha95': '#000000f2', + 'kda-color-neutral-n1': '#020e1b', + 'kda-color-neutral-n1@alpha0': '#020e1b00', + 'kda-color-neutral-n1@alpha1': '#020e1b03', + 'kda-color-neutral-n1@alpha3': '#020e1b08', + 'kda-color-neutral-n1@alpha4': '#020e1b0a', + 'kda-color-neutral-n1@alpha5': '#020e1b0d', + 'kda-color-neutral-n1@alpha6': '#020e1b0f', + 'kda-color-neutral-n1@alpha10': '#020e1b1a', + 'kda-color-neutral-n1@alpha20': '#020e1b33', + 'kda-color-neutral-n1@alpha30': '#020e1b4d', + 'kda-color-neutral-n1@alpha40': '#020e1b66', + 'kda-color-neutral-n1@alpha50': '#020e1b80', + 'kda-color-neutral-n1@alpha80': '#020e1bcc', + 'kda-color-neutral-n1@alpha90': '#020e1be6', + 'kda-color-neutral-n5': '#131e2b', + 'kda-color-neutral-n5@alpha80': '#131e2bcc', + 'kda-color-neutral-n5@alpha95': '#131e2bf2', + 'kda-color-neutral-n10': '#252f3a', + 'kda-color-neutral-n10@alpha80': '#252f3acc', + 'kda-color-neutral-n15': '#36404a', + 'kda-color-neutral-n20': '#475059', + 'kda-color-neutral-n20@alpha80': '#475059cc', + 'kda-color-neutral-n30': '#596069', + 'kda-color-neutral-n40': '#6a7178', + 'kda-color-neutral-n50': '#7c8288', + 'kda-color-neutral-n60': '#8d9298', + 'kda-color-neutral-n70': '#9ea3a7', + 'kda-color-neutral-n80': '#b0b3b7', + 'kda-color-neutral-n80@alpha80': '#b0b3b7cc', + 'kda-color-neutral-n85': '#c1c4c6', + 'kda-color-neutral-n90': '#d2d4d6', + 'kda-color-neutral-n90@alpha20': '#d2d4d633', + 'kda-color-neutral-n90@alpha25': '#d2d4d640', + 'kda-color-neutral-n95': '#e4e5e5', + 'kda-color-neutral-n95@alpha80': '#e4e5e5cc', + 'kda-color-neutral-n95@alpha95': '#e4e5e5f2', + 'kda-color-neutral-n99': '#f5f5f5', + 'kda-color-neutral-n99@alpha0': '#f5f5f500', + 'kda-color-neutral-n99@alpha1': '#f5f5f503', + 'kda-color-neutral-n99@alpha3': '#f5f5f508', + 'kda-color-neutral-n99@alpha4': '#f5f5f50a', + 'kda-color-neutral-n99@alpha5': '#f5f5f50d', + 'kda-color-neutral-n99@alpha6': '#f5f5f50f', + 'kda-color-neutral-n99@alpha10': '#f5f5f51a', + 'kda-color-neutral-n99@alpha20': '#f5f5f533', + 'kda-color-neutral-n99@alpha30': '#f5f5f54d', + 'kda-color-neutral-n99@alpha40': '#f5f5f566', + 'kda-color-neutral-n99@alpha50': '#f5f5f580', + 'kda-color-neutral-n99@alpha80': '#f5f5f5cc', + 'kda-color-neutral-n99@alpha90': '#f5f5f5e6', + 'kda-color-neutral-n100': '#fff', + 'kda-color-neutral-n100@alpha0': '#fff0', + 'kda-color-neutral-n100@alpha10': '#ffffff1a', + 'kda-color-neutral-n100@alpha20': '#fff3', + 'kda-color-neutral-n100@alpha40': '#fff6', + 'kda-color-neutral-n100@alpha70': '#ffffffb3', + 'kda-color-neutral-n100@alpha80': '#fffc', + 'kda-color-neutral-n100@alpha90': '#ffffffe6', + 'kda-color-neutral-n100@alpha95': '#fffffff2', + 'kda-color-neutralwarm-n0': '#050505', + 'kda-color-neutralwarm-n1': '#0f0f0f', + 'kda-color-neutralwarm-n1@alpha30': '#0f0f0f4d', + 'kda-color-neutralwarm-n1@alpha60': '#0f0f0f99', + 'kda-color-neutralwarm-n1@alpha80': '#0f0f0fcc', + 'kda-color-neutralwarm-n1@alpha95': '#0f0f0ff2', + 'kda-color-neutralwarm-n5': '#222121', + 'kda-color-neutralwarm-n10': '#353433', + 'kda-color-neutralwarm-n20': '#474645', + 'kda-color-neutralwarm-n30': '#5a5857', + 'kda-color-neutralwarm-n40': '#6d6a69', + 'kda-color-neutralwarm-n50': '#807d7b', + 'kda-color-neutralwarm-n60': '#928f8c', + 'kda-color-neutralwarm-n70': '#a5a19e', + 'kda-color-neutralwarm-n80': '#b8b3b0', + 'kda-color-neutralwarm-n90': '#cbc6c2', + 'kda-color-neutralwarm-n95': '#ddd8d4', + 'kda-color-neutralwarm-n99': '#f0eae6', + 'kda-color-neutralwarm-n100': '#fbfaf9', + 'kda-color-palette-aqua-n0': '#0a1f18', + 'kda-color-palette-aqua-n1': '#113529', + 'kda-color-palette-aqua-n5': '#184c3b', + 'kda-color-palette-aqua-n10': '#20624c', + 'kda-color-palette-aqua-n20': '#27795e', + 'kda-color-palette-aqua-n20@alpha80': '#27795ecc', + 'kda-color-palette-aqua-n30': '#2e8f6f', + 'kda-color-palette-aqua-n40': '#35a580', + 'kda-color-palette-aqua-n50': '#3cbc92', + 'kda-color-palette-aqua-n60': '#44d2a3', + 'kda-color-palette-aqua-n70': '#4be9b5', + 'kda-color-palette-aqua-n80': '#52ffc6', + 'kda-color-palette-aqua-n80@alpha80': '#52ffc6cc', + 'kda-color-palette-aqua-n90': '#7affd3', + 'kda-color-palette-aqua-n95': '#a1ffe0', + 'kda-color-palette-aqua-n99': '#c9ffed', + 'kda-color-palette-aqua-n100': '#f0fffa', + 'kda-color-palette-blue-n0': '#06101a', + 'kda-color-palette-blue-n1': '#0b1d2e', + 'kda-color-palette-blue-n5': '#112c46', + 'kda-color-palette-blue-n10': '#194268', + 'kda-color-palette-blue-n20': '#205586', + 'kda-color-palette-blue-n20@alpha20': '#20558633', + 'kda-color-palette-blue-n20@alpha80': '#205586cc', + 'kda-color-palette-blue-n30': '#2767a3', + 'kda-color-palette-blue-n40': '#2e7ac0', + 'kda-color-palette-blue-n50': '#358cdd', + 'kda-color-palette-blue-n60': '#509ce3', + 'kda-color-palette-blue-n70': '#6bace8', + 'kda-color-palette-blue-n80': '#86bcee', + 'kda-color-palette-blue-n80@alpha20': '#86bcee33', + 'kda-color-palette-blue-n80@alpha80': '#86bceecc', + 'kda-color-palette-blue-n90': '#a0cbf4', + 'kda-color-palette-blue-n95': '#bbdbf9', + 'kda-color-palette-blue-n99': '#d6ebff', + 'kda-color-palette-blue-n100': '#f0f8ff', + 'kda-color-palette-celery-n0': '#001a04', + 'kda-color-palette-celery-n1': '#003007', + 'kda-color-palette-celery-n5': '#00400a', + 'kda-color-palette-celery-n10': '#00530d', + 'kda-color-palette-celery-n20': '#00670f', + 'kda-color-palette-celery-n20@alpha20': '#00670f33', + 'kda-color-palette-celery-n20@alpha80': '#00670fcc', + 'kda-color-palette-celery-n30': '#007c0f', + 'kda-color-palette-celery-n40': '#009112', + 'kda-color-palette-celery-n50': '#07a721', + 'kda-color-palette-celery-n60': '#27bb36', + 'kda-color-palette-celery-n70': '#4ecf50', + 'kda-color-palette-celery-n80': '#72e06a', + 'kda-color-palette-celery-n80@alpha20': '#72e06a33', + 'kda-color-palette-celery-n80@alpha80': '#72e06acc', + 'kda-color-palette-celery-n90': '#96ee85', + 'kda-color-palette-celery-n95': '#aef69d', + 'kda-color-palette-celery-n99': '#cdfcbf', + 'kda-color-palette-celery-n100': '#e9fce3', + 'kda-color-palette-green-n0': '#061a10', + 'kda-color-palette-green-n1': '#0a2e1d', + 'kda-color-palette-green-n5': '#153e2c', + 'kda-color-palette-green-n10': '#1f4f3c', + 'kda-color-palette-green-n20': '#2a5f4b', + 'kda-color-palette-green-n30': '#356f5a', + 'kda-color-palette-green-n40': '#3f806a', + 'kda-color-palette-green-n50': '#4a9079', + 'kda-color-palette-green-n60': '#60a18a', + 'kda-color-palette-green-n70': '#76b39b', + 'kda-color-palette-green-n80': '#8cc4ad', + 'kda-color-palette-green-n90': '#a2d5be', + 'kda-color-palette-green-n95': '#b8e7cf', + 'kda-color-palette-green-n99': '#cef8e0', + 'kda-color-palette-green-n100': '#e9f8ef', + 'kda-color-palette-magenta-n0': '#470820', + 'kda-color-palette-magenta-n1': '#660b2e', + 'kda-color-palette-magenta-n5': '#7b0d38', + 'kda-color-palette-magenta-n10': '#901041', + 'kda-color-palette-magenta-n20': '#a5124b', + 'kda-color-palette-magenta-n30': '#ba1455', + 'kda-color-palette-magenta-n40': '#cf175e', + 'kda-color-palette-magenta-n50': '#e41968', + 'kda-color-palette-magenta-n60': '#e93c7f', + 'kda-color-palette-magenta-n70': '#ed5f96', + 'kda-color-palette-magenta-n80': '#f282ad', + 'kda-color-palette-magenta-n90': '#f6a4c3', + 'kda-color-palette-magenta-n95': '#fbc7da', + 'kda-color-palette-magenta-n99': '#ffeaf1', + 'kda-color-palette-magenta-n100': '#fff7fa', + 'kda-color-palette-orange-n0': '#290e01', + 'kda-color-palette-orange-n1': '#491901', + 'kda-color-palette-orange-n5': '#612300', + 'kda-color-palette-orange-n10': '#7a2f00', + 'kda-color-palette-orange-n20': '#953d00', + 'kda-color-palette-orange-n30': '#b14c00', + 'kda-color-palette-orange-n40': '#cb5d00', + 'kda-color-palette-orange-n50': '#e27b38', + 'kda-color-palette-orange-n60': '#ec9046', + 'kda-color-palette-orange-n70': '#f5a655', + 'kda-color-palette-orange-n80': '#ffbb63', + 'kda-color-palette-orange-n90': '#fdd291', + 'kda-color-palette-orange-n95': '#ffdfad', + 'kda-color-palette-orange-n99': '#ffeccc', + 'kda-color-palette-orange-n100': '#fff7eb', + 'kda-color-palette-red-n0': '#300', + 'kda-color-palette-red-n1': '#590000', + 'kda-color-palette-red-n5': '#740000', + 'kda-color-palette-red-n10': '#930000', + 'kda-color-palette-red-n20': '#b40000', + 'kda-color-palette-red-n20@alpha20': '#b4000033', + 'kda-color-palette-red-n20@alpha80': '#b40000cc', + 'kda-color-palette-red-n30': '#d31510', + 'kda-color-palette-red-n40': '#ea3829', + 'kda-color-palette-red-n50': '#f75c46', + 'kda-color-palette-red-n60': '#ff7c65', + 'kda-color-palette-red-n70': '#ff9b88', + 'kda-color-palette-red-n80': '#ffb7a9', + 'kda-color-palette-red-n80@alpha20': '#ffb7a933', + 'kda-color-palette-red-n80@alpha80': '#ffb7a9cc', + 'kda-color-palette-red-n90': '#ffcdc3', + 'kda-color-palette-red-n95': '#ffddd6', + 'kda-color-palette-red-n99': '#ffebe7', + 'kda-color-palette-red-n100': '#fff5f5', + 'kda-color-palette-yellow-n0': '#1a1100', + 'kda-color-palette-yellow-n1': '#362500', + 'kda-color-palette-yellow-n5': '#483300', + 'kda-color-palette-yellow-n10': '#5b4300', + 'kda-color-palette-yellow-n20': '#705300', + 'kda-color-palette-yellow-n20@alpha20': '#70530033', + 'kda-color-palette-yellow-n20@alpha80': '#705300cc', + 'kda-color-palette-yellow-n30': '#856600', + 'kda-color-palette-yellow-n40': '#9b7800', + 'kda-color-palette-yellow-n50': '#b08c00', + 'kda-color-palette-yellow-n60': '#c49f00', + 'kda-color-palette-yellow-n70': '#d7b300', + 'kda-color-palette-yellow-n80': '#e8c600', + 'kda-color-palette-yellow-n80@alpha20': '#e8c60033', + 'kda-color-palette-yellow-n80@alpha80': '#e8c600cc', + 'kda-color-palette-yellow-n90': '#f8d904', + 'kda-color-palette-yellow-n95': '#f8e750', + 'kda-color-palette-yellow-n99': '#fbf198', + 'kda-color-palette-yellow-n100': '#fbf8dd', + 'kda-color-categorical-category1': '#2898bd', + 'kda-color-categorical-category1-@hover': '#42b2d7', + 'kda-color-categorical-category2': '#b8acf6', + 'kda-color-categorical-category2-@hover': '#dfd8fd', + 'kda-color-categorical-category3': '#e56910', + 'kda-color-categorical-category3-@hover': '#f38a3f', + 'kda-color-categorical-category4': '#f797d2', + 'kda-color-categorical-category4-@hover': '#fdd0ec', + 'kda-color-categorical-category5': '#cce0ff', + 'kda-color-categorical-category5-@hover': '#e9f2ff', + 'kda-color-categorical-category6': '#8270db', + 'kda-color-categorical-category6-@hover': '#8f7ee7', + 'kda-color-categorical-category7': '#fdd0ec', + 'kda-color-categorical-category7-@hover': '#ffecf8', + 'kda-color-categorical-category8': '#fec195', + 'kda-color-categorical-category8-@hover': '#fedec8', + 'kda-color-semantic-info-n0': '#06101a', + 'kda-color-semantic-info-n1': '#0b1d2e', + 'kda-color-semantic-info-n5': '#112c46', + 'kda-color-semantic-info-n10': '#194268', + 'kda-color-semantic-info-n20': '#205586', + 'kda-color-semantic-info-n20@alpha20': '#20558633', + 'kda-color-semantic-info-n20@alpha80': '#205586cc', + 'kda-color-semantic-info-n30': '#2767a3', + 'kda-color-semantic-info-n40': '#2e7ac0', + 'kda-color-semantic-info-n50': '#358cdd', + 'kda-color-semantic-info-n60': '#509ce3', + 'kda-color-semantic-info-n70': '#6bace8', + 'kda-color-semantic-info-n80': '#86bcee', + 'kda-color-semantic-info-n80@alpha20': '#86bcee33', + 'kda-color-semantic-info-n80@alpha80': '#86bceecc', + 'kda-color-semantic-info-n90': '#a0cbf4', + 'kda-color-semantic-info-n95': '#bbdbf9', + 'kda-color-semantic-info-n99': '#d6ebff', + 'kda-color-semantic-info-n100': '#f0f8ff', + 'kda-color-semantic-negative-n0': '#300', + 'kda-color-semantic-negative-n1': '#590000', + 'kda-color-semantic-negative-n5': '#740000', + 'kda-color-semantic-negative-n10': '#930000', + 'kda-color-semantic-negative-n20': '#b40000', + 'kda-color-semantic-negative-n20@alpha20': '#b4000033', + 'kda-color-semantic-negative-n20@alpha80': '#b40000cc', + 'kda-color-semantic-negative-n30': '#d31510', + 'kda-color-semantic-negative-n40': '#ea3829', + 'kda-color-semantic-negative-n50': '#f75c46', + 'kda-color-semantic-negative-n60': '#ff7c65', + 'kda-color-semantic-negative-n70': '#ff9b88', + 'kda-color-semantic-negative-n80': '#ffb7a9', + 'kda-color-semantic-negative-n80@alpha20': '#ffb7a933', + 'kda-color-semantic-negative-n80@alpha80': '#ffb7a9cc', + 'kda-color-semantic-negative-n90': '#ffcdc3', + 'kda-color-semantic-negative-n95': '#ffddd6', + 'kda-color-semantic-negative-n99': '#ffebe7', + 'kda-color-semantic-negative-n100': '#fff5f5', + 'kda-color-semantic-positive-n0': '#001a04', + 'kda-color-semantic-positive-n1': '#003007', + 'kda-color-semantic-positive-n5': '#00400a', + 'kda-color-semantic-positive-n10': '#00530d', + 'kda-color-semantic-positive-n20': '#00670f', + 'kda-color-semantic-positive-n20@alpha20': '#00670f33', + 'kda-color-semantic-positive-n20@alpha80': '#00670fcc', + 'kda-color-semantic-positive-n30': '#007c0f', + 'kda-color-semantic-positive-n40': '#009112', + 'kda-color-semantic-positive-n50': '#07a721', + 'kda-color-semantic-positive-n60': '#27bb36', + 'kda-color-semantic-positive-n70': '#4ecf50', + 'kda-color-semantic-positive-n80': '#72e06a', + 'kda-color-semantic-positive-n80@alpha20': '#72e06a33', + 'kda-color-semantic-positive-n80@alpha80': '#72e06acc', + 'kda-color-semantic-positive-n90': '#96ee85', + 'kda-color-semantic-positive-n95': '#aef69d', + 'kda-color-semantic-positive-n99': '#cdfcbf', + 'kda-color-semantic-positive-n100': '#e9fce3', + 'kda-color-semantic-warning-n0': '#1a1100', + 'kda-color-semantic-warning-n1': '#362500', + 'kda-color-semantic-warning-n5': '#483300', + 'kda-color-semantic-warning-n10': '#5b4300', + 'kda-color-semantic-warning-n20': '#705300', + 'kda-color-semantic-warning-n20@alpha20': '#70530033', + 'kda-color-semantic-warning-n20@alpha80': '#705300cc', + 'kda-color-semantic-warning-n30': '#856600', + 'kda-color-semantic-warning-n40': '#9b7800', + 'kda-color-semantic-warning-n50': '#b08c00', + 'kda-color-semantic-warning-n60': '#c49f00', + 'kda-color-semantic-warning-n70': '#d7b300', + 'kda-color-semantic-warning-n80': '#e8c600', + 'kda-color-semantic-warning-n80@alpha20': '#e8c60033', + 'kda-color-semantic-warning-n80@alpha80': '#e8c600cc', + 'kda-color-semantic-warning-n90': '#f8d904', + 'kda-color-semantic-warning-n95': '#f8e750', + 'kda-color-semantic-warning-n99': '#fbf198', + 'kda-color-semantic-warning-n100': '#fbf8dd', + 'kda-color-text-base': '#fffffff2', + 'kda-color-text-base-@init': '#fff', + 'kda-color-text-base-@hover': '#e4e5e5', + 'kda-color-text-base-@focus': '#f5f5f5', + 'kda-color-text-base-@active': '#fff', + 'kda-color-text-base-@disabled': '#fff6', + 'kda-color-text-base-@selected': '#fff', + 'kda-color-text-base-inverse': '#000000f2', + 'kda-color-text-base-inverse-@init': '#000', + 'kda-color-text-base-inverse-@hover': '#131e2b', + 'kda-color-text-base-inverse-@focus': '#020e1b', + 'kda-color-text-base-inverse-@active': '#000', + 'kda-color-text-base-inverse-@disabled': '#0006', + 'kda-color-text-base-inverse-@selected': '#000', + 'kda-color-text-subtle': '#fffc', + 'kda-color-text-subtle-@hover': '#fffffff2', + 'kda-color-text-subtle-inverse': '#000000f2', + 'kda-color-text-subtlest': '#ffffffb3', + 'kda-color-text-subtlest-@hover': '#fffc', + 'kda-color-text-subtlest-inverse': '#000000b3', + 'kda-color-text-gray': '#fff6', + 'kda-color-text-gray-lighter': '#8d9298', + 'kda-color-text-gray-bolder': '#b0b3b7', + 'kda-color-text-gray-inverse': '#0006', + 'kda-color-text-gray-inverse-lighter': '#6a7178', + 'kda-color-text-gray-inverse-bolder': '#475059', + 'kda-color-text-brand-wordmark': '#f0eae6', + 'kda-color-text-brand-wordmark-inverse': '#0f0f0f', + 'kda-color-text-brand-primary': '#a2d5be', + 'kda-color-text-brand-primary-@hover': '#b8e7cf', + 'kda-color-text-brand-primary-@focus': '#cef8e0', + 'kda-color-text-brand-primary-inverse': '#1f4f3c', + 'kda-color-text-brand-primary-inverse-@hover': '#153e2c', + 'kda-color-text-brand-primary-inverse-@focus': '#0a2e1d', + 'kda-color-text-brand-secondary': '#a0cbf4', + 'kda-color-text-brand-secondary-@hover': '#bbdbf9', + 'kda-color-text-brand-secondary-@focus': '#d6ebff', + 'kda-color-text-brand-secondary-inverse': '#194268', + 'kda-color-text-brand-secondary-inverse-@hover': '#112c46', + 'kda-color-text-brand-secondary-inverse-@focus': '#0b1d2e', + 'kda-color-text-accent-primary': '#fff', + 'kda-color-text-accent-primary-@hover': '#e4e5e5', + 'kda-color-text-accent-primary-@focus': '#f5f5f5', + 'kda-color-text-accent-primary-@active': '#fff', + 'kda-color-text-accent-primary-inverse': '#000', + 'kda-color-text-accent-primary-inverse-@hover': '#131e2b', + 'kda-color-text-accent-primary-inverse-@focus': '#020e1b', + 'kda-color-text-accent-primary-inverse-@active': '#000', + 'kda-color-text-semantic-positive': '#cdfcbf', + 'kda-color-text-semantic-positive-@hover': '#e9fce3', + 'kda-color-text-semantic-positive-@focus': '#e9fce3', + 'kda-color-text-semantic-positive-inverse': '#003007', + 'kda-color-text-semantic-positive-inverse-@hover': '#001a04', + 'kda-color-text-semantic-positive-inverse-@focus': '#001a04', + 'kda-color-text-semantic-negative': '#ffebe7', + 'kda-color-text-semantic-negative-@hover': '#fff5f5', + 'kda-color-text-semantic-negative-@focus': '#fff5f5', + 'kda-color-text-semantic-negative-inverse': '#590000', + 'kda-color-text-semantic-negative-inverse-@hover': '#300', + 'kda-color-text-semantic-negative-inverse-@focus': '#300', + 'kda-color-text-semantic-warning': '#fbf198', + 'kda-color-text-semantic-warning-@hover': '#fbf8dd', + 'kda-color-text-semantic-warning-@focus': '#fbf8dd', + 'kda-color-text-semantic-warning-inverse': '#362500', + 'kda-color-text-semantic-warning-inverse-@hover': '#1a1100', + 'kda-color-text-semantic-warning-inverse-@focus': '#1a1100', + 'kda-color-text-semantic-info': '#d6ebff', + 'kda-color-text-semantic-info-@hover': '#f0f8ff', + 'kda-color-text-semantic-info-@focus': '#f0f8ff', + 'kda-color-text-semantic-info-inverse': '#0b1d2e', + 'kda-color-text-semantic-info-inverse-@hover': '#06101a', + 'kda-color-text-semantic-info-inverse-@focus': '#06101a', + 'kda-effect-defaultBlur': '0.5rem', + 'kda-effect-shadow-level1': '4px 0.5rem 0.5rem 4px #000', + 'kda-effect-shadow-level2': '4rem 4rem 0.5rem 2rem #000', + 'kda-effect-shadow-level3': '0px 0px 0.5rem 24px #000', + 'kda-layout-content-minWidth': '33.75rem', + 'kda-layout-content-maxWidth': '42.5rem', + 'kda-radius-no': '0px', + 'kda-radius-xs': '2px', + 'kda-radius-sm': '4px', + 'kda-radius-md': '6px', + 'kda-radius-lg': '8px', + 'kda-radius-xl': '16px', + 'kda-radius-xxl': '24px', + 'kda-radius-xs-outline': '3px', + 'kda-radius-sm-outline': '5px', + 'kda-radius-md-outline': '7px', + 'kda-radius-round': '999rem', + 'kda-screen-resolutions-width-mobile-apple-iphone_se': 320, + 'kda-screen-resolutions-width-mobile-apple-iphone_8': 375, + 'kda-screen-resolutions-width-mobile-apple-iphone_11': 375, + 'kda-screen-resolutions-width-mobile-apple-iphone_11_pro': 414, + 'kda-screen-resolutions-width-mobile-samsung-galaxy_s9': 360, + 'kda-screen-resolutions-width-tablet-apple-ipad_mini': 768, + 'kda-screen-resolutions-width-tablet-apple-ipad': 810, + 'kda-screen-resolutions-width-tablet-apple-ipad_pro': 1024, + 'kda-screen-resolutions-width-laptop-macBook_air': 1440, + 'kda-screen-resolutions-width-laptop-macBook_pro_13': 1280, + 'kda-screen-resolutions-width-laptop-macBook_pro_16': 3072, + 'kda-screen-resolutions-width-desktop-small': 1024, + 'kda-screen-resolutions-width-desktop-widescreen': 1280, + 'kda-screen-resolutions-width-desktop-hd': 1366, + 'kda-screen-resolutions-width-desktop-full_hd': 1920, + 'kda-screen-resolutions-width-desktop-2k': 2560, + 'kda-screen-resolutions-width-desktop-ultra_wide': 3440, + 'kda-screen-resolutions-width-desktop-4k': 3840, + 'kda-screen-resolutions-height-mobile-apple-iphone_se': 568, + 'kda-screen-resolutions-height-mobile-apple-iphone_8': 667, + 'kda-screen-resolutions-height-mobile-apple-iphone_11': 812, + 'kda-screen-resolutions-height-mobile-apple-iphone_11_pro': 896, + 'kda-screen-resolutions-height-mobile-samsung-galaxy_s9': 740, + 'kda-screen-resolutions-height-tablet-apple-ipad_mini': 1024, + 'kda-screen-resolutions-height-tablet-apple-ipad': 1080, + 'kda-screen-resolutions-height-tablet-apple-ipad_pro': 1366, + 'kda-screen-resolutions-height-laptop-macBook_air': 900, + 'kda-screen-resolutions-height-laptop-macBook_pro_13': 800, + 'kda-screen-resolutions-height-laptop-macBook_pro_16': 1920, + 'kda-screen-resolutions-height-desktop-small': 768, + 'kda-screen-resolutions-height-desktop-widescreen': 800, + 'kda-screen-resolutions-height-desktop-hd': 768, + 'kda-screen-resolutions-height-desktop-full_hd': 1080, + 'kda-screen-resolutions-height-desktop-2k': 1440, + 'kda-screen-resolutions-height-desktop-ultra_wide': 1440, + 'kda-screen-resolutions-height-desktop-4k': 2160, + 'kda-size-n0': 0, + 'kda-size-n1': '0.25rem', + 'kda-size-n2': '0.5rem', + 'kda-size-n3': '0.75rem', + 'kda-size-n4': '1rem', + 'kda-size-n5': '1.25rem', + 'kda-size-n6': '1.5rem', + 'kda-size-n7': '1.75rem', + 'kda-size-n8': '2rem', + 'kda-size-n9': '2.25rem', + 'kda-size-n10': '2.5rem', + 'kda-size-n11': '2.75rem', + 'kda-size-n12': '3rem', + 'kda-size-n13': '3.25rem', + 'kda-size-n14': '3.5rem', + 'kda-size-n15': '3.75rem', + 'kda-size-n16': '4rem', + 'kda-size-n17': '4.25rem', + 'kda-size-n18': '4.5rem', + 'kda-size-n19': '4.75rem', + 'kda-size-n20': '5rem', + 'kda-size-n24': '6rem', + 'kda-size-n25': '6.25rem', + 'kda-size-n30': '7.5rem', + 'kda-size-n32': '8rem', + 'kda-size-n35': '8.75rem', + 'kda-size-n40': '10rem', + 'kda-size-n48': '12rem', + 'kda-size-n56': '14rem', + 'kda-size-n64': '16rem', + 'kda-spacing-no': '0', + 'kda-spacing-xxs': '0.125rem', + 'kda-spacing-xs': '0.25rem', + 'kda-spacing-sm': '0.5rem', + 'kda-spacing-md': '1rem', + 'kda-spacing-lg': '1.5rem', + 'kda-spacing-xl': '1.75rem', + 'kda-spacing-xxl': '2.25rem', + 'kda-spacing-xxxl': '2.5rem', + 'kda-spacing-n0': 0, + 'kda-spacing-n1': '0.25rem', + 'kda-spacing-n2': '0.5rem', + 'kda-spacing-n3': '0.75rem', + 'kda-spacing-n4': '1rem', + 'kda-spacing-n5': '1.25rem', + 'kda-spacing-n6': '1.5rem', + 'kda-spacing-n7': '1.75rem', + 'kda-spacing-n8': '2rem', + 'kda-spacing-n9': '2.25rem', + 'kda-spacing-n10': '2.5rem', + 'kda-spacing-n11': '2.75rem', + 'kda-spacing-n12': '3rem', + 'kda-spacing-n13': '3.25rem', + 'kda-spacing-n14': '3.5rem', + 'kda-spacing-n15': '3.75rem', + 'kda-spacing-n16': '4rem', + 'kda-spacing-n17': '4.25rem', + 'kda-spacing-n18': '4.5rem', + 'kda-spacing-n19': '4.75rem', + 'kda-spacing-n20': '5rem', + 'kda-spacing-n24': '6rem', + 'kda-spacing-n25': '6.25rem', + 'kda-spacing-n30': '7.5rem', + 'kda-spacing-n32': '8rem', + 'kda-spacing-n35': '8.75rem', + 'kda-spacing-n40': '10rem', + 'kda-spacing-n48': '12rem', + 'kda-spacing-n56': '14rem', + 'kda-spacing-n64': '16rem', + 'kda-transition-delay-none': '0ms', + 'kda-transition-duration-base': '400ms', + 'kda-transition-duration-d200': '200ms', + 'kda-transition-animation-easeOutSine': '200ms cubic-bezier(0.61, 1, 0.88, 1)', + 'kda-transition-animation-easeOutCubic': '200ms cubic-bezier(0.33, 1, 0.68, 1)', + 'kda-typography-family-primaryFont': 'Inter', + 'kda-typography-family-monospaceFont': 'Kode Mono', + 'kda-typography-fontSize-xxs': '0.6875rem', + 'kda-typography-fontSize-xs': '0.75rem', + 'kda-typography-fontSize-sm': '0.875rem', + 'kda-typography-fontSize-base': '1rem', + 'kda-typography-fontSize-md': '1.125rem', + 'kda-typography-fontSize-lg': '1.25rem', + 'kda-typography-fontSize-xl': '1.5rem', + 'kda-typography-fontSize-2xl': '1.75rem', + 'kda-typography-fontSize-3xl': '2rem', + 'kda-typography-fontSize-4xl': '2.25rem', + 'kda-typography-fontSize-5xl': '2.5rem', + 'kda-typography-fontSize-6xl': '2.75rem', + 'kda-typography-fontSize-7xl': '3rem', + 'kda-typography-fontSize-8xl': '3.25rem', + 'kda-typography-fontSize-9xl': '3.75rem', + 'kda-typography-fontSize-10xl': '4.5rem', + 'kda-typography-fontSize-11xl': '5rem', + 'kda-typography-fontSize-12xl': '5.25rem', + 'kda-typography-lineHeight-7xl': '3rem', + 'kda-typography-lineHeight-4xl': '2.25rem', + 'kda-typography-lineHeight-3xl': '2rem', + 'kda-typography-lineHeight-2xl': '1.75rem', + 'kda-typography-lineHeight-xl': '1.5rem', + 'kda-typography-lineHeight-base': '1.25rem', + 'kda-typography-lineHeight-md': '1rem', + 'kda-typography-lineHeight-sm': '0.875rem', + 'kda-typography-weight-primaryFont-light': 300, + 'kda-typography-weight-primaryFont-regular': 400, + 'kda-typography-weight-primaryFont-medium': 500, + 'kda-typography-weight-primaryFont-semiBold': 600, + 'kda-typography-weight-primaryFont-bold': 700, + 'kda-typography-weight-monospaceFont-regular': 400, + 'kda-typography-weight-monospaceFont-medium': 500, + 'kda-typography-weight-monospaceFont-semiBold': 600, + 'kda-typography-weight-monospaceFont-bold': 700, + 'kda-zIndex-deepdive': -99999, + 'kda-zIndex': 1, + 'kda-zIndex-dialog': 6000, + 'kda-zIndex-surface': 4, + 'kda-zIndex-dropdown': 7000, + 'kda-zIndex-modal': 9000, + 'kda-zIndex-overlay': 8000, + 'kda-zIndex-popup': 5000, + 'kda-zIndex-spinner': 9050, + 'kda-zIndex-sticky': 100, + 'kda-zIndex-toast': 10000, +}; + +export default { + kda: { + explorer: { + alert: { + surface: { + text: { + 'default': '#d6ebff', + }, + }, + background: { + 'default': '#061a10', + semantic: { + positive: '#001a04', + negative: '#300', + warning: '#1a1100', + info: '#06101a', + }, + }, + loading: { + 'default': '#a0cbf4', + }, + }, + button: { + background: { + color: { + 'default': '#52ffc6', + }, + }, + surface: { + color: { + 'default': '#000', + }, + }, + }, + hero: { + banner: { + title: { + font: { + size: '1.5rem', + weight: '500', + lineHeight: '1.5rem', + color: { + name: '#fff', + prefix: '#fff6', + selector: '#fff', + }, + }, + margin: { + gap: '1rem', + bottom: '1rem', + }, + }, + border: '1px solid #4a9079', + radius: '2px', + background: '#4a9079', + padding: '1rem', + column: { + width: '100%', + gap: '2rem', + }, + button: { + dimensions: { + radius: '0px', + }, + 'default': { + background: '#52ffc6', + surface: '#000', + }, + '@hover': { + background: '#52ffc6', + surface: '#000', + }, + '@active': { + background: '#4be9b5', + surface: '#131e2b', + }, + }, + }, + }, + input: { + dimensions: { + radius: { + base: '0px', + }, + }, + border: { + color: { + semantic: { + negative: '#ff7c65', + }, + '@focus': '#4a9079', + }, + }, + }, + navigation: { + background: { + '@active': '#2a5f4b', + }, + surface: { + text: { + 'default': '#cef8e0', + '@selected': '#e9f8ef', + }, + }, + }, + toast: { + surface: { + text: { + 'default': '#d6ebff', + }, + }, + background: { + 'default': '#061a10', + semantic: { + positive: '#001a04', + negative: '#300', + warning: '#1a1100', + info: '#06101a', + }, + }, + loading: { + 'default': '#a0cbf4', + }, + }, + top: { + bar: { + font: { + size: '0.75rem', + }, + }, + }, + widget: { + stats: { + background: { + 'default': '#0006', + '@hover': '#061a10', + '@focus': '#061a10', + '@visited': '#061a10', + }, + surface: { + text: { + subtle: '#fffc', + 'default': '#a2d5be', + }, + icon: { + color: { + 'default': '#4a9079', + }, + }, + }, + }, + }, + }, + foundation: { + border: { + width: { + hairline: '1px', + normal: '2px', + thick: '4px', + }, + hairline: '1px solid #d2d4d640', + normal: '2px solid #f5f5f580', + thick: '4px solid #f5f5f580', + }, + breakpoint: { + xs: '0rem', + sm: '40rem', + md: '48rem', + lg: '64rem', + xl: '80rem', + xxl: '96rem', + }, + color: { + accent: { + blue: '#358cdd', + celery: '#07a721', + green: '#4a9079', + magenta: '#e41968', + orange: '#e27b38', + red: '#f75c46', + yellow: '#b08c00', + brand: { + primary: '#4a9079', + secondary: '#358cdd', + tertiary: '#e27b38', + tint: { + primary: '#27795e', + secondary: '#e41968', + tertiary: '#e27b38', + }, + }, + semantic: { + info: '#358cdd', + warning: '#b08c00', + positive: '#07a721', + negative: '#f75c46', + }, + }, + background: { + base: { + 'default': '#020e1b', + warm: '#0f0f0f', + '@hover': '#252f3a', + '@focus': '#131e2bcc', + '@active': '#131e2b', + '@disabled': '#ffffff1a', + inverse: { + 'default': '#f5f5f5', + warm: '#f0eae6', + '@hover': '#d2d4d6', + '@focus': '#e4e5e5cc', + '@disabled': '#0000001a', + }, + }, + layer: { + 'default': '#131e2bcc', + solid: '#131e2b', + }, + overlay: { + 'default': '#131e2bf2', + context: { + 'default': '#131e2bf2', + }, + '@hover': '#131e2b', + }, + surface: { + 'default': '#f5f5f50f', + inverse: { + 'default': '#f5f5f5cc', + }, + subtle: { + 'default': '#0003', + inverse: { + 'default': '#f5f5f5cc', + }, + }, + }, + surfaceHighContrast: { + 'default': '#000000e6', + inverse: { + 'default': '#ffffffe6', + }, + }, + brand: { + primary: { + 'default': '#153e2c', + subtle: '#0a2e1d', + subtlest: '#061a10', + '@hover': '#1f4f3c', + '@focus': '#2a5f4b', + '@active': '#356f5a', + inverse: { + 'default': '#b8e7cf', + subtle: '#cef8e0', + subtlest: '#e9f8ef', + '@hover': '#a2d5be', + '@focus': '#8cc4ad', + '@active': '#76b39b', + }, + }, + secondary: { + 'default': '#112c46', + subtle: '#0b1d2e', + subtlest: '#06101a', + '@hover': '#112c46', + '@focus': '#194268', + '@active': '#205586', + inverse: { + 'default': '#bbdbf9', + subtle: '#d6ebff', + subtlest: '#f0f8ff', + '@hover': '#bbdbf9', + '@focus': '#a0cbf4', + '@active': '#86bcee', + }, + }, + }, + accent: { + primary: { + 'default': '#27795e', + '@hover': '#2e8f6f', + '@focus': '#27795ecc', + '@active': '#20624c', + inverse: { + 'default': '#52ffc6', + '@hover': '#4be9b5', + '@focus': '#52ffc6cc', + '@active': '#52ffc6', + }, + }, + secondary: { + 'default': '#e41968', + '@hover': '#e93c7f', + '@focus': '#e93c7f', + '@active': '#e93c7f', + inverse: { + 'default': '#e41968', + '@hover': '#cf175e', + '@focus': '#cf175e', + '@active': '#cf175e', + }, + }, + tertiary: { + 'default': '#e27b38', + '@hover': '#ec9046', + '@focus': '#ec9046', + '@active': '#ec9046', + inverse: { + 'default': '#e27b38', + '@hover': '#cb5d00', + '@focus': '#cb5d00', + '@active': '#cb5d00', + }, + }, + }, + semantic: { + positive: { + 'default': '#00670f', + subtle: '#00670f33', + subtlest: '#001a04', + '@hover': '#007c0f', + '@focus': '#00670fcc', + '@active': '#00530d', + inverse: { + 'default': '#72e06a', + subtle: '#72e06a33', + subtlest: '#e9fce3', + '@hover': '#4ecf50', + '@focus': '#72e06acc', + '@active': '#96ee85', + }, + }, + negative: { + 'default': '#b40000', + subtle: '#b4000033', + subtlest: '#300', + '@hover': '#d31510', + '@focus': '#b40000cc', + '@active': '#930000', + inverse: { + 'default': '#ffb7a9', + subtle: '#ffb7a933', + subtlest: '#fff5f5', + '@hover': '#ff9b88', + '@focus': '#ffb7a9cc', + '@active': '#ffcdc3', + }, + }, + warning: { + 'default': '#705300', + subtle: '#70530033', + subtlest: '#1a1100', + '@hover': '#856600', + '@focus': '#705300cc', + '@active': '#5b4300', + inverse: { + 'default': '#e8c600', + subtle: '#e8c60033', + subtlest: '#fbf8dd', + '@hover': '#d7b300', + '@focus': '#e8c600cc', + '@active': '#f8d904', + }, + }, + info: { + 'default': '#205586', + subtle: '#20558633', + subtlest: '#06101a', + '@hover': '#2767a3', + '@focus': '#205586cc', + '@active': '#194268', + inverse: { + 'default': '#86bcee', + subtle: '#86bcee33', + subtlest: '#f0f8ff', + '@hover': '#6bace8', + '@focus': '#86bceecc', + '@active': '#a0cbf4', + }, + }, + }, + input: { + 'default': '#131e2bcc', + '@hover': '#475059cc', + '@focus': '#131e2bcc', + '@active': '#131e2b', + '@disabled': '#ffffff1a', + inverse: { + 'default': '#b0b3b7cc', + '@hover': '#d2d4d6', + '@focus': '#e4e5e5cc', + '@active': '#e4e5e5', + '@disabled': '#0000001a', + }, + }, + skeleton: { + 'default': '#475059cc', + }, + table: { + row: { + 'default': '#131e2bcc', + '@hover': '#252f3acc', + }, + }, + }, + border: { + base: { + subtle: '#f5f5f51a', + 'default': '#d2d4d640', + bold: '#f5f5f580', + boldest: '#ffffffb3', + 'high-contrast': '#fff', + '@disabled': '#475059', + '@hover': '#475059', + '@focus': '#8d9298', + '@active': '#b0b3b7', + inverse: { + subtle: '#020e1b1a', + 'default': '#020e1b33', + bold: '#0006', + boldest: '#020e1b80', + 'high-contrast': '#000', + '@disabled': '#475059', + '@hover': '#475059', + '@focus': '#8d9298', + '@active': '#b0b3b7', + }, + }, + brand: { + primary: { + 'default': '#3f806a', + subtle: '#2a5f4b', + '@hover': '#60a18a', + '@focus': '#76b39b', + inverse: { + 'default': '#8cc4ad', + '@hover': '#76b39b', + '@focus': '#60a18a', + }, + }, + secondary: { + 'default': '#2e7ac0', + subtle: '#205586', + '@hover': '#509ce3', + '@focus': '#6bace8', + inverse: { + 'default': '#86bcee', + '@hover': '#6bace8', + '@focus': '#509ce3', + }, + }, + }, + semantic: { + positive: { + 'default': '#27bb36', + subtle: '#00400a', + '@disabled': '#00670f', + '@hover': '#4ecf50', + '@focus': '#27bb36', + inverse: { + 'default': '#009112', + '@hover': '#007c0f', + '@focus': '#00670f', + }, + }, + negative: { + 'default': '#ff7c65', + subtle: '#740000', + '@disabled': '#b40000', + '@hover': '#ff9b88', + '@focus': '#ff7c65', + inverse: { + 'default': '#ea3829', + '@hover': '#d31510', + '@focus': '#b40000', + }, + }, + warning: { + 'default': '#c49f00', + subtle: '#483300', + '@disabled': '#705300', + '@hover': '#d7b300', + '@focus': '#c49f00', + inverse: { + 'default': '#9b7800', + '@hover': '#856600', + '@focus': '#705300', + }, + }, + info: { + 'default': '#509ce3', + subtle: '#112c46', + '@disabled': '#205586', + '@hover': '#6bace8', + '@focus': '#509ce3', + inverse: { + 'default': '#2e7ac0', + '@hover': '#2767a3', + '@focus': '#205586', + }, + }, + }, + tint: { + outline: '#509ce3', + '@focus': '#27795ecc', + }, + overlay: { + context: '#475059cc', + }, + }, + brand: { + primary: { + n0: '#061a10', + n1: '#0a2e1d', + n5: '#153e2c', + n10: '#1f4f3c', + n20: '#2a5f4b', + n30: '#356f5a', + n40: '#3f806a', + n50: '#4a9079', + n60: '#60a18a', + n70: '#76b39b', + n80: '#8cc4ad', + n90: '#a2d5be', + n95: '#b8e7cf', + n99: '#cef8e0', + n100: '#e9f8ef', + }, + secondary: { + n0: '#06101a', + n1: '#0b1d2e', + n5: '#112c46', + n10: '#194268', + n20: '#205586', + n30: '#2767a3', + n40: '#2e7ac0', + n50: '#358cdd', + n60: '#509ce3', + n70: '#6bace8', + n80: '#86bcee', + n90: '#a0cbf4', + n95: '#bbdbf9', + n99: '#d6ebff', + n100: '#f0f8ff', + }, + tertiary: { + n0: '#290e01', + n1: '#491901', + n5: '#612300', + n10: '#7a2f00', + n20: '#953d00', + n30: '#b14c00', + n40: '#cb5d00', + n50: '#e27b38', + n60: '#ec9046', + n70: '#f5a655', + n80: '#ffbb63', + n90: '#fdd291', + n95: '#ffdfad', + n99: '#ffeccc', + n100: '#fff7eb', + }, + key: { + primary: '#4a9079', + secondary: '#0b1d2e', + tertiary: '#e27b38', + accent: '#e41968', + neutralwarm: '#0f0f0f', + white: '#f5f5f5', + black: '#020e1b', + }, + }, + gradient: { + base: { + subtle: 'linear-gradient( 90deg, #f5f5f5, #f5f5f500 )', + }, + }, + icon: { + base: { + 'default': '#e4e5e5', + bold: '#f5f5f5', + '@init': '#f5f5f5', + '@hover': '#f5f5f580', + '@focus': '#f5f5f5', + '@active': '#fff', + '@disabled': '#fff3', + inverse: { + 'default': '#131e2b', + bold: '#020e1b', + '@init': '#020e1b', + '@hover': '#020e1b80', + '@focus': '#020e1b', + '@active': '#000', + '@disabled': '#0003', + }, + }, + brand: { + logo: { + 'default': '#4a9079', + inverse: { + 'default': '#f0eae6', + }, + }, + primary: { + 'default': '#8cc4ad', + bold: '#a2d5be', + '@hover': '#76b39b', + '@focus': '#60a18a', + '@active': '#4a9079', + '@disabled': '#596069', + inverse: { + 'default': '#2a5f4b', + '@hover': '#356f5a', + '@focus': '#3f806a', + '@active': '#4a9079', + '@disabled': '#596069', + }, + }, + secondary: { + 'default': '#86bcee', + bold: '#a0cbf4', + '@hover': '#6bace8', + '@focus': '#509ce3', + '@active': '#358cdd', + '@disabled': '#596069', + inverse: { + 'default': '#205586', + '@hover': '#2767a3', + '@focus': '#2e7ac0', + '@active': '#358cdd', + '@disabled': '#596069', + }, + }, + }, + semantic: { + positive: { + 'default': '#72e06a', + '@hover': '#4ecf50', + '@focus': '#27bb36', + '@active': '#07a721', + '@disabled': '#596069', + inverse: { + 'default': '#00670f', + '@hover': '#007c0f', + '@focus': '#009112', + '@active': '#07a721', + '@disabled': '#596069', + }, + }, + negative: { + 'default': '#ffb7a9', + '@hover': '#ff9b88', + '@focus': '#ff7c65', + '@active': '#f75c46', + '@disabled': '#596069', + inverse: { + 'default': '#b40000', + '@hover': '#d31510', + '@focus': '#ea3829', + '@active': '#f75c46', + '@disabled': '#596069', + }, + }, + warning: { + 'default': '#e8c600', + '@hover': '#d7b300', + '@focus': '#c49f00', + '@active': '#b08c00', + '@disabled': '#596069', + inverse: { + 'default': '#705300', + '@hover': '#856600', + '@focus': '#9b7800', + '@active': '#b08c00', + '@disabled': '#596069', + }, + }, + info: { + 'default': '#86bcee', + '@hover': '#6bace8', + '@focus': '#509ce3', + '@active': '#358cdd', + '@disabled': '#596069', + inverse: { + 'default': '#205586', + '@hover': '#2767a3', + '@focus': '#2e7ac0', + '@active': '#358cdd', + '@disabled': '#596069', + }, + }, + }, + product: { + spirekey: { + animation: { + start: '#4a9079', + step1: '#4aa688', + step2: '#4bbd97', + step3: '#4bd3a6', + end: '#4be9b5', + }, + }, + }, + }, + link: { + base: { + 'default': '#3cbc92', + '@hover': '#4be9b5', + '@focus': '#4be9b5', + '@visited': '#f282ad', + }, + brand: { + primary: { + 'default': '#76b39b', + '@hover': '#8cc4ad', + '@focus': '#60a18a', + '@visited': '#f282ad', + }, + secondary: { + 'default': '#6bace8', + '@hover': '#86bcee', + '@focus': '#509ce3', + '@visited': '#f282ad', + }, + }, + semantic: { + positive: { + 'default': '#96ee85', + '@hover': '#aef69d', + '@focus': '#72e06a', + '@visited': '#f282ad', + }, + negative: { + 'default': '#ffcdc3', + '@hover': '#ffddd6', + '@focus': '#ffb7a9', + '@visited': '#f282ad', + }, + warning: { + 'default': '#f8d904', + '@hover': '#f8e750', + '@focus': '#e8c600', + '@visited': '#f282ad', + }, + info: { + 'default': '#a0cbf4', + '@hover': '#bbdbf9', + '@focus': '#86bcee', + '@visited': '#f282ad', + }, + }, + }, + neutral: { + n0: '#000', + 'n0@alpha0': '#0000', + 'n0@alpha10': '#0000001a', + 'n0@alpha20': '#0003', + 'n0@alpha40': '#0006', + 'n0@alpha70': '#000000b3', + 'n0@alpha80': '#000c', + 'n0@alpha90': '#000000e6', + 'n0@alpha95': '#000000f2', + n1: '#020e1b', + 'n1@alpha0': '#020e1b00', + 'n1@alpha1': '#020e1b03', + 'n1@alpha3': '#020e1b08', + 'n1@alpha4': '#020e1b0a', + 'n1@alpha5': '#020e1b0d', + 'n1@alpha6': '#020e1b0f', + 'n1@alpha10': '#020e1b1a', + 'n1@alpha20': '#020e1b33', + 'n1@alpha30': '#020e1b4d', + 'n1@alpha40': '#020e1b66', + 'n1@alpha50': '#020e1b80', + 'n1@alpha80': '#020e1bcc', + 'n1@alpha90': '#020e1be6', + n5: '#131e2b', + 'n5@alpha80': '#131e2bcc', + 'n5@alpha95': '#131e2bf2', + n10: '#252f3a', + 'n10@alpha80': '#252f3acc', + n15: '#36404a', + n20: '#475059', + 'n20@alpha80': '#475059cc', + n30: '#596069', + n40: '#6a7178', + n50: '#7c8288', + n60: '#8d9298', + n70: '#9ea3a7', + n80: '#b0b3b7', + 'n80@alpha80': '#b0b3b7cc', + n85: '#c1c4c6', + n90: '#d2d4d6', + 'n90@alpha20': '#d2d4d633', + 'n90@alpha25': '#d2d4d640', + n95: '#e4e5e5', + 'n95@alpha80': '#e4e5e5cc', + 'n95@alpha95': '#e4e5e5f2', + n99: '#f5f5f5', + 'n99@alpha0': '#f5f5f500', + 'n99@alpha1': '#f5f5f503', + 'n99@alpha3': '#f5f5f508', + 'n99@alpha4': '#f5f5f50a', + 'n99@alpha5': '#f5f5f50d', + 'n99@alpha6': '#f5f5f50f', + 'n99@alpha10': '#f5f5f51a', + 'n99@alpha20': '#f5f5f533', + 'n99@alpha30': '#f5f5f54d', + 'n99@alpha40': '#f5f5f566', + 'n99@alpha50': '#f5f5f580', + 'n99@alpha80': '#f5f5f5cc', + 'n99@alpha90': '#f5f5f5e6', + n100: '#fff', + 'n100@alpha0': '#fff0', + 'n100@alpha10': '#ffffff1a', + 'n100@alpha20': '#fff3', + 'n100@alpha40': '#fff6', + 'n100@alpha70': '#ffffffb3', + 'n100@alpha80': '#fffc', + 'n100@alpha90': '#ffffffe6', + 'n100@alpha95': '#fffffff2', + }, + neutralwarm: { + n0: '#050505', + n1: '#0f0f0f', + 'n1@alpha30': '#0f0f0f4d', + 'n1@alpha60': '#0f0f0f99', + 'n1@alpha80': '#0f0f0fcc', + 'n1@alpha95': '#0f0f0ff2', + n5: '#222121', + n10: '#353433', + n20: '#474645', + n30: '#5a5857', + n40: '#6d6a69', + n50: '#807d7b', + n60: '#928f8c', + n70: '#a5a19e', + n80: '#b8b3b0', + n90: '#cbc6c2', + n95: '#ddd8d4', + n99: '#f0eae6', + n100: '#fbfaf9', + }, + palette: { + aqua: { + n0: '#0a1f18', + n1: '#113529', + n5: '#184c3b', + n10: '#20624c', + n20: '#27795e', + 'n20@alpha80': '#27795ecc', + n30: '#2e8f6f', + n40: '#35a580', + n50: '#3cbc92', + n60: '#44d2a3', + n70: '#4be9b5', + n80: '#52ffc6', + 'n80@alpha80': '#52ffc6cc', + n90: '#7affd3', + n95: '#a1ffe0', + n99: '#c9ffed', + n100: '#f0fffa', + }, + blue: { + n0: '#06101a', + n1: '#0b1d2e', + n5: '#112c46', + n10: '#194268', + n20: '#205586', + 'n20@alpha20': '#20558633', + 'n20@alpha80': '#205586cc', + n30: '#2767a3', + n40: '#2e7ac0', + n50: '#358cdd', + n60: '#509ce3', + n70: '#6bace8', + n80: '#86bcee', + 'n80@alpha20': '#86bcee33', + 'n80@alpha80': '#86bceecc', + n90: '#a0cbf4', + n95: '#bbdbf9', + n99: '#d6ebff', + n100: '#f0f8ff', + }, + celery: { + n0: '#001a04', + n1: '#003007', + n5: '#00400a', + n10: '#00530d', + n20: '#00670f', + 'n20@alpha20': '#00670f33', + 'n20@alpha80': '#00670fcc', + n30: '#007c0f', + n40: '#009112', + n50: '#07a721', + n60: '#27bb36', + n70: '#4ecf50', + n80: '#72e06a', + 'n80@alpha20': '#72e06a33', + 'n80@alpha80': '#72e06acc', + n90: '#96ee85', + n95: '#aef69d', + n99: '#cdfcbf', + n100: '#e9fce3', + }, + green: { + n0: '#061a10', + n1: '#0a2e1d', + n5: '#153e2c', + n10: '#1f4f3c', + n20: '#2a5f4b', + n30: '#356f5a', + n40: '#3f806a', + n50: '#4a9079', + n60: '#60a18a', + n70: '#76b39b', + n80: '#8cc4ad', + n90: '#a2d5be', + n95: '#b8e7cf', + n99: '#cef8e0', + n100: '#e9f8ef', + }, + magenta: { + n0: '#470820', + n1: '#660b2e', + n5: '#7b0d38', + n10: '#901041', + n20: '#a5124b', + n30: '#ba1455', + n40: '#cf175e', + n50: '#e41968', + n60: '#e93c7f', + n70: '#ed5f96', + n80: '#f282ad', + n90: '#f6a4c3', + n95: '#fbc7da', + n99: '#ffeaf1', + n100: '#fff7fa', + }, + orange: { + n0: '#290e01', + n1: '#491901', + n5: '#612300', + n10: '#7a2f00', + n20: '#953d00', + n30: '#b14c00', + n40: '#cb5d00', + n50: '#e27b38', + n60: '#ec9046', + n70: '#f5a655', + n80: '#ffbb63', + n90: '#fdd291', + n95: '#ffdfad', + n99: '#ffeccc', + n100: '#fff7eb', + }, + red: { + n0: '#300', + n1: '#590000', + n5: '#740000', + n10: '#930000', + n20: '#b40000', + 'n20@alpha20': '#b4000033', + 'n20@alpha80': '#b40000cc', + n30: '#d31510', + n40: '#ea3829', + n50: '#f75c46', + n60: '#ff7c65', + n70: '#ff9b88', + n80: '#ffb7a9', + 'n80@alpha20': '#ffb7a933', + 'n80@alpha80': '#ffb7a9cc', + n90: '#ffcdc3', + n95: '#ffddd6', + n99: '#ffebe7', + n100: '#fff5f5', + }, + yellow: { + n0: '#1a1100', + n1: '#362500', + n5: '#483300', + n10: '#5b4300', + n20: '#705300', + 'n20@alpha20': '#70530033', + 'n20@alpha80': '#705300cc', + n30: '#856600', + n40: '#9b7800', + n50: '#b08c00', + n60: '#c49f00', + n70: '#d7b300', + n80: '#e8c600', + 'n80@alpha20': '#e8c60033', + 'n80@alpha80': '#e8c600cc', + n90: '#f8d904', + n95: '#f8e750', + n99: '#fbf198', + n100: '#fbf8dd', + }, + }, + categorical: { + category1: { + 'default': '#2898bd', + '@hover': '#42b2d7', + }, + category2: { + 'default': '#b8acf6', + '@hover': '#dfd8fd', + }, + category3: { + 'default': '#e56910', + '@hover': '#f38a3f', + }, + category4: { + 'default': '#f797d2', + '@hover': '#fdd0ec', + }, + category5: { + 'default': '#cce0ff', + '@hover': '#e9f2ff', + }, + category6: { + 'default': '#8270db', + '@hover': '#8f7ee7', + }, + category7: { + 'default': '#fdd0ec', + '@hover': '#ffecf8', + }, + category8: { + 'default': '#fec195', + '@hover': '#fedec8', + }, + }, + semantic: { + info: { + n0: '#06101a', + n1: '#0b1d2e', + n5: '#112c46', + n10: '#194268', + n20: '#205586', + 'n20@alpha20': '#20558633', + 'n20@alpha80': '#205586cc', + n30: '#2767a3', + n40: '#2e7ac0', + n50: '#358cdd', + n60: '#509ce3', + n70: '#6bace8', + n80: '#86bcee', + 'n80@alpha20': '#86bcee33', + 'n80@alpha80': '#86bceecc', + n90: '#a0cbf4', + n95: '#bbdbf9', + n99: '#d6ebff', + n100: '#f0f8ff', + }, + negative: { + n0: '#300', + n1: '#590000', + n5: '#740000', + n10: '#930000', + n20: '#b40000', + 'n20@alpha20': '#b4000033', + 'n20@alpha80': '#b40000cc', + n30: '#d31510', + n40: '#ea3829', + n50: '#f75c46', + n60: '#ff7c65', + n70: '#ff9b88', + n80: '#ffb7a9', + 'n80@alpha20': '#ffb7a933', + 'n80@alpha80': '#ffb7a9cc', + n90: '#ffcdc3', + n95: '#ffddd6', + n99: '#ffebe7', + n100: '#fff5f5', + }, + positive: { + n0: '#001a04', + n1: '#003007', + n5: '#00400a', + n10: '#00530d', + n20: '#00670f', + 'n20@alpha20': '#00670f33', + 'n20@alpha80': '#00670fcc', + n30: '#007c0f', + n40: '#009112', + n50: '#07a721', + n60: '#27bb36', + n70: '#4ecf50', + n80: '#72e06a', + 'n80@alpha20': '#72e06a33', + 'n80@alpha80': '#72e06acc', + n90: '#96ee85', + n95: '#aef69d', + n99: '#cdfcbf', + n100: '#e9fce3', + }, + warning: { + n0: '#1a1100', + n1: '#362500', + n5: '#483300', + n10: '#5b4300', + n20: '#705300', + 'n20@alpha20': '#70530033', + 'n20@alpha80': '#705300cc', + n30: '#856600', + n40: '#9b7800', + n50: '#b08c00', + n60: '#c49f00', + n70: '#d7b300', + n80: '#e8c600', + 'n80@alpha20': '#e8c60033', + 'n80@alpha80': '#e8c600cc', + n90: '#f8d904', + n95: '#f8e750', + n99: '#fbf198', + n100: '#fbf8dd', + }, + }, + text: { + base: { + 'default': '#fffffff2', + '@init': '#fff', + '@hover': '#e4e5e5', + '@focus': '#f5f5f5', + '@active': '#fff', + '@disabled': '#fff6', + '@selected': '#fff', + inverse: { + 'default': '#000000f2', + '@init': '#000', + '@hover': '#131e2b', + '@focus': '#020e1b', + '@active': '#000', + '@disabled': '#0006', + '@selected': '#000', + }, + }, + subtle: { + 'default': '#fffc', + '@hover': '#fffffff2', + inverse: { + 'default': '#000000f2', + }, + }, + subtlest: { + 'default': '#ffffffb3', + '@hover': '#fffc', + inverse: { + 'default': '#000000b3', + }, + }, + gray: { + 'default': '#fff6', + lighter: '#8d9298', + bolder: '#b0b3b7', + inverse: { + 'default': '#0006', + lighter: '#6a7178', + bolder: '#475059', + }, + }, + brand: { + wordmark: { + 'default': '#f0eae6', + inverse: { + 'default': '#0f0f0f', + }, + }, + primary: { + 'default': '#a2d5be', + '@hover': '#b8e7cf', + '@focus': '#cef8e0', + inverse: { + 'default': '#1f4f3c', + '@hover': '#153e2c', + '@focus': '#0a2e1d', + }, + }, + secondary: { + 'default': '#a0cbf4', + '@hover': '#bbdbf9', + '@focus': '#d6ebff', + inverse: { + 'default': '#194268', + '@hover': '#112c46', + '@focus': '#0b1d2e', + }, + }, + }, + accent: { + primary: { + 'default': '#fff', + '@hover': '#e4e5e5', + '@focus': '#f5f5f5', + '@active': '#fff', + inverse: { + 'default': '#000', + '@hover': '#131e2b', + '@focus': '#020e1b', + '@active': '#000', + }, + }, + }, + semantic: { + positive: { + 'default': '#cdfcbf', + '@hover': '#e9fce3', + '@focus': '#e9fce3', + inverse: { + 'default': '#003007', + '@hover': '#001a04', + '@focus': '#001a04', + }, + }, + negative: { + 'default': '#ffebe7', + '@hover': '#fff5f5', + '@focus': '#fff5f5', + inverse: { + 'default': '#590000', + '@hover': '#300', + '@focus': '#300', + }, + }, + warning: { + 'default': '#fbf198', + '@hover': '#fbf8dd', + '@focus': '#fbf8dd', + inverse: { + 'default': '#362500', + '@hover': '#1a1100', + '@focus': '#1a1100', + }, + }, + info: { + 'default': '#d6ebff', + '@hover': '#f0f8ff', + '@focus': '#f0f8ff', + inverse: { + 'default': '#0b1d2e', + '@hover': '#06101a', + '@focus': '#06101a', + }, + }, + }, + }, + }, + effect: { + defaultBlur: '0.5rem', + shadow: { + level1: '4px 0.5rem 0.5rem 4px #000', + level2: '4rem 4rem 0.5rem 2rem #000', + level3: '0px 0px 0.5rem 24px #000', + }, + }, + layout: { + content: { + minWidth: '33.75rem', + maxWidth: '42.5rem', + }, + }, + radius: { + no: '0px', + xs: '2px', + sm: '4px', + md: '6px', + lg: '8px', + xl: '16px', + xxl: '24px', + 'xs-outline': '3px', + 'sm-outline': '5px', + 'md-outline': '7px', + round: '999rem', + }, + screen: { + resolutions: { + width: { + mobile: { + apple: { + iphone_se: 320, + iphone_8: 375, + iphone_11: 375, + iphone_11_pro: 414, + }, + samsung: { + galaxy_s9: 360, + }, + }, + tablet: { + apple: { + ipad_mini: 768, + ipad: 810, + ipad_pro: 1024, + }, + }, + laptop: { + macBook_air: 1440, + macBook_pro_13: 1280, + macBook_pro_16: 3072, + }, + desktop: { + small: 1024, + widescreen: 1280, + hd: 1366, + full_hd: 1920, + '2k': 2560, + ultra_wide: 3440, + '4k': 3840, + }, + }, + height: { + mobile: { + apple: { + iphone_se: 568, + iphone_8: 667, + iphone_11: 812, + iphone_11_pro: 896, + }, + samsung: { + galaxy_s9: 740, + }, + }, + tablet: { + apple: { + ipad_mini: 1024, + ipad: 1080, + ipad_pro: 1366, + }, + }, + laptop: { + macBook_air: 900, + macBook_pro_13: 800, + macBook_pro_16: 1920, + }, + desktop: { + small: 768, + widescreen: 800, + hd: 768, + full_hd: 1080, + '2k': 1440, + ultra_wide: 1440, + '4k': 2160, + }, + }, + }, + }, + size: { + n0: 0, + n1: '0.25rem', + n2: '0.5rem', + n3: '0.75rem', + n4: '1rem', + n5: '1.25rem', + n6: '1.5rem', + n7: '1.75rem', + n8: '2rem', + n9: '2.25rem', + n10: '2.5rem', + n11: '2.75rem', + n12: '3rem', + n13: '3.25rem', + n14: '3.5rem', + n15: '3.75rem', + n16: '4rem', + n17: '4.25rem', + n18: '4.5rem', + n19: '4.75rem', + n20: '5rem', + n24: '6rem', + n25: '6.25rem', + n30: '7.5rem', + n32: '8rem', + n35: '8.75rem', + n40: '10rem', + n48: '12rem', + n56: '14rem', + n64: '16rem', + }, + spacing: { + no: '0', + xxs: '0.125rem', + xs: '0.25rem', + sm: '0.5rem', + md: '1rem', + lg: '1.5rem', + xl: '1.75rem', + xxl: '2.25rem', + xxxl: '2.5rem', + n0: 0, + n1: '0.25rem', + n2: '0.5rem', + n3: '0.75rem', + n4: '1rem', + n5: '1.25rem', + n6: '1.5rem', + n7: '1.75rem', + n8: '2rem', + n9: '2.25rem', + n10: '2.5rem', + n11: '2.75rem', + n12: '3rem', + n13: '3.25rem', + n14: '3.5rem', + n15: '3.75rem', + n16: '4rem', + n17: '4.25rem', + n18: '4.5rem', + n19: '4.75rem', + n20: '5rem', + n24: '6rem', + n25: '6.25rem', + n30: '7.5rem', + n32: '8rem', + n35: '8.75rem', + n40: '10rem', + n48: '12rem', + n56: '14rem', + n64: '16rem', + }, + transition: { + delay: { + none: '0ms', + }, + duration: { + base: '400ms', + d200: '200ms', + }, + animation: { + easeOutSine: '200ms cubic-bezier(0.61, 1, 0.88, 1)', + easeOutCubic: '200ms cubic-bezier(0.33, 1, 0.68, 1)', + }, + }, + typography: { + family: { + primaryFont: 'Inter', + monospaceFont: 'Kode Mono', + }, + fontSize: { + xxs: '0.6875rem', + xs: '0.75rem', + sm: '0.875rem', + base: '1rem', + md: '1.125rem', + lg: '1.25rem', + xl: '1.5rem', + '2xl': '1.75rem', + '3xl': '2rem', + '4xl': '2.25rem', + '5xl': '2.5rem', + '6xl': '2.75rem', + '7xl': '3rem', + '8xl': '3.25rem', + '9xl': '3.75rem', + '10xl': '4.5rem', + '11xl': '5rem', + '12xl': '5.25rem', + }, + lineHeight: { + '7xl': '3rem', + '4xl': '2.25rem', + '3xl': '2rem', + '2xl': '1.75rem', + xl: '1.5rem', + base: '1.25rem', + md: '1rem', + sm: '0.875rem', + }, + weight: { + primaryFont: { + light: 300, + regular: 400, + medium: 500, + semiBold: 600, + bold: 700, + }, + monospaceFont: { + regular: 400, + medium: 500, + semiBold: 600, + bold: 700, + }, + }, + }, + zIndex: { + deepdive: -99999, + 'default': 1, + dialog: 6000, + surface: 4, + dropdown: 7000, + modal: 9000, + overlay: 8000, + popup: 5000, + spinner: 9050, + sticky: 100, + toast: 10000, + }, + }, + }, +} satisfies KDADesignSystemDarkTokens; diff --git a/toolkit/theme/design-system/dist/js/tokens.dark.config.type.ts b/toolkit/theme/design-system/dist/js/tokens.dark.config.type.ts new file mode 100644 index 0000000000..941fd8d318 --- /dev/null +++ b/toolkit/theme/design-system/dist/js/tokens.dark.config.type.ts @@ -0,0 +1,1507 @@ +/* kda Design System | Theme: dark */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +export type KDADesignSystemDarkTokens = { + kda: { + explorer: { + alert: { + surface: { + text: { + 'default': string; + }; + }; + background: { + 'default': string; + semantic: { + positive: string; + negative: string; + warning: string; + info: string; + }; + }; + loading: { + 'default': string; + }; + }; + button: { + background: { + color: { + 'default': string; + }; + }; + surface: { + color: { + 'default': string; + }; + }; + }; + hero: { + banner: { + title: { + font: { + size: string; + weight: string; + lineHeight: string; + color: { + name: string; + prefix: string; + selector: string; + }; + }; + margin: { + gap: string; + bottom: string; + }; + }; + border: string; + radius: string; + background: string; + padding: string; + column: { + width: string; + gap: string; + }; + button: { + dimensions: { + radius: string; + }; + 'default': { + background: string; + surface: string; + }; + '@hover': { + background: string; + surface: string; + }; + '@active': { + background: string; + surface: string; + }; + }; + }; + }; + input: { + dimensions: { + radius: { + base: string; + }; + }; + border: { + color: { + semantic: { + negative: string; + }; + '@focus': string; + }; + }; + }; + navigation: { + background: { + '@active': string; + }; + surface: { + text: { + 'default': string; + '@selected': string; + }; + }; + }; + toast: { + surface: { + text: { + 'default': string; + }; + }; + background: { + 'default': string; + semantic: { + positive: string; + negative: string; + warning: string; + info: string; + }; + }; + loading: { + 'default': string; + }; + }; + top: { + bar: { + font: { + size: string; + }; + }; + }; + widget: { + stats: { + background: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + surface: { + text: { + subtle: string; + 'default': string; + }; + icon: { + color: { + 'default': string; + }; + }; + }; + }; + }; + }; + foundation: { + border: { + width: { + hairline: string; + normal: string; + thick: string; + }; + hairline: string; + normal: string; + thick: string; + }; + breakpoint: { + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + xxl: string; + }; + color: { + accent: { + blue: string; + celery: string; + green: string; + magenta: string; + orange: string; + red: string; + yellow: string; + brand: { + primary: string; + secondary: string; + tertiary: string; + tint: { + primary: string; + secondary: string; + tertiary: string; + }; + }; + semantic: { + info: string; + warning: string; + positive: string; + negative: string; + }; + }; + background: { + base: { + 'default': string; + warm: string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + warm: string; + '@hover': string; + '@focus': string; + '@disabled': string; + }; + }; + layer: { + 'default': string; + solid: string; + }; + overlay: { + 'default': string; + context: { + 'default': string; + }; + '@hover': string; + }; + surface: { + 'default': string; + inverse: { + 'default': string; + }; + subtle: { + 'default': string; + inverse: { + 'default': string; + }; + }; + }; + surfaceHighContrast: { + 'default': string; + inverse: { + 'default': string; + }; + }; + brand: { + primary: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + secondary: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + accent: { + primary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + secondary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + tertiary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + negative: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + warning: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + info: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + input: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + skeleton: { + 'default': string; + }; + table: { + row: { + 'default': string; + '@hover': string; + }; + }; + }; + border: { + base: { + subtle: string; + 'default': string; + bold: string; + boldest: string; + 'high-contrast': string; + '@disabled': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + subtle: string; + 'default': string; + bold: string; + boldest: string; + 'high-contrast': string; + '@disabled': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + brand: { + primary: { + 'default': string; + subtle: string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + secondary: { + 'default': string; + subtle: string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + negative: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + warning: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + info: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + tint: { + outline: string; + '@focus': string; + }; + overlay: { + context: string; + }; + }; + brand: { + primary: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + secondary: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + tertiary: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + key: { + primary: string; + secondary: string; + tertiary: string; + accent: string; + neutralwarm: string; + white: string; + black: string; + }; + }; + gradient: { + base: { + subtle: string; + }; + }; + icon: { + base: { + 'default': string; + bold: string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + bold: string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + brand: { + logo: { + 'default': string; + inverse: { + 'default': string; + }; + }; + primary: { + 'default': string; + bold: string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + secondary: { + 'default': string; + bold: string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + negative: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + warning: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + info: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + }; + product: { + spirekey: { + animation: { + start: string; + step1: string; + step2: string; + step3: string; + end: string; + }; + }; + }; + }; + link: { + base: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + brand: { + primary: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + secondary: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + }; + semantic: { + positive: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + negative: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + warning: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + info: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + }; + }; + neutral: { + n0: string; + 'n0@alpha0': string; + 'n0@alpha10': string; + 'n0@alpha20': string; + 'n0@alpha40': string; + 'n0@alpha70': string; + 'n0@alpha80': string; + 'n0@alpha90': string; + 'n0@alpha95': string; + n1: string; + 'n1@alpha0': string; + 'n1@alpha1': string; + 'n1@alpha3': string; + 'n1@alpha4': string; + 'n1@alpha5': string; + 'n1@alpha6': string; + 'n1@alpha10': string; + 'n1@alpha20': string; + 'n1@alpha30': string; + 'n1@alpha40': string; + 'n1@alpha50': string; + 'n1@alpha80': string; + 'n1@alpha90': string; + n5: string; + 'n5@alpha80': string; + 'n5@alpha95': string; + n10: string; + 'n10@alpha80': string; + n15: string; + n20: string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha80': string; + n85: string; + n90: string; + 'n90@alpha20': string; + 'n90@alpha25': string; + n95: string; + 'n95@alpha80': string; + 'n95@alpha95': string; + n99: string; + 'n99@alpha0': string; + 'n99@alpha1': string; + 'n99@alpha3': string; + 'n99@alpha4': string; + 'n99@alpha5': string; + 'n99@alpha6': string; + 'n99@alpha10': string; + 'n99@alpha20': string; + 'n99@alpha30': string; + 'n99@alpha40': string; + 'n99@alpha50': string; + 'n99@alpha80': string; + 'n99@alpha90': string; + n100: string; + 'n100@alpha0': string; + 'n100@alpha10': string; + 'n100@alpha20': string; + 'n100@alpha40': string; + 'n100@alpha70': string; + 'n100@alpha80': string; + 'n100@alpha90': string; + 'n100@alpha95': string; + }; + neutralwarm: { + n0: string; + n1: string; + 'n1@alpha30': string; + 'n1@alpha60': string; + 'n1@alpha80': string; + 'n1@alpha95': string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + palette: { + aqua: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + blue: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + celery: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + green: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + magenta: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + orange: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + red: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + yellow: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + }; + categorical: { + category1: { + 'default': string; + '@hover': string; + }; + category2: { + 'default': string; + '@hover': string; + }; + category3: { + 'default': string; + '@hover': string; + }; + category4: { + 'default': string; + '@hover': string; + }; + category5: { + 'default': string; + '@hover': string; + }; + category6: { + 'default': string; + '@hover': string; + }; + category7: { + 'default': string; + '@hover': string; + }; + category8: { + 'default': string; + '@hover': string; + }; + }; + semantic: { + info: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + negative: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + positive: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + warning: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + }; + text: { + base: { + 'default': string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + '@selected': string; + inverse: { + 'default': string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + '@selected': string; + }; + }; + subtle: { + 'default': string; + '@hover': string; + inverse: { + 'default': string; + }; + }; + subtlest: { + 'default': string; + '@hover': string; + inverse: { + 'default': string; + }; + }; + gray: { + 'default': string; + lighter: string; + bolder: string; + inverse: { + 'default': string; + lighter: string; + bolder: string; + }; + }; + brand: { + wordmark: { + 'default': string; + inverse: { + 'default': string; + }; + }; + primary: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + secondary: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + accent: { + primary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + negative: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + warning: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + info: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + }; + }; + effect: { + defaultBlur: string; + shadow: { + level1: string; + level2: string; + level3: string; + }; + }; + layout: { + content: { + minWidth: string; + maxWidth: string; + }; + }; + radius: { + no: string; + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + xxl: string; + 'xs-outline': string; + 'sm-outline': string; + 'md-outline': string; + round: string; + }; + screen: { + resolutions: { + width: { + mobile: { + apple: { + iphone_se: number; + iphone_8: number; + iphone_11: number; + iphone_11_pro: number; + }; + samsung: { + galaxy_s9: number; + }; + }; + tablet: { + apple: { + ipad_mini: number; + ipad: number; + ipad_pro: number; + }; + }; + laptop: { + macBook_air: number; + macBook_pro_13: number; + macBook_pro_16: number; + }; + desktop: { + small: number; + widescreen: number; + hd: number; + full_hd: number; + '2k': number; + ultra_wide: number; + '4k': number; + }; + }; + height: { + mobile: { + apple: { + iphone_se: number; + iphone_8: number; + iphone_11: number; + iphone_11_pro: number; + }; + samsung: { + galaxy_s9: number; + }; + }; + tablet: { + apple: { + ipad_mini: number; + ipad: number; + ipad_pro: number; + }; + }; + laptop: { + macBook_air: number; + macBook_pro_13: number; + macBook_pro_16: number; + }; + desktop: { + small: number; + widescreen: number; + hd: number; + full_hd: number; + '2k': number; + ultra_wide: number; + '4k': number; + }; + }; + }; + }; + size: { + n0: number; + n1: string; + n2: string; + n3: string; + n4: string; + n5: string; + n6: string; + n7: string; + n8: string; + n9: string; + n10: string; + n11: string; + n12: string; + n13: string; + n14: string; + n15: string; + n16: string; + n17: string; + n18: string; + n19: string; + n20: string; + n24: string; + n25: string; + n30: string; + n32: string; + n35: string; + n40: string; + n48: string; + n56: string; + n64: string; + }; + spacing: { + no: string; + xxs: string; + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + xxl: string; + xxxl: string; + n0: number; + n1: string; + n2: string; + n3: string; + n4: string; + n5: string; + n6: string; + n7: string; + n8: string; + n9: string; + n10: string; + n11: string; + n12: string; + n13: string; + n14: string; + n15: string; + n16: string; + n17: string; + n18: string; + n19: string; + n20: string; + n24: string; + n25: string; + n30: string; + n32: string; + n35: string; + n40: string; + n48: string; + n56: string; + n64: string; + }; + transition: { + delay: { + none: string; + }; + duration: { + base: string; + d200: string; + }; + animation: { + easeOutSine: string; + easeOutCubic: string; + }; + }; + typography: { + family: { + primaryFont: string; + monospaceFont: string; + }; + fontSize: { + xxs: string; + xs: string; + sm: string; + base: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + '4xl': string; + '5xl': string; + '6xl': string; + '7xl': string; + '8xl': string; + '9xl': string; + '10xl': string; + '11xl': string; + '12xl': string; + }; + lineHeight: { + '7xl': string; + '4xl': string; + '3xl': string; + '2xl': string; + xl: string; + base: string; + md: string; + sm: string; + }; + weight: { + primaryFont: { + light: number; + regular: number; + medium: number; + semiBold: number; + bold: number; + }; + monospaceFont: { + regular: number; + medium: number; + semiBold: number; + bold: number; + }; + }; + }; + zIndex: { + deepdive: number; + 'default': number; + dialog: number; + surface: number; + dropdown: number; + modal: number; + overlay: number; + popup: number; + spinner: number; + sticky: number; + toast: number; + }; + }; + }; +}; diff --git a/toolkit/theme/design-system/dist/js/tokens.light.config.ts b/toolkit/theme/design-system/dist/js/tokens.light.config.ts new file mode 100644 index 0000000000..c40126c895 --- /dev/null +++ b/toolkit/theme/design-system/dist/js/tokens.light.config.ts @@ -0,0 +1,2520 @@ +/* kda Design System | Theme: light */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +import type { KDADesignSystemLightTokens } from './tokens.light.config.type.ts'; + +type CSSVars = Record; + +export const cssVars: CSSVars = { + 'kda-explorer-alert-surface-text': '#0b1d2e', + 'kda-explorer-alert-background': '#e9f8ef', + 'kda-explorer-alert-background-semantic-positive': '#e9fce3', + 'kda-explorer-alert-background-semantic-negative': '#fff5f5', + 'kda-explorer-alert-background-semantic-warning': '#fbf8dd', + 'kda-explorer-alert-background-semantic-info': '#f0f8ff', + 'kda-explorer-alert-loading': '#194268', + 'kda-explorer-button-background-color': '#20624c', + 'kda-explorer-button-surface-color': '#fff', + 'kda-explorer-hero-banner-title-font-size': '1.5rem', + 'kda-explorer-hero-banner-title-font-weight': '500', + 'kda-explorer-hero-banner-title-font-lineHeight': '1.5rem', + 'kda-explorer-hero-banner-title-font-color-name': '#fff', + 'kda-explorer-hero-banner-title-font-color-prefix': '#fff6', + 'kda-explorer-hero-banner-title-font-color-selector': '#fff', + 'kda-explorer-hero-banner-title-margin-gap': '1rem', + 'kda-explorer-hero-banner-title-margin-bottom': '1rem', + 'kda-explorer-hero-banner-border': '1px solid #4a9079', + 'kda-explorer-hero-banner-radius': '2px', + 'kda-explorer-hero-banner-background': '#4a9079', + 'kda-explorer-hero-banner-padding': '1rem', + 'kda-explorer-hero-banner-column-width': '100%', + 'kda-explorer-hero-banner-column-gap': '2rem', + 'kda-explorer-hero-banner-button-dimensions-radius': '0px', + 'kda-explorer-hero-banner-button-default-background': '#20624c', + 'kda-explorer-hero-banner-button-default-surface': '#fff', + 'kda-explorer-hero-banner-button-@hover-background': '#27795e', + 'kda-explorer-hero-banner-button-@hover-surface': '#fff', + 'kda-explorer-hero-banner-button-@active-background': '#2e8f6f', + 'kda-explorer-hero-banner-button-@active-surface': '#e4e5e5', + 'kda-explorer-input-dimensions-radius-base': '0px', + 'kda-explorer-input-border-color-semantic-negative': '#ea3829', + 'kda-explorer-input-border-color-@focus': '#356f5a', + 'kda-explorer-navigation-background-@active': '#e9f8ef', + 'kda-explorer-navigation-surface-text': '#1f4f3c', + 'kda-explorer-navigation-surface-text-@selected': '#061a10', + 'kda-explorer-toast-surface-text': '#0b1d2e', + 'kda-explorer-toast-background': '#e9f8ef', + 'kda-explorer-toast-background-semantic-positive': '#e9fce3', + 'kda-explorer-toast-background-semantic-negative': '#fff5f5', + 'kda-explorer-toast-background-semantic-warning': '#fbf8dd', + 'kda-explorer-toast-background-semantic-info': '#f0f8ff', + 'kda-explorer-toast-loading': '#194268', + 'kda-explorer-top-bar-font-size': '0.75rem', + 'kda-explorer-widget-stats-background': '#e9f8ef', + 'kda-explorer-widget-stats-background-@hover': '#e9f8ef', + 'kda-explorer-widget-stats-background-@focus': '#e9f8ef', + 'kda-explorer-widget-stats-background-@visited': '#e9f8ef', + 'kda-explorer-widget-stats-surface-text-subtle': '#000c', + 'kda-explorer-widget-stats-surface-text': '#1f4f3c', + 'kda-explorer-widget-stats-surface-icon-color': '#4a9079', + 'kda-border-width-hairline': '1px', + 'kda-border-width-normal': '2px', + 'kda-border-width-thick': '4px', + 'kda-border-hairline': '1px solid #252f3a40', + 'kda-border-normal': '2px solid #020e1b80', + 'kda-border-thick': '4px solid #020e1b80', + 'kda-breakpoint-xs': '0rem', + 'kda-breakpoint-sm': '40rem', + 'kda-breakpoint-md': '48rem', + 'kda-breakpoint-lg': '64rem', + 'kda-breakpoint-xl': '80rem', + 'kda-breakpoint-xxl': '96rem', + 'kda-color-accent-blue': '#358cdd', + 'kda-color-accent-celery': '#07a721', + 'kda-color-accent-green': '#4a9079', + 'kda-color-accent-magenta': '#e41968', + 'kda-color-accent-orange': '#e27b38', + 'kda-color-accent-red': '#f75c46', + 'kda-color-accent-yellow': '#b08c00', + 'kda-color-accent-brand-primary': '#4a9079', + 'kda-color-accent-brand-secondary': '#358cdd', + 'kda-color-accent-brand-tertiary': '#e27b38', + 'kda-color-accent-brand-tint-primary': '#52ffc6', + 'kda-color-accent-brand-tint-secondary': '#e41968', + 'kda-color-accent-brand-tint-tertiary': '#e27b38', + 'kda-color-accent-semantic-info': '#358cdd', + 'kda-color-accent-semantic-warning': '#b08c00', + 'kda-color-accent-semantic-positive': '#07a721', + 'kda-color-accent-semantic-negative': '#f75c46', + 'kda-color-background-base': '#f5f5f5', + 'kda-color-background-base-warm': '#f0eae6', + 'kda-color-background-base-@hover': '#d2d4d6', + 'kda-color-background-base-@focus': '#e4e5e5cc', + 'kda-color-background-base-@active': '#e4e5e5', + 'kda-color-background-base-@disabled': '#0000001a', + 'kda-color-background-base-inverse': '#020e1b', + 'kda-color-background-base-inverse-warm': '#0f0f0f', + 'kda-color-background-base-inverse-@hover': '#252f3a', + 'kda-color-background-base-inverse-@focus': '#131e2bcc', + 'kda-color-background-base-inverse-@disabled': '#ffffff1a', + 'kda-color-background-layer': '#fffc', + 'kda-color-background-layer-solid': '#fff', + 'kda-color-background-overlay': '#fffffff2', + 'kda-color-background-overlay-context': '#fffffff2', + 'kda-color-background-overlay-@hover': '#fff', + 'kda-color-background-surface': '#020e1b0f', + 'kda-color-background-surface-inverse': '#020e1bcc', + 'kda-color-background-surface-subtle': '#020e1b08', + 'kda-color-background-surface-subtle-inverse': '#020e1bcc', + 'kda-color-background-surfaceHighContrast': '#ffffffe6', + 'kda-color-background-surfaceHighContrast-inverse': '#000000e6', + 'kda-color-background-brand-primary': '#b8e7cf', + 'kda-color-background-brand-primary-subtle': '#cef8e0', + 'kda-color-background-brand-primary-subtlest': '#e9f8ef', + 'kda-color-background-brand-primary-@hover': '#a2d5be', + 'kda-color-background-brand-primary-@focus': '#8cc4ad', + 'kda-color-background-brand-primary-@active': '#76b39b', + 'kda-color-background-brand-primary-inverse': '#153e2c', + 'kda-color-background-brand-primary-inverse-subtle': '#0a2e1d', + 'kda-color-background-brand-primary-inverse-subtlest': '#061a10', + 'kda-color-background-brand-primary-inverse-@hover': '#1f4f3c', + 'kda-color-background-brand-primary-inverse-@focus': '#2a5f4b', + 'kda-color-background-brand-primary-inverse-@active': '#356f5a', + 'kda-color-background-brand-secondary': '#bbdbf9', + 'kda-color-background-brand-secondary-subtle': '#d6ebff', + 'kda-color-background-brand-secondary-subtlest': '#f0f8ff', + 'kda-color-background-brand-secondary-@hover': '#bbdbf9', + 'kda-color-background-brand-secondary-@focus': '#a0cbf4', + 'kda-color-background-brand-secondary-@active': '#86bcee', + 'kda-color-background-brand-secondary-inverse': '#112c46', + 'kda-color-background-brand-secondary-inverse-subtle': '#0b1d2e', + 'kda-color-background-brand-secondary-inverse-subtlest': '#06101a', + 'kda-color-background-brand-secondary-inverse-@hover': '#112c46', + 'kda-color-background-brand-secondary-inverse-@focus': '#194268', + 'kda-color-background-brand-secondary-inverse-@active': '#205586', + 'kda-color-background-accent-primary': '#52ffc6', + 'kda-color-background-accent-primary-@hover': '#4be9b5', + 'kda-color-background-accent-primary-@focus': '#52ffc6cc', + 'kda-color-background-accent-primary-@active': '#7affd3', + 'kda-color-background-accent-primary-inverse': '#20624c', + 'kda-color-background-accent-primary-inverse-@hover': '#2e8f6f', + 'kda-color-background-accent-primary-inverse-@focus': '#27795ecc', + 'kda-color-background-accent-primary-inverse-@active': '#27795e', + 'kda-color-background-accent-secondary': '#e41968', + 'kda-color-background-accent-secondary-@hover': '#cf175e', + 'kda-color-background-accent-secondary-@focus': '#cf175e', + 'kda-color-background-accent-secondary-@active': '#cf175e', + 'kda-color-background-accent-secondary-inverse': '#e41968', + 'kda-color-background-accent-secondary-inverse-@hover': '#e93c7f', + 'kda-color-background-accent-secondary-inverse-@focus': '#e93c7f', + 'kda-color-background-accent-secondary-inverse-@active': '#e93c7f', + 'kda-color-background-accent-tertiary': '#e27b38', + 'kda-color-background-accent-tertiary-@hover': '#cb5d00', + 'kda-color-background-accent-tertiary-@focus': '#cb5d00', + 'kda-color-background-accent-tertiary-@active': '#cb5d00', + 'kda-color-background-accent-tertiary-inverse': '#e27b38', + 'kda-color-background-accent-tertiary-inverse-@hover': '#ec9046', + 'kda-color-background-accent-tertiary-inverse-@focus': '#ec9046', + 'kda-color-background-accent-tertiary-inverse-@active': '#ec9046', + 'kda-color-background-semantic-positive': '#72e06a', + 'kda-color-background-semantic-positive-subtle': '#72e06a33', + 'kda-color-background-semantic-positive-subtlest': '#e9fce3', + 'kda-color-background-semantic-positive-@hover': '#4ecf50', + 'kda-color-background-semantic-positive-@focus': '#72e06acc', + 'kda-color-background-semantic-positive-@active': '#96ee85', + 'kda-color-background-semantic-positive-inverse': '#00670f', + 'kda-color-background-semantic-positive-inverse-subtle': '#00670f33', + 'kda-color-background-semantic-positive-inverse-subtlest': '#001a04', + 'kda-color-background-semantic-positive-inverse-@hover': '#007c0f', + 'kda-color-background-semantic-positive-inverse-@focus': '#00670fcc', + 'kda-color-background-semantic-positive-inverse-@active': '#00530d', + 'kda-color-background-semantic-negative': '#ffb7a9', + 'kda-color-background-semantic-negative-subtle': '#ffb7a933', + 'kda-color-background-semantic-negative-subtlest': '#fff5f5', + 'kda-color-background-semantic-negative-@hover': '#ff9b88', + 'kda-color-background-semantic-negative-@focus': '#ffb7a9cc', + 'kda-color-background-semantic-negative-@active': '#ffcdc3', + 'kda-color-background-semantic-negative-inverse': '#b40000', + 'kda-color-background-semantic-negative-inverse-subtle': '#b4000033', + 'kda-color-background-semantic-negative-inverse-subtlest': '#300', + 'kda-color-background-semantic-negative-inverse-@hover': '#d31510', + 'kda-color-background-semantic-negative-inverse-@focus': '#b40000cc', + 'kda-color-background-semantic-negative-inverse-@active': '#930000', + 'kda-color-background-semantic-warning': '#e8c600', + 'kda-color-background-semantic-warning-subtle': '#e8c60033', + 'kda-color-background-semantic-warning-subtlest': '#fbf8dd', + 'kda-color-background-semantic-warning-@hover': '#d7b300', + 'kda-color-background-semantic-warning-@focus': '#e8c600cc', + 'kda-color-background-semantic-warning-@active': '#f8d904', + 'kda-color-background-semantic-warning-inverse': '#705300', + 'kda-color-background-semantic-warning-inverse-subtle': '#70530033', + 'kda-color-background-semantic-warning-inverse-subtlest': '#1a1100', + 'kda-color-background-semantic-warning-inverse-@hover': '#856600', + 'kda-color-background-semantic-warning-inverse-@focus': '#705300cc', + 'kda-color-background-semantic-warning-inverse-@active': '#5b4300', + 'kda-color-background-semantic-info': '#86bcee', + 'kda-color-background-semantic-info-subtle': '#86bcee33', + 'kda-color-background-semantic-info-subtlest': '#f0f8ff', + 'kda-color-background-semantic-info-@hover': '#6bace8', + 'kda-color-background-semantic-info-@focus': '#86bceecc', + 'kda-color-background-semantic-info-@active': '#a0cbf4', + 'kda-color-background-semantic-info-inverse': '#205586', + 'kda-color-background-semantic-info-inverse-subtle': '#20558633', + 'kda-color-background-semantic-info-inverse-subtlest': '#06101a', + 'kda-color-background-semantic-info-inverse-@hover': '#2767a3', + 'kda-color-background-semantic-info-inverse-@focus': '#205586cc', + 'kda-color-background-semantic-info-inverse-@active': '#194268', + 'kda-color-background-input': '#f5f5f5cc', + 'kda-color-background-input-@hover': '#d2d4d6', + 'kda-color-background-input-@focus': '#e4e5e5cc', + 'kda-color-background-input-@active': '#e4e5e5', + 'kda-color-background-input-@disabled': '#0000001a', + 'kda-color-background-input-inverse': '#475059cc', + 'kda-color-background-input-inverse-@hover': '#252f3a', + 'kda-color-background-input-inverse-@focus': '#131e2bcc', + 'kda-color-background-input-inverse-@active': '#131e2b', + 'kda-color-background-input-inverse-@disabled': '#ffffff1a', + 'kda-color-background-skeleton': '#d2d4d6', + 'kda-color-background-table-row': '#fffc', + 'kda-color-background-table-row-@hover': '#f5f5f5cc', + 'kda-color-border-base-subtle': '#d2d4d6cc', + 'kda-color-border-base': '#252f3a40', + 'kda-color-border-base-bold': '#020e1b80', + 'kda-color-border-base-boldest': '#000000b3', + 'kda-color-border-base-high-contrast': '#000', + 'kda-color-border-base-@disabled': '#b0b3b7', + 'kda-color-border-base-@hover': '#b0b3b7', + 'kda-color-border-base-@focus': '#6a7178', + 'kda-color-border-base-@active': '#475059', + 'kda-color-border-base-inverse-subtle': '#f5f5f51a', + 'kda-color-border-base-inverse': '#f5f5f533', + 'kda-color-border-base-inverse-bold': '#fff6', + 'kda-color-border-base-inverse-boldest': '#f5f5f580', + 'kda-color-border-base-inverse-high-contrast': '#fff', + 'kda-color-border-base-inverse-@disabled': '#b0b3b7', + 'kda-color-border-base-inverse-@hover': '#b0b3b7', + 'kda-color-border-base-inverse-@focus': '#6a7178', + 'kda-color-border-base-inverse-@active': '#475059', + 'kda-color-border-brand-primary': '#60a18a', + 'kda-color-border-brand-primary-subtle': '#8cc4ad', + 'kda-color-border-brand-primary-@hover': '#3f806a', + 'kda-color-border-brand-primary-@focus': '#356f5a', + 'kda-color-border-brand-primary-inverse': '#2a5f4b', + 'kda-color-border-brand-primary-inverse-@hover': '#356f5a', + 'kda-color-border-brand-primary-inverse-@focus': '#3f806a', + 'kda-color-border-brand-secondary': '#509ce3', + 'kda-color-border-brand-secondary-subtle': '#86bcee', + 'kda-color-border-brand-secondary-@hover': '#2e7ac0', + 'kda-color-border-brand-secondary-@focus': '#2767a3', + 'kda-color-border-brand-secondary-inverse': '#205586', + 'kda-color-border-brand-secondary-inverse-@hover': '#2767a3', + 'kda-color-border-brand-secondary-inverse-@focus': '#2e7ac0', + 'kda-color-border-semantic-positive': '#009112', + 'kda-color-border-semantic-positive-subtle': '#72e06a', + 'kda-color-border-semantic-positive-@disabled': '#72e06a', + 'kda-color-border-semantic-positive-@hover': '#007c0f', + 'kda-color-border-semantic-positive-@focus': '#009112', + 'kda-color-border-semantic-positive-inverse': '#27bb36', + 'kda-color-border-semantic-positive-inverse-@hover': '#4ecf50', + 'kda-color-border-semantic-positive-inverse-@focus': '#72e06a', + 'kda-color-border-semantic-negative': '#ea3829', + 'kda-color-border-semantic-negative-subtle': '#ffb7a9', + 'kda-color-border-semantic-negative-@disabled': '#ffb7a9', + 'kda-color-border-semantic-negative-@hover': '#d31510', + 'kda-color-border-semantic-negative-@focus': '#ea3829', + 'kda-color-border-semantic-negative-inverse': '#ff7c65', + 'kda-color-border-semantic-negative-inverse-@hover': '#ff9b88', + 'kda-color-border-semantic-negative-inverse-@focus': '#ffb7a9', + 'kda-color-border-semantic-warning': '#9b7800', + 'kda-color-border-semantic-warning-subtle': '#e8c600', + 'kda-color-border-semantic-warning-@disabled': '#e8c600', + 'kda-color-border-semantic-warning-@hover': '#856600', + 'kda-color-border-semantic-warning-@focus': '#9b7800', + 'kda-color-border-semantic-warning-inverse': '#c49f00', + 'kda-color-border-semantic-warning-inverse-@hover': '#d7b300', + 'kda-color-border-semantic-warning-inverse-@focus': '#e8c600', + 'kda-color-border-semantic-info': '#2e7ac0', + 'kda-color-border-semantic-info-subtle': '#86bcee', + 'kda-color-border-semantic-info-@disabled': '#86bcee', + 'kda-color-border-semantic-info-@hover': '#2767a3', + 'kda-color-border-semantic-info-@focus': '#2e7ac0', + 'kda-color-border-semantic-info-inverse': '#509ce3', + 'kda-color-border-semantic-info-inverse-@hover': '#6bace8', + 'kda-color-border-semantic-info-inverse-@focus': '#86bcee', + 'kda-color-border-tint-outline': '#2e7ac0', + 'kda-color-border-tint-@focus': '#27795ecc', + 'kda-color-border-overlay-context': '#b0b3b7cc', + 'kda-color-brand-primary-n0': '#e9f8ef', + 'kda-color-brand-primary-n1': '#cef8e0', + 'kda-color-brand-primary-n5': '#b8e7cf', + 'kda-color-brand-primary-n10': '#a2d5be', + 'kda-color-brand-primary-n20': '#8cc4ad', + 'kda-color-brand-primary-n30': '#76b39b', + 'kda-color-brand-primary-n40': '#60a18a', + 'kda-color-brand-primary-n50': '#4a9079', + 'kda-color-brand-primary-n60': '#3f806a', + 'kda-color-brand-primary-n70': '#356f5a', + 'kda-color-brand-primary-n80': '#2a5f4b', + 'kda-color-brand-primary-n90': '#1f4f3c', + 'kda-color-brand-primary-n95': '#153e2c', + 'kda-color-brand-primary-n99': '#0a2e1d', + 'kda-color-brand-primary-n100': '#061a10', + 'kda-color-brand-secondary-n0': '#f0f8ff', + 'kda-color-brand-secondary-n1': '#d6ebff', + 'kda-color-brand-secondary-n5': '#bbdbf9', + 'kda-color-brand-secondary-n10': '#a0cbf4', + 'kda-color-brand-secondary-n20': '#86bcee', + 'kda-color-brand-secondary-n30': '#6bace8', + 'kda-color-brand-secondary-n40': '#509ce3', + 'kda-color-brand-secondary-n50': '#358cdd', + 'kda-color-brand-secondary-n60': '#2e7ac0', + 'kda-color-brand-secondary-n70': '#2767a3', + 'kda-color-brand-secondary-n80': '#205586', + 'kda-color-brand-secondary-n90': '#194268', + 'kda-color-brand-secondary-n95': '#112c46', + 'kda-color-brand-secondary-n99': '#0b1d2e', + 'kda-color-brand-secondary-n100': '#06101a', + 'kda-color-brand-tertiary-n0': '#fff7eb', + 'kda-color-brand-tertiary-n1': '#ffeccc', + 'kda-color-brand-tertiary-n5': '#ffdfad', + 'kda-color-brand-tertiary-n10': '#fdd291', + 'kda-color-brand-tertiary-n20': '#ffbb63', + 'kda-color-brand-tertiary-n30': '#f5a655', + 'kda-color-brand-tertiary-n40': '#ec9046', + 'kda-color-brand-tertiary-n50': '#e27b38', + 'kda-color-brand-tertiary-n60': '#cb5d00', + 'kda-color-brand-tertiary-n70': '#b14c00', + 'kda-color-brand-tertiary-n80': '#953d00', + 'kda-color-brand-tertiary-n90': '#7a2f00', + 'kda-color-brand-tertiary-n95': '#612300', + 'kda-color-brand-tertiary-n99': '#491901', + 'kda-color-brand-tertiary-n100': '#290e01', + 'kda-color-brand-key-primary': '#4a9079', + 'kda-color-brand-key-secondary': '#0b1d2e', + 'kda-color-brand-key-tertiary': '#e27b38', + 'kda-color-brand-key-accent': '#e41968', + 'kda-color-brand-key-neutralwarm': '#f0eae6', + 'kda-color-brand-key-white': '#f5f5f5', + 'kda-color-brand-key-black': '#020e1b', + 'kda-color-gradient-base-subtle': 'linear-gradient( 90deg, #f5f5f5, #f5f5f500 )', + 'kda-color-icon-base': '#131e2b', + 'kda-color-icon-base-bold': '#020e1b', + 'kda-color-icon-base-@init': '#020e1b', + 'kda-color-icon-base-@hover': '#020e1b80', + 'kda-color-icon-base-@focus': '#020e1b', + 'kda-color-icon-base-@active': '#000', + 'kda-color-icon-base-@disabled': '#0003', + 'kda-color-icon-base-inverse': '#e4e5e5', + 'kda-color-icon-base-inverse-bold': '#f5f5f5', + 'kda-color-icon-base-inverse-@init': '#f5f5f5', + 'kda-color-icon-base-inverse-@hover': '#f5f5f580', + 'kda-color-icon-base-inverse-@focus': '#f5f5f5', + 'kda-color-icon-base-inverse-@active': '#fff', + 'kda-color-icon-base-inverse-@disabled': '#fff3', + 'kda-color-icon-brand-logo': '#4a9079', + 'kda-color-icon-brand-logo-inverse': '#f5f5f5', + 'kda-color-icon-brand-primary': '#2a5f4b', + 'kda-color-icon-brand-primary-bold': '#1f4f3c', + 'kda-color-icon-brand-primary-@hover': '#356f5a', + 'kda-color-icon-brand-primary-@focus': '#3f806a', + 'kda-color-icon-brand-primary-@active': '#4a9079', + 'kda-color-icon-brand-primary-@disabled': '#9ea3a7', + 'kda-color-icon-brand-primary-inverse': '#8cc4ad', + 'kda-color-icon-brand-primary-inverse-@hover': '#76b39b', + 'kda-color-icon-brand-primary-inverse-@focus': '#60a18a', + 'kda-color-icon-brand-primary-inverse-@active': '#4a9079', + 'kda-color-icon-brand-primary-inverse-@disabled': '#9ea3a7', + 'kda-color-icon-brand-secondary': '#205586', + 'kda-color-icon-brand-secondary-bold': '#194268', + 'kda-color-icon-brand-secondary-@hover': '#2767a3', + 'kda-color-icon-brand-secondary-@focus': '#2e7ac0', + 'kda-color-icon-brand-secondary-@active': '#358cdd', + 'kda-color-icon-brand-secondary-@disabled': '#9ea3a7', + 'kda-color-icon-brand-secondary-inverse': '#86bcee', + 'kda-color-icon-brand-secondary-inverse-@hover': '#6bace8', + 'kda-color-icon-brand-secondary-inverse-@focus': '#509ce3', + 'kda-color-icon-brand-secondary-inverse-@active': '#358cdd', + 'kda-color-icon-brand-secondary-inverse-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-positive': '#00670f', + 'kda-color-icon-semantic-positive-@hover': '#007c0f', + 'kda-color-icon-semantic-positive-@focus': '#009112', + 'kda-color-icon-semantic-positive-@active': '#07a721', + 'kda-color-icon-semantic-positive-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-positive-inverse': '#72e06a', + 'kda-color-icon-semantic-positive-inverse-@hover': '#4ecf50', + 'kda-color-icon-semantic-positive-inverse-@focus': '#27bb36', + 'kda-color-icon-semantic-positive-inverse-@active': '#07a721', + 'kda-color-icon-semantic-positive-inverse-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-negative': '#b40000', + 'kda-color-icon-semantic-negative-@hover': '#d31510', + 'kda-color-icon-semantic-negative-@focus': '#ea3829', + 'kda-color-icon-semantic-negative-@active': '#f75c46', + 'kda-color-icon-semantic-negative-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-negative-inverse': '#ffb7a9', + 'kda-color-icon-semantic-negative-inverse-@hover': '#ff9b88', + 'kda-color-icon-semantic-negative-inverse-@focus': '#ff7c65', + 'kda-color-icon-semantic-negative-inverse-@active': '#f75c46', + 'kda-color-icon-semantic-negative-inverse-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-warning': '#705300', + 'kda-color-icon-semantic-warning-@hover': '#856600', + 'kda-color-icon-semantic-warning-@focus': '#9b7800', + 'kda-color-icon-semantic-warning-@active': '#b08c00', + 'kda-color-icon-semantic-warning-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-warning-inverse': '#e8c600', + 'kda-color-icon-semantic-warning-inverse-@hover': '#d7b300', + 'kda-color-icon-semantic-warning-inverse-@focus': '#c49f00', + 'kda-color-icon-semantic-warning-inverse-@active': '#b08c00', + 'kda-color-icon-semantic-warning-inverse-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-info': '#205586', + 'kda-color-icon-semantic-info-@hover': '#2767a3', + 'kda-color-icon-semantic-info-@focus': '#2e7ac0', + 'kda-color-icon-semantic-info-@active': '#358cdd', + 'kda-color-icon-semantic-info-@disabled': '#9ea3a7', + 'kda-color-icon-semantic-info-inverse': '#86bcee', + 'kda-color-icon-semantic-info-inverse-@hover': '#6bace8', + 'kda-color-icon-semantic-info-inverse-@focus': '#509ce3', + 'kda-color-icon-semantic-info-inverse-@active': '#358cdd', + 'kda-color-icon-semantic-info-inverse-@disabled': '#9ea3a7', + 'kda-color-icon-product-spirekey-animation-start': '#4a9079', + 'kda-color-icon-product-spirekey-animation-step1': '#4aa688', + 'kda-color-icon-product-spirekey-animation-step2': '#4bbd97', + 'kda-color-icon-product-spirekey-animation-step3': '#4bd3a6', + 'kda-color-icon-product-spirekey-animation-end': '#4be9b5', + 'kda-color-link-base': '#20624c', + 'kda-color-link-base-@hover': '#0a1f18', + 'kda-color-link-base-@focus': '#0a1f18', + 'kda-color-link-base-@visited': '#a5124b', + 'kda-color-link-brand-primary': '#356f5a', + 'kda-color-link-brand-primary-@hover': '#2a5f4b', + 'kda-color-link-brand-primary-@focus': '#3f806a', + 'kda-color-link-brand-primary-@visited': '#a5124b', + 'kda-color-link-brand-secondary': '#2767a3', + 'kda-color-link-brand-secondary-@hover': '#205586', + 'kda-color-link-brand-secondary-@focus': '#2e7ac0', + 'kda-color-link-brand-secondary-@visited': '#a5124b', + 'kda-color-link-semantic-positive': '#00530d', + 'kda-color-link-semantic-positive-@hover': '#00400a', + 'kda-color-link-semantic-positive-@focus': '#00670f', + 'kda-color-link-semantic-positive-@visited': '#a5124b', + 'kda-color-link-semantic-negative': '#930000', + 'kda-color-link-semantic-negative-@hover': '#740000', + 'kda-color-link-semantic-negative-@focus': '#b40000', + 'kda-color-link-semantic-negative-@visited': '#a5124b', + 'kda-color-link-semantic-warning': '#5b4300', + 'kda-color-link-semantic-warning-@hover': '#483300', + 'kda-color-link-semantic-warning-@focus': '#705300', + 'kda-color-link-semantic-warning-@visited': '#a5124b', + 'kda-color-link-semantic-info': '#194268', + 'kda-color-link-semantic-info-@hover': '#112c46', + 'kda-color-link-semantic-info-@focus': '#205586', + 'kda-color-link-semantic-info-@visited': '#a5124b', + 'kda-color-neutral-n0': '#fff', + 'kda-color-neutral-n0@alpha0': '#fff0', + 'kda-color-neutral-n0@alpha10': '#ffffff1a', + 'kda-color-neutral-n0@alpha20': '#fff3', + 'kda-color-neutral-n0@alpha40': '#fff6', + 'kda-color-neutral-n0@alpha70': '#ffffffb3', + 'kda-color-neutral-n0@alpha80': '#fffc', + 'kda-color-neutral-n0@alpha90': '#ffffffe6', + 'kda-color-neutral-n0@alpha95': '#fffffff2', + 'kda-color-neutral-n1': '#f5f5f5', + 'kda-color-neutral-n1@alpha0': '#f5f5f500', + 'kda-color-neutral-n1@alpha1': '#f5f5f503', + 'kda-color-neutral-n1@alpha3': '#f5f5f508', + 'kda-color-neutral-n1@alpha4': '#f5f5f50a', + 'kda-color-neutral-n1@alpha5': '#f5f5f50d', + 'kda-color-neutral-n1@alpha6': '#f5f5f50f', + 'kda-color-neutral-n1@alpha10': '#f5f5f51a', + 'kda-color-neutral-n1@alpha20': '#f5f5f533', + 'kda-color-neutral-n1@alpha30': '#f5f5f54d', + 'kda-color-neutral-n1@alpha40': '#f5f5f566', + 'kda-color-neutral-n1@alpha50': '#f5f5f580', + 'kda-color-neutral-n1@alpha80': '#f5f5f5cc', + 'kda-color-neutral-n1@alpha90': '#f5f5f5e6', + 'kda-color-neutral-n5': '#e4e5e5', + 'kda-color-neutral-n5@alpha80': '#e4e5e5cc', + 'kda-color-neutral-n5@alpha95': '#e4e5e5f2', + 'kda-color-neutral-n10': '#d2d4d6', + 'kda-color-neutral-n10@alpha80': '#d2d4d6cc', + 'kda-color-neutral-n15': '#c1c4c6', + 'kda-color-neutral-n20': '#b0b3b7', + 'kda-color-neutral-n20@alpha80': '#b0b3b7cc', + 'kda-color-neutral-n30': '#9ea3a7', + 'kda-color-neutral-n40': '#8d9298', + 'kda-color-neutral-n50': '#7c8288', + 'kda-color-neutral-n60': '#6a7178', + 'kda-color-neutral-n70': '#596069', + 'kda-color-neutral-n80': '#475059', + 'kda-color-neutral-n80@alpha80': '#475059cc', + 'kda-color-neutral-n85': '#36404a', + 'kda-color-neutral-n90': '#252f3a', + 'kda-color-neutral-n90@alpha20': '#252f3a33', + 'kda-color-neutral-n90@alpha25': '#252f3a40', + 'kda-color-neutral-n95': '#131e2b', + 'kda-color-neutral-n95@alpha80': '#131e2bcc', + 'kda-color-neutral-n95@alpha95': '#131e2bf2', + 'kda-color-neutral-n99': '#020e1b', + 'kda-color-neutral-n99@alpha0': '#020e1b00', + 'kda-color-neutral-n99@alpha1': '#020e1b03', + 'kda-color-neutral-n99@alpha3': '#020e1b08', + 'kda-color-neutral-n99@alpha4': '#020e1b0a', + 'kda-color-neutral-n99@alpha5': '#020e1b0d', + 'kda-color-neutral-n99@alpha6': '#020e1b0f', + 'kda-color-neutral-n99@alpha10': '#020e1b1a', + 'kda-color-neutral-n99@alpha20': '#020e1b33', + 'kda-color-neutral-n99@alpha30': '#020e1b4d', + 'kda-color-neutral-n99@alpha40': '#020e1b66', + 'kda-color-neutral-n99@alpha50': '#020e1b80', + 'kda-color-neutral-n99@alpha80': '#020e1bcc', + 'kda-color-neutral-n99@alpha90': '#020e1be6', + 'kda-color-neutral-n100': '#000', + 'kda-color-neutral-n100@alpha0': '#0000', + 'kda-color-neutral-n100@alpha10': '#0000001a', + 'kda-color-neutral-n100@alpha20': '#0003', + 'kda-color-neutral-n100@alpha40': '#0006', + 'kda-color-neutral-n100@alpha70': '#000000b3', + 'kda-color-neutral-n100@alpha80': '#000c', + 'kda-color-neutral-n100@alpha90': '#000000e6', + 'kda-color-neutral-n100@alpha95': '#000000f2', + 'kda-color-neutralwarm-n0': '#fbfaf9', + 'kda-color-neutralwarm-n1': '#f0eae6', + 'kda-color-neutralwarm-n1@alpha30': '#f0eae64d', + 'kda-color-neutralwarm-n1@alpha60': '#f0eae699', + 'kda-color-neutralwarm-n1@alpha80': '#f0eae6cc', + 'kda-color-neutralwarm-n1@alpha95': '#f0eae6f2', + 'kda-color-neutralwarm-n5': '#ddd8d4', + 'kda-color-neutralwarm-n10': '#cbc6c2', + 'kda-color-neutralwarm-n20': '#b8b3b0', + 'kda-color-neutralwarm-n30': '#a5a19e', + 'kda-color-neutralwarm-n40': '#928f8c', + 'kda-color-neutralwarm-n50': '#807d7b', + 'kda-color-neutralwarm-n60': '#6d6a69', + 'kda-color-neutralwarm-n70': '#5a5857', + 'kda-color-neutralwarm-n80': '#474645', + 'kda-color-neutralwarm-n90': '#353433', + 'kda-color-neutralwarm-n95': '#222121', + 'kda-color-neutralwarm-n99': '#0f0f0f', + 'kda-color-neutralwarm-n100': '#050505', + 'kda-color-palette-aqua-n0': '#f0fffa', + 'kda-color-palette-aqua-n1': '#c9ffed', + 'kda-color-palette-aqua-n5': '#a1ffe0', + 'kda-color-palette-aqua-n10': '#7affd3', + 'kda-color-palette-aqua-n20': '#52ffc6', + 'kda-color-palette-aqua-n20@alpha80': '#52ffc6cc', + 'kda-color-palette-aqua-n30': '#4be9b5', + 'kda-color-palette-aqua-n40': '#44d2a3', + 'kda-color-palette-aqua-n50': '#3cbc92', + 'kda-color-palette-aqua-n60': '#35a580', + 'kda-color-palette-aqua-n70': '#2e8f6f', + 'kda-color-palette-aqua-n80': '#27795e', + 'kda-color-palette-aqua-n80@alpha80': '#27795ecc', + 'kda-color-palette-aqua-n90': '#20624c', + 'kda-color-palette-aqua-n95': '#184c3b', + 'kda-color-palette-aqua-n99': '#113529', + 'kda-color-palette-aqua-n100': '#0a1f18', + 'kda-color-palette-blue-n0': '#f0f8ff', + 'kda-color-palette-blue-n1': '#d6ebff', + 'kda-color-palette-blue-n5': '#bbdbf9', + 'kda-color-palette-blue-n10': '#a0cbf4', + 'kda-color-palette-blue-n20': '#86bcee', + 'kda-color-palette-blue-n20@alpha20': '#86bcee33', + 'kda-color-palette-blue-n20@alpha80': '#86bceecc', + 'kda-color-palette-blue-n30': '#6bace8', + 'kda-color-palette-blue-n40': '#509ce3', + 'kda-color-palette-blue-n50': '#358cdd', + 'kda-color-palette-blue-n60': '#2e7ac0', + 'kda-color-palette-blue-n70': '#2767a3', + 'kda-color-palette-blue-n80': '#205586', + 'kda-color-palette-blue-n80@alpha20': '#20558633', + 'kda-color-palette-blue-n80@alpha80': '#205586cc', + 'kda-color-palette-blue-n90': '#194268', + 'kda-color-palette-blue-n95': '#112c46', + 'kda-color-palette-blue-n99': '#0b1d2e', + 'kda-color-palette-blue-n100': '#06101a', + 'kda-color-palette-celery-n0': '#e9fce3', + 'kda-color-palette-celery-n1': '#cdfcbf', + 'kda-color-palette-celery-n5': '#aef69d', + 'kda-color-palette-celery-n10': '#96ee85', + 'kda-color-palette-celery-n20': '#72e06a', + 'kda-color-palette-celery-n20@alpha20': '#72e06a33', + 'kda-color-palette-celery-n20@alpha80': '#72e06acc', + 'kda-color-palette-celery-n30': '#4ecf50', + 'kda-color-palette-celery-n40': '#27bb36', + 'kda-color-palette-celery-n50': '#07a721', + 'kda-color-palette-celery-n60': '#009112', + 'kda-color-palette-celery-n70': '#007c0f', + 'kda-color-palette-celery-n80': '#00670f', + 'kda-color-palette-celery-n80@alpha20': '#00670f33', + 'kda-color-palette-celery-n80@alpha80': '#00670fcc', + 'kda-color-palette-celery-n90': '#00530d', + 'kda-color-palette-celery-n95': '#00400a', + 'kda-color-palette-celery-n99': '#003007', + 'kda-color-palette-celery-n100': '#001a04', + 'kda-color-palette-green-n0': '#e9f8ef', + 'kda-color-palette-green-n1': '#cef8e0', + 'kda-color-palette-green-n5': '#b8e7cf', + 'kda-color-palette-green-n10': '#a2d5be', + 'kda-color-palette-green-n20': '#8cc4ad', + 'kda-color-palette-green-n30': '#76b39b', + 'kda-color-palette-green-n40': '#60a18a', + 'kda-color-palette-green-n50': '#4a9079', + 'kda-color-palette-green-n60': '#3f806a', + 'kda-color-palette-green-n70': '#356f5a', + 'kda-color-palette-green-n80': '#2a5f4b', + 'kda-color-palette-green-n90': '#1f4f3c', + 'kda-color-palette-green-n95': '#153e2c', + 'kda-color-palette-green-n99': '#0a2e1d', + 'kda-color-palette-green-n100': '#061a10', + 'kda-color-palette-magenta-n0': '#fff7fa', + 'kda-color-palette-magenta-n1': '#ffeaf1', + 'kda-color-palette-magenta-n5': '#fbc7da', + 'kda-color-palette-magenta-n10': '#f6a4c3', + 'kda-color-palette-magenta-n20': '#f282ad', + 'kda-color-palette-magenta-n30': '#ed5f96', + 'kda-color-palette-magenta-n40': '#e93c7f', + 'kda-color-palette-magenta-n50': '#e41968', + 'kda-color-palette-magenta-n60': '#cf175e', + 'kda-color-palette-magenta-n70': '#ba1455', + 'kda-color-palette-magenta-n80': '#a5124b', + 'kda-color-palette-magenta-n90': '#901041', + 'kda-color-palette-magenta-n95': '#7b0d38', + 'kda-color-palette-magenta-n99': '#660b2e', + 'kda-color-palette-magenta-n100': '#470820', + 'kda-color-palette-orange-n0': '#fff7eb', + 'kda-color-palette-orange-n1': '#ffeccc', + 'kda-color-palette-orange-n5': '#ffdfad', + 'kda-color-palette-orange-n10': '#fdd291', + 'kda-color-palette-orange-n20': '#ffbb63', + 'kda-color-palette-orange-n30': '#f5a655', + 'kda-color-palette-orange-n40': '#ec9046', + 'kda-color-palette-orange-n50': '#e27b38', + 'kda-color-palette-orange-n60': '#cb5d00', + 'kda-color-palette-orange-n70': '#b14c00', + 'kda-color-palette-orange-n80': '#953d00', + 'kda-color-palette-orange-n90': '#7a2f00', + 'kda-color-palette-orange-n95': '#612300', + 'kda-color-palette-orange-n99': '#491901', + 'kda-color-palette-orange-n100': '#290e01', + 'kda-color-palette-red-n0': '#fff5f5', + 'kda-color-palette-red-n1': '#ffebe7', + 'kda-color-palette-red-n5': '#ffddd6', + 'kda-color-palette-red-n10': '#ffcdc3', + 'kda-color-palette-red-n20': '#ffb7a9', + 'kda-color-palette-red-n20@alpha20': '#ffb7a933', + 'kda-color-palette-red-n20@alpha80': '#ffb7a9cc', + 'kda-color-palette-red-n30': '#ff9b88', + 'kda-color-palette-red-n40': '#ff7c65', + 'kda-color-palette-red-n50': '#f75c46', + 'kda-color-palette-red-n60': '#ea3829', + 'kda-color-palette-red-n70': '#d31510', + 'kda-color-palette-red-n80': '#b40000', + 'kda-color-palette-red-n80@alpha20': '#b4000033', + 'kda-color-palette-red-n80@alpha80': '#b40000cc', + 'kda-color-palette-red-n90': '#930000', + 'kda-color-palette-red-n95': '#740000', + 'kda-color-palette-red-n99': '#590000', + 'kda-color-palette-red-n100': '#300', + 'kda-color-palette-yellow-n0': '#fbf8dd', + 'kda-color-palette-yellow-n1': '#fbf198', + 'kda-color-palette-yellow-n5': '#f8e750', + 'kda-color-palette-yellow-n10': '#f8d904', + 'kda-color-palette-yellow-n20': '#e8c600', + 'kda-color-palette-yellow-n20@alpha20': '#e8c60033', + 'kda-color-palette-yellow-n20@alpha80': '#e8c600cc', + 'kda-color-palette-yellow-n30': '#d7b300', + 'kda-color-palette-yellow-n40': '#c49f00', + 'kda-color-palette-yellow-n50': '#b08c00', + 'kda-color-palette-yellow-n60': '#9b7800', + 'kda-color-palette-yellow-n70': '#856600', + 'kda-color-palette-yellow-n80': '#705300', + 'kda-color-palette-yellow-n80@alpha20': '#70530033', + 'kda-color-palette-yellow-n80@alpha80': '#705300cc', + 'kda-color-palette-yellow-n90': '#5b4300', + 'kda-color-palette-yellow-n95': '#483300', + 'kda-color-palette-yellow-n99': '#362500', + 'kda-color-palette-yellow-n100': '#1a1100', + 'kda-color-categorical-category1': '#2898bd', + 'kda-color-categorical-category1-@hover': '#227d9b', + 'kda-color-categorical-category2': '#5e4db2', + 'kda-color-categorical-category2-@hover': '#352c63', + 'kda-color-categorical-category3': '#e56910', + 'kda-color-categorical-category3-@hover': '#c25100', + 'kda-color-categorical-category4': '#943d73', + 'kda-color-categorical-category4-@hover': '#50253f', + 'kda-color-categorical-category5': '#09326c', + 'kda-color-categorical-category5-@hover': '#1c2b41', + 'kda-color-categorical-category6': '#8f7ee7', + 'kda-color-categorical-category6-@hover': '#8270db', + 'kda-color-categorical-category7': '#50253f', + 'kda-color-categorical-category7-@hover': '#3d2232', + 'kda-color-categorical-category8': '#a54800', + 'kda-color-categorical-category8-@hover': '#702e00', + 'kda-color-semantic-info-n0': '#f0f8ff', + 'kda-color-semantic-info-n1': '#d6ebff', + 'kda-color-semantic-info-n5': '#bbdbf9', + 'kda-color-semantic-info-n10': '#a0cbf4', + 'kda-color-semantic-info-n20': '#86bcee', + 'kda-color-semantic-info-n20@alpha20': '#86bcee33', + 'kda-color-semantic-info-n20@alpha80': '#86bceecc', + 'kda-color-semantic-info-n30': '#6bace8', + 'kda-color-semantic-info-n40': '#509ce3', + 'kda-color-semantic-info-n50': '#358cdd', + 'kda-color-semantic-info-n60': '#2e7ac0', + 'kda-color-semantic-info-n70': '#2767a3', + 'kda-color-semantic-info-n80': '#205586', + 'kda-color-semantic-info-n80@alpha20': '#20558633', + 'kda-color-semantic-info-n80@alpha80': '#205586cc', + 'kda-color-semantic-info-n90': '#194268', + 'kda-color-semantic-info-n95': '#112c46', + 'kda-color-semantic-info-n99': '#0b1d2e', + 'kda-color-semantic-info-n100': '#06101a', + 'kda-color-semantic-negative-n0': '#fff5f5', + 'kda-color-semantic-negative-n1': '#ffebe7', + 'kda-color-semantic-negative-n5': '#ffddd6', + 'kda-color-semantic-negative-n10': '#ffcdc3', + 'kda-color-semantic-negative-n20': '#ffb7a9', + 'kda-color-semantic-negative-n20@alpha20': '#ffb7a933', + 'kda-color-semantic-negative-n20@alpha80': '#ffb7a9cc', + 'kda-color-semantic-negative-n30': '#ff9b88', + 'kda-color-semantic-negative-n40': '#ff7c65', + 'kda-color-semantic-negative-n50': '#f75c46', + 'kda-color-semantic-negative-n60': '#ea3829', + 'kda-color-semantic-negative-n70': '#d31510', + 'kda-color-semantic-negative-n80': '#b40000', + 'kda-color-semantic-negative-n80@alpha20': '#b4000033', + 'kda-color-semantic-negative-n80@alpha80': '#b40000cc', + 'kda-color-semantic-negative-n90': '#930000', + 'kda-color-semantic-negative-n95': '#740000', + 'kda-color-semantic-negative-n99': '#590000', + 'kda-color-semantic-negative-n100': '#300', + 'kda-color-semantic-positive-n0': '#e9fce3', + 'kda-color-semantic-positive-n1': '#cdfcbf', + 'kda-color-semantic-positive-n5': '#aef69d', + 'kda-color-semantic-positive-n10': '#96ee85', + 'kda-color-semantic-positive-n20': '#72e06a', + 'kda-color-semantic-positive-n20@alpha20': '#72e06a33', + 'kda-color-semantic-positive-n20@alpha80': '#72e06acc', + 'kda-color-semantic-positive-n30': '#4ecf50', + 'kda-color-semantic-positive-n40': '#27bb36', + 'kda-color-semantic-positive-n50': '#07a721', + 'kda-color-semantic-positive-n60': '#009112', + 'kda-color-semantic-positive-n70': '#007c0f', + 'kda-color-semantic-positive-n80': '#00670f', + 'kda-color-semantic-positive-n80@alpha20': '#00670f33', + 'kda-color-semantic-positive-n80@alpha80': '#00670fcc', + 'kda-color-semantic-positive-n90': '#00530d', + 'kda-color-semantic-positive-n95': '#00400a', + 'kda-color-semantic-positive-n99': '#003007', + 'kda-color-semantic-positive-n100': '#001a04', + 'kda-color-semantic-warning-n0': '#fbf8dd', + 'kda-color-semantic-warning-n1': '#fbf198', + 'kda-color-semantic-warning-n5': '#f8e750', + 'kda-color-semantic-warning-n10': '#f8d904', + 'kda-color-semantic-warning-n20': '#e8c600', + 'kda-color-semantic-warning-n20@alpha20': '#e8c60033', + 'kda-color-semantic-warning-n20@alpha80': '#e8c600cc', + 'kda-color-semantic-warning-n30': '#d7b300', + 'kda-color-semantic-warning-n40': '#c49f00', + 'kda-color-semantic-warning-n50': '#b08c00', + 'kda-color-semantic-warning-n60': '#9b7800', + 'kda-color-semantic-warning-n70': '#856600', + 'kda-color-semantic-warning-n80': '#705300', + 'kda-color-semantic-warning-n80@alpha20': '#70530033', + 'kda-color-semantic-warning-n80@alpha80': '#705300cc', + 'kda-color-semantic-warning-n90': '#5b4300', + 'kda-color-semantic-warning-n95': '#483300', + 'kda-color-semantic-warning-n99': '#362500', + 'kda-color-semantic-warning-n100': '#1a1100', + 'kda-color-text-base': '#000000f2', + 'kda-color-text-base-@init': '#000', + 'kda-color-text-base-@hover': '#131e2b', + 'kda-color-text-base-@focus': '#020e1b', + 'kda-color-text-base-@active': '#000', + 'kda-color-text-base-@disabled': '#0006', + 'kda-color-text-base-@selected': '#000', + 'kda-color-text-base-inverse': '#fffffff2', + 'kda-color-text-base-inverse-@init': '#fff', + 'kda-color-text-base-inverse-@hover': '#e4e5e5', + 'kda-color-text-base-inverse-@focus': '#f5f5f5', + 'kda-color-text-base-inverse-@active': '#fff', + 'kda-color-text-base-inverse-@disabled': '#fff6', + 'kda-color-text-base-inverse-@selected': '#fff', + 'kda-color-text-subtle': '#000c', + 'kda-color-text-subtle-@hover': '#000000f2', + 'kda-color-text-subtle-inverse': '#fffffff2', + 'kda-color-text-subtlest': '#000000b3', + 'kda-color-text-subtlest-@hover': '#000c', + 'kda-color-text-subtlest-inverse': '#ffffffb3', + 'kda-color-text-gray': '#0006', + 'kda-color-text-gray-lighter': '#6a7178', + 'kda-color-text-gray-bolder': '#475059', + 'kda-color-text-gray-inverse': '#fff6', + 'kda-color-text-gray-inverse-lighter': '#8d9298', + 'kda-color-text-gray-inverse-bolder': '#b0b3b7', + 'kda-color-text-brand-wordmark': '#0f0f0f', + 'kda-color-text-brand-wordmark-inverse': '#f0eae6', + 'kda-color-text-brand-primary': '#1f4f3c', + 'kda-color-text-brand-primary-@hover': '#153e2c', + 'kda-color-text-brand-primary-@focus': '#0a2e1d', + 'kda-color-text-brand-primary-inverse': '#a2d5be', + 'kda-color-text-brand-primary-inverse-@hover': '#b8e7cf', + 'kda-color-text-brand-primary-inverse-@focus': '#cef8e0', + 'kda-color-text-brand-secondary': '#194268', + 'kda-color-text-brand-secondary-@hover': '#112c46', + 'kda-color-text-brand-secondary-@focus': '#0b1d2e', + 'kda-color-text-brand-secondary-inverse': '#a0cbf4', + 'kda-color-text-brand-secondary-inverse-@hover': '#bbdbf9', + 'kda-color-text-brand-secondary-inverse-@focus': '#d6ebff', + 'kda-color-text-accent-primary': '#000', + 'kda-color-text-accent-primary-@hover': '#131e2b', + 'kda-color-text-accent-primary-@focus': '#020e1b', + 'kda-color-text-accent-primary-@active': '#000', + 'kda-color-text-accent-primary-inverse': '#fff', + 'kda-color-text-accent-primary-inverse-@hover': '#e4e5e5', + 'kda-color-text-accent-primary-inverse-@focus': '#f5f5f5', + 'kda-color-text-accent-primary-inverse-@active': '#fff', + 'kda-color-text-semantic-positive': '#003007', + 'kda-color-text-semantic-positive-@hover': '#001a04', + 'kda-color-text-semantic-positive-@focus': '#001a04', + 'kda-color-text-semantic-positive-inverse': '#cdfcbf', + 'kda-color-text-semantic-positive-inverse-@hover': '#e9fce3', + 'kda-color-text-semantic-positive-inverse-@focus': '#e9fce3', + 'kda-color-text-semantic-negative': '#590000', + 'kda-color-text-semantic-negative-@hover': '#300', + 'kda-color-text-semantic-negative-@focus': '#300', + 'kda-color-text-semantic-negative-inverse': '#ffebe7', + 'kda-color-text-semantic-negative-inverse-@hover': '#fff5f5', + 'kda-color-text-semantic-negative-inverse-@focus': '#fff5f5', + 'kda-color-text-semantic-warning': '#362500', + 'kda-color-text-semantic-warning-@hover': '#1a1100', + 'kda-color-text-semantic-warning-@focus': '#1a1100', + 'kda-color-text-semantic-warning-inverse': '#fbf198', + 'kda-color-text-semantic-warning-inverse-@hover': '#fbf8dd', + 'kda-color-text-semantic-warning-inverse-@focus': '#fbf8dd', + 'kda-color-text-semantic-info': '#0b1d2e', + 'kda-color-text-semantic-info-@hover': '#06101a', + 'kda-color-text-semantic-info-@focus': '#06101a', + 'kda-color-text-semantic-info-inverse': '#d6ebff', + 'kda-color-text-semantic-info-inverse-@hover': '#f0f8ff', + 'kda-color-text-semantic-info-inverse-@focus': '#f0f8ff', + 'kda-effect-defaultBlur': '0.5rem', + 'kda-effect-shadow-level1': '4px 0.5rem 0.5rem 4px #000', + 'kda-effect-shadow-level2': '4rem 4rem 0.5rem 2rem #000', + 'kda-effect-shadow-level3': '0px 0px 0.5rem 24px #000', + 'kda-layout-content-minWidth': '33.75rem', + 'kda-layout-content-maxWidth': '42.5rem', + 'kda-radius-no': '0px', + 'kda-radius-xs': '2px', + 'kda-radius-sm': '4px', + 'kda-radius-md': '6px', + 'kda-radius-lg': '8px', + 'kda-radius-xl': '16px', + 'kda-radius-xxl': '24px', + 'kda-radius-xs-outline': '3px', + 'kda-radius-sm-outline': '5px', + 'kda-radius-md-outline': '7px', + 'kda-radius-round': '999rem', + 'kda-screen-resolutions-width-mobile-apple-iphone_se': 320, + 'kda-screen-resolutions-width-mobile-apple-iphone_8': 375, + 'kda-screen-resolutions-width-mobile-apple-iphone_11': 375, + 'kda-screen-resolutions-width-mobile-apple-iphone_11_pro': 414, + 'kda-screen-resolutions-width-mobile-samsung-galaxy_s9': 360, + 'kda-screen-resolutions-width-tablet-apple-ipad_mini': 768, + 'kda-screen-resolutions-width-tablet-apple-ipad': 810, + 'kda-screen-resolutions-width-tablet-apple-ipad_pro': 1024, + 'kda-screen-resolutions-width-laptop-macBook_air': 1440, + 'kda-screen-resolutions-width-laptop-macBook_pro_13': 1280, + 'kda-screen-resolutions-width-laptop-macBook_pro_16': 3072, + 'kda-screen-resolutions-width-desktop-small': 1024, + 'kda-screen-resolutions-width-desktop-widescreen': 1280, + 'kda-screen-resolutions-width-desktop-hd': 1366, + 'kda-screen-resolutions-width-desktop-full_hd': 1920, + 'kda-screen-resolutions-width-desktop-2k': 2560, + 'kda-screen-resolutions-width-desktop-ultra_wide': 3440, + 'kda-screen-resolutions-width-desktop-4k': 3840, + 'kda-screen-resolutions-height-mobile-apple-iphone_se': 568, + 'kda-screen-resolutions-height-mobile-apple-iphone_8': 667, + 'kda-screen-resolutions-height-mobile-apple-iphone_11': 812, + 'kda-screen-resolutions-height-mobile-apple-iphone_11_pro': 896, + 'kda-screen-resolutions-height-mobile-samsung-galaxy_s9': 740, + 'kda-screen-resolutions-height-tablet-apple-ipad_mini': 1024, + 'kda-screen-resolutions-height-tablet-apple-ipad': 1080, + 'kda-screen-resolutions-height-tablet-apple-ipad_pro': 1366, + 'kda-screen-resolutions-height-laptop-macBook_air': 900, + 'kda-screen-resolutions-height-laptop-macBook_pro_13': 800, + 'kda-screen-resolutions-height-laptop-macBook_pro_16': 1920, + 'kda-screen-resolutions-height-desktop-small': 768, + 'kda-screen-resolutions-height-desktop-widescreen': 800, + 'kda-screen-resolutions-height-desktop-hd': 768, + 'kda-screen-resolutions-height-desktop-full_hd': 1080, + 'kda-screen-resolutions-height-desktop-2k': 1440, + 'kda-screen-resolutions-height-desktop-ultra_wide': 1440, + 'kda-screen-resolutions-height-desktop-4k': 2160, + 'kda-size-n0': 0, + 'kda-size-n1': '0.25rem', + 'kda-size-n2': '0.5rem', + 'kda-size-n3': '0.75rem', + 'kda-size-n4': '1rem', + 'kda-size-n5': '1.25rem', + 'kda-size-n6': '1.5rem', + 'kda-size-n7': '1.75rem', + 'kda-size-n8': '2rem', + 'kda-size-n9': '2.25rem', + 'kda-size-n10': '2.5rem', + 'kda-size-n11': '2.75rem', + 'kda-size-n12': '3rem', + 'kda-size-n13': '3.25rem', + 'kda-size-n14': '3.5rem', + 'kda-size-n15': '3.75rem', + 'kda-size-n16': '4rem', + 'kda-size-n17': '4.25rem', + 'kda-size-n18': '4.5rem', + 'kda-size-n19': '4.75rem', + 'kda-size-n20': '5rem', + 'kda-size-n24': '6rem', + 'kda-size-n25': '6.25rem', + 'kda-size-n30': '7.5rem', + 'kda-size-n32': '8rem', + 'kda-size-n35': '8.75rem', + 'kda-size-n40': '10rem', + 'kda-size-n48': '12rem', + 'kda-size-n56': '14rem', + 'kda-size-n64': '16rem', + 'kda-spacing-no': '0', + 'kda-spacing-xxs': '0.125rem', + 'kda-spacing-xs': '0.25rem', + 'kda-spacing-sm': '0.5rem', + 'kda-spacing-md': '1rem', + 'kda-spacing-lg': '1.5rem', + 'kda-spacing-xl': '1.75rem', + 'kda-spacing-xxl': '2.25rem', + 'kda-spacing-xxxl': '2.5rem', + 'kda-spacing-n0': 0, + 'kda-spacing-n1': '0.25rem', + 'kda-spacing-n2': '0.5rem', + 'kda-spacing-n3': '0.75rem', + 'kda-spacing-n4': '1rem', + 'kda-spacing-n5': '1.25rem', + 'kda-spacing-n6': '1.5rem', + 'kda-spacing-n7': '1.75rem', + 'kda-spacing-n8': '2rem', + 'kda-spacing-n9': '2.25rem', + 'kda-spacing-n10': '2.5rem', + 'kda-spacing-n11': '2.75rem', + 'kda-spacing-n12': '3rem', + 'kda-spacing-n13': '3.25rem', + 'kda-spacing-n14': '3.5rem', + 'kda-spacing-n15': '3.75rem', + 'kda-spacing-n16': '4rem', + 'kda-spacing-n17': '4.25rem', + 'kda-spacing-n18': '4.5rem', + 'kda-spacing-n19': '4.75rem', + 'kda-spacing-n20': '5rem', + 'kda-spacing-n24': '6rem', + 'kda-spacing-n25': '6.25rem', + 'kda-spacing-n30': '7.5rem', + 'kda-spacing-n32': '8rem', + 'kda-spacing-n35': '8.75rem', + 'kda-spacing-n40': '10rem', + 'kda-spacing-n48': '12rem', + 'kda-spacing-n56': '14rem', + 'kda-spacing-n64': '16rem', + 'kda-transition-delay-none': '0ms', + 'kda-transition-duration-base': '400ms', + 'kda-transition-duration-d200': '200ms', + 'kda-transition-animation-easeOutSine': '200ms cubic-bezier(0.61, 1, 0.88, 1)', + 'kda-transition-animation-easeOutCubic': '200ms cubic-bezier(0.33, 1, 0.68, 1)', + 'kda-typography-family-primaryFont': 'Inter', + 'kda-typography-family-monospaceFont': 'Kode Mono', + 'kda-typography-fontSize-xxs': '0.6875rem', + 'kda-typography-fontSize-xs': '0.75rem', + 'kda-typography-fontSize-sm': '0.875rem', + 'kda-typography-fontSize-base': '1rem', + 'kda-typography-fontSize-md': '1.125rem', + 'kda-typography-fontSize-lg': '1.25rem', + 'kda-typography-fontSize-xl': '1.5rem', + 'kda-typography-fontSize-2xl': '1.75rem', + 'kda-typography-fontSize-3xl': '2rem', + 'kda-typography-fontSize-4xl': '2.25rem', + 'kda-typography-fontSize-5xl': '2.5rem', + 'kda-typography-fontSize-6xl': '2.75rem', + 'kda-typography-fontSize-7xl': '3rem', + 'kda-typography-fontSize-8xl': '3.25rem', + 'kda-typography-fontSize-9xl': '3.75rem', + 'kda-typography-fontSize-10xl': '4.5rem', + 'kda-typography-fontSize-11xl': '5rem', + 'kda-typography-fontSize-12xl': '5.25rem', + 'kda-typography-lineHeight-7xl': '3rem', + 'kda-typography-lineHeight-4xl': '2.25rem', + 'kda-typography-lineHeight-3xl': '2rem', + 'kda-typography-lineHeight-2xl': '1.75rem', + 'kda-typography-lineHeight-xl': '1.5rem', + 'kda-typography-lineHeight-base': '1.25rem', + 'kda-typography-lineHeight-md': '1rem', + 'kda-typography-lineHeight-sm': '0.875rem', + 'kda-typography-weight-primaryFont-light': 300, + 'kda-typography-weight-primaryFont-regular': 400, + 'kda-typography-weight-primaryFont-medium': 500, + 'kda-typography-weight-primaryFont-semiBold': 600, + 'kda-typography-weight-primaryFont-bold': 700, + 'kda-typography-weight-monospaceFont-regular': 400, + 'kda-typography-weight-monospaceFont-medium': 500, + 'kda-typography-weight-monospaceFont-semiBold': 600, + 'kda-typography-weight-monospaceFont-bold': 700, + 'kda-zIndex-deepdive': -99999, + 'kda-zIndex': 1, + 'kda-zIndex-dialog': 6000, + 'kda-zIndex-surface': 4, + 'kda-zIndex-dropdown': 7000, + 'kda-zIndex-modal': 9000, + 'kda-zIndex-overlay': 8000, + 'kda-zIndex-popup': 5000, + 'kda-zIndex-spinner': 9050, + 'kda-zIndex-sticky': 100, + 'kda-zIndex-toast': 10000, +}; + +export default { + kda: { + explorer: { + alert: { + surface: { + text: { + 'default': '#0b1d2e', + }, + }, + background: { + 'default': '#e9f8ef', + semantic: { + positive: '#e9fce3', + negative: '#fff5f5', + warning: '#fbf8dd', + info: '#f0f8ff', + }, + }, + loading: { + 'default': '#194268', + }, + }, + button: { + background: { + color: { + 'default': '#20624c', + }, + }, + surface: { + color: { + 'default': '#fff', + }, + }, + }, + hero: { + banner: { + title: { + font: { + size: '1.5rem', + weight: '500', + lineHeight: '1.5rem', + color: { + name: '#fff', + prefix: '#fff6', + selector: '#fff', + }, + }, + margin: { + gap: '1rem', + bottom: '1rem', + }, + }, + border: '1px solid #4a9079', + radius: '2px', + background: '#4a9079', + padding: '1rem', + column: { + width: '100%', + gap: '2rem', + }, + button: { + dimensions: { + radius: '0px', + }, + 'default': { + background: '#20624c', + surface: '#fff', + }, + '@hover': { + background: '#27795e', + surface: '#fff', + }, + '@active': { + background: '#2e8f6f', + surface: '#e4e5e5', + }, + }, + }, + }, + input: { + dimensions: { + radius: { + base: '0px', + }, + }, + border: { + color: { + semantic: { + negative: '#ea3829', + }, + '@focus': '#356f5a', + }, + }, + }, + navigation: { + background: { + '@active': '#e9f8ef', + }, + surface: { + text: { + 'default': '#1f4f3c', + '@selected': '#061a10', + }, + }, + }, + toast: { + surface: { + text: { + 'default': '#0b1d2e', + }, + }, + background: { + 'default': '#e9f8ef', + semantic: { + positive: '#e9fce3', + negative: '#fff5f5', + warning: '#fbf8dd', + info: '#f0f8ff', + }, + }, + loading: { + 'default': '#194268', + }, + }, + top: { + bar: { + font: { + size: '0.75rem', + }, + }, + }, + widget: { + stats: { + background: { + 'default': '#e9f8ef', + '@hover': '#e9f8ef', + '@focus': '#e9f8ef', + '@visited': '#e9f8ef', + }, + surface: { + text: { + subtle: '#000c', + 'default': '#1f4f3c', + }, + icon: { + color: { + 'default': '#4a9079', + }, + }, + }, + }, + }, + }, + foundation: { + border: { + width: { + hairline: '1px', + normal: '2px', + thick: '4px', + }, + hairline: '1px solid #252f3a40', + normal: '2px solid #020e1b80', + thick: '4px solid #020e1b80', + }, + breakpoint: { + xs: '0rem', + sm: '40rem', + md: '48rem', + lg: '64rem', + xl: '80rem', + xxl: '96rem', + }, + color: { + accent: { + blue: '#358cdd', + celery: '#07a721', + green: '#4a9079', + magenta: '#e41968', + orange: '#e27b38', + red: '#f75c46', + yellow: '#b08c00', + brand: { + primary: '#4a9079', + secondary: '#358cdd', + tertiary: '#e27b38', + tint: { + primary: '#52ffc6', + secondary: '#e41968', + tertiary: '#e27b38', + }, + }, + semantic: { + info: '#358cdd', + warning: '#b08c00', + positive: '#07a721', + negative: '#f75c46', + }, + }, + background: { + base: { + 'default': '#f5f5f5', + warm: '#f0eae6', + '@hover': '#d2d4d6', + '@focus': '#e4e5e5cc', + '@active': '#e4e5e5', + '@disabled': '#0000001a', + inverse: { + 'default': '#020e1b', + warm: '#0f0f0f', + '@hover': '#252f3a', + '@focus': '#131e2bcc', + '@disabled': '#ffffff1a', + }, + }, + layer: { + 'default': '#fffc', + solid: '#fff', + }, + overlay: { + 'default': '#fffffff2', + context: { + 'default': '#fffffff2', + }, + '@hover': '#fff', + }, + surface: { + 'default': '#020e1b0f', + inverse: { + 'default': '#020e1bcc', + }, + subtle: { + 'default': '#020e1b08', + inverse: { + 'default': '#020e1bcc', + }, + }, + }, + surfaceHighContrast: { + 'default': '#ffffffe6', + inverse: { + 'default': '#000000e6', + }, + }, + brand: { + primary: { + 'default': '#b8e7cf', + subtle: '#cef8e0', + subtlest: '#e9f8ef', + '@hover': '#a2d5be', + '@focus': '#8cc4ad', + '@active': '#76b39b', + inverse: { + 'default': '#153e2c', + subtle: '#0a2e1d', + subtlest: '#061a10', + '@hover': '#1f4f3c', + '@focus': '#2a5f4b', + '@active': '#356f5a', + }, + }, + secondary: { + 'default': '#bbdbf9', + subtle: '#d6ebff', + subtlest: '#f0f8ff', + '@hover': '#bbdbf9', + '@focus': '#a0cbf4', + '@active': '#86bcee', + inverse: { + 'default': '#112c46', + subtle: '#0b1d2e', + subtlest: '#06101a', + '@hover': '#112c46', + '@focus': '#194268', + '@active': '#205586', + }, + }, + }, + accent: { + primary: { + 'default': '#52ffc6', + '@hover': '#4be9b5', + '@focus': '#52ffc6cc', + '@active': '#7affd3', + inverse: { + 'default': '#20624c', + '@hover': '#2e8f6f', + '@focus': '#27795ecc', + '@active': '#27795e', + }, + }, + secondary: { + 'default': '#e41968', + '@hover': '#cf175e', + '@focus': '#cf175e', + '@active': '#cf175e', + inverse: { + 'default': '#e41968', + '@hover': '#e93c7f', + '@focus': '#e93c7f', + '@active': '#e93c7f', + }, + }, + tertiary: { + 'default': '#e27b38', + '@hover': '#cb5d00', + '@focus': '#cb5d00', + '@active': '#cb5d00', + inverse: { + 'default': '#e27b38', + '@hover': '#ec9046', + '@focus': '#ec9046', + '@active': '#ec9046', + }, + }, + }, + semantic: { + positive: { + 'default': '#72e06a', + subtle: '#72e06a33', + subtlest: '#e9fce3', + '@hover': '#4ecf50', + '@focus': '#72e06acc', + '@active': '#96ee85', + inverse: { + 'default': '#00670f', + subtle: '#00670f33', + subtlest: '#001a04', + '@hover': '#007c0f', + '@focus': '#00670fcc', + '@active': '#00530d', + }, + }, + negative: { + 'default': '#ffb7a9', + subtle: '#ffb7a933', + subtlest: '#fff5f5', + '@hover': '#ff9b88', + '@focus': '#ffb7a9cc', + '@active': '#ffcdc3', + inverse: { + 'default': '#b40000', + subtle: '#b4000033', + subtlest: '#300', + '@hover': '#d31510', + '@focus': '#b40000cc', + '@active': '#930000', + }, + }, + warning: { + 'default': '#e8c600', + subtle: '#e8c60033', + subtlest: '#fbf8dd', + '@hover': '#d7b300', + '@focus': '#e8c600cc', + '@active': '#f8d904', + inverse: { + 'default': '#705300', + subtle: '#70530033', + subtlest: '#1a1100', + '@hover': '#856600', + '@focus': '#705300cc', + '@active': '#5b4300', + }, + }, + info: { + 'default': '#86bcee', + subtle: '#86bcee33', + subtlest: '#f0f8ff', + '@hover': '#6bace8', + '@focus': '#86bceecc', + '@active': '#a0cbf4', + inverse: { + 'default': '#205586', + subtle: '#20558633', + subtlest: '#06101a', + '@hover': '#2767a3', + '@focus': '#205586cc', + '@active': '#194268', + }, + }, + }, + input: { + 'default': '#f5f5f5cc', + '@hover': '#d2d4d6', + '@focus': '#e4e5e5cc', + '@active': '#e4e5e5', + '@disabled': '#0000001a', + inverse: { + 'default': '#475059cc', + '@hover': '#252f3a', + '@focus': '#131e2bcc', + '@active': '#131e2b', + '@disabled': '#ffffff1a', + }, + }, + skeleton: { + 'default': '#d2d4d6', + }, + table: { + row: { + 'default': '#fffc', + '@hover': '#f5f5f5cc', + }, + }, + }, + border: { + base: { + subtle: '#d2d4d6cc', + 'default': '#252f3a40', + bold: '#020e1b80', + boldest: '#000000b3', + 'high-contrast': '#000', + '@disabled': '#b0b3b7', + '@hover': '#b0b3b7', + '@focus': '#6a7178', + '@active': '#475059', + inverse: { + subtle: '#f5f5f51a', + 'default': '#f5f5f533', + bold: '#fff6', + boldest: '#f5f5f580', + 'high-contrast': '#fff', + '@disabled': '#b0b3b7', + '@hover': '#b0b3b7', + '@focus': '#6a7178', + '@active': '#475059', + }, + }, + brand: { + primary: { + 'default': '#60a18a', + subtle: '#8cc4ad', + '@hover': '#3f806a', + '@focus': '#356f5a', + inverse: { + 'default': '#2a5f4b', + '@hover': '#356f5a', + '@focus': '#3f806a', + }, + }, + secondary: { + 'default': '#509ce3', + subtle: '#86bcee', + '@hover': '#2e7ac0', + '@focus': '#2767a3', + inverse: { + 'default': '#205586', + '@hover': '#2767a3', + '@focus': '#2e7ac0', + }, + }, + }, + semantic: { + positive: { + 'default': '#009112', + subtle: '#72e06a', + '@disabled': '#72e06a', + '@hover': '#007c0f', + '@focus': '#009112', + inverse: { + 'default': '#27bb36', + '@hover': '#4ecf50', + '@focus': '#72e06a', + }, + }, + negative: { + 'default': '#ea3829', + subtle: '#ffb7a9', + '@disabled': '#ffb7a9', + '@hover': '#d31510', + '@focus': '#ea3829', + inverse: { + 'default': '#ff7c65', + '@hover': '#ff9b88', + '@focus': '#ffb7a9', + }, + }, + warning: { + 'default': '#9b7800', + subtle: '#e8c600', + '@disabled': '#e8c600', + '@hover': '#856600', + '@focus': '#9b7800', + inverse: { + 'default': '#c49f00', + '@hover': '#d7b300', + '@focus': '#e8c600', + }, + }, + info: { + 'default': '#2e7ac0', + subtle: '#86bcee', + '@disabled': '#86bcee', + '@hover': '#2767a3', + '@focus': '#2e7ac0', + inverse: { + 'default': '#509ce3', + '@hover': '#6bace8', + '@focus': '#86bcee', + }, + }, + }, + tint: { + outline: '#2e7ac0', + '@focus': '#27795ecc', + }, + overlay: { + context: '#b0b3b7cc', + }, + }, + brand: { + primary: { + n0: '#e9f8ef', + n1: '#cef8e0', + n5: '#b8e7cf', + n10: '#a2d5be', + n20: '#8cc4ad', + n30: '#76b39b', + n40: '#60a18a', + n50: '#4a9079', + n60: '#3f806a', + n70: '#356f5a', + n80: '#2a5f4b', + n90: '#1f4f3c', + n95: '#153e2c', + n99: '#0a2e1d', + n100: '#061a10', + }, + secondary: { + n0: '#f0f8ff', + n1: '#d6ebff', + n5: '#bbdbf9', + n10: '#a0cbf4', + n20: '#86bcee', + n30: '#6bace8', + n40: '#509ce3', + n50: '#358cdd', + n60: '#2e7ac0', + n70: '#2767a3', + n80: '#205586', + n90: '#194268', + n95: '#112c46', + n99: '#0b1d2e', + n100: '#06101a', + }, + tertiary: { + n0: '#fff7eb', + n1: '#ffeccc', + n5: '#ffdfad', + n10: '#fdd291', + n20: '#ffbb63', + n30: '#f5a655', + n40: '#ec9046', + n50: '#e27b38', + n60: '#cb5d00', + n70: '#b14c00', + n80: '#953d00', + n90: '#7a2f00', + n95: '#612300', + n99: '#491901', + n100: '#290e01', + }, + key: { + primary: '#4a9079', + secondary: '#0b1d2e', + tertiary: '#e27b38', + accent: '#e41968', + neutralwarm: '#f0eae6', + white: '#f5f5f5', + black: '#020e1b', + }, + }, + gradient: { + base: { + subtle: 'linear-gradient( 90deg, #f5f5f5, #f5f5f500 )', + }, + }, + icon: { + base: { + 'default': '#131e2b', + bold: '#020e1b', + '@init': '#020e1b', + '@hover': '#020e1b80', + '@focus': '#020e1b', + '@active': '#000', + '@disabled': '#0003', + inverse: { + 'default': '#e4e5e5', + bold: '#f5f5f5', + '@init': '#f5f5f5', + '@hover': '#f5f5f580', + '@focus': '#f5f5f5', + '@active': '#fff', + '@disabled': '#fff3', + }, + }, + brand: { + logo: { + 'default': '#4a9079', + inverse: { + 'default': '#f5f5f5', + }, + }, + primary: { + 'default': '#2a5f4b', + bold: '#1f4f3c', + '@hover': '#356f5a', + '@focus': '#3f806a', + '@active': '#4a9079', + '@disabled': '#9ea3a7', + inverse: { + 'default': '#8cc4ad', + '@hover': '#76b39b', + '@focus': '#60a18a', + '@active': '#4a9079', + '@disabled': '#9ea3a7', + }, + }, + secondary: { + 'default': '#205586', + bold: '#194268', + '@hover': '#2767a3', + '@focus': '#2e7ac0', + '@active': '#358cdd', + '@disabled': '#9ea3a7', + inverse: { + 'default': '#86bcee', + '@hover': '#6bace8', + '@focus': '#509ce3', + '@active': '#358cdd', + '@disabled': '#9ea3a7', + }, + }, + }, + semantic: { + positive: { + 'default': '#00670f', + '@hover': '#007c0f', + '@focus': '#009112', + '@active': '#07a721', + '@disabled': '#9ea3a7', + inverse: { + 'default': '#72e06a', + '@hover': '#4ecf50', + '@focus': '#27bb36', + '@active': '#07a721', + '@disabled': '#9ea3a7', + }, + }, + negative: { + 'default': '#b40000', + '@hover': '#d31510', + '@focus': '#ea3829', + '@active': '#f75c46', + '@disabled': '#9ea3a7', + inverse: { + 'default': '#ffb7a9', + '@hover': '#ff9b88', + '@focus': '#ff7c65', + '@active': '#f75c46', + '@disabled': '#9ea3a7', + }, + }, + warning: { + 'default': '#705300', + '@hover': '#856600', + '@focus': '#9b7800', + '@active': '#b08c00', + '@disabled': '#9ea3a7', + inverse: { + 'default': '#e8c600', + '@hover': '#d7b300', + '@focus': '#c49f00', + '@active': '#b08c00', + '@disabled': '#9ea3a7', + }, + }, + info: { + 'default': '#205586', + '@hover': '#2767a3', + '@focus': '#2e7ac0', + '@active': '#358cdd', + '@disabled': '#9ea3a7', + inverse: { + 'default': '#86bcee', + '@hover': '#6bace8', + '@focus': '#509ce3', + '@active': '#358cdd', + '@disabled': '#9ea3a7', + }, + }, + }, + product: { + spirekey: { + animation: { + start: '#4a9079', + step1: '#4aa688', + step2: '#4bbd97', + step3: '#4bd3a6', + end: '#4be9b5', + }, + }, + }, + }, + link: { + base: { + 'default': '#20624c', + '@hover': '#0a1f18', + '@focus': '#0a1f18', + '@visited': '#a5124b', + }, + brand: { + primary: { + 'default': '#356f5a', + '@hover': '#2a5f4b', + '@focus': '#3f806a', + '@visited': '#a5124b', + }, + secondary: { + 'default': '#2767a3', + '@hover': '#205586', + '@focus': '#2e7ac0', + '@visited': '#a5124b', + }, + }, + semantic: { + positive: { + 'default': '#00530d', + '@hover': '#00400a', + '@focus': '#00670f', + '@visited': '#a5124b', + }, + negative: { + 'default': '#930000', + '@hover': '#740000', + '@focus': '#b40000', + '@visited': '#a5124b', + }, + warning: { + 'default': '#5b4300', + '@hover': '#483300', + '@focus': '#705300', + '@visited': '#a5124b', + }, + info: { + 'default': '#194268', + '@hover': '#112c46', + '@focus': '#205586', + '@visited': '#a5124b', + }, + }, + }, + neutral: { + n0: '#fff', + 'n0@alpha0': '#fff0', + 'n0@alpha10': '#ffffff1a', + 'n0@alpha20': '#fff3', + 'n0@alpha40': '#fff6', + 'n0@alpha70': '#ffffffb3', + 'n0@alpha80': '#fffc', + 'n0@alpha90': '#ffffffe6', + 'n0@alpha95': '#fffffff2', + n1: '#f5f5f5', + 'n1@alpha0': '#f5f5f500', + 'n1@alpha1': '#f5f5f503', + 'n1@alpha3': '#f5f5f508', + 'n1@alpha4': '#f5f5f50a', + 'n1@alpha5': '#f5f5f50d', + 'n1@alpha6': '#f5f5f50f', + 'n1@alpha10': '#f5f5f51a', + 'n1@alpha20': '#f5f5f533', + 'n1@alpha30': '#f5f5f54d', + 'n1@alpha40': '#f5f5f566', + 'n1@alpha50': '#f5f5f580', + 'n1@alpha80': '#f5f5f5cc', + 'n1@alpha90': '#f5f5f5e6', + n5: '#e4e5e5', + 'n5@alpha80': '#e4e5e5cc', + 'n5@alpha95': '#e4e5e5f2', + n10: '#d2d4d6', + 'n10@alpha80': '#d2d4d6cc', + n15: '#c1c4c6', + n20: '#b0b3b7', + 'n20@alpha80': '#b0b3b7cc', + n30: '#9ea3a7', + n40: '#8d9298', + n50: '#7c8288', + n60: '#6a7178', + n70: '#596069', + n80: '#475059', + 'n80@alpha80': '#475059cc', + n85: '#36404a', + n90: '#252f3a', + 'n90@alpha20': '#252f3a33', + 'n90@alpha25': '#252f3a40', + n95: '#131e2b', + 'n95@alpha80': '#131e2bcc', + 'n95@alpha95': '#131e2bf2', + n99: '#020e1b', + 'n99@alpha0': '#020e1b00', + 'n99@alpha1': '#020e1b03', + 'n99@alpha3': '#020e1b08', + 'n99@alpha4': '#020e1b0a', + 'n99@alpha5': '#020e1b0d', + 'n99@alpha6': '#020e1b0f', + 'n99@alpha10': '#020e1b1a', + 'n99@alpha20': '#020e1b33', + 'n99@alpha30': '#020e1b4d', + 'n99@alpha40': '#020e1b66', + 'n99@alpha50': '#020e1b80', + 'n99@alpha80': '#020e1bcc', + 'n99@alpha90': '#020e1be6', + n100: '#000', + 'n100@alpha0': '#0000', + 'n100@alpha10': '#0000001a', + 'n100@alpha20': '#0003', + 'n100@alpha40': '#0006', + 'n100@alpha70': '#000000b3', + 'n100@alpha80': '#000c', + 'n100@alpha90': '#000000e6', + 'n100@alpha95': '#000000f2', + }, + neutralwarm: { + n0: '#fbfaf9', + n1: '#f0eae6', + 'n1@alpha30': '#f0eae64d', + 'n1@alpha60': '#f0eae699', + 'n1@alpha80': '#f0eae6cc', + 'n1@alpha95': '#f0eae6f2', + n5: '#ddd8d4', + n10: '#cbc6c2', + n20: '#b8b3b0', + n30: '#a5a19e', + n40: '#928f8c', + n50: '#807d7b', + n60: '#6d6a69', + n70: '#5a5857', + n80: '#474645', + n90: '#353433', + n95: '#222121', + n99: '#0f0f0f', + n100: '#050505', + }, + palette: { + aqua: { + n0: '#f0fffa', + n1: '#c9ffed', + n5: '#a1ffe0', + n10: '#7affd3', + n20: '#52ffc6', + 'n20@alpha80': '#52ffc6cc', + n30: '#4be9b5', + n40: '#44d2a3', + n50: '#3cbc92', + n60: '#35a580', + n70: '#2e8f6f', + n80: '#27795e', + 'n80@alpha80': '#27795ecc', + n90: '#20624c', + n95: '#184c3b', + n99: '#113529', + n100: '#0a1f18', + }, + blue: { + n0: '#f0f8ff', + n1: '#d6ebff', + n5: '#bbdbf9', + n10: '#a0cbf4', + n20: '#86bcee', + 'n20@alpha20': '#86bcee33', + 'n20@alpha80': '#86bceecc', + n30: '#6bace8', + n40: '#509ce3', + n50: '#358cdd', + n60: '#2e7ac0', + n70: '#2767a3', + n80: '#205586', + 'n80@alpha20': '#20558633', + 'n80@alpha80': '#205586cc', + n90: '#194268', + n95: '#112c46', + n99: '#0b1d2e', + n100: '#06101a', + }, + celery: { + n0: '#e9fce3', + n1: '#cdfcbf', + n5: '#aef69d', + n10: '#96ee85', + n20: '#72e06a', + 'n20@alpha20': '#72e06a33', + 'n20@alpha80': '#72e06acc', + n30: '#4ecf50', + n40: '#27bb36', + n50: '#07a721', + n60: '#009112', + n70: '#007c0f', + n80: '#00670f', + 'n80@alpha20': '#00670f33', + 'n80@alpha80': '#00670fcc', + n90: '#00530d', + n95: '#00400a', + n99: '#003007', + n100: '#001a04', + }, + green: { + n0: '#e9f8ef', + n1: '#cef8e0', + n5: '#b8e7cf', + n10: '#a2d5be', + n20: '#8cc4ad', + n30: '#76b39b', + n40: '#60a18a', + n50: '#4a9079', + n60: '#3f806a', + n70: '#356f5a', + n80: '#2a5f4b', + n90: '#1f4f3c', + n95: '#153e2c', + n99: '#0a2e1d', + n100: '#061a10', + }, + magenta: { + n0: '#fff7fa', + n1: '#ffeaf1', + n5: '#fbc7da', + n10: '#f6a4c3', + n20: '#f282ad', + n30: '#ed5f96', + n40: '#e93c7f', + n50: '#e41968', + n60: '#cf175e', + n70: '#ba1455', + n80: '#a5124b', + n90: '#901041', + n95: '#7b0d38', + n99: '#660b2e', + n100: '#470820', + }, + orange: { + n0: '#fff7eb', + n1: '#ffeccc', + n5: '#ffdfad', + n10: '#fdd291', + n20: '#ffbb63', + n30: '#f5a655', + n40: '#ec9046', + n50: '#e27b38', + n60: '#cb5d00', + n70: '#b14c00', + n80: '#953d00', + n90: '#7a2f00', + n95: '#612300', + n99: '#491901', + n100: '#290e01', + }, + red: { + n0: '#fff5f5', + n1: '#ffebe7', + n5: '#ffddd6', + n10: '#ffcdc3', + n20: '#ffb7a9', + 'n20@alpha20': '#ffb7a933', + 'n20@alpha80': '#ffb7a9cc', + n30: '#ff9b88', + n40: '#ff7c65', + n50: '#f75c46', + n60: '#ea3829', + n70: '#d31510', + n80: '#b40000', + 'n80@alpha20': '#b4000033', + 'n80@alpha80': '#b40000cc', + n90: '#930000', + n95: '#740000', + n99: '#590000', + n100: '#300', + }, + yellow: { + n0: '#fbf8dd', + n1: '#fbf198', + n5: '#f8e750', + n10: '#f8d904', + n20: '#e8c600', + 'n20@alpha20': '#e8c60033', + 'n20@alpha80': '#e8c600cc', + n30: '#d7b300', + n40: '#c49f00', + n50: '#b08c00', + n60: '#9b7800', + n70: '#856600', + n80: '#705300', + 'n80@alpha20': '#70530033', + 'n80@alpha80': '#705300cc', + n90: '#5b4300', + n95: '#483300', + n99: '#362500', + n100: '#1a1100', + }, + }, + categorical: { + category1: { + 'default': '#2898bd', + '@hover': '#227d9b', + }, + category2: { + 'default': '#5e4db2', + '@hover': '#352c63', + }, + category3: { + 'default': '#e56910', + '@hover': '#c25100', + }, + category4: { + 'default': '#943d73', + '@hover': '#50253f', + }, + category5: { + 'default': '#09326c', + '@hover': '#1c2b41', + }, + category6: { + 'default': '#8f7ee7', + '@hover': '#8270db', + }, + category7: { + 'default': '#50253f', + '@hover': '#3d2232', + }, + category8: { + 'default': '#a54800', + '@hover': '#702e00', + }, + }, + semantic: { + info: { + n0: '#f0f8ff', + n1: '#d6ebff', + n5: '#bbdbf9', + n10: '#a0cbf4', + n20: '#86bcee', + 'n20@alpha20': '#86bcee33', + 'n20@alpha80': '#86bceecc', + n30: '#6bace8', + n40: '#509ce3', + n50: '#358cdd', + n60: '#2e7ac0', + n70: '#2767a3', + n80: '#205586', + 'n80@alpha20': '#20558633', + 'n80@alpha80': '#205586cc', + n90: '#194268', + n95: '#112c46', + n99: '#0b1d2e', + n100: '#06101a', + }, + negative: { + n0: '#fff5f5', + n1: '#ffebe7', + n5: '#ffddd6', + n10: '#ffcdc3', + n20: '#ffb7a9', + 'n20@alpha20': '#ffb7a933', + 'n20@alpha80': '#ffb7a9cc', + n30: '#ff9b88', + n40: '#ff7c65', + n50: '#f75c46', + n60: '#ea3829', + n70: '#d31510', + n80: '#b40000', + 'n80@alpha20': '#b4000033', + 'n80@alpha80': '#b40000cc', + n90: '#930000', + n95: '#740000', + n99: '#590000', + n100: '#300', + }, + positive: { + n0: '#e9fce3', + n1: '#cdfcbf', + n5: '#aef69d', + n10: '#96ee85', + n20: '#72e06a', + 'n20@alpha20': '#72e06a33', + 'n20@alpha80': '#72e06acc', + n30: '#4ecf50', + n40: '#27bb36', + n50: '#07a721', + n60: '#009112', + n70: '#007c0f', + n80: '#00670f', + 'n80@alpha20': '#00670f33', + 'n80@alpha80': '#00670fcc', + n90: '#00530d', + n95: '#00400a', + n99: '#003007', + n100: '#001a04', + }, + warning: { + n0: '#fbf8dd', + n1: '#fbf198', + n5: '#f8e750', + n10: '#f8d904', + n20: '#e8c600', + 'n20@alpha20': '#e8c60033', + 'n20@alpha80': '#e8c600cc', + n30: '#d7b300', + n40: '#c49f00', + n50: '#b08c00', + n60: '#9b7800', + n70: '#856600', + n80: '#705300', + 'n80@alpha20': '#70530033', + 'n80@alpha80': '#705300cc', + n90: '#5b4300', + n95: '#483300', + n99: '#362500', + n100: '#1a1100', + }, + }, + text: { + base: { + 'default': '#000000f2', + '@init': '#000', + '@hover': '#131e2b', + '@focus': '#020e1b', + '@active': '#000', + '@disabled': '#0006', + '@selected': '#000', + inverse: { + 'default': '#fffffff2', + '@init': '#fff', + '@hover': '#e4e5e5', + '@focus': '#f5f5f5', + '@active': '#fff', + '@disabled': '#fff6', + '@selected': '#fff', + }, + }, + subtle: { + 'default': '#000c', + '@hover': '#000000f2', + inverse: { + 'default': '#fffffff2', + }, + }, + subtlest: { + 'default': '#000000b3', + '@hover': '#000c', + inverse: { + 'default': '#ffffffb3', + }, + }, + gray: { + 'default': '#0006', + lighter: '#6a7178', + bolder: '#475059', + inverse: { + 'default': '#fff6', + lighter: '#8d9298', + bolder: '#b0b3b7', + }, + }, + brand: { + wordmark: { + 'default': '#0f0f0f', + inverse: { + 'default': '#f0eae6', + }, + }, + primary: { + 'default': '#1f4f3c', + '@hover': '#153e2c', + '@focus': '#0a2e1d', + inverse: { + 'default': '#a2d5be', + '@hover': '#b8e7cf', + '@focus': '#cef8e0', + }, + }, + secondary: { + 'default': '#194268', + '@hover': '#112c46', + '@focus': '#0b1d2e', + inverse: { + 'default': '#a0cbf4', + '@hover': '#bbdbf9', + '@focus': '#d6ebff', + }, + }, + }, + accent: { + primary: { + 'default': '#000', + '@hover': '#131e2b', + '@focus': '#020e1b', + '@active': '#000', + inverse: { + 'default': '#fff', + '@hover': '#e4e5e5', + '@focus': '#f5f5f5', + '@active': '#fff', + }, + }, + }, + semantic: { + positive: { + 'default': '#003007', + '@hover': '#001a04', + '@focus': '#001a04', + inverse: { + 'default': '#cdfcbf', + '@hover': '#e9fce3', + '@focus': '#e9fce3', + }, + }, + negative: { + 'default': '#590000', + '@hover': '#300', + '@focus': '#300', + inverse: { + 'default': '#ffebe7', + '@hover': '#fff5f5', + '@focus': '#fff5f5', + }, + }, + warning: { + 'default': '#362500', + '@hover': '#1a1100', + '@focus': '#1a1100', + inverse: { + 'default': '#fbf198', + '@hover': '#fbf8dd', + '@focus': '#fbf8dd', + }, + }, + info: { + 'default': '#0b1d2e', + '@hover': '#06101a', + '@focus': '#06101a', + inverse: { + 'default': '#d6ebff', + '@hover': '#f0f8ff', + '@focus': '#f0f8ff', + }, + }, + }, + }, + }, + effect: { + defaultBlur: '0.5rem', + shadow: { + level1: '4px 0.5rem 0.5rem 4px #000', + level2: '4rem 4rem 0.5rem 2rem #000', + level3: '0px 0px 0.5rem 24px #000', + }, + }, + layout: { + content: { + minWidth: '33.75rem', + maxWidth: '42.5rem', + }, + }, + radius: { + no: '0px', + xs: '2px', + sm: '4px', + md: '6px', + lg: '8px', + xl: '16px', + xxl: '24px', + 'xs-outline': '3px', + 'sm-outline': '5px', + 'md-outline': '7px', + round: '999rem', + }, + screen: { + resolutions: { + width: { + mobile: { + apple: { + iphone_se: 320, + iphone_8: 375, + iphone_11: 375, + iphone_11_pro: 414, + }, + samsung: { + galaxy_s9: 360, + }, + }, + tablet: { + apple: { + ipad_mini: 768, + ipad: 810, + ipad_pro: 1024, + }, + }, + laptop: { + macBook_air: 1440, + macBook_pro_13: 1280, + macBook_pro_16: 3072, + }, + desktop: { + small: 1024, + widescreen: 1280, + hd: 1366, + full_hd: 1920, + '2k': 2560, + ultra_wide: 3440, + '4k': 3840, + }, + }, + height: { + mobile: { + apple: { + iphone_se: 568, + iphone_8: 667, + iphone_11: 812, + iphone_11_pro: 896, + }, + samsung: { + galaxy_s9: 740, + }, + }, + tablet: { + apple: { + ipad_mini: 1024, + ipad: 1080, + ipad_pro: 1366, + }, + }, + laptop: { + macBook_air: 900, + macBook_pro_13: 800, + macBook_pro_16: 1920, + }, + desktop: { + small: 768, + widescreen: 800, + hd: 768, + full_hd: 1080, + '2k': 1440, + ultra_wide: 1440, + '4k': 2160, + }, + }, + }, + }, + size: { + n0: 0, + n1: '0.25rem', + n2: '0.5rem', + n3: '0.75rem', + n4: '1rem', + n5: '1.25rem', + n6: '1.5rem', + n7: '1.75rem', + n8: '2rem', + n9: '2.25rem', + n10: '2.5rem', + n11: '2.75rem', + n12: '3rem', + n13: '3.25rem', + n14: '3.5rem', + n15: '3.75rem', + n16: '4rem', + n17: '4.25rem', + n18: '4.5rem', + n19: '4.75rem', + n20: '5rem', + n24: '6rem', + n25: '6.25rem', + n30: '7.5rem', + n32: '8rem', + n35: '8.75rem', + n40: '10rem', + n48: '12rem', + n56: '14rem', + n64: '16rem', + }, + spacing: { + no: '0', + xxs: '0.125rem', + xs: '0.25rem', + sm: '0.5rem', + md: '1rem', + lg: '1.5rem', + xl: '1.75rem', + xxl: '2.25rem', + xxxl: '2.5rem', + n0: 0, + n1: '0.25rem', + n2: '0.5rem', + n3: '0.75rem', + n4: '1rem', + n5: '1.25rem', + n6: '1.5rem', + n7: '1.75rem', + n8: '2rem', + n9: '2.25rem', + n10: '2.5rem', + n11: '2.75rem', + n12: '3rem', + n13: '3.25rem', + n14: '3.5rem', + n15: '3.75rem', + n16: '4rem', + n17: '4.25rem', + n18: '4.5rem', + n19: '4.75rem', + n20: '5rem', + n24: '6rem', + n25: '6.25rem', + n30: '7.5rem', + n32: '8rem', + n35: '8.75rem', + n40: '10rem', + n48: '12rem', + n56: '14rem', + n64: '16rem', + }, + transition: { + delay: { + none: '0ms', + }, + duration: { + base: '400ms', + d200: '200ms', + }, + animation: { + easeOutSine: '200ms cubic-bezier(0.61, 1, 0.88, 1)', + easeOutCubic: '200ms cubic-bezier(0.33, 1, 0.68, 1)', + }, + }, + typography: { + family: { + primaryFont: 'Inter', + monospaceFont: 'Kode Mono', + }, + fontSize: { + xxs: '0.6875rem', + xs: '0.75rem', + sm: '0.875rem', + base: '1rem', + md: '1.125rem', + lg: '1.25rem', + xl: '1.5rem', + '2xl': '1.75rem', + '3xl': '2rem', + '4xl': '2.25rem', + '5xl': '2.5rem', + '6xl': '2.75rem', + '7xl': '3rem', + '8xl': '3.25rem', + '9xl': '3.75rem', + '10xl': '4.5rem', + '11xl': '5rem', + '12xl': '5.25rem', + }, + lineHeight: { + '7xl': '3rem', + '4xl': '2.25rem', + '3xl': '2rem', + '2xl': '1.75rem', + xl: '1.5rem', + base: '1.25rem', + md: '1rem', + sm: '0.875rem', + }, + weight: { + primaryFont: { + light: 300, + regular: 400, + medium: 500, + semiBold: 600, + bold: 700, + }, + monospaceFont: { + regular: 400, + medium: 500, + semiBold: 600, + bold: 700, + }, + }, + }, + zIndex: { + deepdive: -99999, + 'default': 1, + dialog: 6000, + surface: 4, + dropdown: 7000, + modal: 9000, + overlay: 8000, + popup: 5000, + spinner: 9050, + sticky: 100, + toast: 10000, + }, + }, + }, +} satisfies KDADesignSystemLightTokens; diff --git a/toolkit/theme/design-system/dist/js/tokens.light.config.type.ts b/toolkit/theme/design-system/dist/js/tokens.light.config.type.ts new file mode 100644 index 0000000000..8f0ed00a18 --- /dev/null +++ b/toolkit/theme/design-system/dist/js/tokens.light.config.type.ts @@ -0,0 +1,1507 @@ +/* kda Design System | Theme: light */ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +export type KDADesignSystemLightTokens = { + kda: { + explorer: { + alert: { + surface: { + text: { + 'default': string; + }; + }; + background: { + 'default': string; + semantic: { + positive: string; + negative: string; + warning: string; + info: string; + }; + }; + loading: { + 'default': string; + }; + }; + button: { + background: { + color: { + 'default': string; + }; + }; + surface: { + color: { + 'default': string; + }; + }; + }; + hero: { + banner: { + title: { + font: { + size: string; + weight: string; + lineHeight: string; + color: { + name: string; + prefix: string; + selector: string; + }; + }; + margin: { + gap: string; + bottom: string; + }; + }; + border: string; + radius: string; + background: string; + padding: string; + column: { + width: string; + gap: string; + }; + button: { + dimensions: { + radius: string; + }; + 'default': { + background: string; + surface: string; + }; + '@hover': { + background: string; + surface: string; + }; + '@active': { + background: string; + surface: string; + }; + }; + }; + }; + input: { + dimensions: { + radius: { + base: string; + }; + }; + border: { + color: { + semantic: { + negative: string; + }; + '@focus': string; + }; + }; + }; + navigation: { + background: { + '@active': string; + }; + surface: { + text: { + 'default': string; + '@selected': string; + }; + }; + }; + toast: { + surface: { + text: { + 'default': string; + }; + }; + background: { + 'default': string; + semantic: { + positive: string; + negative: string; + warning: string; + info: string; + }; + }; + loading: { + 'default': string; + }; + }; + top: { + bar: { + font: { + size: string; + }; + }; + }; + widget: { + stats: { + background: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + surface: { + text: { + subtle: string; + 'default': string; + }; + icon: { + color: { + 'default': string; + }; + }; + }; + }; + }; + }; + foundation: { + border: { + width: { + hairline: string; + normal: string; + thick: string; + }; + hairline: string; + normal: string; + thick: string; + }; + breakpoint: { + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + xxl: string; + }; + color: { + accent: { + blue: string; + celery: string; + green: string; + magenta: string; + orange: string; + red: string; + yellow: string; + brand: { + primary: string; + secondary: string; + tertiary: string; + tint: { + primary: string; + secondary: string; + tertiary: string; + }; + }; + semantic: { + info: string; + warning: string; + positive: string; + negative: string; + }; + }; + background: { + base: { + 'default': string; + warm: string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + warm: string; + '@hover': string; + '@focus': string; + '@disabled': string; + }; + }; + layer: { + 'default': string; + solid: string; + }; + overlay: { + 'default': string; + context: { + 'default': string; + }; + '@hover': string; + }; + surface: { + 'default': string; + inverse: { + 'default': string; + }; + subtle: { + 'default': string; + inverse: { + 'default': string; + }; + }; + }; + surfaceHighContrast: { + 'default': string; + inverse: { + 'default': string; + }; + }; + brand: { + primary: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + secondary: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + accent: { + primary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + secondary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + tertiary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + negative: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + warning: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + info: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + subtle: string; + subtlest: string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + input: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + skeleton: { + 'default': string; + }; + table: { + row: { + 'default': string; + '@hover': string; + }; + }; + }; + border: { + base: { + subtle: string; + 'default': string; + bold: string; + boldest: string; + 'high-contrast': string; + '@disabled': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + subtle: string; + 'default': string; + bold: string; + boldest: string; + 'high-contrast': string; + '@disabled': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + brand: { + primary: { + 'default': string; + subtle: string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + secondary: { + 'default': string; + subtle: string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + negative: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + warning: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + info: { + 'default': string; + subtle: string; + '@disabled': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + tint: { + outline: string; + '@focus': string; + }; + overlay: { + context: string; + }; + }; + brand: { + primary: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + secondary: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + tertiary: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + key: { + primary: string; + secondary: string; + tertiary: string; + accent: string; + neutralwarm: string; + white: string; + black: string; + }; + }; + gradient: { + base: { + subtle: string; + }; + }; + icon: { + base: { + 'default': string; + bold: string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + bold: string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + brand: { + logo: { + 'default': string; + inverse: { + 'default': string; + }; + }; + primary: { + 'default': string; + bold: string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + secondary: { + 'default': string; + bold: string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + negative: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + warning: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + info: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + }; + }; + }; + product: { + spirekey: { + animation: { + start: string; + step1: string; + step2: string; + step3: string; + end: string; + }; + }; + }; + }; + link: { + base: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + brand: { + primary: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + secondary: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + }; + semantic: { + positive: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + negative: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + warning: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + info: { + 'default': string; + '@hover': string; + '@focus': string; + '@visited': string; + }; + }; + }; + neutral: { + n0: string; + 'n0@alpha0': string; + 'n0@alpha10': string; + 'n0@alpha20': string; + 'n0@alpha40': string; + 'n0@alpha70': string; + 'n0@alpha80': string; + 'n0@alpha90': string; + 'n0@alpha95': string; + n1: string; + 'n1@alpha0': string; + 'n1@alpha1': string; + 'n1@alpha3': string; + 'n1@alpha4': string; + 'n1@alpha5': string; + 'n1@alpha6': string; + 'n1@alpha10': string; + 'n1@alpha20': string; + 'n1@alpha30': string; + 'n1@alpha40': string; + 'n1@alpha50': string; + 'n1@alpha80': string; + 'n1@alpha90': string; + n5: string; + 'n5@alpha80': string; + 'n5@alpha95': string; + n10: string; + 'n10@alpha80': string; + n15: string; + n20: string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha80': string; + n85: string; + n90: string; + 'n90@alpha20': string; + 'n90@alpha25': string; + n95: string; + 'n95@alpha80': string; + 'n95@alpha95': string; + n99: string; + 'n99@alpha0': string; + 'n99@alpha1': string; + 'n99@alpha3': string; + 'n99@alpha4': string; + 'n99@alpha5': string; + 'n99@alpha6': string; + 'n99@alpha10': string; + 'n99@alpha20': string; + 'n99@alpha30': string; + 'n99@alpha40': string; + 'n99@alpha50': string; + 'n99@alpha80': string; + 'n99@alpha90': string; + n100: string; + 'n100@alpha0': string; + 'n100@alpha10': string; + 'n100@alpha20': string; + 'n100@alpha40': string; + 'n100@alpha70': string; + 'n100@alpha80': string; + 'n100@alpha90': string; + 'n100@alpha95': string; + }; + neutralwarm: { + n0: string; + n1: string; + 'n1@alpha30': string; + 'n1@alpha60': string; + 'n1@alpha80': string; + 'n1@alpha95': string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + palette: { + aqua: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + blue: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + celery: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + green: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + magenta: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + orange: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + red: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + yellow: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + }; + categorical: { + category1: { + 'default': string; + '@hover': string; + }; + category2: { + 'default': string; + '@hover': string; + }; + category3: { + 'default': string; + '@hover': string; + }; + category4: { + 'default': string; + '@hover': string; + }; + category5: { + 'default': string; + '@hover': string; + }; + category6: { + 'default': string; + '@hover': string; + }; + category7: { + 'default': string; + '@hover': string; + }; + category8: { + 'default': string; + '@hover': string; + }; + }; + semantic: { + info: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + negative: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + positive: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + warning: { + n0: string; + n1: string; + n5: string; + n10: string; + n20: string; + 'n20@alpha20': string; + 'n20@alpha80': string; + n30: string; + n40: string; + n50: string; + n60: string; + n70: string; + n80: string; + 'n80@alpha20': string; + 'n80@alpha80': string; + n90: string; + n95: string; + n99: string; + n100: string; + }; + }; + text: { + base: { + 'default': string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + '@selected': string; + inverse: { + 'default': string; + '@init': string; + '@hover': string; + '@focus': string; + '@active': string; + '@disabled': string; + '@selected': string; + }; + }; + subtle: { + 'default': string; + '@hover': string; + inverse: { + 'default': string; + }; + }; + subtlest: { + 'default': string; + '@hover': string; + inverse: { + 'default': string; + }; + }; + gray: { + 'default': string; + lighter: string; + bolder: string; + inverse: { + 'default': string; + lighter: string; + bolder: string; + }; + }; + brand: { + wordmark: { + 'default': string; + inverse: { + 'default': string; + }; + }; + primary: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + secondary: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + accent: { + primary: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + '@active': string; + }; + }; + }; + semantic: { + positive: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + negative: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + warning: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + info: { + 'default': string; + '@hover': string; + '@focus': string; + inverse: { + 'default': string; + '@hover': string; + '@focus': string; + }; + }; + }; + }; + }; + effect: { + defaultBlur: string; + shadow: { + level1: string; + level2: string; + level3: string; + }; + }; + layout: { + content: { + minWidth: string; + maxWidth: string; + }; + }; + radius: { + no: string; + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + xxl: string; + 'xs-outline': string; + 'sm-outline': string; + 'md-outline': string; + round: string; + }; + screen: { + resolutions: { + width: { + mobile: { + apple: { + iphone_se: number; + iphone_8: number; + iphone_11: number; + iphone_11_pro: number; + }; + samsung: { + galaxy_s9: number; + }; + }; + tablet: { + apple: { + ipad_mini: number; + ipad: number; + ipad_pro: number; + }; + }; + laptop: { + macBook_air: number; + macBook_pro_13: number; + macBook_pro_16: number; + }; + desktop: { + small: number; + widescreen: number; + hd: number; + full_hd: number; + '2k': number; + ultra_wide: number; + '4k': number; + }; + }; + height: { + mobile: { + apple: { + iphone_se: number; + iphone_8: number; + iphone_11: number; + iphone_11_pro: number; + }; + samsung: { + galaxy_s9: number; + }; + }; + tablet: { + apple: { + ipad_mini: number; + ipad: number; + ipad_pro: number; + }; + }; + laptop: { + macBook_air: number; + macBook_pro_13: number; + macBook_pro_16: number; + }; + desktop: { + small: number; + widescreen: number; + hd: number; + full_hd: number; + '2k': number; + ultra_wide: number; + '4k': number; + }; + }; + }; + }; + size: { + n0: number; + n1: string; + n2: string; + n3: string; + n4: string; + n5: string; + n6: string; + n7: string; + n8: string; + n9: string; + n10: string; + n11: string; + n12: string; + n13: string; + n14: string; + n15: string; + n16: string; + n17: string; + n18: string; + n19: string; + n20: string; + n24: string; + n25: string; + n30: string; + n32: string; + n35: string; + n40: string; + n48: string; + n56: string; + n64: string; + }; + spacing: { + no: string; + xxs: string; + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + xxl: string; + xxxl: string; + n0: number; + n1: string; + n2: string; + n3: string; + n4: string; + n5: string; + n6: string; + n7: string; + n8: string; + n9: string; + n10: string; + n11: string; + n12: string; + n13: string; + n14: string; + n15: string; + n16: string; + n17: string; + n18: string; + n19: string; + n20: string; + n24: string; + n25: string; + n30: string; + n32: string; + n35: string; + n40: string; + n48: string; + n56: string; + n64: string; + }; + transition: { + delay: { + none: string; + }; + duration: { + base: string; + d200: string; + }; + animation: { + easeOutSine: string; + easeOutCubic: string; + }; + }; + typography: { + family: { + primaryFont: string; + monospaceFont: string; + }; + fontSize: { + xxs: string; + xs: string; + sm: string; + base: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + '4xl': string; + '5xl': string; + '6xl': string; + '7xl': string; + '8xl': string; + '9xl': string; + '10xl': string; + '11xl': string; + '12xl': string; + }; + lineHeight: { + '7xl': string; + '4xl': string; + '3xl': string; + '2xl': string; + xl: string; + base: string; + md: string; + sm: string; + }; + weight: { + primaryFont: { + light: number; + regular: number; + medium: number; + semiBold: number; + bold: number; + }; + monospaceFont: { + regular: number; + medium: number; + semiBold: number; + bold: number; + }; + }; + }; + zIndex: { + deepdive: number; + 'default': number; + dialog: number; + surface: number; + dropdown: number; + modal: number; + overlay: number; + popup: number; + spinner: number; + sticky: number; + toast: number; + }; + }; + }; +}; diff --git a/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json b/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json new file mode 100644 index 0000000000..78e8bf4ecb --- /dev/null +++ b/toolkit/theme/design-system/dist/kda-design-system-raw.tokens.json @@ -0,0 +1 @@ +{"$name":"Kadena Design System Tokens","$version":"0.0.1","$paths":{"baseDir":"./toolkit/theme/design-system","distDir":"./dist","buildDir":"./build","tokensDir":"./tokens","assets":{"icons":{"sourceDir":"../../../icons"},"fonts":{"sourceDir":"./assets/fonts"}}},"$modes":{"default":"light","dark":"dark"},"$fonts":[{"family":"\"Inter\", sans-serif","style":"Normal","faceStyle":"normal","weight":100,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Italic","faceStyle":"italic","weight":100,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,100&display=swap","format":"woff2"},{"family":"\"Kode Mono\", monospace","style":"Normal","faceStyle":"normal","weight":100,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100&family=Kode+Mono:wght@400..700&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Normal","faceStyle":"normal","weight":400,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Italic","faceStyle":"italic","weight":400,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,400&display=swap","format":"woff2"},{"family":"\"Kode Mono\", monospace","style":"Normal","faceStyle":"normal","weight":400,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400&family=Kode+Mono:wght@400..700&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Normal","faceStyle":"normal","weight":600,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,600&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Italic","faceStyle":"italic","weight":600,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,600&display=swap","format":"woff2"},{"family":"\"Kode Mono\", monospace","style":"Normal","faceStyle":"normal","weight":600,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,600&family=Kode+Mono:wght@400..700&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Normal","faceStyle":"normal","weight":800,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,800&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Italic","faceStyle":"italic","weight":800,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,800&display=swap","format":"woff2"},{"family":"\"Kode Mono\", monospace","style":"Normal","faceStyle":"normal","weight":800,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,800&family=Kode+Mono:wght@400..700&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Normal","faceStyle":"normal","weight":900,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,900&display=swap","format":"woff2"},{"family":"\"Inter\", sans-serif","style":"Italic","faceStyle":"italic","weight":900,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@1,14..32,900&display=swap","format":"woff2"},{"family":"\"Kode Mono\", monospace","style":"Normal","faceStyle":"normal","weight":900,"linkHref":"https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,900&family=Kode+Mono:wght@400..700&display=swap","format":"woff2"}],"$metaData":{"tokenNamespace":"kda","colorspace":"hex","fontNamespace":"font","tokens":{"css":{"mediaQuery":{"match":".","separateThemeFiles":false},"hooks":{"shortenName":{"enabled":true,"prefix":[{"find":"kda-foundation-","replace":"kda-"}],"suffix":[{"find":"-default","replace":""}]}}}},"dsNamespace":"kda"},"kda":{"explorer":{"alert":{"surface":{"text":{"default":{"$type":"color","$value":"{kda.foundation.color.text.semantic.info.default}"}}},"background":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}"},"semantic":{"positive":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n0}"},"negative":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n0}"},"warning":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n0}"},"info":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n0}"}}},"loading":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n90}"}}},"button":{"background":{"color":{"default":{"$value":"{kda.foundation.color.background.accent.primary.inverse.default}","$type":"color","$extensions":{"mode":{"dark":"{kda.foundation.color.background.accent.primary.inverse.default}"}}}}},"surface":{"color":{"default":{"$value":"{kda.foundation.color.text.base.inverse.@init}","$type":"color"}}}},"hero":{"banner":{"title":{"font":{"size":{"$type":"dimension","$value":"{kda.foundation.typography.fontSize.xl}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.typography.fontSize.2xl}"}}}},"weight":{"$type":"fontWeight","$value":"{kda.foundation.typography.weight.primaryFont.medium}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.typography.weight.primaryFont.semiBold}"}}}},"lineHeight":{"$type":"fontWeight","$value":"{kda.foundation.typography.lineHeight.xl}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.typography.lineHeight.2xl}"}}}},"color":{"name":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n100}"}}},"prefix":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha40}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n100@alpha40}"}}},"selector":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n100}"}}}}},"margin":{"gap":{"$type":"dimension","$value":"{kda.foundation.spacing.n4}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.spacing.n2}"}}}},"bottom":{"$type":"dimension","$value":"{kda.foundation.spacing.n4}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.spacing.n6}"}}}}}},"border":{"$type":"composition","$value":{"width":{"$type":"dimension","value":"{kda.foundation.border.width.hairline}"},"style":{"$type":"string","value":"solid"},"color":{"$type":"color","value":"{kda.foundation.color.accent.green}"}}},"radius":{"$type":"dimension","$value":"{kda.foundation.radius.xs}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.radius.lg}"}}}},"background":{"$type":"color","$value":"{kda.foundation.color.accent.green}"},"padding":{"$type":"dimension","$value":"{kda.foundation.spacing.n4}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":{"$type":"dimension","$value":"{kda.foundation.spacing.n8}"}}}}},"column":{"width":{"$type":"string","$value":"100%","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"auto"}}}},"gap":{"$type":"dimension","$value":"{kda.foundation.spacing.n8}"}},"button":{"dimensions":{"radius":{"$type":"dimension","$value":"{kda.foundation.radius.no}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.radius.xs}"}}}}},"default":{"background":{"$type":"color","$value":"{kda.foundation.color.background.accent.primary.inverse.default}"},"surface":{"$type":"color","$value":"{kda.foundation.color.text.base.inverse.@init}"}},"@hover":{"background":{"$type":"color","$value":"{kda.foundation.color.background.accent.primary.inverse.@active}"},"surface":{"$type":"color","$value":"{kda.foundation.color.text.base.inverse.@active}"}},"@active":{"background":{"$type":"color","$value":"{kda.foundation.color.background.accent.primary.inverse.@hover}"},"surface":{"$type":"color","$value":"{kda.foundation.color.text.base.inverse.@hover}"}}}}},"input":{"dimensions":{"radius":{"base":{"$value":"{kda.foundation.radius.no}","$type":"dimension","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.radius.xs}"}}}}}},"border":{"color":{"semantic":{"negative":{"$type":"color","$value":"{kda.foundation.color.border.semantic.negative.default}"}},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n70}","$extensions":{"mode":{"dark":"{kda.foundation.color.brand.primary.n50}"}}}}}},"navigation":{"background":{"@active":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}","$extensions":{"mode":{"dark":"{kda.foundation.color.brand.primary.n20}"}}}},"surface":{"text":{"default":{"$type":"color","$value":"{kda.foundation.color.text.brand.primary.default}","$extensions":{"mode":{"dark":"{kda.foundation.color.brand.primary.n99}"}}},"@selected":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n100}","$extensions":{"mode":{"dark":"{kda.foundation.color.brand.primary.n100}"}}}}}},"toast":{"surface":{"text":{"default":{"$type":"color","$value":"{kda.foundation.color.text.semantic.info.default}"}}},"background":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}"},"semantic":{"positive":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n0}"},"negative":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n0}"},"warning":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n0}"},"info":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n0}"}}},"loading":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n90}"}}},"top":{"bar":{"font":{"size":{"$type":"dimension","$value":"{kda.foundation.typography.fontSize.xs}","$extensions":{"breakpoint":{"(min-width: {kda.foundation.breakpoint.lg})":{"value":"{kda.foundation.typography.fontSize.xs}"}}}}}}},"widget":{"stats":{"background":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n0@alpha40}"}}},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}"},"@visited":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}"}},"surface":{"text":{"subtle":{"$type":"color","$value":"{kda.foundation.color.text.subtle.default}"},"default":{"$type":"color","$value":"{kda.foundation.color.text.brand.primary.default}"}},"icon":{"color":{"default":{"$type":"color","$value":"{kda.foundation.color.icon.brand.primary.@active}"}}}}}}},"foundation":{"border":{"width":{"hairline":{"$type":"dimension","$value":"1px"},"normal":{"$type":"dimension","$value":"2px"},"thick":{"$type":"dimension","$value":"4px"}},"hairline":{"$type":"composition","$value":{"width":"{kda.foundation.border.width.hairline}","style":"solid","color":"{kda.foundation.color.border.base.default}"},"$extensions":{"sort":["width","style","color"]}},"normal":{"$type":"composition","$value":{"width":"{kda.foundation.border.width.normal}","style":"solid","color":"{kda.foundation.color.border.base.bold}"},"$extensions":{"sort":["width","style","color"]}},"thick":{"$type":"composition","$value":{"width":"{kda.foundation.border.width.thick}","style":"solid","color":"{kda.foundation.color.border.base.bold}"},"$extensions":{"sort":["width","style","color"]}}},"breakpoint":{"$description":"Breakpoint sizes for viewports","xs":{"$type":"dimension","$value":"0rem"},"sm":{"$type":"dimension","$value":"40rem"},"md":{"$type":"dimension","$value":"48rem"},"lg":{"$type":"dimension","$value":"64rem"},"xl":{"$type":"dimension","$value":"80rem"},"xxl":{"$type":"dimension","$value":"96rem"}},"color":{"accent":{"$description":"Accent colors","blue":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n50}"},"celery":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n50}"},"green":{"$type":"color","$value":"{kda.foundation.color.palette.green.n50}"},"magenta":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n50}"},"orange":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n50}"},"red":{"$type":"color","$value":"{kda.foundation.color.palette.red.n50}"},"yellow":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n50}"},"brand":{"primary":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n50}"},"secondary":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n50}"},"tertiary":{"$type":"color","$value":"{kda.foundation.color.brand.tertiary.n50}"},"tint":{"primary":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n20}"},"secondary":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n50}"},"tertiary":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n50}"}}},"semantic":{"info":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n50}"},"warning":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n50}"},"positive":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n50}"},"negative":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n50}"}}},"background":{"base":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}"},"warm":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n1}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n10}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n5@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n5}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha10}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}"},"warm":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n99}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n90}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n95@alpha80}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha10}"}}},"layer":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n5@alpha80}"}}},"solid":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n5}"}}}},"overlay":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha95}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n5@alpha95}"}}},"context":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha95}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n5@alpha95}"}}}},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n5}"}}}},"surface":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n99@alpha6}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n99@alpha6}"}}},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n99@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n99@alpha80}"}}}},"subtle":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n99@alpha3}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n0@alpha20}"}}},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n99@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n99@alpha80}"}}}}}},"surfaceHighContrast":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha90}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n0@alpha90}"}}},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha90}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n100@alpha90}"}}}}},"brand":{"primary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n5}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n1}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n0}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n10}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n20}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n30}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n95}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n99}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n100}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n90}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n70}"}}},"secondary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n5}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n1}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n0}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n5}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n10}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n20}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n95}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n99}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n100}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n90}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n80}"}}}},"accent":{"primary":{"default":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n20@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n10}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n90}","$extensions":{"mode":{"dark":"{kda.foundation.color.palette.aqua.n80}"}}},"@hover":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n80@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n80}"}}},"secondary":{"default":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n50}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n60}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n60}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n50}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n40}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n40}"}}},"tertiary":{"default":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n50}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n60}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n60}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n50}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n40}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n40}"}}}},"semantic":{"positive":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n20}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n20@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n0}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n20@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n10}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n80}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n80@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n100}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n80@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n90}"}}},"negative":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n20}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n20@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n0}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n20@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n10}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n80}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n80@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n100}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n80@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n90}"}}},"warning":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n20}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n20@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n0}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n20@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n10}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n80}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n80@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n100}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n80@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n90}"}}},"info":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n20}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n20@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n0}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n20@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n10}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n80}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n80@alpha20}"},"subtlest":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n100}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n80@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n90}"}}}},"input":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n1@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n5@alpha80}"}}},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n10}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n20@alpha80}"}}},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n5@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n5}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha10}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n80@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n80@alpha80}"}}},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n90}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n95@alpha80}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n95}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha10}"}}},"skeleton":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n10}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n20@alpha80}"}}}},"table":{"row":{"default":{"$type":"color","$value":"{kda.foundation.color.background.layer.default}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n1@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n10@alpha80}"}}}}}},"border":{"base":{"subtle":{"$type":"color","$value":"{kda.foundation.color.neutral.n10@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n99@alpha10}"}}},"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n90@alpha25}"},"bold":{"$type":"color","$value":"{kda.foundation.color.neutral.n99@alpha50}"},"boldest":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha70}"},"high-contrast":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n20}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n80}"},"inverse":{"subtle":{"$type":"color","$value":"{kda.foundation.color.neutral.n1@alpha10}"},"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n1@alpha20}"},"bold":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha40}"},"boldest":{"$type":"color","$value":"{kda.foundation.color.neutral.n1@alpha50}"},"high-contrast":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n20}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n80}"}}},"brand":{"primary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n40}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n60}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n70}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n80}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n60}"}}},"secondary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n40}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n60}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n70}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n80}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n60}"}}}},"semantic":{"positive":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n60}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n20}","$extensions":{"mode":{"dark":"{kda.foundation.color.semantic.positive.n5}"}}},"@disabled":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n60}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n40}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n20}"}}},"negative":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n60}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n20}","$extensions":{"mode":{"dark":"{kda.foundation.color.semantic.negative.n5}"}}},"@disabled":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n60}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n40}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n20}"}}},"warning":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n60}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n20}","$extensions":{"mode":{"dark":"{kda.foundation.color.semantic.warning.n5}"}}},"@disabled":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n60}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n40}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n20}"}}},"info":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n60}"},"subtle":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n20}","$extensions":{"mode":{"dark":"{kda.foundation.color.semantic.info.n5}"}}},"@disabled":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n60}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n40}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n20}"}}}},"tint":{"outline":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n60}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n80@alpha80}","$extensions":{"mode":{"dark":"{kda.foundation.color.palette.aqua.n20@alpha80}"}}}},"overlay":{"context":{"$type":"color","$value":"{kda.foundation.color.neutral.n20@alpha80}"}}},"brand":{"primary":{"n0":{"$type":"color","$value":"{kda.foundation.color.palette.green.n0}"},"n1":{"$type":"color","$value":"{kda.foundation.color.palette.green.n1}"},"n5":{"$type":"color","$value":"{kda.foundation.color.palette.green.n5}"},"n10":{"$type":"color","$value":"{kda.foundation.color.palette.green.n10}"},"n20":{"$type":"color","$value":"{kda.foundation.color.palette.green.n20}"},"n30":{"$type":"color","$value":"{kda.foundation.color.palette.green.n30}"},"n40":{"$type":"color","$value":"{kda.foundation.color.palette.green.n40}"},"n50":{"$type":"color","$value":"{kda.foundation.color.palette.green.n50}"},"n60":{"$type":"color","$value":"{kda.foundation.color.palette.green.n60}"},"n70":{"$type":"color","$value":"{kda.foundation.color.palette.green.n70}"},"n80":{"$type":"color","$value":"{kda.foundation.color.palette.green.n80}"},"n90":{"$type":"color","$value":"{kda.foundation.color.palette.green.n90}"},"n95":{"$type":"color","$value":"{kda.foundation.color.palette.green.n95}"},"n99":{"$type":"color","$value":"{kda.foundation.color.palette.green.n99}"},"n100":{"$type":"color","$value":"{kda.foundation.color.palette.green.n100}"}},"secondary":{"n0":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n0}"},"n1":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n1}"},"n5":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n5}"},"n10":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n10}"},"n20":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n20}"},"n30":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n30}"},"n40":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n40}"},"n50":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n50}"},"n60":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n60}"},"n70":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n70}"},"n80":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n80}"},"n90":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n90}"},"n95":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n95}"},"n99":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n99}"},"n100":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n100}"}},"tertiary":{"n0":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n0}"},"n1":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n1}"},"n5":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n5}"},"n10":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n10}"},"n20":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n20}"},"n30":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n30}"},"n40":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n40}"},"n50":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n50}"},"n60":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n60}"},"n70":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n70}"},"n80":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n80}"},"n90":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n90}"},"n95":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n95}"},"n99":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n99}"},"n100":{"$type":"color","$value":"{kda.foundation.color.palette.orange.n100}"}},"key":{"primary":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n50}"},"secondary":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n99}","$extensions":{"mode":{"dark":"{kda.foundation.color.brand.secondary.n1}"}}},"tertiary":{"$type":"color","$value":"{kda.foundation.color.brand.tertiary.n50}"},"accent":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n50}"},"neutralwarm":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n1}"},"white":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n99}"}}},"black":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutral.n1}"}}}}},"gradient":{"base":{"subtle":{"$type":"composition","$value":{"prefix":"linear-gradient(","data":{"$type":"composition","value":{"angle":"90deg","color1":{"$type":"color","value":"{kda.foundation.color.background.base.default}"},"color2":{"$type":"color","value":"{kda.foundation.color.neutral.n1@alpha0}"}},"$extensions":{"delimiter":{"character":", "}}},"suffix":")"},"$extensions":{"delimiter":{"character":" "}}}}},"icon":{"base":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n95}"},"bold":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}"},"@init":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n99@alpha50}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha20}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n5}"},"bold":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}"},"@init":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n1@alpha50}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha20}"}}},"brand":{"logo":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n50}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"mode":{"dark":"{kda.foundation.color.neutralwarm.n99}"}}}}},"primary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n80}"},"bold":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"}}},"secondary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n80}"},"bold":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"}}}},"semantic":{"positive":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n80}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"}}},"negative":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n80}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"}}},"warning":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n80}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"}}},"info":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n80}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n70}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n60}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n20}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n30}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n40}"},"@active":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n50}"},"@disabled":{"$type":"color","$value":"{kda.foundation.color.neutral.n30}"}}}},"product":{"spirekey":{"animation":{"start":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n50}"},"step1":{"$type":"color","$value":"#4AA688"},"step2":{"$type":"color","$value":"#4BBD97"},"step3":{"$type":"color","$value":"#4BD3A6"},"end":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n30}","$extensions":{"mode":{"dark":"{kda.foundation.color.palette.aqua.n70}"}}}}}}},"link":{"base":{"default":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n90}","$extensions":{"mode":{"dark":"{kda.foundation.color.palette.aqua.n50}"}}},"@hover":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n100}","$extensions":{"mode":{"dark":"{kda.foundation.color.palette.aqua.n70}"}}},"@focus":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n100}","$extensions":{"mode":{"dark":"{kda.foundation.color.palette.aqua.n70}"}}},"@visited":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n80}","$extensions":{"mode":{"dark":"{kda.foundation.color.palette.magenta.n80}"}}}},"brand":{"primary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n70}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n80}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n60}"},"@visited":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n80}"}},"secondary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n70}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n80}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n60}"},"@visited":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n80}"}}},"semantic":{"positive":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n80}"},"@visited":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n80}"}},"negative":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n80}"},"@visited":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n80}"}},"warning":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n80}"},"@visited":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n80}"}},"info":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n80}"},"@visited":{"$type":"color","$value":"{kda.foundation.color.palette.magenta.n80}"}}}},"neutral":{"$description":"Neutral Gray colors","n0":{"$type":"color","$value":"#FFFFFF","$extensions":{"mode":{"dark":"#000000"},"generators":[{"type":"alpha","value":{"@alpha0":0,"@alpha10":10,"@alpha20":20,"@alpha40":40,"@alpha70":70,"@alpha80":80,"@alpha90":90,"@alpha95":95}}]}},"n0@alpha0":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":0}},"n0@alpha10":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":10}},"n0@alpha20":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":20}},"n0@alpha40":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":40}},"n0@alpha70":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":70}},"n0@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":80}},"n0@alpha90":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":90}},"n0@alpha95":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}","$extensions":{"alpha":95}},"n1":{"$type":"color","$value":"#F5F5F5","$extensions":{"mode":{"dark":"#020E1B"},"generators":[{"type":"alpha","value":{"@alpha0":0,"@alpha1":1,"@alpha3":3,"@alpha4":4,"@alpha5":5,"@alpha6":6,"@alpha10":10,"@alpha20":20,"@alpha30":30,"@alpha40":40,"@alpha50":50,"@alpha80":80,"@alpha90":90}}]}},"n1@alpha0":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":0}},"n1@alpha1":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":1}},"n1@alpha3":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":3}},"n1@alpha4":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":4}},"n1@alpha5":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":5}},"n1@alpha6":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":6}},"n1@alpha10":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":10}},"n1@alpha20":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":20}},"n1@alpha30":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":30}},"n1@alpha40":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":40}},"n1@alpha50":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":50}},"n1@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":80}},"n1@alpha90":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}","$extensions":{"alpha":90}},"n5":{"$type":"color","$value":"#E4E5E5","$extensions":{"mode":{"dark":"#131E2B"},"generators":[{"type":"alpha","value":{"@alpha80":80,"@alpha95":95}}]}},"n5@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n5}","$extensions":{"alpha":80}},"n5@alpha95":{"$type":"color","$value":"{kda.foundation.color.neutral.n5}","$extensions":{"alpha":95}},"n10":{"$type":"color","$value":"#D2D4D6","$extensions":{"mode":{"dark":"#252F3A"},"generators":[{"type":"alpha","value":{"@alpha80":80}}]}},"n10@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n10}","$extensions":{"alpha":80}},"n15":{"$type":"color","$value":"#C1C4C6","$extensions":{"mode":{"dark":"#36404A"}}},"n20":{"$type":"color","$value":"#B0B3B7","$extensions":{"mode":{"dark":"#475059"},"generators":[{"type":"alpha","value":{"@alpha80":80}}]}},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n20}","$extensions":{"alpha":80}},"n30":{"$type":"color","$value":"#9EA3A7","$extensions":{"mode":{"dark":"#596069"}}},"n40":{"$type":"color","$value":"#8D9298","$extensions":{"mode":{"dark":"#6A7178"}}},"n50":{"$type":"color","$value":"#7C8288","$extensions":{"mode":{"dark":"#7C8288"}}},"n60":{"$type":"color","$value":"#6A7178","$extensions":{"mode":{"dark":"#8D9298"}}},"n70":{"$type":"color","$value":"#596069","$extensions":{"mode":{"dark":"#9EA3A7"}}},"n80":{"$type":"color","$value":"#475059","$extensions":{"mode":{"dark":"#B0B3B7"},"generators":[{"type":"alpha","value":{"@alpha80":80}}]}},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n80}","$extensions":{"alpha":80}},"n85":{"$type":"color","$value":"#36404A","$extensions":{"mode":{"dark":"#C1C4C6"}}},"n90":{"$type":"color","$value":"#252F3A","$extensions":{"mode":{"dark":"#D2D4D6"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha25":25}}]}},"n90@alpha20":{"$type":"color","$value":"{kda.foundation.color.neutral.n90}","$extensions":{"alpha":20}},"n90@alpha25":{"$type":"color","$value":"{kda.foundation.color.neutral.n90}","$extensions":{"alpha":25}},"n95":{"$type":"color","$value":"#131E2B","$extensions":{"mode":{"dark":"#E4E5E5"},"generators":[{"type":"alpha","value":{"@alpha80":80,"@alpha95":95}}]}},"n95@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n95}","$extensions":{"alpha":80}},"n95@alpha95":{"$type":"color","$value":"{kda.foundation.color.neutral.n95}","$extensions":{"alpha":95}},"n99":{"$type":"color","$value":"#020E1B","$extensions":{"mode":{"dark":"#F5F5F5"},"generators":[{"type":"alpha","value":{"@alpha0":0,"@alpha1":1,"@alpha3":3,"@alpha4":4,"@alpha5":5,"@alpha6":6,"@alpha10":10,"@alpha20":20,"@alpha30":30,"@alpha40":40,"@alpha50":50,"@alpha80":80,"@alpha90":90}}]}},"n99@alpha0":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":0}},"n99@alpha1":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":1}},"n99@alpha3":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":3}},"n99@alpha4":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":4}},"n99@alpha5":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":5}},"n99@alpha6":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":6}},"n99@alpha10":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":10}},"n99@alpha20":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":20}},"n99@alpha30":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":30}},"n99@alpha40":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":40}},"n99@alpha50":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":50}},"n99@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":80}},"n99@alpha90":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}","$extensions":{"alpha":90}},"n100":{"$type":"color","$value":"#000000","$extensions":{"mode":{"dark":"#FFFFFF"},"generators":[{"type":"alpha","value":{"@alpha0":0,"@alpha10":10,"@alpha20":20,"@alpha40":40,"@alpha70":70,"@alpha80":80,"@alpha90":90,"@alpha95":95}}]}},"n100@alpha0":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":0}},"n100@alpha10":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":10}},"n100@alpha20":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":20}},"n100@alpha40":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":40}},"n100@alpha70":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":70}},"n100@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":80}},"n100@alpha90":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":90}},"n100@alpha95":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}","$extensions":{"alpha":95}}},"neutralwarm":{"$description":"Neutral Warm colors","n0":{"$type":"color","$value":"#FBFAF9","$extensions":{"mode":{"dark":"#050505"}}},"n1":{"$type":"color","$value":"#F0EAE6","$extensions":{"mode":{"dark":"#0F0F0F"},"generators":[{"type":"alpha","value":{"@alpha30":30,"@alpha60":60,"@alpha80":80,"@alpha95":95}}]}},"n1@alpha30":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n1}","$extensions":{"alpha":30}},"n1@alpha60":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n1}","$extensions":{"alpha":60}},"n1@alpha80":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n1}","$extensions":{"alpha":80}},"n1@alpha95":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n1}","$extensions":{"alpha":95}},"n5":{"$type":"color","$value":"#DDD8D4","$extensions":{"mode":{"dark":"#222121"}}},"n10":{"$type":"color","$value":"#CBC6C2","$extensions":{"mode":{"dark":"#353433"}}},"n20":{"$type":"color","$value":"#B8B3B0","$extensions":{"mode":{"dark":"#474645"}}},"n30":{"$type":"color","$value":"#A5A19E","$extensions":{"mode":{"dark":"#5A5857"}}},"n40":{"$type":"color","$value":"#928F8C","$extensions":{"mode":{"dark":"#6D6A69"}}},"n50":{"$type":"color","$value":"#807D7B","$extensions":{"mode":{"dark":"#807D7B"}}},"n60":{"$type":"color","$value":"#6D6A69","$extensions":{"mode":{"dark":"#928F8C"}}},"n70":{"$type":"color","$value":"#5A5857","$extensions":{"mode":{"dark":"#A5A19E"}}},"n80":{"$type":"color","$value":"#474645","$extensions":{"mode":{"dark":"#B8B3B0"}}},"n90":{"$type":"color","$value":"#353433","$extensions":{"mode":{"dark":"#CBC6C2"}}},"n95":{"$type":"color","$value":"#222121","$extensions":{"mode":{"dark":"#DDD8D4"}}},"n99":{"$type":"color","$value":"#0F0F0F","$extensions":{"mode":{"dark":"#F0EAE6"}}},"n100":{"$type":"color","$value":"#050505","$extensions":{"mode":{"dark":"#FBFAF9"}}}},"palette":{"aqua":{"$description":"Kadena Digital Green Color Palette Aqua","n0":{"$type":"color","$value":"#F0FFFA","$extensions":{"mode":{"dark":"#0A1F18"}}},"n1":{"$type":"color","$value":"#C9FFED","$extensions":{"mode":{"dark":"#113529"}}},"n5":{"$type":"color","$value":"#A1FFE0","$extensions":{"mode":{"dark":"#184C3B"}}},"n10":{"$type":"color","$value":"#7AFFD3","$extensions":{"mode":{"dark":"#20624C"}}},"n20":{"$type":"color","$value":"#52FFC6","$extensions":{"mode":{"dark":"#27795E"},"generators":[{"type":"alpha","value":{"@alpha80":80}}]}},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n20}","$extensions":{"alpha":80}},"n30":{"$type":"color","$value":"#4BE9B5","$extensions":{"mode":{"dark":"#2E8F6F"}}},"n40":{"$type":"color","$value":"#44D2A3","$extensions":{"mode":{"dark":"#35A580"}}},"n50":{"$type":"color","$value":"#3CBC92","$extensions":{"mode":{"dark":"#3CBC92"}}},"n60":{"$type":"color","$value":"#35A580","$extensions":{"mode":{"dark":"#44D2A3"}}},"n70":{"$type":"color","$value":"#2E8F6F","$extensions":{"mode":{"dark":"#4BE9B5"}}},"n80":{"$type":"color","$value":"#27795E","$extensions":{"mode":{"dark":"#52FFC6"},"generators":[{"type":"alpha","value":{"@alpha80":80}}]}},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.aqua.n80}","$extensions":{"alpha":80}},"n90":{"$type":"color","$value":"#20624C","$extensions":{"mode":{"dark":"#7AFFD3"}}},"n95":{"$type":"color","$value":"#184C3B","$extensions":{"mode":{"dark":"#A1FFE0"}}},"n99":{"$type":"color","$value":"#113529","$extensions":{"mode":{"dark":"#C9FFED"}}},"n100":{"$type":"color","$value":"#0A1F18","$extensions":{"mode":{"dark":"#F0FFFA"}}}},"blue":{"$description":"Blue colors","n0":{"$type":"color","$value":"#F0F8FF","$extensions":{"mode":{"dark":"#06101A"}}},"n1":{"$type":"color","$value":"#D6EBFF","$extensions":{"mode":{"dark":"#0B1D2E"}}},"n5":{"$type":"color","$value":"#BBDBF9","$extensions":{"mode":{"dark":"#112C46"}}},"n10":{"$type":"color","$value":"#A0CBF4","$extensions":{"mode":{"dark":"#194268"}}},"n20":{"$type":"color","$value":"#86BCEE","$extensions":{"mode":{"dark":"#205586"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n20}","$extensions":{"alpha":20}},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n20}","$extensions":{"alpha":80}},"n30":{"$type":"color","$value":"#6BACE8","$extensions":{"mode":{"dark":"#2767A3"}}},"n40":{"$type":"color","$value":"#509CE3","$extensions":{"mode":{"dark":"#2E7AC0"}}},"n50":{"$type":"color","$value":"#358CDD","$extensions":{"mode":{"dark":"#358CDD"}}},"n60":{"$type":"color","$value":"#2E7AC0","$extensions":{"mode":{"dark":"#509CE3"}}},"n70":{"$type":"color","$value":"#2767A3","$extensions":{"mode":{"dark":"#6BACE8"}}},"n80":{"$type":"color","$value":"#205586","$extensions":{"mode":{"dark":"#86BCEE"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n80}","$extensions":{"alpha":20}},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n80}","$extensions":{"alpha":80}},"n90":{"$type":"color","$value":"#194268","$extensions":{"mode":{"dark":"#A0CBF4"}}},"n95":{"$type":"color","$value":"#112C46","$extensions":{"mode":{"dark":"#BBDBF9"}}},"n99":{"$type":"color","$value":"#0B1D2E","$extensions":{"mode":{"dark":"#D6EBFF"}}},"n100":{"$type":"color","$value":"#06101A","$extensions":{"mode":{"dark":"#F0F8FF"}}}},"celery":{"$description":"Green Color Palette","n0":{"$type":"color","$value":"#E9FCE3","$extensions":{"mode":{"dark":"#001A04"}}},"n1":{"$type":"color","$value":"#cdfcbf","$extensions":{"mode":{"dark":"#003007"}}},"n5":{"$type":"color","$value":"#aef69d","$extensions":{"mode":{"dark":"#00400a"}}},"n10":{"$type":"color","$value":"#96ee85","$extensions":{"mode":{"dark":"#00530d"}}},"n20":{"$type":"color","$value":"#72e06a","$extensions":{"mode":{"dark":"#00670f"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n20}","$extensions":{"alpha":20}},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n20}","$extensions":{"alpha":80}},"n30":{"$type":"color","$value":"#4ecf50","$extensions":{"mode":{"dark":"#007c0f"}}},"n40":{"$type":"color","$value":"#27bb36","$extensions":{"mode":{"dark":"#009112"}}},"n50":{"$type":"color","$value":"#07a721","$extensions":{"mode":{"dark":"#07a721"}}},"n60":{"$type":"color","$value":"#009112","$extensions":{"mode":{"dark":"#27bb36"}}},"n70":{"$type":"color","$value":"#007c0f","$extensions":{"mode":{"dark":"#4ecf50"}}},"n80":{"$type":"color","$value":"#00670f","$extensions":{"mode":{"dark":"#72e06a"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n80}","$extensions":{"alpha":20}},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n80}","$extensions":{"alpha":80}},"n90":{"$type":"color","$value":"#00530d","$extensions":{"mode":{"dark":"#96ee85"}}},"n95":{"$type":"color","$value":"#00400a","$extensions":{"mode":{"dark":"#aef69d"}}},"n99":{"$type":"color","$value":"#003007","$extensions":{"mode":{"dark":"#cdfcbf"}}},"n100":{"$type":"color","$value":"#001A04","$extensions":{"mode":{"dark":"#E9FCE3"}}}},"green":{"$description":"Kadena Green Color Palette","n0":{"$type":"color","$value":"#E9F8EF","$extensions":{"mode":{"dark":"#061A10"}}},"n1":{"$type":"color","$value":"#CEF8E0","$extensions":{"mode":{"dark":"#0A2E1D"}}},"n5":{"$type":"color","$value":"#B8E7CF","$extensions":{"mode":{"dark":"#153E2C"}}},"n10":{"$type":"color","$value":"#A2D5BE","$extensions":{"mode":{"dark":"#1F4F3C"}}},"n20":{"$type":"color","$value":"#8CC4AD","$extensions":{"mode":{"dark":"#2A5F4B"}}},"n30":{"$type":"color","$value":"#76B39B","$extensions":{"mode":{"dark":"#356F5A"}}},"n40":{"$type":"color","$value":"#60A18A","$extensions":{"mode":{"dark":"#3F806A"}}},"n50":{"$type":"color","$value":"#4A9079","$extensions":{"mode":{"dark":"#4A9079"}}},"n60":{"$type":"color","$value":"#3F806A","$extensions":{"mode":{"dark":"#60A18A"}}},"n70":{"$type":"color","$value":"#356F5A","$extensions":{"mode":{"dark":"#76B39B"}}},"n80":{"$type":"color","$value":"#2A5F4B","$extensions":{"mode":{"dark":"#8CC4AD"}}},"n90":{"$type":"color","$value":"#1F4F3C","$extensions":{"mode":{"dark":"#A2D5BE"}}},"n95":{"$type":"color","$value":"#153E2C","$extensions":{"mode":{"dark":"#B8E7CF"}}},"n99":{"$type":"color","$value":"#0A2E1D","$extensions":{"mode":{"dark":"#CEF8E0"}}},"n100":{"$type":"color","$value":"#061A10","$extensions":{"mode":{"dark":"#E9F8EF"}}}},"magenta":{"$description":"Kadena Magenta Color Palette","n0":{"$type":"color","$value":"#FFF7FA","$extensions":{"mode":{"dark":"#470820"}}},"n1":{"$type":"color","$value":"#FFEAF1","$extensions":{"mode":{"dark":"#660B2E"}}},"n5":{"$type":"color","$value":"#FBC7DA","$extensions":{"mode":{"dark":"#7B0D38"}}},"n10":{"$type":"color","$value":"#F6A4C3","$extensions":{"mode":{"dark":"#901041"}}},"n20":{"$type":"color","$value":"#F282AD","$extensions":{"mode":{"dark":"#A5124B"}}},"n30":{"$type":"color","$value":"#ED5F96","$extensions":{"mode":{"dark":"#BA1455"}}},"n40":{"$type":"color","$value":"#E93C7F","$extensions":{"mode":{"dark":"#CF175E"}}},"n50":{"$type":"color","$value":"#E41968","$extensions":{"mode":{"dark":"#E41968"}}},"n60":{"$type":"color","$value":"#CF175E","$extensions":{"mode":{"dark":"#E93C7F"}}},"n70":{"$type":"color","$value":"#BA1455","$extensions":{"mode":{"dark":"#ED5F96"}}},"n80":{"$type":"color","$value":"#A5124B","$extensions":{"mode":{"dark":"#F282AD"}}},"n90":{"$type":"color","$value":"#901041","$extensions":{"mode":{"dark":"#F6A4C3"}}},"n95":{"$type":"color","$value":"#7B0D38","$extensions":{"mode":{"dark":"#FBC7DA"}}},"n99":{"$type":"color","$value":"#660B2E","$extensions":{"mode":{"dark":"#FFEAF1"}}},"n100":{"$type":"color","$value":"#470820","$extensions":{"mode":{"dark":"#FFF7FA"}}}},"orange":{"$description":"Kadena Orange Color Palette","n0":{"$type":"color","$value":"#FFF7EB","$extensions":{"mode":{"dark":"#290E01"}}},"n1":{"$type":"color","$value":"#FFECCC","$extensions":{"mode":{"dark":"#491901"}}},"n5":{"$type":"color","$value":"#FFDFAD","$extensions":{"mode":{"dark":"#612300"}}},"n10":{"$type":"color","$value":"#FDD291","$extensions":{"mode":{"dark":"#7A2F00"}}},"n20":{"$type":"color","$value":"#FFBB63","$extensions":{"mode":{"dark":"#953D00"}}},"n30":{"$type":"color","$value":"#F5A655","$extensions":{"mode":{"dark":"#B14C00"}}},"n40":{"$type":"color","$value":"#EC9046","$extensions":{"mode":{"dark":"#CB5D00"}}},"n50":{"$type":"color","$value":"#E27B38","$extensions":{"mode":{"dark":"#E27B38"}}},"n60":{"$type":"color","$value":"#CB5D00","$extensions":{"mode":{"dark":"#EC9046"}}},"n70":{"$type":"color","$value":"#B14C00","$extensions":{"mode":{"dark":"#F5A655"}}},"n80":{"$type":"color","$value":"#953D00","$extensions":{"mode":{"dark":"#FFBB63"}}},"n90":{"$type":"color","$value":"#7A2F00","$extensions":{"mode":{"dark":"#FDD291"}}},"n95":{"$type":"color","$value":"#612300","$extensions":{"mode":{"dark":"#FFDFAD"}}},"n99":{"$type":"color","$value":"#491901","$extensions":{"mode":{"dark":"#FFECCC"}}},"n100":{"$type":"color","$value":"#290E01","$extensions":{"mode":{"dark":"#FFF7EB"}}}},"red":{"$description":"Red colors","n0":{"$type":"color","$value":"#FFF5F5","$extensions":{"mode":{"dark":"#330000"}}},"n1":{"$type":"color","$value":"#FFEBE7","$extensions":{"mode":{"dark":"#590000"}}},"n5":{"$type":"color","$value":"#FFDDD6","$extensions":{"mode":{"dark":"#740000"}}},"n10":{"$type":"color","$value":"#FFCDC3","$extensions":{"mode":{"dark":"#930000"}}},"n20":{"$type":"color","$value":"#FFB7A9","$extensions":{"mode":{"dark":"#B40000"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.red.n20}","$extensions":{"alpha":20}},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.red.n20}","$extensions":{"alpha":80}},"n30":{"$type":"color","$value":"#FF9B88","$extensions":{"mode":{"dark":"#D31510"}}},"n40":{"$type":"color","$value":"#FF7C65","$extensions":{"mode":{"dark":"#EA3829"}}},"n50":{"$type":"color","$value":"#F75C46","$extensions":{"mode":{"dark":"#F75C46"}}},"n60":{"$type":"color","$value":"#EA3829","$extensions":{"mode":{"dark":"#FF7C65"}}},"n70":{"$type":"color","$value":"#D31510","$extensions":{"mode":{"dark":"#FF9B88"}}},"n80":{"$type":"color","$value":"#B40000","$extensions":{"mode":{"dark":"#FFB7A9"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.red.n80}","$extensions":{"alpha":20}},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.red.n80}","$extensions":{"alpha":80}},"n90":{"$type":"color","$value":"#930000","$extensions":{"mode":{"dark":"#FFCDC3"}}},"n95":{"$type":"color","$value":"#740000","$extensions":{"mode":{"dark":"#FFDDD6"}}},"n99":{"$type":"color","$value":"#590000","$extensions":{"mode":{"dark":"#FFEBE7"}}},"n100":{"$type":"color","$value":"#330000","$extensions":{"mode":{"dark":"#FFF5F5"}}}},"yellow":{"$description":"Yellow colors","n0":{"$type":"color","$value":"#FBF8DD","$extensions":{"mode":{"dark":"#1A1100"}}},"n1":{"$type":"color","$value":"#FBF198","$extensions":{"mode":{"dark":"#362500"}}},"n5":{"$type":"color","$value":"#F8E750","$extensions":{"mode":{"dark":"#483300"}}},"n10":{"$type":"color","$value":"#F8D904","$extensions":{"mode":{"dark":"#5B4300"}}},"n20":{"$type":"color","$value":"#E8C600","$extensions":{"mode":{"dark":"#705300"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n20}","$extensions":{"alpha":20}},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n20}","$extensions":{"alpha":80}},"n30":{"$type":"color","$value":"#D7B300","$extensions":{"mode":{"dark":"#856600"}}},"n40":{"$type":"color","$value":"#C49F00","$extensions":{"mode":{"dark":"#9B7800"}}},"n50":{"$type":"color","$value":"#B08C00","$extensions":{"mode":{"dark":"#B08C00"}}},"n60":{"$type":"color","$value":"#9B7800","$extensions":{"mode":{"dark":"#C49F00"}}},"n70":{"$type":"color","$value":"#856600","$extensions":{"mode":{"dark":"#D7B300"}}},"n80":{"$type":"color","$value":"#705300","$extensions":{"mode":{"dark":"#E8C600"},"generators":[{"type":"alpha","value":{"@alpha20":20,"@alpha80":80}}]}},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n80}","$extensions":{"alpha":20}},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n80}","$extensions":{"alpha":80}},"n90":{"$type":"color","$value":"#5B4300","$extensions":{"mode":{"dark":"#F8D904"}}},"n95":{"$type":"color","$value":"#483300","$extensions":{"mode":{"dark":"#F8E750"}}},"n99":{"$type":"color","$value":"#362500","$extensions":{"mode":{"dark":"#FBF198"}}},"n100":{"$type":"color","$value":"#1A1100","$extensions":{"mode":{"dark":"#FBF8DD"}}}}},"categorical":{"$description":"Colors intended for data visualisations. Adhere to the specified numerical order.","category1":{"default":{"$type":"color","$description":"Visualisation Color 1","$value":"#2898BD","$extensions":{"mode":{"dark":"#2898BD"}}},"@hover":{"$type":"color","$description":"Visualisation Color 1 Hover State","$value":"#227D9B","$extensions":{"mode":{"dark":"#42B2D7"}}}},"category2":{"default":{"$type":"color","$description":"Visualisation Color 2","$value":"#5E4DB2","$extensions":{"mode":{"dark":"#B8ACF6"}}},"@hover":{"$type":"color","$description":"Visualisation Color 2 Hover State","$value":"#352C63","$extensions":{"mode":{"dark":"#DFD8FD"}}}},"category3":{"default":{"$type":"color","$description":"Visualisation Color 3","$value":"#E56910","$extensions":{"mode":{"dark":"#E56910"}}},"@hover":{"$type":"color","$description":"Visualisation Color 3 Hover State","$value":"#C25100","$extensions":{"mode":{"dark":"#F38A3F"}}}},"category4":{"default":{"$type":"color","$description":"Visualisation Color 4","$value":"#943D73","$extensions":{"mode":{"dark":"#F797D2"}}},"@hover":{"$type":"color","$description":"Visualisation Color 4 Hover State","$value":"#50253F","$extensions":{"mode":{"dark":"#FDD0EC"}}}},"category5":{"default":{"$type":"color","$description":"Visualisation Color 5","$value":"#09326C","$extensions":{"mode":{"dark":"#CCE0FF"}}},"@hover":{"$type":"color","$description":"Visualisation Color 5 Hover State","$value":"#1C2B41","$extensions":{"mode":{"dark":"#E9F2FF"}}}},"category6":{"default":{"$type":"color","$description":"Visualisation Color 6","$value":"#8F7EE7","$extensions":{"mode":{"dark":"#8270DB"}}},"@hover":{"$type":"color","$description":"Visualisation Color 6 Hover State","$value":"#8270DB","$extensions":{"mode":{"dark":"#8F7EE7"}}}},"category7":{"default":{"$type":"color","$description":"Visualisation Color 7","$value":"#50253F","$extensions":{"mode":{"dark":"#FDD0EC"}}},"@hover":{"$type":"color","$description":"Visualisation Color 7 Hover State","$value":"#3D2232","$extensions":{"mode":{"dark":"#FFECF8"}}}},"category8":{"default":{"$type":"color","$description":"Visualisation Color 8","$value":"#A54800","$extensions":{"mode":{"dark":"#FEC195"}}},"@hover":{"$type":"color","$description":"Visualisation Color 8 Hover State","$value":"#702E00","$extensions":{"mode":{"dark":"#FEDEC8"}}}}},"semantic":{"info":{"n0":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n0}"},"n1":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n1}"},"n5":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n5}"},"n10":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n10}"},"n20":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n20}"},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n20@alpha20}"},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n20@alpha80}"},"n30":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n30}"},"n40":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n40}"},"n50":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n50}"},"n60":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n60}"},"n70":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n70}"},"n80":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n80}"},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n80@alpha20}"},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n80@alpha80}"},"n90":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n90}"},"n95":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n95}"},"n99":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n99}"},"n100":{"$type":"color","$value":"{kda.foundation.color.palette.blue.n100}"}},"negative":{"n0":{"$type":"color","$value":"{kda.foundation.color.palette.red.n0}"},"n1":{"$type":"color","$value":"{kda.foundation.color.palette.red.n1}"},"n5":{"$type":"color","$value":"{kda.foundation.color.palette.red.n5}"},"n10":{"$type":"color","$value":"{kda.foundation.color.palette.red.n10}"},"n20":{"$type":"color","$value":"{kda.foundation.color.palette.red.n20}"},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.red.n20@alpha20}"},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.red.n20@alpha80}"},"n30":{"$type":"color","$value":"{kda.foundation.color.palette.red.n30}"},"n40":{"$type":"color","$value":"{kda.foundation.color.palette.red.n40}"},"n50":{"$type":"color","$value":"{kda.foundation.color.palette.red.n50}"},"n60":{"$type":"color","$value":"{kda.foundation.color.palette.red.n60}"},"n70":{"$type":"color","$value":"{kda.foundation.color.palette.red.n70}"},"n80":{"$type":"color","$value":"{kda.foundation.color.palette.red.n80}"},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.red.n80@alpha20}"},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.red.n80@alpha80}"},"n90":{"$type":"color","$value":"{kda.foundation.color.palette.red.n90}"},"n95":{"$type":"color","$value":"{kda.foundation.color.palette.red.n95}"},"n99":{"$type":"color","$value":"{kda.foundation.color.palette.red.n99}"},"n100":{"$type":"color","$value":"{kda.foundation.color.palette.red.n100}"}},"positive":{"n0":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n0}"},"n1":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n1}"},"n5":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n5}"},"n10":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n10}"},"n20":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n20}"},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n20@alpha20}"},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n20@alpha80}"},"n30":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n30}"},"n40":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n40}"},"n50":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n50}"},"n60":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n60}"},"n70":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n70}"},"n80":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n80}"},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n80@alpha20}"},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n80@alpha80}"},"n90":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n90}"},"n95":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n95}"},"n99":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n99}"},"n100":{"$type":"color","$value":"{kda.foundation.color.palette.celery.n100}"}},"warning":{"n0":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n0}"},"n1":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n1}"},"n5":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n5}"},"n10":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n10}"},"n20":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n20}"},"n20@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n20@alpha20}"},"n20@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n20@alpha80}"},"n30":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n30}"},"n40":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n40}"},"n50":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n50}"},"n60":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n60}"},"n70":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n70}"},"n80":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n80}"},"n80@alpha20":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n80@alpha20}"},"n80@alpha80":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n80@alpha80}"},"n90":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n90}"},"n95":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n95}"},"n99":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n99}"},"n100":{"$type":"color","$value":"{kda.foundation.color.palette.yellow.n100}"}}},"text":{"base":{"default":{"$description":"Use for primary text, such as body copy, sentence case headers.","$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha95}"},"@init":{"$description":"Use for primary text @init for buttons.","$type":"color","$value":"{kda.foundation.color.neutral.n100}"},"@hover":{"$description":"Use for text in a hover state.","$type":"color","$value":"{kda.foundation.color.neutral.n95}"},"@focus":{"$description":"Use for text in a focus state.","$type":"color","$value":"{kda.foundation.color.neutral.n99}"},"@active":{"$description":"Use for text in a active state.","$type":"color","$value":"{kda.foundation.color.neutral.n100}"},"@disabled":{"$description":"Use for text in a disabled state.","$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha40}"},"@selected":{"$description":"Use for text in selected or opened states, such as tabs and dropdown buttons.","$type":"color","$value":"{kda.foundation.color.neutral.n100}"},"inverse":{"default":{"$description":"Use for text on bold backgrounds.","$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha95}"},"@init":{"$description":"Use for primary text @init for buttons.","$type":"color","$value":"{kda.foundation.color.neutral.n0}"},"@hover":{"$description":"Use for text in a hover state.","$type":"color","$value":"{kda.foundation.color.neutral.n5}"},"@focus":{"$description":"Use for text in a focus state.","$type":"color","$value":"{kda.foundation.color.neutral.n1}"},"@active":{"$description":"Use for text in a active state.","$type":"color","$value":"{kda.foundation.color.neutral.n0}"},"@disabled":{"$description":"Use for text in a disabled state.","$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha40}"},"@selected":{"$description":"Use for text in selected or opened states, such as tabs and dropdown buttons.","$type":"color","$value":"{kda.foundation.color.neutral.n0}"}}},"subtle":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha80}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha95}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha95}"}}},"subtlest":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha70}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha80}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha70}"}}},"gray":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n100@alpha40}"},"lighter":{"$type":"color","$value":"{kda.foundation.color.neutral.n60}"},"bolder":{"$type":"color","$value":"{kda.foundation.color.neutral.n80}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0@alpha40}"},"lighter":{"$type":"color","$value":"{kda.foundation.color.neutral.n40}"},"bolder":{"$type":"color","$value":"{kda.foundation.color.neutral.n20}"}}},"brand":{"wordmark":{"default":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n99}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutralwarm.n1}"}}},"primary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n99}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n10}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n5}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.primary.n1}"}}},"secondary":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n90}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n99}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n10}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n5}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.brand.secondary.n1}"}}}},"accent":{"primary":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n95}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n99}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n100}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.neutral.n5}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.neutral.n1}"},"@active":{"$type":"color","$value":"{kda.foundation.color.neutral.n0}"}}}},"semantic":{"positive":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n99}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n100}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n100}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n1}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n0}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.positive.n0}"}}},"negative":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n99}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n100}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n100}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n1}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n0}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.negative.n0}"}}},"warning":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n99}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n100}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n100}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n1}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n0}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.warning.n0}"}}},"info":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n99}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n100}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n100}"},"inverse":{"default":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n1}"},"@hover":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n0}"},"@focus":{"$type":"color","$value":"{kda.foundation.color.semantic.info.n0}"}}}}}},"effect":{"defaultBlur":{"$type":"composition","$title":"Default layer blur","$description":"This is the default layer blur description","$value":{"radius":"{kda.foundation.size.n2}"}},"blur":[{"$name":"layerBlur","$type":"composition","$title":"Layer Blur","$description":"This is the layer blur description","$value":{"radius":"{kda.foundation.size.n3}","visible":true}}],"shadow":{"level1":{"$name":"level1","$type":"composition","$title":"Shadow Level 1","$description":"This is the shadow 1 description","$value":{"color":{"$type":"color","value":"#000000"},"offsetX":{"$type":"dimension","value":"4px"},"offsetY":{"$type":"dimension","value":"0.5rem"},"blur":{"$type":"dimension","value":"{kda.foundation.size.n2}"},"spread":{"$type":"dimension","value":"4px"}},"$extensions":{"sort":["offsetX","offsetY","blur","spread","color"]}},"level2":{"$name":"level2","$type":"composition","$title":"Shadow Level 2","$description":"This is the shadow 2 description","$value":{"color":"#000000","offsetX":"4rem","offsetY":"4rem","blur":{"$type":"dimension","value":"{kda.foundation.size.n2}"},"spread":"2rem"},"$extensions":{"sort":["offsetX","offsetY","blur","spread","color"]}},"level3":{"$name":"level3","$type":"composition","$title":"Shadow Level 3","$description":"This is the shadow 3 description updated","$value":{"color":"#000000","offsetX":"0px","offsetY":"0px","blur":"{kda.foundation.size.n2}","spread":"24px"},"$extensions":{"sort":["offsetX","offsetY","blur","spread","color"]}}}},"layout":{"content":{"minWidth":{"$type":"dimension","$value":"33.75rem"},"maxWidth":{"$type":"dimension","$value":"42.5rem"}}},"radius":{"no":{"$type":"dimension","$value":"0px"},"xs":{"$type":"dimension","$value":"2px"},"sm":{"$type":"dimension","$value":"4px"},"md":{"$type":"dimension","$value":"6px"},"lg":{"$type":"dimension","$value":"8px"},"xl":{"$type":"dimension","$value":"16px"},"xxl":{"$type":"dimension","$value":"24px"},"xs-outline":{"$type":"dimension","$value":"3px"},"sm-outline":{"$type":"dimension","$value":"5px"},"md-outline":{"$type":"dimension","$value":"7px"},"round":{"$type":"dimension","$value":"999rem"}},"screen":{"resolutions":{"$description":"Screen resolutions based on BrowserStack","width":{"mobile":{"apple":{"iphone_se":{"$type":"dimension","$value":320},"iphone_8":{"$type":"dimension","$value":375},"iphone_11":{"$type":"dimension","$value":375},"iphone_11_pro":{"$type":"dimension","$value":414}},"samsung":{"galaxy_s9":{"$type":"dimension","$value":360}}},"tablet":{"apple":{"ipad_mini":{"$type":"dimension","$value":768},"ipad":{"$type":"dimension","$value":810},"ipad_pro":{"$type":"dimension","$value":1024}}},"laptop":{"macBook_air":{"$type":"dimension","$value":1440},"macBook_pro_13":{"$type":"dimension","$value":1280},"macBook_pro_16":{"$type":"dimension","$value":3072}},"desktop":{"small":{"$type":"dimension","$value":1024},"widescreen":{"$type":"dimension","$value":1280},"hd":{"$type":"dimension","$value":1366},"full_hd":{"$type":"dimension","$value":1920},"2k":{"$type":"dimension","$value":2560},"ultra_wide":{"$type":"dimension","$value":3440},"4k":{"$type":"dimension","$value":3840}}},"height":{"mobile":{"apple":{"iphone_se":{"$type":"dimension","$value":568},"iphone_8":{"$type":"dimension","$value":667},"iphone_11":{"$type":"dimension","$value":812},"iphone_11_pro":{"$type":"dimension","$value":896}},"samsung":{"galaxy_s9":{"$type":"dimension","$value":740}}},"tablet":{"apple":{"ipad_mini":{"$type":"dimension","$value":1024},"ipad":{"$type":"dimension","$value":1080},"ipad_pro":{"$type":"dimension","$value":1366}}},"laptop":{"macBook_air":{"$type":"dimension","$value":900},"macBook_pro_13":{"$type":"dimension","$value":800},"macBook_pro_16":{"$type":"dimension","$value":1920}},"desktop":{"small":{"$type":"dimension","$value":768},"widescreen":{"$type":"dimension","$value":800},"hd":{"$type":"dimension","$value":768},"full_hd":{"$type":"dimension","$value":1080},"2k":{"$type":"dimension","$value":1440},"ultra_wide":{"$type":"dimension","$value":1440},"4k":{"$type":"dimension","$value":2160}}}}},"size":{"$description":"Size units for sizing and spacing elements","n0":{"$type":"dimension","$value":0},"n1":{"$type":"dimension","$value":"0.25rem"},"n2":{"$type":"dimension","$value":"0.5rem"},"n3":{"$type":"dimension","$value":"0.75rem"},"n4":{"$type":"dimension","$value":"1rem"},"n5":{"$type":"dimension","$value":"1.25rem"},"n6":{"$type":"dimension","$value":"1.5rem"},"n7":{"$type":"dimension","$value":"1.75rem"},"n8":{"$type":"dimension","$value":"2rem"},"n9":{"$type":"dimension","$value":"2.25rem"},"n10":{"$type":"dimension","$value":"2.5rem"},"n11":{"$type":"dimension","$value":"2.75rem"},"n12":{"$type":"dimension","$value":"3rem"},"n13":{"$type":"dimension","$value":"3.25rem"},"n14":{"$type":"dimension","$value":"3.5rem"},"n15":{"$type":"dimension","$value":"3.75rem"},"n16":{"$type":"dimension","$value":"4rem"},"n17":{"$type":"dimension","$value":"4.25rem"},"n18":{"$type":"dimension","$value":"4.5rem"},"n19":{"$type":"dimension","$value":"4.75rem"},"n20":{"$type":"dimension","$value":"5rem"},"n24":{"$type":"dimension","$value":"6rem"},"n25":{"$type":"dimension","$value":"6.25rem"},"n30":{"$type":"dimension","$value":"7.5rem"},"n32":{"$type":"dimension","$value":"8rem"},"n35":{"$type":"dimension","$value":"8.75rem"},"n40":{"$type":"dimension","$value":"10rem"},"n48":{"$type":"dimension","$value":"12rem"},"n56":{"$type":"dimension","$value":"14rem"},"n64":{"$type":"dimension","$value":"16rem"}},"spacing":{"no":{"$type":"dimension","$value":"{kda.foundation.size.n0}"},"xxs":{"$type":"dimension","$value":"0.125rem"},"xs":{"$type":"dimension","$value":"{kda.foundation.size.n1}"},"sm":{"$type":"dimension","$value":"{kda.foundation.size.n2}"},"md":{"$type":"dimension","$value":"{kda.foundation.size.n4}"},"lg":{"$type":"dimension","$value":"{kda.foundation.size.n6}"},"xl":{"$type":"dimension","$value":"{kda.foundation.size.n7}"},"xxl":{"$type":"dimension","$value":"{kda.foundation.size.n9}"},"xxxl":{"$type":"dimension","$value":"{kda.foundation.size.n10}"},"n0":{"$type":"dimension","$value":0},"n1":{"$type":"dimension","$value":"{kda.foundation.size.n1}"},"n2":{"$type":"dimension","$value":"{kda.foundation.size.n2}"},"n3":{"$type":"dimension","$value":"{kda.foundation.size.n3}"},"n4":{"$type":"dimension","$value":"{kda.foundation.size.n4}"},"n5":{"$type":"dimension","$value":"{kda.foundation.size.n5}"},"n6":{"$type":"dimension","$value":"{kda.foundation.size.n6}"},"n7":{"$type":"dimension","$value":"{kda.foundation.size.n7}"},"n8":{"$type":"dimension","$value":"{kda.foundation.size.n8}"},"n9":{"$type":"dimension","$value":"{kda.foundation.size.n9}"},"n10":{"$type":"dimension","$value":"{kda.foundation.size.n10}"},"n11":{"$type":"dimension","$value":"{kda.foundation.size.n11}"},"n12":{"$type":"dimension","$value":"{kda.foundation.size.n12}"},"n13":{"$type":"dimension","$value":"{kda.foundation.size.n13}"},"n14":{"$type":"dimension","$value":"{kda.foundation.size.n14}"},"n15":{"$type":"dimension","$value":"{kda.foundation.size.n15}"},"n16":{"$type":"dimension","$value":"{kda.foundation.size.n16}"},"n17":{"$type":"dimension","$value":"{kda.foundation.size.n17}"},"n18":{"$type":"dimension","$value":"{kda.foundation.size.n18}"},"n19":{"$type":"dimension","$value":"{kda.foundation.size.n19}"},"n20":{"$type":"dimension","$value":"{kda.foundation.size.n20}"},"n24":{"$type":"dimension","$value":"{kda.foundation.size.n24}"},"n25":{"$type":"dimension","$value":"{kda.foundation.size.n25}"},"n30":{"$type":"dimension","$value":"{kda.foundation.size.n30}"},"n32":{"$type":"dimension","$value":"{kda.foundation.size.n32}"},"n35":{"$type":"dimension","$value":"{kda.foundation.size.n35}"},"n40":{"$type":"dimension","$value":"{kda.foundation.size.n40}"},"n48":{"$type":"dimension","$value":"{kda.foundation.size.n48}"},"n56":{"$type":"dimension","$value":"{kda.foundation.size.n56}"},"n64":{"$type":"dimension","$value":"{kda.foundation.size.n64}"}},"transition":{"delay":{"none":{"$value":"0ms","$type":"duration"}},"duration":{"base":{"$value":"400ms","$type":"duration"},"d200":{"$value":"200ms","$type":"duration"}},"animation":{"easeOutSine":{"$type":"transition","$value":"{kda.foundation.transition.duration.d200} cubic-bezier(0.61, 1, 0.88, 1)"},"easeOutCubic":{"$type":"transition","$value":"{kda.foundation.transition.duration.d200} cubic-bezier(0.33, 1, 0.68, 1)"}}},"typography":{"family":{"primaryFont":{"$value":"Inter","$type":"fontFamily"},"monospaceFont":{"$value":"Kode Mono","$type":"fontFamily"}},"fontSize":{"xxs":{"$type":"dimension","$value":"0.6875rem"},"xs":{"$type":"dimension","$value":"0.75rem"},"sm":{"$type":"dimension","$value":"0.875rem"},"base":{"$type":"dimension","$value":"{kda.foundation.size.n4}"},"md":{"$type":"dimension","$value":"1.125rem"},"lg":{"$type":"dimension","$value":"1.25rem"},"xl":{"$type":"dimension","$value":"1.5rem"},"2xl":{"$type":"dimension","$value":"1.75rem"},"3xl":{"$type":"dimension","$value":"2rem"},"4xl":{"$type":"dimension","$value":"2.25rem"},"5xl":{"$type":"dimension","$value":"2.5rem"},"6xl":{"$type":"dimension","$value":"2.75rem"},"7xl":{"$type":"dimension","$value":"3rem"},"8xl":{"$type":"dimension","$value":"3.25rem"},"9xl":{"$type":"dimension","$value":"3.75rem"},"10xl":{"$type":"dimension","$value":"4.5rem"},"11xl":{"$type":"dimension","$value":"5rem"},"12xl":{"$type":"dimension","$value":"5.25rem"}},"lineHeight":{"7xl":{"$value":"3rem","$type":"dimension"},"4xl":{"$value":"2.25rem","$type":"dimension"},"3xl":{"$value":"2rem","$type":"dimension"},"2xl":{"$value":"1.75rem","$type":"dimension"},"xl":{"$value":"1.5rem","$type":"dimension"},"base":{"$value":"1.25rem","$type":"dimension"},"md":{"$value":"1rem","$type":"dimension"},"sm":{"$value":"0.875rem","$type":"dimension"}},"weight":{"primaryFont":{"light":{"$value":300,"$extensions":{"weightTag":"Light"},"$type":"fontWeight"},"regular":{"$value":400,"$extensions":{"weightTag":"Regular"},"$type":"fontWeight"},"medium":{"$value":500,"$extensions":{"weightTag":"Medium"},"$type":"fontWeight"},"semiBold":{"$value":600,"$extensions":{"weightTag":"SemiBold"},"$type":"fontWeight"},"bold":{"$value":700,"$extensions":{"weightTag":"Bold"},"$type":"fontWeight"}},"monospaceFont":{"regular":{"$value":400,"$extensions":{"weightTag":"Regular"},"$type":"fontWeight"},"medium":{"$value":500,"$extensions":{"weightTag":"Medium"},"$type":"fontWeight"},"semiBold":{"$value":600,"$extensions":{"weightTag":"SemiBold"},"$type":"fontWeight"},"bold":{"$value":700,"$extensions":{"weightTag":"Bold"},"$type":"fontWeight"}}}},"zIndex":{"deepdive":{"$type":"number","$value":-99999},"default":{"$type":"number","$value":1},"dialog":{"$type":"number","$value":6000},"surface":{"$type":"number","$value":4},"dropdown":{"$type":"number","$value":7000},"modal":{"$type":"number","$value":9000},"overlay":{"$type":"number","$value":8000},"popup":{"$type":"number","$value":5000},"spinner":{"$type":"number","$value":9050},"sticky":{"$type":"number","$value":100},"toast":{"$type":"number","$value":10000}}},"icons":{"ABI":{"$type":"icon","$name":"ABI","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"ABI_slim":{"$type":"icon","$name":"ABI_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"API":{"$type":"icon","$name":"API","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"API_slim":{"$type":"icon","$name":"API_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"ENS":{"$type":"icon","$name":"ENS","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"ENS_slim":{"$type":"icon","$name":"ENS_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"MUD":{"$type":"icon","$name":"MUD","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"MUD_menu":{"$type":"icon","$name":"MUD_menu","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"RPC":{"$type":"icon","$name":"RPC","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"apps":{"$type":"icon","$name":"apps","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"apps_list":{"$type":"icon","$name":"apps_list","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"apps_slim":{"$type":"icon","$name":"apps_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"arrows":{"arrow_drop_down":{"$type":"icon","$name":"arrow_drop_down","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"down-right":{"$type":"icon","$name":"down-right","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"east-mini":{"$type":"icon","$name":"east-mini","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"east":{"$type":"icon","$name":"east","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"north-east":{"$type":"icon","$name":"north-east","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"south-east":{"$type":"icon","$name":"south-east","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"up-down":{"$type":"icon","$name":"up-down","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"up-head":{"$type":"icon","$name":"up-head","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"beta":{"$type":"icon","$name":"beta","$description":"","$value":" ","$dimensions":{"width":52,"height":24}},"beta_xs":{"$type":"icon","$name":"beta_xs","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"blob":{"$type":"icon","$name":"blob","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"blobs":{"image":{"$type":"icon","$name":"image","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"raw":{"$type":"icon","$name":"raw","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"text":{"$type":"icon","$name":"text","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"block":{"$type":"icon","$name":"block","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"block_countdown":{"$type":"icon","$name":"block_countdown","$description":"","$value":" ","$dimensions":{"width":31.264864864864865,"height":24}},"block_slim":{"$type":"icon","$name":"block_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"brands":{"blockscout":{"$type":"icon","$name":"blockscout","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"celenium":{"$type":"icon","$name":"celenium","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"graph":{"$type":"icon","$name":"graph","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"kadena":{"logo":{"dark":{"$type":"icon","$name":"dark","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":84.375,"height":24}},"light":{"$type":"icon","$name":"light","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":84.375,"height":24}}},"rounded":{"black":{"$type":"icon","$name":"black","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}},"green":{"$type":"icon","$name":"green","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}},"white":{"$type":"icon","$name":"white","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}}},"rounded-filled":{"black":{"$type":"icon","$name":"black","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}},"green":{"$type":"icon","$name":"green","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}},"white":{"$type":"icon","$name":"white","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}}},"square":{"black":{"$type":"icon","$name":"black","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}},"green":{"$type":"icon","$name":"green","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}},"white":{"$type":"icon","$name":"white","$description":"","$style":"kdacolor","$value":" ","$dimensions":{"width":24,"height":24}}}},"safe":{"$type":"icon","$name":"safe","$description":"","$value":" ","$dimensions":{"width":24.003628117913834,"height":24}},"solidity_scan":{"$type":"icon","$name":"solidity_scan","$description":"","$value":" ","$dimensions":{"width":27.599999999999998,"height":24}},"tac":{"$type":"icon","$name":"tac","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"ton":{"$type":"icon","$name":"ton","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"burger":{"$type":"icon","$name":"burger","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"certified":{"$type":"icon","$name":"certified","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"check":{"$type":"icon","$name":"check","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"checkered_flag":{"$type":"icon","$name":"checkered_flag","$description":"","$value":" ","$dimensions":{"width":22.5,"height":24}},"clock":{"$type":"icon","$name":"clock","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"clock-light":{"$type":"icon","$name":"clock-light","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"close":{"$type":"icon","$name":"close","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"coins":{"bitcoin":{"$type":"icon","$name":"bitcoin","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"collection":{"$type":"icon","$name":"collection","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"columns":{"$type":"icon","$name":"columns","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"contracts":{"proxy":{"$type":"icon","$name":"proxy","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"regular":{"$type":"icon","$name":"regular","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"regular_many":{"$type":"icon","$name":"regular_many","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"verified":{"$type":"icon","$name":"verified","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"verified_many":{"$type":"icon","$name":"verified_many","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"copy":{"$type":"icon","$name":"copy","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"copy_check":{"$type":"icon","$name":"copy_check","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"cross":{"$type":"icon","$name":"cross","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"delete":{"$type":"icon","$name":"delete","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"dex-tracker":{"$type":"icon","$name":"dex-tracker","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"docs":{"$type":"icon","$name":"docs","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"donate":{"$type":"icon","$name":"donate","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"dots":{"$type":"icon","$name":"dots","$description":"","$value":" ","$dimensions":{"width":108,"height":24}},"edit":{"$type":"icon","$name":"edit","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"email":{"$type":"icon","$name":"email","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"empty_search_result":{"$type":"icon","$name":"empty_search_result","$description":"","$value":" ","$dimensions":{"width":31.135135135135137,"height":24}},"error-pages":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{"$type":"icon","$name":"403","$description":"","$value":" ","$dimensions":{"width":47.76,"height":24}},{"$type":"icon","$name":"404","$description":"","$value":" ","$dimensions":{"width":48.239999999999995,"height":24}},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{"$type":"icon","$name":"422","$description":"","$value":" ","$dimensions":{"width":48.239999999999995,"height":24}},null,null,null,null,null,null,{"$type":"icon","$name":"429","$description":"","$value":" ","$dimensions":{"width":47.76237623762376,"height":24}},null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,{"$type":"icon","$name":"500","$description":"","$value":" ","$dimensions":{"width":46.81188118811881,"height":24}}],"explorer":{"$type":"icon","$name":"explorer","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"files":{"csv":{"$type":"icon","$name":"csv","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"image":{"$type":"icon","$name":"image","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"json":{"$type":"icon","$name":"json","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"placeholder":{"$type":"icon","$name":"placeholder","$description":"","$value":" ","$dimensions":{"width":24.48,"height":24}},"sol":{"$type":"icon","$name":"sol","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"yul":{"$type":"icon","$name":"yul","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"filter":{"$type":"icon","$name":"filter","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"flame":{"$type":"icon","$name":"flame","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"games":{"$type":"icon","$name":"games","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"gas":{"$type":"icon","$name":"gas","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"gas_xl":{"$type":"icon","$name":"gas_xl","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"gear":{"$type":"icon","$name":"gear","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"gear_slim":{"$type":"icon","$name":"gear_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"globe":{"$type":"icon","$name":"globe","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"globe-b":{"$type":"icon","$name":"globe-b","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"graphQL":{"$type":"icon","$name":"graphQL","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"heart_filled":{"$type":"icon","$name":"heart_filled","$description":"","$value":" ","$dimensions":{"width":22.857142857142854,"height":24}},"heart_outline":{"$type":"icon","$name":"heart_outline","$description":"","$value":" ","$dimensions":{"width":22.857142857142854,"height":24}},"hourglass":{"$type":"icon","$name":"hourglass","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"info":{"$type":"icon","$name":"info","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"info_filled":{"$type":"icon","$name":"info_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"integration":{"full":{"$type":"icon","$name":"full","$description":"","$value":" ","$dimensions":{"width":null,"height":null}},"partial":{"$type":"icon","$name":"partial","$description":"","$value":" ","$dimensions":{"width":null,"height":null}}},"internal_txns":{"$type":"icon","$name":"internal_txns","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"interop":{"$type":"icon","$name":"interop","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"key":{"$type":"icon","$name":"key","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"lightning":{"$type":"icon","$name":"lightning","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"lightning_navbar":{"$type":"icon","$name":"lightning_navbar","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"link":{"$type":"icon","$name":"link","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"link_external":{"$type":"icon","$name":"link_external","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"lock":{"$type":"icon","$name":"lock","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"merits":{"$type":"icon","$name":"merits","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"merits_colored":{"$type":"icon","$name":"merits_colored","$description":"","$value":" ","$dimensions":{"width":21.818181818181817,"height":24}},"merits_slim":{"$type":"icon","$name":"merits_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"merits_with_dot":{"$type":"icon","$name":"merits_with_dot","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"merits_with_dot_slim":{"$type":"icon","$name":"merits_with_dot_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"minus":{"$type":"icon","$name":"minus","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"monaco":{"cargo":{"$type":"icon","$name":"cargo","$description":"","$value":" ","$dimensions":{"width":22.947065808386977,"height":24}},"file":{"$type":"icon","$name":"file","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"folder-open":{"$type":"icon","$name":"folder-open","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"folder":{"$type":"icon","$name":"folder","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"rust":{"$type":"icon","$name":"rust","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"solidity":{"$type":"icon","$name":"solidity","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"toml":{"$type":"icon","$name":"toml","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"Transparent Logo":{"$type":"icon","$name":"Transparent Logo","$description":"","$value":" ","$dimensions":{"width":27.71281334220408,"height":24}}},"moon":{"$type":"icon","$name":"moon","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"moon-with-star":{"$type":"icon","$name":"moon-with-star","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"networks":{"$type":"icon","$name":"networks","$description":"","$value":" ","$dimensions":{"width":24,"height":24},"icon-placeholder":{"$type":"icon","$name":"icon-placeholder","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"logo-placeholder":{"$type":"icon","$name":"logo-placeholder","$description":"","$value":" ","$dimensions":{"width":120,"height":24}}},"nft_shield":{"$type":"icon","$name":"nft_shield","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"open-link":{"$type":"icon","$name":"open-link","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"operation":{"$type":"icon","$name":"operation","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"operation_slim":{"$type":"icon","$name":"operation_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"output_roots":{"$type":"icon","$name":"output_roots","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"payment_link":{"$type":"icon","$name":"payment_link","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"plus":{"$type":"icon","$name":"plus","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"private_tags_slim":{"$type":"icon","$name":"private_tags_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"privattags":{"$type":"icon","$name":"privattags","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"profile":{"$type":"icon","$name":"profile","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"publictags":{"$type":"icon","$name":"publictags","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"publictags_slim":{"$type":"icon","$name":"publictags_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"qr_code":{"$type":"icon","$name":"qr_code","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"refresh":{"$type":"icon","$name":"refresh","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"repeat":{"$type":"icon","$name":"repeat","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"restAPI":{"$type":"icon","$name":"restAPI","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"rocket":{"$type":"icon","$name":"rocket","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"rocket_xl":{"$type":"icon","$name":"rocket_xl","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"scope":{"$type":"icon","$name":"scope","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"score":{"score-not-ok":{"$type":"icon","$name":"score-not-ok","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"score-ok":{"$type":"icon","$name":"score-ok","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"search":{"$type":"icon","$name":"search","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"share":{"$type":"icon","$name":"share","$description":"","$value":" ","$dimensions":{"width":21.176470588235293,"height":24}},"sign_out":{"$type":"icon","$name":"sign_out","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"social":{"coingecko":{"$type":"icon","$name":"coingecko","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"coinmarketcap":{"$type":"icon","$name":"coinmarketcap","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"defi_llama":{"$type":"icon","$name":"defi_llama","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"discord":{"$type":"icon","$name":"discord","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"discord_filled":{"$type":"icon","$name":"discord_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"facebook_filled":{"$type":"icon","$name":"facebook_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"git":{"$type":"icon","$name":"git","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"github_filled":{"$type":"icon","$name":"github_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"linkedin_filled":{"$type":"icon","$name":"linkedin_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"medium_filled":{"$type":"icon","$name":"medium_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"opensea_filled":{"$type":"icon","$name":"opensea_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"reddit_filled":{"$type":"icon","$name":"reddit_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"slack_filled":{"$type":"icon","$name":"slack_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"stats":{"$type":"icon","$name":"stats","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"telega":{"$type":"icon","$name":"telega","$description":"","$value":" ","$dimensions":{"width":25.200000000000003,"height":24}},"telegram_filled":{"$type":"icon","$name":"telegram_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"twitter":{"$type":"icon","$name":"twitter","$description":"","$value":" ","$dimensions":{"width":25,"height":24}},"twitter_filled":{"$type":"icon","$name":"twitter_filled","$description":"","$value":" ","$dimensions":{"width":25,"height":24}}},"star_filled":{"$type":"icon","$name":"star_filled","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"star_outline":{"$type":"icon","$name":"star_outline","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"stats":{"$type":"icon","$name":"stats","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"status":{"error":{"$type":"icon","$name":"error","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"pending":{"$type":"icon","$name":"pending","$description":"","$value":" ","$dimensions":{"width":21.818181818181817,"height":24}},"success":{"$type":"icon","$name":"success","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"warning":{"$type":"icon","$name":"warning","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"sun":{"$type":"icon","$name":"sun","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"swap":{"$type":"icon","$name":"swap","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"testnet":{"$type":"icon","$name":"testnet","$description":"","$value":" ","$dimensions":{"width":63.42857142857143,"height":24}},"token":{"$type":"icon","$name":"token","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"token-placeholder":{"$type":"icon","$name":"token-placeholder","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"token-transfers":{"$type":"icon","$name":"token-transfers","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"tokens":{"$type":"icon","$name":"tokens","$description":"","$value":" ","$dimensions":{"width":25.5,"height":24},"xdai":{"$type":"icon","$name":"xdai","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"top-accounts":{"$type":"icon","$name":"top-accounts","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"transactions":{"$type":"icon","$name":"transactions","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"transactions_slim":{"$type":"icon","$name":"transactions_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"txn_batches":{"$type":"icon","$name":"txn_batches","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"txn_batches_slim":{"$type":"icon","$name":"txn_batches_slim","$description":"","$value":" ","$dimensions":{"width":21.818181818181817,"height":24}},"uniswap":{"$type":"icon","$name":"uniswap","$description":"","$value":" ","$dimensions":{"width":24.75,"height":24}},"user_op":{"$type":"icon","$name":"user_op","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"user_op_slim":{"$type":"icon","$name":"user_op_slim","$description":"","$value":" ","$dimensions":{"width":22.857142857142854,"height":24}},"validator":{"$type":"icon","$name":"validator","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"verification-steps":{"error":{"$type":"icon","$name":"error","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"finalized":{"$type":"icon","$name":"finalized","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"unfinalized":{"$type":"icon","$name":"unfinalized","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"verified":{"$type":"icon","$name":"verified","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"verified_slim":{"$type":"icon","$name":"verified_slim","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"wallet":{"$type":"icon","$name":"wallet","$description":"","$value":" ","$dimensions":{"width":25.200000000000003,"height":24}},"wallets":{"coinbase":{"$type":"icon","$name":"coinbase","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"metamask":{"$type":"icon","$name":"metamask","$description":"","$value":" ","$dimensions":{"width":24,"height":24}},"token-pocket":{"$type":"icon","$name":"token-pocket","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}},"watchlist":{"$type":"icon","$name":"watchlist","$description":"","$value":" ","$dimensions":{"width":24,"height":24}}}}} \ No newline at end of file diff --git a/toolkit/theme/design-system/dist/kda-design-system.tokens.css b/toolkit/theme/design-system/dist/kda-design-system.tokens.css new file mode 100644 index 0000000000..c2e52bdf79 --- /dev/null +++ b/toolkit/theme/design-system/dist/kda-design-system.tokens.css @@ -0,0 +1,11 @@ +/* + * This file is automatically generated. + * DO NOT EDIT THIS FILE DIRECTLY. + * Changes will be overwritten. Please update the source design tokens instead. + */ + +@import url("css/fonts.css"); +@import url("css/icons.css"); +@import url("css/tokens.css"); +@import url("css/typography.css"); +@import url("css/breakpoints.css"); diff --git a/toolkit/theme/design-system/js.dark.d.ts b/toolkit/theme/design-system/js.dark.d.ts new file mode 100644 index 0000000000..f3329d6b14 --- /dev/null +++ b/toolkit/theme/design-system/js.dark.d.ts @@ -0,0 +1,3 @@ +import { KDADesignSystemLightTokens } from './dist/js/tokens.dark.config.type.ts'; + +export default KDADesignSystemLightTokens; diff --git a/toolkit/theme/design-system/js.light.d.ts b/toolkit/theme/design-system/js.light.d.ts new file mode 100644 index 0000000000..72d7db0fcc --- /dev/null +++ b/toolkit/theme/design-system/js.light.d.ts @@ -0,0 +1,3 @@ +import { KDADesignSystemLightTokens } from './dist/js/tokens.light.config.type.ts'; + +export default KDADesignSystemLightTokens; diff --git a/toolkit/theme/design-system/tokens/component/alert.tokens.json b/toolkit/theme/design-system/tokens/component/alert.tokens.json new file mode 100644 index 0000000000..9766394511 --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/alert.tokens.json @@ -0,0 +1,46 @@ +{ + "kda": { + "explorer": { + "alert": { + "surface": { + "text": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.text.semantic.info.default}" + } + } + }, + "background": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}" + }, + "semantic": { + "positive": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n0}" + }, + "negative": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n0}" + }, + "warning": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n0}" + }, + "info": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n0}" + } + } + }, + "loading": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n90}" + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/component/button.tokens.json b/toolkit/theme/design-system/tokens/component/button.tokens.json new file mode 100644 index 0000000000..509d3b8b26 --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/button.tokens.json @@ -0,0 +1,29 @@ +{ + "kda": { + "explorer": { + "button": { + "background": { + "color": { + "default": { + "$value": "{kda.foundation.color.background.accent.primary.inverse.default}", + "$type": "color", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.background.accent.primary.inverse.default}" + } + } + } + } + }, + "surface": { + "color": { + "default": { + "$value": "{kda.foundation.color.text.base.inverse.@init}", + "$type": "color" + } + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/component/hero.banner.tokens.json b/toolkit/theme/design-system/tokens/component/hero.banner.tokens.json new file mode 100644 index 0000000000..726be2d388 --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/hero.banner.tokens.json @@ -0,0 +1,208 @@ +{ + "kda": { + "explorer": { + "hero": { + "banner": { + "title": { + "font": { + "size": { + "$type": "dimension", + "$value": "{kda.foundation.typography.fontSize.xl}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.typography.fontSize.2xl}" + } + } + } + }, + "weight": { + "$type": "fontWeight", + "$value": "{kda.foundation.typography.weight.primaryFont.medium}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.typography.weight.primaryFont.semiBold}" + } + } + } + }, + "lineHeight": { + "$type": "fontWeight", + "$value": "{kda.foundation.typography.lineHeight.xl}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.typography.lineHeight.2xl}" + } + } + } + }, + "color": { + "name": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n100}" + } + } + }, + "prefix": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha40}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n100@alpha40}" + } + } + }, + "selector": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n100}" + } + } + } + } + }, + "margin": { + "gap": { + "$type": "dimension", + "$value": "{kda.foundation.spacing.n4}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.spacing.n2}" + } + } + } + }, + "bottom": { + "$type": "dimension", + "$value": "{kda.foundation.spacing.n4}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.spacing.n6}" + } + } + } + } + } + }, + "border": { + "$type": "composition", + "$value": { + "width": { + "$type": "dimension", + "value": "{kda.foundation.border.width.hairline}" + }, + "style": { + "$type": "string", + "value": "solid" + }, + "color": { + "$type": "color", + "value": "{kda.foundation.color.accent.green}" + } + } + }, + "radius": { + "$type": "dimension", + "$value": "{kda.foundation.radius.xs}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.radius.lg}" + } + } + } + }, + "background": { + "$type": "color", + "$value": "{kda.foundation.color.accent.green}" + }, + "padding": { + "$type": "dimension", + "$value": "{kda.foundation.spacing.n4}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": { + "$type": "dimension", + "$value": "{kda.foundation.spacing.n8}" + } + } + } + } + }, + "column": { + "width": { + "$type": "string", + "$value": "100%", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "auto" + } + } + } + }, + "gap": { + "$type": "dimension", + "$value": "{kda.foundation.spacing.n8}" + } + }, + "button": { + "dimensions": { + "radius": { + "$type": "dimension", + "$value": "{kda.foundation.radius.no}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.radius.xs}" + } + } + } + } + }, + "default": { + "background": { + "$type": "color", + "$value": "{kda.foundation.color.background.accent.primary.inverse.default}" + }, + "surface": { + "$type": "color", + "$value": "{kda.foundation.color.text.base.inverse.@init}" + } + }, + "@hover": { + "background": { + "$type": "color", + "$value": "{kda.foundation.color.background.accent.primary.inverse.@active}" + }, + "surface": { + "$type": "color", + "$value": "{kda.foundation.color.text.base.inverse.@active}" + } + }, + "@active": { + "background": { + "$type": "color", + "$value": "{kda.foundation.color.background.accent.primary.inverse.@hover}" + }, + "surface": { + "$type": "color", + "$value": "{kda.foundation.color.text.base.inverse.@hover}" + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/component/input.tokens.json b/toolkit/theme/design-system/tokens/component/input.tokens.json new file mode 100644 index 0000000000..d6686b87e5 --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/input.tokens.json @@ -0,0 +1,42 @@ +{ + "kda": { + "explorer": { + "input": { + "dimensions": { + "radius": { + "base": { + "$value": "{kda.foundation.radius.no}", + "$type": "dimension", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.radius.xs}" + } + } + } + } + } + }, + "border": { + "color": { + "semantic": { + "negative": { + "$type": "color", + "$value": "{kda.foundation.color.border.semantic.negative.default}" + } + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n70}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.brand.primary.n50}" + } + } + } + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/component/navigation.tokens.json b/toolkit/theme/design-system/tokens/component/navigation.tokens.json new file mode 100644 index 0000000000..761a99449b --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/navigation.tokens.json @@ -0,0 +1,41 @@ +{ + "kda": { + "explorer": { + "navigation": { + "background": { + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.brand.primary.n20}" + } + } + } + }, + "surface": { + "text": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.text.brand.primary.default}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.brand.primary.n99}" + } + } + }, + "@selected": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n100}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.brand.primary.n100}" + } + } + } + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/component/toast.tokens.json b/toolkit/theme/design-system/tokens/component/toast.tokens.json new file mode 100644 index 0000000000..0f7b00821f --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/toast.tokens.json @@ -0,0 +1,46 @@ +{ + "kda": { + "explorer": { + "toast": { + "surface": { + "text": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.text.semantic.info.default}" + } + } + }, + "background": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}" + }, + "semantic": { + "positive": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n0}" + }, + "negative": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n0}" + }, + "warning": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n0}" + }, + "info": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n0}" + } + } + }, + "loading": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n90}" + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/component/top.bar.tokens.json b/toolkit/theme/design-system/tokens/component/top.bar.tokens.json new file mode 100644 index 0000000000..fff4157b99 --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/top.bar.tokens.json @@ -0,0 +1,23 @@ +{ + "kda": { + "explorer": { + "top": { + "bar": { + "font": { + "size": { + "$type": "dimension", + "$value": "{kda.foundation.typography.fontSize.xs}", + "$extensions": { + "breakpoint": { + "(min-width: {kda.foundation.breakpoint.lg})": { + "value": "{kda.foundation.typography.fontSize.xs}" + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/component/widget.stats.tokens.json b/toolkit/theme/design-system/tokens/component/widget.stats.tokens.json new file mode 100644 index 0000000000..bb3009b50f --- /dev/null +++ b/toolkit/theme/design-system/tokens/component/widget.stats.tokens.json @@ -0,0 +1,53 @@ +{ + "kda": { + "explorer": { + "widget": { + "stats": { + "background": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n0@alpha40}" + } + } + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}" + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}" + } + }, + "surface": { + "text": { + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.text.subtle.default}" + }, + "default": { + "$type": "color", + "$value": "{kda.foundation.color.text.brand.primary.default}" + } + }, + "icon": { + "color": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.icon.brand.primary.@active}" + } + } + } + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/foundation/border.tokens.json b/toolkit/theme/design-system/tokens/foundation/border.tokens.json new file mode 100644 index 0000000000..e93fcdbe54 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/border.tokens.json @@ -0,0 +1,55 @@ +{ + "kda": { + "foundation": { + "border": { + "width": { + "hairline": { + "$type": "dimension", + "$value": "1px" + }, + "normal": { + "$type": "dimension", + "$value": "2px" + }, + "thick": { + "$type": "dimension", + "$value": "4px" + } + }, + "hairline": { + "$type": "composition", + "$value": { + "width": "{kda.foundation.border.width.hairline}", + "style": "solid", + "color": "{kda.foundation.color.border.base.default}" + }, + "$extensions": { + "sort": ["width", "style", "color"] + } + }, + "normal": { + "$type": "composition", + "$value": { + "width": "{kda.foundation.border.width.normal}", + "style": "solid", + "color": "{kda.foundation.color.border.base.bold}" + }, + "$extensions": { + "sort": ["width", "style", "color"] + } + }, + "thick": { + "$type": "composition", + "$value": { + "width": "{kda.foundation.border.width.thick}", + "style": "solid", + "color": "{kda.foundation.color.border.base.bold}" + }, + "$extensions": { + "sort": ["width", "style", "color"] + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/breakpoint.tokens.json b/toolkit/theme/design-system/tokens/foundation/breakpoint.tokens.json new file mode 100644 index 0000000000..8008ce55cb --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/breakpoint.tokens.json @@ -0,0 +1,33 @@ +{ + "kda": { + "foundation": { + "breakpoint": { + "$description": "Breakpoint sizes for viewports", + "xs": { + "$type": "dimension", + "$value": "0rem" + }, + "sm": { + "$type": "dimension", + "$value": "40rem" + }, + "md": { + "$type": "dimension", + "$value": "48rem" + }, + "lg": { + "$type": "dimension", + "$value": "64rem" + }, + "xl": { + "$type": "dimension", + "$value": "80rem" + }, + "xxl": { + "$type": "dimension", + "$value": "96rem" + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/foundation/color/README.md b/toolkit/theme/design-system/tokens/foundation/color/README.md new file mode 100644 index 0000000000..610ec73f30 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/README.md @@ -0,0 +1,99 @@ +# Generated Tokens for Figma Sync Plugin + +```json +// input with alpha generator + +{ + "kda": { + "foundation": { + "color": { + "neutral": { + "$description": "Neutral Gray colors", + "n0": { + "$type": "color", + "$value": "#FFFFFF", + "$extensions": { + "mode": { + "dark": "#000000" + } + } + }, + "n100": { + "$type": "color", + "$value": "#000000", + "$extensions": { + "mode": { + "dark": "#FFFFFF" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha5": 5, + "@alpha10x": 11, + "@alpha20y": 21 + } + } + ] + } + } + } + } + } + } + +``` + +```json +// output for Figma PlugIn +{ + "kda": { + "foundation": { + "color": { + "neutral": { + "$description": "Neutral Gray colors", + "n0": { + "$type": "color", + "$value": "#FFFFFF", + "$extensions": { + "mode": { + "dark": "#000000" + } + } + }, + "n100": { + "$type": "color", + "$value": "#000000", + "$extensions": { + "mode": { + "dark": "#FFFFFF" + } + } + }, + "n100@alpha5": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}", + "$extensions": { + "alpha": 5 + } + }, + "n100@alpha10": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}", + "$extensions": { + "alpha": 10 + } + }, + "n100@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}", + "$extensions": { + "alpha": 20 + } + } + } + } + } + } +} +``` diff --git a/toolkit/theme/design-system/tokens/foundation/color/accent.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/accent.tokens.json new file mode 100644 index 0000000000..583eed374e --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/accent.tokens.json @@ -0,0 +1,85 @@ +{ + "kda": { + "foundation": { + "color": { + "accent": { + "$description": "Accent colors", + "blue": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n50}" + }, + "celery": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n50}" + }, + "green": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n50}" + }, + "magenta": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n50}" + }, + "orange": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n50}" + }, + "red": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n50}" + }, + "yellow": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n50}" + }, + "brand": { + "primary": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n50}" + }, + "secondary": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n50}" + }, + "tertiary": { + "$type": "color", + "$value": "{kda.foundation.color.brand.tertiary.n50}" + }, + "tint": { + "primary": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n20}" + }, + "secondary": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n50}" + }, + "tertiary": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n50}" + } + } + }, + "semantic": { + "info": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n50}" + }, + "warning": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n50}" + }, + "positive": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n50}" + }, + "negative": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n50}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/background.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/background.tokens.json new file mode 100644 index 0000000000..e609b58b3e --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/background.tokens.json @@ -0,0 +1,693 @@ +{ + "kda": { + "foundation": { + "color": { + "background": { + "base": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}" + }, + "warm": { + "$type": "color", + "$value": "{kda.foundation.color.neutralwarm.n1}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n10}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n5@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n5}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha10}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99}" + }, + "warm": { + "$type": "color", + "$value": "{kda.foundation.color.neutralwarm.n99}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n90}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n95@alpha80}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha10}" + } + } + }, + "layer": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n5@alpha80}" + } + } + }, + "solid": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n5}" + } + } + } + }, + "overlay": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha95}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n5@alpha95}" + } + } + }, + "context": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha95}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n5@alpha95}" + } + } + } + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n5}" + } + } + } + }, + "surface": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99@alpha6}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n99@alpha6}" + } + } + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n99@alpha80}" + } + } + } + }, + "subtle": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99@alpha3}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n0@alpha20}" + } + } + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n99@alpha80}" + } + } + } + } + } + }, + "surfaceHighContrast": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha90}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n0@alpha90}" + } + } + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha90}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n100@alpha90}" + } + } + } + } + }, + "brand": { + "primary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n5}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n1}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n0}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n10}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n20}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n30}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n95}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n99}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n100}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n90}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n70}" + } + } + }, + "secondary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n5}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n1}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n0}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n5}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n10}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n20}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n95}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n99}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n100}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n90}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n80}" + } + } + } + }, + "accent": { + "primary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n20@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n10}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n90}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.palette.aqua.n80}" + } + } + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n80@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n80}" + } + } + }, + "secondary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n50}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n60}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n60}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n50}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n40}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n40}" + } + } + }, + "tertiary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n50}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n60}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n60}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n50}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n40}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n40}" + } + } + } + }, + "semantic": { + "positive": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n20}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n20@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n0}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n20@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n10}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n80}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n80@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n100}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n80@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n90}" + } + } + }, + "negative": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n20}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n20@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n0}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n20@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n10}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n80}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n80@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n100}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n80@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n90}" + } + } + }, + "warning": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n20}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n20@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n0}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n20@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n10}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n80}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n80@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n100}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n80@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n90}" + } + } + }, + "info": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n20}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n20@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n0}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n20@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n10}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n80}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n80@alpha20}" + }, + "subtlest": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n100}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n80@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n90}" + } + } + } + }, + "input": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n5@alpha80}" + } + } + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n10}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n20@alpha80}" + } + } + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n5@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n5}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha10}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n80@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n80@alpha80}" + } + } + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n90}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n95@alpha80}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n95}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha10}" + } + } + }, + "skeleton": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n10}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n20@alpha80}" + } + } + } + }, + "table": { + "row": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.background.layer.default}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n10@alpha80}" + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/border.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/border.tokens.json new file mode 100644 index 0000000000..60ee26c956 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/border.tokens.json @@ -0,0 +1,344 @@ +{ + "kda": { + "foundation": { + "color": { + "border": { + "base": { + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n10@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n99@alpha10}" + } + } + }, + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n90@alpha25}" + }, + "bold": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99@alpha50}" + }, + "boldest": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha70}" + }, + "high-contrast": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n20}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n80}" + }, + "inverse": { + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1@alpha10}" + }, + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1@alpha20}" + }, + "bold": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha40}" + }, + "boldest": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1@alpha50}" + }, + "high-contrast": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n20}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n80}" + } + } + }, + "brand": { + "primary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n40}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n60}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n70}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n80}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n60}" + } + } + }, + "secondary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n40}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n60}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n70}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n80}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n60}" + } + } + } + }, + "semantic": { + "positive": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n60}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n20}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.semantic.positive.n5}" + } + } + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n60}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n40}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n20}" + } + } + }, + "negative": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n60}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n20}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.semantic.negative.n5}" + } + } + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n60}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n40}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n20}" + } + } + }, + "warning": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n60}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n20}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.semantic.warning.n5}" + } + } + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n60}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n40}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n20}" + } + } + }, + "info": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n60}" + }, + "subtle": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n20}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.semantic.info.n5}" + } + } + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n60}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n40}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n20}" + } + } + } + }, + "tint": { + "outline": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n60}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n80@alpha80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.palette.aqua.n20@alpha80}" + } + } + } + }, + "overlay": { + "context": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n20@alpha80}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/brand.primary.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/brand.primary.tokens.json new file mode 100644 index 0000000000..bf7bb91951 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/brand.primary.tokens.json @@ -0,0 +1,72 @@ +{ + "kda": { + "foundation": { + "color": { + "brand": { + "primary": { + "n0": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n0}" + }, + "n1": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n1}" + }, + "n5": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n5}" + }, + "n10": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n10}" + }, + "n20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n20}" + }, + "n30": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n30}" + }, + "n40": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n40}" + }, + "n50": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n50}" + }, + "n60": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n60}" + }, + "n70": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n70}" + }, + "n80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n80}" + }, + "n90": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n90}" + }, + "n95": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n95}" + }, + "n99": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n99}" + }, + "n100": { + "$type": "color", + "$value": "{kda.foundation.color.palette.green.n100}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/brand.secondary.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/brand.secondary.tokens.json new file mode 100644 index 0000000000..287f5d12a2 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/brand.secondary.tokens.json @@ -0,0 +1,72 @@ +{ + "kda": { + "foundation": { + "color": { + "brand": { + "secondary": { + "n0": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n0}" + }, + "n1": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n1}" + }, + "n5": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n5}" + }, + "n10": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n10}" + }, + "n20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n20}" + }, + "n30": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n30}" + }, + "n40": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n40}" + }, + "n50": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n50}" + }, + "n60": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n60}" + }, + "n70": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n70}" + }, + "n80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n80}" + }, + "n90": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n90}" + }, + "n95": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n95}" + }, + "n99": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n99}" + }, + "n100": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n100}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/brand.tertiary.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/brand.tertiary.tokens.json new file mode 100644 index 0000000000..712897df3b --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/brand.tertiary.tokens.json @@ -0,0 +1,72 @@ +{ + "kda": { + "foundation": { + "color": { + "brand": { + "tertiary": { + "n0": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n0}" + }, + "n1": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n1}" + }, + "n5": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n5}" + }, + "n10": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n10}" + }, + "n20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n20}" + }, + "n30": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n30}" + }, + "n40": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n40}" + }, + "n50": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n50}" + }, + "n60": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n60}" + }, + "n70": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n70}" + }, + "n80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n80}" + }, + "n90": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n90}" + }, + "n95": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n95}" + }, + "n99": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n99}" + }, + "n100": { + "$type": "color", + "$value": "{kda.foundation.color.palette.orange.n100}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/brand.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/brand.tokens.json new file mode 100644 index 0000000000..8cadd2188e --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/brand.tokens.json @@ -0,0 +1,55 @@ +{ + "kda": { + "foundation": { + "color": { + "brand": { + "key": { + "primary": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n50}" + }, + "secondary": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n99}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.brand.secondary.n1}" + } + } + }, + "tertiary": { + "$type": "color", + "$value": "{kda.foundation.color.brand.tertiary.n50}" + }, + "accent": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n50}" + }, + "neutralwarm": { + "$type": "color", + "$value": "{kda.foundation.color.neutralwarm.n1}" + }, + "white": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n99}" + } + } + }, + "black": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutral.n1}" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/gradient.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/gradient.tokens.json new file mode 100644 index 0000000000..cd70c594d7 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/gradient.tokens.json @@ -0,0 +1,43 @@ +{ + "kda": { + "foundation": { + "color": { + "gradient": { + "base": { + "subtle": { + "$type": "composition", + "$value": { + "prefix": "linear-gradient(", + "data": { + "$type": "composition", + "value": { + "angle": "90deg", + "color1": { + "$type": "color", + "value": "{kda.foundation.color.background.base.default}" + }, + "color2": { + "$type": "color", + "value": "{kda.foundation.color.neutral.n1@alpha0}" + } + }, + "$extensions": { + "delimiter": { + "character": ", " + } + } + }, + "suffix": ")" + }, + "$extensions": { + "delimiter": { + "character": " " + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/icon.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/icon.tokens.json new file mode 100644 index 0000000000..c3eba4dfa6 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/icon.tokens.json @@ -0,0 +1,394 @@ +{ + "kda": { + "foundation": { + "color": { + "icon": { + "base": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n95}" + }, + "bold": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99}" + }, + "@init": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99@alpha50}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha20}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n5}" + }, + "bold": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}" + }, + "@init": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1@alpha50}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha20}" + } + } + }, + "brand": { + "logo": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n50}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.neutralwarm.n99}" + } + } + } + } + }, + "primary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n80}" + }, + "bold": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + } + } + }, + "secondary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n80}" + }, + "bold": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + } + } + } + }, + "semantic": { + "positive": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n80}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + } + } + }, + "negative": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n80}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + } + } + }, + "warning": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n80}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + } + } + }, + "info": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n80}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n70}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n60}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n20}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n30}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n40}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n50}" + }, + "@disabled": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n30}" + } + } + } + }, + "product": { + "spirekey": { + "animation": { + "start": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n50}" + }, + "step1": { + "$type": "color", + "$value": "#4AA688" + }, + "step2": { + "$type": "color", + "$value": "#4BBD97" + }, + "step3": { + "$type": "color", + "$value": "#4BD3A6" + }, + "end": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n30}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.palette.aqua.n70}" + } + } + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/link.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/link.tokens.json new file mode 100644 index 0000000000..0854e16568 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/link.tokens.json @@ -0,0 +1,160 @@ +{ + "kda": { + "foundation": { + "color": { + "link": { + "base": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n90}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.palette.aqua.n50}" + } + } + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n100}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.palette.aqua.n70}" + } + } + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.palette.aqua.n100}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.palette.aqua.n70}" + } + } + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n80}", + "$extensions": { + "mode": { + "dark": "{kda.foundation.color.palette.magenta.n80}" + } + } + } + }, + "brand": { + "primary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n70}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n80}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n60}" + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n80}" + } + }, + "secondary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n70}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n80}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n60}" + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n80}" + } + } + }, + "semantic": { + "positive": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n80}" + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n80}" + } + }, + "negative": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n80}" + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n80}" + } + }, + "warning": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n80}" + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n80}" + } + }, + "info": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n80}" + }, + "@visited": { + "$type": "color", + "$value": "{kda.foundation.color.palette.magenta.n80}" + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/neutral.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/neutral.tokens.json new file mode 100644 index 0000000000..1f1dc9104b --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/neutral.tokens.json @@ -0,0 +1,285 @@ +{ + "kda": { + "foundation": { + "color": { + "neutral": { + "$description": "Neutral Gray colors", + "n0": { + "$type": "color", + "$value": "#FFFFFF", + "$extensions": { + "mode": { + "dark": "#000000" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha0": 0, + "@alpha10": 10, + "@alpha20": 20, + "@alpha40": 40, + "@alpha70": 70, + "@alpha80": 80, + "@alpha90": 90, + "@alpha95": 95 + } + } + ] + } + }, + "n1": { + "$type": "color", + "$value": "#F5F5F5", + "$extensions": { + "mode": { + "dark": "#020E1B" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha0": 0, + "@alpha1": 1, + "@alpha3": 3, + "@alpha4": 4, + "@alpha5": 5, + "@alpha6": 6, + "@alpha10": 10, + "@alpha20": 20, + "@alpha30": 30, + "@alpha40": 40, + "@alpha50": 50, + "@alpha80": 80, + "@alpha90": 90 + } + } + ] + } + }, + "n5": { + "$type": "color", + "$value": "#E4E5E5", + "$extensions": { + "mode": { + "dark": "#131E2B" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha80": 80, + "@alpha95": 95 + } + } + ] + } + }, + "n10": { + "$type": "color", + "$value": "#D2D4D6", + "$extensions": { + "mode": { + "dark": "#252F3A" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha80": 80 + } + } + ] + } + }, + "n15": { + "$type": "color", + "$value": "#C1C4C6", + "$extensions": { + "mode": { + "dark": "#36404A" + } + } + }, + "n20": { + "$type": "color", + "$value": "#B0B3B7", + "$extensions": { + "mode": { + "dark": "#475059" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha80": 80 + } + } + ] + } + }, + "n30": { + "$type": "color", + "$value": "#9EA3A7", + "$extensions": { + "mode": { + "dark": "#596069" + } + } + }, + "n40": { + "$type": "color", + "$value": "#8D9298", + "$extensions": { + "mode": { + "dark": "#6A7178" + } + } + }, + "n50": { + "$type": "color", + "$value": "#7C8288", + "$extensions": { + "mode": { + "dark": "#7C8288" + } + } + }, + "n60": { + "$type": "color", + "$value": "#6A7178", + "$extensions": { + "mode": { + "dark": "#8D9298" + } + } + }, + "n70": { + "$type": "color", + "$value": "#596069", + "$extensions": { + "mode": { + "dark": "#9EA3A7" + } + } + }, + "n80": { + "$type": "color", + "$value": "#475059", + "$extensions": { + "mode": { + "dark": "#B0B3B7" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha80": 80 + } + } + ] + } + }, + "n85": { + "$type": "color", + "$value": "#36404A", + "$extensions": { + "mode": { + "dark": "#C1C4C6" + } + } + }, + "n90": { + "$type": "color", + "$value": "#252F3A", + "$extensions": { + "mode": { + "dark": "#D2D4D6" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha25": 25 + } + } + ] + } + }, + "n95": { + "$type": "color", + "$value": "#131E2B", + "$extensions": { + "mode": { + "dark": "#E4E5E5" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha80": 80, + "@alpha95": 95 + } + } + ] + } + }, + "n99": { + "$type": "color", + "$value": "#020E1B", + "$extensions": { + "mode": { + "dark": "#F5F5F5" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha0": 0, + "@alpha1": 1, + "@alpha3": 3, + "@alpha4": 4, + "@alpha5": 5, + "@alpha6": 6, + "@alpha10": 10, + "@alpha20": 20, + "@alpha30": 30, + "@alpha40": 40, + "@alpha50": 50, + "@alpha80": 80, + "@alpha90": 90 + } + } + ] + } + }, + "n100": { + "$type": "color", + "$value": "#000000", + "$extensions": { + "mode": { + "dark": "#FFFFFF" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha0": 0, + "@alpha10": 10, + "@alpha20": 20, + "@alpha40": 40, + "@alpha70": 70, + "@alpha80": 80, + "@alpha90": 90, + "@alpha95": 95 + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/neutral.warm.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/neutral.warm.tokens.json new file mode 100644 index 0000000000..9b7be1d053 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/neutral.warm.tokens.json @@ -0,0 +1,157 @@ +{ + "kda": { + "foundation": { + "color": { + "neutralwarm": { + "$description": "Neutral Warm colors", + "n0": { + "$type": "color", + "$value": "#FBFAF9", + "$extensions": { + "mode": { + "dark": "#050505" + } + } + }, + "n1": { + "$type": "color", + "$value": "#F0EAE6", + "$extensions": { + "mode": { + "dark": "#0F0F0F" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha30": 30, + "@alpha60": 60, + "@alpha80": 80, + "@alpha95": 95 + } + } + ] + } + }, + "n5": { + "$type": "color", + "$value": "#DDD8D4", + "$extensions": { + "mode": { + "dark": "#222121" + } + } + }, + "n10": { + "$type": "color", + "$value": "#CBC6C2", + "$extensions": { + "mode": { + "dark": "#353433" + } + } + }, + "n20": { + "$type": "color", + "$value": "#B8B3B0", + "$extensions": { + "mode": { + "dark": "#474645" + } + } + }, + "n30": { + "$type": "color", + "$value": "#A5A19E", + "$extensions": { + "mode": { + "dark": "#5A5857" + } + } + }, + "n40": { + "$type": "color", + "$value": "#928F8C", + "$extensions": { + "mode": { + "dark": "#6D6A69" + } + } + }, + "n50": { + "$type": "color", + "$value": "#807D7B", + "$extensions": { + "mode": { + "dark": "#807D7B" + } + } + }, + "n60": { + "$type": "color", + "$value": "#6D6A69", + "$extensions": { + "mode": { + "dark": "#928F8C" + } + } + }, + "n70": { + "$type": "color", + "$value": "#5A5857", + "$extensions": { + "mode": { + "dark": "#A5A19E" + } + } + }, + "n80": { + "$type": "color", + "$value": "#474645", + "$extensions": { + "mode": { + "dark": "#B8B3B0" + } + } + }, + "n90": { + "$type": "color", + "$value": "#353433", + "$extensions": { + "mode": { + "dark": "#CBC6C2" + } + } + }, + "n95": { + "$type": "color", + "$value": "#222121", + "$extensions": { + "mode": { + "dark": "#DDD8D4" + } + } + }, + "n99": { + "$type": "color", + "$value": "#0F0F0F", + "$extensions": { + "mode": { + "dark": "#F0EAE6" + } + } + }, + "n100": { + "$type": "color", + "$value": "#050505", + "$extensions": { + "mode": { + "dark": "#FBFAF9" + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/aqua.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/aqua.tokens.json new file mode 100644 index 0000000000..d1e53d7ccd --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/aqua.tokens.json @@ -0,0 +1,164 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "aqua": { + "$description": "Kadena Digital Green Color Palette Aqua", + "n0": { + "$type": "color", + "$value": "#F0FFFA", + "$extensions": { + "mode": { + "dark": "#0A1F18" + } + } + }, + "n1": { + "$type": "color", + "$value": "#C9FFED", + "$extensions": { + "mode": { + "dark": "#113529" + } + } + }, + "n5": { + "$type": "color", + "$value": "#A1FFE0", + "$extensions": { + "mode": { + "dark": "#184C3B" + } + } + }, + "n10": { + "$type": "color", + "$value": "#7AFFD3", + "$extensions": { + "mode": { + "dark": "#20624C" + } + } + }, + "n20": { + "$type": "color", + "$value": "#52FFC6", + "$extensions": { + "mode": { + "dark": "#27795E" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha80": 80 + } + } + ] + } + }, + "n30": { + "$type": "color", + "$value": "#4BE9B5", + "$extensions": { + "mode": { + "dark": "#2E8F6F" + } + } + }, + "n40": { + "$type": "color", + "$value": "#44D2A3", + "$extensions": { + "mode": { + "dark": "#35A580" + } + } + }, + "n50": { + "$type": "color", + "$value": "#3CBC92", + "$extensions": { + "mode": { + "dark": "#3CBC92" + } + } + }, + "n60": { + "$type": "color", + "$value": "#35A580", + "$extensions": { + "mode": { + "dark": "#44D2A3" + } + } + }, + "n70": { + "$type": "color", + "$value": "#2E8F6F", + "$extensions": { + "mode": { + "dark": "#4BE9B5" + } + } + }, + "n80": { + "$type": "color", + "$value": "#27795E", + "$extensions": { + "mode": { + "dark": "#52FFC6" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha80": 80 + } + } + ] + } + }, + "n90": { + "$type": "color", + "$value": "#20624C", + "$extensions": { + "mode": { + "dark": "#7AFFD3" + } + } + }, + "n95": { + "$type": "color", + "$value": "#184C3B", + "$extensions": { + "mode": { + "dark": "#A1FFE0" + } + } + }, + "n99": { + "$type": "color", + "$value": "#113529", + "$extensions": { + "mode": { + "dark": "#C9FFED" + } + } + }, + "n100": { + "$type": "color", + "$value": "#0A1F18", + "$extensions": { + "mode": { + "dark": "#F0FFFA" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/blue.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/blue.tokens.json new file mode 100644 index 0000000000..e9b59cb498 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/blue.tokens.json @@ -0,0 +1,166 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "blue": { + "$description": "Blue colors", + "n0": { + "$type": "color", + "$value": "#F0F8FF", + "$extensions": { + "mode": { + "dark": "#06101A" + } + } + }, + "n1": { + "$type": "color", + "$value": "#D6EBFF", + "$extensions": { + "mode": { + "dark": "#0B1D2E" + } + } + }, + "n5": { + "$type": "color", + "$value": "#BBDBF9", + "$extensions": { + "mode": { + "dark": "#112C46" + } + } + }, + "n10": { + "$type": "color", + "$value": "#A0CBF4", + "$extensions": { + "mode": { + "dark": "#194268" + } + } + }, + "n20": { + "$type": "color", + "$value": "#86BCEE", + "$extensions": { + "mode": { + "dark": "#205586" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n30": { + "$type": "color", + "$value": "#6BACE8", + "$extensions": { + "mode": { + "dark": "#2767A3" + } + } + }, + "n40": { + "$type": "color", + "$value": "#509CE3", + "$extensions": { + "mode": { + "dark": "#2E7AC0" + } + } + }, + "n50": { + "$type": "color", + "$value": "#358CDD", + "$extensions": { + "mode": { + "dark": "#358CDD" + } + } + }, + "n60": { + "$type": "color", + "$value": "#2E7AC0", + "$extensions": { + "mode": { + "dark": "#509CE3" + } + } + }, + "n70": { + "$type": "color", + "$value": "#2767A3", + "$extensions": { + "mode": { + "dark": "#6BACE8" + } + } + }, + "n80": { + "$type": "color", + "$value": "#205586", + "$extensions": { + "mode": { + "dark": "#86BCEE" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n90": { + "$type": "color", + "$value": "#194268", + "$extensions": { + "mode": { + "dark": "#A0CBF4" + } + } + }, + "n95": { + "$type": "color", + "$value": "#112C46", + "$extensions": { + "mode": { + "dark": "#BBDBF9" + } + } + }, + "n99": { + "$type": "color", + "$value": "#0B1D2E", + "$extensions": { + "mode": { + "dark": "#D6EBFF" + } + } + }, + "n100": { + "$type": "color", + "$value": "#06101A", + "$extensions": { + "mode": { + "dark": "#F0F8FF" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/celery.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/celery.tokens.json new file mode 100644 index 0000000000..b866c809d8 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/celery.tokens.json @@ -0,0 +1,166 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "celery": { + "$description": "Green Color Palette", + "n0": { + "$type": "color", + "$value": "#E9FCE3", + "$extensions": { + "mode": { + "dark": "#001A04" + } + } + }, + "n1": { + "$type": "color", + "$value": "#cdfcbf", + "$extensions": { + "mode": { + "dark": "#003007" + } + } + }, + "n5": { + "$type": "color", + "$value": "#aef69d", + "$extensions": { + "mode": { + "dark": "#00400a" + } + } + }, + "n10": { + "$type": "color", + "$value": "#96ee85", + "$extensions": { + "mode": { + "dark": "#00530d" + } + } + }, + "n20": { + "$type": "color", + "$value": "#72e06a", + "$extensions": { + "mode": { + "dark": "#00670f" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n30": { + "$type": "color", + "$value": "#4ecf50", + "$extensions": { + "mode": { + "dark": "#007c0f" + } + } + }, + "n40": { + "$type": "color", + "$value": "#27bb36", + "$extensions": { + "mode": { + "dark": "#009112" + } + } + }, + "n50": { + "$type": "color", + "$value": "#07a721", + "$extensions": { + "mode": { + "dark": "#07a721" + } + } + }, + "n60": { + "$type": "color", + "$value": "#009112", + "$extensions": { + "mode": { + "dark": "#27bb36" + } + } + }, + "n70": { + "$type": "color", + "$value": "#007c0f", + "$extensions": { + "mode": { + "dark": "#4ecf50" + } + } + }, + "n80": { + "$type": "color", + "$value": "#00670f", + "$extensions": { + "mode": { + "dark": "#72e06a" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n90": { + "$type": "color", + "$value": "#00530d", + "$extensions": { + "mode": { + "dark": "#96ee85" + } + } + }, + "n95": { + "$type": "color", + "$value": "#00400a", + "$extensions": { + "mode": { + "dark": "#aef69d" + } + } + }, + "n99": { + "$type": "color", + "$value": "#003007", + "$extensions": { + "mode": { + "dark": "#cdfcbf" + } + } + }, + "n100": { + "$type": "color", + "$value": "#001A04", + "$extensions": { + "mode": { + "dark": "#E9FCE3" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/green.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/green.tokens.json new file mode 100644 index 0000000000..678ed7c622 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/green.tokens.json @@ -0,0 +1,148 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "green": { + "$description": "Kadena Green Color Palette", + "n0": { + "$type": "color", + "$value": "#E9F8EF", + "$extensions": { + "mode": { + "dark": "#061A10" + } + } + }, + "n1": { + "$type": "color", + "$value": "#CEF8E0", + "$extensions": { + "mode": { + "dark": "#0A2E1D" + } + } + }, + "n5": { + "$type": "color", + "$value": "#B8E7CF", + "$extensions": { + "mode": { + "dark": "#153E2C" + } + } + }, + "n10": { + "$type": "color", + "$value": "#A2D5BE", + "$extensions": { + "mode": { + "dark": "#1F4F3C" + } + } + }, + "n20": { + "$type": "color", + "$value": "#8CC4AD", + "$extensions": { + "mode": { + "dark": "#2A5F4B" + } + } + }, + "n30": { + "$type": "color", + "$value": "#76B39B", + "$extensions": { + "mode": { + "dark": "#356F5A" + } + } + }, + "n40": { + "$type": "color", + "$value": "#60A18A", + "$extensions": { + "mode": { + "dark": "#3F806A" + } + } + }, + "n50": { + "$type": "color", + "$value": "#4A9079", + "$extensions": { + "mode": { + "dark": "#4A9079" + } + } + }, + "n60": { + "$type": "color", + "$value": "#3F806A", + "$extensions": { + "mode": { + "dark": "#60A18A" + } + } + }, + "n70": { + "$type": "color", + "$value": "#356F5A", + "$extensions": { + "mode": { + "dark": "#76B39B" + } + } + }, + "n80": { + "$type": "color", + "$value": "#2A5F4B", + "$extensions": { + "mode": { + "dark": "#8CC4AD" + } + } + }, + "n90": { + "$type": "color", + "$value": "#1F4F3C", + "$extensions": { + "mode": { + "dark": "#A2D5BE" + } + } + }, + "n95": { + "$type": "color", + "$value": "#153E2C", + "$extensions": { + "mode": { + "dark": "#B8E7CF" + } + } + }, + "n99": { + "$type": "color", + "$value": "#0A2E1D", + "$extensions": { + "mode": { + "dark": "#CEF8E0" + } + } + }, + "n100": { + "$type": "color", + "$value": "#061A10", + "$extensions": { + "mode": { + "dark": "#E9F8EF" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/magenta.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/magenta.tokens.json new file mode 100644 index 0000000000..6357099dc2 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/magenta.tokens.json @@ -0,0 +1,148 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "magenta": { + "$description": "Kadena Magenta Color Palette", + "n0": { + "$type": "color", + "$value": "#FFF7FA", + "$extensions": { + "mode": { + "dark": "#470820" + } + } + }, + "n1": { + "$type": "color", + "$value": "#FFEAF1", + "$extensions": { + "mode": { + "dark": "#660B2E" + } + } + }, + "n5": { + "$type": "color", + "$value": "#FBC7DA", + "$extensions": { + "mode": { + "dark": "#7B0D38" + } + } + }, + "n10": { + "$type": "color", + "$value": "#F6A4C3", + "$extensions": { + "mode": { + "dark": "#901041" + } + } + }, + "n20": { + "$type": "color", + "$value": "#F282AD", + "$extensions": { + "mode": { + "dark": "#A5124B" + } + } + }, + "n30": { + "$type": "color", + "$value": "#ED5F96", + "$extensions": { + "mode": { + "dark": "#BA1455" + } + } + }, + "n40": { + "$type": "color", + "$value": "#E93C7F", + "$extensions": { + "mode": { + "dark": "#CF175E" + } + } + }, + "n50": { + "$type": "color", + "$value": "#E41968", + "$extensions": { + "mode": { + "dark": "#E41968" + } + } + }, + "n60": { + "$type": "color", + "$value": "#CF175E", + "$extensions": { + "mode": { + "dark": "#E93C7F" + } + } + }, + "n70": { + "$type": "color", + "$value": "#BA1455", + "$extensions": { + "mode": { + "dark": "#ED5F96" + } + } + }, + "n80": { + "$type": "color", + "$value": "#A5124B", + "$extensions": { + "mode": { + "dark": "#F282AD" + } + } + }, + "n90": { + "$type": "color", + "$value": "#901041", + "$extensions": { + "mode": { + "dark": "#F6A4C3" + } + } + }, + "n95": { + "$type": "color", + "$value": "#7B0D38", + "$extensions": { + "mode": { + "dark": "#FBC7DA" + } + } + }, + "n99": { + "$type": "color", + "$value": "#660B2E", + "$extensions": { + "mode": { + "dark": "#FFEAF1" + } + } + }, + "n100": { + "$type": "color", + "$value": "#470820", + "$extensions": { + "mode": { + "dark": "#FFF7FA" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/orange.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/orange.tokens.json new file mode 100644 index 0000000000..94485beaed --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/orange.tokens.json @@ -0,0 +1,148 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "orange": { + "$description": "Kadena Orange Color Palette", + "n0": { + "$type": "color", + "$value": "#FFF7EB", + "$extensions": { + "mode": { + "dark": "#290E01" + } + } + }, + "n1": { + "$type": "color", + "$value": "#FFECCC", + "$extensions": { + "mode": { + "dark": "#491901" + } + } + }, + "n5": { + "$type": "color", + "$value": "#FFDFAD", + "$extensions": { + "mode": { + "dark": "#612300" + } + } + }, + "n10": { + "$type": "color", + "$value": "#FDD291", + "$extensions": { + "mode": { + "dark": "#7A2F00" + } + } + }, + "n20": { + "$type": "color", + "$value": "#FFBB63", + "$extensions": { + "mode": { + "dark": "#953D00" + } + } + }, + "n30": { + "$type": "color", + "$value": "#F5A655", + "$extensions": { + "mode": { + "dark": "#B14C00" + } + } + }, + "n40": { + "$type": "color", + "$value": "#EC9046", + "$extensions": { + "mode": { + "dark": "#CB5D00" + } + } + }, + "n50": { + "$type": "color", + "$value": "#E27B38", + "$extensions": { + "mode": { + "dark": "#E27B38" + } + } + }, + "n60": { + "$type": "color", + "$value": "#CB5D00", + "$extensions": { + "mode": { + "dark": "#EC9046" + } + } + }, + "n70": { + "$type": "color", + "$value": "#B14C00", + "$extensions": { + "mode": { + "dark": "#F5A655" + } + } + }, + "n80": { + "$type": "color", + "$value": "#953D00", + "$extensions": { + "mode": { + "dark": "#FFBB63" + } + } + }, + "n90": { + "$type": "color", + "$value": "#7A2F00", + "$extensions": { + "mode": { + "dark": "#FDD291" + } + } + }, + "n95": { + "$type": "color", + "$value": "#612300", + "$extensions": { + "mode": { + "dark": "#FFDFAD" + } + } + }, + "n99": { + "$type": "color", + "$value": "#491901", + "$extensions": { + "mode": { + "dark": "#FFECCC" + } + } + }, + "n100": { + "$type": "color", + "$value": "#290E01", + "$extensions": { + "mode": { + "dark": "#FFF7EB" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/red.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/red.tokens.json new file mode 100644 index 0000000000..6fec4c490a --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/red.tokens.json @@ -0,0 +1,166 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "red": { + "$description": "Red colors", + "n0": { + "$type": "color", + "$value": "#FFF5F5", + "$extensions": { + "mode": { + "dark": "#330000" + } + } + }, + "n1": { + "$type": "color", + "$value": "#FFEBE7", + "$extensions": { + "mode": { + "dark": "#590000" + } + } + }, + "n5": { + "$type": "color", + "$value": "#FFDDD6", + "$extensions": { + "mode": { + "dark": "#740000" + } + } + }, + "n10": { + "$type": "color", + "$value": "#FFCDC3", + "$extensions": { + "mode": { + "dark": "#930000" + } + } + }, + "n20": { + "$type": "color", + "$value": "#FFB7A9", + "$extensions": { + "mode": { + "dark": "#B40000" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n30": { + "$type": "color", + "$value": "#FF9B88", + "$extensions": { + "mode": { + "dark": "#D31510" + } + } + }, + "n40": { + "$type": "color", + "$value": "#FF7C65", + "$extensions": { + "mode": { + "dark": "#EA3829" + } + } + }, + "n50": { + "$type": "color", + "$value": "#F75C46", + "$extensions": { + "mode": { + "dark": "#F75C46" + } + } + }, + "n60": { + "$type": "color", + "$value": "#EA3829", + "$extensions": { + "mode": { + "dark": "#FF7C65" + } + } + }, + "n70": { + "$type": "color", + "$value": "#D31510", + "$extensions": { + "mode": { + "dark": "#FF9B88" + } + } + }, + "n80": { + "$type": "color", + "$value": "#B40000", + "$extensions": { + "mode": { + "dark": "#FFB7A9" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n90": { + "$type": "color", + "$value": "#930000", + "$extensions": { + "mode": { + "dark": "#FFCDC3" + } + } + }, + "n95": { + "$type": "color", + "$value": "#740000", + "$extensions": { + "mode": { + "dark": "#FFDDD6" + } + } + }, + "n99": { + "$type": "color", + "$value": "#590000", + "$extensions": { + "mode": { + "dark": "#FFEBE7" + } + } + }, + "n100": { + "$type": "color", + "$value": "#330000", + "$extensions": { + "mode": { + "dark": "#FFF5F5" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/palette/yellow.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/palette/yellow.tokens.json new file mode 100644 index 0000000000..d318da8e03 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/palette/yellow.tokens.json @@ -0,0 +1,166 @@ +{ + "kda": { + "foundation": { + "color": { + "palette": { + "yellow": { + "$description": "Yellow colors", + "n0": { + "$type": "color", + "$value": "#FBF8DD", + "$extensions": { + "mode": { + "dark": "#1A1100" + } + } + }, + "n1": { + "$type": "color", + "$value": "#FBF198", + "$extensions": { + "mode": { + "dark": "#362500" + } + } + }, + "n5": { + "$type": "color", + "$value": "#F8E750", + "$extensions": { + "mode": { + "dark": "#483300" + } + } + }, + "n10": { + "$type": "color", + "$value": "#F8D904", + "$extensions": { + "mode": { + "dark": "#5B4300" + } + } + }, + "n20": { + "$type": "color", + "$value": "#E8C600", + "$extensions": { + "mode": { + "dark": "#705300" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n30": { + "$type": "color", + "$value": "#D7B300", + "$extensions": { + "mode": { + "dark": "#856600" + } + } + }, + "n40": { + "$type": "color", + "$value": "#C49F00", + "$extensions": { + "mode": { + "dark": "#9B7800" + } + } + }, + "n50": { + "$type": "color", + "$value": "#B08C00", + "$extensions": { + "mode": { + "dark": "#B08C00" + } + } + }, + "n60": { + "$type": "color", + "$value": "#9B7800", + "$extensions": { + "mode": { + "dark": "#C49F00" + } + } + }, + "n70": { + "$type": "color", + "$value": "#856600", + "$extensions": { + "mode": { + "dark": "#D7B300" + } + } + }, + "n80": { + "$type": "color", + "$value": "#705300", + "$extensions": { + "mode": { + "dark": "#E8C600" + }, + "generators": [ + { + "type": "alpha", + "value": { + "@alpha20": 20, + "@alpha80": 80 + } + } + ] + } + }, + "n90": { + "$type": "color", + "$value": "#5B4300", + "$extensions": { + "mode": { + "dark": "#F8D904" + } + } + }, + "n95": { + "$type": "color", + "$value": "#483300", + "$extensions": { + "mode": { + "dark": "#F8E750" + } + } + }, + "n99": { + "$type": "color", + "$value": "#362500", + "$extensions": { + "mode": { + "dark": "#FBF198" + } + } + }, + "n100": { + "$type": "color", + "$value": "#1A1100", + "$extensions": { + "mode": { + "dark": "#FBF8DD" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/semantic/base.json b/toolkit/theme/design-system/tokens/foundation/color/semantic/base.json new file mode 100644 index 0000000000..5e14622943 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/semantic/base.json @@ -0,0 +1,11 @@ +{ + "kda": { + "foundation": { + "color": { + "semantic": { + "$description": "Colors to communicate purpose. They help users to convey messages." + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/semantic/categorical.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/semantic/categorical.tokens.json new file mode 100644 index 0000000000..17cae05661 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/semantic/categorical.tokens.json @@ -0,0 +1,187 @@ +{ + "kda": { + "foundation": { + "color": { + "categorical": { + "$description": "Colors intended for data visualisations. Adhere to the specified numerical order.", + "category1": { + "default": { + "$type": "color", + "$description": "Visualisation Color 1", + "$value": "#2898BD", + "$extensions": { + "mode": { + "dark": "#2898BD" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 1 Hover State", + "$value": "#227D9B", + "$extensions": { + "mode": { + "dark": "#42B2D7" + } + } + } + }, + "category2": { + "default": { + "$type": "color", + "$description": "Visualisation Color 2", + "$value": "#5E4DB2", + "$extensions": { + "mode": { + "dark": "#B8ACF6" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 2 Hover State", + "$value": "#352C63", + "$extensions": { + "mode": { + "dark": "#DFD8FD" + } + } + } + }, + "category3": { + "default": { + "$type": "color", + "$description": "Visualisation Color 3", + "$value": "#E56910", + "$extensions": { + "mode": { + "dark": "#E56910" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 3 Hover State", + "$value": "#C25100", + "$extensions": { + "mode": { + "dark": "#F38A3F" + } + } + } + }, + "category4": { + "default": { + "$type": "color", + "$description": "Visualisation Color 4", + "$value": "#943D73", + "$extensions": { + "mode": { + "dark": "#F797D2" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 4 Hover State", + "$value": "#50253F", + "$extensions": { + "mode": { + "dark": "#FDD0EC" + } + } + } + }, + "category5": { + "default": { + "$type": "color", + "$description": "Visualisation Color 5", + "$value": "#09326C", + "$extensions": { + "mode": { + "dark": "#CCE0FF" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 5 Hover State", + "$value": "#1C2B41", + "$extensions": { + "mode": { + "dark": "#E9F2FF" + } + } + } + }, + "category6": { + "default": { + "$type": "color", + "$description": "Visualisation Color 6", + "$value": "#8F7EE7", + "$extensions": { + "mode": { + "dark": "#8270DB" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 6 Hover State", + "$value": "#8270DB", + "$extensions": { + "mode": { + "dark": "#8F7EE7" + } + } + } + }, + "category7": { + "default": { + "$type": "color", + "$description": "Visualisation Color 7", + "$value": "#50253F", + "$extensions": { + "mode": { + "dark": "#FDD0EC" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 7 Hover State", + "$value": "#3D2232", + "$extensions": { + "mode": { + "dark": "#FFECF8" + } + } + } + }, + "category8": { + "default": { + "$type": "color", + "$description": "Visualisation Color 8", + "$value": "#A54800", + "$extensions": { + "mode": { + "dark": "#FEC195" + } + } + }, + "@hover": { + "$type": "color", + "$description": "Visualisation Color 8 Hover State", + "$value": "#702E00", + "$extensions": { + "mode": { + "dark": "#FEDEC8" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/semantic/info.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/semantic/info.tokens.json new file mode 100644 index 0000000000..994b0c42e9 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/semantic/info.tokens.json @@ -0,0 +1,88 @@ +{ + "kda": { + "foundation": { + "color": { + "semantic": { + "info": { + "n0": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n0}" + }, + "n1": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n1}" + }, + "n5": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n5}" + }, + "n10": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n10}" + }, + "n20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n20}" + }, + "n20@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n20@alpha20}" + }, + "n20@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n20@alpha80}" + }, + "n30": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n30}" + }, + "n40": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n40}" + }, + "n50": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n50}" + }, + "n60": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n60}" + }, + "n70": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n70}" + }, + "n80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n80}" + }, + "n80@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n80@alpha20}" + }, + "n80@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n80@alpha80}" + }, + "n90": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n90}" + }, + "n95": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n95}" + }, + "n99": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n99}" + }, + "n100": { + "$type": "color", + "$value": "{kda.foundation.color.palette.blue.n100}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/semantic/negative.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/semantic/negative.tokens.json new file mode 100644 index 0000000000..eb9b82897f --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/semantic/negative.tokens.json @@ -0,0 +1,88 @@ +{ + "kda": { + "foundation": { + "color": { + "semantic": { + "negative": { + "n0": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n0}" + }, + "n1": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n1}" + }, + "n5": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n5}" + }, + "n10": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n10}" + }, + "n20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n20}" + }, + "n20@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n20@alpha20}" + }, + "n20@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n20@alpha80}" + }, + "n30": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n30}" + }, + "n40": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n40}" + }, + "n50": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n50}" + }, + "n60": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n60}" + }, + "n70": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n70}" + }, + "n80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n80}" + }, + "n80@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n80@alpha20}" + }, + "n80@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n80@alpha80}" + }, + "n90": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n90}" + }, + "n95": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n95}" + }, + "n99": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n99}" + }, + "n100": { + "$type": "color", + "$value": "{kda.foundation.color.palette.red.n100}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/semantic/positive.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/semantic/positive.tokens.json new file mode 100644 index 0000000000..ff31b9417c --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/semantic/positive.tokens.json @@ -0,0 +1,88 @@ +{ + "kda": { + "foundation": { + "color": { + "semantic": { + "positive": { + "n0": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n0}" + }, + "n1": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n1}" + }, + "n5": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n5}" + }, + "n10": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n10}" + }, + "n20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n20}" + }, + "n20@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n20@alpha20}" + }, + "n20@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n20@alpha80}" + }, + "n30": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n30}" + }, + "n40": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n40}" + }, + "n50": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n50}" + }, + "n60": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n60}" + }, + "n70": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n70}" + }, + "n80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n80}" + }, + "n80@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n80@alpha20}" + }, + "n80@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n80@alpha80}" + }, + "n90": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n90}" + }, + "n95": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n95}" + }, + "n99": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n99}" + }, + "n100": { + "$type": "color", + "$value": "{kda.foundation.color.palette.celery.n100}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/semantic/warning.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/semantic/warning.tokens.json new file mode 100644 index 0000000000..f4fd7f14db --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/semantic/warning.tokens.json @@ -0,0 +1,88 @@ +{ + "kda": { + "foundation": { + "color": { + "semantic": { + "warning": { + "n0": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n0}" + }, + "n1": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n1}" + }, + "n5": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n5}" + }, + "n10": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n10}" + }, + "n20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n20}" + }, + "n20@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n20@alpha20}" + }, + "n20@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n20@alpha80}" + }, + "n30": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n30}" + }, + "n40": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n40}" + }, + "n50": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n50}" + }, + "n60": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n60}" + }, + "n70": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n70}" + }, + "n80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n80}" + }, + "n80@alpha20": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n80@alpha20}" + }, + "n80@alpha80": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n80@alpha80}" + }, + "n90": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n90}" + }, + "n95": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n95}" + }, + "n99": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n99}" + }, + "n100": { + "$type": "color", + "$value": "{kda.foundation.color.palette.yellow.n100}" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/color/text.tokens.json b/toolkit/theme/design-system/tokens/foundation/color/text.tokens.json new file mode 100644 index 0000000000..c2f045815f --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/color/text.tokens.json @@ -0,0 +1,366 @@ +{ + "kda": { + "foundation": { + "color": { + "text": { + "base": { + "default": { + "$description": "Use for primary text, such as body copy, sentence case headers.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha95}" + }, + "@init": { + "$description": "Use for primary text @init for buttons.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}" + }, + "@hover": { + "$description": "Use for text in a hover state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n95}" + }, + "@focus": { + "$description": "Use for text in a focus state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99}" + }, + "@active": { + "$description": "Use for text in a active state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}" + }, + "@disabled": { + "$description": "Use for text in a disabled state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha40}" + }, + "@selected": { + "$description": "Use for text in selected or opened states, such as tabs and dropdown buttons.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}" + }, + "inverse": { + "default": { + "$description": "Use for text on bold backgrounds.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha95}" + }, + "@init": { + "$description": "Use for primary text @init for buttons.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}" + }, + "@hover": { + "$description": "Use for text in a hover state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n5}" + }, + "@focus": { + "$description": "Use for text in a focus state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}" + }, + "@active": { + "$description": "Use for text in a active state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}" + }, + "@disabled": { + "$description": "Use for text in a disabled state.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha40}" + }, + "@selected": { + "$description": "Use for text in selected or opened states, such as tabs and dropdown buttons.", + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}" + } + } + }, + "subtle": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha80}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha95}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha95}" + } + } + }, + "subtlest": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha70}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha80}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha70}" + } + } + }, + "gray": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100@alpha40}" + }, + "lighter": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n60}" + }, + "bolder": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n80}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0@alpha40}" + }, + "lighter": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n40}" + }, + "bolder": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n20}" + } + } + }, + "brand": { + "wordmark": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutralwarm.n99}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutralwarm.n1}" + } + } + }, + "primary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n99}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n10}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n5}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.primary.n1}" + } + } + }, + "secondary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n90}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n99}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n10}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n5}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.brand.secondary.n1}" + } + } + } + }, + "accent": { + "primary": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n95}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n99}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n100}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n5}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n1}" + }, + "@active": { + "$type": "color", + "$value": "{kda.foundation.color.neutral.n0}" + } + } + } + }, + "semantic": { + "positive": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n99}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n100}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n100}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n1}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n0}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.positive.n0}" + } + } + }, + "negative": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n99}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n100}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n100}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n1}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n0}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.negative.n0}" + } + } + }, + "warning": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n99}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n100}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n100}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n1}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n0}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.warning.n0}" + } + } + }, + "info": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n99}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n100}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n100}" + }, + "inverse": { + "default": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n1}" + }, + "@hover": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n0}" + }, + "@focus": { + "$type": "color", + "$value": "{kda.foundation.color.semantic.info.n0}" + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/effect/blur.tokens.json b/toolkit/theme/design-system/tokens/foundation/effect/blur.tokens.json new file mode 100644 index 0000000000..cff00473a0 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/effect/blur.tokens.json @@ -0,0 +1,28 @@ +{ + "kda": { + "foundation": { + "effect": { + "defaultBlur": { + "$type": "composition", + "$title": "Default layer blur", + "$description": "This is the default layer blur description", + "$value": { + "radius": "{kda.foundation.size.n2}" + } + }, + "blur": [ + { + "$name": "layerBlur", + "$type": "composition", + "$title": "Layer Blur", + "$description": "This is the layer blur description", + "$value": { + "radius": "{kda.foundation.size.n3}", + "visible": true + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/effect/shadow.tokens.json b/toolkit/theme/design-system/tokens/foundation/effect/shadow.tokens.json new file mode 100644 index 0000000000..37434c238c --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/effect/shadow.tokens.json @@ -0,0 +1,76 @@ +{ + "kda": { + "foundation": { + "effect": { + "shadow": { + "level1": { + "$name": "level1", + "$type": "composition", + "$title": "Shadow Level 1", + "$description": "This is the shadow 1 description", + "$value": { + "color": { + "$type": "color", + "value": "#000000" + }, + "offsetX": { + "$type": "dimension", + "value": "4px" + }, + "offsetY": { + "$type": "dimension", + "value": "0.5rem" + }, + "blur": { + "$type": "dimension", + "value": "{kda.foundation.size.n2}" + }, + "spread": { + "$type": "dimension", + "value": "4px" + } + }, + "$extensions": { + "sort": ["offsetX", "offsetY", "blur", "spread", "color"] + } + }, + "level2": { + "$name": "level2", + "$type": "composition", + "$title": "Shadow Level 2", + "$description": "This is the shadow 2 description", + "$value": { + "color": "#000000", + "offsetX": "4rem", + "offsetY": "4rem", + "blur": { + "$type": "dimension", + "value": "{kda.foundation.size.n2}" + }, + "spread": "2rem" + }, + "$extensions": { + "sort": ["offsetX", "offsetY", "blur", "spread", "color"] + } + }, + "level3": { + "$name": "level3", + "$type": "composition", + "$title": "Shadow Level 3", + "$description": "This is the shadow 3 description updated", + "$value": { + "color": "#000000", + "offsetX": "0px", + "offsetY": "0px", + "blur": "{kda.foundation.size.n2}", + "spread": "24px" + }, + "$extensions": { + "sort": ["offsetX", "offsetY", "blur", "spread", "color"] + } + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/foundation/layout/content.tokens.json b/toolkit/theme/design-system/tokens/foundation/layout/content.tokens.json new file mode 100644 index 0000000000..89f396cc3b --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/layout/content.tokens.json @@ -0,0 +1,18 @@ +{ + "kda": { + "foundation": { + "layout": { + "content": { + "minWidth": { + "$type": "dimension", + "$value": "33.75rem" + }, + "maxWidth": { + "$type": "dimension", + "$value": "42.5rem" + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/radius.tokens.json b/toolkit/theme/design-system/tokens/foundation/radius.tokens.json new file mode 100644 index 0000000000..319c21a709 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/radius.tokens.json @@ -0,0 +1,52 @@ +{ + "kda": { + "foundation": { + "radius": { + "no": { + "$type": "dimension", + "$value": "0px" + }, + "xs": { + "$type": "dimension", + "$value": "2px" + }, + "sm": { + "$type": "dimension", + "$value": "4px" + }, + "md": { + "$type": "dimension", + "$value": "6px" + }, + "lg": { + "$type": "dimension", + "$value": "8px" + }, + "xl": { + "$type": "dimension", + "$value": "16px" + }, + "xxl": { + "$type": "dimension", + "$value": "24px" + }, + "xs-outline": { + "$type": "dimension", + "$value": "3px" + }, + "sm-outline": { + "$type": "dimension", + "$value": "5px" + }, + "md-outline": { + "$type": "dimension", + "$value": "7px" + }, + "round": { + "$type": "dimension", + "$value": "999rem" + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/foundation/screen.tokens.json b/toolkit/theme/design-system/tokens/foundation/screen.tokens.json new file mode 100644 index 0000000000..2f1fb8bbe5 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/screen.tokens.json @@ -0,0 +1,187 @@ +{ + "kda": { + "foundation": { + "screen": { + "resolutions": { + "$description": "Screen resolutions based on BrowserStack", + "width": { + "mobile": { + "apple": { + "iphone_se": { + "$type": "dimension", + "$value": 320 + }, + "iphone_8": { + "$type": "dimension", + "$value": 375 + }, + "iphone_11": { + "$type": "dimension", + "$value": 375 + }, + "iphone_11_pro": { + "$type": "dimension", + "$value": 414 + } + }, + "samsung": { + "galaxy_s9": { + "$type": "dimension", + "$value": 360 + } + } + }, + "tablet": { + "apple": { + "ipad_mini": { + "$type": "dimension", + "$value": 768 + }, + "ipad": { + "$type": "dimension", + "$value": 810 + }, + "ipad_pro": { + "$type": "dimension", + "$value": 1024 + } + } + }, + "laptop": { + "macBook_air": { + "$type": "dimension", + "$value": 1440 + }, + "macBook_pro_13": { + "$type": "dimension", + "$value": 1280 + }, + "macBook_pro_16": { + "$type": "dimension", + "$value": 3072 + } + }, + "desktop": { + "small": { + "$type": "dimension", + "$value": 1024 + }, + "widescreen": { + "$type": "dimension", + "$value": 1280 + }, + "hd": { + "$type": "dimension", + "$value": 1366 + }, + "full_hd": { + "$type": "dimension", + "$value": 1920 + }, + "2k": { + "$type": "dimension", + "$value": 2560 + }, + "ultra_wide": { + "$type": "dimension", + "$value": 3440 + }, + "4k": { + "$type": "dimension", + "$value": 3840 + } + } + }, + "height": { + "mobile": { + "apple": { + "iphone_se": { + "$type": "dimension", + "$value": 568 + }, + "iphone_8": { + "$type": "dimension", + "$value": 667 + }, + "iphone_11": { + "$type": "dimension", + "$value": 812 + }, + "iphone_11_pro": { + "$type": "dimension", + "$value": 896 + } + }, + "samsung": { + "galaxy_s9": { + "$type": "dimension", + "$value": 740 + } + } + }, + "tablet": { + "apple": { + "ipad_mini": { + "$type": "dimension", + "$value": 1024 + }, + "ipad": { + "$type": "dimension", + "$value": 1080 + }, + "ipad_pro": { + "$type": "dimension", + "$value": 1366 + } + } + }, + "laptop": { + "macBook_air": { + "$type": "dimension", + "$value": 900 + }, + "macBook_pro_13": { + "$type": "dimension", + "$value": 800 + }, + "macBook_pro_16": { + "$type": "dimension", + "$value": 1920 + } + }, + "desktop": { + "small": { + "$type": "dimension", + "$value": 768 + }, + "widescreen": { + "$type": "dimension", + "$value": 800 + }, + "hd": { + "$type": "dimension", + "$value": 768 + }, + "full_hd": { + "$type": "dimension", + "$value": 1080 + }, + "2k": { + "$type": "dimension", + "$value": 1440 + }, + "ultra_wide": { + "$type": "dimension", + "$value": 1440 + }, + "4k": { + "$type": "dimension", + "$value": 2160 + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/size.tokens.json b/toolkit/theme/design-system/tokens/foundation/size.tokens.json new file mode 100644 index 0000000000..9418dc9122 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/size.tokens.json @@ -0,0 +1,129 @@ +{ + "kda": { + "foundation": { + "size": { + "$description": "Size units for sizing and spacing elements", + "n0": { + "$type": "dimension", + "$value": 0 + }, + "n1": { + "$type": "dimension", + "$value": "0.25rem" + }, + "n2": { + "$type": "dimension", + "$value": "0.5rem" + }, + "n3": { + "$type": "dimension", + "$value": "0.75rem" + }, + "n4": { + "$type": "dimension", + "$value": "1rem" + }, + "n5": { + "$type": "dimension", + "$value": "1.25rem" + }, + "n6": { + "$type": "dimension", + "$value": "1.5rem" + }, + "n7": { + "$type": "dimension", + "$value": "1.75rem" + }, + "n8": { + "$type": "dimension", + "$value": "2rem" + }, + "n9": { + "$type": "dimension", + "$value": "2.25rem" + }, + "n10": { + "$type": "dimension", + "$value": "2.5rem" + }, + "n11": { + "$type": "dimension", + "$value": "2.75rem" + }, + "n12": { + "$type": "dimension", + "$value": "3rem" + }, + "n13": { + "$type": "dimension", + "$value": "3.25rem" + }, + "n14": { + "$type": "dimension", + "$value": "3.5rem" + }, + "n15": { + "$type": "dimension", + "$value": "3.75rem" + }, + "n16": { + "$type": "dimension", + "$value": "4rem" + }, + "n17": { + "$type": "dimension", + "$value": "4.25rem" + }, + "n18": { + "$type": "dimension", + "$value": "4.5rem" + }, + "n19": { + "$type": "dimension", + "$value": "4.75rem" + }, + "n20": { + "$type": "dimension", + "$value": "5rem" + }, + "n24": { + "$type": "dimension", + "$value": "6rem" + }, + "n25": { + "$type": "dimension", + "$value": "6.25rem" + }, + "n30": { + "$type": "dimension", + "$value": "7.5rem" + }, + "n32": { + "$type": "dimension", + "$value": "8rem" + }, + "n35": { + "$type": "dimension", + "$value": "8.75rem" + }, + "n40": { + "$type": "dimension", + "$value": "10rem" + }, + "n48": { + "$type": "dimension", + "$value": "12rem" + }, + "n56": { + "$type": "dimension", + "$value": "14rem" + }, + "n64": { + "$type": "dimension", + "$value": "16rem" + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/spacing.tokens.json b/toolkit/theme/design-system/tokens/foundation/spacing.tokens.json new file mode 100644 index 0000000000..0c311d0dfe --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/spacing.tokens.json @@ -0,0 +1,164 @@ +{ + "kda": { + "foundation": { + "spacing": { + "no": { + "$type": "dimension", + "$value": "{kda.foundation.size.n0}" + }, + "xxs": { + "$type": "dimension", + "$value": "0.125rem" + }, + "xs": { + "$type": "dimension", + "$value": "{kda.foundation.size.n1}" + }, + "sm": { + "$type": "dimension", + "$value": "{kda.foundation.size.n2}" + }, + "md": { + "$type": "dimension", + "$value": "{kda.foundation.size.n4}" + }, + "lg": { + "$type": "dimension", + "$value": "{kda.foundation.size.n6}" + }, + "xl": { + "$type": "dimension", + "$value": "{kda.foundation.size.n7}" + }, + "xxl": { + "$type": "dimension", + "$value": "{kda.foundation.size.n9}" + }, + "xxxl": { + "$type": "dimension", + "$value": "{kda.foundation.size.n10}" + }, + "n0": { + "$type": "dimension", + "$value": 0 + }, + "n1": { + "$type": "dimension", + "$value": "{kda.foundation.size.n1}" + }, + "n2": { + "$type": "dimension", + "$value": "{kda.foundation.size.n2}" + }, + "n3": { + "$type": "dimension", + "$value": "{kda.foundation.size.n3}" + }, + "n4": { + "$type": "dimension", + "$value": "{kda.foundation.size.n4}" + }, + "n5": { + "$type": "dimension", + "$value": "{kda.foundation.size.n5}" + }, + "n6": { + "$type": "dimension", + "$value": "{kda.foundation.size.n6}" + }, + "n7": { + "$type": "dimension", + "$value": "{kda.foundation.size.n7}" + }, + "n8": { + "$type": "dimension", + "$value": "{kda.foundation.size.n8}" + }, + "n9": { + "$type": "dimension", + "$value": "{kda.foundation.size.n9}" + }, + "n10": { + "$type": "dimension", + "$value": "{kda.foundation.size.n10}" + }, + "n11": { + "$type": "dimension", + "$value": "{kda.foundation.size.n11}" + }, + "n12": { + "$type": "dimension", + "$value": "{kda.foundation.size.n12}" + }, + "n13": { + "$type": "dimension", + "$value": "{kda.foundation.size.n13}" + }, + "n14": { + "$type": "dimension", + "$value": "{kda.foundation.size.n14}" + }, + "n15": { + "$type": "dimension", + "$value": "{kda.foundation.size.n15}" + }, + "n16": { + "$type": "dimension", + "$value": "{kda.foundation.size.n16}" + }, + "n17": { + "$type": "dimension", + "$value": "{kda.foundation.size.n17}" + }, + "n18": { + "$type": "dimension", + "$value": "{kda.foundation.size.n18}" + }, + "n19": { + "$type": "dimension", + "$value": "{kda.foundation.size.n19}" + }, + "n20": { + "$type": "dimension", + "$value": "{kda.foundation.size.n20}" + }, + "n24": { + "$type": "dimension", + "$value": "{kda.foundation.size.n24}" + }, + "n25": { + "$type": "dimension", + "$value": "{kda.foundation.size.n25}" + }, + "n30": { + "$type": "dimension", + "$value": "{kda.foundation.size.n30}" + }, + "n32": { + "$type": "dimension", + "$value": "{kda.foundation.size.n32}" + }, + "n35": { + "$type": "dimension", + "$value": "{kda.foundation.size.n35}" + }, + "n40": { + "$type": "dimension", + "$value": "{kda.foundation.size.n40}" + }, + "n48": { + "$type": "dimension", + "$value": "{kda.foundation.size.n48}" + }, + "n56": { + "$type": "dimension", + "$value": "{kda.foundation.size.n56}" + }, + "n64": { + "$type": "dimension", + "$value": "{kda.foundation.size.n64}" + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/transition.tokens.json b/toolkit/theme/design-system/tokens/foundation/transition.tokens.json new file mode 100644 index 0000000000..b793ffa4c2 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/transition.tokens.json @@ -0,0 +1,34 @@ +{ + "kda": { + "foundation": { + "transition": { + "delay": { + "none": { + "$value": "0ms", + "$type": "duration" + } + }, + "duration": { + "base": { + "$value": "400ms", + "$type": "duration" + }, + "d200": { + "$value": "200ms", + "$type": "duration" + } + }, + "animation": { + "easeOutSine": { + "$type": "transition", + "$value": "{kda.foundation.transition.duration.d200} cubic-bezier(0.61, 1, 0.88, 1)" + }, + "easeOutCubic": { + "$type": "transition", + "$value": "{kda.foundation.transition.duration.d200} cubic-bezier(0.33, 1, 0.68, 1)" + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/typography/family.tokens.json b/toolkit/theme/design-system/tokens/foundation/typography/family.tokens.json new file mode 100644 index 0000000000..5c36d1e5dd --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/typography/family.tokens.json @@ -0,0 +1,18 @@ +{ + "kda": { + "foundation": { + "typography": { + "family": { + "primaryFont": { + "$value": "Inter", + "$type": "fontFamily" + }, + "monospaceFont": { + "$value": "Kode Mono", + "$type": "fontFamily" + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/foundation/typography/fontSize.tokens.json b/toolkit/theme/design-system/tokens/foundation/typography/fontSize.tokens.json new file mode 100644 index 0000000000..ba2c63f909 --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/typography/fontSize.tokens.json @@ -0,0 +1,82 @@ +{ + "kda": { + "foundation": { + "typography": { + "fontSize": { + "xxs": { + "$type": "dimension", + "$value": "0.6875rem" + }, + "xs": { + "$type": "dimension", + "$value": "0.75rem" + }, + "sm": { + "$type": "dimension", + "$value": "0.875rem" + }, + "base": { + "$type": "dimension", + "$value": "{kda.foundation.size.n4}" + }, + "md": { + "$type": "dimension", + "$value": "1.125rem" + }, + "lg": { + "$type": "dimension", + "$value": "1.25rem" + }, + "xl": { + "$type": "dimension", + "$value": "1.5rem" + }, + "2xl": { + "$type": "dimension", + "$value": "1.75rem" + }, + "3xl": { + "$type": "dimension", + "$value": "2rem" + }, + "4xl": { + "$type": "dimension", + "$value": "2.25rem" + }, + "5xl": { + "$type": "dimension", + "$value": "2.5rem" + }, + "6xl": { + "$type": "dimension", + "$value": "2.75rem" + }, + "7xl": { + "$type": "dimension", + "$value": "3rem" + }, + "8xl": { + "$type": "dimension", + "$value": "3.25rem" + }, + "9xl": { + "$type": "dimension", + "$value": "3.75rem" + }, + "10xl": { + "$type": "dimension", + "$value": "4.5rem" + }, + "11xl": { + "$type": "dimension", + "$value": "5rem" + }, + "12xl": { + "$type": "dimension", + "$value": "5.25rem" + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/typography/lineHeight.tokens.json b/toolkit/theme/design-system/tokens/foundation/typography/lineHeight.tokens.json new file mode 100644 index 0000000000..b4a8c8ef7d --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/typography/lineHeight.tokens.json @@ -0,0 +1,42 @@ +{ + "kda": { + "foundation": { + "typography": { + "lineHeight": { + "7xl": { + "$value": "3rem", + "$type": "dimension" + }, + "4xl": { + "$value": "2.25rem", + "$type": "dimension" + }, + "3xl": { + "$value": "2rem", + "$type": "dimension" + }, + "2xl": { + "$value": "1.75rem", + "$type": "dimension" + }, + "xl": { + "$value": "1.5rem", + "$type": "dimension" + }, + "base": { + "$value": "1.25rem", + "$type": "dimension" + }, + "md": { + "$value": "1rem", + "$type": "dimension" + }, + "sm": { + "$value": "0.875rem", + "$type": "dimension" + } + } + } + } + } +} \ No newline at end of file diff --git a/toolkit/theme/design-system/tokens/foundation/typography/weight.tokens.json b/toolkit/theme/design-system/tokens/foundation/typography/weight.tokens.json new file mode 100644 index 0000000000..5e5570634c --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/typography/weight.tokens.json @@ -0,0 +1,77 @@ +{ + "kda": { + "foundation": { + "typography": { + "weight": { + "primaryFont": { + "light": { + "$value": 300, + "$extensions": { + "weightTag": "Light" + }, + "$type": "fontWeight" + }, + "regular": { + "$value": 400, + "$extensions": { + "weightTag": "Regular" + }, + "$type": "fontWeight" + }, + "medium": { + "$value": 500, + "$extensions": { + "weightTag": "Medium" + }, + "$type": "fontWeight" + }, + "semiBold": { + "$value": 600, + "$extensions": { + "weightTag": "SemiBold" + }, + "$type": "fontWeight" + }, + "bold": { + "$value": 700, + "$extensions": { + "weightTag": "Bold" + }, + "$type": "fontWeight" + } + }, + "monospaceFont": { + "regular": { + "$value": 400, + "$extensions": { + "weightTag": "Regular" + }, + "$type": "fontWeight" + }, + "medium": { + "$value": 500, + "$extensions": { + "weightTag": "Medium" + }, + "$type": "fontWeight" + }, + "semiBold": { + "$value": 600, + "$extensions": { + "weightTag": "SemiBold" + }, + "$type": "fontWeight" + }, + "bold": { + "$value": 700, + "$extensions": { + "weightTag": "Bold" + }, + "$type": "fontWeight" + } + } + } + } + } + } +} diff --git a/toolkit/theme/design-system/tokens/foundation/zindex.tokens.json b/toolkit/theme/design-system/tokens/foundation/zindex.tokens.json new file mode 100644 index 0000000000..f899a7862e --- /dev/null +++ b/toolkit/theme/design-system/tokens/foundation/zindex.tokens.json @@ -0,0 +1,52 @@ +{ + "kda": { + "foundation": { + "zIndex": { + "deepdive": { + "$type": "number", + "$value": -99999 + }, + "default": { + "$type": "number", + "$value": 1 + }, + "dialog": { + "$type": "number", + "$value": 6000 + }, + "surface": { + "$type": "number", + "$value": 4 + }, + "dropdown": { + "$type": "number", + "$value": 7000 + }, + "modal": { + "$type": "number", + "$value": 9000 + }, + "overlay": { + "$type": "number", + "$value": 8000 + }, + "popup": { + "$type": "number", + "$value": 5000 + }, + "spinner": { + "$type": "number", + "$value": 9050 + }, + "sticky": { + "$type": "number", + "$value": 100 + }, + "toast": { + "$type": "number", + "$value": 10000 + } + } + } + } +} diff --git a/toolkit/theme/foundations/colors.ts b/toolkit/theme/foundations/colors.ts index a957d1c37c..4a05d9830d 100644 --- a/toolkit/theme/foundations/colors.ts +++ b/toolkit/theme/foundations/colors.ts @@ -1,63 +1,69 @@ +import KDA from './kda'; + +const { + light: lightTheme, +} = KDA; + const colors = { green: { - '50': { value: '#F0FFF4' }, - '100': { value: '#C6F6D5' }, - '200': { value: '#9AE6B4' }, - '300': { value: '#68D391' }, - '400': { value: '#48BB78' }, - '500': { value: '#38A169' }, - '600': { value: '#25855A' }, - '700': { value: '#276749' }, - '800': { value: '#22543D' }, - '900': { value: '#1C4532' }, + '50': { value: lightTheme.kda.foundation.color.palette.green.n0 }, + '100': { value: lightTheme.kda.foundation.color.palette.green.n10 }, + '200': { value: lightTheme.kda.foundation.color.palette.green.n20 }, + '300': { value: lightTheme.kda.foundation.color.palette.green.n30 }, + '400': { value: lightTheme.kda.foundation.color.palette.green.n40 }, + '500': { value: lightTheme.kda.foundation.color.palette.green.n50 }, + '600': { value: lightTheme.kda.foundation.color.palette.green.n60 }, + '700': { value: lightTheme.kda.foundation.color.palette.green.n70 }, + '800': { value: lightTheme.kda.foundation.color.palette.green.n80 }, + '900': { value: lightTheme.kda.foundation.color.palette.green.n100 }, }, blue: { - '50': { value: '#EBF8FF' }, - '100': { value: '#BEE3F8' }, - '200': { value: '#90CDF4' }, - '300': { value: '#63B3ED' }, - '400': { value: '#4299E1' }, - '500': { value: '#3182CE' }, - '600': { value: '#2B6CB0' }, - '700': { value: '#2C5282' }, - '800': { value: '#2A4365' }, - '900': { value: '#1A365D' }, + '50': { value: lightTheme.kda.foundation.color.palette.aqua.n0 }, + '100': { value: lightTheme.kda.foundation.color.palette.aqua.n10 }, + '200': { value: lightTheme.kda.foundation.color.palette.aqua.n20 }, + '300': { value: lightTheme.kda.foundation.color.palette.aqua.n30 }, + '400': { value: lightTheme.kda.foundation.color.palette.aqua.n40 }, + '500': { value: lightTheme.kda.foundation.color.palette.aqua.n50 }, + '600': { value: lightTheme.kda.foundation.color.palette.aqua.n60 }, + '700': { value: lightTheme.kda.foundation.color.palette.aqua.n70 }, + '800': { value: lightTheme.kda.foundation.color.palette.aqua.n80 }, + '900': { value: lightTheme.kda.foundation.color.palette.aqua.n100 }, }, red: { - '50': { value: '#FFF5F5' }, - '100': { value: '#FED7D7' }, - '200': { value: '#FEB2B2' }, - '300': { value: '#FC8181' }, - '400': { value: '#F56565' }, - '500': { value: '#E53E3E' }, - '600': { value: '#C53030' }, - '700': { value: '#9B2C2C' }, - '800': { value: '#822727' }, - '900': { value: '#63171B' }, + '50': { value: lightTheme.kda.foundation.color.palette.red.n0 }, + '100': { value: lightTheme.kda.foundation.color.palette.red.n10 }, + '200': { value: lightTheme.kda.foundation.color.palette.red.n20 }, + '300': { value: lightTheme.kda.foundation.color.palette.red.n30 }, + '400': { value: lightTheme.kda.foundation.color.palette.red.n40 }, + '500': { value: lightTheme.kda.foundation.color.palette.red.n50 }, + '600': { value: lightTheme.kda.foundation.color.palette.red.n60 }, + '700': { value: lightTheme.kda.foundation.color.palette.red.n70 }, + '800': { value: lightTheme.kda.foundation.color.palette.red.n80 }, + '900': { value: lightTheme.kda.foundation.color.palette.red.n100 }, }, orange: { - '50': { value: '#FFFAF0' }, - '100': { value: '#FEEBCB' }, - '200': { value: '#FBD38D' }, - '300': { value: '#F6AD55' }, - '400': { value: '#ED8936' }, - '500': { value: '#DD6B20' }, - '600': { value: '#C05621' }, - '700': { value: '#9C4221' }, - '800': { value: '#7B341E' }, - '900': { value: '#652B19' }, + '50': { value: lightTheme.kda.foundation.color.palette.orange.n0 }, + '100': { value: lightTheme.kda.foundation.color.palette.orange.n10 }, + '200': { value: lightTheme.kda.foundation.color.palette.orange.n20 }, + '300': { value: lightTheme.kda.foundation.color.palette.orange.n30 }, + '400': { value: lightTheme.kda.foundation.color.palette.orange.n40 }, + '500': { value: lightTheme.kda.foundation.color.palette.orange.n50 }, + '600': { value: lightTheme.kda.foundation.color.palette.orange.n60 }, + '700': { value: lightTheme.kda.foundation.color.palette.orange.n70 }, + '800': { value: lightTheme.kda.foundation.color.palette.orange.n80 }, + '900': { value: lightTheme.kda.foundation.color.palette.orange.n100 }, }, yellow: { - '50': { value: '#FFFFF0' }, - '100': { value: '#FEFCBF' }, - '200': { value: '#FAF089' }, - '300': { value: '#F6E05E' }, - '400': { value: '#ECC94B' }, - '500': { value: '#D69E2E' }, - '600': { value: '#B7791F' }, - '700': { value: '#975A16' }, - '800': { value: '#744210' }, - '900': { value: '#5F370E' }, + '50': { value: lightTheme.kda.foundation.color.palette.yellow.n0 }, + '100': { value: lightTheme.kda.foundation.color.palette.yellow.n10 }, + '200': { value: lightTheme.kda.foundation.color.palette.yellow.n20 }, + '300': { value: lightTheme.kda.foundation.color.palette.yellow.n30 }, + '400': { value: lightTheme.kda.foundation.color.palette.yellow.n40 }, + '500': { value: lightTheme.kda.foundation.color.palette.yellow.n50 }, + '600': { value: lightTheme.kda.foundation.color.palette.yellow.n60 }, + '700': { value: lightTheme.kda.foundation.color.palette.yellow.n70 }, + '800': { value: lightTheme.kda.foundation.color.palette.yellow.n80 }, + '900': { value: lightTheme.kda.foundation.color.palette.yellow.n100 }, }, gray: { '50': { value: '#F7FAFC' }, @@ -84,16 +90,16 @@ const colors = { '900': { value: '#1D4044' }, }, cyan: { - '50': { value: '#EDFDFD' }, - '100': { value: '#C4F1F9' }, - '200': { value: '#9DECF9' }, - '300': { value: '#76E4F7' }, - '400': { value: '#0BC5EA' }, - '500': { value: '#00B5D8' }, - '600': { value: '#00A3C4' }, - '700': { value: '#0987A0' }, - '800': { value: '#086F83' }, - '900': { value: '#065666' }, + '50': { value: lightTheme.kda.foundation.color.palette.blue.n0 }, + '100': { value: lightTheme.kda.foundation.color.palette.blue.n10 }, + '200': { value: lightTheme.kda.foundation.color.palette.blue.n20 }, + '300': { value: lightTheme.kda.foundation.color.palette.blue.n30 }, + '400': { value: lightTheme.kda.foundation.color.palette.blue.n40 }, + '500': { value: lightTheme.kda.foundation.color.palette.blue.n50 }, + '600': { value: lightTheme.kda.foundation.color.palette.blue.n60 }, + '700': { value: lightTheme.kda.foundation.color.palette.blue.n70 }, + '800': { value: lightTheme.kda.foundation.color.palette.blue.n80 }, + '900': { value: lightTheme.kda.foundation.color.palette.blue.n100 }, }, purple: { '50': { value: '#FAF5FF' }, diff --git a/toolkit/theme/foundations/kda.ts b/toolkit/theme/foundations/kda.ts new file mode 100644 index 0000000000..b23f6ec917 --- /dev/null +++ b/toolkit/theme/foundations/kda.ts @@ -0,0 +1,9 @@ +import dark from '../../theme/design-system/dist/js/tokens.dark.config'; +import light from '../../theme/design-system/dist/js/tokens.light.config'; + +const KDATokens = { + dark, + light, +}; + +export default KDATokens; diff --git a/toolkit/theme/foundations/semanticTokens.ts b/toolkit/theme/foundations/semanticTokens.ts index 44bf221c45..d7707e636f 100644 --- a/toolkit/theme/foundations/semanticTokens.ts +++ b/toolkit/theme/foundations/semanticTokens.ts @@ -1,15 +1,23 @@ import type { ThemingConfig } from '@chakra-ui/react'; -import config from 'configs/app'; +import KDA from './kda'; -const heroBannerButton = config.UI.homepage.heroBanner?.button; +const { + dark: darkTheme, + light: lightTheme, +} = KDA; const semanticTokens: ThemingConfig['semanticTokens'] = { colors: { button: { outline: { fg: { - DEFAULT: { value: { _light: '{colors.blue.600}', _dark: '{colors.blue.600}' } }, + DEFAULT: { + value: { + _light: lightTheme.kda.foundation.color.text.base['@init'], + _dark: darkTheme.kda.foundation.color.text.base['@init'], + }, + }, }, }, subtle: { @@ -80,40 +88,40 @@ const semanticTokens: ThemingConfig['semanticTokens'] = { bg: { DEFAULT: { value: { - _light: heroBannerButton?._default?.background?.[0] || '{colors.blue.600}', - _dark: heroBannerButton?._default?.background?.[1] || heroBannerButton?._default?.background?.[0] || '{colors.blue.600}', + _light: lightTheme.kda.explorer.hero.banner.button.default.background, + _dark: darkTheme.kda.explorer.hero.banner.button.default.background, }, }, hover: { value: { - _light: heroBannerButton?._hover?.background?.[0] || '{colors.blue.400}', - _dark: heroBannerButton?._hover?.background?.[1] || heroBannerButton?._hover?.background?.[0] || '{colors.blue.400}', + _light: lightTheme.kda.explorer.hero.banner.button[ '@hover' ].background, + _dark: darkTheme.kda.explorer.hero.banner.button[ '@hover' ].background, }, }, selected: { value: { - _light: heroBannerButton?._selected?.background?.[0] || '{colors.blue.50}', - _dark: heroBannerButton?._selected?.background?.[1] || heroBannerButton?._selected?.background?.[0] || '{colors.blue.50}', + _light: lightTheme.kda.explorer.hero.banner.button[ '@active' ].background, + _dark: darkTheme.kda.explorer.hero.banner.button[ '@active' ].background, }, }, }, fg: { DEFAULT: { value: { - _light: heroBannerButton?._default?.text_color?.[0] || '{colors.white}', - _dark: heroBannerButton?._default?.text_color?.[1] || heroBannerButton?._default?.text_color?.[0] || '{colors.white}', + _light: lightTheme.kda.explorer.hero.banner.button.default.surface, + _dark: darkTheme.kda.explorer.hero.banner.button.default.surface, }, }, hover: { value: { - _light: heroBannerButton?._hover?.text_color?.[0] || '{colors.white}', - _dark: heroBannerButton?._hover?.text_color?.[1] || heroBannerButton?._hover?.text_color?.[0] || '{colors.white}', + _light: lightTheme.kda.explorer.hero.banner.button[ '@hover' ].surface, + _dark: darkTheme.kda.explorer.hero.banner.button[ '@hover' ].surface, }, }, selected: { value: { - _light: heroBannerButton?._selected?.text_color?.[0] || '{colors.blackAlpha.800}', - _dark: heroBannerButton?._selected?.text_color?.[1] || heroBannerButton?._selected?.text_color?.[0] || '{colors.blackAlpha.800}', + _light: lightTheme.kda.explorer.hero.banner.button[ '@active' ].surface, + _dark: darkTheme.kda.explorer.hero.banner.button[ '@active' ].surface, }, }, }, @@ -126,11 +134,26 @@ const semanticTokens: ThemingConfig['semanticTokens'] = { }, link: { primary: { - DEFAULT: { value: { _light: '{colors.blue.600}', _dark: '{colors.blue.300}' } }, - hover: { value: { _light: '{colors.blue.400}' } }, + DEFAULT: { + value: { + _light: lightTheme.kda.foundation.color.link.base.default, + _dark: darkTheme.kda.foundation.color.link.base.default, + }, + }, + hover: { + value: { + _light: lightTheme.kda.foundation.color.link.base['@hover'], + _dark: darkTheme.kda.foundation.color.link.base['@hover'], + }, + }, }, secondary: { - DEFAULT: { value: { _light: '{colors.gray.500}', _dark: '{colors.gray.400}' } }, + DEFAULT: { + value: { + _light: lightTheme.kda.foundation.color.text.brand.secondary.default, + _dark: darkTheme.kda.foundation.color.text.brand.secondary.default, + }, + }, }, underlaid: { bg: { value: { _light: '{colors.gray.100}', _dark: '{colors.gray.800}' } }, @@ -141,18 +164,53 @@ const semanticTokens: ThemingConfig['semanticTokens'] = { }, navigation: { fg: { - DEFAULT: { value: { _light: '{colors.gray.600}', _dark: '{colors.gray.400}' } }, - selected: { value: { _light: '{colors.blue.700}', _dark: '{colors.gray.50}' } }, - hover: { value: { _light: '{colors.link.primary.hover}' } }, - active: { value: { _light: '{colors.link.primary.hover}' } }, + DEFAULT: { + value: { + _light: lightTheme.kda.explorer.navigation.surface.text.default, + _dark: darkTheme.kda.explorer.navigation.surface.text.default, + }, + }, + selected: { + value: { + _light: lightTheme.kda.explorer.navigation.surface.text['@selected'], + _dark: darkTheme.kda.explorer.navigation.surface.text['@selected'], + }, + }, + hover: { + value: { + _light: lightTheme.kda.foundation.color.link.base['@hover'], + _dark: darkTheme.kda.foundation.color.link.base['@hover'], + }, + }, + active: { + value: { + _light: lightTheme.kda.foundation.color.link.base['@focus'], + _dark: darkTheme.kda.foundation.color.link.base['@focus'], + }, + }, }, bg: { - selected: { value: { _light: '{colors.blue.50}', _dark: '{colors.gray.800}' } }, - group: { value: { _light: '{colors.white}', _dark: '{colors.black}' } }, + selected: { + value: { + _light: lightTheme.kda.explorer.navigation.background['@active'], + _dark: darkTheme.kda.explorer.navigation.background['@active'], + }, + }, + group: { + value: { + _light: lightTheme.kda.explorer.navigation.background['@active'], + _dark: darkTheme.kda.explorer.navigation.background['@active'], + }, + }, }, }, menu: { - DEFAULT: { value: { _light: '{colors.blackAlpha.800}', _dark: '{colors.whiteAlpha.800}' } }, + DEFAULT: { + value: { + _light: lightTheme.kda.explorer.navigation.background['@active'], + _dark: darkTheme.kda.explorer.navigation.background['@active'], + }, + }, }, }, tooltip: { @@ -227,10 +285,20 @@ const semanticTokens: ThemingConfig['semanticTokens'] = { }, alert: { fg: { - DEFAULT: { value: { _light: '{colors.blackAlpha.800}', _dark: '{colors.whiteAlpha.800}' } }, + DEFAULT: { + value: { + _light: lightTheme.kda.explorer.toast.surface.text.default, + _dark: darkTheme.kda.explorer.toast.surface.text.default, + }, + }, }, bg: { - info: { value: { _light: '{colors.blackAlpha.50}', _dark: '{colors.whiteAlpha.100}' } }, + info: { + value: { + _light: lightTheme.kda.explorer.toast.background.semantic.info, + _dark: darkTheme.kda.explorer.toast.background.semantic.info, + }, + }, warning: { value: { _light: '{colors.orange.100}', _dark: '{colors.orange.800/60}' } }, warning_table: { value: { _light: '{colors.orange.50}', _dark: '{colors.orange.800/60}' } }, success: { value: { _light: '{colors.green.100}', _dark: '{colors.green.900}' } }, @@ -242,12 +310,42 @@ const semanticTokens: ThemingConfig['semanticTokens'] = { DEFAULT: { value: '{colors.alert.fg}' }, }, bg: { - DEFAULT: { value: '{colors.alert.bg.info}' }, - info: { value: { _light: '{colors.blue.100}', _dark: '{colors.blue.900}' } }, - warning: { value: '{colors.alert.bg.warning}' }, - success: { value: '{colors.alert.bg.success}' }, - error: { value: '{colors.alert.bg.error}' }, - loading: { value: { _light: '{colors.blue.100}', _dark: '{colors.blue.900}' } }, + DEFAULT: { + value: { + _light: lightTheme.kda.explorer.toast.background.semantic.info, + _dark: darkTheme.kda.explorer.toast.background.semantic.info, + }, + }, + info: { + value: { + _light: lightTheme.kda.explorer.toast.background.semantic.info, + _dark: darkTheme.kda.explorer.toast.background.semantic.info, + }, + }, + warning: { + value: { + _light: lightTheme.kda.explorer.toast.background.semantic.warning, + _dark: darkTheme.kda.explorer.toast.background.semantic.warning, + }, + }, + success: { + value: { + _light: lightTheme.kda.explorer.toast.background.semantic.positive, + _dark: darkTheme.kda.explorer.toast.background.semantic.positive, + }, + }, + error: { + value: { + _light: lightTheme.kda.explorer.toast.background.semantic.negative, + _dark: darkTheme.kda.explorer.toast.background.semantic.negative, + }, + }, + loading: { + value: { + _light: lightTheme.kda.explorer.toast.loading.default, + _dark: darkTheme.kda.explorer.toast.loading.default, + }, + }, }, }, input: { @@ -262,10 +360,20 @@ const semanticTokens: ThemingConfig['semanticTokens'] = { border: { DEFAULT: { value: { _light: '{colors.gray.100}', _dark: '{colors.gray.700}' } }, hover: { value: { _light: '{colors.gray.200}', _dark: '{colors.gray.500}' } }, - focus: { value: '{colors.blue.400}' }, + focus: { + value: { + _light: lightTheme.kda.explorer.input.border.color['@focus'], + _dark: darkTheme.kda.explorer.input.border.color['@focus'], + }, + }, filled: { value: { _light: '{colors.gray.100}', _dark: '{colors.gray.700}' } }, readOnly: { value: { _light: '{colors.gray.200}', _dark: '{colors.gray.800}' } }, - error: { value: '{colors.red.500}' }, + error: { + value: { + _light: lightTheme.kda.explorer.input.border.color.semantic.negative, + _dark: darkTheme.kda.explorer.input.border.color.semantic.negative, + }, + }, }, placeholder: { DEFAULT: { value: '{colors.gray.500}' }, diff --git a/toolkit/theme/globals/network-menu.ts b/toolkit/theme/globals/network-menu.ts new file mode 100644 index 0000000000..2620ff2d67 --- /dev/null +++ b/toolkit/theme/globals/network-menu.ts @@ -0,0 +1,43 @@ +const styles = { + '.network-title': { + paddingBlock: 2, + paddingInline: 3, + fontWeight: 'bold', + backgroundColor: 'var(--chakra-colors-blue-50)', + marginBlockEnd: 4, + borderRadius: 'var(--chakra-radii-base)', + }, + '.network-menu': { + display: 'grid !important', + gridTemplateColumns: 'repeat(5, 1fr)', + gap: '12px !important', + padding: 0, + listStyle: 'none', + + '& .network-menu-li': { + aspectRatio: '1 / 1', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + fontSize: '1.2rem', + fontWeight: 'bold', + background: '#f0f0f0', + borderRadius: '8px', + boxShadow: '0 1px 2px rgba(0,0,0,0.05)', + flexDirection: 'column', + + '& span': { + display: 'block', + }, + '& .network-menu-link': { + fontWeight: 'bold', + + '& .network-menu-li-icon': { + display: 'none !important', + }, + }, + }, + }, +}; + +export default styles; diff --git a/toolkit/theme/theme.ts b/toolkit/theme/theme.ts index dc4e5274f8..9e97a36640 100644 --- a/toolkit/theme/theme.ts +++ b/toolkit/theme/theme.ts @@ -12,6 +12,8 @@ import zIndex from './foundations/zIndex'; import globalCss from './globalCss'; import { recipes, slotRecipes } from './recipes'; +export { default as KDATokens } from './foundations/kda'; + export const customConfig = defineConfig({ globalCss, theme: { diff --git a/tsconfig.json b/tsconfig.json index f9d2cac08b..28f5497201 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,10 +13,19 @@ "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", + "sourceMap": true, "incremental": true, "baseUrl": ".", "types": ["node", "jest"], }, "include": ["next-env.d.ts", "**/*.ts", "**/*.node.ts", "**/*.tsx", "**/*.pw.tsx", "decs.d.ts", "global.d.ts"], - "exclude": ["node_modules", "node_modules_linux", "./deploy/tools/envs-validator", "./deploy/tools/favicon-generator", "./toolkit/package"], + "exclude": [ + "node_modules", + "node_modules_linux", + "./deploy/tools/envs-validator", + "./deploy/tools/favicon-generator", + "./toolkit/package", + "./toolkit/theme/design-system/build", + "./toolkit/theme/design-system/dist" + ], } diff --git a/types/networks.ts b/types/networks.ts index fb729eb891..267bae99d3 100644 --- a/types/networks.ts +++ b/types/networks.ts @@ -4,6 +4,14 @@ export const NETWORK_GROUPS = [ 'Mainnets', 'Testnets', 'Other' ] as const; export type NetworkGroup = ArrayElement; export interface FeaturedNetwork { + title: string; + url: string; + id: string; + icon?: string; + isActive?: boolean; +} + +export interface FeaturedChain { title: string; url: string; group: NetworkGroup; diff --git a/ui/home/HeroBanner.tsx b/ui/home/HeroBanner.tsx index 7d6450b4fe..f0204e0925 100644 --- a/ui/home/HeroBanner.tsx +++ b/ui/home/HeroBanner.tsx @@ -1,6 +1,6 @@ // we use custom heading size for hero banner // eslint-disable-next-line no-restricted-imports -import { Box, Flex, Heading } from '@chakra-ui/react'; +import { Box, Flex, Heading, Span } from '@chakra-ui/react'; import React from 'react'; import config from 'configs/app'; @@ -8,79 +8,54 @@ import RewardsButton from 'ui/rewards/RewardsButton'; import AdBanner from 'ui/shared/ad/AdBanner'; import SearchBar from 'ui/snippets/searchBar/SearchBar'; import UserProfileDesktop from 'ui/snippets/user/profile/UserProfileDesktop'; -import UserWalletDesktop from 'ui/snippets/user/wallet/UserWalletDesktop'; + +import useIsMobile from '../../lib/hooks/useIsMobile'; +import { InlineChainSelector } from '../shared/HomeChainSelector'; export const BACKGROUND_DEFAULT = 'radial-gradient(103.03% 103.03% at 0% 0%, rgba(183, 148, 244, 0.8) 0%, rgba(0, 163, 196, 0.8) 100%), var(--chakra-colors-blue-400)'; -const TEXT_COLOR_DEFAULT = 'white'; -const BORDER_DEFAULT = 'none'; const HeroBanner = () => { - const background = { - _light: - config.UI.homepage.heroBanner?.background?.[0] || - config.UI.homepage.plate.background || - BACKGROUND_DEFAULT, - _dark: - config.UI.homepage.heroBanner?.background?.[1] || - config.UI.homepage.heroBanner?.background?.[0] || - config.UI.homepage.plate.background || - BACKGROUND_DEFAULT, - }; - - const textColor = { - _light: - // light mode - config.UI.homepage.heroBanner?.text_color?.[0] || - config.UI.homepage.plate.textColor || - TEXT_COLOR_DEFAULT, - // dark mode - _dark: - config.UI.homepage.heroBanner?.text_color?.[1] || - config.UI.homepage.heroBanner?.text_color?.[0] || - config.UI.homepage.plate.textColor || - TEXT_COLOR_DEFAULT, - }; - - const border = { - _light: - config.UI.homepage.heroBanner?.border?.[0] || BORDER_DEFAULT, - _dark: - config.UI.homepage.heroBanner?.border?.[1] || config.UI.homepage.heroBanner?.border?.[0] || BORDER_DEFAULT, - }; + const isMobile = useIsMobile(); return ( - + - { - config.meta.seo.enhancedDataEnabled ? - `${ config.chain.name } blockchain explorer` : - `${ config.chain.name } explorer` - } + + { !isMobile ? config.app.name : config.app.shortName } + @ + + { config.UI.navigation.layout === 'vertical' && ( { config.features.rewards.isEnabled && } - { - (config.features.account.isEnabled && ) || - (config.features.blockchainInteraction.isEnabled && ) - } + { config.features.account.isEnabled && } ) } diff --git a/ui/shared/HomeChainSelector.tsx b/ui/shared/HomeChainSelector.tsx new file mode 100644 index 0000000000..68bceef3bf --- /dev/null +++ b/ui/shared/HomeChainSelector.tsx @@ -0,0 +1,243 @@ +import type { + ListCollection } from '@chakra-ui/react'; +import { + createListCollection, +} from '@chakra-ui/react'; +import { capitalize } from 'es-toolkit'; +import React from 'react'; +import type { FormEventHandler } from 'react'; + +import type { FeaturedNetwork } from '../../types/networks'; + +import config from 'configs/app'; + +import { Select, CompactSelect, InlineSelect } from '../../toolkit/chakra/select'; +import type { SelectOption, SelectProps } from '../../toolkit/chakra/select'; +import { useNetworkMenu, useChainMenu } from '../snippets/networkMenu/useNetworkMenu'; + +export type CompactSelectProps = { + intent?: SelectProps['intent']; +}; + +export const useHomeChainSelector = () => { + const currentUrl = window.location.href; + const [ activeNetwork, setActiveNetwork ] = React.useState<{ label: string; value: string } | null>(null); + const [ activeChain, setActiveChain ] = React.useState<{ label: string; value: string } | null>(null); + const networkMenu = useNetworkMenu(); + const chainMenu = useChainMenu(); + const [ networks, setNetworks ] = React.useState> | null>(null); + const [ chains, setChains ] = React.useState> | null>(null); + const [ filteredNetwork, setFilteredNetwork ] = React.useState(null); + const [ isLoading, setIsLoading ] = React.useState(true); + + const handleNetworkChange = React.useCallback>((e) => { + const target = e.target as HTMLInputElement; + const selectedOption = networkMenu.data?.find((option) => option.id === target.value); + + if (selectedOption) { + setActiveNetwork({ label: capitalize(selectedOption.title), value: selectedOption.id }); + } + }, [ networkMenu.data ]); + + const handleChainChange = React.useCallback>((e) => { + if (chains?.getValues().length === 0) return; + + const target = e.target as HTMLInputElement; + const selectedOption = chains?.getValues().find((option) => option === target.value); + + if (selectedOption) { + window.location.href = selectedOption; + } + }, [ chains ]); + + React.useEffect(() => { + const networkItems = networkMenu.data ?? []; + const _networks = Object.values( + networkItems.reduce((acc, network) => ({ + ...acc, + [network.id]: { + label: capitalize(network.title), + value: network.id, + }, + }), {} as Record), + ).map((network) => ({ + label: network.label, + value: network.value, + })); + + if (networkItems && networkItems.length > 0 && !activeNetwork) { + let currentNetwork = networkItems.find((network) => currentUrl.includes(network.id)); + + if (!currentNetwork) { + const availableNetworks = networkItems.filter((network) => network.isActive); + currentNetwork = networkItems.find((network) => network.id === config.UI.navigation.baseNetwork) ?? availableNetworks[0]; + } + + setActiveNetwork({ label: capitalize(currentNetwork.title), value: currentNetwork.id }); + setNetworks(createListCollection({ + items: _networks, + })); + setIsLoading(false); + } + }, [ currentUrl, activeNetwork, networkMenu, setIsLoading ]); + + React.useEffect(() => { + const chainItems = chainMenu.data ?? []; + + if (chainItems && chainItems.length > 0 && !activeChain && activeNetwork) { + const _chains = chainItems.filter((chain) => chain.group === activeNetwork?.value).map((chain) => ({ + label: capitalize(chain.title), + value: chain.url, + })); + + let currentChain = _chains.find((chain) => chain.value === currentUrl); + + if (!currentChain) { + const availableChains = _chains.filter((chain) => chain); + currentChain = _chains.find((chain) => chain.value.includes(`chain-${ config.UI.navigation.baseChain }`)) ?? availableChains[0]; + } + + if (currentChain && !currentUrl.startsWith(currentChain.value)) { + window.location.href = currentChain.value; + return; + } + + setActiveChain({ label: capitalize(currentChain.label), value: currentChain.value }); + setChains(createListCollection({ + items: _chains.map((option) => ({ + value: option.value, + label: option.label, + })), + })); + setIsLoading(false); + setFilteredNetwork(activeNetwork.value); + } + }, [ currentUrl, activeNetwork, activeChain, networkMenu, setIsLoading, chainMenu.data ]); + + React.useEffect(() => { + if (!chains) { + networkMenu.onOpenChange({ open: true }); + } + }, [ chains, networkMenu ]); + + React.useEffect(() => { + if (activeNetwork && !chains) { + chainMenu.onOpenChange({ open: true }); + } + }, [ chains, chainMenu, activeNetwork ]); + + React.useEffect(() => { + if (chainMenu?.data && activeNetwork && activeChain && filteredNetwork !== activeNetwork.value) { + const chainItems = chainMenu.data ?? []; + const chains = chainItems.filter((chain) => chain.group === activeNetwork.value).map((chain) => ({ + label: capitalize(chain.title), + value: chain.url, + })); + setChains(createListCollection({ + items: chains.map((option) => ({ + value: option.value, + label: option.label, + })), + })); + setActiveChain(null); + } + }, [ activeChain, chainMenu, activeNetwork, filteredNetwork, setChains ]); + + return { + isLoading, + networks, + chains, + activeNetwork, + activeChain, + handleChainChange, + handleNetworkChange, + }; +}; + +const HomeChainSelector = () => { + const { chains, activeChain, handleChainChange } = useHomeChainSelector(); + + return chains && ( + + ); +}; + +export const CompactNetworkSelector = (props: CompactSelectProps) => { + const { intent } = props; + const { networks, activeNetwork, handleNetworkChange } = useHomeChainSelector(); + + return networks && ( + + { networks?.items.map((network) => ( + + )) } + + ); +}; + +export const CompactChainSelector = (props: CompactSelectProps) => { + const { intent } = props; + const { chains, activeChain, handleChainChange } = useHomeChainSelector(); + + return chains && ( + + { chains?.items.map((chain) => ( + + )) } + + ); +}; + +export const InlineChainSelector = () => { + const { chains, activeChain, handleChainChange } = useHomeChainSelector(); + + return chains && ( + + { chains?.items.map((chain) => ( + + )) } + + ); +}; + +export default HomeChainSelector; diff --git a/ui/shared/TimeAgoWithTooltip.tsx b/ui/shared/TimeAgoWithTooltip.tsx new file mode 100644 index 0000000000..aa15f8b1a8 --- /dev/null +++ b/ui/shared/TimeAgoWithTooltip.tsx @@ -0,0 +1,34 @@ +import { chakra } from '@chakra-ui/react'; +import React from 'react'; + +import dayjs from 'lib/date/dayjs'; +import useTimeAgoIncrement from 'lib/hooks/useTimeAgoIncrement'; +import { Skeleton } from 'toolkit/chakra/skeleton'; +import { Tooltip } from 'toolkit/chakra/tooltip'; + +type Props = { + timestamp?: string | number | null; + fallbackText?: string; + isLoading?: boolean; + enableIncrement?: boolean; + className?: string; +}; + +const TimeAgoWithTooltip = ({ timestamp, fallbackText, isLoading, enableIncrement, className }: Props) => { + const timeAgo = useTimeAgoIncrement(timestamp ?? '', enableIncrement && !isLoading); + if (!timestamp || !fallbackText) { + return null; + } + + const content = timestamp && timeAgo ? + { timeAgo } : + fallbackText && { fallbackText }; + + return ( + + { content } + + ); +}; + +export default chakra(TimeAgoWithTooltip); diff --git a/ui/shared/stats/StatsWidget.tsx b/ui/shared/stats/StatsWidget.tsx index e2c186369e..78c14d266b 100644 --- a/ui/shared/stats/StatsWidget.tsx +++ b/ui/shared/stats/StatsWidget.tsx @@ -10,6 +10,8 @@ import { Hint } from 'toolkit/components/Hint/Hint'; import IconSvg, { type IconName } from 'ui/shared/IconSvg'; import TruncatedValue from 'ui/shared/TruncatedValue'; +import { KDATokens } from '../../../toolkit/theme/theme'; + export type Props = { className?: string; label: string; @@ -58,7 +60,13 @@ const StatsWidget = ({ ) } @@ -92,28 +101,29 @@ const StatsWidget = ({ alignItems="baseline" fontWeight={ 500 } textStyle="heading.md" + color="var(--kda-explorer-widget-stats-surface-text)" > { valuePrefix && { valuePrefix } } { typeof value === 'string' ? ( - + ) : ( value ) } { valuePostfix && { valuePostfix } } { diff && Number(diff) > 0 && ( <> - + +{ diffFormatted || Number(diff).toLocaleString() } - ({ diffPeriod }) + ({ diffPeriod }) ) } - { period && ({ period }) } + { period && ({ period }) } { typeof hint === 'string' ? ( - + ) : hint } diff --git a/ui/snippets/header/Burger.tsx b/ui/snippets/header/Burger.tsx index 5014d62964..fe36028770 100644 --- a/ui/snippets/header/Burger.tsx +++ b/ui/snippets/header/Burger.tsx @@ -1,18 +1,13 @@ -import { Box, Flex } from '@chakra-ui/react'; +import { Flex } from '@chakra-ui/react'; import React from 'react'; -import config from 'configs/app'; import { DrawerBody, DrawerContent, DrawerRoot, DrawerTrigger } from 'toolkit/chakra/drawer'; import { IconButton } from 'toolkit/chakra/icon-button'; import { useDisclosure } from 'toolkit/hooks/useDisclosure'; import IconSvg from 'ui/shared/IconSvg'; import NavigationMobile from 'ui/snippets/navigation/mobile/NavigationMobile'; -import RollupStageBadge from 'ui/snippets/navigation/RollupStageBadge'; -import TestnetBadge from 'ui/snippets/navigation/TestnetBadge'; import NetworkLogo from 'ui/snippets/networkMenu/NetworkLogo'; -import NetworkMenuButton from 'ui/snippets/networkMenu/NetworkMenuButton'; -import NetworkMenuContentMobile from 'ui/snippets/networkMenu/NetworkMenuContentMobile'; -import useNetworkMenu from 'ui/snippets/networkMenu/useNetworkMenu'; +import { useNetworkMenu } from 'ui/snippets/networkMenu/useNetworkMenu'; interface Props { isMarketplaceAppPage?: boolean; @@ -22,10 +17,6 @@ const Burger = ({ isMarketplaceAppPage }: Props) => { const { open, onOpen, onClose, onOpenChange } = useDisclosure(); const networkMenu = useNetworkMenu(); - const handleNetworkMenuButtonClick = React.useCallback(() => { - networkMenu.onToggle(); - }, [ networkMenu ]); - const handleNetworkLogoClick = React.useCallback((event: React.SyntheticEvent) => { networkMenu.open && event.preventDefault(); networkMenu.onClose(); @@ -50,22 +41,10 @@ const Burger = ({ isMarketplaceAppPage }: Props) => { - - - { config.UI.navigation.featuredNetworks ? ( - - ) : } - { networkMenu.open ? - : - - } + diff --git a/ui/snippets/header/HeaderDesktop.tsx b/ui/snippets/header/HeaderDesktop.tsx index e73f7ea6a8..6cfb06f1be 100644 --- a/ui/snippets/header/HeaderDesktop.tsx +++ b/ui/snippets/header/HeaderDesktop.tsx @@ -5,7 +5,6 @@ import config from 'configs/app'; import RewardsButton from 'ui/rewards/RewardsButton'; import SearchBar from 'ui/snippets/searchBar/SearchBar'; import UserProfileDesktop from 'ui/snippets/user/profile/UserProfileDesktop'; -import UserWalletDesktop from 'ui/snippets/user/wallet/UserWalletDesktop'; type Props = { renderSearchBar?: () => React.ReactNode; @@ -27,12 +26,11 @@ const HeaderDesktop = ({ renderSearchBar }: Props) => { { searchBar } - { config.UI.navigation.layout === 'vertical' && ( + { config.UI.navigation.layout === 'vertical' && (config.features.rewards.isEnabled || config.features.account.isEnabled) && ( { config.features.rewards.isEnabled && } { - (config.features.account.isEnabled && ) || - (config.features.blockchainInteraction.isEnabled && ) + (config.features.account.isEnabled && ) } ) } diff --git a/ui/snippets/header/HeaderMobile.tsx b/ui/snippets/header/HeaderMobile.tsx index b6d61c017e..eec7fafa26 100644 --- a/ui/snippets/header/HeaderMobile.tsx +++ b/ui/snippets/header/HeaderMobile.tsx @@ -8,7 +8,6 @@ import RewardsButton from 'ui/rewards/RewardsButton'; import NetworkLogo from 'ui/snippets/networkMenu/NetworkLogo'; import SearchBar from 'ui/snippets/searchBar/SearchBar'; import UserProfileMobile from 'ui/snippets/user/profile/UserProfileMobile'; -import UserWalletMobile from 'ui/snippets/user/wallet/UserWalletMobile'; import Burger from './Burger'; @@ -52,7 +51,6 @@ const HeaderMobile = ({ hideSearchBar, renderSearchBar }: Props) => { { config.features.rewards.isEnabled && } { (config.features.account.isEnabled && ) || - (config.features.blockchainInteraction.isEnabled && ) || } diff --git a/ui/snippets/header/alerts/IndexingBlocksAlert.tsx b/ui/snippets/header/alerts/IndexingBlocksAlert.tsx index 916af549cd..c56d3a466c 100644 --- a/ui/snippets/header/alerts/IndexingBlocksAlert.tsx +++ b/ui/snippets/header/alerts/IndexingBlocksAlert.tsx @@ -72,7 +72,7 @@ const IndexingBlocksAlert = () => { } return ( - + { `${ data.indexed_blocks_ratio && `${ Math.floor(Number(data.indexed_blocks_ratio) * 100) }% Blocks Indexed${ nbsp }${ ndash } ` } We're indexing this chain right now. Some of the counts may be inaccurate.` } diff --git a/ui/snippets/header/alerts/MaintenanceAlert.tsx b/ui/snippets/header/alerts/MaintenanceAlert.tsx index d6b9554dfd..d769be3a20 100644 --- a/ui/snippets/header/alerts/MaintenanceAlert.tsx +++ b/ui/snippets/header/alerts/MaintenanceAlert.tsx @@ -10,7 +10,7 @@ const MaintenanceAlert = () => { } return ( - + { transitionDuration="normal" transitionTimingFunction="ease" > - - { alignItems="center" flexDirection="row" w="100%" - pl={{ lg: isExpanded ? 3 : '15px', xl: isCollapsed ? '15px' : 3 }} - pr={{ lg: isExpanded ? 0 : '15px', xl: isCollapsed ? '15px' : 0 }} + pl={{ lg: isExpanded ? 1 : 3, xl: isCollapsed ? 3 : 1 }} h={ 10 } transitionProperty="padding" transitionDuration="normal" diff --git a/ui/snippets/networkMenu/NetworkLogo.tsx b/ui/snippets/networkMenu/NetworkLogo.tsx index 6dbfc7c648..78adfd0ef6 100644 --- a/ui/snippets/networkMenu/NetworkLogo.tsx +++ b/ui/snippets/networkMenu/NetworkLogo.tsx @@ -3,10 +3,7 @@ import React from 'react'; import { route } from 'nextjs-routes'; -import config from 'configs/app'; import { useColorModeValue } from 'toolkit/chakra/color-mode'; -import { Image } from 'toolkit/chakra/image'; -import IconSvg from 'ui/shared/IconSvg'; interface Props { isCollapsed?: boolean; @@ -14,71 +11,55 @@ interface Props { className?: string; } -const LogoFallback = ({ isCollapsed, isSmall }: { isCollapsed?: boolean; isSmall?: boolean }) => { - const display = isSmall ? { - base: 'none', - lg: isCollapsed === false ? 'none' : 'block', - xl: isCollapsed ? 'block' : 'none', - } : { - base: 'block', - lg: isCollapsed === false ? 'block' : 'none', - xl: isCollapsed ? 'none' : 'block', - }; - - return ( - - ); -}; - -const INVERT_FILTER = 'brightness(0) invert(1)'; - const NetworkLogo = ({ isCollapsed, onClick, className }: Props) => { - const logoSrc = useColorModeValue(config.UI.navigation.logo.default, config.UI.navigation.logo.dark || config.UI.navigation.logo.default); - const iconSrc = useColorModeValue(config.UI.navigation.icon.default, config.UI.navigation.icon.dark || config.UI.navigation.icon.default); + const logoSrc = useColorModeValue('var(--kda-icons-brands-kadena-logo-light)', 'var(--kda-icons-brands-kadena-logo-dark)'); + const iconSrc = useColorModeValue('var(--kda-icons-brands-kadena-rounded-green)', 'var(--kda-icons-brands-kadena-rounded-white)'); return ( { /* big logo */ } - { } - display={{ base: 'block', lg: isCollapsed === false ? 'block' : 'none', xl: isCollapsed ? 'none' : 'block' }} - filter={{ _dark: !config.UI.navigation.logo.dark ? INVERT_FILTER : undefined }} - objectFit="contain" - objectPosition="left" + { /* small logo */ } - { } - display={{ base: 'none', lg: isCollapsed === false ? 'none' : 'block', xl: isCollapsed ? 'block' : 'none' }} - filter={{ _dark: !config.UI.navigation.icon.dark ? INVERT_FILTER : undefined }} - objectFit="contain" - objectPosition="left" + ); diff --git a/ui/snippets/networkMenu/NetworkMenuContentDesktop.tsx b/ui/snippets/networkMenu/NetworkMenuContentDesktop.tsx index 4fc6dfe3fa..78d71e45a6 100644 --- a/ui/snippets/networkMenu/NetworkMenuContentDesktop.tsx +++ b/ui/snippets/networkMenu/NetworkMenuContentDesktop.tsx @@ -1,7 +1,7 @@ import { VStack, Flex, Box } from '@chakra-ui/react'; import React from 'react'; -import type { FeaturedNetwork, NetworkGroup } from 'types/networks'; +import type { FeaturedChain, NetworkGroup } from 'types/networks'; import { PopoverBody, PopoverContent } from 'toolkit/chakra/popover'; import { Skeleton } from 'toolkit/chakra/skeleton'; @@ -11,14 +11,15 @@ import NetworkMenuLink from './NetworkMenuLink'; interface Props { tabs: Array; - items?: Array; + items?: Array; } const NetworkMenuPopup = ({ items, tabs }: Props) => { - const selectedNetwork = items?.find(({ isActive }) => isActive); - const defaultTab = tabs.find((tab) => selectedNetwork?.group === tab); + const [ defaultTab ] = tabs ?? [ 'Mainnets' ]; + const selectedNetwork = items?.find(({ isActive }) => isActive) ?? items?.find(({ url }) => url === window.location.href) ?? items?.[0]; + const selectedTab = tabs.find((tab) => selectedNetwork?.group === tab) ?? defaultTab; - const [ value, setValue ] = React.useState(defaultTab ?? 'Mainnets'); + const [ value, setValue ] = React.useState(selectedTab); const handleTabChange = React.useCallback(({ value }: { value: string }) => { setValue(value as NetworkGroup); @@ -72,7 +73,8 @@ const NetworkMenuPopup = ({ items, tabs }: Props) => { { tabs.map((tab) => ( - + { defaultTab ?
"{ defaultTab }" Chains
: null } + { items .filter((network) => network.group === tab) .map((network) => ( diff --git a/ui/snippets/networkMenu/NetworkMenuContentMobile.tsx b/ui/snippets/networkMenu/NetworkMenuContentMobile.tsx index 2a254ffee2..fbb67096d8 100644 --- a/ui/snippets/networkMenu/NetworkMenuContentMobile.tsx +++ b/ui/snippets/networkMenu/NetworkMenuContentMobile.tsx @@ -2,8 +2,9 @@ import { Box, VStack, Flex, createListCollection } from '@chakra-ui/react'; import { capitalize } from 'es-toolkit'; import React from 'react'; -import type { NetworkGroup, FeaturedNetwork } from 'types/networks'; +import type { NetworkGroup, FeaturedChain } from 'types/networks'; +import config from 'configs/app'; import type { SelectOption } from 'toolkit/chakra/select'; import { Select } from 'toolkit/chakra/select'; import { Skeleton } from 'toolkit/chakra/skeleton'; @@ -11,18 +12,19 @@ import { Skeleton } from 'toolkit/chakra/skeleton'; import NetworkMenuLink from './NetworkMenuLink'; interface Props { tabs: Array; - items?: Array; + items?: Array; } const NetworkMenuContentMobile = ({ items, tabs }: Props) => { + const [ defaultTab ] = tabs ?? [ config.UI.navigation.baseNetwork ]; const selectedNetwork = items?.find(({ isActive }) => isActive); - const [ selectedTab, setSelectedTab ] = React.useState('Mainnets'); + const [ selectedTab, setSelectedTab ] = React.useState(defaultTab); React.useEffect(() => { if (items) { - setSelectedTab(tabs.find((tab) => selectedNetwork?.group === tab) || 'Mainnets'); + setSelectedTab(tabs.find((tab) => selectedNetwork?.group === tab) ?? defaultTab); } - }, [ items, selectedNetwork?.group, tabs ]); + }, [ defaultTab, items, selectedNetwork?.group, tabs ]); const handleSelectChange = React.useCallback(({ value }: { value: Array }) => { setSelectedTab(value[0] as NetworkGroup); @@ -61,7 +63,8 @@ const NetworkMenuContentMobile = ({ items, tabs }: Props) => { contentProps={{ zIndex: 'modal' }} /> ) } - + { selectedTab ?
"{ selectedTab }" Chains
: null } + { items .filter(({ group }) => group === selectedTab) .map((network) => ( diff --git a/ui/snippets/networkMenu/NetworkMenuLink.tsx b/ui/snippets/networkMenu/NetworkMenuLink.tsx index f3ec830e90..54f07b59ab 100644 --- a/ui/snippets/networkMenu/NetworkMenuLink.tsx +++ b/ui/snippets/networkMenu/NetworkMenuLink.tsx @@ -1,13 +1,13 @@ import { Box, Text, chakra } from '@chakra-ui/react'; import React from 'react'; -import type { FeaturedNetwork } from 'types/networks'; +import type { FeaturedChain } from 'types/networks'; import { useColorModeValue } from 'toolkit/chakra/color-mode'; import { Image } from 'toolkit/chakra/image'; import IconSvg from 'ui/shared/IconSvg'; -interface Props extends FeaturedNetwork { +interface Props extends FeaturedChain { isActive?: boolean; isMobile?: boolean; } @@ -42,8 +42,9 @@ const NetworkMenuLink = ({ title, icon, isActive: isActiveProp, isMobile, url, i })(); return ( - + - { iconEl } +
{ iconEl }
({ + open, + onClose, + onOpen, + onToggle, + onOpenChange: handleOpenChange, + isPending, + data, + availableTabs: NETWORK_GROUPS.filter((tab) => data?.some(({ id }) => id === tab)), + }), [ open, onClose, onOpen, onToggle, handleOpenChange, data, isPending ]); +} + +export function useChainMenu() { + const { open, onClose, onOpen, onOpenChange, onToggle } = useDisclosure(); + + const fetch = useFetch(); + const { isPending, data } = useQuery, Array>({ + queryKey: [ 'featured-chain' ], + queryFn: async() => fetch(config.UI.navigation.featuredChains || '', undefined, { resource: 'featured-chain' }), + enabled: Boolean(config.UI.navigation.featuredChains) && open, + staleTime: Infinity, + }); + + const handleOpenChange = React.useCallback((details: { open: boolean }) => { + if (details.open) { + mixpanel.logEvent(mixpanel.EventTypes.BUTTON_CLICK, { Content: 'Network menu', Source: 'Header' }); + } + onOpenChange(details); + }, [ onOpenChange ]); + return React.useMemo(() => ({ open, onClose, diff --git a/ui/snippets/searchBar/SearchBarInput.tsx b/ui/snippets/searchBar/SearchBarInput.tsx index 1def4ef784..a9af7526a8 100644 --- a/ui/snippets/searchBar/SearchBarInput.tsx +++ b/ui/snippets/searchBar/SearchBarInput.tsx @@ -116,7 +116,7 @@ const SearchBarInput = (
{ - const menu = useNetworkMenu(); + const menu = useChainMenu(); return ( { - const bgColor = useColorModeValue('gray.50', 'whiteAlpha.100'); - return ( - + { justifyContent="space-between" alignItems="center" > - + + { config.features.blockchainInteraction.isEnabled && ( + <> + + + + ) } { config.features.deFiDropdown.isEnabled && ( <> - + ) } - { Boolean(config.UI.navigation.featuredNetworks) && ( - - - - - ) } diff --git a/ui/snippets/topBar/TopBarChainSelector.tsx b/ui/snippets/topBar/TopBarChainSelector.tsx new file mode 100644 index 0000000000..bc2bed8c3c --- /dev/null +++ b/ui/snippets/topBar/TopBarChainSelector.tsx @@ -0,0 +1,16 @@ +import { chakra } from '@chakra-ui/react'; +import React from 'react'; + +import { CompactChainSelector, CompactNetworkSelector } from '../../shared/HomeChainSelector'; + +const TopBarChainSelector = () => { + return ( + + + @ + + + ); +}; + +export default React.memo(TopBarChainSelector); diff --git a/ui/snippets/topBar/TopBarChainStatus.tsx b/ui/snippets/topBar/TopBarChainStatus.tsx new file mode 100644 index 0000000000..b415b2ac1d --- /dev/null +++ b/ui/snippets/topBar/TopBarChainStatus.tsx @@ -0,0 +1,38 @@ +import { Flex, chakra } from '@chakra-ui/react'; +import React from 'react'; + +import config from 'configs/app'; +import { Skeleton } from 'toolkit/chakra/skeleton'; +import TextSeparator from 'ui/shared/TextSeparator'; + +import useIsMobile from '../../../lib/hooks/useIsMobile'; +import { useHomeChainSelector } from '../../shared/HomeChainSelector'; +import TopBarChainSelector from './TopBarChainSelector'; + +const TopBarChainStats = () => { + const isMobile = useIsMobile(); + const { isLoading } = useHomeChainSelector(); + + return ( + + + + { !isMobile ? config.app.name : config.app.shortName } (v{ config.app.version }) + + + + + + + + ); +}; + +export default React.memo(TopBarChainStats); diff --git a/ui/snippets/topBar/TopBarStats.tsx b/ui/snippets/topBar/TopBarStats.tsx index 1ef87baa27..ca581e207e 100644 --- a/ui/snippets/topBar/TopBarStats.tsx +++ b/ui/snippets/topBar/TopBarStats.tsx @@ -17,7 +17,7 @@ import GetGasButton from './GetGasButton'; const TopBarStats = () => { const isMobile = useIsMobile(); - const { data, isPlaceholderData, isError, refetch, dataUpdatedAt } = useApiQuery('general:stats', { + const { data, isPlaceholderData, isError, refetch, dataUpdatedAt, isLoading } = useApiQuery('general:stats', { queryOptions: { placeholderData: HOMEPAGE_STATS, refetchOnMount: false, @@ -55,21 +55,12 @@ const TopBarStats = () => { fontSize="xs" fontWeight={ 500 } > - { data?.coin_price && ( - - - { config.chain.currency.symbol } - ${ Number(data.coin_price).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 6 }) } - - { data.coin_price_change_percentage && ( - - = 0 ? 'green.500' : 'red.500' }> - { Number(data.coin_price_change_percentage).toFixed(2) }% - - - ) } - - ) } + + + { config.chain.name } + + + { !isMobile && data?.secondary_coin_price && config.chain.secondaryCoin.symbol && ( @@ -79,7 +70,7 @@ const TopBarStats = () => { ) } { data?.coin_price && config.features.gasTracker.isEnabled && } - { data?.gas_prices && data.gas_prices.average !== null && config.features.gasTracker.isEnabled && ( + { data?.gas_prices?.average && config.features.gasTracker.isEnabled ? ( <> Gas @@ -91,7 +82,7 @@ const TopBarStats = () => { { !isPlaceholderData && } - ) } + ) : null } ); }; diff --git a/ui/snippets/topBar/settings/SettingsColorTheme.tsx b/ui/snippets/topBar/settings/SettingsColorTheme.tsx index 87fcb38a1c..c432813387 100644 --- a/ui/snippets/topBar/settings/SettingsColorTheme.tsx +++ b/ui/snippets/topBar/settings/SettingsColorTheme.tsx @@ -27,6 +27,7 @@ const SettingsColorTheme = ({ onSelect }: Props) => { const varName = nextTheme.colorMode === 'light' ? '--chakra-colors-white' : '--chakra-colors-black'; window.document.documentElement.style.setProperty(varName, hex); + window.document.documentElement.dataset.theme = nextTheme.colorMode; cookies.set(cookies.NAMES.COLOR_MODE_HEX, hex); cookies.set(cookies.NAMES.COLOR_MODE, nextTheme.colorMode); diff --git a/ui/snippets/user/profile/UserProfileButton.tsx b/ui/snippets/user/profile/UserProfileButton.tsx index 10a8f77303..f9fda374a5 100644 --- a/ui/snippets/user/profile/UserProfileButton.tsx +++ b/ui/snippets/user/profile/UserProfileButton.tsx @@ -88,6 +88,7 @@ const UserProfileButton = ({ profileQuery, size, variant, onClick, isPending, .. px={{ base: 2.5, lg: 3 }} fontWeight={ dataExists ? 700 : 600 } loading={ isButtonLoading } + borderRadius="var(--kda-explorer-hero-banner-button-dimensions-radius)" { ...rest } > { content } diff --git a/yarn.lock b/yarn.lock index bf79645ae0..6d7169ffc6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1588,6 +1588,40 @@ resolved "https://registry.yarnpkg.com/@blockscout/visualizer-types/-/visualizer-types-0.2.0.tgz#a8ef326d69e29417db124c78f868d68aca959ad1" integrity sha512-gasqbEL89iH8YnH/TIEk0MBSG9SwhEJegY9tnQ1c/jFZOCYjiVkgNwm4oH0ncwCKoNX1GoKAregbkEUwDDw7FQ== +"@bundled-es-modules/deepmerge@^4.3.1": + version "4.3.1" + resolved "https://registry.yarnpkg.com/@bundled-es-modules/deepmerge/-/deepmerge-4.3.1.tgz#e0ef866494125f64f6fb75adeffacedc25f2f31b" + integrity sha512-Rk453EklPUPC3NRWc3VUNI/SSUjdBaFoaQvFRmNBNtMHVtOFD5AntiWg5kEE1hqcPqedYFDzxE3ZcMYPcA195w== + dependencies: + deepmerge "^4.3.1" + +"@bundled-es-modules/glob@^10.4.2": + version "10.4.2" + resolved "https://registry.yarnpkg.com/@bundled-es-modules/glob/-/glob-10.4.2.tgz#ef8f58b5d33ec8a1d4ca739bb49c09e5d0874bb5" + integrity sha512-740y5ofkzydsFao5EXJrGilcIL6EFEw/cmPf2uhTw9J6G1YOhiIFjNFCHdpgEiiH5VlU3G0SARSjlFlimRRSMA== + dependencies: + buffer "^6.0.3" + events "^3.3.0" + glob "^10.4.2" + patch-package "^8.0.0" + path "^0.12.7" + stream "^0.0.3" + string_decoder "^1.3.0" + url "^0.11.3" + +"@bundled-es-modules/memfs@^4.9.4": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@bundled-es-modules/memfs/-/memfs-4.17.0.tgz#0bd0cdb801c5fb977163fb7323bd3f15967fc933" + integrity sha512-ykdrkEmQr9BV804yd37ikXfNnvxrwYfY9Z2/EtMHFEFadEjsQXJ1zL9bVZrKNLDtm91UdUOEHso6Aweg93K6xQ== + dependencies: + assert "^2.1.0" + buffer "^6.0.3" + events "^3.3.0" + memfs "^4.17.0" + path "^0.12.7" + stream "^0.0.3" + util "^0.12.5" + "@chainsafe/as-chacha20poly1305@^0.1.0": version "0.1.0" resolved "https://registry.yarnpkg.com/@chainsafe/as-chacha20poly1305/-/as-chacha20poly1305-0.1.0.tgz#7da6f8796f9b42dac6e830a086d964f1f9189e09" @@ -1745,6 +1779,16 @@ dependencies: "@jridgewell/trace-mapping" "0.3.9" +"@designid/tokens@^0.4.6": + version "0.4.6" + resolved "https://registry.yarnpkg.com/@designid/tokens/-/tokens-0.4.6.tgz#20311c82babee0c33f700f3f5675341b5ecabd6e" + integrity sha512-LbHewsuxzzzP7afP5kcGioz8tnSqnyy6pbyeaWUMu8pyHk/Iuvoh7VfFfWWl8bKNQ4mRcbLskBbawdwQsdzlxg== + dependencies: + chokidar "^3.5.3" + colorjs.io "^0.5.2" + globals "^16.1.0" + style-dictionary "^4.3.3" + "@discoveryjs/json-ext@0.5.7": version "0.5.7" resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" @@ -3348,6 +3392,26 @@ resolved "https://registry.yarnpkg.com/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz#9299f82874bab9e4c7f9c48d865becbfe8d6907c" integrity sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw== +"@jsonjoy.com/base64@^1.1.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/base64/-/base64-1.1.2.tgz#cf8ea9dcb849b81c95f14fc0aaa151c6b54d2578" + integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== + +"@jsonjoy.com/json-pack@^1.0.3": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.2.0.tgz#e658900e81d194903171c42546e1aa27f446846a" + integrity sha512-io1zEbbYcElht3tdlqEOFxZ0dMTYrHz9iMf0gqn1pPjZFTCgM5R4R5IMA20Chb2UPYYsxjzs8CgZ7Nb5n2K2rA== + dependencies: + "@jsonjoy.com/base64" "^1.1.1" + "@jsonjoy.com/util" "^1.1.2" + hyperdyperid "^1.2.0" + thingies "^1.20.0" + +"@jsonjoy.com/util@^1.1.2", "@jsonjoy.com/util@^1.3.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/util/-/util-1.6.0.tgz#23991b2fe12cb3a006573d9dc97c768d3ed2c9f1" + integrity sha512-sw/RMbehRhN68WRtcKCpQOPfnH6lLP4GJfqzi3iYej8tnzpZUDr6UkZYJjcjjC0FWEJOJbyM3PTIwxucUmDG2A== + "@leichtgewicht/ip-codec@^2.0.1": version "2.0.5" resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz#4fc56c15c580b9adb7dc3c333a134e540b44bfb1" @@ -4601,6 +4665,13 @@ dependencies: "@opentelemetry/semantic-conventions" "1.28.0" +"@opentelemetry/core@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.0.1.tgz#44e1149d5666a4743cde943ef89841db3ce0f8bc" + integrity sha512-MaZk9SJIDgo1peKevlbhP6+IwIiNPNmswNL4AF0WaQJLbHXjr9SrZMgS12+iqr9ToV4ZVosCcc0f8Rg67LXjxw== + dependencies: + "@opentelemetry/semantic-conventions" "^1.29.0" + "@opentelemetry/exporter-jaeger@1.27.0": version "1.27.0" resolved "https://registry.yarnpkg.com/@opentelemetry/exporter-jaeger/-/exporter-jaeger-1.27.0.tgz#c11c756c377253ad0db77bd00d72e73931e292f6" @@ -5143,6 +5214,14 @@ "@opentelemetry/core" "1.30.1" "@opentelemetry/semantic-conventions" "1.28.0" +"@opentelemetry/resources@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.0.1.tgz#0365d134291c0ed18d96444a1e21d0e6a481c840" + integrity sha512-dZOB3R6zvBwDKnHDTB4X1xtMArB/d324VsbiPkX/Yu0Q8T2xceRthoIVFhJdvgVM2QhGVUyX9tzwiNxGtoBJUw== + dependencies: + "@opentelemetry/core" "2.0.1" + "@opentelemetry/semantic-conventions" "^1.29.0" + "@opentelemetry/sdk-logs@0.49.1": version "0.49.1" resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-logs/-/sdk-logs-0.49.1.tgz#dd30d1b05951a0d6bc017d99aaa0965792b357f9" @@ -5168,6 +5247,14 @@ "@opentelemetry/core" "1.30.1" "@opentelemetry/resources" "1.30.1" +"@opentelemetry/sdk-metrics@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-metrics/-/sdk-metrics-2.0.1.tgz#efb6e9349e8a9038ac622e172692bfcdcad8010b" + integrity sha512-wf8OaJoSnujMAHWR3g+/hGvNcsC16rf9s1So4JlMiFaFHiE4HpIA3oUh+uWZQ7CNuK8gVW/pQSkgoa5HkkOl0g== + dependencies: + "@opentelemetry/core" "2.0.1" + "@opentelemetry/resources" "2.0.1" + "@opentelemetry/sdk-node@0.49.1", "@opentelemetry/sdk-node@^0.49.1": version "0.49.1" resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-node/-/sdk-node-0.49.1.tgz#40e618f22ba645e73c5a66eccec18a621734ccc3" @@ -5237,6 +5324,11 @@ resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.30.0.tgz#3a42c4c475482f2ec87c12aad98832dc0087dc9a" integrity sha512-4VlGgo32k2EQ2wcCY3vEU28A0O13aOtHz3Xt2/2U5FAh9EfhD6t6DqL5Z6yAnRCntbTFDU4YfbpyzSlHNWycPw== +"@opentelemetry/semantic-conventions@^1.29.0": + version "1.34.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.34.0.tgz#8b6a46681b38a4d5947214033ac48128328c1738" + integrity sha512-aKcOkyrorBGlajjRdVoJWHTxfxO1vCNHLJVlSDaRHDIdjU+pX8IYQPvPDkYiujKLbRnWU+1TBwEt0QRgSm4SGA== + "@opentelemetry/sql-common@^0.40.0": version "0.40.1" resolved "https://registry.yarnpkg.com/@opentelemetry/sql-common/-/sql-common-0.40.1.tgz#93fbc48d8017449f5b3c3274f2268a08af2b83b6" @@ -5244,6 +5336,61 @@ dependencies: "@opentelemetry/core" "^1.1.0" +"@oven/bun-darwin-aarch64@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-darwin-aarch64/-/bun-darwin-aarch64-1.2.17.tgz#6ed845968001e7a79d5ed046408fb888211ee7a9" + integrity sha512-66Xjz3NZXUUWKZJPvWKuwEkaqMZpir1Gm4SbhbB2iiRSSTW8jqwdkSb9RhgTCDt5OnSPd3+Cq0WsP/T5ExJbhA== + +"@oven/bun-darwin-x64-baseline@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-darwin-x64-baseline/-/bun-darwin-x64-baseline-1.2.17.tgz#8e20ebdbc5ff466c894702c616433b81190294d7" + integrity sha512-VSIctl90tV8yg1LRMvPg/8LgUzl55Q7Jcxe+u6PfuvLQIJOTIPbNn7HtRpJg7MGc3+qyztB5KDd70xC7qI2yEg== + +"@oven/bun-darwin-x64@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-darwin-x64/-/bun-darwin-x64-1.2.17.tgz#1c296a3cba4c4b09d34c855866774d9274af37cf" + integrity sha512-OMJMHpcpBlWcVnWfSQ6x+8fF7HpkQLqBfoIvzxgUjIZZvj2d8K46XX4N/h62RglDEinRC9VDGxt24vwvlk5tTw== + +"@oven/bun-linux-aarch64-musl@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-linux-aarch64-musl/-/bun-linux-aarch64-musl-1.2.17.tgz#a7b7baafe17057d2144aeecb351ead9af090582e" + integrity sha512-PH+hUV+I6DGD1VRHdAIAKEAOed+GSdvn6S1b3qqX27/VuHBU781V+hzt+6DBlcWBHYLw8PIg9sfIdNp485gQmw== + +"@oven/bun-linux-aarch64@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-linux-aarch64/-/bun-linux-aarch64-1.2.17.tgz#f8e153a11c576513454abc6d5a77d6e267f006d3" + integrity sha512-KPoMqaibCXcSv+VZ3uMqKUNZqMxE6Hho1be6+laolYGOIJxJTMnZPfmKfIlQmnnW3vLlm3g2Rm8pPPC7doSHWg== + +"@oven/bun-linux-x64-baseline@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-linux-x64-baseline/-/bun-linux-x64-baseline-1.2.17.tgz#67f651f664db317f3b884c7008ce78231c0e046b" + integrity sha512-IrnFMUwYWxoKICQgK8ZlJ6rI/HU2gITFNEW0MIOPIcuT0s3j0/33631M9EzYDoL4NuLQPks6569JDvSHEVqdeA== + +"@oven/bun-linux-x64-musl-baseline@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-linux-x64-musl-baseline/-/bun-linux-x64-musl-baseline-1.2.17.tgz#5071360f3dcd04fee377954241379c12fc9fe121" + integrity sha512-YE5wQ/YA79BykMLhuwgdoF8Yjj5dRipD8dwmXs8n7gzR+/L9tL7Q69NQgskW2KkAalmWPoGAv3TV0IwbU+1dFw== + +"@oven/bun-linux-x64-musl@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-linux-x64-musl/-/bun-linux-x64-musl-1.2.17.tgz#aaccee09b7ad8c3092440b6c0b2cfae370db51f8" + integrity sha512-fW9qn/WqO131/qSIkIPW8zN+thQnYUWa/k98EWubLG87htKSPh1v023E5ikKb7WlUv4Yb6UlE/z4NmMYKffmAg== + +"@oven/bun-linux-x64@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-linux-x64/-/bun-linux-x64-1.2.17.tgz#f616fddc78ae69044028aa5391e8689a5e7396f3" + integrity sha512-BfySnrTxp7D9hVUi9JEpviJl8ndsuESiRiQKTzgmdTLrMjUxP4SwrwMtYt6R9X20n9rREG6a47C0IyQMhbwG/g== + +"@oven/bun-windows-x64-baseline@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-windows-x64-baseline/-/bun-windows-x64-baseline-1.2.17.tgz#45f752cf2eb15089b9930c598fb7a7a18b77224b" + integrity sha512-aVkq4l1yZ9VKfBOtZ2HEj0OCU5kUe3Fx6LbAG6oY6OglWVYj051i3RGaE2OdR4L4F2jDyxzfGYRTM/qs8nU5qA== + +"@oven/bun-windows-x64@1.2.17": + version "1.2.17" + resolved "https://registry.yarnpkg.com/@oven/bun-windows-x64/-/bun-windows-x64-1.2.17.tgz#a6216c78617c684bdd6ed4045da2696a751b77e7" + integrity sha512-GJUg1oA59DWH6eyV8uccpgfTEVxjmgfTWQCOl2ySMXR3IfRoFwS4aQfpjcVzNmEZrv8eYt+yMuw1K7aNcWTTIg== + "@pandacss/is-valid-prop@0.41.0": version "0.41.0" resolved "https://registry.yarnpkg.com/@pandacss/is-valid-prop/-/is-valid-prop-0.41.0.tgz#4b82222639a096711d0601fb15f491ae5e084ff8" @@ -8469,6 +8616,11 @@ resolved "https://registry.yarnpkg.com/@xstate/fsm/-/fsm-1.4.0.tgz#6fd082336fde4d026e9e448576189ee5265fa51a" integrity sha512-uTHDeu2xI5E1IFwf37JFQM31RrH7mY7877RqPBS4ZqSNUwoLDuct8AhBWaXGnVizBAYyimVwgCyGa9z/NiRhXA== +"@yarnpkg/lockfile@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== + "@zag-js/accordion@1.7.0": version "1.7.0" resolved "https://registry.yarnpkg.com/@zag-js/accordion/-/accordion-1.7.0.tgz#3bc7d35d3e120561c75da3bd36bfa3f9d4e19f5f" @@ -9125,6 +9277,11 @@ resolved "https://registry.yarnpkg.com/@zag-js/utils/-/utils-1.7.0.tgz#90cdcc05c27051cbb5981f0c63f180ded2955ea4" integrity sha512-yIxvH5V27a1WuLgCxHX7qpdtFo8vTJaZLafBpSNfVYG4B8FaxTE+P7JAcpmAzs3UyXura/WfAY2eVWWVBpk9ZA== +"@zip.js/zip.js@^2.7.44": + version "2.7.62" + resolved "https://registry.yarnpkg.com/@zip.js/zip.js/-/zip.js-2.7.62.tgz#6650f84c3a89d918215a936637214b09688656c8" + integrity sha512-OaLvZ8j4gCkLn048ypkZu29KX30r8/OfFF2w4Jo5WXFr+J04J+lzJ5TKZBVgFXhlvSkqNFQdfnY1Q8TMTCyBVA== + abab@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" @@ -9199,6 +9356,11 @@ acorn-import-assertions@^1.9.0: resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== +acorn-import-attributes@^1.9.5: + version "1.9.5" + resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef" + integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ== + acorn-jsx@^5.3.2: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" @@ -9549,6 +9711,17 @@ asn1js@^3.0.5: pvutils "^1.1.3" tslib "^2.4.0" +assert@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-2.1.0.tgz#6d92a238d05dc02e7427c881fb8be81c8448b2dd" + integrity sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw== + dependencies: + call-bind "^1.0.2" + is-nan "^1.3.2" + object-is "^1.1.5" + object.assign "^4.1.4" + util "^0.12.5" + ast-types-flow@^0.0.8: version "0.0.8" resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6" @@ -9576,6 +9749,11 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + atomic-sleep@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b" @@ -9929,6 +10107,23 @@ bufrw@^1.2.1: hexer "^1.5.0" xtend "^4.0.0" +bun@^1.2.17: + version "1.2.17" + resolved "https://registry.yarnpkg.com/bun/-/bun-1.2.17.tgz#c320f7e2e561b157263f9a471cf60905e89f3c59" + integrity sha512-lrUZTWS24eVy6v+Eph8VTwqFPcG7/XQ0rLBQEMNoQs2Vd7ctVdMGAzJKKGZRUQH+rgkD8rBeHGIVoWxX4vJLCA== + optionalDependencies: + "@oven/bun-darwin-aarch64" "1.2.17" + "@oven/bun-darwin-x64" "1.2.17" + "@oven/bun-darwin-x64-baseline" "1.2.17" + "@oven/bun-linux-aarch64" "1.2.17" + "@oven/bun-linux-aarch64-musl" "1.2.17" + "@oven/bun-linux-x64" "1.2.17" + "@oven/bun-linux-x64-baseline" "1.2.17" + "@oven/bun-linux-x64-musl" "1.2.17" + "@oven/bun-linux-x64-musl-baseline" "1.2.17" + "@oven/bun-windows-x64" "1.2.17" + "@oven/bun-windows-x64-baseline" "1.2.17" + bundle-n-require@1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/bundle-n-require/-/bundle-n-require-1.1.2.tgz#e03452fe13bb473a8f2e0baba2c60764b7f8c9a8" @@ -9944,6 +10139,14 @@ busboy@1.6.0: dependencies: streamsearch "^1.1.0" +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -9963,6 +10166,24 @@ call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: get-intrinsic "^1.2.4" set-function-length "^1.2.1" +call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" + get-intrinsic "^1.2.4" + set-function-length "^1.2.2" + +call-bound@^1.0.2, call-bound@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" + integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== + dependencies: + call-bind-apply-helpers "^1.0.2" + get-intrinsic "^1.3.0" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -10024,7 +10245,7 @@ chalk@^2.0.0, chalk@^2.4.2: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0, chalk@^4.1.0: +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -10032,6 +10253,16 @@ chalk@^4.0.0, chalk@^4.1.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +chalk@^5.3.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.4.1.tgz#1b48bf0963ec158dce2aacf69c093ae2dd2092d8" + integrity sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w== + +change-case@^5.3.0: + version "5.4.4" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.4.4.tgz#0d52b507d8fb8f204343432381d1a6d7bff97a02" + integrity sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w== + char-regex@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" @@ -10092,6 +10323,11 @@ ci-info@^3.2.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.6.1.tgz#7594f1c95cb7fdfddee7af95a13af7dbc67afdcf" integrity sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w== +ci-info@^3.7.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + citty@^0.1.4, citty@^0.1.5: version "0.1.5" resolved "https://registry.yarnpkg.com/citty/-/citty-0.1.5.tgz#fe37ceae5dc764af75eb2fece99d2bf527ea4e50" @@ -10270,6 +10506,11 @@ colorette@^2.0.16, colorette@^2.0.17, colorette@^2.0.7: resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== +colorjs.io@^0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/colorjs.io/-/colorjs.io-0.5.2.tgz#63b20139b007591ebc3359932bef84628eb3fcef" + integrity sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw== + colors@1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" @@ -10287,7 +10528,7 @@ comma-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== -commander@12.1.0: +commander@12.1.0, commander@^12.1.0: version "12.1.0" resolved "https://registry.yarnpkg.com/commander/-/commander-12.1.0.tgz#01423b36f501259fdaac4d0e4d60c96c991585d3" integrity sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA== @@ -10317,6 +10558,11 @@ comment-parser@^1.4.0: resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.4.1.tgz#bdafead37961ac079be11eb7ec65c4d021eaf9cc" integrity sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg== +component-emitter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-2.0.0.tgz#3a137dfe66fcf2efe3eab7cb7d5f51741b3620c6" + integrity sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw== + concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" @@ -10994,7 +11240,7 @@ deepmerge@^4.2.2: resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== -deepmerge@~4.3.0: +deepmerge@^4.3.1, deepmerge@~4.3.0: version "4.3.1" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== @@ -11250,6 +11496,15 @@ drange@^1.0.2: resolved "https://registry.yarnpkg.com/drange/-/drange-1.1.1.tgz#b2aecec2aab82fcef11dbbd7b9e32b83f8f6c0b8" integrity sha512-pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA== +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + duplexer@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" @@ -11536,6 +11791,11 @@ es-define-property@^1.0.0: dependencies: get-intrinsic "^1.2.4" +es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" @@ -11583,6 +11843,13 @@ es-object-atoms@^1.0.0: dependencies: es-errors "^1.3.0" +es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + dependencies: + es-errors "^1.3.0" + es-set-tostringtag@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" @@ -12370,6 +12637,13 @@ find-up@^5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" +find-yarn-workspace-root@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd" + integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ== + dependencies: + micromatch "^4.0.2" + find@^0.2.4: version "0.2.9" resolved "https://registry.yarnpkg.com/find/-/find-0.2.9.tgz#4b73f1ff9e56ad91b76e716407fe5ffe6554bb8c" @@ -12458,6 +12732,16 @@ fs-constants@^1.0.0: resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== +fs-extra@^9.0.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -12571,6 +12855,22 @@ get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: has-symbols "^1.0.3" hasown "^2.0.0" +get-intrinsic@^1.2.5, get-intrinsic@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" + get-iterator@^2.0.0, get-iterator@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/get-iterator/-/get-iterator-2.0.1.tgz#a904829f61bace789e0d64bd1a504c511a015c3f" @@ -12596,6 +12896,14 @@ get-port@^7.1.0: resolved "https://registry.yarnpkg.com/get-port/-/get-port-7.1.0.tgz#d5a500ebfc7aa705294ec2b83cc38c5d0e364fec" integrity sha512-QB9NKEeDg3xxVwCCwJQ9+xycaz6pBB6iQ76wiWMl1927n0Kir6alPiP+yuiICLLU4jpMe08dXfpebuQppFA2zw== +get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" @@ -12653,6 +12961,18 @@ glob@^10.3.10: minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-scurry "^1.10.1" +glob@^10.4.2: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + glob@^7.1.3, glob@^7.1.4: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" @@ -12698,6 +13018,11 @@ globals@^14.0.0: resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e" integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== +globals@^16.1.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-16.2.0.tgz#19efcd1ddde2bd5efce128e5c2e441df1abc6f7c" + integrity sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg== + globalthis@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" @@ -12765,6 +13090,16 @@ gopd@^1.0.1: dependencies: get-intrinsic "^1.1.3" +gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== + +graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.10" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" @@ -12885,6 +13220,11 @@ has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== + has-tostringtag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" @@ -13124,6 +13464,11 @@ husky@^8.0.0: resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.1.tgz#511cb3e57de3e3190514ae49ed50f6bc3f50b3e9" integrity sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw== +hyperdyperid@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/hyperdyperid/-/hyperdyperid-1.2.0.tgz#59668d323ada92228d2a869d3e474d5a33b69e6b" + integrity sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A== + iconv-lite@0.6, iconv-lite@0.6.3: version "0.6.3" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" @@ -13179,6 +13524,16 @@ import-in-the-middle@1.7.1: cjs-module-lexer "^1.2.2" module-details-from-path "^1.0.3" +import-in-the-middle@^1.14.2: + version "1.14.2" + resolved "https://registry.yarnpkg.com/import-in-the-middle/-/import-in-the-middle-1.14.2.tgz#283661625a88ff7c0462bd2984f77715c3bc967c" + integrity sha512-5tCuY9BV8ujfOpwtAGgsTx9CGUapcFMEEyByLv1B+v2+6DhAcw+Zr0nhQT7uwaZ7DiourxFEscghOR8e1aPLQw== + dependencies: + acorn "^8.14.0" + acorn-import-attributes "^1.9.5" + cjs-module-lexer "^1.2.2" + module-details-from-path "^1.0.3" + import-local@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" @@ -13210,6 +13565,11 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + ini@~1.3.0: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" @@ -13616,6 +13976,14 @@ is-map@^2.0.1, is-map@^2.0.2: resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== +is-nan@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" + integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + is-negative-zero@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" @@ -13648,6 +14016,11 @@ is-plain-obj@^2.1.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== +is-plain-obj@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" + integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== + is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" @@ -13764,7 +14137,7 @@ is-weakset@^2.0.1: call-bind "^1.0.2" get-intrinsic "^1.1.1" -is-wsl@^2.2.0: +is-wsl@^2.1.1, is-wsl@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== @@ -14116,6 +14489,15 @@ jackspeak@^2.3.5: optionalDependencies: "@pkgjs/parseargs" "^0.11.0" +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + jaeger-client@^3.15.0: version "3.19.0" resolved "https://registry.yarnpkg.com/jaeger-client/-/jaeger-client-3.19.0.tgz#9b5bd818ebd24e818616ee0f5cffe1722a53ae6e" @@ -14666,6 +15048,17 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-stable-stringify@^1.0.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz#8903cfac42ea1a0f97f35d63a4ce0518f0cc6a70" + integrity sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg== + dependencies: + call-bind "^1.0.8" + call-bound "^1.0.4" + isarray "^2.0.5" + jsonify "^0.0.1" + object-keys "^1.1.1" + json-stringify-safe@~5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" @@ -14688,6 +15081,20 @@ jsonc-parser@^3.2.0: resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + "jsx-ast-utils@^2.4.1 || ^3.0.0": version "3.3.3" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" @@ -14727,6 +15134,13 @@ keyvaluestorage-interface@^1.0.0: resolved "https://registry.yarnpkg.com/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz#13ebdf71f5284ad54be94bd1ad9ed79adad515ff" integrity sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g== +klaw-sync@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c" + integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ== + dependencies: + graceful-fs "^4.1.11" + kleur@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" @@ -15033,6 +15447,11 @@ lru-cache@^10.0.2, "lru-cache@^9.1.1 || ^10.0.0": resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.1.0.tgz#2098d41c2dc56500e6c88584aa656c84de7d0484" integrity sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag== +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + lru-cache@^11.1.0: version "11.1.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.1.0.tgz#afafb060607108132dbc1cf8ae661afb69486117" @@ -15097,6 +15516,11 @@ markdown-it@^12.2.0: mdurl "^1.0.1" uc.micro "^1.0.5" +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + mdn-data@2.0.14: version "2.0.14" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" @@ -15117,6 +15541,16 @@ mdurl@^1.0.1: resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== +memfs@^4.17.0: + version "4.17.2" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-4.17.2.tgz#1f71a6d85c8c53b4f1b388234ed981a690c7e227" + integrity sha512-NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg== + dependencies: + "@jsonjoy.com/json-pack" "^1.0.3" + "@jsonjoy.com/util" "^1.3.0" + tree-dump "^1.0.1" + tslib "^2.0.0" + memoize-one@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" @@ -15154,7 +15588,7 @@ micro-ftch@^0.3.1: resolved "https://registry.yarnpkg.com/micro-ftch/-/micro-ftch-0.3.1.tgz#6cb83388de4c1f279a034fb0cf96dfc050853c5f" integrity sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg== -micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8: +micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== @@ -15261,6 +15695,11 @@ minimist@^1.2.0, minimist@^1.2.5: resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== +minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + mipd@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mipd/-/mipd-0.0.7.tgz#bb5559e21fa18dc3d9fe1c08902ef14b7ce32fd9" @@ -15648,6 +16087,11 @@ object-inspect@^1.13.1: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== +object-inspect@^1.13.3: + version "1.13.4" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213" + integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== + object-inspect@^1.9.0: version "1.12.3" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" @@ -15808,6 +16252,14 @@ onetime@^6.0.0: dependencies: mimic-fn "^4.0.0" +open@^7.4.2: + version "7.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== + dependencies: + is-docker "^2.0.0" + is-wsl "^2.1.1" + open@^8.4.0: version "8.4.2" resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" @@ -15865,6 +16317,11 @@ optionator@^0.9.3: type-check "^0.4.0" word-wrap "^1.2.5" +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + ox@0.6.7: version "0.6.7" resolved "https://registry.yarnpkg.com/ox/-/ox-0.6.7.tgz#afd53f2ecef68b8526660e9d29dee6e6b599a832" @@ -15977,6 +16434,11 @@ p-wait-for@^5.0.2: dependencies: p-timeout "^6.0.0" +package-json-from-dist@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + package-manager-detector@0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-0.1.2.tgz#3e20f82cb6f6f2cc66e6cda64a5f054ce5396192" @@ -16023,6 +16485,27 @@ parse5@^7.0.0, parse5@^7.1.1: dependencies: entities "^4.4.0" +patch-package@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-8.0.0.tgz#d191e2f1b6e06a4624a0116bcb88edd6714ede61" + integrity sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA== + dependencies: + "@yarnpkg/lockfile" "^1.1.0" + chalk "^4.1.2" + ci-info "^3.7.0" + cross-spawn "^7.0.3" + find-yarn-workspace-root "^2.0.0" + fs-extra "^9.0.0" + json-stable-stringify "^1.0.2" + klaw-sync "^6.0.0" + minimist "^1.2.6" + open "^7.4.2" + rimraf "^2.6.3" + semver "^7.5.3" + slash "^2.0.0" + tmp "^0.0.33" + yaml "^2.2.2" + path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -16056,6 +16539,14 @@ path-scurry@^1.10.1: lru-cache "^9.1.1 || ^10.0.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-to-regexp@8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-8.1.0.tgz#4d687606ed0be8ed512ba802eb94d620cb1a86f0" @@ -16071,6 +16562,19 @@ path-type@^5.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8" integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg== +path-unified@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/path-unified/-/path-unified-0.2.0.tgz#9094ca9cc7e573f037884f6bf8f3d621a2f68f29" + integrity sha512-MNKqvrKbbbb5p7XHXV6ZAsf/1f/yJQa13S/fcX0uua8ew58Tgc6jXV+16JyAbnR/clgCH+euKDxrF2STxMHdrg== + +path@^0.12.7: + version "0.12.7" + resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" + integrity sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q== + dependencies: + process "^0.11.1" + util "^0.10.3" + pathe@^1.1.0, pathe@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.1.tgz#1dd31d382b974ba69809adc9a7a347e65d84829a" @@ -16457,6 +16961,11 @@ prettier@3.3.3: resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== +prettier@^3.3.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.0.tgz#18ec98d62cb0757a5d4eab40253ff3e6d0fc8dea" + integrity sha512-ujSB9uXHJKzM/2GBuE0hBOUgC77CN3Bnpqa+g80bkv3T3A93wL/xlzDATHhnhkzifz/UE2SNOvmbTz5hSkDlHw== + pretty-format@^27.0.2: version "27.5.1" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" @@ -16505,7 +17014,7 @@ process@^0.10.0: resolved "https://registry.yarnpkg.com/process/-/process-0.10.1.tgz#842457cc51cfed72dc775afeeafb8c6034372725" integrity sha512-dyIett8dgGIZ/TXKUzeYExt7WA6ldDzys9vTDU/cCA9L17Ypme+KzS+NjQCjpn9xsvi/shbMC+yP/BcFMBz0NA== -process@^0.11.10: +process@^0.11.1, process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== @@ -16637,7 +17146,7 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^1.3.2: +punycode@^1.3.2, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== @@ -16686,6 +17195,13 @@ qrcode@^1.5.1: pngjs "^5.0.0" yargs "^15.3.1" +qs@^6.12.3: + version "6.14.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930" + integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== + dependencies: + side-channel "^1.1.0" + query-string@7.1.3: version "7.1.3" resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328" @@ -17357,6 +17873,13 @@ rfdc@^1.3.0: resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + robust-predicates@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.1.tgz#ecde075044f7f30118682bd9fb3f123109577f9a" @@ -17534,6 +18057,11 @@ semver@^7.5.2: resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f" integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== +semver@^7.5.3: + version "7.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58" + integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA== + semver@^7.6.0, semver@^7.6.3: version "7.6.3" resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" @@ -17551,7 +18079,7 @@ set-blocking@^2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-function-length@^1.2.1: +set-function-length@^1.2.1, set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -17640,6 +18168,35 @@ short-unique-id@^5.0.2: resolved "https://registry.yarnpkg.com/short-unique-id/-/short-unique-id-5.0.3.tgz#bc6975dc5e8b296960ff5ac91ddabbc7ddb693d9" integrity sha512-yhniEILouC0s4lpH0h7rJsfylZdca10W9mDJRAFh3EpcSUanCHGb0R7kcFOIUCZYSAPo0PUD5ZxWQdW0T4xaug== +side-channel-list@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -17659,6 +18216,17 @@ side-channel@^1.0.6: get-intrinsic "^1.2.4" object-inspect "^1.13.1" +side-channel@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" + signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" @@ -17704,6 +18272,11 @@ sisteransi@^1.0.5: resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -17874,6 +18447,13 @@ stream-to-it@^1.0.1: dependencies: it-stream-types "^2.0.1" +stream@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/stream/-/stream-0.0.3.tgz#3f3934a900a561ce3e2b9ffbd2819cead32699d9" + integrity sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A== + dependencies: + component-emitter "^2.0.0" + streamsearch@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" @@ -17907,16 +18487,7 @@ string-template@~0.2.1: resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" integrity sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw== -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -18061,14 +18632,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -18120,6 +18684,25 @@ strtok3@^10.2.0: "@tokenizer/token" "^0.3.0" peek-readable "^7.0.0" +style-dictionary@^4.3.3: + version "4.4.0" + resolved "https://registry.yarnpkg.com/style-dictionary/-/style-dictionary-4.4.0.tgz#7ef512654b825f128da7f74d46862569569620dc" + integrity sha512-+xU0IA1StzqAqFs/QtXkK+XJa7wpS4X5H+JQccRKsRCElgeLGocFU1U/UMvMUylKFw6vwGV+Y/a2wb2pm5rFFQ== + dependencies: + "@bundled-es-modules/deepmerge" "^4.3.1" + "@bundled-es-modules/glob" "^10.4.2" + "@bundled-es-modules/memfs" "^4.9.4" + "@zip.js/zip.js" "^2.7.44" + chalk "^5.3.0" + change-case "^5.3.0" + commander "^12.1.0" + is-plain-obj "^4.1.0" + json5 "^2.2.2" + patch-package "^8.0.0" + path-unified "^0.2.0" + prettier "^3.3.3" + tinycolor2 "^1.6.0" + style-loader@^3.3.1: version "3.3.1" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.1.tgz#057dfa6b3d4d7c7064462830f9113ed417d38575" @@ -18394,6 +18977,11 @@ thenify-all@^1.0.0: dependencies: any-promise "^1.0.0" +thingies@^1.20.0: + version "1.21.0" + resolved "https://registry.yarnpkg.com/thingies/-/thingies-1.21.0.tgz#e80fbe58fd6fdaaab8fad9b67bd0a5c943c445c1" + integrity sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g== + thread-stream@^0.15.1: version "0.15.2" resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-0.15.2.tgz#fb95ad87d2f1e28f07116eb23d85aba3bc0425f4" @@ -18462,6 +19050,11 @@ tiny-warning@^1.0.3: resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== +tinycolor2@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.6.0.tgz#f98007460169b0263b97072c5ae92484ce02d09e" + integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== + tldts-core@^6.1.86: version "6.1.86" resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-6.1.86.tgz#a93e6ed9d505cb54c542ce43feb14c73913265d8" @@ -18474,6 +19067,13 @@ tldts@^6.1.32: dependencies: tldts-core "^6.1.86" +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + tmpl@1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" @@ -18543,6 +19143,11 @@ traverse-chain@~0.1.0: resolved "https://registry.yarnpkg.com/traverse-chain/-/traverse-chain-0.1.0.tgz#61dbc2d53b69ff6091a12a168fd7d433107e40f1" integrity sha512-up6Yvai4PYKhpNp5PkYtx50m3KbwQrqDwbuZP/ItyL64YEWHAvH6Md83LFLV/GRSk/BoUVwwgUzX6SOQSbsfAg== +tree-dump@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tree-dump/-/tree-dump-1.0.3.tgz#2f0e42e77354714418ed7ab44291e435ccdb0f80" + integrity sha512-il+Cv80yVHFBwokQSfd4bldvr1Md951DpgAGfmhydt04L+YzHgubm2tQ7zueWDcGENKHq0ZvGFR/hjvNXilHEg== + tree-sitter-json@=0.24.8: version "0.24.8" resolved "https://registry.yarnpkg.com/tree-sitter-json/-/tree-sitter-json-0.24.8.tgz#72bfa26942691f2bf59d973b6794923c033f04c2" @@ -18923,6 +19528,11 @@ universalify@^0.2.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== +universalify@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" + integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + unraw@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/unraw/-/unraw-3.0.0.tgz#73443ed70d2ab09ccbac2b00525602d5991fbbe3" @@ -18990,6 +19600,14 @@ url-parse@^1.5.10, url-parse@^1.5.3: querystringify "^2.1.1" requires-port "^1.0.0" +url@^0.11.3: + version "0.11.4" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.4.tgz#adca77b3562d56b72746e76b330b7f27b6721f3c" + integrity sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg== + dependencies: + punycode "^1.4.1" + qs "^6.12.3" + use-callback-ref@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.0.tgz#772199899b9c9a50526fedc4993fc7fa1f7e32d5" @@ -19049,7 +19667,14 @@ util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -util@^0.12.4: +util@^0.10.3: + version "0.10.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + dependencies: + inherits "2.0.3" + +util@^0.12.4, util@^0.12.5: version "0.12.5" resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== @@ -19433,7 +20058,7 @@ word-wrap@^1.2.5, word-wrap@~1.2.3: resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -19451,15 +20076,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" @@ -19605,6 +20221,11 @@ yaml@^2.1.1: resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.1.tgz#2e57e0b5e995292c25c75d2658f0664765210eed" integrity sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg== +yaml@^2.2.2: + version "2.8.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.0.tgz#15f8c9866211bdc2d3781a0890e44d4fa1a5fff6" + integrity sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ== + yargs-parser@^18.1.2: version "18.1.3" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"