From 045d7ec7fae9e9c8e94e92fec3c976b32fe57cd7 Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Wed, 15 Jul 2026 16:43:28 +0500 Subject: [PATCH] web: redesign auth pages (#10107) Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> web: auth pages design fixes Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> web: minor ui fixes web: update button text in auth container Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> web: define & use new button variants Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> web: enhance MFA code component styling and layout Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> theme: set button's line height to 100% for new variants Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> web: retain email/password field data when navigating back from mfa screens Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/web/package-lock.json | 45769 +++++++++++++++- apps/web/package.json | 1 + apps/web/src/assets/auth/capa-green.svg | 26 + apps/web/src/assets/auth/notesnook-phone.png | Bin 0 -> 347710 bytes apps/web/src/bootstrap.tsx | 13 +- apps/web/src/common/theme.ts | 283 + .../src/components/auth-container/index.jsx | 317 +- apps/web/src/components/error-text/index.tsx | 41 +- apps/web/src/components/field/index.tsx | 21 +- apps/web/src/components/icons/index.tsx | 52 +- apps/web/src/components/otp-input/index.tsx | 180 + apps/web/src/navigation/auth-routes.ts | 9 +- apps/web/src/root.tsx | 2 +- apps/web/src/stores/theme-store.ts | 26 +- apps/web/src/stores/user-store.ts | 41 +- apps/web/src/views/auth.tsx | 701 +- packages/editor/package-lock.json | 73 +- packages/icons/package-lock.json | 13 + packages/icons/svgs/chat.svg | 2 +- packages/icons/svgs/chevron-right.svg | 4 +- packages/icons/svgs/clock.svg | 2 +- packages/icons/svgs/envelope-simple.svg | 2 +- packages/icons/svgs/eye-closed.svg | 2 +- packages/icons/svgs/eye-open.svg | 2 +- packages/icons/svgs/lock-simple.svg | 2 +- packages/icons/svgs/warning-circle.svg | 2 +- packages/intl/locale/en.po | 23 +- packages/intl/locale/pseudo-LOCALE.po | 23 +- packages/intl/src/strings.ts | 11 +- packages/theme/src/theme/index.ts | 3 +- packages/theme/src/theme/variants/button.ts | 47 + packages/ui/src/components/flex.tsx | 8 +- packages/ui/src/utils/types.ts | 7 +- 33 files changed, 44541 insertions(+), 3167 deletions(-) create mode 100644 apps/web/src/assets/auth/capa-green.svg create mode 100644 apps/web/src/assets/auth/notesnook-phone.png create mode 100644 apps/web/src/common/theme.ts create mode 100644 apps/web/src/components/otp-input/index.tsx create mode 100644 packages/icons/package-lock.json diff --git a/apps/web/package-lock.json b/apps/web/package-lock.json index d5a23bfc2..0a119b95b 100644 --- a/apps/web/package-lock.json +++ b/apps/web/package-lock.json @@ -26,6 +26,7 @@ "@notesnook/crypto": "file:../../packages/crypto", "@notesnook/desktop": "file:../desktop", "@notesnook/editor": "file:../../packages/editor", + "@notesnook/icons": "file:../../packages/icons", "@notesnook/intl": "file:../../packages/intl", "@notesnook/logger": "file:../../packages/logger", "@notesnook/streamable-fs": "file:../../packages/streamable-fs", @@ -199,6 +200,21076 @@ "webpack-dev-server": "^4.7.4" } }, + "../../extensions/web-clipper/node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@ampproject/remapping": { + "version": "2.3.0", + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/code-frame": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.28.5", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/compat-data": { + "version": "7.29.0", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/core": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.5", + "@babel/generator": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helpers": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "../../extensions/web-clipper/node_modules/@babel/eslint-parser": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@babel/generator": { + "version": "7.29.1", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.0", + "@babel/types": "^7.29.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-compilation-targets": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.28.5", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.8", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "debug": "^4.4.3", + "lodash.debounce": "^4.0.8", + "resolve": "^1.22.11" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-globals": { + "version": "7.28.0", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-module-imports": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-module-transforms": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-replace-supers": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helper-wrap-function": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/helpers": { + "version": "7.29.2", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/parser": { + "version": "7.29.2", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.28.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-decorators": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-syntax-decorators": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-decorators": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-flow": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-typescript": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-class-properties": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-classes": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/template": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-destructuring": { + "version": "7.28.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-flow": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-json-strings": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-literals": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-new-target": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.7", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-private-methods": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.28.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-syntax-jsx": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-regenerator": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-runtime": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-spread": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-typescript": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-env": { + "version": "7.29.2", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.29.0", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.6", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.28.6", + "@babel/plugin-syntax-import-attributes": "^7.28.6", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.29.0", + "@babel/plugin-transform-async-to-generator": "^7.28.6", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.6", + "@babel/plugin-transform-class-properties": "^7.28.6", + "@babel/plugin-transform-class-static-block": "^7.28.6", + "@babel/plugin-transform-classes": "^7.28.6", + "@babel/plugin-transform-computed-properties": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-dotall-regex": "^7.28.6", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.6", + "@babel/plugin-transform-exponentiation-operator": "^7.28.6", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.28.6", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.28.6", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.28.6", + "@babel/plugin-transform-modules-systemjs": "^7.29.0", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.28.6", + "@babel/plugin-transform-numeric-separator": "^7.28.6", + "@babel/plugin-transform-object-rest-spread": "^7.28.6", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.28.6", + "@babel/plugin-transform-optional-chaining": "^7.28.6", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.28.6", + "@babel/plugin-transform-private-property-in-object": "^7.28.6", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.29.0", + "@babel/plugin-transform-regexp-modifiers": "^7.28.6", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.28.6", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.28.6", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.28.6", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.15", + "babel-plugin-polyfill-corejs3": "^0.14.0", + "babel-plugin-polyfill-regenerator": "^0.6.6", + "core-js-compat": "^3.48.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-react": { + "version": "7.28.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-transform-react-display-name": "^7.28.0", + "@babel/plugin-transform-react-jsx": "^7.27.1", + "@babel/plugin-transform-react-jsx-development": "^7.27.1", + "@babel/plugin-transform-react-pure-annotations": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/preset-typescript": { + "version": "7.28.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/runtime": { + "version": "7.29.2", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/template": { + "version": "7.28.6", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.28.6", + "@babel/parser": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/traverse": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.29.0", + "@babel/generator": "^7.29.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.29.0", + "@babel/template": "^7.28.6", + "@babel/types": "^7.29.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@babel/types": { + "version": "7.29.0", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@csstools/normalize.css": { + "version": "12.1.1", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-cascade-layers": { + "version": "1.1.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-cascade-layers/node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "license": "CC0-1.0", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-cascade-layers/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-is-pseudo-class/node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "license": "CC0-1.0", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-is-pseudo-class/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/@devicefarmer/adbkit": { + "version": "3.2.3", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@devicefarmer/adbkit-logcat": "^2.1.2", + "@devicefarmer/adbkit-monkey": "~1.2.0", + "bluebird": "~3.7", + "commander": "^9.1.0", + "debug": "~4.3.1", + "node-forge": "^1.3.1", + "split": "~1.0.1" + }, + "bin": { + "adbkit": "bin/adbkit" + }, + "engines": { + "node": ">= 0.10.4" + } + }, + "../../extensions/web-clipper/node_modules/@devicefarmer/adbkit-logcat": { + "version": "2.1.3", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/@devicefarmer/adbkit-monkey": { + "version": "1.2.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">= 0.10.4" + } + }, + "../../extensions/web-clipper/node_modules/@devicefarmer/adbkit/node_modules/commander": { + "version": "9.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "../../extensions/web-clipper/node_modules/@devicefarmer/adbkit/node_modules/debug": { + "version": "4.3.7", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/babel-plugin": { + "version": "11.13.5", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@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.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/cache": { + "version": "11.14.0", + "license": "MIT", + "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" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/cache/node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/hash": { + "version": "0.9.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { + "version": "0.7.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/memoize": { + "version": "0.9.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/react": { + "version": "11.11.1", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@emotion/serialize": { + "version": "1.3.3", + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.2", + "csstype": "^3.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/sheet": { + "version": "1.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/unitless": { + "version": "0.10.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.2.0", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "../../extensions/web-clipper/node_modules/@emotion/utils": { + "version": "1.4.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/@eslint/js": { + "version": "8.57.1", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@fluent/syntax": { + "version": "0.19.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=14.0.0", + "npm": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "../../extensions/web-clipper/node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/@isaacs/cliui": { + "version": "8.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.2", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/console/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/core/node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/environment/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/fake-timers/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/reporters/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/schemas": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/source-map": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/source-map/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-result/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@jest/transform/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/@jest/types": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/source-map": { + "version": "0.3.11", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "../../extensions/web-clipper/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "../../extensions/web-clipper/node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@mdi/js": { + "version": "7.4.47", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/@mdi/react": { + "version": "1.6.1", + "license": "MIT", + "dependencies": { + "prop-types": "^15.7.2" + } + }, + "../../extensions/web-clipper/node_modules/@mdn/browser-compat-data": { + "version": "5.5.29", + "dev": true, + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "license": "MIT", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "../../extensions/web-clipper/node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/@notesnook/clipper": { + "resolved": "../../packages/clipper", + "link": true + }, + "../../extensions/web-clipper/node_modules/@notesnook/theme": { + "resolved": "../../packages/theme", + "link": true + }, + "../../extensions/web-clipper/node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.17", + "license": "MIT", + "dependencies": { + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.6", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, + "../../extensions/web-clipper/node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.22.0" + } + }, + "../../extensions/web-clipper/node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "../../extensions/web-clipper/node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "dev": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/@pnpm/npm-conf": { + "version": "3.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@rtsao/scc": { + "version": "1.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@rushstack/eslint-patch": { + "version": "1.16.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@sindresorhus/is": { + "version": "5.6.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "../../extensions/web-clipper/node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/background": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/border": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/color": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/core": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/css": { + "version": "5.1.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@styled-system/flexbox": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/grid": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/layout": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/position": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/shadow": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/should-forward-prop": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@emotion/is-prop-valid": "^0.8.1", + "@emotion/memoize": "^0.7.1", + "styled-system": "^5.1.5" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { + "version": "0.7.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@styled-system/space": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/typography": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../extensions/web-clipper/node_modules/@styled-system/variant": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2", + "@styled-system/css": "^5.1.5" + } + }, + "../../extensions/web-clipper/node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "license": "Apache-2.0", + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/core": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@svgr/webpack": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "../../extensions/web-clipper/node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "defer-to-connect": "^2.0.1" + }, + "engines": { + "node": ">=14.16" + } + }, + "../../extensions/web-clipper/node_modules/@theme-ui/components": { + "version": "0.16.1", + "license": "MIT", + "dependencies": { + "@styled-system/color": "^5.1.2", + "@styled-system/should-forward-prop": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@theme-ui/core": "^0.16.1", + "@theme-ui/css": "^0.16.1", + "@types/styled-system": "^5.1.13" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "@theme-ui/theme-provider": "^0.16.1", + "react": ">=18" + } + }, + "../../extensions/web-clipper/node_modules/@theme-ui/core": { + "version": "0.16.1", + "license": "MIT", + "dependencies": { + "@theme-ui/css": "^0.16.1", + "deepmerge": "^4.2.2" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "react": ">=18" + } + }, + "../../extensions/web-clipper/node_modules/@theme-ui/css": { + "version": "0.16.2", + "license": "MIT", + "dependencies": { + "csstype": "^3.0.10" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1" + } + }, + "../../extensions/web-clipper/node_modules/@tootallnate/once": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__core": { + "version": "7.20.5", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__generator": { + "version": "7.27.0", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__template": { + "version": "7.4.4", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/babel__traverse": { + "version": "7.28.0", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "../../extensions/web-clipper/node_modules/@types/body-parser": { + "version": "1.19.6", + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/bonjour": { + "version": "3.5.13", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/cheerio": { + "version": "0.22.35", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/chrome": { + "version": "0.0.180", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/filesystem": "*", + "@types/har-format": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/connect": { + "version": "3.4.38", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "license": "MIT", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/eslint": { + "version": "8.56.12", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/eslint-scope": { + "version": "3.7.7", + "license": "MIT", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/estree": { + "version": "1.0.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/express": { + "version": "4.17.25", + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "^1" + } + }, + "../../extensions/web-clipper/node_modules/@types/express-serve-static-core": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.8", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/filesystem": { + "version": "0.0.36", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/filewriter": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/filewriter": { + "version": "0.0.33", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/firefox-webext-browser": { + "version": "94.0.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/glob": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/graceful-fs": { + "version": "4.1.9", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/har-format": { + "version": "1.2.16", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/http-cache-semantics": { + "version": "4.2.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/http-errors": { + "version": "2.0.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/http-proxy": { + "version": "1.17.17", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/inline-css": { + "version": "3.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/cheerio": "<1" + } + }, + "../../extensions/web-clipper/node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/jest": { + "version": "26.0.24", + "dev": true, + "license": "MIT", + "dependencies": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/json-schema": { + "version": "7.0.15", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/json5": { + "version": "0.0.29", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/mime": { + "version": "1.3.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/minimatch": { + "version": "5.1.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/node": { + "version": "25.5.0", + "license": "MIT", + "dependencies": { + "undici-types": "~7.18.0" + } + }, + "../../extensions/web-clipper/node_modules/@types/node-forge": { + "version": "1.3.14", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/parse-json": { + "version": "4.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/postlight__mercury-parser": { + "version": "2.2.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/prettier": { + "version": "2.7.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/prop-types": { + "version": "15.7.15", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/q": { + "version": "1.5.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/qs": { + "version": "6.15.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/range-parser": { + "version": "1.2.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/react": { + "version": "18.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "../../extensions/web-clipper/node_modules/@types/react-dom": { + "version": "18.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/react-modal": { + "version": "3.16.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/resolve": { + "version": "1.17.1", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/retry": { + "version": "0.12.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/sanitize-html": { + "version": "2.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "htmlparser2": "^10.1" + } + }, + "../../extensions/web-clipper/node_modules/@types/semver": { + "version": "7.7.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/send": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/serve-index": { + "version": "1.9.4", + "license": "MIT", + "dependencies": { + "@types/express": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/serve-static": { + "version": "1.15.10", + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "<1" + } + }, + "../../extensions/web-clipper/node_modules/@types/serve-static/node_modules/@types/send": { + "version": "0.17.6", + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/sockjs": { + "version": "0.3.36", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/stack-utils": { + "version": "2.0.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/styled-system": { + "version": "5.1.25", + "license": "MIT", + "dependencies": { + "csstype": "^3.2.2" + } + }, + "../../extensions/web-clipper/node_modules/@types/trusted-types": { + "version": "2.0.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/webextension-polyfill": { + "version": "0.8.3", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/ws": { + "version": "8.18.1", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/yargs": { + "version": "15.0.20", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/@types/yargs-parser": { + "version": "21.0.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@types/yauzl": { + "version": "2.10.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "../../extensions/web-clipper/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "license": "MIT", + "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" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "license": "Apache-2.0", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "license": "MIT", + "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" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "license": "MIT", + "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" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "license": "MIT", + "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" + } + }, + "../../extensions/web-clipper/node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" + } + }, + "../../extensions/web-clipper/node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "../../extensions/web-clipper/node_modules/@webpack-cli/info": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "../../extensions/web-clipper/node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/@xtuc/long": { + "version": "4.2.2", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/abab": { + "version": "2.0.6", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/abort-controller": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "../../extensions/web-clipper/node_modules/accepts": { + "version": "1.3.8", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/acorn": { + "version": "8.16.0", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/acorn-globals": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "../../extensions/web-clipper/node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/acorn-import-assertions": { + "version": "1.9.0", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "../../extensions/web-clipper/node_modules/acorn-jsx": { + "version": "5.3.2", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/acorn-walk": { + "version": "7.2.0", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter": { + "version": "6.28.0", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "@fluent/syntax": "0.19.0", + "@mdn/browser-compat-data": "5.5.29", + "addons-moz-compare": "1.3.0", + "addons-scanner-utils": "9.10.1", + "ajv": "8.13.0", + "chalk": "4.1.2", + "cheerio": "1.0.0-rc.12", + "columnify": "1.6.0", + "common-tags": "1.8.2", + "deepmerge": "4.3.1", + "eslint": "8.57.0", + "eslint-plugin-no-unsanitized": "4.0.2", + "eslint-visitor-keys": "4.0.0", + "espree": "10.0.1", + "esprima": "4.0.1", + "fast-json-patch": "3.1.1", + "glob": "10.4.1", + "image-size": "1.1.1", + "is-mergeable-object": "1.1.1", + "jed": "1.1.1", + "json-merge-patch": "1.0.2", + "os-locale": "5.0.0", + "pino": "8.20.0", + "relaxed-json": "1.0.3", + "semver": "7.6.2", + "sha.js": "2.4.11", + "source-map-support": "0.5.21", + "tosource": "1.0.0", + "upath": "2.0.1", + "yargs": "17.7.2", + "yauzl": "2.10.0" + }, + "bin": { + "addons-linter": "bin/addons-linter" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/@eslint/js": { + "version": "8.57.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/addons-scanner-utils": { + "version": "9.10.1", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "@types/yauzl": "2.10.3", + "common-tags": "1.8.2", + "first-chunk-stream": "3.0.0", + "strip-bom-stream": "4.0.0", + "upath": "2.0.1", + "yauzl": "2.10.0" + }, + "peerDependencies": { + "body-parser": "1.20.2", + "express": "4.18.3", + "node-fetch": "2.6.11", + "safe-compare": "1.1.4" + }, + "peerDependenciesMeta": { + "body-parser": { + "optional": true + }, + "express": { + "optional": true + }, + "node-fetch": { + "optional": true + }, + "safe-compare": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/ajv": { + "version": "8.13.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/brace-expansion": { + "version": "2.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/cliui": { + "version": "8.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/eslint": { + "version": "8.57.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/eslint/node_modules/ajv": { + "version": "6.14.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/eslint/node_modules/espree": { + "version": "9.6.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/espree": { + "version": "10.0.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.11.3", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/glob": { + "version": "10.4.1", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/glob-parent": { + "version": "6.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/glob/node_modules/minimatch": { + "version": "9.0.9", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/semver": { + "version": "7.6.2", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/wrap-ansi": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/yargs": { + "version": "17.7.2", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/addons-linter/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/addons-moz-compare": { + "version": "1.3.0", + "dev": true, + "license": "MPL-2.0" + }, + "../../extensions/web-clipper/node_modules/address": { + "version": "1.2.2", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "../../extensions/web-clipper/node_modules/adm-zip": { + "version": "0.5.16", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0" + } + }, + "../../extensions/web-clipper/node_modules/agent-base": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/ajv": { + "version": "6.14.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/ajv-formats": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/ajv-formats/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ajv-keywords": { + "version": "3.5.2", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "../../extensions/web-clipper/node_modules/ansi-align": { + "version": "3.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "../../extensions/web-clipper/node_modules/ansi-align/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ansi-align/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/ansi-escapes": { + "version": "4.3.2", + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/ansi-html": { + "version": "0.0.9", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "../../extensions/web-clipper/node_modules/ansi-html-community": { + "version": "0.0.8", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "../../extensions/web-clipper/node_modules/ansi-regex": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/any-promise": { + "version": "1.3.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/anymatch": { + "version": "3.1.3", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/arg": { + "version": "5.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" + }, + "../../extensions/web-clipper/node_modules/aria-query": { + "version": "5.3.2", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array-differ": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/array-flatten": { + "version": "1.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/array-includes": { + "version": "3.1.9", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array-union": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/array-uniq": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.findlast": { + "version": "1.2.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.findlastindex": { + "version": "1.2.6", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-shim-unscopables": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.flat": { + "version": "1.3.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.reduce": { + "version": "1.0.8", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-array-method-boxes-properly": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "is-string": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/asap": { + "version": "2.0.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/asn1": { + "version": "0.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/assert-plus": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "../../extensions/web-clipper/node_modules/ast-types-flow": { + "version": "0.0.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/async": { + "version": "3.2.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/async-function": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/asynckit": { + "version": "0.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/at-least-node": { + "version": "1.0.0", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/atob": { + "version": "2.1.2", + "license": "(MIT OR Apache-2.0)", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "../../extensions/web-clipper/node_modules/atomic-sleep": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/autoprefixer": { + "version": "10.4.27", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.28.1", + "caniuse-lite": "^1.0.30001774", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/available-typed-arrays": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/aws-sign2": { + "version": "0.7.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/aws4": { + "version": "1.13.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/axe-core": { + "version": "4.11.1", + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/axobject-query": { + "version": "4.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/babel-eslint": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-jest/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/babel-loader": { + "version": "8.4.1", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.4", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.17", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-define-polyfill-provider": "^0.6.8", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.14.2", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8", + "core-js-compat": "^3.48.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.8", + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/babel-preset-current-node-syntax": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0 || ^8.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/babel-preset-jest": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/babel-preset-react-app": { + "version": "10.1.0", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-proposal-private-property-in-object": "^7.16.7", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "../../extensions/web-clipper/node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.11", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/balanced-match": { + "version": "1.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/base64-js": { + "version": "1.5.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/baseline-browser-mapping": { + "version": "2.10.11", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/batch": { + "version": "0.6.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "../../extensions/web-clipper/node_modules/bfj": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "bluebird": "^3.7.2", + "check-types": "^11.2.3", + "hoopy": "^0.1.4", + "jsonpath": "^1.1.1", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/big.js": { + "version": "5.2.2", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/binary-extensions": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/bluebird": { + "version": "3.7.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/body-parser": { + "version": "1.20.2", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/body-parser/node_modules/qs": { + "version": "6.11.0", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/bonjour-service": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "../../extensions/web-clipper/node_modules/boolbase": { + "version": "1.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/boxen": { + "version": "7.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.1", + "camelcase": "^7.0.1", + "chalk": "^5.2.0", + "cli-boxes": "^3.0.0", + "string-width": "^5.1.2", + "type-fest": "^2.13.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/boxen/node_modules/camelcase": { + "version": "7.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/boxen/node_modules/chalk": { + "version": "5.6.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/boxen/node_modules/type-fest": { + "version": "2.19.0", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/brace-expansion": { + "version": "1.1.13", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../../extensions/web-clipper/node_modules/braces": { + "version": "3.0.3", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/browser-process-hrtime": { + "version": "1.0.0", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/browserslist": { + "version": "4.28.1", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "../../extensions/web-clipper/node_modules/bser": { + "version": "2.1.1", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/buffer": { + "version": "6.0.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "../../extensions/web-clipper/node_modules/buffer-crc32": { + "version": "0.2.13", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "dev": true, + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/buffer-from": { + "version": "1.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/builtin-modules": { + "version": "3.3.0", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/bunyan": { + "version": "1.8.15", + "dev": true, + "engines": [ + "node >=0.10.0" + ], + "license": "MIT", + "bin": { + "bunyan": "bin/bunyan" + }, + "optionalDependencies": { + "dtrace-provider": "~0.8", + "moment": "^2.19.3", + "mv": "~2", + "safe-json-stringify": "~1" + } + }, + "../../extensions/web-clipper/node_modules/bytes": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/cacheable-lookup": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + } + }, + "../../extensions/web-clipper/node_modules/cacheable-request": { + "version": "10.2.14", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + } + }, + "../../extensions/web-clipper/node_modules/cacheable-request/node_modules/normalize-url": { + "version": "8.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/call-bind": { + "version": "1.0.8", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/call-bound": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/callsites": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/camel-case": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/camelcase": { + "version": "6.3.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/camelcase-css": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/caniuse-api": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "../../extensions/web-clipper/node_modules/caniuse-lite": { + "version": "1.0.30001781", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "../../extensions/web-clipper/node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/caseless": { + "version": "0.12.0", + "dev": true, + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/chalk": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/char-regex": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/check-types": { + "version": "11.2.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/cheerio": { + "version": "1.0.0-rc.12", + "dev": true, + "license": "MIT", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" + }, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/cheerio-select": { + "version": "2.1.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/cheerio-select/node_modules/css-select": { + "version": "5.2.2", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/cheerio/node_modules/entities": { + "version": "4.5.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/cheerio/node_modules/htmlparser2": { + "version": "8.0.2", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" + } + }, + "../../extensions/web-clipper/node_modules/cheerio/node_modules/parse5": { + "version": "7.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/cheerio/node_modules/parse5/node_modules/entities": { + "version": "6.0.1", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/chokidar": { + "version": "3.6.0", + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "../../extensions/web-clipper/node_modules/chrome-launcher": { + "version": "0.15.1", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "../../extensions/web-clipper/node_modules/chrome-trace-event": { + "version": "1.0.4", + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "../../extensions/web-clipper/node_modules/ci-info": { + "version": "3.9.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/cjs-module-lexer": { + "version": "1.4.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/clean-css": { + "version": "5.3.3", + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "../../extensions/web-clipper/node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/clean-webpack-plugin": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "del": "^4.1.1" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": ">=4.0.0 <6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/cli-boxes": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/cliui": { + "version": "7.0.4", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/clone": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "../../extensions/web-clipper/node_modules/clone-deep": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/co": { + "version": "4.6.0", + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "../../extensions/web-clipper/node_modules/coa": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "../../extensions/web-clipper/node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "../../extensions/web-clipper/node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/collect-v8-coverage": { + "version": "1.0.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../extensions/web-clipper/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/colord": { + "version": "2.9.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/colorette": { + "version": "2.0.20", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/columnify": { + "version": "1.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/combined-stream": { + "version": "1.0.8", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/comlink": { + "version": "4.4.2", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/commander": { + "version": "8.3.0", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "../../extensions/web-clipper/node_modules/common-tags": { + "version": "1.8.2", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/commondir": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/compressible": { + "version": "2.0.18", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/compression": { + "version": "1.8.1", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/concat-map": { + "version": "0.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/concat-stream": { + "version": "1.6.2", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "../../extensions/web-clipper/node_modules/concat-stream/node_modules/isarray": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.8", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "../../extensions/web-clipper/node_modules/concat-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/config-chain": { + "version": "1.1.13", + "dev": true, + "license": "MIT", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "../../extensions/web-clipper/node_modules/configstore": { + "version": "6.0.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/yeoman/configstore?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/confusing-browser-globals": { + "version": "1.0.11", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "../../extensions/web-clipper/node_modules/content-disposition": { + "version": "0.5.4", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/content-type": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/convert-source-map": { + "version": "1.9.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/cookie": { + "version": "0.5.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/cookie-signature": { + "version": "1.0.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/copy-webpack-plugin": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "^3.2.4", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/core-js": { + "version": "3.49.0", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../extensions/web-clipper/node_modules/core-js-compat": { + "version": "3.49.0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.28.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../extensions/web-clipper/node_modules/core-js-pure": { + "version": "3.49.0", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../extensions/web-clipper/node_modules/core-util-is": { + "version": "1.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/cosmiconfig": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/cross-spawn": { + "version": "7.0.6", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/crypto-random-string": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/css": { + "version": "2.2.4", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "../../extensions/web-clipper/node_modules/css-blank-pseudo": { + "version": "3.0.3", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/css-declaration-sorter": { + "version": "6.4.1", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "../../extensions/web-clipper/node_modules/css-has-pseudo": { + "version": "3.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/css-loader": { + "version": "6.11.0", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/css-loader/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "license": "MIT", + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.2", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "license": "CC0-1.0", + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/css-select": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/css-select-base-adapter": { + "version": "0.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/css-select/node_modules/dom-serializer": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/css-select/node_modules/domhandler": { + "version": "4.3.1", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/css-select/node_modules/domutils": { + "version": "2.8.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/css-select/node_modules/entities": { + "version": "2.2.0", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/css-what": { + "version": "6.2.2", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/css/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/cssdb": { + "version": "7.11.2", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/cssesc": { + "version": "3.0.0", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/cssnano": { + "version": "5.1.15", + "license": "MIT", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/cssnano-preset-default": { + "version": "5.2.14", + "license": "MIT", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/cssnano-utils": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/csso": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/cssom": { + "version": "0.4.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/cssstyle": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/csstype": { + "version": "3.2.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/damerau-levenshtein": { + "version": "1.0.8", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/dashdash": { + "version": "1.14.1", + "dev": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "../../extensions/web-clipper/node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "../../extensions/web-clipper/node_modules/data-urls": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/data-view-buffer": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/data-view-byte-length": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "../../extensions/web-clipper/node_modules/data-view-byte-offset": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/debounce": { + "version": "1.2.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/debug": { + "version": "4.4.3", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/decamelize": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/decimal.js": { + "version": "10.6.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/decode-uri-component": { + "version": "0.2.2", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "../../extensions/web-clipper/node_modules/decompress-response": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/dedent": { + "version": "0.7.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/deep-extend": { + "version": "0.6.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/deep-is": { + "version": "0.1.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/deepcopy": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "type-detect": "^4.0.8" + } + }, + "../../extensions/web-clipper/node_modules/deepmerge": { + "version": "4.3.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/default-gateway": { + "version": "6.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/defaults": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/defer-to-connect": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/define-data-property": { + "version": "1.1.4", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/define-lazy-prop": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/define-properties": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/del": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/del/node_modules/globby": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/delayed-stream": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/depd": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/destroy": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "../../extensions/web-clipper/node_modules/detect-newline": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/detect-node": { + "version": "2.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/detect-port-alt": { + "version": "1.1.6", + "license": "MIT", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "../../extensions/web-clipper/node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/didyoumean": { + "version": "1.2.2", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/diff-sequences": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/dir-glob": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/dlv": { + "version": "1.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/dns-packet": { + "version": "5.6.1", + "license": "MIT", + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/doctrine": { + "version": "3.0.0", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/dom-converter": { + "version": "0.2.0", + "license": "MIT", + "dependencies": { + "utila": "~0.4" + } + }, + "../../extensions/web-clipper/node_modules/dom-serializer": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/domelementtype": { + "version": "2.3.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/domexception": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/domhandler": { + "version": "5.0.3", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/domutils": { + "version": "3.2.2", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/dot-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/dot-prop": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/dotenv": { + "version": "10.0.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/dotenv-expand": { + "version": "5.1.0", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/dtrace-provider": { + "version": "0.8.8", + "dev": true, + "hasInstallScript": true, + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "nan": "^2.14.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "../../extensions/web-clipper/node_modules/dunder-proto": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/duplexer": { + "version": "0.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/eastasianwidth": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ecc-jsbn": { + "version": "0.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "../../extensions/web-clipper/node_modules/ee-first": { + "version": "1.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ejs": { + "version": "3.1.10", + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/electron-to-chromium": { + "version": "1.5.328", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/emittery": { + "version": "0.8.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/emoji-regex": { + "version": "9.2.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/emojis-list": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/encodeurl": { + "version": "1.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/end-of-stream": { + "version": "1.4.5", + "dev": true, + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "../../extensions/web-clipper/node_modules/enhanced-resolve": { + "version": "5.20.1", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.3.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/entities": { + "version": "7.0.1", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/envinfo": { + "version": "7.21.0", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/error-ex": { + "version": "1.3.4", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "../../extensions/web-clipper/node_modules/error-stack-parser": { + "version": "2.1.4", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "../../extensions/web-clipper/node_modules/es-abstract": { + "version": "1.24.1", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/es-define-property": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/es-errors": { + "version": "1.3.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/es-iterator-helpers": { + "version": "1.3.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.1", + "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", + "math-intrinsics": "^1.1.0", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/es-module-lexer": { + "version": "1.7.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/es-object-atoms": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/es-set-tostringtag": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/es-shim-unscopables": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/es-to-primitive": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/es6-error": { + "version": "4.1.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/es6-promisify": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/escalade": { + "version": "3.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/escape-goat": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/escape-html": { + "version": "1.0.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/escape-string-regexp": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/escodegen": { + "version": "2.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "../../extensions/web-clipper/node_modules/escodegen/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint": { + "version": "8.57.1", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/eslint-config-react-app": { + "version": "7.0.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "../../extensions/web-clipper/node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "../../extensions/web-clipper/node_modules/eslint-module-utils": { + "version": "2.12.1", + "license": "MIT", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-import": { + "version": "2.32.0", + "license": "MIT", + "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-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.12.1", + "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" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-jsx-a11y": { + "version": "6.10.2", + "license": "MIT", + "dependencies": { + "aria-query": "^5.3.2", + "array-includes": "^3.1.8", + "array.prototype.flatmap": "^1.3.2", + "ast-types-flow": "^0.0.8", + "axe-core": "^4.10.0", + "axobject-query": "^4.1.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "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.0.3", + "string.prototype.includes": "^2.0.1" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-no-unsanitized": { + "version": "4.0.2", + "dev": true, + "license": "MPL-2.0", + "peerDependencies": { + "eslint": "^6 || ^7 || ^8" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react": { + "version": "7.37.5", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "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", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "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" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react-hooks": { + "version": "4.6.2", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.6", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/eslint-plugin-testing-library": { + "version": "5.11.1", + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "^5.58.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-scope": { + "version": "7.2.2", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/espree": { + "version": "9.6.1", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "../../extensions/web-clipper/node_modules/esprima": { + "version": "4.0.1", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/esquery": { + "version": "1.7.0", + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "../../extensions/web-clipper/node_modules/esrecurse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/estraverse": { + "version": "5.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/estree-walker": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/esutils": { + "version": "2.0.3", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/etag": { + "version": "1.8.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/event-target-shim": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/eventemitter3": { + "version": "4.0.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/events": { + "version": "3.3.0", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "../../extensions/web-clipper/node_modules/execa": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/exenv": { + "version": "1.2.2", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/exit": { + "version": "0.1.2", + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/expect": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/expect/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/express": { + "version": "4.18.3", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/express/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/express/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/express/node_modules/qs": { + "version": "6.11.0", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/extend": { + "version": "3.0.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/extsprintf": { + "version": "1.3.0", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-deep-equal": { + "version": "3.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-glob": { + "version": "3.3.3", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "../../extensions/web-clipper/node_modules/fast-json-patch": { + "version": "3.1.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-levenshtein": { + "version": "2.0.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fast-redact": { + "version": "3.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/fast-uri": { + "version": "3.1.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/fastest-levenshtein": { + "version": "1.0.16", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "../../extensions/web-clipper/node_modules/fastq": { + "version": "1.20.1", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "../../extensions/web-clipper/node_modules/faye-websocket": { + "version": "0.11.4", + "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/fb-watchman": { + "version": "2.0.2", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "../../extensions/web-clipper/node_modules/fd-slicer": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pend": "~1.2.0" + } + }, + "../../extensions/web-clipper/node_modules/fetch-blob": { + "version": "3.2.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "../../extensions/web-clipper/node_modules/file-entry-cache": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "../../extensions/web-clipper/node_modules/file-loader": { + "version": "6.2.0", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/filelist": { + "version": "1.0.6", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "../../extensions/web-clipper/node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.3", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/filelist/node_modules/minimatch": { + "version": "5.1.9", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/filesize": { + "version": "8.0.7", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/fill-range": { + "version": "7.1.1", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/finalhandler": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/find-cache-dir": { + "version": "3.3.2", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/find-root": { + "version": "1.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/find-up": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/firefox-profile": { + "version": "4.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "adm-zip": "~0.5.x", + "fs-extra": "~9.0.1", + "ini": "~2.0.0", + "minimist": "^1.2.5", + "xml2js": "^0.5.0" + }, + "bin": { + "firefox-profile": "lib/cli.js" + } + }, + "../../extensions/web-clipper/node_modules/firefox-profile/node_modules/fs-extra": { + "version": "9.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^1.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/firefox-profile/node_modules/ini": { + "version": "2.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/firefox-profile/node_modules/universalify": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/firefox-profile/node_modules/xml2js": { + "version": "0.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/firefox-profile/node_modules/xmlbuilder": { + "version": "11.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/first-chunk-stream": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/flat": { + "version": "5.0.2", + "dev": true, + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "../../extensions/web-clipper/node_modules/flat-cache": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "../../extensions/web-clipper/node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/flatted": { + "version": "3.4.2", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/follow-redirects": { + "version": "1.15.11", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/for-each": { + "version": "0.3.5", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/foreground-child": { + "version": "3.3.1", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/forever-agent": { + "version": "0.6.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/form-data": { + "version": "3.0.4", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/form-data-encoder": { + "version": "2.1.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.17" + } + }, + "../../extensions/web-clipper/node_modules/formdata-polyfill": { + "version": "4.0.10", + "dev": true, + "license": "MIT", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "../../extensions/web-clipper/node_modules/forwarded": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/fraction.js": { + "version": "5.3.4", + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" + } + }, + "../../extensions/web-clipper/node_modules/fresh": { + "version": "0.5.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/fs-extra": { + "version": "10.1.0", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/fs-monkey": { + "version": "1.1.0", + "license": "Unlicense" + }, + "../../extensions/web-clipper/node_modules/fs.realpath": { + "version": "1.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/fsevents": { + "version": "2.3.3", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../extensions/web-clipper/node_modules/function-bind": { + "version": "1.1.2", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/function.prototype.name": { + "version": "1.1.8", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/functions-have-names": { + "version": "1.2.3", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/fx-runner": { + "version": "1.4.0", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "commander": "2.9.0", + "shell-quote": "1.7.3", + "spawn-sync": "1.0.15", + "when": "3.7.7", + "which": "1.2.4", + "winreg": "0.0.12" + }, + "bin": { + "fx-runner": "bin/fx-runner" + } + }, + "../../extensions/web-clipper/node_modules/fx-runner/node_modules/commander": { + "version": "2.9.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-readlink": ">= 1.0.0" + }, + "engines": { + "node": ">= 0.6.x" + } + }, + "../../extensions/web-clipper/node_modules/fx-runner/node_modules/isexe": { + "version": "1.1.2", + "dev": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/fx-runner/node_modules/shell-quote": { + "version": "1.7.3", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/fx-runner/node_modules/which": { + "version": "1.2.4", + "dev": true, + "license": "ISC", + "dependencies": { + "is-absolute": "^0.1.7", + "isexe": "^1.1.1" + }, + "bin": { + "which": "bin/which" + } + }, + "../../extensions/web-clipper/node_modules/generator-function": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/gensync": { + "version": "1.0.0-beta.2", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/get-caller-file": { + "version": "2.0.5", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "../../extensions/web-clipper/node_modules/get-intrinsic": { + "version": "1.3.0", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/get-package-type": { + "version": "0.1.0", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/get-proto": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/get-stream": { + "version": "6.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/get-symbol-description": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/getpass": { + "version": "0.1.7", + "dev": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/glob": { + "version": "7.2.3", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/glob-parent": { + "version": "5.1.2", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/glob-to-regexp": { + "version": "0.4.1", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/global-dirs": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/global-modules": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/global-prefix": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "../../extensions/web-clipper/node_modules/globals": { + "version": "13.24.0", + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/globalthis": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/globby": { + "version": "11.1.0", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/gopd": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/got": { + "version": "12.6.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/graceful-fs": { + "version": "4.2.11", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/graceful-readlink": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/graphemer": { + "version": "1.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/growly": { + "version": "1.3.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/gzip-size": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/handle-thing": { + "version": "2.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/har-schema": { + "version": "2.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/har-validator": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/harmony-reflect": { + "version": "1.6.2", + "license": "(Apache-2.0 OR MPL-1.1)" + }, + "../../extensions/web-clipper/node_modules/has-bigints": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-flag": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/has-property-descriptors": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-proto": { + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-symbols": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-tostringtag": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/has-yarn": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/hasown": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/he": { + "version": "1.2.0", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "../../extensions/web-clipper/node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "../../extensions/web-clipper/node_modules/hoopy": { + "version": "0.1.4", + "license": "MIT", + "engines": { + "node": ">= 6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/hpack.js": { + "version": "2.1.6", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "../../extensions/web-clipper/node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "../../extensions/web-clipper/node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/html-entities": { + "version": "2.6.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/html-escaper": { + "version": "2.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/html-loader": { + "version": "3.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "html-minifier-terser": "^6.0.2", + "parse5": "^6.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/html-minifier-terser": { + "version": "6.1.0", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/html-webpack-plugin": { + "version": "5.6.6", + "license": "MIT", + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/htmlparser2": { + "version": "10.1.0", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.2", + "entities": "^7.0.1" + } + }, + "../../extensions/web-clipper/node_modules/http-cache-semantics": { + "version": "4.2.0", + "dev": true, + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/http-deceiver": { + "version": "1.2.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/http-errors": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/http-parser-js": { + "version": "0.5.10", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/http-proxy": { + "version": "1.18.1", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/http-proxy-agent": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/http-proxy-middleware": { + "version": "2.0.9", + "license": "MIT", + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/http-signature": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "../../extensions/web-clipper/node_modules/http2-wrapper": { + "version": "2.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "../../extensions/web-clipper/node_modules/https-proxy-agent": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/human-signals": { + "version": "2.1.0", + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "../../extensions/web-clipper/node_modules/hyperapp": { + "version": "2.0.22", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/iconv-lite": { + "version": "0.6.3", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/icss-utils": { + "version": "5.1.0", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/idb": { + "version": "7.1.1", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/identity-obj-proxy": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/ieee754": { + "version": "1.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/ignore": { + "version": "5.3.2", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/image-size": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=16.x" + } + }, + "../../extensions/web-clipper/node_modules/immediate": { + "version": "3.0.6", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/immer": { + "version": "9.0.21", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "../../extensions/web-clipper/node_modules/import-fresh": { + "version": "3.3.1", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/import-lazy": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/import-local": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/imurmurhash": { + "version": "0.1.4", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "../../extensions/web-clipper/node_modules/inflight": { + "version": "1.0.6", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "../../extensions/web-clipper/node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/ini": { + "version": "1.3.8", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/internal-slot": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/interpret": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/invert-kv": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sindresorhus/invert-kv?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/ipaddr.js": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/is-absolute": { + "version": "0.1.7", + "dev": true, + "license": "MIT", + "dependencies": { + "is-relative": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-array-buffer": { + "version": "3.0.5", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-arrayish": { + "version": "0.2.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-async-function": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-bigint": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-binary-path": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/is-boolean-object": { + "version": "1.2.2", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-callable": { + "version": "1.2.7", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-ci": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "../../extensions/web-clipper/node_modules/is-core-module": { + "version": "2.16.1", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-data-view": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-date-object": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-docker": { + "version": "2.2.1", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/is-extglob": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-finalizationregistry": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/is-generator-fn": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-generator-function": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-glob": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-installed-globally": { + "version": "0.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/is-map": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-mergeable-object": { + "version": "1.1.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-module": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-negative-zero": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-npm": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/is-number": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "../../extensions/web-clipper/node_modules/is-number-object": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-obj": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/is-path-cwd": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-path-in-cwd": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-path-inside": { + "version": "3.0.3", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/is-plain-obj": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/is-plain-object": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-regex": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-regexp": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-relative": { + "version": "0.1.3", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/is-root": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/is-set": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-stream": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/is-string": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-symbol": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-typed-array": { + "version": "1.1.15", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-typedarray": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-utf8": { + "version": "0.2.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/is-weakmap": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-weakref": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-weakset": { + "version": "2.0.4", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/is-wsl": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/is-yarn-global": { + "version": "0.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/isarray": { + "version": "2.0.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/isexe": { + "version": "2.0.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/isobject": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/isstream": { + "version": "0.1.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-report": { + "version": "3.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-report/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-lib-source-maps/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/istanbul-reports": { + "version": "3.2.0", + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/iterator.prototype": { + "version": "1.1.5", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/jackspeak": { + "version": "3.4.3", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "../../extensions/web-clipper/node_modules/jake": { + "version": "10.9.4", + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.6", + "filelist": "^1.0.4", + "picocolors": "^1.1.1" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jed": { + "version": "1.1.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-circus/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-cli": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-cli/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-config": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-config/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-diff": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/jest-docblock": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-each/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-get-type": { + "version": "26.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.14.2" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-haste-map/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-jasmine2/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-leak-detector/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/diff-sequences": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/jest-diff": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-message-util": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-message-util/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-mock": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-mock/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jest-regex-util": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-resolve/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runner/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-serializer": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/diff-sequences": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/jest-diff": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-snapshot/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-util": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-util/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/pretty-format": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-validate/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.35", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "license": "MIT", + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/@jest/types": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-watcher/node_modules/@types/yargs": { + "version": "16.0.11", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../extensions/web-clipper/node_modules/jest-worker": { + "version": "27.5.1", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/jiti": { + "version": "1.21.7", + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "../../extensions/web-clipper/node_modules/jose": { + "version": "4.13.1", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "../../extensions/web-clipper/node_modules/js-tokens": { + "version": "4.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/js-yaml": { + "version": "4.1.1", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../extensions/web-clipper/node_modules/jsbn": { + "version": "0.1.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jsdom": { + "version": "16.7.0", + "license": "MIT", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/jsesc": { + "version": "3.1.0", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/json-buffer": { + "version": "3.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/json-merge-patch": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "../../extensions/web-clipper/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/json-schema": { + "version": "0.4.0", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, + "../../extensions/web-clipper/node_modules/json-schema-traverse": { + "version": "0.4.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/json-stringify-safe": { + "version": "5.0.1", + "dev": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/json5": { + "version": "2.2.3", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/jsonfile": { + "version": "6.2.0", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../../extensions/web-clipper/node_modules/jsonpath": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "esprima": "1.2.5", + "static-eval": "2.1.1", + "underscore": "1.13.6" + } + }, + "../../extensions/web-clipper/node_modules/jsonpath/node_modules/esprima": { + "version": "1.2.5", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/jsonpointer": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/jsonwebtoken": { + "version": "9.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "jws": "^3.2.2", + "lodash": "^4.17.21", + "ms": "^2.1.1", + "semver": "^7.3.8" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/jsonwebtoken/node_modules/semver": { + "version": "7.7.4", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/jsprim": { + "version": "1.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "../../extensions/web-clipper/node_modules/jsx-ast-utils": { + "version": "3.3.5", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/jszip": { + "version": "3.10.1", + "dev": true, + "license": "(MIT OR GPL-3.0-or-later)", + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, + "../../extensions/web-clipper/node_modules/jszip/node_modules/isarray": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jszip/node_modules/readable-stream": { + "version": "2.3.8", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "../../extensions/web-clipper/node_modules/jszip/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/jszip/node_modules/string_decoder": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/jwa": { + "version": "1.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-equal-constant-time": "^1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "../../extensions/web-clipper/node_modules/jws": { + "version": "3.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "jwa": "^1.4.2", + "safe-buffer": "^5.0.1" + } + }, + "../../extensions/web-clipper/node_modules/keyv": { + "version": "4.5.4", + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "../../extensions/web-clipper/node_modules/kind-of": { + "version": "6.0.3", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/kleur": { + "version": "3.0.3", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/klona": { + "version": "2.0.6", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/language-subtag-registry": { + "version": "0.3.23", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/language-tags": { + "version": "1.0.9", + "license": "MIT", + "dependencies": { + "language-subtag-registry": "^0.3.20" + }, + "engines": { + "node": ">=0.10" + } + }, + "../../extensions/web-clipper/node_modules/latest-version": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "package-json": "^8.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/launch-editor": { + "version": "2.13.2", + "license": "MIT", + "dependencies": { + "picocolors": "^1.1.1", + "shell-quote": "^1.8.3" + } + }, + "../../extensions/web-clipper/node_modules/lcid": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "invert-kv": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/leven": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/levn": { + "version": "0.4.1", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/lie": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "immediate": "~3.0.5" + } + }, + "../../extensions/web-clipper/node_modules/lighthouse-logger": { + "version": "1.4.2", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "../../extensions/web-clipper/node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lilconfig": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/lines-and-columns": { + "version": "1.2.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/loader-runner": { + "version": "4.3.1", + "license": "MIT", + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/loader-utils": { + "version": "2.0.4", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "../../extensions/web-clipper/node_modules/locate-path": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/lodash": { + "version": "4.17.23", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.debounce": { + "version": "4.0.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.memoize": { + "version": "4.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.merge": { + "version": "4.6.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.sortby": { + "version": "4.7.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/lodash.uniq": { + "version": "4.5.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/loose-envify": { + "version": "1.4.0", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../extensions/web-clipper/node_modules/lower-case": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/lowercase-keys": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/lru-cache": { + "version": "5.1.1", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "../../extensions/web-clipper/node_modules/mac-scrollbar": { + "version": "0.13.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/magic-string": { + "version": "0.25.9", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "../../extensions/web-clipper/node_modules/make-dir": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/make-error": { + "version": "1.3.6", + "dev": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/makeerror": { + "version": "1.0.12", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "../../extensions/web-clipper/node_modules/map-age-cleaner": { + "version": "0.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/marky": { + "version": "1.3.0", + "dev": true, + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/math-intrinsics": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/mdn-data": { + "version": "2.0.4", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/media-typer": { + "version": "0.3.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/mem": { + "version": "5.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "map-age-cleaner": "^0.1.3", + "mimic-fn": "^2.1.0", + "p-is-promise": "^2.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/memfs": { + "version": "3.5.3", + "license": "Unlicense", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/merge-descriptors": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/merge-stream": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/merge2": { + "version": "1.4.1", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/methods": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/micromatch": { + "version": "4.0.8", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "../../extensions/web-clipper/node_modules/mime": { + "version": "1.6.0", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/mime-db": { + "version": "1.52.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/mime-types": { + "version": "2.1.35", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/mimic-fn": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/mimic-response": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin": { + "version": "2.10.2", + "license": "MIT", + "dependencies": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/minimalistic-assert": { + "version": "1.0.1", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/minimatch": { + "version": "3.1.5", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/minimist": { + "version": "1.2.8", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/minipass": { + "version": "7.1.3", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "../../extensions/web-clipper/node_modules/mkdirp": { + "version": "0.5.6", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "../../extensions/web-clipper/node_modules/moment": { + "version": "2.30.1", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/multicast-dns": { + "version": "7.2.5", + "license": "MIT", + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "../../extensions/web-clipper/node_modules/multimatch": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/minimatch": "^3.0.5", + "array-differ": "^4.0.0", + "array-union": "^3.0.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/multimatch/node_modules/@types/minimatch": { + "version": "3.0.5", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/multimatch/node_modules/array-union": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/mv": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "mkdirp": "~0.5.1", + "ncp": "~2.0.0", + "rimraf": "~2.4.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/mv/node_modules/glob": { + "version": "6.0.4", + "dev": true, + "license": "ISC", + "optional": true, + "dependencies": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/mv/node_modules/rimraf": { + "version": "2.4.5", + "dev": true, + "license": "ISC", + "optional": true, + "dependencies": { + "glob": "^6.0.1" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "../../extensions/web-clipper/node_modules/mz": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/nan": { + "version": "2.26.2", + "dev": true, + "license": "MIT", + "optional": true + }, + "../../extensions/web-clipper/node_modules/nanoid": { + "version": "3.3.11", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../extensions/web-clipper/node_modules/natural-compare": { + "version": "1.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/natural-compare-lite": { + "version": "1.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ncp": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "optional": true, + "bin": { + "ncp": "bin/ncp" + } + }, + "../../extensions/web-clipper/node_modules/negotiator": { + "version": "0.6.4", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/neo-async": { + "version": "2.6.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/no-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/node-domexception": { + "version": "1.0.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "engines": { + "node": ">=10.5.0" + } + }, + "../../extensions/web-clipper/node_modules/node-exports-info": { + "version": "1.6.0", + "license": "MIT", + "dependencies": { + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/node-fetch": { + "version": "3.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "../../extensions/web-clipper/node_modules/node-forge": { + "version": "1.4.0", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "../../extensions/web-clipper/node_modules/node-int64": { + "version": "0.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/node-notifier": { + "version": "10.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.5", + "shellwords": "^0.1.1", + "uuid": "^8.3.2", + "which": "^2.0.2" + } + }, + "../../extensions/web-clipper/node_modules/node-notifier/node_modules/semver": { + "version": "7.7.4", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/node-releases": { + "version": "2.0.36", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/normalize-path": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/normalize-url": { + "version": "6.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/npm-run-path": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/nth-check": { + "version": "2.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/nwsapi": { + "version": "2.2.23", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/oauth-sign": { + "version": "0.9.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/object-assign": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/object-hash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/object-inspect": { + "version": "1.13.4", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object-keys": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/object.assign": { + "version": "4.1.7", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object.entries": { + "version": "1.1.9", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/object.fromentries": { + "version": "2.0.8", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object.getownpropertydescriptors": { + "version": "2.1.9", + "license": "MIT", + "dependencies": { + "array.prototype.reduce": "^1.0.8", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "gopd": "^1.2.0", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/object.groupby": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/object.values": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/obuf": { + "version": "1.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/on-exit-leak-free": { + "version": "2.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../extensions/web-clipper/node_modules/on-finished": { + "version": "2.4.1", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/on-headers": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/once": { + "version": "1.4.0", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "../../extensions/web-clipper/node_modules/onetime": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/open": { + "version": "8.4.2", + "license": "MIT", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/optionator": { + "version": "0.9.4", + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/os-locale": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^4.0.0", + "lcid": "^3.0.0", + "mem": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/os-locale/node_modules/execa": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/os-locale/node_modules/get-stream": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/os-locale/node_modules/human-signals": { + "version": "1.1.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8.12.0" + } + }, + "../../extensions/web-clipper/node_modules/os-shim": { + "version": "0.1.3", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/own-keys": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/p-cancelable": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "../../extensions/web-clipper/node_modules/p-defer": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/p-is-promise": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/p-limit": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/p-locate": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/p-map": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/p-retry": { + "version": "4.6.2", + "license": "MIT", + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/p-try": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/package-json": { + "version": "8.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/package-json/node_modules/semver": { + "version": "7.7.4", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/pako": { + "version": "1.0.11", + "dev": true, + "license": "(MIT AND Zlib)" + }, + "../../extensions/web-clipper/node_modules/param-case": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/parent-module": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/parse-json": { + "version": "5.2.0", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/parse5": { + "version": "6.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "domhandler": "^5.0.3", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/parse5-htmlparser2-tree-adapter/node_modules/entities": { + "version": "6.0.1", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "7.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/parseurl": { + "version": "1.3.3", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/pascal-case": { + "version": "3.1.2", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/path-exists": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/path-is-absolute": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/path-is-inside": { + "version": "1.0.2", + "dev": true, + "license": "(WTFPL OR MIT)" + }, + "../../extensions/web-clipper/node_modules/path-key": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/path-parse": { + "version": "1.0.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/path-scurry": { + "version": "1.11.1", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "dev": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/path-to-regexp": { + "version": "0.1.7", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/path-type": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pend": { + "version": "1.2.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/performance-now": { + "version": "2.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/picocolors": { + "version": "1.1.1", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/picomatch": { + "version": "2.3.2", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "../../extensions/web-clipper/node_modules/pify": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pinkie": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/pinkie-promise": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/pino": { + "version": "8.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0", + "fast-redact": "^3.1.1", + "on-exit-leak-free": "^2.1.0", + "pino-abstract-transport": "^1.1.0", + "pino-std-serializers": "^6.0.0", + "process-warning": "^3.0.0", + "quick-format-unescaped": "^4.0.3", + "real-require": "^0.2.0", + "safe-stable-stringify": "^2.3.1", + "sonic-boom": "^3.7.0", + "thread-stream": "^2.0.0" + }, + "bin": { + "pino": "bin.js" + } + }, + "../../extensions/web-clipper/node_modules/pino-abstract-transport": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "^4.0.0", + "split2": "^4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/pino-std-serializers": { + "version": "6.2.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/pirates": { + "version": "4.0.7", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/possible-typed-array-names": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss": { + "version": "8.5.8", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../extensions/web-clipper/node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-attribute-case-insensitive/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-browser-comments": { + "version": "4.0.0", + "license": "CC0-1.0", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/postcss-calc": { + "version": "8.2.4", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-calc/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-clamp": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "../../extensions/web-clipper/node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-colormin": { + "version": "5.3.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-convert-values": { + "version": "5.1.3", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-custom-media": { + "version": "8.0.2", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/postcss-custom-properties": { + "version": "12.1.11", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" + } + }, + "../../extensions/web-clipper/node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-comments": { + "version": "5.1.2", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-empty": { + "version": "5.1.1", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-env-function": { + "version": "4.0.6", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-focus-visible": { + "version": "6.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-focus-visible/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-focus-within": { + "version": "5.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-focus-within/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-font-variant": { + "version": "5.0.0", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-gap-properties": { + "version": "3.0.5", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-image-set-function": { + "version": "4.0.7", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-import": { + "version": "15.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-initial": { + "version": "4.0.1", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-js": { + "version": "4.1.0", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "../../extensions/web-clipper/node_modules/postcss-lab-function": { + "version": "4.2.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-loader": { + "version": "6.2.1", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-loader/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/postcss-logical": { + "version": "5.0.4", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-media-minmax": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-merge-rules": { + "version": "5.1.4", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-params": { + "version": "5.1.4", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-local-by-default": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-scope": { + "version": "3.2.1", + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^7.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-modules-values": { + "version": "4.0.0", + "license": "ISC", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-nested": { + "version": "6.2.0", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "../../extensions/web-clipper/node_modules/postcss-nested/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-nesting": { + "version": "10.2.0", + "license": "CC0-1.0", + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-nesting/node_modules/@csstools/selector-specificity": { + "version": "2.2.0", + "license": "CC0-1.0", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.10" + } + }, + "../../extensions/web-clipper/node_modules/postcss-nesting/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize": { + "version": "10.0.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-string": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-url": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "license": "MIT", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-ordered-values": { + "version": "5.1.3", + "license": "MIT", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-page-break": { + "version": "3.0.4", + "license": "MIT", + "peerDependencies": { + "postcss": "^8" + } + }, + "../../extensions/web-clipper/node_modules/postcss-place": { + "version": "7.0.5", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-preset-env": { + "version": "7.8.3", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "../../extensions/web-clipper/node_modules/postcss-selector-not": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "../../extensions/web-clipper/node_modules/postcss-selector-not/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-selector-parser": { + "version": "7.1.1", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/sax": { + "version": "1.6.0", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=11.0.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.2", + "license": "MIT", + "dependencies": { + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "sax": "^1.5.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/postcss-unique-selectors/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/postcss-value-parser": { + "version": "4.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/prelude-ls": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/prettier": { + "version": "2.8.8", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/pretty-bytes": { + "version": "5.6.0", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/pretty-error": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/pretty-format": { + "version": "26.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/process": { + "version": "0.11.10", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "../../extensions/web-clipper/node_modules/process-nextick-args": { + "version": "2.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/process-warning": { + "version": "3.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/promise": { + "version": "8.3.0", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "../../extensions/web-clipper/node_modules/promise-toolbox": { + "version": "0.21.0", + "dev": true, + "license": "ISC", + "dependencies": { + "make-error": "^1.3.2" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/prompts": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/prop-types": { + "version": "15.8.1", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "../../extensions/web-clipper/node_modules/proto-list": { + "version": "1.2.4", + "dev": true, + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/proxy-addr": { + "version": "2.0.7", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/psl": { + "version": "1.15.0", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, + "../../extensions/web-clipper/node_modules/pump": { + "version": "3.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "../../extensions/web-clipper/node_modules/punycode": { + "version": "2.3.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/pupa": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-goat": "^4.0.0" + }, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/q": { + "version": "1.5.1", + "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "../../extensions/web-clipper/node_modules/qs": { + "version": "6.5.5", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "../../extensions/web-clipper/node_modules/querystringify": { + "version": "2.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/queue": { + "version": "6.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, + "../../extensions/web-clipper/node_modules/queue-microtask": { + "version": "1.2.3", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/quick-format-unescaped": { + "version": "4.0.4", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/quick-lru": { + "version": "5.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/raf": { + "version": "3.4.1", + "license": "MIT", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/ramda": { + "version": "0.21.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/randombytes": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "../../extensions/web-clipper/node_modules/range-parser": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/raw-body": { + "version": "2.5.2", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/rc": { + "version": "1.2.8", + "dev": true, + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "../../extensions/web-clipper/node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/react": { + "version": "18.3.1", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/react-app-polyfill": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils": { + "version": "12.0.1", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.3.1", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + } + }, + "../../extensions/web-clipper/node_modules/react-dom": { + "version": "18.3.1", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "../../extensions/web-clipper/node_modules/react-error-overlay": { + "version": "6.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/react-frame-component": { + "version": "5.3.1", + "license": "MIT", + "peerDependencies": { + "prop-types": "^15.8.1 || ^16.0.0 || ^17.0.0 || ^18.0.0", + "react": ">= 16.8 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": ">= 16.8 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "../../extensions/web-clipper/node_modules/react-is": { + "version": "16.13.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/react-modal": { + "version": "3.16.3", + "license": "MIT", + "dependencies": { + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19" + } + }, + "../../extensions/web-clipper/node_modules/react-refresh": { + "version": "0.11.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/react-scripts": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.0", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.0", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/react-scripts/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/read-cache": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "../../extensions/web-clipper/node_modules/read-cache/node_modules/pify": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/readable-stream": { + "version": "4.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/readdirp": { + "version": "3.6.0", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "../../extensions/web-clipper/node_modules/real-require": { + "version": "0.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + } + }, + "../../extensions/web-clipper/node_modules/rechoir": { + "version": "0.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/recursive-readdir": { + "version": "2.2.3", + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/regenerate": { + "version": "1.4.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regenerate-unicode-properties": { + "version": "10.2.2", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/regenerator-runtime": { + "version": "0.13.11", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regex-parser": { + "version": "2.3.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/regexpu-core": { + "version": "6.4.0", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.2.1" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/registry-auth-token": { + "version": "5.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@pnpm/npm-conf": "^3.0.2" + }, + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/registry-url": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "rc": "1.2.8" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/regjsgen": { + "version": "0.8.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/regjsparser": { + "version": "0.13.0", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~3.1.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "../../extensions/web-clipper/node_modules/relateurl": { + "version": "0.2.7", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/relaxed-json": { + "version": "1.0.3", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "chalk": "^2.4.2", + "commander": "^2.6.0" + }, + "bin": { + "rjson": "bin/rjson.js" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/ansi-styles": { + "version": "3.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/chalk": { + "version": "2.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/color-convert": { + "version": "1.9.3", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/color-name": { + "version": "1.1.3", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/commander": { + "version": "2.20.3", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/escape-string-regexp": { + "version": "1.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/has-flag": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/relaxed-json/node_modules/supports-color": { + "version": "5.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/renderkid": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/domhandler": { + "version": "4.3.1", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/entities": { + "version": "2.2.0", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/renderkid/node_modules/htmlparser2": { + "version": "6.1.0", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/request": { + "version": "2.88.2", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "../../extensions/web-clipper/node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "../../extensions/web-clipper/node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "dev": true, + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "../../extensions/web-clipper/node_modules/require-directory": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/require-from-string": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/requires-port": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/resolve": { + "version": "1.22.11", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/resolve-alpn": { + "version": "1.2.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/resolve-cwd": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/resolve-from": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/resolve-url": { + "version": "0.2.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true + }, + "rework-visit": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "../../extensions/web-clipper/node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/resolve.exports": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/responselike": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "lowercase-keys": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/retry": { + "version": "0.13.1", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../../extensions/web-clipper/node_modules/reusify": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/rimraf": { + "version": "2.7.1", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "../../extensions/web-clipper/node_modules/rollup": { + "version": "2.80.0", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/run-parallel": { + "version": "1.2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "../../extensions/web-clipper/node_modules/rx": { + "version": "4.1.0", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/safe-array-concat": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/safe-json-stringify": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "optional": true + }, + "../../extensions/web-clipper/node_modules/safe-push-apply": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/safe-regex-test": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/safe-stable-stringify": { + "version": "2.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/safer-buffer": { + "version": "2.1.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/sanitize.css": { + "version": "13.0.0", + "license": "CC0-1.0" + }, + "../../extensions/web-clipper/node_modules/sass-loader": { + "version": "12.6.0", + "license": "MIT", + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/sax": { + "version": "1.2.4", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/saxes": { + "version": "5.0.1", + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/scheduler": { + "version": "0.23.2", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "../../extensions/web-clipper/node_modules/schema-utils": { + "version": "2.7.1", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/select-hose": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/selfsigned": { + "version": "2.4.1", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/semver": { + "version": "6.3.1", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "../../extensions/web-clipper/node_modules/semver-diff": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/semver-diff/node_modules/semver": { + "version": "7.7.4", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/send": { + "version": "0.18.0", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/send/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/serialize-javascript": { + "version": "5.0.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/serve-index": { + "version": "1.9.2", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.8.0", + "mime-types": "~2.1.35", + "parseurl": "~1.3.3" + }, + "engines": { + "node": ">= 0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/http-errors": { + "version": "1.8.1", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/serve-static": { + "version": "1.15.0", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/set-function-length": { + "version": "1.2.2", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/set-function-name": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/set-proto": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/setimmediate": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/setprototypeof": { + "version": "1.2.0", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/sha.js": { + "version": "2.4.11", + "dev": true, + "license": "(MIT AND BSD-3-Clause)", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "../../extensions/web-clipper/node_modules/shallow-clone": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/shebang-command": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/shebang-regex": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/shell-quote": { + "version": "1.8.3", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/shellwords": { + "version": "0.1.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/side-channel": { + "version": "1.1.0", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/side-channel-list": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/side-channel-map": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/side-channel-weakmap": { + "version": "1.0.2", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/sign-addon": { + "version": "5.3.0", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "common-tags": "1.8.2", + "core-js": "3.29.0", + "deepcopy": "2.1.0", + "es6-error": "4.1.1", + "es6-promisify": "7.0.0", + "jsonwebtoken": "9.0.0", + "mz": "2.7.0", + "request": "2.88.2", + "source-map-support": "0.5.21", + "stream-to-promise": "3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/sign-addon/node_modules/core-js": { + "version": "3.29.0", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../extensions/web-clipper/node_modules/signal-exit": { + "version": "3.0.7", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/sisteransi": { + "version": "1.0.5", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/sockjs": { + "version": "0.3.24", + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "../../extensions/web-clipper/node_modules/sonic-boom": { + "version": "3.8.1", + "dev": true, + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/source-list-map": { + "version": "2.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/source-map": { + "version": "0.5.7", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-js": { + "version": "1.2.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-loader": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-resolve": { + "version": "0.5.3", + "license": "MIT", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-support": { + "version": "0.5.21", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/source-map-url": { + "version": "0.4.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/sourcemap-codec": { + "version": "1.4.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/spawn-sync": { + "version": "1.0.15", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "concat-stream": "^1.4.7", + "os-shim": "^0.1.2" + } + }, + "../../extensions/web-clipper/node_modules/spdy": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../extensions/web-clipper/node_modules/spdy-transport": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "../../extensions/web-clipper/node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/split": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "through": "2" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/split2": { + "version": "4.2.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 10.x" + } + }, + "../../extensions/web-clipper/node_modules/sprintf-js": { + "version": "1.0.3", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/sshpk": { + "version": "1.18.0", + "dev": true, + "license": "MIT", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/stable": { + "version": "0.1.8", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/stack-utils": { + "version": "2.0.6", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/stackframe": { + "version": "1.3.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/static-eval": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "escodegen": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/statuses": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/stream-to-array": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.1.0" + } + }, + "../../extensions/web-clipper/node_modules/stream-to-promise": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "~1.3.0", + "end-of-stream": "~1.4.1", + "stream-to-array": "~2.3.0" + }, + "engines": { + "node": ">= 10" + } + }, + "../../extensions/web-clipper/node_modules/string_decoder": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "../../extensions/web-clipper/node_modules/string-length": { + "version": "4.0.2", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/string-natural-compare": { + "version": "3.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/string-width/node_modules/ansi-regex": { + "version": "6.2.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/string-width/node_modules/strip-ansi": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.includes": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.matchall": { + "version": "4.0.12", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.repeat": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.trim": { + "version": "1.2.10", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.trimend": { + "version": "1.0.9", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/stringify-object": { + "version": "3.3.0", + "license": "BSD-2-Clause", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/stringify-object/node_modules/is-obj": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-bom": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-bom-buf": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-bom-stream": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "first-chunk-stream": "^3.0.0", + "strip-bom-buf": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/strip-comments": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/strip-final-newline": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/strip-json-comments": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/style-loader": { + "version": "3.3.4", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/styled-system": { + "version": "5.1.5", + "license": "MIT", + "dependencies": { + "@styled-system/background": "^5.1.2", + "@styled-system/border": "^5.1.5", + "@styled-system/color": "^5.1.2", + "@styled-system/core": "^5.1.2", + "@styled-system/flexbox": "^5.1.2", + "@styled-system/grid": "^5.1.2", + "@styled-system/layout": "^5.1.2", + "@styled-system/position": "^5.1.2", + "@styled-system/shadow": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@styled-system/typography": "^5.1.2", + "@styled-system/variant": "^5.1.5", + "object-assign": "^4.1.1" + } + }, + "../../extensions/web-clipper/node_modules/stylehacks": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "../../extensions/web-clipper/node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/stylis": { + "version": "4.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/sucrase": { + "version": "3.35.1", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "tinyglobby": "^0.2.11", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "../../extensions/web-clipper/node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/supports-hyperlinks": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/svg-parser": { + "version": "2.0.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/svg-react-loader": { + "version": "0.4.6", + "license": "MIT", + "dependencies": { + "css": "2.2.4", + "loader-utils": "1.1.0", + "ramda": "0.21.0", + "rx": "4.1.0", + "traverse": "0.6.6", + "xml2js": "0.4.17" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/big.js": { + "version": "3.2.0", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/emojis-list": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/json5": { + "version": "0.5.1", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + } + }, + "../../extensions/web-clipper/node_modules/svg-react-loader/node_modules/loader-utils": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/argparse": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/entities": { + "version": "2.2.0", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/js-yaml": { + "version": "3.14.2", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/symbol-tree": { + "version": "3.2.4", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/tailwindcss": { + "version": "3.4.19", + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.7", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "../../extensions/web-clipper/node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/tailwindcss/node_modules/lilconfig": { + "version": "3.1.3", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "../../extensions/web-clipper/node_modules/tailwindcss/node_modules/postcss-load-config": { + "version": "6.0.1", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/tailwindcss/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/tapable": { + "version": "2.3.2", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/temp-dir": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/tempy": { + "version": "0.6.0", + "license": "MIT", + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/tempy/node_modules/crypto-random-string": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/tempy/node_modules/unique-string": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/terminal-link": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/terser": { + "version": "5.46.1", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.15.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin": { + "version": "5.4.0", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "jest-worker": "^27.4.5", + "schema-utils": "^4.3.0", + "terser": "^5.31.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/test-exclude": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/text-table": { + "version": "0.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/thenify": { + "version": "3.3.1", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/thenify-all": { + "version": "1.6.0", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "../../extensions/web-clipper/node_modules/thread-stream": { + "version": "2.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "real-require": "^0.2.0" + } + }, + "../../extensions/web-clipper/node_modules/throat": { + "version": "6.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/through": { + "version": "2.3.8", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/thunky": { + "version": "1.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/tinyglobby": { + "version": "0.2.15", + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "../../extensions/web-clipper/node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.4", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "../../extensions/web-clipper/node_modules/tmp": { + "version": "0.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "../../extensions/web-clipper/node_modules/tmp/node_modules/rimraf": { + "version": "3.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/tmpl": { + "version": "1.0.5", + "license": "BSD-3-Clause" + }, + "../../extensions/web-clipper/node_modules/to-regex-range": { + "version": "5.0.1", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "../../extensions/web-clipper/node_modules/toidentifier": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "../../extensions/web-clipper/node_modules/tosource": { + "version": "1.0.0", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/tough-cookie": { + "version": "4.1.4", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "../../extensions/web-clipper/node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "../../extensions/web-clipper/node_modules/tr46": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/traverse": { + "version": "0.6.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/tryer": { + "version": "1.0.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/ts-interface-checker": { + "version": "0.1.13", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/ts-loader": { + "version": "9.5.4", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4", + "source-map": "^0.7.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/semver": { + "version": "7.7.4", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/ts-loader/node_modules/source-map": { + "version": "0.7.6", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, + "../../extensions/web-clipper/node_modules/tsconfig-paths": { + "version": "3.15.0", + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "../../extensions/web-clipper/node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "../../extensions/web-clipper/node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/tslib": { + "version": "2.8.1", + "license": "0BSD" + }, + "../../extensions/web-clipper/node_modules/tsutils": { + "version": "3.21.0", + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "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" + } + }, + "../../extensions/web-clipper/node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "license": "0BSD" + }, + "../../extensions/web-clipper/node_modules/tunnel-agent": { + "version": "0.6.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "../../extensions/web-clipper/node_modules/tweetnacl": { + "version": "0.14.5", + "dev": true, + "license": "Unlicense" + }, + "../../extensions/web-clipper/node_modules/type-check": { + "version": "0.4.0", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/type-detect": { + "version": "4.0.8", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/type-fest": { + "version": "0.20.2", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/type-is": { + "version": "1.6.18", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../extensions/web-clipper/node_modules/typed-array-buffer": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../extensions/web-clipper/node_modules/typed-array-byte-length": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/typed-array-length": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/typedarray": { + "version": "0.0.6", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/unbox-primitive": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/underscore": { + "version": "1.13.6", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/undici-types": { + "version": "7.18.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.1", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unicode-property-aliases-ecmascript": { + "version": "2.2.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../extensions/web-clipper/node_modules/unique-string": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/universalify": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/unpipe": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/unquote": { + "version": "1.1.1", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/upath": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "../../extensions/web-clipper/node_modules/update-browserslist-db": { + "version": "1.2.3", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "../../extensions/web-clipper/node_modules/update-notifier": { + "version": "6.0.2", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boxen": "^7.0.0", + "chalk": "^5.0.1", + "configstore": "^6.0.0", + "has-yarn": "^3.0.0", + "import-lazy": "^4.0.0", + "is-ci": "^3.0.1", + "is-installed-globally": "^0.4.0", + "is-npm": "^6.0.0", + "is-yarn-global": "^0.4.0", + "latest-version": "^7.0.0", + "pupa": "^3.1.0", + "semver": "^7.3.7", + "semver-diff": "^4.0.0", + "xdg-basedir": "^5.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/update-notifier/node_modules/chalk": { + "version": "5.6.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/update-notifier/node_modules/semver": { + "version": "7.7.4", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/uri-js": { + "version": "4.4.1", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/urix": { + "version": "0.1.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/url-parse": { + "version": "1.5.10", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/use-sync-external-store": { + "version": "1.2.2", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "../../extensions/web-clipper/node_modules/util-deprecate": { + "version": "1.0.2", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/util.promisify": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/utila": { + "version": "0.4.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/utils-merge": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "../../extensions/web-clipper/node_modules/uuid": { + "version": "8.3.2", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "../../extensions/web-clipper/node_modules/v8-to-istanbul": { + "version": "8.1.1", + "license": "ISC", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "../../extensions/web-clipper/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.6", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, + "../../extensions/web-clipper/node_modules/vary": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../extensions/web-clipper/node_modules/verror": { + "version": "1.10.0", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "../../extensions/web-clipper/node_modules/w3c-hr-time": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/walker": { + "version": "1.0.8", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "../../extensions/web-clipper/node_modules/warning": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/watchpack": { + "version": "2.4.0", + "license": "MIT", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/wbuf": { + "version": "1.7.3", + "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "../../extensions/web-clipper/node_modules/wcwidth": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "../../extensions/web-clipper/node_modules/web-ext": { + "version": "7.12.0", + "dev": true, + "license": "MPL-2.0", + "dependencies": { + "@babel/runtime": "7.21.0", + "@devicefarmer/adbkit": "3.2.3", + "addons-linter": "6.28.0", + "bunyan": "1.8.15", + "camelcase": "7.0.1", + "chrome-launcher": "0.15.1", + "debounce": "1.2.1", + "decamelize": "6.0.0", + "es6-error": "4.1.1", + "firefox-profile": "4.3.2", + "fs-extra": "11.1.0", + "fx-runner": "1.4.0", + "import-fresh": "3.3.0", + "jose": "4.13.1", + "mkdirp": "1.0.4", + "multimatch": "6.0.0", + "mz": "2.7.0", + "node-fetch": "3.3.1", + "node-notifier": "10.0.1", + "open": "8.4.2", + "parse-json": "6.0.2", + "promise-toolbox": "0.21.0", + "sign-addon": "5.3.0", + "source-map-support": "0.5.21", + "strip-bom": "5.0.0", + "strip-json-comments": "5.0.0", + "tmp": "0.2.1", + "update-notifier": "6.0.2", + "watchpack": "2.4.0", + "ws": "8.13.0", + "yargs": "17.7.1", + "zip-dir": "2.0.0" + }, + "bin": { + "web-ext": "bin/web-ext.js" + }, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/@babel/runtime": { + "version": "7.21.0", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/camelcase": { + "version": "7.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/cliui": { + "version": "8.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/fs-extra": { + "version": "11.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/import-fresh": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/lines-and-columns": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/mkdirp": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/parse-json": { + "version": "6.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.16.0", + "error-ex": "^1.3.2", + "json-parse-even-better-errors": "^2.3.1", + "lines-and-columns": "^2.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/strip-bom": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/strip-json-comments": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/wrap-ansi": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/ws": { + "version": "8.13.0", + "dev": true, + "license": "MIT", + "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 + } + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/yargs": { + "version": "17.7.1", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/web-ext/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "../../extensions/web-clipper/node_modules/web-streams-polyfill": { + "version": "3.3.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/webextension-polyfill": { + "version": "0.8.0", + "license": "MPL-2.0" + }, + "../../extensions/web-clipper/node_modules/webextension-polyfill-ts": { + "version": "0.26.0", + "license": "Zlib", + "dependencies": { + "webextension-polyfill": "^0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/webidl-conversions": { + "version": "6.1.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10.4" + } + }, + "../../extensions/web-clipper/node_modules/webpack": { + "version": "5.88.2", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/webpack-cli": { + "version": "5.1.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware": { + "version": "5.3.4", + "license": "MIT", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server": { + "version": "4.15.2", + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.4", + "ws": "^8.13.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "3.0.2", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.3.3", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.20.0", + "license": "MIT", + "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 + } + } + }, + "../../extensions/web-clipper/node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "license": "MIT", + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-merge": { + "version": "5.10.0", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack-sources": { + "version": "3.3.4", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "../../extensions/web-clipper/node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "../../extensions/web-clipper/node_modules/websocket-driver": { + "version": "0.7.4", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/websocket-extensions": { + "version": "0.1.4", + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/whatwg-encoding": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "../../extensions/web-clipper/node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/whatwg-fetch": { + "version": "3.6.20", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/whatwg-mimetype": { + "version": "2.3.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/whatwg-url": { + "version": "8.7.0", + "license": "MIT", + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/when": { + "version": "3.7.7", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/which": { + "version": "2.0.2", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/which-boxed-primitive": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/which-builtin-type": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/which-collection": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/which-typed-array": { + "version": "1.1.20", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../extensions/web-clipper/node_modules/widest-line": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/wildcard": { + "version": "2.0.1", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/winreg": { + "version": "0.0.12", + "dev": true, + "license": "BSD" + }, + "../../extensions/web-clipper/node_modules/word-wrap": { + "version": "1.2.5", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-background-sync": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "license": "MIT", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/ajv": { + "version": "8.18.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/upath": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "license": "BSD-2-Clause" + }, + "../../extensions/web-clipper/node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "../../extensions/web-clipper/node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-core": { + "version": "6.6.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/workbox-expiration": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-google-analytics": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-precaching": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-range-requests": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-recipes": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-routing": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-strategies": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-streams": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-sw": { + "version": "6.6.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../extensions/web-clipper/node_modules/workbox-webpack-plugin/node_modules/upath": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "../../extensions/web-clipper/node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "../../extensions/web-clipper/node_modules/workbox-window": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.6.0" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi": { + "version": "8.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../extensions/web-clipper/node_modules/wrappy": { + "version": "1.0.2", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/write-file-atomic": { + "version": "3.0.3", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "../../extensions/web-clipper/node_modules/ws": { + "version": "7.5.10", + "license": "MIT", + "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 + } + } + }, + "../../extensions/web-clipper/node_modules/xdg-basedir": { + "version": "5.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/xml-name-validator": { + "version": "3.0.0", + "license": "Apache-2.0" + }, + "../../extensions/web-clipper/node_modules/xml2js": { + "version": "0.4.17", + "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "^4.1.0" + } + }, + "../../extensions/web-clipper/node_modules/xmlbuilder": { + "version": "4.2.1", + "license": "MIT", + "dependencies": { + "lodash": "^4.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "../../extensions/web-clipper/node_modules/xmlchars": { + "version": "2.2.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/y18n": { + "version": "5.0.8", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/yallist": { + "version": "3.1.1", + "license": "ISC" + }, + "../../extensions/web-clipper/node_modules/yaml": { + "version": "1.10.3", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "../../extensions/web-clipper/node_modules/yargs": { + "version": "16.2.0", + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/yargs-parser": { + "version": "20.2.9", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../../extensions/web-clipper/node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "../../extensions/web-clipper/node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../extensions/web-clipper/node_modules/yauzl": { + "version": "2.10.0", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "../../extensions/web-clipper/node_modules/yocto-queue": { + "version": "0.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../extensions/web-clipper/node_modules/zip-dir": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "async": "^3.2.0", + "jszip": "^3.2.2" + } + }, + "../../extensions/web-clipper/node_modules/zustand": { + "version": "4.5.5", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "1.2.2" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "@types/react": ">=16.8", + "immer": ">=9.0.6", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + }, + "../../packages/clipper": { + "name": "@notesnook/clipper", + "version": "2.1.3", + "hasInstallScript": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "@mozilla/readability": "^0.4.2", + "hyperapp": "^2.0.22" + }, + "devDependencies": { + "@playwright/test": "1.48.2", + "@rsbuild/core": "^1.5.13", + "slugify": "1.6.6" + } + }, + "../../packages/clipper/node_modules/@module-federation/error-codes": { + "version": "0.18.0", + "dev": true, + "license": "MIT" + }, + "../../packages/clipper/node_modules/@module-federation/runtime": { + "version": "0.18.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@module-federation/error-codes": "0.18.0", + "@module-federation/runtime-core": "0.18.0", + "@module-federation/sdk": "0.18.0" + } + }, + "../../packages/clipper/node_modules/@module-federation/runtime-core": { + "version": "0.18.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@module-federation/error-codes": "0.18.0", + "@module-federation/sdk": "0.18.0" + } + }, + "../../packages/clipper/node_modules/@module-federation/runtime-tools": { + "version": "0.18.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@module-federation/runtime": "0.18.0", + "@module-federation/webpack-bundler-runtime": "0.18.0" + } + }, + "../../packages/clipper/node_modules/@module-federation/sdk": { + "version": "0.18.0", + "dev": true, + "license": "MIT" + }, + "../../packages/clipper/node_modules/@module-federation/webpack-bundler-runtime": { + "version": "0.18.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@module-federation/runtime": "0.18.0", + "@module-federation/sdk": "0.18.0" + } + }, + "../../packages/clipper/node_modules/@mozilla/readability": { + "version": "0.4.4", + "license": "Apache-2.0", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/clipper/node_modules/@playwright/test": { + "version": "1.48.2", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright": "1.48.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "../../packages/clipper/node_modules/@rsbuild/core": { + "version": "1.5.17", + "dev": true, + "license": "MIT", + "dependencies": { + "@rspack/core": "1.5.8", + "@rspack/lite-tapable": "~1.0.1", + "@swc/helpers": "^0.5.17", + "core-js": "~3.46.0", + "jiti": "^2.6.1" + }, + "bin": { + "rsbuild": "bin/rsbuild.js" + }, + "engines": { + "node": ">=18.12.0" + } + }, + "../../packages/clipper/node_modules/@rspack/binding": { + "version": "1.5.8", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "@rspack/binding-darwin-arm64": "1.5.8", + "@rspack/binding-darwin-x64": "1.5.8", + "@rspack/binding-linux-arm64-gnu": "1.5.8", + "@rspack/binding-linux-arm64-musl": "1.5.8", + "@rspack/binding-linux-x64-gnu": "1.5.8", + "@rspack/binding-linux-x64-musl": "1.5.8", + "@rspack/binding-wasm32-wasi": "1.5.8", + "@rspack/binding-win32-arm64-msvc": "1.5.8", + "@rspack/binding-win32-ia32-msvc": "1.5.8", + "@rspack/binding-win32-x64-msvc": "1.5.8" + } + }, + "../../packages/clipper/node_modules/@rspack/binding-darwin-arm64": { + "version": "1.5.8", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/clipper/node_modules/@rspack/core": { + "version": "1.5.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@module-federation/runtime-tools": "0.18.0", + "@rspack/binding": "1.5.8", + "@rspack/lite-tapable": "1.0.1" + }, + "engines": { + "node": ">=18.12.0" + }, + "peerDependencies": { + "@swc/helpers": ">=0.5.1" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "../../packages/clipper/node_modules/@rspack/lite-tapable": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16.0.0" + } + }, + "../../packages/clipper/node_modules/@swc/helpers": { + "version": "0.5.17", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } + }, + "../../packages/clipper/node_modules/core-js": { + "version": "3.46.0", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "../../packages/clipper/node_modules/fsevents": { + "version": "2.3.2", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../packages/clipper/node_modules/hyperapp": { + "version": "2.0.22", + "license": "MIT" + }, + "../../packages/clipper/node_modules/jiti": { + "version": "2.6.1", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "../../packages/clipper/node_modules/playwright": { + "version": "1.48.2", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright-core": "1.48.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "../../packages/clipper/node_modules/playwright-core": { + "version": "1.48.2", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "../../packages/clipper/node_modules/slugify": { + "version": "1.6.6", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "../../packages/clipper/node_modules/tslib": { + "version": "2.8.1", + "dev": true, + "license": "0BSD" + }, "../../packages/common": { "name": "@notesnook/common", "version": "2.1.3", @@ -221,6 +21292,671 @@ "timeago.js": "4.0.2" } }, + "../../packages/common/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "../../packages/common/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/@notesnook/core": { + "resolved": "../../packages/core", + "link": true + }, + "../../packages/common/node_modules/@readme/data-urls": { + "version": "3.0.0", + "license": "ISC", + "engines": { + "node": ">=18" + } + }, + "../../packages/common/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.31.0", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/common/node_modules/@types/estree": { + "version": "1.0.6", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/@types/prop-types": { + "version": "15.7.5", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/@types/react": { + "version": "18.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "../../packages/common/node_modules/@vitest/expect": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/common/node_modules/@vitest/mocker": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "../../packages/common/node_modules/@vitest/pretty-format": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/common/node_modules/@vitest/runner": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "2.1.8", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/common/node_modules/@vitest/snapshot": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/common/node_modules/@vitest/spy": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/common/node_modules/@vitest/utils": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/common/node_modules/assertion-error": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "../../packages/common/node_modules/cac": { + "version": "6.7.14", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/common/node_modules/chai": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/common/node_modules/check-error": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "../../packages/common/node_modules/csstype": { + "version": "3.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/dayjs": { + "version": "1.11.13", + "license": "MIT" + }, + "../../packages/common/node_modules/debug": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/common/node_modules/deep-eql": { + "version": "5.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/common/node_modules/es-module-lexer": { + "version": "1.6.0", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/esbuild": { + "version": "0.21.5", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "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" + } + }, + "../../packages/common/node_modules/estree-walker": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "../../packages/common/node_modules/expect-type": { + "version": "1.1.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "../../packages/common/node_modules/fsevents": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../packages/common/node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/loose-envify": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../packages/common/node_modules/loupe": { + "version": "3.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/magic-string": { + "version": "0.30.17", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "../../packages/common/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/nanoid": { + "version": "3.3.8", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../packages/common/node_modules/pathe": { + "version": "1.1.2", + "license": "MIT" + }, + "../../packages/common/node_modules/pathval": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "../../packages/common/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../../packages/common/node_modules/postcss": { + "version": "8.5.1", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../packages/common/node_modules/react": { + "version": "18.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/common/node_modules/rollup": { + "version": "4.31.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.31.0", + "@rollup/rollup-android-arm64": "4.31.0", + "@rollup/rollup-darwin-arm64": "4.31.0", + "@rollup/rollup-darwin-x64": "4.31.0", + "@rollup/rollup-freebsd-arm64": "4.31.0", + "@rollup/rollup-freebsd-x64": "4.31.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.31.0", + "@rollup/rollup-linux-arm-musleabihf": "4.31.0", + "@rollup/rollup-linux-arm64-gnu": "4.31.0", + "@rollup/rollup-linux-arm64-musl": "4.31.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.31.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.31.0", + "@rollup/rollup-linux-riscv64-gnu": "4.31.0", + "@rollup/rollup-linux-s390x-gnu": "4.31.0", + "@rollup/rollup-linux-x64-gnu": "4.31.0", + "@rollup/rollup-linux-x64-musl": "4.31.0", + "@rollup/rollup-win32-arm64-msvc": "4.31.0", + "@rollup/rollup-win32-ia32-msvc": "4.31.0", + "@rollup/rollup-win32-x64-msvc": "4.31.0", + "fsevents": "~2.3.2" + } + }, + "../../packages/common/node_modules/siginfo": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/common/node_modules/source-map-js": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/common/node_modules/stackback": { + "version": "0.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/std-env": { + "version": "3.8.0", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/timeago.js": { + "version": "4.0.2", + "license": "MIT" + }, + "../../packages/common/node_modules/tinybench": { + "version": "2.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/tinyexec": { + "version": "0.3.2", + "dev": true, + "license": "MIT" + }, + "../../packages/common/node_modules/tinypool": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "../../packages/common/node_modules/tinyrainbow": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/common/node_modules/tinyspy": { + "version": "3.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/common/node_modules/vite": { + "version": "5.4.12", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "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 + } + } + }, + "../../packages/common/node_modules/vite-node": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/common/node_modules/vitest": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.8", + "@vitest/mocker": "2.1.8", + "@vitest/pretty-format": "^2.1.8", + "@vitest/runner": "2.1.8", + "@vitest/snapshot": "2.1.8", + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.8", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.8", + "@vitest/ui": "2.1.8", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "../../packages/common/node_modules/why-is-node-running": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, "../../packages/core": { "name": "@notesnook/core", "version": "8.1.3", @@ -288,6 +22024,2790 @@ "ws": "^8.13.0" } }, + "../../packages/core/node_modules/@ampproject/remapping": { + "version": "2.3.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/core/node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/core/node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/core/node_modules/@babel/parser": { + "version": "7.27.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/core/node_modules/@babel/types": { + "version": "7.27.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/core/node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "../../packages/core/node_modules/@isaacs/cliui": { + "version": "8.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/core/node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/core/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/core/node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/core/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "../../packages/core/node_modules/@leeoniya/ufuzzy": { + "version": "1.0.18", + "license": "MIT" + }, + "../../packages/core/node_modules/@microsoft/signalr": { + "version": "8.0.7", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "eventsource": "^2.0.2", + "fetch-cookie": "^2.0.3", + "node-fetch": "^2.6.7", + "ws": "^7.4.5" + } + }, + "../../packages/core/node_modules/@microsoft/signalr/node_modules/ws": { + "version": "7.5.10", + "license": "MIT", + "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 + } + } + }, + "../../packages/core/node_modules/@notesnook/crypto": { + "resolved": "../../packages/crypto", + "link": true + }, + "../../packages/core/node_modules/@notesnook/intl": { + "resolved": "../../packages/intl", + "link": true + }, + "../../packages/core/node_modules/@notesnook/logger": { + "resolved": "../../packages/logger", + "link": true + }, + "../../packages/core/node_modules/@otplib/core": { + "version": "12.0.1", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@otplib/plugin-crypto": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1" + } + }, + "../../packages/core/node_modules/@otplib/plugin-thirty-two": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "thirty-two": "^1.0.2" + } + }, + "../../packages/core/node_modules/@otplib/preset-default": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "@otplib/plugin-crypto": "^12.0.1", + "@otplib/plugin-thirty-two": "^12.0.1" + } + }, + "../../packages/core/node_modules/@otplib/preset-v11": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "@otplib/plugin-crypto": "^12.0.1", + "@otplib/plugin-thirty-two": "^12.0.1" + } + }, + "../../packages/core/node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "../../packages/core/node_modules/@readme/data-urls": { + "version": "3.0.0", + "license": "ISC", + "engines": { + "node": ">=18" + } + }, + "../../packages/core/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.43.0", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/core/node_modules/@selderee/plugin-htmlparser2": { + "version": "0.11.0", + "license": "MIT", + "dependencies": { + "domhandler": "^5.0.3", + "selderee": "^0.11.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/@streetwriters/kysely": { + "version": "0.27.4", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/core/node_modules/@streetwriters/showdown": { + "version": "3.0.9-alpha", + "license": "MIT", + "bin": { + "showdown": "bin/showdown.js" + }, + "funding": { + "type": "individual", + "url": "https://www.paypal.me/tiviesantos" + } + }, + "../../packages/core/node_modules/@types/better-sqlite3": { + "version": "7.6.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../packages/core/node_modules/@types/estree": { + "version": "1.0.8", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/event-source-polyfill": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/hast": { + "version": "2.3.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^2" + } + }, + "../../packages/core/node_modules/@types/hast/node_modules/@types/unist": { + "version": "2.0.11", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/html-to-text": { + "version": "9.0.4", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/katex": { + "version": "0.16.7", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/mime-db": { + "version": "1.43.6", + "license": "MIT" + }, + "../../packages/core/node_modules/@types/node": { + "version": "24.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.8.0" + } + }, + "../../packages/core/node_modules/@types/prismjs": { + "version": "1.26.4", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/spark-md5": { + "version": "3.0.5", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/streetwriters__showdown": { + "name": "@types/showdown", + "version": "2.0.6", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/trusted-types": { + "version": "2.0.7", + "license": "MIT", + "optional": true + }, + "../../packages/core/node_modules/@types/unist": { + "version": "3.0.3", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/@types/ws": { + "version": "8.18.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../packages/core/node_modules/@vitest/coverage-v8": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.3.0", + "@bcoe/v8-coverage": "^0.2.3", + "debug": "^4.3.7", + "istanbul-lib-coverage": "^3.2.2", + "istanbul-lib-report": "^3.0.1", + "istanbul-lib-source-maps": "^5.0.6", + "istanbul-reports": "^3.1.7", + "magic-string": "^0.30.12", + "magicast": "^0.3.5", + "std-env": "^3.8.0", + "test-exclude": "^7.0.1", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@vitest/browser": "2.1.8", + "vitest": "2.1.8" + }, + "peerDependenciesMeta": { + "@vitest/browser": { + "optional": true + } + } + }, + "../../packages/core/node_modules/@vitest/expect": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/@vitest/mocker": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "../../packages/core/node_modules/@vitest/pretty-format": { + "version": "2.1.9", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/@vitest/runner": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "2.1.8", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/@vitest/snapshot": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/@vitest/snapshot/node_modules/@vitest/pretty-format": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/@vitest/spy": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/@vitest/utils": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/@vitest/utils/node_modules/@vitest/pretty-format": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/abort-controller": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "../../packages/core/node_modules/abortcontroller-polyfill": { + "version": "1.7.8", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/alfaaz": { + "version": "1.1.0", + "license": "MIT" + }, + "../../packages/core/node_modules/ansi-regex": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../packages/core/node_modules/ansi-styles": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/core/node_modules/assertion-error": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "../../packages/core/node_modules/async-mutex": { + "version": "0.5.0", + "license": "MIT", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "../../packages/core/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/base64-js": { + "version": "1.5.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../packages/core/node_modules/better-sqlite3-multiple-ciphers": { + "version": "11.5.0", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "bindings": "^1.5.0", + "prebuild-install": "^7.1.1" + } + }, + "../../packages/core/node_modules/bindings": { + "version": "1.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "../../packages/core/node_modules/bl": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "../../packages/core/node_modules/boolbase": { + "version": "1.0.0", + "license": "ISC" + }, + "../../packages/core/node_modules/brace-expansion": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../packages/core/node_modules/bson-objectid": { + "version": "2.0.4", + "dev": true, + "license": "Apache-2.0" + }, + "../../packages/core/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "../../packages/core/node_modules/cac": { + "version": "6.7.14", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/chai": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/core/node_modules/character-entities": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/character-entities-legacy": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/character-reference-invalid": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/check-error": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "../../packages/core/node_modules/chownr": { + "version": "1.1.4", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/core/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/commander": { + "version": "8.3.0", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "../../packages/core/node_modules/cross-fetch": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "node-fetch": "^2.7.0" + } + }, + "../../packages/core/node_modules/cross-spawn": { + "version": "7.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/core/node_modules/css-select": { + "version": "5.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../packages/core/node_modules/css-what": { + "version": "6.1.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../packages/core/node_modules/cssom": { + "version": "0.5.0", + "license": "MIT" + }, + "../../packages/core/node_modules/dayjs": { + "version": "1.11.13", + "license": "MIT" + }, + "../../packages/core/node_modules/debug": { + "version": "4.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/core/node_modules/decode-named-character-reference": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/decompress-response": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/core/node_modules/deep-eql": { + "version": "5.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/deep-extend": { + "version": "0.6.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "../../packages/core/node_modules/deepmerge": { + "version": "4.3.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/core/node_modules/detect-libc": { + "version": "2.0.4", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/discontinuous-range": { + "version": "1.0.0", + "license": "MIT" + }, + "../../packages/core/node_modules/dom-serializer": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "../../packages/core/node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/core/node_modules/domelementtype": { + "version": "2.3.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "../../packages/core/node_modules/domhandler": { + "version": "5.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "../../packages/core/node_modules/dompurify": { + "version": "3.3.3", + "license": "(MPL-2.0 OR Apache-2.0)", + "optionalDependencies": { + "@types/trusted-types": "^2.0.7" + } + }, + "../../packages/core/node_modules/domutils": { + "version": "3.2.2", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "../../packages/core/node_modules/dotenv": { + "version": "16.4.7", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "../../packages/core/node_modules/eastasianwidth": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/end-of-stream": { + "version": "1.4.5", + "dev": true, + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "../../packages/core/node_modules/entities": { + "version": "5.0.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/core/node_modules/es-module-lexer": { + "version": "1.7.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/esbuild": { + "version": "0.21.5", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "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" + } + }, + "../../packages/core/node_modules/estree-walker": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "../../packages/core/node_modules/event-source-polyfill": { + "version": "1.0.31", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/event-target-shim": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/eventsource": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + } + }, + "../../packages/core/node_modules/expand-template": { + "version": "2.0.3", + "dev": true, + "license": "(MIT OR WTFPL)", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/expect-type": { + "version": "1.2.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "../../packages/core/node_modules/fetch-cookie": { + "version": "2.2.0", + "license": "Unlicense", + "dependencies": { + "set-cookie-parser": "^2.4.8", + "tough-cookie": "^4.0.0" + } + }, + "../../packages/core/node_modules/file-uri-to-path": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/foreground-child": { + "version": "3.3.1", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/core/node_modules/fs-constants": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/fsevents": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../packages/core/node_modules/fuzzyjs": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "../../packages/core/node_modules/github-from-package": { + "version": "0.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/glob": { + "version": "10.4.5", + "dev": true, + "license": "ISC", + "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" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/core/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/hash-wasm": { + "version": "4.12.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/hast-util-parse-selector": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/core/node_modules/hastscript": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^3.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/core/node_modules/html-escaper": { + "version": "2.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/html-to-text": { + "version": "9.0.5", + "license": "MIT", + "dependencies": { + "@selderee/plugin-htmlparser2": "^0.11.0", + "deepmerge": "^4.3.1", + "dom-serializer": "^2.0.0", + "htmlparser2": "^8.0.2", + "selderee": "^0.11.0" + }, + "engines": { + "node": ">=14" + } + }, + "../../packages/core/node_modules/htmlparser2": { + "version": "10.0.0", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.1", + "entities": "^6.0.0" + } + }, + "../../packages/core/node_modules/htmlparser2/node_modules/entities": { + "version": "6.0.1", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/core/node_modules/ieee754": { + "version": "1.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "../../packages/core/node_modules/inherits": { + "version": "2.0.4", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/ini": { + "version": "1.3.8", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/is-alphabetical": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/is-alphanumerical": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/is-decimal": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/is-hexadecimal": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/isomorphic-fetch": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "../../packages/core/node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/istanbul-lib-report": { + "version": "3.0.1", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/core/node_modules/istanbul-lib-source-maps": { + "version": "5.0.6", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.23", + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/core/node_modules/istanbul-reports": { + "version": "3.1.7", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/jackspeak": { + "version": "3.4.3", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "../../packages/core/node_modules/katex": { + "version": "0.16.11", + "funding": [ + "https://opencollective.com/katex", + "https://github.com/sponsors/katex" + ], + "license": "MIT", + "dependencies": { + "commander": "^8.3.0" + }, + "bin": { + "katex": "cli.js" + } + }, + "../../packages/core/node_modules/leac": { + "version": "0.6.0", + "license": "MIT", + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/linkedom": { + "version": "0.14.26", + "license": "ISC", + "dependencies": { + "css-select": "^5.1.0", + "cssom": "^0.5.0", + "html-escaper": "^3.0.3", + "htmlparser2": "^8.0.1", + "uhyphen": "^0.2.0" + } + }, + "../../packages/core/node_modules/linkedom/node_modules/html-escaper": { + "version": "3.0.3", + "license": "MIT" + }, + "../../packages/core/node_modules/liqe": { + "version": "1.13.0", + "license": "BSD-3-Clause", + "dependencies": { + "nearley": "^2.20.1", + "ts-error": "^1.0.6" + }, + "engines": { + "node": ">=12.0" + } + }, + "../../packages/core/node_modules/loupe": { + "version": "3.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/lru-cache": { + "version": "10.4.3", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/magic-string": { + "version": "0.30.17", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "../../packages/core/node_modules/magicast": { + "version": "0.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.4", + "@babel/types": "^7.25.4", + "source-map-js": "^1.2.0" + } + }, + "../../packages/core/node_modules/make-dir": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/core/node_modules/mime-db": { + "version": "1.54.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../packages/core/node_modules/mimic-response": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/core/node_modules/minimatch": { + "version": "9.0.5", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/core/node_modules/minimist": { + "version": "1.2.8", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/core/node_modules/minipass": { + "version": "7.1.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "../../packages/core/node_modules/mkdirp-classic": { + "version": "0.5.3", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/mockdate": { + "version": "3.0.5", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/moo": { + "version": "0.5.2", + "license": "BSD-3-Clause" + }, + "../../packages/core/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/nanoid": { + "version": "5.0.7", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "../../packages/core/node_modules/napi-build-utils": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/nearley": { + "version": "2.20.1", + "license": "MIT", + "dependencies": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "bin": { + "nearley-railroad": "bin/nearley-railroad.js", + "nearley-test": "bin/nearley-test.js", + "nearley-unparse": "bin/nearley-unparse.js", + "nearleyc": "bin/nearleyc.js" + }, + "funding": { + "type": "individual", + "url": "https://nearley.js.org/#give-to-nearley" + } + }, + "../../packages/core/node_modules/nearley/node_modules/commander": { + "version": "2.20.3", + "license": "MIT" + }, + "../../packages/core/node_modules/node-abi": { + "version": "3.75.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/core/node_modules/node-fetch": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "../../packages/core/node_modules/nth-check": { + "version": "2.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "../../packages/core/node_modules/once": { + "version": "1.4.0", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "../../packages/core/node_modules/otplib": { + "version": "12.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@otplib/core": "^12.0.1", + "@otplib/preset-default": "^12.0.1", + "@otplib/preset-v11": "^12.0.1" + } + }, + "../../packages/core/node_modules/package-json-from-dist": { + "version": "1.0.1", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "../../packages/core/node_modules/parse-entities": { + "version": "4.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/parse-entities/node_modules/@types/unist": { + "version": "2.0.11", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/parseley": { + "version": "0.12.1", + "license": "MIT", + "dependencies": { + "leac": "^0.6.0", + "peberminta": "^0.9.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/path-key": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/path-scurry": { + "version": "1.11.1", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/core/node_modules/pathe": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/pathval": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "../../packages/core/node_modules/peberminta": { + "version": "0.9.0", + "license": "MIT", + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/postcss": { + "version": "8.5.6", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../packages/core/node_modules/postcss/node_modules/nanoid": { + "version": "3.3.11", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../packages/core/node_modules/prebuild-install": { + "version": "7.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^2.0.0", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/core/node_modules/prismjs": { + "version": "1.30.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/property-information": { + "version": "6.5.0", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/psl": { + "version": "1.15.0", + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/lupomontero" + } + }, + "../../packages/core/node_modules/pump": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "../../packages/core/node_modules/punycode": { + "version": "2.3.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/qclone": { + "version": "1.2.0", + "license": "MIT" + }, + "../../packages/core/node_modules/querystringify": { + "version": "2.2.0", + "license": "MIT" + }, + "../../packages/core/node_modules/railroad-diagrams": { + "version": "1.0.0", + "license": "CC0-1.0" + }, + "../../packages/core/node_modules/randexp": { + "version": "0.4.6", + "license": "MIT", + "dependencies": { + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" + }, + "engines": { + "node": ">=0.12" + } + }, + "../../packages/core/node_modules/rc": { + "version": "1.2.8", + "dev": true, + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "../../packages/core/node_modules/readable-stream": { + "version": "3.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../packages/core/node_modules/refractor": { + "version": "4.9.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/prismjs": "^1.0.0", + "hastscript": "^7.0.0", + "parse-entities": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/requires-port": { + "version": "1.0.0", + "license": "MIT" + }, + "../../packages/core/node_modules/ret": { + "version": "0.1.15", + "license": "MIT", + "engines": { + "node": ">=0.12" + } + }, + "../../packages/core/node_modules/rfdc": { + "version": "1.4.1", + "license": "MIT" + }, + "../../packages/core/node_modules/rollup": { + "version": "4.43.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.7" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.43.0", + "@rollup/rollup-android-arm64": "4.43.0", + "@rollup/rollup-darwin-arm64": "4.43.0", + "@rollup/rollup-darwin-x64": "4.43.0", + "@rollup/rollup-freebsd-arm64": "4.43.0", + "@rollup/rollup-freebsd-x64": "4.43.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.43.0", + "@rollup/rollup-linux-arm-musleabihf": "4.43.0", + "@rollup/rollup-linux-arm64-gnu": "4.43.0", + "@rollup/rollup-linux-arm64-musl": "4.43.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.43.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.43.0", + "@rollup/rollup-linux-riscv64-gnu": "4.43.0", + "@rollup/rollup-linux-riscv64-musl": "4.43.0", + "@rollup/rollup-linux-s390x-gnu": "4.43.0", + "@rollup/rollup-linux-x64-gnu": "4.43.0", + "@rollup/rollup-linux-x64-musl": "4.43.0", + "@rollup/rollup-win32-arm64-msvc": "4.43.0", + "@rollup/rollup-win32-ia32-msvc": "4.43.0", + "@rollup/rollup-win32-x64-msvc": "4.43.0", + "fsevents": "~2.3.2" + } + }, + "../../packages/core/node_modules/rollup/node_modules/@types/estree": { + "version": "1.0.7", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/safe-buffer": { + "version": "5.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../packages/core/node_modules/selderee": { + "version": "0.11.0", + "license": "MIT", + "dependencies": { + "parseley": "^0.12.0" + }, + "funding": { + "url": "https://ko-fi.com/killymxi" + } + }, + "../../packages/core/node_modules/semver": { + "version": "7.7.2", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/core/node_modules/set-cookie-parser": { + "version": "2.7.1", + "license": "MIT" + }, + "../../packages/core/node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/shebang-regex": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/siginfo": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/signal-exit": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/core/node_modules/simple-concat": { + "version": "1.0.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../packages/core/node_modules/simple-get": { + "version": "4.0.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "../../packages/core/node_modules/source-map-js": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/core/node_modules/space-separated-tokens": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/core/node_modules/spark-md5": { + "version": "3.0.2", + "license": "(WTFPL OR MIT)" + }, + "../../packages/core/node_modules/sqlite-better-trigram": { + "version": "0.0.3", + "dev": true, + "license": "Public Domain", + "optionalDependencies": { + "sqlite-better-trigram-darwin-arm64": "0.0.3", + "sqlite-better-trigram-darwin-x64": "0.0.3", + "sqlite-better-trigram-linux-arm64": "0.0.3", + "sqlite-better-trigram-linux-x64": "0.0.3", + "sqlite-better-trigram-windows-arm64": "0.0.3", + "sqlite-better-trigram-windows-x64": "0.0.3" + } + }, + "../../packages/core/node_modules/sqlite-better-trigram-darwin-arm64": { + "version": "0.0.3", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Public Domain", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/core/node_modules/sqlite-regex": { + "version": "0.2.4-alpha.1", + "dev": true, + "license": "(MIT OR Apache-2.0)", + "optionalDependencies": { + "sqlite-regex-darwin-arm64": "0.2.4-alpha.1", + "sqlite-regex-darwin-x64": "0.2.4-alpha.1", + "sqlite-regex-linux-x64": "0.2.4-alpha.1", + "sqlite-regex-windows-x64": "0.2.4-alpha.1" + } + }, + "../../packages/core/node_modules/sqlite-regex-darwin-arm64": { + "version": "0.2.4-alpha.1", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/core/node_modules/sqlite3-fts5-html": { + "version": "0.0.4", + "dev": true, + "license": "Public Domain", + "optionalDependencies": { + "sqlite3-fts5-html-darwin-arm64": "0.0.4", + "sqlite3-fts5-html-darwin-x64": "0.0.4", + "sqlite3-fts5-html-linux-arm64": "0.0.4", + "sqlite3-fts5-html-linux-x64": "0.0.4", + "sqlite3-fts5-html-windows-arm64": "0.0.4", + "sqlite3-fts5-html-windows-x64": "0.0.4" + } + }, + "../../packages/core/node_modules/sqlite3-fts5-html-darwin-arm64": { + "version": "0.0.4", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Public Domain", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/core/node_modules/stackback": { + "version": "0.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/std-env": { + "version": "3.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/string_decoder": { + "version": "1.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "../../packages/core/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/core/node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../packages/core/node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/strip-json-comments": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/core/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/tar-fs": { + "version": "2.1.3", + "dev": true, + "license": "MIT", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "../../packages/core/node_modules/tar-stream": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/test-exclude": { + "version": "7.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^10.4.1", + "minimatch": "^9.0.4" + }, + "engines": { + "node": ">=18" + } + }, + "../../packages/core/node_modules/thirty-two": { + "version": "1.0.2", + "dev": true, + "engines": { + "node": ">=0.2.6" + } + }, + "../../packages/core/node_modules/tinybench": { + "version": "2.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/tinyexec": { + "version": "0.3.2", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/tinypool": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "../../packages/core/node_modules/tinyrainbow": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/core/node_modules/tinyspy": { + "version": "3.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/core/node_modules/tough-cookie": { + "version": "4.1.4", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/core/node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "../../packages/core/node_modules/ts-error": { + "version": "1.0.6", + "license": "MIT" + }, + "../../packages/core/node_modules/tslib": { + "version": "2.8.1", + "license": "0BSD" + }, + "../../packages/core/node_modules/tunnel-agent": { + "version": "0.6.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "../../packages/core/node_modules/uhyphen": { + "version": "0.2.0", + "license": "ISC" + }, + "../../packages/core/node_modules/undici-types": { + "version": "7.8.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/universalify": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "../../packages/core/node_modules/url-parse": { + "version": "1.5.10", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "../../packages/core/node_modules/util-deprecate": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/vite": { + "version": "5.4.19", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "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 + } + } + }, + "../../packages/core/node_modules/vite-node": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/core/node_modules/vitest": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.8", + "@vitest/mocker": "2.1.8", + "@vitest/pretty-format": "^2.1.8", + "@vitest/runner": "2.1.8", + "@vitest/snapshot": "2.1.8", + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.8", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.8", + "@vitest/ui": "2.1.8", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "../../packages/core/node_modules/vitest-fetch-mock": { + "version": "0.2.2", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-fetch": "^3.0.6" + }, + "engines": { + "node": ">=14.14.0" + }, + "peerDependencies": { + "vitest": ">=0.16.0" + } + }, + "../../packages/core/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "../../packages/core/node_modules/whatwg-fetch": { + "version": "3.6.20", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "../../packages/core/node_modules/which": { + "version": "2.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/core/node_modules/why-is-node-running": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/wrap-ansi": { + "version": "8.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../packages/core/node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../packages/core/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/core/node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/core/node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/core/node_modules/wrappy": { + "version": "1.0.2", + "dev": true, + "license": "ISC" + }, + "../../packages/core/node_modules/ws": { + "version": "8.18.2", + "dev": true, + "license": "MIT", + "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 + } + } + }, + "../../packages/core/node_modules/zod": { + "version": "4.3.6", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "../../packages/crypto": { "name": "@notesnook/crypto", "version": "2.1.3", @@ -297,6 +24817,10 @@ }, "devDependencies": {} }, + "../../packages/crypto/node_modules/@notesnook/sodium": { + "resolved": "../../packages/sodium", + "link": true + }, "../../packages/editor": { "name": "@notesnook/editor", "version": "2.1.3", @@ -393,6 +24917,4796 @@ "zustand": ">=4" } }, + "../../packages/editor/node_modules/@babel/code-frame": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/generator": { + "version": "7.28.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/helper-globals": { + "version": "7.28.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/parser": { + "version": "7.28.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/editor/node_modules/@babel/runtime": { + "version": "7.25.6", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/template": { + "version": "7.27.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/traverse": { + "version": "7.28.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@babel/traverse/node_modules/debug": { + "version": "4.3.7", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/@babel/types": { + "version": "7.28.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/editor/node_modules/@emotion/babel-plugin": { + "version": "11.12.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/serialize": "^1.2.0", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "../../packages/editor/node_modules/@emotion/cache": { + "version": "11.13.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.9.0", + "@emotion/sheet": "^1.4.0", + "@emotion/utils": "^1.4.0", + "@emotion/weak-memoize": "^0.4.0", + "stylis": "4.2.0" + } + }, + "../../packages/editor/node_modules/@emotion/hash": { + "version": "0.9.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "../../packages/editor/node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { + "version": "0.7.4", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@emotion/memoize": { + "version": "0.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@emotion/react": { + "version": "11.11.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/@emotion/react/node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@emotion/serialize": { + "version": "1.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.0", + "csstype": "^3.0.2" + } + }, + "../../packages/editor/node_modules/@emotion/sheet": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@emotion/unitless": { + "version": "0.10.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "../../packages/editor/node_modules/@emotion/utils": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "../../packages/editor/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "../../packages/editor/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/editor/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "../../packages/editor/node_modules/@mdi/js": { + "version": "7.4.47", + "dev": true, + "license": "Apache-2.0" + }, + "../../packages/editor/node_modules/@notesnook-importer/core": { + "version": "2.4.5", + "license": "GPL-3.0-or-later", + "dependencies": { + "@notesnook-importer/enex": "^2.3.5", + "@notesnook-importer/storage": "^2.3.5", + "@notesnook-importer/znel": "^2.3.5", + "@stablelib/chacha20poly1305": "^1.0.1", + "@streamparser/json": "^0.0.10", + "@zip.js/zip.js": "^2.7.32", + "css-select": "^5.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0", + "fflate": "^0.7.4", + "gray-matter": "^4.0.3", + "hast-util-is-element": "^2.1.3", + "htmlparser2": "^8.0.1", + "magic-bytes.js": "^1.8.0", + "rehype-stringify": "^9.0.3", + "remark": "^14.0.3", + "remark-comments": "^1.2.9", + "remark-gfm": "^3.0.1", + "remark-math": "^5.1.1", + "remark-rehype": "^10.1.0", + "remark-supersub": "^1.0.0", + "spark-md5": "^3.0.2", + "unified": "^10.1.2", + "unist-util-visit": "^5.0.0", + "varint": "^6.0.0", + "zod": "^3.22.4" + } + }, + "../../packages/editor/node_modules/@notesnook-importer/core/node_modules/entities": { + "version": "4.5.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/editor/node_modules/@notesnook-importer/enex": { + "version": "2.3.5", + "license": "GPL-3.0-or-later", + "dependencies": { + "base64-js": "^1.5.1", + "css-select": "^5.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "spark-md5": "^3.0.2" + } + }, + "../../packages/editor/node_modules/@notesnook-importer/storage": { + "version": "2.3.5", + "license": "GPL-3.0-or-later" + }, + "../../packages/editor/node_modules/@notesnook-importer/znel": { + "version": "2.3.5", + "license": "GPL-3.0-or-later", + "dependencies": { + "base64-js": "^1.5.1", + "css-select": "^5.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "spark-md5": "^3.0.2" + } + }, + "../../packages/editor/node_modules/@notesnook/common": { + "resolved": "../../packages/common", + "link": true + }, + "../../packages/editor/node_modules/@notesnook/intl": { + "resolved": "../../packages/intl", + "link": true + }, + "../../packages/editor/node_modules/@notesnook/theme": { + "resolved": "../../packages/theme", + "link": true + }, + "../../packages/editor/node_modules/@notesnook/ui": { + "resolved": "../../packages/ui", + "link": true + }, + "../../packages/editor/node_modules/@remirror/core-constants": { + "version": "2.0.2", + "license": "MIT" + }, + "../../packages/editor/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.31.0", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/editor/node_modules/@social-embed/lib": { + "version": "0.1.0-next.11", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "../../packages/editor/node_modules/@stablelib/aead": { + "version": "1.0.1", + "license": "MIT" + }, + "../../packages/editor/node_modules/@stablelib/binary": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/int": "^1.0.1" + } + }, + "../../packages/editor/node_modules/@stablelib/chacha": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/binary": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "../../packages/editor/node_modules/@stablelib/chacha20poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/aead": "^1.0.1", + "@stablelib/binary": "^1.0.1", + "@stablelib/chacha": "^1.0.1", + "@stablelib/constant-time": "^1.0.1", + "@stablelib/poly1305": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "../../packages/editor/node_modules/@stablelib/constant-time": { + "version": "1.0.1", + "license": "MIT" + }, + "../../packages/editor/node_modules/@stablelib/int": { + "version": "1.0.1", + "license": "MIT" + }, + "../../packages/editor/node_modules/@stablelib/poly1305": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "@stablelib/constant-time": "^1.0.1", + "@stablelib/wipe": "^1.0.1" + } + }, + "../../packages/editor/node_modules/@stablelib/wipe": { + "version": "1.0.1", + "license": "MIT" + }, + "../../packages/editor/node_modules/@streamparser/json": { + "version": "0.0.10", + "license": "MIT" + }, + "../../packages/editor/node_modules/@styled-system/background": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/border": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/color": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/core": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1" + } + }, + "../../packages/editor/node_modules/@styled-system/css": { + "version": "5.1.5", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@styled-system/flexbox": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/grid": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/layout": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/position": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/shadow": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/should-forward-prop": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/is-prop-valid": "^0.8.1", + "@emotion/memoize": "^0.7.1", + "styled-system": "^5.1.5" + } + }, + "../../packages/editor/node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { + "version": "0.7.5", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@styled-system/space": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/typography": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/editor/node_modules/@styled-system/variant": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2", + "@styled-system/css": "^5.1.5" + } + }, + "../../packages/editor/node_modules/@theme-ui/components": { + "version": "0.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/color": "^5.1.2", + "@styled-system/should-forward-prop": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@theme-ui/core": "^0.16.1", + "@theme-ui/css": "^0.16.1", + "@types/styled-system": "^5.1.13" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "@theme-ui/theme-provider": "^0.16.1", + "react": ">=18" + } + }, + "../../packages/editor/node_modules/@theme-ui/core": { + "version": "0.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@theme-ui/css": "^0.16.1", + "deepmerge": "^4.2.2" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "react": ">=18" + } + }, + "../../packages/editor/node_modules/@theme-ui/css": { + "version": "0.16.2", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.10" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1" + } + }, + "../../packages/editor/node_modules/@tiptap/core": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-blockquote": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-bullet-list": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-character-count": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-code": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-color": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/extension-text-style": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-font-family": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/extension-text-style": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-heading": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-history": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-horizontal-rule": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-list-item": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-list-keymap": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-ordered-list": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-placeholder": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-subscript": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-superscript": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-table-row": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-task-item": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-task-list": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-text-align": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-text-style": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/extension-underline": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/pm": { + "version": "2.6.6", + "license": "MIT", + "dependencies": { + "prosemirror-changeset": "^2.2.1", + "prosemirror-collab": "^1.3.1", + "prosemirror-commands": "^1.5.2", + "prosemirror-dropcursor": "^1.8.1", + "prosemirror-gapcursor": "^1.3.2", + "prosemirror-history": "^1.4.1", + "prosemirror-inputrules": "^1.4.0", + "prosemirror-keymap": "^1.2.2", + "prosemirror-markdown": "^1.13.0", + "prosemirror-menu": "^1.2.4", + "prosemirror-model": "^1.22.2", + "prosemirror-schema-basic": "^1.2.3", + "prosemirror-schema-list": "^1.4.1", + "prosemirror-state": "^1.4.3", + "prosemirror-tables": "^1.4.0", + "prosemirror-trailing-node": "^2.0.9", + "prosemirror-transform": "^1.9.0", + "prosemirror-view": "^1.33.9" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit": { + "version": "2.6.6", + "license": "MIT", + "dependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/extension-blockquote": "^2.6.6", + "@tiptap/extension-bold": "^2.6.6", + "@tiptap/extension-bullet-list": "^2.6.6", + "@tiptap/extension-code": "^2.6.6", + "@tiptap/extension-code-block": "^2.6.6", + "@tiptap/extension-document": "^2.6.6", + "@tiptap/extension-dropcursor": "^2.6.6", + "@tiptap/extension-gapcursor": "^2.6.6", + "@tiptap/extension-hard-break": "^2.6.6", + "@tiptap/extension-heading": "^2.6.6", + "@tiptap/extension-history": "^2.6.6", + "@tiptap/extension-horizontal-rule": "^2.6.6", + "@tiptap/extension-italic": "^2.6.6", + "@tiptap/extension-list-item": "^2.6.6", + "@tiptap/extension-ordered-list": "^2.6.6", + "@tiptap/extension-paragraph": "^2.6.6", + "@tiptap/extension-strike": "^2.6.6", + "@tiptap/extension-text": "^2.6.6", + "@tiptap/pm": "^2.6.6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-bold": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-code-block": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-document": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-dropcursor": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-gapcursor": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6", + "@tiptap/pm": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-hard-break": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-italic": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-paragraph": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-strike": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-text": { + "version": "2.6.6", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.6.6" + } + }, + "../../packages/editor/node_modules/@types/debug": { + "version": "4.1.12", + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "../../packages/editor/node_modules/@types/estree": { + "version": "1.0.6", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/file-saver": { + "version": "2.0.7", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/hast": { + "version": "2.3.8", + "license": "MIT", + "dependencies": { + "@types/unist": "^2" + } + }, + "../../packages/editor/node_modules/@types/katex": { + "version": "0.16.7", + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/mdast": { + "version": "3.0.15", + "license": "MIT", + "dependencies": { + "@types/unist": "^2" + } + }, + "../../packages/editor/node_modules/@types/ms": { + "version": "2.1.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/node": { + "version": "25.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "../../packages/editor/node_modules/@types/papaparse": { + "version": "5.5.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../packages/editor/node_modules/@types/parse-json": { + "version": "4.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/parse5": { + "version": "6.0.3", + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/prismjs": { + "version": "1.26.4", + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/prop-types": { + "version": "15.7.11", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/@types/react": { + "version": "18.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "../../packages/editor/node_modules/@types/react-color": { + "version": "3.0.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*", + "@types/reactcss": "*" + } + }, + "../../packages/editor/node_modules/@types/react-dom": { + "version": "18.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../packages/editor/node_modules/@types/react-modal": { + "version": "3.16.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../packages/editor/node_modules/@types/reactcss": { + "version": "1.2.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../packages/editor/node_modules/@types/styled-system": { + "version": "5.1.22", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "../../packages/editor/node_modules/@types/unist": { + "version": "2.0.10", + "license": "MIT" + }, + "../../packages/editor/node_modules/@vitest/expect": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/editor/node_modules/@vitest/mocker": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/@vitest/pretty-format": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/editor/node_modules/@vitest/runner": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "2.1.8", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/editor/node_modules/@vitest/snapshot": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/editor/node_modules/@vitest/spy": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/editor/node_modules/@vitest/utils": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/editor/node_modules/@zip.js/zip.js": { + "version": "2.7.57", + "license": "BSD-3-Clause", + "engines": { + "bun": ">=0.7.0", + "deno": ">=1.0.0", + "node": ">=16.5.0" + } + }, + "../../packages/editor/node_modules/alfaaz": { + "version": "1.1.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/anymatch": { + "version": "3.1.3", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/editor/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" + }, + "../../packages/editor/node_modules/assertion-error": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "../../packages/editor/node_modules/async-mutex": { + "version": "0.5.0", + "license": "MIT", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "../../packages/editor/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "../../packages/editor/node_modules/bail": { + "version": "2.0.2", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/base64-js": { + "version": "1.5.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../packages/editor/node_modules/binary-extensions": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/boolbase": { + "version": "1.0.0", + "license": "ISC" + }, + "../../packages/editor/node_modules/brace-expansion": { + "version": "1.1.11", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../../packages/editor/node_modules/braces": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/editor/node_modules/cac": { + "version": "6.7.14", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/editor/node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/ccount": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/chai": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/editor/node_modules/character-entities": { + "version": "2.0.2", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/character-entities-html4": { + "version": "2.1.0", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/character-entities-legacy": { + "version": "3.0.0", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/character-reference-invalid": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/check-error": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "../../packages/editor/node_modules/chokidar": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "../../packages/editor/node_modules/clipboard-polyfill": { + "version": "4.1.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/colord": { + "version": "2.9.3", + "license": "MIT" + }, + "../../packages/editor/node_modules/comma-separated-tokens": { + "version": "2.0.3", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/commander": { + "version": "8.3.0", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "../../packages/editor/node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/convert-source-map": { + "version": "1.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/cosmiconfig": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/editor/node_modules/crelt": { + "version": "1.0.6", + "license": "MIT" + }, + "../../packages/editor/node_modules/css-select": { + "version": "5.2.2", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../packages/editor/node_modules/css-what": { + "version": "6.2.2", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "../../packages/editor/node_modules/csstype": { + "version": "3.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "../../packages/editor/node_modules/decode-named-character-reference": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/deep-eql": { + "version": "5.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/deepmerge": { + "version": "4.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/dequal": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/detect-indent": { + "version": "7.0.1", + "license": "MIT", + "engines": { + "node": ">=12.20" + } + }, + "../../packages/editor/node_modules/diff": { + "version": "5.2.0", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "../../packages/editor/node_modules/dom-serializer": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "../../packages/editor/node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/editor/node_modules/domelementtype": { + "version": "2.3.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "../../packages/editor/node_modules/domhandler": { + "version": "5.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "../../packages/editor/node_modules/domutils": { + "version": "3.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "../../packages/editor/node_modules/entities": { + "version": "5.0.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/editor/node_modules/error-ex": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "../../packages/editor/node_modules/es-module-lexer": { + "version": "1.6.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/esbuild": { + "version": "0.21.5", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "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" + } + }, + "../../packages/editor/node_modules/escape-string-regexp": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/esprima": { + "version": "4.0.1", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/estree-walker": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "../../packages/editor/node_modules/exenv": { + "version": "1.2.2", + "dev": true, + "license": "BSD-3-Clause" + }, + "../../packages/editor/node_modules/expect-type": { + "version": "1.1.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "../../packages/editor/node_modules/extend": { + "version": "3.0.2", + "license": "MIT" + }, + "../../packages/editor/node_modules/extend-shallow": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/fflate": { + "version": "0.7.4", + "license": "MIT" + }, + "../../packages/editor/node_modules/file-saver": { + "version": "2.0.5", + "license": "MIT" + }, + "../../packages/editor/node_modules/fill-range": { + "version": "7.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/editor/node_modules/find-root": { + "version": "1.1.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/fsevents": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../packages/editor/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/editor/node_modules/glob-parent": { + "version": "5.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../packages/editor/node_modules/gray-matter": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "../../packages/editor/node_modules/happy-dom": { + "version": "16.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "webidl-conversions": "^7.0.0", + "whatwg-mimetype": "^3.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "../../packages/editor/node_modules/has-flag": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/hasown": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../packages/editor/node_modules/hast-util-from-parse5": { + "version": "7.1.2", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "hastscript": "^7.0.0", + "property-information": "^6.0.0", + "vfile": "^5.0.0", + "vfile-location": "^4.0.0", + "web-namespaces": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hast-util-is-element": { + "version": "2.1.3", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hast-util-parse-selector": { + "version": "3.1.1", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hast-util-raw": { + "version": "7.2.3", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/parse5": "^6.0.0", + "hast-util-from-parse5": "^7.0.0", + "hast-util-to-parse5": "^7.0.0", + "html-void-elements": "^2.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hast-util-raw/node_modules/unist-util-visit": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hast-util-to-html": { + "version": "8.0.4", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-raw": "^7.0.0", + "hast-util-whitespace": "^2.0.0", + "html-void-elements": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hast-util-to-parse5": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hast-util-whitespace": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/hastscript": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^3.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/he": { + "version": "1.2.0", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "../../packages/editor/node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "../../packages/editor/node_modules/html-void-elements": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/htmlparser2": { + "version": "8.0.2", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" + } + }, + "../../packages/editor/node_modules/htmlparser2/node_modules/entities": { + "version": "4.5.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/editor/node_modules/ignore-by-default": { + "version": "1.0.1", + "dev": true, + "license": "ISC" + }, + "../../packages/editor/node_modules/import-fresh": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/indent-string": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/is-alphabetical": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/is-alphanumerical": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/is-arrayish": { + "version": "0.2.1", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/is-binary-path": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/editor/node_modules/is-buffer": { + "version": "2.0.5", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/is-core-module": { + "version": "2.15.1", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/editor/node_modules/is-decimal": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/is-extendable": { + "version": "0.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/is-extglob": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/is-glob": { + "version": "4.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/is-hexadecimal": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/is-number": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "../../packages/editor/node_modules/is-plain-obj": { + "version": "4.1.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/isomorphic-fetch": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "../../packages/editor/node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/js-yaml": { + "version": "3.14.1", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../packages/editor/node_modules/js-yaml/node_modules/argparse": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "../../packages/editor/node_modules/jsesc": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/katex": { + "version": "0.16.11", + "funding": [ + "https://opencollective.com/katex", + "https://github.com/sponsors/katex" + ], + "license": "MIT", + "dependencies": { + "commander": "^8.3.0" + }, + "bin": { + "katex": "cli.js" + } + }, + "../../packages/editor/node_modules/kind-of": { + "version": "6.0.3", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/kleur": { + "version": "4.1.5", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/lines-and-columns": { + "version": "1.2.4", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/linkify-it": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, + "../../packages/editor/node_modules/linkifyjs": { + "version": "4.1.3", + "license": "MIT" + }, + "../../packages/editor/node_modules/longest-streak": { + "version": "3.1.0", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/loose-envify": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../packages/editor/node_modules/loupe": { + "version": "3.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/magic-bytes.js": { + "version": "1.10.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/magic-string": { + "version": "0.30.17", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "../../packages/editor/node_modules/markdown-it": { + "version": "14.1.0", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "bin": { + "markdown-it": "bin/markdown-it.mjs" + } + }, + "../../packages/editor/node_modules/markdown-it/node_modules/entities": { + "version": "4.5.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/editor/node_modules/markdown-table": { + "version": "3.0.4", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/mdast-util-definitions": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-definitions/node_modules/unist-util-visit": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-find-and-replace": { + "version": "2.2.2", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-gfm": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-gfm-autolink-literal": "^1.0.0", + "mdast-util-gfm-footnote": "^1.0.0", + "mdast-util-gfm-strikethrough": "^1.0.0", + "mdast-util-gfm-table": "^1.0.0", + "mdast-util-gfm-task-list-item": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-gfm-autolink-literal": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "ccount": "^2.0.0", + "mdast-util-find-and-replace": "^2.0.0", + "micromark-util-character": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-gfm-footnote": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0", + "micromark-util-normalize-identifier": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-gfm-strikethrough": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-gfm-table": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-gfm-task-list-item": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-math": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "longest-streak": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-to-hast": { + "version": "12.3.0", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-definitions": "^5.0.0", + "micromark-util-sanitize-uri": "^1.1.0", + "trim-lines": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/mdurl": { + "version": "2.0.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/micromark": { + "version": "3.2.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "../../packages/editor/node_modules/micromark-core-commonmark": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" + } + }, + "../../packages/editor/node_modules/micromark-extension-gfm": { + "version": "2.0.3", + "license": "MIT", + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^1.0.0", + "micromark-extension-gfm-footnote": "^1.0.0", + "micromark-extension-gfm-strikethrough": "^1.0.0", + "micromark-extension-gfm-table": "^1.0.0", + "micromark-extension-gfm-tagfilter": "^1.0.0", + "micromark-extension-gfm-task-list-item": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-extension-gfm-autolink-literal": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-extension-gfm-footnote": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { + "micromark-core-commonmark": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-extension-gfm-strikethrough": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-extension-gfm-table": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-extension-gfm-tagfilter": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "micromark-util-types": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-extension-gfm-task-list-item": { + "version": "1.0.5", + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-extension-math": { + "version": "2.1.2", + "license": "MIT", + "dependencies": { + "@types/katex": "^0.16.0", + "katex": "^0.16.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/micromark-factory-destination": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-factory-label": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "../../packages/editor/node_modules/micromark-factory-space": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-factory-title": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-character": { + "version": "1.2.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-chunked": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-encode": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "../../packages/editor/node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "../../packages/editor/node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-types": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "../../packages/editor/node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + } + }, + "../../packages/editor/node_modules/micromark-util-symbol": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "../../packages/editor/node_modules/micromark-util-types": { + "version": "1.1.0", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "../../packages/editor/node_modules/micromark/node_modules/debug": { + "version": "4.4.0", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/min-indent": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/minimatch": { + "version": "3.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../packages/editor/node_modules/mri": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "../../packages/editor/node_modules/nanoid": { + "version": "5.0.7", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "../../packages/editor/node_modules/node-fetch": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/nodemon": { + "version": "3.1.7", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^4", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "../../packages/editor/node_modules/nodemon/node_modules/debug": { + "version": "4.3.7", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/normalize-path": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/nth-check": { + "version": "2.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "../../packages/editor/node_modules/object-assign": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/orderedmap": { + "version": "2.1.1", + "license": "MIT" + }, + "../../packages/editor/node_modules/papaparse": { + "version": "5.5.3", + "license": "MIT" + }, + "../../packages/editor/node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/parse-entities": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "character-entities": "^2.0.0", + "character-entities-legacy": "^3.0.0", + "character-reference-invalid": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/parse5": { + "version": "6.0.1", + "license": "MIT" + }, + "../../packages/editor/node_modules/path-parse": { + "version": "1.0.7", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/editor/node_modules/pathe": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/pathval": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "../../packages/editor/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../../packages/editor/node_modules/picomatch": { + "version": "2.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "../../packages/editor/node_modules/postcss": { + "version": "8.5.1", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../packages/editor/node_modules/postcss/node_modules/nanoid": { + "version": "3.3.8", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../packages/editor/node_modules/prism-themes": { + "version": "1.9.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/prismjs": { + "version": "1.30.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/prop-types": { + "version": "15.8.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "../../packages/editor/node_modules/property-information": { + "version": "6.4.0", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/prosemirror-changeset": { + "version": "2.2.1", + "license": "MIT", + "dependencies": { + "prosemirror-transform": "^1.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-codemark": { + "version": "0.4.2", + "license": "MIT", + "peerDependencies": { + "prosemirror-inputrules": "^1.2.0", + "prosemirror-model": "^1.18.1", + "prosemirror-state": "^1.4.1", + "prosemirror-view": "^1.26.2" + } + }, + "../../packages/editor/node_modules/prosemirror-collab": { + "version": "1.3.1", + "license": "MIT", + "dependencies": { + "prosemirror-state": "^1.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-commands": { + "version": "1.5.2", + "license": "MIT", + "dependencies": { + "prosemirror-model": "^1.0.0", + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-dropcursor": { + "version": "1.8.1", + "license": "MIT", + "dependencies": { + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.1.0", + "prosemirror-view": "^1.1.0" + } + }, + "../../packages/editor/node_modules/prosemirror-gapcursor": { + "version": "1.3.2", + "license": "MIT", + "dependencies": { + "prosemirror-keymap": "^1.0.0", + "prosemirror-model": "^1.0.0", + "prosemirror-state": "^1.0.0", + "prosemirror-view": "^1.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-history": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "prosemirror-state": "^1.2.2", + "prosemirror-transform": "^1.0.0", + "prosemirror-view": "^1.31.0", + "rope-sequence": "^1.3.0" + } + }, + "../../packages/editor/node_modules/prosemirror-inputrules": { + "version": "1.4.0", + "license": "MIT", + "dependencies": { + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-keymap": { + "version": "1.2.2", + "license": "MIT", + "dependencies": { + "prosemirror-state": "^1.0.0", + "w3c-keyname": "^2.2.0" + } + }, + "../../packages/editor/node_modules/prosemirror-markdown": { + "version": "1.13.0", + "license": "MIT", + "dependencies": { + "markdown-it": "^14.0.0", + "prosemirror-model": "^1.20.0" + } + }, + "../../packages/editor/node_modules/prosemirror-menu": { + "version": "1.2.4", + "license": "MIT", + "dependencies": { + "crelt": "^1.0.0", + "prosemirror-commands": "^1.0.0", + "prosemirror-history": "^1.0.0", + "prosemirror-state": "^1.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-model": { + "version": "1.25.11", + "license": "MIT", + "dependencies": { + "orderedmap": "^2.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-schema-basic": { + "version": "1.2.3", + "license": "MIT", + "dependencies": { + "prosemirror-model": "^1.19.0" + } + }, + "../../packages/editor/node_modules/prosemirror-schema-list": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "prosemirror-model": "^1.0.0", + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.7.3" + } + }, + "../../packages/editor/node_modules/prosemirror-state": { + "version": "1.4.4", + "license": "MIT", + "dependencies": { + "prosemirror-model": "^1.0.0", + "prosemirror-transform": "^1.0.0", + "prosemirror-view": "^1.27.0" + } + }, + "../../packages/editor/node_modules/prosemirror-tables": { + "version": "1.5.0", + "license": "MIT", + "dependencies": { + "prosemirror-keymap": "^1.1.2", + "prosemirror-model": "^1.8.1", + "prosemirror-state": "^1.3.1", + "prosemirror-transform": "^1.2.1", + "prosemirror-view": "^1.13.3" + } + }, + "../../packages/editor/node_modules/prosemirror-test-builder": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "prosemirror-model": "^1.0.0", + "prosemirror-schema-basic": "^1.0.0", + "prosemirror-schema-list": "^1.0.0" + } + }, + "../../packages/editor/node_modules/prosemirror-trailing-node": { + "version": "2.0.9", + "license": "MIT", + "dependencies": { + "@remirror/core-constants": "^2.0.2", + "escape-string-regexp": "^4.0.0" + }, + "peerDependencies": { + "prosemirror-model": "^1.22.1", + "prosemirror-state": "^1.4.2", + "prosemirror-view": "^1.33.8" + } + }, + "../../packages/editor/node_modules/prosemirror-transform": { + "version": "1.12.0", + "license": "MIT", + "dependencies": { + "prosemirror-model": "^1.21.0" + } + }, + "../../packages/editor/node_modules/prosemirror-view": { + "version": "1.42.2", + "license": "MIT", + "dependencies": { + "prosemirror-model": "^1.25.8", + "prosemirror-state": "^1.0.0", + "prosemirror-transform": "^1.1.0" + } + }, + "../../packages/editor/node_modules/pstree.remy": { + "version": "1.1.8", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/punycode.js": { + "version": "2.3.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/re-resizable": { + "version": "6.9.18", + "license": "MIT", + "peerDependencies": { + "react": "^16.13.1 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0" + } + }, + "../../packages/editor/node_modules/react": { + "version": "18.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/react-colorful": { + "version": "5.6.1", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "../../packages/editor/node_modules/react-dom": { + "version": "18.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "../../packages/editor/node_modules/react-is": { + "version": "16.13.1", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/react-modal": { + "version": "3.16.3", + "dev": true, + "license": "MIT", + "dependencies": { + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19" + } + }, + "../../packages/editor/node_modules/readdirp": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "../../packages/editor/node_modules/redent": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "indent-string": "^5.0.0", + "strip-indent": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/refractor": { + "version": "4.8.1", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/prismjs": "^1.0.0", + "hastscript": "^7.0.0", + "parse-entities": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/regenerator-runtime": { + "version": "0.14.1", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/rehype-stringify": { + "version": "9.0.4", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "hast-util-to-html": "^8.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/remark": { + "version": "14.0.3", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "remark-parse": "^10.0.0", + "remark-stringify": "^10.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/remark-comments": { + "version": "1.2.10", + "license": "MIT" + }, + "../../packages/editor/node_modules/remark-gfm": { + "version": "3.0.1", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-gfm": "^2.0.0", + "micromark-extension-gfm": "^2.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/remark-math": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-math": "^2.0.0", + "micromark-extension-math": "^2.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/remark-parse": { + "version": "10.0.2", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/remark-rehype": { + "version": "10.1.0", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^12.1.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/remark-stringify": { + "version": "10.0.3", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/remark-supersub": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "unist-util-visit": "^4.0.0" + } + }, + "../../packages/editor/node_modules/remark-supersub/node_modules/unist-util-visit": { + "version": "4.1.2", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.1.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/resolve": { + "version": "1.22.8", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/editor/node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/rollup": { + "version": "4.31.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.31.0", + "@rollup/rollup-android-arm64": "4.31.0", + "@rollup/rollup-darwin-arm64": "4.31.0", + "@rollup/rollup-darwin-x64": "4.31.0", + "@rollup/rollup-freebsd-arm64": "4.31.0", + "@rollup/rollup-freebsd-x64": "4.31.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.31.0", + "@rollup/rollup-linux-arm-musleabihf": "4.31.0", + "@rollup/rollup-linux-arm64-gnu": "4.31.0", + "@rollup/rollup-linux-arm64-musl": "4.31.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.31.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.31.0", + "@rollup/rollup-linux-riscv64-gnu": "4.31.0", + "@rollup/rollup-linux-s390x-gnu": "4.31.0", + "@rollup/rollup-linux-x64-gnu": "4.31.0", + "@rollup/rollup-linux-x64-musl": "4.31.0", + "@rollup/rollup-win32-arm64-msvc": "4.31.0", + "@rollup/rollup-win32-ia32-msvc": "4.31.0", + "@rollup/rollup-win32-x64-msvc": "4.31.0", + "fsevents": "~2.3.2" + } + }, + "../../packages/editor/node_modules/rope-sequence": { + "version": "1.3.4", + "license": "MIT" + }, + "../../packages/editor/node_modules/sade": { + "version": "1.8.1", + "license": "MIT", + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/editor/node_modules/safer-buffer": { + "version": "2.1.2", + "license": "MIT" + }, + "../../packages/editor/node_modules/scheduler": { + "version": "0.23.2", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "../../packages/editor/node_modules/section-matter": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/semver": { + "version": "7.6.3", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/editor/node_modules/siginfo": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/editor/node_modules/simple-update-notifier": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/editor/node_modules/source-map": { + "version": "0.5.7", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/source-map-js": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/space-separated-tokens": { + "version": "2.0.2", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/spark-md5": { + "version": "3.0.2", + "license": "(WTFPL OR MIT)" + }, + "../../packages/editor/node_modules/sprintf-js": { + "version": "1.0.3", + "license": "BSD-3-Clause" + }, + "../../packages/editor/node_modules/stackback": { + "version": "0.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/std-env": { + "version": "3.8.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/stringify-entities": { + "version": "4.0.4", + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/strip-bom-string": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/strip-indent": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/editor/node_modules/styled-system": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/background": "^5.1.2", + "@styled-system/border": "^5.1.5", + "@styled-system/color": "^5.1.2", + "@styled-system/core": "^5.1.2", + "@styled-system/flexbox": "^5.1.2", + "@styled-system/grid": "^5.1.2", + "@styled-system/layout": "^5.1.2", + "@styled-system/position": "^5.1.2", + "@styled-system/shadow": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@styled-system/typography": "^5.1.2", + "@styled-system/variant": "^5.1.5", + "object-assign": "^4.1.1" + } + }, + "../../packages/editor/node_modules/stylis": { + "version": "4.2.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/supports-color": { + "version": "5.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/editor/node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/editor/node_modules/tinybench": { + "version": "2.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/tinyexec": { + "version": "0.3.2", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/tinypool": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "../../packages/editor/node_modules/tinyrainbow": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/editor/node_modules/tinyspy": { + "version": "3.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/editor/node_modules/to-regex-range": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "../../packages/editor/node_modules/touch": { + "version": "3.1.1", + "dev": true, + "license": "ISC", + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "../../packages/editor/node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "../../packages/editor/node_modules/trim-lines": { + "version": "3.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/trough": { + "version": "2.2.0", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/tslib": { + "version": "2.8.1", + "license": "0BSD" + }, + "../../packages/editor/node_modules/uc.micro": { + "version": "2.1.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/undefsafe": { + "version": "2.0.5", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/undici-types": { + "version": "7.16.0", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/unfurl.js": { + "version": "6.4.0", + "license": "ISC", + "dependencies": { + "debug": "^3.2.7", + "he": "^1.2.0", + "htmlparser2": "^8.0.1", + "iconv-lite": "^0.4.24", + "node-fetch": "^2.6.7" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/editor/node_modules/unfurl.js/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/editor/node_modules/unified": { + "version": "10.1.2", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-generated": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-is": { + "version": "5.2.1", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-position": { + "version": "4.0.4", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-stringify-position": { + "version": "3.0.3", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-visit": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-visit-parents": { + "version": "5.1.3", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-visit/node_modules/@types/unist": { + "version": "3.0.3", + "license": "MIT" + }, + "../../packages/editor/node_modules/unist-util-visit/node_modules/unist-util-is": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/unist-util-visit/node_modules/unist-util-visit-parents": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/use-sync-external-store": { + "version": "1.2.2", + "dev": true, + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "../../packages/editor/node_modules/uvu": { + "version": "0.5.6", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0", + "diff": "^5.0.0", + "kleur": "^4.0.3", + "sade": "^1.7.3" + }, + "bin": { + "uvu": "bin.js" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/editor/node_modules/varint": { + "version": "6.0.0", + "license": "MIT" + }, + "../../packages/editor/node_modules/vfile": { + "version": "5.3.7", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/vfile-location": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "vfile": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/vfile-message": { + "version": "3.1.4", + "license": "MIT", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "../../packages/editor/node_modules/vite": { + "version": "5.4.12", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "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 + } + } + }, + "../../packages/editor/node_modules/vite-node": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/editor/node_modules/vite-node/node_modules/debug": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/vitest": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.8", + "@vitest/mocker": "2.1.8", + "@vitest/pretty-format": "^2.1.8", + "@vitest/runner": "2.1.8", + "@vitest/snapshot": "2.1.8", + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.8", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.8", + "@vitest/ui": "2.1.8", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/vitest/node_modules/debug": { + "version": "4.3.7", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/w3c-keyname": { + "version": "2.2.8", + "license": "MIT" + }, + "../../packages/editor/node_modules/warning": { + "version": "4.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "../../packages/editor/node_modules/web-namespaces": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/editor/node_modules/web-vitals": { + "version": "4.2.3", + "dev": true, + "license": "Apache-2.0" + }, + "../../packages/editor/node_modules/webidl-conversions": { + "version": "7.0.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "../../packages/editor/node_modules/whatwg-fetch": { + "version": "3.6.19", + "dev": true, + "license": "MIT" + }, + "../../packages/editor/node_modules/whatwg-mimetype": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "../../packages/editor/node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "../../packages/editor/node_modules/whatwg-url/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "../../packages/editor/node_modules/why-is-node-running": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/editor/node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "../../packages/editor/node_modules/zod": { + "version": "3.24.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "../../packages/editor/node_modules/zustand": { + "version": "4.5.5", + "dev": true, + "license": "MIT", + "dependencies": { + "use-sync-external-store": "1.2.2" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "@types/react": ">=16.8", + "immer": ">=9.0.6", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + }, + "../../packages/editor/node_modules/zwitch": { + "version": "2.0.4", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "../../packages/icons": { + "name": "@notesnook/icons", + "version": "2.1.3", + "license": "GPL-3.0-or-later" + }, "../../packages/intl": { "name": "@notesnook/intl", "version": "1.0.0", @@ -417,12 +29731,5565 @@ "react": ">=18" } }, + "../../packages/intl/node_modules/@ampproject/remapping": { + "version": "2.3.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/intl/node_modules/@babel/code-frame": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/compat-data": { + "version": "7.24.9", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/core": { + "version": "7.24.9", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.9", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-module-transforms": "^7.24.9", + "@babel/helpers": "^7.24.8", + "@babel/parser": "^7.24.8", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "../../packages/intl/node_modules/@babel/generator": { + "version": "7.24.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-compilation-targets": { + "version": "7.24.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-function-name": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-hoist-variables": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-module-transforms": { + "version": "7.24.9", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-string-parser": { + "version": "7.25.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-validator-identifier": { + "version": "7.25.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helper-validator-option": { + "version": "7.24.8", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/helpers": { + "version": "7.24.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/highlight": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/parser": { + "version": "7.25.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/intl/node_modules/@babel/runtime": { + "version": "7.24.8", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/template": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/traverse": { + "version": "7.24.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.8", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/parser": "^7.24.8", + "@babel/types": "^7.24.8", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@babel/types": { + "version": "7.25.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.7", + "@babel/helper-validator-identifier": "^7.25.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "../../packages/intl/node_modules/@isaacs/cliui": { + "version": "8.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/intl/node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../packages/intl/node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../packages/intl/node_modules/@jest/schemas": { + "version": "29.6.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "../../packages/intl/node_modules/@jest/types": { + "version": "29.6.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "../../packages/intl/node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/intl/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/intl/node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/intl/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-extract-messages": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.20.12", + "@babel/runtime": "^7.20.13", + "@babel/types": "^7.20.7", + "@lingui/conf": "^5.1.2", + "@lingui/core": "^5.1.2", + "@lingui/message-utils": "^5.1.2" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "babel-plugin-macros": "2 || 3" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/@lingui/conf": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "chalk": "^4.1.0", + "cosmiconfig": "^8.0.0", + "jest-validate": "^29.4.3", + "jiti": "^1.17.1", + "lodash.get": "^4.4.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/@lingui/message-utils": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@messageformat/parser": "^5.0.0", + "js-sha256": "^0.10.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@lingui/babel-plugin-lingui-macro/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@lingui/cli": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.21.0", + "@babel/generator": "^7.21.1", + "@babel/parser": "^7.22.0", + "@babel/runtime": "^7.21.0", + "@babel/types": "^7.21.2", + "@lingui/babel-plugin-extract-messages": "^5.1.2", + "@lingui/babel-plugin-lingui-macro": "^5.1.2", + "@lingui/conf": "^5.1.2", + "@lingui/core": "^5.1.2", + "@lingui/format-po": "^5.1.2", + "@lingui/message-utils": "^5.1.2", + "babel-plugin-macros": "^3.0.1", + "chalk": "^4.1.0", + "chokidar": "3.5.1", + "cli-table": "^0.3.11", + "commander": "^10.0.0", + "convert-source-map": "^2.0.0", + "date-fns": "^3.6.0", + "esbuild": "^0.21.5", + "glob": "^11.0.0", + "inquirer": "^7.3.3", + "micromatch": "^4.0.7", + "normalize-path": "^3.0.0", + "ora": "^5.1.0", + "pathe": "^1.1.0", + "pkg-up": "^3.1.0", + "pofile": "^1.1.4", + "pseudolocale": "^2.0.0", + "ramda": "^0.27.1", + "source-map": "^0.8.0-beta.0" + }, + "bin": { + "lingui": "dist/lingui.js" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/@lingui/conf": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "chalk": "^4.1.0", + "cosmiconfig": "^8.0.0", + "jest-validate": "^29.4.3", + "jiti": "^1.17.1", + "lodash.get": "^4.4.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/@lingui/message-utils": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@messageformat/parser": "^5.0.0", + "js-sha256": "^0.10.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@lingui/cli/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@lingui/core": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@lingui/message-utils": "^5.1.2", + "unraw": "^3.0.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@lingui/babel-plugin-lingui-macro": "5.1.2", + "babel-plugin-macros": "2 || 3" + }, + "peerDependenciesMeta": { + "@lingui/babel-plugin-lingui-macro": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@lingui/core/node_modules/@lingui/message-utils": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@messageformat/parser": "^5.0.0", + "js-sha256": "^0.10.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/format-po": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@lingui/conf": "^5.1.2", + "@lingui/message-utils": "^5.1.2", + "date-fns": "^3.6.0", + "pofile": "^1.1.4" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/@lingui/conf": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "chalk": "^4.1.0", + "cosmiconfig": "^8.0.0", + "jest-validate": "^29.4.3", + "jiti": "^1.17.1", + "lodash.get": "^4.4.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/@lingui/message-utils": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@messageformat/parser": "^5.0.0", + "js-sha256": "^0.10.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@lingui/format-po/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@lingui/swc-plugin": { + "version": "5.0.2", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@lingui/core": "5" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "next": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@messageformat/parser": { + "version": "5.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "moo": "^0.5.1" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor": { + "version": "7.47.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/api-extractor-model": "7.29.6", + "@microsoft/tsdoc": "~0.15.0", + "@microsoft/tsdoc-config": "~0.17.0", + "@rushstack/node-core-library": "5.7.0", + "@rushstack/rig-package": "0.5.3", + "@rushstack/terminal": "0.14.0", + "@rushstack/ts-command-line": "4.22.6", + "lodash": "~4.17.15", + "minimatch": "~3.0.3", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "source-map": "~0.6.1", + "typescript": "5.4.2" + }, + "bin": { + "api-extractor": "bin/api-extractor" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor-model": { + "version": "7.29.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/tsdoc": "~0.15.0", + "@microsoft/tsdoc-config": "~0.17.0", + "@rushstack/node-core-library": "5.7.0" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor/node_modules/minimatch": { + "version": "3.0.8", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor/node_modules/semver": { + "version": "7.5.4", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor/node_modules/source-map": { + "version": "0.6.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor/node_modules/typescript": { + "version": "5.4.2", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "../../packages/intl/node_modules/@microsoft/api-extractor/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/@microsoft/tsdoc": { + "version": "0.15.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@microsoft/tsdoc-config": { + "version": "0.17.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/tsdoc": "0.15.0", + "ajv": "~8.12.0", + "jju": "~1.4.0", + "resolve": "~1.22.2" + } + }, + "../../packages/intl/node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/@rollup/pluginutils": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.24.4", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/intl/node_modules/@rushstack/node-core-library": { + "version": "5.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "~8.13.0", + "ajv-draft-04": "~1.0.0", + "ajv-formats": "~3.0.1", + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@rushstack/node-core-library/node_modules/ajv": { + "version": "8.13.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../packages/intl/node_modules/@rushstack/node-core-library/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/@rushstack/node-core-library/node_modules/semver": { + "version": "7.5.4", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/@rushstack/node-core-library/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/@rushstack/rig-package": { + "version": "0.5.3", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "~1.22.1", + "strip-json-comments": "~3.1.1" + } + }, + "../../packages/intl/node_modules/@rushstack/terminal": { + "version": "0.14.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@rushstack/node-core-library": "5.7.0", + "supports-color": "~8.1.1" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@rushstack/terminal/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/@rushstack/terminal/node_modules/supports-color": { + "version": "8.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "../../packages/intl/node_modules/@rushstack/ts-command-line": { + "version": "4.22.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@rushstack/terminal": "0.14.0", + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "string-argv": "~0.3.1" + } + }, + "../../packages/intl/node_modules/@rushstack/ts-command-line/node_modules/argparse": { + "version": "1.0.10", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "../../packages/intl/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@swc/core": { + "version": "1.7.26", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3", + "@swc/types": "^0.1.12" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.7.26", + "@swc/core-darwin-x64": "1.7.26", + "@swc/core-linux-arm-gnueabihf": "1.7.26", + "@swc/core-linux-arm64-gnu": "1.7.26", + "@swc/core-linux-arm64-musl": "1.7.26", + "@swc/core-linux-x64-gnu": "1.7.26", + "@swc/core-linux-x64-musl": "1.7.26", + "@swc/core-win32-arm64-msvc": "1.7.26", + "@swc/core-win32-ia32-msvc": "1.7.26", + "@swc/core-win32-x64-msvc": "1.7.26" + }, + "peerDependencies": { + "@swc/helpers": "*" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@swc/core-darwin-arm64": { + "version": "1.7.26", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/@swc/counter": { + "version": "0.1.3", + "dev": true, + "license": "Apache-2.0" + }, + "../../packages/intl/node_modules/@swc/types": { + "version": "0.1.12", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3" + } + }, + "../../packages/intl/node_modules/@types/argparse": { + "version": "1.0.38", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@types/estree": { + "version": "1.0.6", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "../../packages/intl/node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "../../packages/intl/node_modules/@types/node": { + "version": "22.7.4", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "../../packages/intl/node_modules/@types/parse-json": { + "version": "4.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@types/prop-types": { + "version": "15.7.12", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@types/react": { + "version": "18.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "../../packages/intl/node_modules/@types/yargs": { + "version": "17.0.33", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../../packages/intl/node_modules/@types/yargs-parser": { + "version": "21.0.3", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@volar/language-core": { + "version": "2.4.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "2.4.5" + } + }, + "../../packages/intl/node_modules/@volar/source-map": { + "version": "2.4.5", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/@volar/typescript": { + "version": "2.4.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "2.4.5", + "path-browserify": "^1.0.1", + "vscode-uri": "^3.0.8" + } + }, + "../../packages/intl/node_modules/@vue/compiler-core": { + "version": "3.5.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.10", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "../../packages/intl/node_modules/@vue/compiler-dom": { + "version": "3.5.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.10", + "@vue/shared": "3.5.10" + } + }, + "../../packages/intl/node_modules/@vue/compiler-vue2": { + "version": "2.7.16", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "../../packages/intl/node_modules/@vue/language-core": { + "version": "2.1.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "~2.4.1", + "@vue/compiler-dom": "^3.4.0", + "@vue/compiler-vue2": "^2.7.16", + "@vue/shared": "^3.4.0", + "computeds": "^0.0.1", + "minimatch": "^9.0.3", + "muggle-string": "^0.4.1", + "path-browserify": "^1.0.1" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/@vue/language-core/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../packages/intl/node_modules/@vue/language-core/node_modules/minimatch": { + "version": "9.0.5", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/intl/node_modules/@vue/shared": { + "version": "3.5.10", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/acorn": { + "version": "8.12.1", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../packages/intl/node_modules/ajv": { + "version": "8.12.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../../packages/intl/node_modules/ajv-draft-04": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/ajv-formats": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/ansi-escapes": { + "version": "4.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/ansi-styles": { + "version": "3.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/anymatch": { + "version": "3.1.3", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/argparse": { + "version": "2.0.1", + "dev": true, + "license": "Python-2.0" + }, + "../../packages/intl/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "../../packages/intl/node_modules/babel-plugin-macros/node_modules/cosmiconfig": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/base64-js": { + "version": "1.5.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../packages/intl/node_modules/binary-extensions": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/bl": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "../../packages/intl/node_modules/brace-expansion": { + "version": "1.1.11", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../../packages/intl/node_modules/braces": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/browserslist": { + "version": "4.23.2", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "../../packages/intl/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "../../packages/intl/node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/camelcase": { + "version": "6.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/caniuse-lite": { + "version": "1.0.30001666", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "../../packages/intl/node_modules/chalk": { + "version": "2.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/chardet": { + "version": "0.7.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/chokidar": { + "version": "3.5.1", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.1" + } + }, + "../../packages/intl/node_modules/cli-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/cli-spinners": { + "version": "2.9.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/cli-table": { + "version": "0.3.11", + "dev": true, + "dependencies": { + "colors": "1.0.3" + }, + "engines": { + "node": ">= 0.2.0" + } + }, + "../../packages/intl/node_modules/cli-width": { + "version": "3.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 10" + } + }, + "../../packages/intl/node_modules/clone": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "../../packages/intl/node_modules/color-convert": { + "version": "1.9.3", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "../../packages/intl/node_modules/color-name": { + "version": "1.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/colors": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } + }, + "../../packages/intl/node_modules/commander": { + "version": "10.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "../../packages/intl/node_modules/compare-versions": { + "version": "6.1.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/computeds": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/confbox": { + "version": "0.1.7", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/cosmiconfig": { + "version": "8.3.6", + "dev": true, + "license": "MIT", + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/cross-spawn": { + "version": "7.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/csstype": { + "version": "3.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/date-fns": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/kossnocorp" + } + }, + "../../packages/intl/node_modules/de-indent": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/debug": { + "version": "4.3.7", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/defaults": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/eastasianwidth": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/electron-to-chromium": { + "version": "1.4.830", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/entities": { + "version": "4.5.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "../../packages/intl/node_modules/error-ex": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "../../packages/intl/node_modules/esbuild": { + "version": "0.21.5", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "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" + } + }, + "../../packages/intl/node_modules/escalade": { + "version": "3.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/escape-string-regexp": { + "version": "1.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "../../packages/intl/node_modules/estree-walker": { + "version": "2.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/external-editor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/fast-deep-equal": { + "version": "3.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/fast-glob": { + "version": "3.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "../../packages/intl/node_modules/fastq": { + "version": "1.17.1", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "../../packages/intl/node_modules/figures": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/fill-range": { + "version": "7.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/find-up": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/foreground-child": { + "version": "3.3.0", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/intl/node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/intl/node_modules/fs-extra": { + "version": "7.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "../../packages/intl/node_modules/fsevents": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../packages/intl/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/intl/node_modules/gensync": { + "version": "1.0.0-beta.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/intl/node_modules/glob": { + "version": "11.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/intl/node_modules/glob-parent": { + "version": "5.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../packages/intl/node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../packages/intl/node_modules/glob/node_modules/minimatch": { + "version": "10.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/intl/node_modules/globals": { + "version": "11.12.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/graceful-fs": { + "version": "4.2.11", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/has-flag": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/hasown": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../packages/intl/node_modules/he": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "../../packages/intl/node_modules/iconv-lite": { + "version": "0.4.24", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/ieee754": { + "version": "1.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "../../packages/intl/node_modules/ignore-by-default": { + "version": "1.0.1", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/import-fresh": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/import-lazy": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/inherits": { + "version": "2.0.4", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/inquirer": { + "version": "7.3.3", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../../packages/intl/node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/is-arrayish": { + "version": "0.2.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/is-binary-path": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/is-core-module": { + "version": "2.15.0", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/intl/node_modules/is-extglob": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/is-glob": { + "version": "4.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/is-interactive": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/is-number": { + "version": "7.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "../../packages/intl/node_modules/is-unicode-supported": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/jackspeak": { + "version": "4.0.2", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/intl/node_modules/jest-get-type": { + "version": "29.6.3", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "../../packages/intl/node_modules/jest-validate": { + "version": "29.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "../../packages/intl/node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/jiti": { + "version": "1.21.6", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "../../packages/intl/node_modules/jju": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/js-sha256": { + "version": "0.10.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/js-yaml": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../../packages/intl/node_modules/jsesc": { + "version": "2.5.2", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/jsonfile": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../../packages/intl/node_modules/kolorist": { + "version": "1.8.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/leven": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/lines-and-columns": { + "version": "1.2.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/local-pkg": { + "version": "0.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "../../packages/intl/node_modules/locate-path": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/lodash": { + "version": "4.17.21", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/lodash.get": { + "version": "4.4.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/lodash.sortby": { + "version": "4.7.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/log-symbols": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/loose-envify": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../packages/intl/node_modules/lru-cache": { + "version": "5.1.1", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "../../packages/intl/node_modules/magic-string": { + "version": "0.30.11", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "../../packages/intl/node_modules/merge2": { + "version": "1.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/micromatch": { + "version": "4.0.8", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "../../packages/intl/node_modules/mimic-fn": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/minimatch": { + "version": "3.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../../packages/intl/node_modules/minipass": { + "version": "7.1.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "../../packages/intl/node_modules/mlly": { + "version": "1.7.1", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.1", + "ufo": "^1.5.3" + } + }, + "../../packages/intl/node_modules/moo": { + "version": "0.5.2", + "dev": true, + "license": "BSD-3-Clause" + }, + "../../packages/intl/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/muggle-string": { + "version": "0.4.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/mute-stream": { + "version": "0.0.8", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/nanoid": { + "version": "3.3.7", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../packages/intl/node_modules/node-releases": { + "version": "2.0.17", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/nodemon": { + "version": "3.1.7", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^4", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "../../packages/intl/node_modules/nodemon/node_modules/chokidar": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "../../packages/intl/node_modules/nodemon/node_modules/readdirp": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "../../packages/intl/node_modules/nodemon/node_modules/semver": { + "version": "7.6.3", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/normalize-path": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/onetime": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/ora": { + "version": "5.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../../packages/intl/node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/ora/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/os-tmpdir": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/p-limit": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/p-locate": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/p-try": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/package-json-from-dist": { + "version": "1.0.1", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "../../packages/intl/node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/path-browserify": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/path-exists": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/path-key": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/path-parse": { + "version": "1.0.7", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/path-scurry": { + "version": "2.0.0", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/intl/node_modules/path-scurry/node_modules/lru-cache": { + "version": "11.0.2", + "dev": true, + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, + "../../packages/intl/node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/pathe": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/picocolors": { + "version": "1.1.0", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/picomatch": { + "version": "2.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "../../packages/intl/node_modules/pkg-types": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "confbox": "^0.1.7", + "mlly": "^1.7.1", + "pathe": "^1.1.2" + } + }, + "../../packages/intl/node_modules/pkg-up": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/pofile": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/postcss": { + "version": "8.4.47", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../packages/intl/node_modules/pretty-format": { + "version": "29.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "../../packages/intl/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/pseudolocale": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "commander": "^10.0.0" + }, + "bin": { + "pseudolocale": "dist/cli.mjs" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "../../packages/intl/node_modules/pstree.remy": { + "version": "1.1.8", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/punycode": { + "version": "2.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/intl/node_modules/queue-microtask": { + "version": "1.2.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../packages/intl/node_modules/ramda": { + "version": "0.27.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/react": { + "version": "18.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/react-is": { + "version": "18.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/readable-stream": { + "version": "3.6.2", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../../packages/intl/node_modules/readdirp": { + "version": "3.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "../../packages/intl/node_modules/regenerator-runtime": { + "version": "0.14.1", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/require-from-string": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/resolve": { + "version": "1.22.8", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/intl/node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/restore-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/reusify": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/rollup": { + "version": "4.24.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.24.4", + "@rollup/rollup-android-arm64": "4.24.4", + "@rollup/rollup-darwin-arm64": "4.24.4", + "@rollup/rollup-darwin-x64": "4.24.4", + "@rollup/rollup-freebsd-arm64": "4.24.4", + "@rollup/rollup-freebsd-x64": "4.24.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.24.4", + "@rollup/rollup-linux-arm-musleabihf": "4.24.4", + "@rollup/rollup-linux-arm64-gnu": "4.24.4", + "@rollup/rollup-linux-arm64-musl": "4.24.4", + "@rollup/rollup-linux-powerpc64le-gnu": "4.24.4", + "@rollup/rollup-linux-riscv64-gnu": "4.24.4", + "@rollup/rollup-linux-s390x-gnu": "4.24.4", + "@rollup/rollup-linux-x64-gnu": "4.24.4", + "@rollup/rollup-linux-x64-musl": "4.24.4", + "@rollup/rollup-win32-arm64-msvc": "4.24.4", + "@rollup/rollup-win32-ia32-msvc": "4.24.4", + "@rollup/rollup-win32-x64-msvc": "4.24.4", + "fsevents": "~2.3.2" + } + }, + "../../packages/intl/node_modules/run-async": { + "version": "2.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "../../packages/intl/node_modules/run-parallel": { + "version": "1.2.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "../../packages/intl/node_modules/rxjs": { + "version": "6.6.7", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "../../packages/intl/node_modules/safe-buffer": { + "version": "5.2.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../../packages/intl/node_modules/safer-buffer": { + "version": "2.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/semver": { + "version": "6.3.1", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "../../packages/intl/node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/shebang-regex": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/signal-exit": { + "version": "3.0.7", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/simple-update-notifier": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.6.3", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/intl/node_modules/source-map": { + "version": "0.8.0-beta.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/source-map-js": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/intl/node_modules/sprintf-js": { + "version": "1.0.3", + "dev": true, + "license": "BSD-3-Clause" + }, + "../../packages/intl/node_modules/string_decoder": { + "version": "1.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "../../packages/intl/node_modules/string-argv": { + "version": "0.3.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.19" + } + }, + "../../packages/intl/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/intl/node_modules/strip-json-comments": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/supports-color": { + "version": "5.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/intl/node_modules/through": { + "version": "2.3.8", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/tmp": { + "version": "0.0.33", + "dev": true, + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "../../packages/intl/node_modules/to-fast-properties": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/intl/node_modules/to-regex-range": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "../../packages/intl/node_modules/touch": { + "version": "3.1.1", + "dev": true, + "license": "ISC", + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "../../packages/intl/node_modules/tr46": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../../packages/intl/node_modules/tslib": { + "version": "1.14.1", + "dev": true, + "license": "0BSD" + }, + "../../packages/intl/node_modules/type-fest": { + "version": "0.21.3", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/ufo": { + "version": "1.5.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/undefsafe": { + "version": "2.0.5", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/undici-types": { + "version": "6.19.8", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/universalify": { + "version": "0.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "../../packages/intl/node_modules/unraw": { + "version": "3.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/update-browserslist-db": { + "version": "1.1.0", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "../../packages/intl/node_modules/uri-js": { + "version": "4.4.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../../packages/intl/node_modules/util-deprecate": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/vite": { + "version": "5.4.11", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "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 + } + } + }, + "../../packages/intl/node_modules/vite-plugin-dts": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/api-extractor": "7.47.7", + "@rollup/pluginutils": "^5.1.0", + "@volar/typescript": "^2.4.4", + "@vue/language-core": "2.1.6", + "compare-versions": "^6.1.1", + "debug": "^4.3.6", + "kolorist": "^1.8.0", + "local-pkg": "^0.5.0", + "magic-string": "^0.30.11" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "typescript": "*", + "vite": "*" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "../../packages/intl/node_modules/vite-plugin-static-copy": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.3", + "fast-glob": "^3.2.11", + "fs-extra": "^11.1.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0" + } + }, + "../../packages/intl/node_modules/vite-plugin-static-copy/node_modules/chokidar": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "../../packages/intl/node_modules/vite-plugin-static-copy/node_modules/fs-extra": { + "version": "11.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "../../packages/intl/node_modules/vite-plugin-static-copy/node_modules/jsonfile": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../../packages/intl/node_modules/vite-plugin-static-copy/node_modules/readdirp": { + "version": "3.6.0", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "../../packages/intl/node_modules/vite-plugin-static-copy/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../../packages/intl/node_modules/vite-plugin-swc-transform": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.1.0", + "@swc/core": "^1.6.5" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5" + } + }, + "../../packages/intl/node_modules/vscode-uri": { + "version": "3.0.8", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/wcwidth": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "../../packages/intl/node_modules/webidl-conversions": { + "version": "4.0.2", + "dev": true, + "license": "BSD-2-Clause" + }, + "../../packages/intl/node_modules/whatwg-url": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "../../packages/intl/node_modules/which": { + "version": "2.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "../../packages/intl/node_modules/wrap-ansi": { + "version": "8.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../packages/intl/node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../../packages/intl/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/intl/node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "../../packages/intl/node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/intl/node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "license": "MIT" + }, + "../../packages/intl/node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/intl/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "../../packages/intl/node_modules/yallist": { + "version": "3.1.1", + "dev": true, + "license": "ISC" + }, + "../../packages/intl/node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, "../../packages/logger": { "name": "@notesnook/logger", "version": "2.1.3", "license": "GPL-3.0-or-later", "devDependencies": {} }, + "../../packages/sodium": { + "name": "@notesnook/sodium", + "version": "2.1.3", + "hasInstallScript": true, + "license": "GPL-3.0-or-later", + "dependencies": { + "libsodium-wrappers-sumo": "^0.7.15" + }, + "devDependencies": { + "@types/libsodium-wrappers-sumo": "0.7.8", + "benny": "^3.7.1", + "sodium-native": "^4.1.1", + "ts-node": "^10.9.1", + "vitest": "2.1.8" + }, + "peerDependencies": { + "sodium-native": ">=4" + } + }, + "../../packages/sodium/node_modules/@arrows/array": { + "version": "1.4.1", + "dev": true, + "license": "ISC", + "dependencies": { + "@arrows/composition": "^1.2.2" + } + }, + "../../packages/sodium/node_modules/@arrows/composition": { + "version": "1.2.2", + "dev": true, + "license": "ISC" + }, + "../../packages/sodium/node_modules/@arrows/dispatch": { + "version": "1.0.3", + "dev": true, + "license": "ISC", + "dependencies": { + "@arrows/composition": "^1.2.2" + } + }, + "../../packages/sodium/node_modules/@arrows/error": { + "version": "1.0.2", + "dev": true, + "license": "ISC" + }, + "../../packages/sodium/node_modules/@arrows/multimethod": { + "version": "1.4.1", + "dev": true, + "license": "ISC", + "dependencies": { + "@arrows/array": "^1.4.1", + "@arrows/composition": "^1.2.2", + "@arrows/error": "^1.0.2", + "fast-deep-equal": "^3.1.3" + } + }, + "../../packages/sodium/node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/sodium/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "../../packages/sodium/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/sodium/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "../../packages/sodium/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.31.0", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../packages/sodium/node_modules/@tsconfig/node10": { + "version": "1.0.9", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/@tsconfig/node12": { + "version": "1.0.11", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/@tsconfig/node14": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/@tsconfig/node16": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/@types/estree": { + "version": "1.0.6", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/@types/libsodium-wrappers": { + "version": "0.7.10", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/@types/libsodium-wrappers-sumo": { + "version": "0.7.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/libsodium-wrappers": "*" + } + }, + "../../packages/sodium/node_modules/@vitest/expect": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/sodium/node_modules/@vitest/mocker": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "2.1.8", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.12" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "../../packages/sodium/node_modules/@vitest/pretty-format": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/sodium/node_modules/@vitest/runner": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "2.1.8", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/sodium/node_modules/@vitest/snapshot": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "magic-string": "^0.30.12", + "pathe": "^1.1.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/sodium/node_modules/@vitest/spy": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^3.0.2" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/sodium/node_modules/@vitest/utils": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "2.1.8", + "loupe": "^3.1.2", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/sodium/node_modules/acorn": { + "version": "8.9.0", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "../../packages/sodium/node_modules/acorn-walk": { + "version": "8.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../../packages/sodium/node_modules/ansi-escapes": { + "version": "4.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/sodium/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/arg": { + "version": "4.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/assertion-error": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "../../packages/sodium/node_modules/astral-regex": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/benchmark": { + "version": "2.1.4", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash": "^4.17.4", + "platform": "^1.3.3" + } + }, + "../../packages/sodium/node_modules/benny": { + "version": "3.7.1", + "dev": true, + "license": "ISC", + "dependencies": { + "@arrows/composition": "^1.0.0", + "@arrows/dispatch": "^1.0.2", + "@arrows/multimethod": "^1.1.6", + "benchmark": "^2.1.4", + "common-tags": "^1.8.0", + "fs-extra": "^10.0.0", + "json2csv": "^5.0.6", + "kleur": "^4.1.4", + "log-update": "^4.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/sodium/node_modules/cac": { + "version": "6.7.14", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/chai": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/sodium/node_modules/check-error": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "../../packages/sodium/node_modules/cli-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../../packages/sodium/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/commander": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../../packages/sodium/node_modules/common-tags": { + "version": "1.8.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "../../packages/sodium/node_modules/create-require": { + "version": "1.1.1", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/debug": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/sodium/node_modules/deep-eql": { + "version": "5.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/sodium/node_modules/es-module-lexer": { + "version": "1.6.0", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/esbuild": { + "version": "0.21.5", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "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" + } + }, + "../../packages/sodium/node_modules/estree-walker": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "../../packages/sodium/node_modules/expect-type": { + "version": "1.1.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "../../packages/sodium/node_modules/fast-deep-equal": { + "version": "3.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../../packages/sodium/node_modules/fsevents": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../packages/sodium/node_modules/graceful-fs": { + "version": "4.2.11", + "dev": true, + "license": "ISC" + }, + "../../packages/sodium/node_modules/json2csv": { + "version": "5.0.7", + "dev": true, + "license": "MIT", + "dependencies": { + "commander": "^6.1.0", + "jsonparse": "^1.3.1", + "lodash.get": "^4.4.2" + }, + "bin": { + "json2csv": "bin/json2csv.js" + }, + "engines": { + "node": ">= 10", + "npm": ">= 6.13.0" + } + }, + "../../packages/sodium/node_modules/jsonfile": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../../packages/sodium/node_modules/jsonparse": { + "version": "1.3.1", + "dev": true, + "engines": [ + "node >= 0.2.0" + ], + "license": "MIT" + }, + "../../packages/sodium/node_modules/kleur": { + "version": "4.1.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/sodium/node_modules/libsodium-sumo": { + "version": "0.7.15", + "license": "ISC" + }, + "../../packages/sodium/node_modules/libsodium-wrappers-sumo": { + "version": "0.7.15", + "license": "ISC", + "dependencies": { + "libsodium-sumo": "^0.7.15" + } + }, + "../../packages/sodium/node_modules/lodash": { + "version": "4.17.21", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/lodash.get": { + "version": "4.4.2", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/log-update": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/sodium/node_modules/log-update/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/sodium/node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "../../packages/sodium/node_modules/loupe": { + "version": "3.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/magic-string": { + "version": "0.30.17", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "../../packages/sodium/node_modules/make-error": { + "version": "1.3.6", + "dev": true, + "license": "ISC" + }, + "../../packages/sodium/node_modules/mimic-fn": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/sodium/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/nanoid": { + "version": "3.3.8", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../packages/sodium/node_modules/node-gyp-build": { + "version": "4.8.2", + "dev": true, + "license": "MIT", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "../../packages/sodium/node_modules/onetime": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/sodium/node_modules/pathe": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/pathval": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "../../packages/sodium/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../../packages/sodium/node_modules/platform": { + "version": "1.3.6", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/postcss": { + "version": "8.5.1", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../packages/sodium/node_modules/restore-cursor": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/rollup": { + "version": "4.31.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.31.0", + "@rollup/rollup-android-arm64": "4.31.0", + "@rollup/rollup-darwin-arm64": "4.31.0", + "@rollup/rollup-darwin-x64": "4.31.0", + "@rollup/rollup-freebsd-arm64": "4.31.0", + "@rollup/rollup-freebsd-x64": "4.31.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.31.0", + "@rollup/rollup-linux-arm-musleabihf": "4.31.0", + "@rollup/rollup-linux-arm64-gnu": "4.31.0", + "@rollup/rollup-linux-arm64-musl": "4.31.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.31.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.31.0", + "@rollup/rollup-linux-riscv64-gnu": "4.31.0", + "@rollup/rollup-linux-s390x-gnu": "4.31.0", + "@rollup/rollup-linux-x64-gnu": "4.31.0", + "@rollup/rollup-linux-x64-musl": "4.31.0", + "@rollup/rollup-win32-arm64-msvc": "4.31.0", + "@rollup/rollup-win32-ia32-msvc": "4.31.0", + "@rollup/rollup-win32-x64-msvc": "4.31.0", + "fsevents": "~2.3.2" + } + }, + "../../packages/sodium/node_modules/siginfo": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/sodium/node_modules/signal-exit": { + "version": "3.0.7", + "dev": true, + "license": "ISC" + }, + "../../packages/sodium/node_modules/sodium-native": { + "version": "4.2.0", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-gyp-build": "^4.8.0" + } + }, + "../../packages/sodium/node_modules/source-map-js": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/sodium/node_modules/stackback": { + "version": "0.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/std-env": { + "version": "3.8.0", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/tinybench": { + "version": "2.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/tinyexec": { + "version": "0.3.2", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/tinypool": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "../../packages/sodium/node_modules/tinyrainbow": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/sodium/node_modules/tinyspy": { + "version": "3.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../../packages/sodium/node_modules/ts-node": { + "version": "10.9.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "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 + } + } + }, + "../../packages/sodium/node_modules/ts-node/node_modules/diff": { + "version": "4.0.2", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "../../packages/sodium/node_modules/type-fest": { + "version": "0.21.3", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/sodium/node_modules/universalify": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../../packages/sodium/node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/vite": { + "version": "5.4.12", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "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 + } + } + }, + "../../packages/sodium/node_modules/vite-node": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../packages/sodium/node_modules/vitest": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/expect": "2.1.8", + "@vitest/mocker": "2.1.8", + "@vitest/pretty-format": "^2.1.8", + "@vitest/runner": "2.1.8", + "@vitest/snapshot": "2.1.8", + "@vitest/spy": "2.1.8", + "@vitest/utils": "2.1.8", + "chai": "^5.1.2", + "debug": "^4.3.7", + "expect-type": "^1.1.0", + "magic-string": "^0.30.12", + "pathe": "^1.1.2", + "std-env": "^3.8.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.1", + "tinypool": "^1.0.1", + "tinyrainbow": "^1.2.0", + "vite": "^5.0.0", + "vite-node": "2.1.8", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/node": "^18.0.0 || >=20.0.0", + "@vitest/browser": "2.1.8", + "@vitest/ui": "2.1.8", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "../../packages/sodium/node_modules/why-is-node-running": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/wrap-ansi": { + "version": "6.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../../packages/sodium/node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/sodium/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/wrap-ansi/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../../packages/sodium/node_modules/yn": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "../../packages/streamable-fs": { "name": "@notesnook/streamable-fs", "version": "2.1.3", @@ -434,6 +35301,39 @@ "@types/localforage": "^0.0.34" } }, + "../../packages/streamable-fs/node_modules/@notesnook/crypto": { + "resolved": "../../packages/crypto", + "link": true + }, + "../../packages/streamable-fs/node_modules/@types/localforage": { + "version": "0.0.34", + "dev": true, + "license": "MIT", + "dependencies": { + "localforage": "*" + } + }, + "../../packages/streamable-fs/node_modules/immediate": { + "version": "3.0.6", + "dev": true, + "license": "MIT" + }, + "../../packages/streamable-fs/node_modules/lie": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "immediate": "~3.0.5" + } + }, + "../../packages/streamable-fs/node_modules/localforage": { + "version": "1.10.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "lie": "3.1.1" + } + }, "../../packages/theme": { "name": "@notesnook/theme", "version": "2.1.3", @@ -459,6 +35359,1092 @@ "zustand": ">=4" } }, + "../../packages/theme/node_modules/@babel/code-frame": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/generator": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.27.1", + "@babel/types": "^7.27.1", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/parser": { + "version": "7.27.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/theme/node_modules/@babel/runtime": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/template": { + "version": "7.27.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/traverse": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.1", + "@babel/parser": "^7.27.1", + "@babel/template": "^7.27.1", + "@babel/types": "^7.27.1", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@babel/types": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/theme/node_modules/@emotion/babel-plugin": { + "version": "11.13.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@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.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "../../packages/theme/node_modules/@emotion/cache": { + "version": "11.14.0", + "dev": true, + "license": "MIT", + "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" + } + }, + "../../packages/theme/node_modules/@emotion/cache/node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@emotion/hash": { + "version": "0.9.2", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "../../packages/theme/node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { + "version": "0.7.4", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@emotion/memoize": { + "version": "0.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@emotion/react": { + "version": "11.11.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "../../packages/theme/node_modules/@emotion/serialize": { + "version": "1.3.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.2", + "csstype": "^3.0.2" + } + }, + "../../packages/theme/node_modules/@emotion/sheet": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@emotion/unitless": { + "version": "0.10.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "../../packages/theme/node_modules/@emotion/utils": { + "version": "1.4.2", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/theme/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/theme/node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/theme/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "../../packages/theme/node_modules/@styled-system/background": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/border": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/color": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/core": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1" + } + }, + "../../packages/theme/node_modules/@styled-system/css": { + "version": "5.1.5", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@styled-system/flexbox": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/grid": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/layout": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/position": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/shadow": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/should-forward-prop": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/is-prop-valid": "^0.8.1", + "@emotion/memoize": "^0.7.1", + "styled-system": "^5.1.5" + } + }, + "../../packages/theme/node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { + "version": "0.7.5", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@styled-system/space": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/typography": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/theme/node_modules/@styled-system/variant": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2", + "@styled-system/css": "^5.1.5" + } + }, + "../../packages/theme/node_modules/@theme-ui/color": { + "version": "0.16.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@theme-ui/css": "^0.16.2", + "polished": "^4.0.5" + } + }, + "../../packages/theme/node_modules/@theme-ui/components": { + "version": "0.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/color": "^5.1.2", + "@styled-system/should-forward-prop": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@theme-ui/core": "^0.16.1", + "@theme-ui/css": "^0.16.1", + "@types/styled-system": "^5.1.13" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "@theme-ui/theme-provider": "^0.16.1", + "react": ">=18" + } + }, + "../../packages/theme/node_modules/@theme-ui/core": { + "version": "0.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@theme-ui/css": "^0.16.1", + "deepmerge": "^4.2.2" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "react": ">=18" + } + }, + "../../packages/theme/node_modules/@theme-ui/css": { + "version": "0.16.2", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.10" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1" + } + }, + "../../packages/theme/node_modules/@trpc/server": { + "version": "10.45.2", + "dev": true, + "funding": [ + "https://trpc.io/sponsor" + ], + "license": "MIT" + }, + "../../packages/theme/node_modules/@types/json-schema": { + "version": "7.0.15", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@types/parse-json": { + "version": "4.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@types/prop-types": { + "version": "15.7.14", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/@types/react": { + "version": "18.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "../../packages/theme/node_modules/@types/styled-system": { + "version": "5.1.23", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "../../packages/theme/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "../../packages/theme/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../../packages/theme/node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/theme/node_modules/commander": { + "version": "12.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "../../packages/theme/node_modules/convert-source-map": { + "version": "1.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/cosmiconfig": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/theme/node_modules/csstype": { + "version": "3.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/debug": { + "version": "4.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/theme/node_modules/deepmerge": { + "version": "4.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/theme/node_modules/error-ex": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "../../packages/theme/node_modules/escape-string-regexp": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/theme/node_modules/find-root": { + "version": "1.1.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/fs.realpath": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "../../packages/theme/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/theme/node_modules/glob": { + "version": "8.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../../packages/theme/node_modules/globals": { + "version": "11.12.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/theme/node_modules/hasown": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../packages/theme/node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "../../packages/theme/node_modules/import-fresh": { + "version": "3.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/theme/node_modules/inflight": { + "version": "1.0.6", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "../../packages/theme/node_modules/inherits": { + "version": "2.0.4", + "dev": true, + "license": "ISC" + }, + "../../packages/theme/node_modules/is-arrayish": { + "version": "0.2.1", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/is-core-module": { + "version": "2.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/theme/node_modules/isomorphic-fetch": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "node-fetch": "^2.6.1", + "whatwg-fetch": "^3.4.1" + } + }, + "../../packages/theme/node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/jsesc": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/theme/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/theme/node_modules/lines-and-columns": { + "version": "1.2.4", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/loose-envify": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../packages/theme/node_modules/minimatch": { + "version": "5.1.6", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/theme/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/node-fetch": { + "version": "2.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "../../packages/theme/node_modules/normalize-path": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/theme/node_modules/object-assign": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/theme/node_modules/once": { + "version": "1.4.0", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "../../packages/theme/node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/theme/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/theme/node_modules/path-parse": { + "version": "1.0.7", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/theme/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../../packages/theme/node_modules/polished": { + "version": "4.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.17.8" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/theme/node_modules/react": { + "version": "18.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/theme/node_modules/react-is": { + "version": "16.13.1", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/resolve": { + "version": "1.22.10", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/theme/node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/theme/node_modules/safe-stable-stringify": { + "version": "2.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../../packages/theme/node_modules/source-map": { + "version": "0.5.7", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/theme/node_modules/styled-system": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/background": "^5.1.2", + "@styled-system/border": "^5.1.5", + "@styled-system/color": "^5.1.2", + "@styled-system/core": "^5.1.2", + "@styled-system/flexbox": "^5.1.2", + "@styled-system/grid": "^5.1.2", + "@styled-system/layout": "^5.1.2", + "@styled-system/position": "^5.1.2", + "@styled-system/shadow": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@styled-system/typography": "^5.1.2", + "@styled-system/variant": "^5.1.5", + "object-assign": "^4.1.1" + } + }, + "../../packages/theme/node_modules/stylis": { + "version": "4.2.0", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/theme/node_modules/tr46": { + "version": "0.0.3", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/ts-json-schema-generator": { + "version": "1.5.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.15", + "commander": "^12.0.0", + "glob": "^8.0.3", + "json5": "^2.2.3", + "normalize-path": "^3.0.0", + "safe-stable-stringify": "^2.4.3", + "typescript": "~5.4.2" + }, + "bin": { + "ts-json-schema-generator": "bin/ts-json-schema-generator" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "../../packages/theme/node_modules/typescript": { + "version": "5.4.5", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "../../packages/theme/node_modules/use-sync-external-store": { + "version": "1.2.2", + "dev": true, + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "../../packages/theme/node_modules/webidl-conversions": { + "version": "3.0.1", + "dev": true, + "license": "BSD-2-Clause" + }, + "../../packages/theme/node_modules/whatwg-fetch": { + "version": "3.6.20", + "dev": true, + "license": "MIT" + }, + "../../packages/theme/node_modules/whatwg-url": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "../../packages/theme/node_modules/wrappy": { + "version": "1.0.2", + "dev": true, + "license": "ISC" + }, + "../../packages/theme/node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "../../packages/theme/node_modules/zustand": { + "version": "4.5.5", + "dev": true, + "license": "MIT", + "dependencies": { + "use-sync-external-store": "1.2.2" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "@types/react": ">=16.8", + "immer": ">=9.0.6", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + }, "../../packages/ui": { "name": "@notesnook/ui", "version": "2.1.3", @@ -490,6 +36476,924 @@ "react-modal": ">=3" } }, + "../../packages/ui/node_modules/@babel/code-frame": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/generator": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.27.1", + "@babel/types": "^7.27.1", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/parser": { + "version": "7.27.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/ui/node_modules/@babel/runtime": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/template": { + "version": "7.27.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/traverse": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.1", + "@babel/parser": "^7.27.1", + "@babel/template": "^7.27.1", + "@babel/types": "^7.27.1", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@babel/types": { + "version": "7.27.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "../../packages/ui/node_modules/@emotion/babel-plugin": { + "version": "11.13.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@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.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "../../packages/ui/node_modules/@emotion/cache": { + "version": "11.14.0", + "dev": true, + "license": "MIT", + "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" + } + }, + "../../packages/ui/node_modules/@emotion/cache/node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@emotion/hash": { + "version": "0.9.2", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "../../packages/ui/node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { + "version": "0.7.4", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@emotion/memoize": { + "version": "0.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@emotion/react": { + "version": "11.11.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "../../packages/ui/node_modules/@emotion/serialize": { + "version": "1.3.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.2", + "csstype": "^3.0.2" + } + }, + "../../packages/ui/node_modules/@emotion/sheet": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@emotion/unitless": { + "version": "0.10.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "../../packages/ui/node_modules/@emotion/utils": { + "version": "1.4.2", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/ui/node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/ui/node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "../../packages/ui/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "../../packages/ui/node_modules/@mdi/js": { + "version": "7.4.47", + "dev": true, + "license": "Apache-2.0" + }, + "../../packages/ui/node_modules/@notesnook/theme": { + "resolved": "../../packages/theme", + "link": true + }, + "../../packages/ui/node_modules/@styled-system/background": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/border": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/color": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/core": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1" + } + }, + "../../packages/ui/node_modules/@styled-system/css": { + "version": "5.1.5", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@styled-system/flexbox": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/grid": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/layout": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/position": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/shadow": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/should-forward-prop": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@emotion/is-prop-valid": "^0.8.1", + "@emotion/memoize": "^0.7.1", + "styled-system": "^5.1.5" + } + }, + "../../packages/ui/node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { + "version": "0.7.5", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@styled-system/space": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/typography": { + "version": "5.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2" + } + }, + "../../packages/ui/node_modules/@styled-system/variant": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/core": "^5.1.2", + "@styled-system/css": "^5.1.5" + } + }, + "../../packages/ui/node_modules/@theme-ui/components": { + "version": "0.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/color": "^5.1.2", + "@styled-system/should-forward-prop": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@theme-ui/core": "^0.16.1", + "@theme-ui/css": "^0.16.1", + "@types/styled-system": "^5.1.13" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "@theme-ui/theme-provider": "^0.16.1", + "react": ">=18" + } + }, + "../../packages/ui/node_modules/@theme-ui/core": { + "version": "0.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@theme-ui/css": "^0.16.1", + "deepmerge": "^4.2.2" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1", + "react": ">=18" + } + }, + "../../packages/ui/node_modules/@theme-ui/css": { + "version": "0.16.2", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.10" + }, + "peerDependencies": { + "@emotion/react": "^11.11.1" + } + }, + "../../packages/ui/node_modules/@types/parse-json": { + "version": "4.0.2", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@types/prop-types": { + "version": "15.7.14", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/@types/react": { + "version": "18.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "../../packages/ui/node_modules/@types/react-dom": { + "version": "18.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../packages/ui/node_modules/@types/react-modal": { + "version": "3.16.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "../../packages/ui/node_modules/@types/styled-system": { + "version": "5.1.23", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "../../packages/ui/node_modules/babel-plugin-macros": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "../../packages/ui/node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../packages/ui/node_modules/convert-source-map": { + "version": "1.9.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/cosmiconfig": { + "version": "7.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "../../packages/ui/node_modules/csstype": { + "version": "3.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/debug": { + "version": "4.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../packages/ui/node_modules/deepmerge": { + "version": "4.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/ui/node_modules/error-ex": { + "version": "1.3.2", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "../../packages/ui/node_modules/escape-string-regexp": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/ui/node_modules/exenv": { + "version": "1.2.2", + "dev": true, + "license": "BSD-3-Clause" + }, + "../../packages/ui/node_modules/find-root": { + "version": "1.1.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/ui/node_modules/globals": { + "version": "11.12.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/ui/node_modules/hasown": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../packages/ui/node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "../../packages/ui/node_modules/import-fresh": { + "version": "3.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/ui/node_modules/is-arrayish": { + "version": "0.2.1", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/is-core-module": { + "version": "2.16.1", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/ui/node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/jsesc": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/ui/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/lines-and-columns": { + "version": "1.2.4", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/loose-envify": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../packages/ui/node_modules/mac-scrollbar": { + "version": "0.13.6", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/object-assign": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/ui/node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "../../packages/ui/node_modules/parse-json": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../../packages/ui/node_modules/path-parse": { + "version": "1.0.7", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../packages/ui/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../../packages/ui/node_modules/prop-types": { + "version": "15.8.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "../../packages/ui/node_modules/react": { + "version": "18.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/ui/node_modules/react-dom": { + "version": "18.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "../../packages/ui/node_modules/react-is": { + "version": "16.13.1", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/react-modal": { + "version": "3.16.3", + "dev": true, + "license": "MIT", + "dependencies": { + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 || ^19" + } + }, + "../../packages/ui/node_modules/resolve": { + "version": "1.22.10", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/ui/node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../../packages/ui/node_modules/scheduler": { + "version": "0.23.2", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "../../packages/ui/node_modules/source-map": { + "version": "0.5.7", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../packages/ui/node_modules/styled-system": { + "version": "5.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@styled-system/background": "^5.1.2", + "@styled-system/border": "^5.1.5", + "@styled-system/color": "^5.1.2", + "@styled-system/core": "^5.1.2", + "@styled-system/flexbox": "^5.1.2", + "@styled-system/grid": "^5.1.2", + "@styled-system/layout": "^5.1.2", + "@styled-system/position": "^5.1.2", + "@styled-system/shadow": "^5.1.2", + "@styled-system/space": "^5.1.2", + "@styled-system/typography": "^5.1.2", + "@styled-system/variant": "^5.1.5", + "object-assign": "^4.1.1" + } + }, + "../../packages/ui/node_modules/stylis": { + "version": "4.2.0", + "dev": true, + "license": "MIT" + }, + "../../packages/ui/node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../packages/ui/node_modules/warning": { + "version": "4.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "../../packages/ui/node_modules/yaml": { + "version": "1.10.2", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, "../../servers/themes": { "name": "@notesnook/themes-server", "version": "1.0.4", @@ -511,6 +37415,923 @@ "vite-node": "2.1.8" } }, + "../../servers/themes/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "../../servers/themes/node_modules/@notesnook/theme": { + "resolved": "../../packages/theme", + "link": true + }, + "../../servers/themes/node_modules/@orama/orama": { + "version": "1.0.8", + "license": "Apache-2.0", + "engines": { + "node": ">= 16.0.0" + } + }, + "../../servers/themes/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.31.0", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../../servers/themes/node_modules/@trpc/server": { + "version": "10.45.2", + "funding": [ + "https://trpc.io/sponsor" + ], + "license": "MIT" + }, + "../../servers/themes/node_modules/@types/cors": { + "version": "2.8.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../../servers/themes/node_modules/@types/estree": { + "version": "1.0.6", + "dev": true, + "license": "MIT" + }, + "../../servers/themes/node_modules/@types/node": { + "version": "20.4.2", + "license": "MIT" + }, + "../../servers/themes/node_modules/@types/node-fetch": { + "version": "2.6.13", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.4" + } + }, + "../../servers/themes/node_modules/abort-controller": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "../../servers/themes/node_modules/agentkeepalive": { + "version": "4.6.0", + "license": "MIT", + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "../../servers/themes/node_modules/async-mutex": { + "version": "0.5.0", + "license": "MIT", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "../../servers/themes/node_modules/asynckit": { + "version": "0.4.0", + "license": "MIT" + }, + "../../servers/themes/node_modules/available-typed-arrays": { + "version": "1.0.7", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/cac": { + "version": "6.7.14", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../../servers/themes/node_modules/call-bind": { + "version": "1.0.8", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/call-bound": { + "version": "1.0.4", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/cloudflare": { + "version": "5.2.0", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "^18.11.18", + "@types/node-fetch": "^2.6.4", + "abort-controller": "^3.0.0", + "agentkeepalive": "^4.2.1", + "form-data-encoder": "1.7.2", + "formdata-node": "^4.3.2", + "node-fetch": "^2.6.7" + } + }, + "../../servers/themes/node_modules/cloudflare/node_modules/@types/node": { + "version": "18.19.130", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "../../servers/themes/node_modules/combined-stream": { + "version": "1.0.8", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../../servers/themes/node_modules/cors": { + "version": "2.8.5", + "license": "MIT", + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "../../servers/themes/node_modules/debug": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../../servers/themes/node_modules/define-data-property": { + "version": "1.1.4", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/delayed-stream": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../../servers/themes/node_modules/dunder-proto": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/es-define-property": { + "version": "1.0.1", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/es-errors": { + "version": "1.3.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/es-module-lexer": { + "version": "1.6.0", + "dev": true, + "license": "MIT" + }, + "../../servers/themes/node_modules/es-object-atoms": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/es-set-tostringtag": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/esbuild": { + "version": "0.21.5", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "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" + } + }, + "../../servers/themes/node_modules/event-target-shim": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../../servers/themes/node_modules/for-each": { + "version": "0.3.5", + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/form-data": { + "version": "4.0.5", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "../../servers/themes/node_modules/form-data-encoder": { + "version": "1.7.2", + "license": "MIT" + }, + "../../servers/themes/node_modules/formdata-node": { + "version": "4.4.1", + "license": "MIT", + "dependencies": { + "node-domexception": "1.0.0", + "web-streams-polyfill": "4.0.0-beta.3" + }, + "engines": { + "node": ">= 12.20" + } + }, + "../../servers/themes/node_modules/fsevents": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../../servers/themes/node_modules/function-bind": { + "version": "1.1.2", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/get-intrinsic": { + "version": "1.3.0", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/get-proto": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/gopd": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/has-property-descriptors": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/has-symbols": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/has-tostringtag": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/hasown": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/humanize-ms": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + } + }, + "../../servers/themes/node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "../../servers/themes/node_modules/is-arguments": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/is-callable": { + "version": "1.2.7", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/is-generator-function": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/is-typed-array": { + "version": "1.1.15", + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/js-tokens": { + "version": "4.0.0", + "license": "MIT" + }, + "../../servers/themes/node_modules/loose-envify": { + "version": "1.4.0", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "../../servers/themes/node_modules/math-intrinsics": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/mime-db": { + "version": "1.52.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../../servers/themes/node_modules/mime-types": { + "version": "2.1.35", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../../servers/themes/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "../../servers/themes/node_modules/nanoid": { + "version": "3.3.8", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../../servers/themes/node_modules/node-domexception": { + "version": "1.0.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "engines": { + "node": ">=10.5.0" + } + }, + "../../servers/themes/node_modules/node-fetch": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "../../servers/themes/node_modules/object-assign": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../../servers/themes/node_modules/pathe": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "../../servers/themes/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../../servers/themes/node_modules/possible-typed-array-names": { + "version": "1.1.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/postcss": { + "version": "8.5.1", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../../servers/themes/node_modules/react": { + "version": "18.3.1", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../../servers/themes/node_modules/rollup": { + "version": "4.31.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.31.0", + "@rollup/rollup-android-arm64": "4.31.0", + "@rollup/rollup-darwin-arm64": "4.31.0", + "@rollup/rollup-darwin-x64": "4.31.0", + "@rollup/rollup-freebsd-arm64": "4.31.0", + "@rollup/rollup-freebsd-x64": "4.31.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.31.0", + "@rollup/rollup-linux-arm-musleabihf": "4.31.0", + "@rollup/rollup-linux-arm64-gnu": "4.31.0", + "@rollup/rollup-linux-arm64-musl": "4.31.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.31.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.31.0", + "@rollup/rollup-linux-riscv64-gnu": "4.31.0", + "@rollup/rollup-linux-s390x-gnu": "4.31.0", + "@rollup/rollup-linux-x64-gnu": "4.31.0", + "@rollup/rollup-linux-x64-musl": "4.31.0", + "@rollup/rollup-win32-arm64-msvc": "4.31.0", + "@rollup/rollup-win32-ia32-msvc": "4.31.0", + "@rollup/rollup-win32-x64-msvc": "4.31.0", + "fsevents": "~2.3.2" + } + }, + "../../servers/themes/node_modules/set-function-length": { + "version": "1.2.2", + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../../servers/themes/node_modules/source-map-js": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../../servers/themes/node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "../../servers/themes/node_modules/tslib": { + "version": "2.6.0", + "license": "0BSD" + }, + "../../servers/themes/node_modules/undici-types": { + "version": "5.26.5", + "license": "MIT" + }, + "../../servers/themes/node_modules/util": { + "version": "0.12.5", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "../../servers/themes/node_modules/vary": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "../../servers/themes/node_modules/vite": { + "version": "5.4.12", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "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 + } + } + }, + "../../servers/themes/node_modules/vite-node": { + "version": "2.1.8", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.7", + "es-module-lexer": "^1.5.4", + "pathe": "^1.1.2", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../../servers/themes/node_modules/web-streams-polyfill": { + "version": "4.0.0-beta.3", + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "../../servers/themes/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "../../servers/themes/node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "../../servers/themes/node_modules/which-typed-array": { + "version": "1.1.19", + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../../servers/themes/node_modules/zod": { + "version": "3.23.8", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "../desktop": { "name": "@notesnook/desktop", "version": "3.4.5", @@ -555,10 +38376,5385 @@ "dmg-license": "^1.0.11" } }, + "../desktop/node_modules/@babel/runtime": { + "version": "7.29.7", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "../desktop/node_modules/@borewit/text-codec": { + "version": "0.2.2", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "../desktop/node_modules/@canvas/image-data": { + "version": "1.1.0", + "license": "MIT" + }, + "../desktop/node_modules/@electron/asar": { + "version": "3.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "../desktop/node_modules/@electron/asar/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@electron/asar/node_modules/brace-expansion": { + "version": "1.1.15", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../desktop/node_modules/@electron/asar/node_modules/minimatch": { + "version": "3.1.5", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../desktop/node_modules/@electron/fuses": { + "version": "1.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.1", + "fs-extra": "^9.0.1", + "minimist": "^1.2.5" + }, + "bin": { + "electron-fuses": "dist/bin.js" + } + }, + "../desktop/node_modules/@electron/fuses/node_modules/fs-extra": { + "version": "9.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/@electron/fuses/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/@electron/fuses/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/@electron/get": { + "version": "2.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^11.8.5", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "global-agent": "^3.0.0" + } + }, + "../desktop/node_modules/@electron/notarize": { + "version": "2.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.1", + "promise-retry": "^2.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/@electron/notarize/node_modules/fs-extra": { + "version": "9.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/@electron/notarize/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/@electron/notarize/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/@electron/osx-sign": { + "version": "1.3.3", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "compare-version": "^0.1.2", + "debug": "^4.3.4", + "fs-extra": "^10.0.0", + "isbinaryfile": "^4.0.8", + "minimist": "^1.2.6", + "plist": "^3.0.5" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "../desktop/node_modules/@electron/osx-sign/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/@electron/osx-sign/node_modules/isbinaryfile": { + "version": "4.0.10", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "../desktop/node_modules/@electron/osx-sign/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/@electron/osx-sign/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/@electron/rebuild": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@malept/cross-spawn-promise": "^2.0.0", + "debug": "^4.1.1", + "node-abi": "^4.2.0", + "node-api-version": "^0.2.1", + "node-gyp": "^12.2.0", + "read-binary-file-arch": "^1.0.6" + }, + "bin": { + "electron-rebuild": "lib/cli.js" + }, + "engines": { + "node": ">=22.12.0" + } + }, + "../desktop/node_modules/@electron/universal": { + "version": "2.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@electron/asar": "^3.3.1", + "@malept/cross-spawn-promise": "^2.0.0", + "debug": "^4.3.1", + "dir-compare": "^4.2.0", + "fs-extra": "^11.1.1", + "minimatch": "^9.0.3", + "plist": "^3.1.0" + }, + "engines": { + "node": ">=16.4" + } + }, + "../desktop/node_modules/@electron/universal/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@electron/universal/node_modules/brace-expansion": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../desktop/node_modules/@electron/universal/node_modules/fs-extra": { + "version": "11.3.6", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "../desktop/node_modules/@electron/universal/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/@electron/universal/node_modules/minimatch": { + "version": "9.0.9", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../desktop/node_modules/@electron/universal/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/@isaacs/fs-minipass": { + "version": "4.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.4" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "../desktop/node_modules/@jimp/bmp": { + "version": "0.22.12", + "license": "MIT", + "dependencies": { + "@jimp/utils": "^0.22.12", + "bmp-js": "^0.1.0" + }, + "peerDependencies": { + "@jimp/custom": ">=0.3.5" + } + }, + "../desktop/node_modules/@jimp/utils": { + "version": "0.22.12", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.3" + } + }, + "../desktop/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@lingui/core": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.20.13", + "@lingui/message-utils": "^5.1.2", + "unraw": "^3.0.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@lingui/babel-plugin-lingui-macro": "5.1.2", + "babel-plugin-macros": "2 || 3" + }, + "peerDependenciesMeta": { + "@lingui/babel-plugin-lingui-macro": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "../desktop/node_modules/@lingui/message-utils": { + "version": "5.9.5", + "license": "MIT", + "dependencies": { + "@messageformat/parser": "^5.0.0", + "js-sha256": "^0.10.1" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "../desktop/node_modules/@malept/cross-spawn-promise": { + "version": "2.0.0", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "license": "Apache-2.0", + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "../desktop/node_modules/@malept/flatpak-bundler": { + "version": "0.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "tmp-promise": "^3.0.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { + "version": "9.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/@malept/flatpak-bundler/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/@messageformat/parser": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "moo": "^0.5.1" + } + }, + "../desktop/node_modules/@noble/hashes": { + "version": "2.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 20.19.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "../desktop/node_modules/@notesnook/intl": { + "resolved": "../../packages/intl", + "link": true + }, + "../desktop/node_modules/@notesnook/ui": { + "resolved": "../../packages/ui", + "link": true + }, + "../desktop/node_modules/@peculiar/asn1-schema": { + "version": "2.8.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "../desktop/node_modules/@peculiar/json-schema": { + "version": "1.1.12", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "../desktop/node_modules/@peculiar/utils": { + "version": "2.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "../desktop/node_modules/@peculiar/webcrypto": { + "version": "1.7.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/json-schema": "^1.1.12", + "@peculiar/utils": "^2.0.2", + "tslib": "^2.8.1", + "webcrypto-core": "^1.9.2" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "../desktop/node_modules/@playwright/test": { + "version": "1.61.1", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright": "1.61.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.62.2", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "../desktop/node_modules/@sec-ant/readable-stream": { + "version": "0.4.1", + "license": "MIT" + }, + "../desktop/node_modules/@sindresorhus/is": { + "version": "4.6.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "../desktop/node_modules/@sindresorhus/merge-streams": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/@streetwriters/kysely": { + "version": "0.27.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../desktop/node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/@tokenizer/token": { + "version": "0.3.0", + "license": "MIT" + }, + "../desktop/node_modules/@trpc/client": { + "version": "10.45.2", + "funding": [ + "https://trpc.io/sponsor" + ], + "license": "MIT", + "peerDependencies": { + "@trpc/server": "10.45.2" + } + }, + "../desktop/node_modules/@trpc/server": { + "version": "10.45.2", + "funding": [ + "https://trpc.io/sponsor" + ], + "license": "MIT" + }, + "../desktop/node_modules/@types/cacheable-request": { + "version": "6.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "../desktop/node_modules/@types/chai": { + "version": "5.2.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" + } + }, + "../desktop/node_modules/@types/debug": { + "version": "4.1.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "../desktop/node_modules/@types/deep-eql": { + "version": "4.0.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@types/estree": { + "version": "1.0.9", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@types/fs-extra": { + "version": "9.0.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../desktop/node_modules/@types/http-cache-semantics": { + "version": "4.2.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@types/keyv": { + "version": "3.1.4", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../desktop/node_modules/@types/ms": { + "version": "2.1.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@types/node": { + "version": "22.15.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "../desktop/node_modules/@types/plist": { + "version": "3.0.5", + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*", + "xmlbuilder": ">=11.0.1" + } + }, + "../desktop/node_modules/@types/responselike": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "../desktop/node_modules/@types/verror": { + "version": "1.10.11", + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/@types/yargs": { + "version": "17.0.35", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "../desktop/node_modules/@types/yargs-parser": { + "version": "21.0.3", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/@types/yauzl": { + "version": "2.10.3", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "../desktop/node_modules/@vitest/expect": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/spy": "3.2.6", + "@vitest/utils": "3.2.6", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../desktop/node_modules/@vitest/mocker": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "3.2.6", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.17" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "../desktop/node_modules/@vitest/pretty-format": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../desktop/node_modules/@vitest/runner": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "3.2.6", + "pathe": "^2.0.3", + "strip-literal": "^3.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../desktop/node_modules/@vitest/snapshot": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.6", + "magic-string": "^0.30.17", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../desktop/node_modules/@vitest/spy": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^4.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../desktop/node_modules/@vitest/utils": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.6", + "loupe": "^3.1.4", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../desktop/node_modules/@xmldom/xmldom": { + "version": "0.9.10", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=14.6" + } + }, + "../desktop/node_modules/abbrev": { + "version": "4.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, + "../desktop/node_modules/agent-base": { + "version": "7.1.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "../desktop/node_modules/ajv": { + "version": "6.15.0", + "license": "MIT", + "optional": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../desktop/node_modules/ansi-regex": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/ansi-styles": { + "version": "4.3.0", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "../desktop/node_modules/app-builder-lib": { + "version": "26.15.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@electron/asar": "3.4.1", + "@electron/fuses": "^1.8.0", + "@electron/get": "^3.0.0", + "@electron/notarize": "2.5.0", + "@electron/osx-sign": "1.3.3", + "@electron/rebuild": "^4.0.4", + "@electron/universal": "2.0.3", + "@malept/flatpak-bundler": "^0.4.0", + "@noble/hashes": "^2.2.0", + "@peculiar/webcrypto": "^1.7.1", + "@types/fs-extra": "9.0.13", + "ajv": "^8.18.0", + "asn1js": "^3.0.10", + "async-exit-hook": "^2.0.1", + "builder-util": "26.15.3", + "builder-util-runtime": "9.7.0", + "chromium-pickle-js": "^0.2.0", + "ci-info": "4.3.1", + "debug": "^4.3.4", + "dotenv": "^16.4.5", + "dotenv-expand": "^11.0.6", + "ejs": "^3.1.8", + "electron-publish": "26.15.3", + "fs-extra": "^10.1.0", + "hosted-git-info": "^4.1.0", + "isbinaryfile": "^5.0.0", + "jiti": "^2.4.2", + "js-yaml": "^4.1.0", + "json5": "^2.2.3", + "lazy-val": "^1.0.5", + "minimatch": "^10.2.5", + "pkijs": "^3.4.0", + "plist": "3.1.0", + "proper-lockfile": "^4.1.2", + "resedit": "^1.7.0", + "semver": "~7.7.3", + "tar": "^7.5.7", + "temp-file": "^3.4.0", + "tiny-async-pool": "1.3.0", + "unzipper": "^0.12.3", + "which": "^5.0.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "dmg-builder": "26.15.3", + "electron-builder-squirrel-windows": "26.15.3" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/@electron/get": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^11.8.5", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=14" + }, + "optionalDependencies": { + "global-agent": "^3.0.0" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/@electron/get/node_modules/fs-extra": { + "version": "8.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/@electron/get/node_modules/semver": { + "version": "6.3.1", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/@xmldom/xmldom": { + "version": "0.8.13", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/ajv": { + "version": "8.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/ci-info": { + "version": "4.3.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/fs-extra/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/fs-extra/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/app-builder-lib/node_modules/plist": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.8.8", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "../desktop/node_modules/app-builder-lib/node_modules/semver": { + "version": "7.7.4", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" + }, + "../desktop/node_modules/asn1js": { + "version": "3.0.10", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.5", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "../desktop/node_modules/assert-plus": { + "version": "1.0.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "../desktop/node_modules/assertion-error": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/astral-regex": { + "version": "2.0.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/async": { + "version": "3.2.6", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/async-exit-hook": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "../desktop/node_modules/asynckit": { + "version": "0.4.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/at-least-node": { + "version": "1.0.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "../desktop/node_modules/aws4": { + "version": "1.13.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/balanced-match": { + "version": "4.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "../desktop/node_modules/base64-js": { + "version": "1.5.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../desktop/node_modules/better-sqlite3-multiple-ciphers": { + "version": "12.11.1", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "bindings": "^1.5.0", + "prebuild-install": "^7.1.1" + }, + "engines": { + "node": "20.x || 22.x || 23.x || 24.x || 25.x || 26.x" + } + }, + "../desktop/node_modules/bindings": { + "version": "1.5.0", + "license": "MIT", + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "../desktop/node_modules/bl": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "../desktop/node_modules/bluebird": { + "version": "3.7.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/bmp-js": { + "version": "0.1.0", + "license": "MIT" + }, + "../desktop/node_modules/boolean": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/brace-expansion": { + "version": "5.0.7", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "../desktop/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "../desktop/node_modules/buffer-crc32": { + "version": "0.2.13", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + } + }, + "../desktop/node_modules/buffer-from": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/builder-util": { + "version": "26.15.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.6", + "builder-util-runtime": "9.7.0", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.6", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "js-yaml": "^4.1.0", + "sanitize-filename": "^1.6.3", + "source-map-support": "^0.5.19", + "stat-mode": "^1.0.0", + "temp-file": "^3.4.0", + "tiny-async-pool": "1.3.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "../desktop/node_modules/builder-util-runtime": { + "version": "9.7.0", + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "sax": "^1.2.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "../desktop/node_modules/builder-util/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/builder-util/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/builder-util/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/bytestreamjs": { + "version": "2.0.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=6.0.0" + } + }, + "../desktop/node_modules/cac": { + "version": "6.7.14", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/cacheable-lookup": { + "version": "5.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.6.0" + } + }, + "../desktop/node_modules/cacheable-request": { + "version": "7.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/chai": { + "version": "5.3.3", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "../desktop/node_modules/check-error": { + "version": "2.1.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "../desktop/node_modules/chokidar": { + "version": "4.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "../desktop/node_modules/chownr": { + "version": "3.0.0", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/chromium-pickle-js": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/ci-info": { + "version": "4.4.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/cli-truncate": { + "version": "2.1.0", + "license": "MIT", + "optional": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/cliui": { + "version": "8.0.1", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/clone-response": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "../desktop/node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "../desktop/node_modules/combined-stream": { + "version": "1.0.8", + "dev": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "../desktop/node_modules/commander": { + "version": "5.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../desktop/node_modules/compare-version": { + "version": "0.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/core-util-is": { + "version": "1.0.2", + "devOptional": true, + "license": "MIT" + }, + "../desktop/node_modules/crc": { + "version": "3.8.0", + "license": "MIT", + "optional": true, + "dependencies": { + "buffer": "^5.1.0" + } + }, + "../desktop/node_modules/cross-spawn": { + "version": "7.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "../desktop/node_modules/cross-spawn/node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../desktop/node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "../desktop/node_modules/debug": { + "version": "4.4.3", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "../desktop/node_modules/decode-bmp": { + "version": "0.2.1", + "license": "MIT", + "dependencies": { + "@canvas/image-data": "^1.0.0", + "to-data-view": "^1.1.0" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "../desktop/node_modules/decode-bmp/node_modules/to-data-view": { + "version": "1.1.0", + "license": "MIT" + }, + "../desktop/node_modules/decode-ico": { + "version": "0.4.1", + "license": "MIT", + "dependencies": { + "@canvas/image-data": "^1.0.0", + "decode-bmp": "^0.2.0", + "to-data-view": "^1.1.0" + }, + "engines": { + "node": ">=8.6" + } + }, + "../desktop/node_modules/decode-ico/node_modules/to-data-view": { + "version": "1.1.0", + "license": "MIT" + }, + "../desktop/node_modules/decompress-response": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/deep-eql": { + "version": "5.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../desktop/node_modules/deep-extend": { + "version": "0.6.0", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "../desktop/node_modules/defer-to-connect": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/define-data-property": { + "version": "1.1.4", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/define-properties": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/delayed-stream": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../desktop/node_modules/detect-libc": { + "version": "2.1.2", + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/detect-node": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/dir-compare": { + "version": "4.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "minimatch": "^3.0.5", + "p-limit": "^3.1.0 " + } + }, + "../desktop/node_modules/dir-compare/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/dir-compare/node_modules/brace-expansion": { + "version": "1.1.15", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../desktop/node_modules/dir-compare/node_modules/minimatch": { + "version": "3.1.5", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../desktop/node_modules/dmg-builder": { + "version": "26.15.3", + "dev": true, + "license": "MIT", + "dependencies": { + "app-builder-lib": "26.15.3", + "builder-util": "26.15.3", + "fs-extra": "^10.1.0", + "js-yaml": "^4.1.0" + } + }, + "../desktop/node_modules/dmg-builder/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/dmg-builder/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/dmg-builder/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/dmg-license": { + "version": "1.0.11", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "@types/plist": "^3.0.1", + "@types/verror": "^1.10.3", + "ajv": "^6.10.0", + "crc": "^3.8.0", + "iconv-corefoundation": "^1.1.7", + "plist": "^3.0.4", + "smart-buffer": "^4.0.2", + "verror": "^1.10.0" + }, + "bin": { + "dmg-license": "bin/dmg-license.js" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/dotenv": { + "version": "16.6.1", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "../desktop/node_modules/dotenv-expand": { + "version": "11.0.7", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dotenv": "^16.4.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "../desktop/node_modules/dunder-proto": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/duplexer2": { + "version": "0.1.4", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, + "../desktop/node_modules/duplexer2/node_modules/readable-stream": { + "version": "2.3.8", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "../desktop/node_modules/duplexer2/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/duplexer2/node_modules/string_decoder": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "../desktop/node_modules/ejs": { + "version": "3.1.10", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/electron": { + "version": "37.10.3", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "@electron/get": "^2.0.0", + "@types/node": "^22.7.7", + "extract-zip": "^2.0.1" + }, + "bin": { + "electron": "cli.js" + }, + "engines": { + "node": ">= 12.20.55" + } + }, + "../desktop/node_modules/electron-builder": { + "version": "26.15.3", + "dev": true, + "license": "MIT", + "dependencies": { + "app-builder-lib": "26.15.3", + "builder-util": "26.15.3", + "builder-util-runtime": "9.7.0", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "dmg-builder": "26.15.3", + "fs-extra": "^10.1.0", + "lazy-val": "^1.0.5", + "simple-update-notifier": "2.0.0", + "yargs": "^17.6.2" + }, + "bin": { + "electron-builder": "cli.js", + "install-app-deps": "install-app-deps.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "../desktop/node_modules/electron-builder/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/electron-builder/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/electron-builder/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/electron-publish": { + "version": "26.15.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/fs-extra": "^9.0.11", + "aws4": "^1.13.2", + "builder-util": "26.15.3", + "builder-util-runtime": "9.7.0", + "chalk": "^4.1.2", + "form-data": "^4.0.5", + "fs-extra": "^10.1.0", + "lazy-val": "^1.0.5", + "mime": "^2.5.2" + } + }, + "../desktop/node_modules/electron-publish/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/electron-publish/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/electron-publish/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/electron-trpc": { + "version": "0.7.1", + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "peerDependencies": { + "@trpc/client": ">10.0.0", + "@trpc/server": ">10.0.0", + "electron": ">19.0.0" + } + }, + "../desktop/node_modules/electron-updater": { + "version": "6.8.9", + "license": "MIT", + "dependencies": { + "builder-util-runtime": "9.7.0", + "fs-extra": "^10.1.0", + "js-yaml": "^4.1.0", + "lazy-val": "^1.0.5", + "lodash.escaperegexp": "^4.1.2", + "lodash.isequal": "^4.5.0", + "semver": "~7.7.3", + "tiny-typed-emitter": "^2.1.0" + } + }, + "../desktop/node_modules/electron-updater/node_modules/fs-extra": { + "version": "10.1.0", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/electron-updater/node_modules/jsonfile": { + "version": "6.2.1", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/electron-updater/node_modules/semver": { + "version": "7.7.4", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/electron-updater/node_modules/universalify": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "../desktop/node_modules/end-of-stream": { + "version": "1.4.5", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "../desktop/node_modules/env-paths": { + "version": "2.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../desktop/node_modules/err-code": { + "version": "2.0.3", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/es-define-property": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/es-errors": { + "version": "1.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/es-module-lexer": { + "version": "1.7.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/es-object-atoms": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/es-set-tostringtag": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/es6-error": { + "version": "4.1.1", + "dev": true, + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/esbuild": { + "version": "0.21.5", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "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" + } + }, + "../desktop/node_modules/escalade": { + "version": "3.2.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "../desktop/node_modules/escape-string-regexp": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/estree-walker": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "../desktop/node_modules/execa": { + "version": "9.6.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.6", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.1", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.2.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.1.1" + }, + "engines": { + "node": "^18.19.0 || >=20.5.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "../desktop/node_modules/execa/node_modules/get-stream": { + "version": "9.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/expand-template": { + "version": "2.0.3", + "license": "(MIT OR WTFPL)", + "engines": { + "node": ">=6" + } + }, + "../desktop/node_modules/expect-type": { + "version": "1.4.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.0" + } + }, + "../desktop/node_modules/exponential-backoff": { + "version": "3.1.3", + "dev": true, + "license": "Apache-2.0" + }, + "../desktop/node_modules/extract-zip": { + "version": "2.0.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "../desktop/node_modules/extsprintf": { + "version": "1.4.1", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/fast-deep-equal": { + "version": "3.1.3", + "devOptional": true, + "license": "MIT" + }, + "../desktop/node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/fast-uri": { + "version": "3.1.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "../desktop/node_modules/fd-slicer": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pend": "~1.2.0" + } + }, + "../desktop/node_modules/fdir": { + "version": "6.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "../desktop/node_modules/figures": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/file-type": { + "version": "19.6.0", + "license": "MIT", + "dependencies": { + "get-stream": "^9.0.1", + "strtok3": "^9.0.1", + "token-types": "^6.0.0", + "uint8array-extras": "^1.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sindresorhus/file-type?sponsor=1" + } + }, + "../desktop/node_modules/file-type/node_modules/get-stream": { + "version": "9.0.1", + "license": "MIT", + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/file-uri-to-path": { + "version": "1.0.0", + "license": "MIT" + }, + "../desktop/node_modules/filelist": { + "version": "1.0.6", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "../desktop/node_modules/filelist/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/filelist/node_modules/brace-expansion": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "../desktop/node_modules/filelist/node_modules/minimatch": { + "version": "5.1.9", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/fkill": { + "version": "10.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^9.6.0", + "pid-port": "^2.0.0", + "process-exists": "^5.0.0", + "ps-list": "^9.0.0", + "taskkill": "^5.0.0" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/form-data": { + "version": "4.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.4", + "mime-types": "^2.1.35" + }, + "engines": { + "node": ">= 6" + } + }, + "../desktop/node_modules/fs-constants": { + "version": "1.0.0", + "license": "MIT" + }, + "../desktop/node_modules/fs-extra": { + "version": "8.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "../desktop/node_modules/fs.realpath": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "../desktop/node_modules/fsevents": { + "version": "2.3.2", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../desktop/node_modules/function-bind": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/get-caller-file": { + "version": "2.0.5", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "../desktop/node_modules/get-intrinsic": { + "version": "1.3.0", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/get-proto": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/get-stream": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/github-from-package": { + "version": "0.0.0", + "license": "MIT" + }, + "../desktop/node_modules/glob": { + "version": "7.2.3", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../desktop/node_modules/glob/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.15", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "../desktop/node_modules/glob/node_modules/minimatch": { + "version": "3.1.5", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "../desktop/node_modules/global-agent": { + "version": "3.0.0", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "../desktop/node_modules/global-agent/node_modules/semver": { + "version": "7.8.5", + "dev": true, + "license": "ISC", + "optional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/globalthis": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/gopd": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/got": { + "version": "11.8.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "../desktop/node_modules/graceful-fs": { + "version": "4.2.11", + "license": "ISC" + }, + "../desktop/node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/has-property-descriptors": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/has-symbols": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/has-tostringtag": { + "version": "1.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/hasown": { + "version": "2.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/hosted-git-info": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/http-cache-semantics": { + "version": "4.2.0", + "dev": true, + "license": "BSD-2-Clause" + }, + "../desktop/node_modules/http-proxy-agent": { + "version": "7.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "../desktop/node_modules/http2-wrapper": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "../desktop/node_modules/https-proxy-agent": { + "version": "7.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "../desktop/node_modules/human-signals": { + "version": "8.0.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "../desktop/node_modules/icojs": { + "version": "0.19.5", + "license": "MIT", + "dependencies": { + "@jimp/bmp": "^0.22.12", + "decode-ico": "^0.4.1", + "file-type": "^19.6.0", + "jpeg-js": "^0.4.4", + "pngjs": "^7.0.0", + "to-data-view": "^2.0.0" + }, + "engines": { + "node": ">=18.17.1" + } + }, + "../desktop/node_modules/iconv-corefoundation": { + "version": "1.1.7", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "cli-truncate": "^2.1.0", + "node-addon-api": "^1.6.3" + }, + "engines": { + "node": "^8.11.2 || >=10" + } + }, + "../desktop/node_modules/ieee754": { + "version": "1.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "../desktop/node_modules/inflight": { + "version": "1.0.6", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "../desktop/node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "../desktop/node_modules/ini": { + "version": "1.3.8", + "license": "ISC" + }, + "../desktop/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/is-plain-obj": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/is-stream": { + "version": "4.0.1", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/is-unicode-supported": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/isarray": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/isbinaryfile": { + "version": "5.0.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 18.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" + } + }, + "../desktop/node_modules/isexe": { + "version": "3.1.5", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/jake": { + "version": "10.9.4", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.6", + "filelist": "^1.0.4", + "picocolors": "^1.1.1" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/jiti": { + "version": "2.7.0", + "dev": true, + "license": "MIT", + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "../desktop/node_modules/jpeg-js": { + "version": "0.4.4", + "license": "BSD-3-Clause" + }, + "../desktop/node_modules/js-sha256": { + "version": "0.10.1", + "license": "MIT" + }, + "../desktop/node_modules/js-tokens": { + "version": "9.0.1", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/js-yaml": { + "version": "4.3.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/puzrin" + }, + { + "type": "github", + "url": "https://github.com/sponsors/nodeca" + } + ], + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "../desktop/node_modules/json-buffer": { + "version": "3.0.1", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/json-schema-traverse": { + "version": "0.4.1", + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/json-stringify-safe": { + "version": "5.0.1", + "dev": true, + "license": "ISC", + "optional": true + }, + "../desktop/node_modules/json5": { + "version": "2.2.3", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "../desktop/node_modules/jsonfile": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/keyv": { + "version": "4.5.4", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "../desktop/node_modules/lazy-val": { + "version": "1.0.5", + "license": "MIT" + }, + "../desktop/node_modules/lodash": { + "version": "4.18.1", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/lodash.escaperegexp": { + "version": "4.1.2", + "license": "MIT" + }, + "../desktop/node_modules/lodash.isequal": { + "version": "4.5.0", + "license": "MIT" + }, + "../desktop/node_modules/loupe": { + "version": "3.2.1", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/lowercase-keys": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/magic-string": { + "version": "0.30.21", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "../desktop/node_modules/matcher": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/math-intrinsics": { + "version": "1.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/merge-stream": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/mime": { + "version": "2.6.0", + "dev": true, + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "../desktop/node_modules/mime-db": { + "version": "1.52.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "../desktop/node_modules/mime-types": { + "version": "2.1.35", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "../desktop/node_modules/mimic-fn": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/mimic-response": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "../desktop/node_modules/minimatch": { + "version": "10.2.5", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.5" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../desktop/node_modules/minimist": { + "version": "1.2.8", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "../desktop/node_modules/minipass": { + "version": "7.1.3", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "../desktop/node_modules/minizlib": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "minipass": "^7.1.2" + }, + "engines": { + "node": ">= 18" + } + }, + "../desktop/node_modules/mkdirp-classic": { + "version": "0.5.3", + "license": "MIT" + }, + "../desktop/node_modules/moo": { + "version": "0.5.3", + "license": "BSD-3-Clause" + }, + "../desktop/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "../desktop/node_modules/nanoid": { + "version": "3.3.15", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "../desktop/node_modules/napi-build-utils": { + "version": "2.0.0", + "license": "MIT" + }, + "../desktop/node_modules/node-abi": { + "version": "4.33.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.6.3" + }, + "engines": { + "node": ">=22.12.0" + } + }, + "../desktop/node_modules/node-abi/node_modules/semver": { + "version": "7.8.5", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/node-addon-api": { + "version": "1.7.2", + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/node-api-version": { + "version": "0.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + } + }, + "../desktop/node_modules/node-api-version/node_modules/semver": { + "version": "7.8.5", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/node-gyp": { + "version": "12.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "graceful-fs": "^4.2.6", + "nopt": "^9.0.0", + "proc-log": "^6.0.0", + "semver": "^7.3.5", + "tar": "^7.5.4", + "tinyglobby": "^0.2.12", + "undici": "^6.25.0", + "which": "^6.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, + "../desktop/node_modules/node-gyp-build": { + "version": "4.8.4", + "dev": true, + "license": "MIT", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "../desktop/node_modules/node-gyp/node_modules/isexe": { + "version": "4.0.0", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=20" + } + }, + "../desktop/node_modules/node-gyp/node_modules/semver": { + "version": "7.8.5", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/node-gyp/node_modules/undici": { + "version": "6.27.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "../desktop/node_modules/node-gyp/node_modules/which": { + "version": "6.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^4.0.0" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, + "../desktop/node_modules/node-int64": { + "version": "0.4.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/nopt": { + "version": "9.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "abbrev": "^4.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, + "../desktop/node_modules/normalize-url": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/npm-run-path": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/object-keys": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 0.4" + } + }, + "../desktop/node_modules/once": { + "version": "1.4.0", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "../desktop/node_modules/onetime": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/p-cancelable": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/parse-ms": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/path-is-absolute": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/path-key": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/pathe": { + "version": "2.0.3", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/pathval": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "../desktop/node_modules/pe-library": { + "version": "0.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/jet2jet" + } + }, + "../desktop/node_modules/peek-readable": { + "version": "5.4.2", + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "../desktop/node_modules/pend": { + "version": "1.2.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/picocolors": { + "version": "1.1.1", + "dev": true, + "license": "ISC" + }, + "../desktop/node_modules/picomatch": { + "version": "4.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "../desktop/node_modules/pid-port": { + "version": "2.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^9.6.0" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/pkijs": { + "version": "3.4.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@noble/hashes": "1.4.0", + "asn1js": "^3.0.6", + "bytestreamjs": "^2.0.1", + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.3", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "../desktop/node_modules/pkijs/node_modules/@noble/hashes": { + "version": "1.4.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "../desktop/node_modules/playwright": { + "version": "1.61.1", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright-core": "1.61.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "../desktop/node_modules/playwright-core": { + "version": "1.61.1", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/plist": { + "version": "3.1.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@xmldom/xmldom": "^0.9.10", + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" + }, + "engines": { + "node": ">=10.4.0" + } + }, + "../desktop/node_modules/pngjs": { + "version": "7.0.0", + "license": "MIT", + "engines": { + "node": ">=14.19.0" + } + }, + "../desktop/node_modules/postcss": { + "version": "8.5.16", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.12", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "../desktop/node_modules/prebuild-install": { + "version": "7.1.3", + "license": "MIT", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^2.0.0", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/prebuild-install/node_modules/node-abi": { + "version": "3.94.0", + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/prebuild-install/node_modules/semver": { + "version": "7.8.5", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/prebuildify": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } + }, + "../desktop/node_modules/prebuildify/node_modules/node-abi": { + "version": "3.94.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/prebuildify/node_modules/npm-run-path": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/prebuildify/node_modules/semver": { + "version": "7.8.5", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/pretty-ms": { + "version": "9.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parse-ms": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/proc-log": { + "version": "6.1.0", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, + "../desktop/node_modules/process-exists": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "ps-list": "^8.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/process-exists/node_modules/ps-list": { + "version": "8.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/process-nextick-args": { + "version": "2.0.1", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/progress": { + "version": "2.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "../desktop/node_modules/promise-retry": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/proper-lockfile": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "../desktop/node_modules/proper-lockfile/node_modules/signal-exit": { + "version": "3.0.7", + "dev": true, + "license": "ISC" + }, + "../desktop/node_modules/ps-list": { + "version": "9.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/pump": { + "version": "3.0.4", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "../desktop/node_modules/punycode": { + "version": "2.3.1", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "../desktop/node_modules/pvtsutils": { + "version": "1.3.6", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "../desktop/node_modules/pvutils": { + "version": "1.1.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16.0.0" + } + }, + "../desktop/node_modules/quick-lru": { + "version": "5.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/rc": { + "version": "1.2.8", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "../desktop/node_modules/read-binary-file-arch": { + "version": "1.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "bin": { + "read-binary-file-arch": "cli.js" + } + }, + "../desktop/node_modules/readable-stream": { + "version": "3.6.2", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "../desktop/node_modules/readdirp": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "../desktop/node_modules/regenerator-runtime": { + "version": "0.13.11", + "license": "MIT" + }, + "../desktop/node_modules/require-directory": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/require-from-string": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/resedit": { + "version": "1.7.2", + "dev": true, + "license": "MIT", + "dependencies": { + "pe-library": "^0.4.1" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/jet2jet" + } + }, + "../desktop/node_modules/resolve-alpn": { + "version": "1.2.1", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/responselike": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "lowercase-keys": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/retry": { + "version": "0.12.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "../desktop/node_modules/roarr": { + "version": "2.15.4", + "dev": true, + "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "engines": { + "node": ">=8.0" + } + }, + "../desktop/node_modules/rollup": { + "version": "4.62.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.9" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.62.2", + "@rollup/rollup-android-arm64": "4.62.2", + "@rollup/rollup-darwin-arm64": "4.62.2", + "@rollup/rollup-darwin-x64": "4.62.2", + "@rollup/rollup-freebsd-arm64": "4.62.2", + "@rollup/rollup-freebsd-x64": "4.62.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.62.2", + "@rollup/rollup-linux-arm-musleabihf": "4.62.2", + "@rollup/rollup-linux-arm64-gnu": "4.62.2", + "@rollup/rollup-linux-arm64-musl": "4.62.2", + "@rollup/rollup-linux-loong64-gnu": "4.62.2", + "@rollup/rollup-linux-loong64-musl": "4.62.2", + "@rollup/rollup-linux-ppc64-gnu": "4.62.2", + "@rollup/rollup-linux-ppc64-musl": "4.62.2", + "@rollup/rollup-linux-riscv64-gnu": "4.62.2", + "@rollup/rollup-linux-riscv64-musl": "4.62.2", + "@rollup/rollup-linux-s390x-gnu": "4.62.2", + "@rollup/rollup-linux-x64-gnu": "4.62.2", + "@rollup/rollup-linux-x64-musl": "4.62.2", + "@rollup/rollup-openbsd-x64": "4.62.2", + "@rollup/rollup-openharmony-arm64": "4.62.2", + "@rollup/rollup-win32-arm64-msvc": "4.62.2", + "@rollup/rollup-win32-ia32-msvc": "4.62.2", + "@rollup/rollup-win32-x64-gnu": "4.62.2", + "@rollup/rollup-win32-x64-msvc": "4.62.2", + "fsevents": "~2.3.2" + } + }, + "../desktop/node_modules/rxjs": { + "version": "7.8.2", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "../desktop/node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../desktop/node_modules/sanitize-filename": { + "version": "1.6.4", + "dev": true, + "license": "WTFPL OR ISC", + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, + "../desktop/node_modules/sax": { + "version": "1.6.0", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=11.0.0" + } + }, + "../desktop/node_modules/semver": { + "version": "6.3.1", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "../desktop/node_modules/semver-compare": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "optional": true + }, + "../desktop/node_modules/serialize-error": { + "version": "7.0.1", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/shebang-regex": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/siginfo": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "../desktop/node_modules/signal-exit": { + "version": "4.1.0", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "../desktop/node_modules/simple-concat": { + "version": "1.0.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "../desktop/node_modules/simple-get": { + "version": "4.0.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "../desktop/node_modules/simple-update-notifier": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/simple-update-notifier/node_modules/semver": { + "version": "7.8.5", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/slice-ansi": { + "version": "3.0.0", + "license": "MIT", + "optional": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/slugify": { + "version": "1.6.6", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "../desktop/node_modules/smart-buffer": { + "version": "4.2.0", + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "../desktop/node_modules/source-map": { + "version": "0.6.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/source-map-js": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/source-map-support": { + "version": "0.5.21", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "../desktop/node_modules/sprintf-js": { + "version": "1.1.3", + "dev": true, + "license": "BSD-3-Clause", + "optional": true + }, + "../desktop/node_modules/sqlite-better-trigram": { + "version": "0.0.5", + "license": "Public Domain", + "optionalDependencies": { + "sqlite-better-trigram-darwin-arm64": "0.0.5", + "sqlite-better-trigram-darwin-x64": "0.0.5", + "sqlite-better-trigram-linux-arm64": "0.0.5", + "sqlite-better-trigram-linux-x64": "0.0.5", + "sqlite-better-trigram-windows-arm64": "0.0.5", + "sqlite-better-trigram-windows-x64": "0.0.5" + } + }, + "../desktop/node_modules/sqlite-better-trigram-darwin-arm64": { + "version": "0.0.5", + "cpu": [ + "arm64" + ], + "license": "Public Domain", + "optional": true, + "os": [ + "darwin" + ] + }, + "../desktop/node_modules/sqlite3-fts5-html": { + "version": "0.0.6", + "license": "Public Domain", + "optionalDependencies": { + "sqlite3-fts5-html-darwin-arm64": "0.0.6", + "sqlite3-fts5-html-darwin-x64": "0.0.6", + "sqlite3-fts5-html-linux-arm64": "0.0.6", + "sqlite3-fts5-html-linux-x64": "0.0.6", + "sqlite3-fts5-html-windows-arm64": "0.0.6", + "sqlite3-fts5-html-windows-x64": "0.0.6" + } + }, + "../desktop/node_modules/sqlite3-fts5-html-darwin-arm64": { + "version": "0.0.6", + "cpu": [ + "arm64" + ], + "license": "Public Domain", + "optional": true, + "os": [ + "darwin" + ] + }, + "../desktop/node_modules/stackback": { + "version": "0.0.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/stat-mode": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "../desktop/node_modules/std-env": { + "version": "3.10.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/string_decoder": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "../desktop/node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/strip-final-newline": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/strip-json-comments": { + "version": "2.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "../desktop/node_modules/strip-literal": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^9.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "../desktop/node_modules/strtok3": { + "version": "9.1.1", + "license": "MIT", + "dependencies": { + "@tokenizer/token": "^0.3.0", + "peek-readable": "^5.3.1" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "../desktop/node_modules/sumchecker": { + "version": "3.0.1", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, + "../desktop/node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/tar": { + "version": "7.5.19", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.1.0", + "yallist": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/tar-fs": { + "version": "2.1.5", + "license": "MIT", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "../desktop/node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "license": "ISC" + }, + "../desktop/node_modules/tar-stream": { + "version": "2.2.0", + "license": "MIT", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "../desktop/node_modules/tar/node_modules/yallist": { + "version": "5.0.0", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/taskkill": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^6.1.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/taskkill/node_modules/execa": { + "version": "6.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "../desktop/node_modules/taskkill/node_modules/get-stream": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/taskkill/node_modules/human-signals": { + "version": "3.0.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.20.0" + } + }, + "../desktop/node_modules/taskkill/node_modules/is-stream": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/taskkill/node_modules/npm-run-path": { + "version": "5.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/taskkill/node_modules/path-key": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/taskkill/node_modules/signal-exit": { + "version": "3.0.7", + "dev": true, + "license": "ISC" + }, + "../desktop/node_modules/taskkill/node_modules/strip-final-newline": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/temp-file": { + "version": "3.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "async-exit-hook": "^2.0.1", + "fs-extra": "^10.0.0" + } + }, + "../desktop/node_modules/temp-file/node_modules/fs-extra": { + "version": "10.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/temp-file/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/temp-file/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/tiny-async-pool": { + "version": "1.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^5.5.0" + } + }, + "../desktop/node_modules/tiny-async-pool/node_modules/semver": { + "version": "5.7.2", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "../desktop/node_modules/tiny-typed-emitter": { + "version": "2.1.0", + "license": "MIT" + }, + "../desktop/node_modules/tinybench": { + "version": "2.9.0", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/tinyexec": { + "version": "0.3.2", + "dev": true, + "license": "MIT" + }, + "../desktop/node_modules/tinyglobby": { + "version": "0.2.17", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "../desktop/node_modules/tinypool": { + "version": "1.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "../desktop/node_modules/tinyrainbow": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../desktop/node_modules/tinyspy": { + "version": "4.0.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "../desktop/node_modules/tmp": { + "version": "0.2.7", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.14" + } + }, + "../desktop/node_modules/tmp-promise": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "tmp": "^0.2.0" + } + }, + "../desktop/node_modules/to-data-view": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "../desktop/node_modules/token-types": { + "version": "6.1.2", + "license": "MIT", + "dependencies": { + "@borewit/text-codec": "^0.2.1", + "@tokenizer/token": "^0.3.0", + "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "../desktop/node_modules/tree-kill": { + "version": "1.2.2", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "../desktop/node_modules/truncate-utf8-bytes": { + "version": "1.0.2", + "dev": true, + "license": "WTFPL", + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, + "../desktop/node_modules/tslib": { + "version": "2.8.1", + "devOptional": true, + "license": "0BSD" + }, + "../desktop/node_modules/tunnel-agent": { + "version": "0.6.0", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "../desktop/node_modules/type-fest": { + "version": "0.13.1", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/typed-emitter": { + "version": "2.1.0", + "license": "MIT", + "optionalDependencies": { + "rxjs": "*" + } + }, + "../desktop/node_modules/uint8array-extras": { + "version": "1.5.0", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/undici": { + "version": "7.28.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.18.1" + } + }, + "../desktop/node_modules/undici-types": { + "version": "6.21.0", + "devOptional": true, + "license": "MIT" + }, + "../desktop/node_modules/unicorn-magic": { + "version": "0.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/universalify": { + "version": "0.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "../desktop/node_modules/unraw": { + "version": "3.0.0", + "license": "MIT" + }, + "../desktop/node_modules/unzipper": { + "version": "0.12.5", + "dev": true, + "license": "MIT", + "dependencies": { + "bluebird": "~3.7.2", + "duplexer2": "~0.1.4", + "fs-extra": "11.3.1", + "graceful-fs": "^4.2.2", + "node-int64": "^0.4.0" + } + }, + "../desktop/node_modules/unzipper/node_modules/fs-extra": { + "version": "11.3.1", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "../desktop/node_modules/unzipper/node_modules/jsonfile": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "../desktop/node_modules/unzipper/node_modules/universalify": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "../desktop/node_modules/uri-js": { + "version": "4.4.1", + "license": "BSD-2-Clause", + "optional": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "../desktop/node_modules/utf8-byte-length": { + "version": "1.0.5", + "dev": true, + "license": "(WTFPL OR MIT)" + }, + "../desktop/node_modules/util-deprecate": { + "version": "1.0.2", + "license": "MIT" + }, + "../desktop/node_modules/verror": { + "version": "1.10.1", + "license": "MIT", + "optional": true, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "../desktop/node_modules/vite": { + "version": "7.3.6", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.27.0 || ^0.28.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "../desktop/node_modules/vite-node": { + "version": "3.2.4", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.4.1", + "es-module-lexer": "^1.7.0", + "pathe": "^2.0.3", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "../desktop/node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.28.1", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "../desktop/node_modules/vite/node_modules/esbuild": { + "version": "0.28.1", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.28.1", + "@esbuild/android-arm": "0.28.1", + "@esbuild/android-arm64": "0.28.1", + "@esbuild/android-x64": "0.28.1", + "@esbuild/darwin-arm64": "0.28.1", + "@esbuild/darwin-x64": "0.28.1", + "@esbuild/freebsd-arm64": "0.28.1", + "@esbuild/freebsd-x64": "0.28.1", + "@esbuild/linux-arm": "0.28.1", + "@esbuild/linux-arm64": "0.28.1", + "@esbuild/linux-ia32": "0.28.1", + "@esbuild/linux-loong64": "0.28.1", + "@esbuild/linux-mips64el": "0.28.1", + "@esbuild/linux-ppc64": "0.28.1", + "@esbuild/linux-riscv64": "0.28.1", + "@esbuild/linux-s390x": "0.28.1", + "@esbuild/linux-x64": "0.28.1", + "@esbuild/netbsd-arm64": "0.28.1", + "@esbuild/netbsd-x64": "0.28.1", + "@esbuild/openbsd-arm64": "0.28.1", + "@esbuild/openbsd-x64": "0.28.1", + "@esbuild/openharmony-arm64": "0.28.1", + "@esbuild/sunos-x64": "0.28.1", + "@esbuild/win32-arm64": "0.28.1", + "@esbuild/win32-ia32": "0.28.1", + "@esbuild/win32-x64": "0.28.1" + } + }, + "../desktop/node_modules/vite/node_modules/fsevents": { + "version": "2.3.3", + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "../desktop/node_modules/vitest": { + "version": "3.2.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/expect": "3.2.6", + "@vitest/mocker": "3.2.6", + "@vitest/pretty-format": "^3.2.6", + "@vitest/runner": "3.2.6", + "@vitest/snapshot": "3.2.6", + "@vitest/spy": "3.2.6", + "@vitest/utils": "3.2.6", + "chai": "^5.2.0", + "debug": "^4.4.1", + "expect-type": "^1.2.1", + "magic-string": "^0.30.17", + "pathe": "^2.0.3", + "picomatch": "^4.0.2", + "std-env": "^3.9.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.2", + "tinyglobby": "^0.2.14", + "tinypool": "^1.1.1", + "tinyrainbow": "^2.0.0", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", + "vite-node": "3.2.4", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/debug": "^4.1.12", + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "@vitest/browser": "3.2.6", + "@vitest/ui": "3.2.6", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/debug": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "../desktop/node_modules/webcrypto-core": { + "version": "1.9.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/json-schema": "^1.1.12", + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "../desktop/node_modules/which": { + "version": "5.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "../desktop/node_modules/why-is-node-running": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "../desktop/node_modules/wrap-ansi": { + "version": "7.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "../desktop/node_modules/wrappy": { + "version": "1.0.2", + "license": "ISC" + }, + "../desktop/node_modules/xmlbuilder": { + "version": "15.1.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8.0" + } + }, + "../desktop/node_modules/y18n": { + "version": "5.0.8", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "../desktop/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "../desktop/node_modules/yargs": { + "version": "17.7.3", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/yargs-parser": { + "version": "21.1.1", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "../desktop/node_modules/yauzl": { + "version": "2.10.0", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "../desktop/node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/yoctocolors": { + "version": "2.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "../desktop/node_modules/zod": { + "version": "3.24.3", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "node_modules/@ampproject/remapping": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -571,8 +43767,6 @@ }, "node_modules/@babel/code-frame": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", - "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", @@ -585,8 +43779,6 @@ }, "node_modules/@babel/compat-data": { "version": "7.27.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.5.tgz", - "integrity": "sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -594,8 +43786,6 @@ }, "node_modules/@babel/core": { "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz", - "integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==", "dev": true, "license": "MIT", "dependencies": { @@ -625,8 +43815,6 @@ }, "node_modules/@babel/generator": { "version": "7.27.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz", - "integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==", "license": "MIT", "dependencies": { "@babel/parser": "^7.27.5", @@ -641,8 +43829,6 @@ }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.27.3", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", - "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dev": true, "license": "MIT", "dependencies": { @@ -654,8 +43840,6 @@ }, "node_modules/@babel/helper-compilation-targets": { "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", - "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", "license": "MIT", "dependencies": { "@babel/compat-data": "^7.27.2", @@ -670,8 +43854,6 @@ }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz", - "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==", "dev": true, "license": "MIT", "dependencies": { @@ -692,8 +43874,6 @@ }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz", - "integrity": "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==", "dev": true, "license": "MIT", "dependencies": { @@ -710,8 +43890,6 @@ }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.6.4", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.4.tgz", - "integrity": "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==", "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -726,8 +43904,6 @@ }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", - "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", "dev": true, "license": "MIT", "dependencies": { @@ -740,8 +43916,6 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", - "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", "license": "MIT", "dependencies": { "@babel/traverse": "^7.27.1", @@ -753,8 +43927,6 @@ }, "node_modules/@babel/helper-module-transforms": { "version": "7.27.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", - "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", "dev": true, "license": "MIT", "dependencies": { @@ -771,8 +43943,6 @@ }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", - "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", "dev": true, "license": "MIT", "dependencies": { @@ -784,8 +43954,6 @@ }, "node_modules/@babel/helper-plugin-utils": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", - "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -793,8 +43961,6 @@ }, "node_modules/@babel/helper-remap-async-to-generator": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", - "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", "dev": true, "license": "MIT", "dependencies": { @@ -811,8 +43977,6 @@ }, "node_modules/@babel/helper-replace-supers": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", - "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", "dev": true, "license": "MIT", "dependencies": { @@ -829,8 +43993,6 @@ }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", - "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", "dev": true, "license": "MIT", "dependencies": { @@ -843,8 +44005,6 @@ }, "node_modules/@babel/helper-string-parser": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", - "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -852,8 +44012,6 @@ }, "node_modules/@babel/helper-validator-identifier": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", - "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -861,8 +44019,6 @@ }, "node_modules/@babel/helper-validator-option": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", - "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -870,8 +44026,6 @@ }, "node_modules/@babel/helper-wrap-function": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz", - "integrity": "sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==", "dev": true, "license": "MIT", "dependencies": { @@ -885,8 +44039,6 @@ }, "node_modules/@babel/helpers": { "version": "7.27.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz", - "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==", "dev": true, "license": "MIT", "dependencies": { @@ -899,8 +44051,6 @@ }, "node_modules/@babel/parser": { "version": "7.27.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.5.tgz", - "integrity": "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==", "license": "MIT", "dependencies": { "@babel/types": "^7.27.3" @@ -914,8 +44064,6 @@ }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz", - "integrity": "sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==", "dev": true, "license": "MIT", "dependencies": { @@ -931,8 +44079,6 @@ }, "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", - "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", "dev": true, "license": "MIT", "dependencies": { @@ -947,8 +44093,6 @@ }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", - "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", "dev": true, "license": "MIT", "dependencies": { @@ -963,8 +44107,6 @@ }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", - "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", "dev": true, "license": "MIT", "dependencies": { @@ -981,8 +44123,6 @@ }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.27.1.tgz", - "integrity": "sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==", "dev": true, "license": "MIT", "dependencies": { @@ -998,8 +44138,6 @@ }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, "license": "MIT", "engines": { @@ -1011,8 +44149,6 @@ }, "node_modules/@babel/plugin-syntax-import-assertions": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", - "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", "dev": true, "license": "MIT", "dependencies": { @@ -1027,8 +44163,6 @@ }, "node_modules/@babel/plugin-syntax-import-attributes": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", - "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", "dev": true, "license": "MIT", "dependencies": { @@ -1043,8 +44177,6 @@ }, "node_modules/@babel/plugin-syntax-unicode-sets-regex": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, "license": "MIT", "dependencies": { @@ -1060,8 +44192,6 @@ }, "node_modules/@babel/plugin-transform-arrow-functions": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", - "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", "dev": true, "license": "MIT", "dependencies": { @@ -1076,8 +44206,6 @@ }, "node_modules/@babel/plugin-transform-async-generator-functions": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.27.1.tgz", - "integrity": "sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==", "dev": true, "license": "MIT", "dependencies": { @@ -1094,8 +44222,6 @@ }, "node_modules/@babel/plugin-transform-async-to-generator": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", - "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", "dev": true, "license": "MIT", "dependencies": { @@ -1112,8 +44238,6 @@ }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", - "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", "dev": true, "license": "MIT", "dependencies": { @@ -1128,8 +44252,6 @@ }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.27.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.27.5.tgz", - "integrity": "sha512-JF6uE2s67f0y2RZcm2kpAUEbD50vH62TyWVebxwHAlbSdM49VqPz8t4a1uIjp4NIOIZ4xzLfjY5emt/RCyC7TQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1144,8 +44266,6 @@ }, "node_modules/@babel/plugin-transform-class-properties": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", - "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", "dev": true, "license": "MIT", "dependencies": { @@ -1161,8 +44281,6 @@ }, "node_modules/@babel/plugin-transform-class-static-block": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.27.1.tgz", - "integrity": "sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==", "dev": true, "license": "MIT", "dependencies": { @@ -1178,8 +44296,6 @@ }, "node_modules/@babel/plugin-transform-classes": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.27.1.tgz", - "integrity": "sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==", "dev": true, "license": "MIT", "dependencies": { @@ -1199,8 +44315,6 @@ }, "node_modules/@babel/plugin-transform-computed-properties": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", - "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", "dev": true, "license": "MIT", "dependencies": { @@ -1216,8 +44330,6 @@ }, "node_modules/@babel/plugin-transform-destructuring": { "version": "7.27.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.27.3.tgz", - "integrity": "sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==", "dev": true, "license": "MIT", "dependencies": { @@ -1232,8 +44344,6 @@ }, "node_modules/@babel/plugin-transform-dotall-regex": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", - "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", "dev": true, "license": "MIT", "dependencies": { @@ -1249,8 +44359,6 @@ }, "node_modules/@babel/plugin-transform-duplicate-keys": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", - "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", "dev": true, "license": "MIT", "dependencies": { @@ -1265,8 +44373,6 @@ }, "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", - "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1282,8 +44388,6 @@ }, "node_modules/@babel/plugin-transform-dynamic-import": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", - "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", "dev": true, "license": "MIT", "dependencies": { @@ -1298,8 +44402,6 @@ }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz", - "integrity": "sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1314,8 +44416,6 @@ }, "node_modules/@babel/plugin-transform-export-namespace-from": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", - "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1330,8 +44430,6 @@ }, "node_modules/@babel/plugin-transform-for-of": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", - "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", "dev": true, "license": "MIT", "dependencies": { @@ -1347,8 +44445,6 @@ }, "node_modules/@babel/plugin-transform-function-name": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", - "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1365,8 +44461,6 @@ }, "node_modules/@babel/plugin-transform-json-strings": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", - "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", "dev": true, "license": "MIT", "dependencies": { @@ -1381,8 +44475,6 @@ }, "node_modules/@babel/plugin-transform-literals": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", - "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", "dev": true, "license": "MIT", "dependencies": { @@ -1397,8 +44489,6 @@ }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz", - "integrity": "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==", "dev": true, "license": "MIT", "dependencies": { @@ -1413,8 +44503,6 @@ }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", - "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1429,8 +44517,6 @@ }, "node_modules/@babel/plugin-transform-modules-amd": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", - "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", "dev": true, "license": "MIT", "dependencies": { @@ -1446,8 +44532,6 @@ }, "node_modules/@babel/plugin-transform-modules-commonjs": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", - "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", "dev": true, "license": "MIT", "dependencies": { @@ -1463,8 +44547,6 @@ }, "node_modules/@babel/plugin-transform-modules-systemjs": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz", - "integrity": "sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==", "dev": true, "license": "MIT", "dependencies": { @@ -1482,8 +44564,6 @@ }, "node_modules/@babel/plugin-transform-modules-umd": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", - "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", "dev": true, "license": "MIT", "dependencies": { @@ -1499,8 +44579,6 @@ }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", - "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", "dev": true, "license": "MIT", "dependencies": { @@ -1516,8 +44594,6 @@ }, "node_modules/@babel/plugin-transform-new-target": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", - "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1532,8 +44608,6 @@ }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", - "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", "dev": true, "license": "MIT", "dependencies": { @@ -1548,8 +44622,6 @@ }, "node_modules/@babel/plugin-transform-numeric-separator": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", - "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", "dev": true, "license": "MIT", "dependencies": { @@ -1564,8 +44636,6 @@ }, "node_modules/@babel/plugin-transform-object-rest-spread": { "version": "7.27.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.27.3.tgz", - "integrity": "sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q==", "dev": true, "license": "MIT", "dependencies": { @@ -1583,8 +44653,6 @@ }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", - "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", "dev": true, "license": "MIT", "dependencies": { @@ -1600,8 +44668,6 @@ }, "node_modules/@babel/plugin-transform-optional-catch-binding": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", - "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", "dev": true, "license": "MIT", "dependencies": { @@ -1616,8 +44682,6 @@ }, "node_modules/@babel/plugin-transform-optional-chaining": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz", - "integrity": "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==", "dev": true, "license": "MIT", "dependencies": { @@ -1633,8 +44697,6 @@ }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.1.tgz", - "integrity": "sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==", "dev": true, "license": "MIT", "dependencies": { @@ -1649,8 +44711,6 @@ }, "node_modules/@babel/plugin-transform-private-methods": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", - "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", "dev": true, "license": "MIT", "dependencies": { @@ -1666,8 +44726,6 @@ }, "node_modules/@babel/plugin-transform-private-property-in-object": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", - "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1684,8 +44742,6 @@ }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", - "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1700,8 +44756,6 @@ }, "node_modules/@babel/plugin-transform-regenerator": { "version": "7.27.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.27.5.tgz", - "integrity": "sha512-uhB8yHerfe3MWnuLAhEbeQ4afVoqv8BQsPqrTv7e/jZ9y00kJL6l9a/f4OWaKxotmjzewfEyXE1vgDJenkQ2/Q==", "dev": true, "license": "MIT", "dependencies": { @@ -1716,8 +44770,6 @@ }, "node_modules/@babel/plugin-transform-regexp-modifiers": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", - "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", "dev": true, "license": "MIT", "dependencies": { @@ -1733,8 +44785,6 @@ }, "node_modules/@babel/plugin-transform-reserved-words": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", - "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", "dev": true, "license": "MIT", "dependencies": { @@ -1749,8 +44799,6 @@ }, "node_modules/@babel/plugin-transform-runtime": { "version": "7.27.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.27.4.tgz", - "integrity": "sha512-D68nR5zxU64EUzV8i7T3R5XP0Xhrou/amNnddsRQssx6GrTLdZl1rLxyjtVZBd+v/NVX4AbTPOB5aU8thAZV1A==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.27.1", @@ -1769,8 +44817,6 @@ }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", - "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", "dev": true, "license": "MIT", "dependencies": { @@ -1785,8 +44831,6 @@ }, "node_modules/@babel/plugin-transform-spread": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", - "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", "dev": true, "license": "MIT", "dependencies": { @@ -1802,8 +44846,6 @@ }, "node_modules/@babel/plugin-transform-sticky-regex": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", - "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", "dev": true, "license": "MIT", "dependencies": { @@ -1818,8 +44860,6 @@ }, "node_modules/@babel/plugin-transform-template-literals": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", - "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", "dev": true, "license": "MIT", "dependencies": { @@ -1834,8 +44874,6 @@ }, "node_modules/@babel/plugin-transform-typeof-symbol": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", - "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", "dev": true, "license": "MIT", "dependencies": { @@ -1850,8 +44888,6 @@ }, "node_modules/@babel/plugin-transform-unicode-escapes": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", - "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", "dev": true, "license": "MIT", "dependencies": { @@ -1866,8 +44902,6 @@ }, "node_modules/@babel/plugin-transform-unicode-property-regex": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", - "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", "dev": true, "license": "MIT", "dependencies": { @@ -1883,8 +44917,6 @@ }, "node_modules/@babel/plugin-transform-unicode-regex": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", - "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", "dev": true, "license": "MIT", "dependencies": { @@ -1900,8 +44932,6 @@ }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", - "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", "dev": true, "license": "MIT", "dependencies": { @@ -1917,8 +44947,6 @@ }, "node_modules/@babel/preset-env": { "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.27.2.tgz", - "integrity": "sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2001,8 +45029,6 @@ }, "node_modules/@babel/preset-modules": { "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "license": "MIT", "dependencies": { @@ -2016,8 +45042,6 @@ }, "node_modules/@babel/runtime": { "version": "7.27.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.6.tgz", - "integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -2025,8 +45049,6 @@ }, "node_modules/@babel/template": { "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", - "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", @@ -2039,8 +45061,6 @@ }, "node_modules/@babel/traverse": { "version": "7.27.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.4.tgz", - "integrity": "sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", @@ -2057,8 +45077,6 @@ }, "node_modules/@babel/types": { "version": "7.27.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.6.tgz", - "integrity": "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.27.1", @@ -2070,15 +45088,11 @@ }, "node_modules/@cloudflare/workers-types": { "version": "4.20250617.0", - "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20250617.0.tgz", - "integrity": "sha512-oUJWWKCR9bLgb7ymvM1V3Q//OpMR7jG4etCJs45bRdidmAgCog+y8w8fpuvh27JS4B8KzFNWB0YUD9xBPIf5Qg==", "dev": true, "license": "MIT OR Apache-2.0" }, "node_modules/@dnd-kit/accessibility": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@dnd-kit/accessibility/-/accessibility-3.1.1.tgz", - "integrity": "sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==", "license": "MIT", "dependencies": { "tslib": "^2.0.0" @@ -2089,8 +45103,6 @@ }, "node_modules/@dnd-kit/core": { "version": "6.3.1", - "resolved": "https://registry.npmjs.org/@dnd-kit/core/-/core-6.3.1.tgz", - "integrity": "sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==", "license": "MIT", "dependencies": { "@dnd-kit/accessibility": "^3.1.1", @@ -2104,8 +45116,6 @@ }, "node_modules/@dnd-kit/modifiers": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@dnd-kit/modifiers/-/modifiers-7.0.0.tgz", - "integrity": "sha512-BG/ETy3eBjFap7+zIti53f0PCLGDzNXyTmn6fSdrudORf+OH04MxrW4p5+mPu4mgMk9kM41iYONjc3DOUWTcfg==", "license": "MIT", "dependencies": { "@dnd-kit/utilities": "^3.2.2", @@ -2118,8 +45128,6 @@ }, "node_modules/@dnd-kit/sortable": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@dnd-kit/sortable/-/sortable-8.0.0.tgz", - "integrity": "sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==", "license": "MIT", "dependencies": { "@dnd-kit/utilities": "^3.2.2", @@ -2132,8 +45140,6 @@ }, "node_modules/@dnd-kit/utilities": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@dnd-kit/utilities/-/utilities-3.2.2.tgz", - "integrity": "sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==", "license": "MIT", "dependencies": { "tslib": "^2.0.0" @@ -2144,8 +45150,6 @@ }, "node_modules/@emotion/babel-plugin": { "version": "11.13.5", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz", - "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.16.7", @@ -2163,8 +45167,6 @@ }, "node_modules/@emotion/cache": { "version": "11.14.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz", - "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==", "license": "MIT", "dependencies": { "@emotion/memoize": "^0.9.0", @@ -2176,20 +45178,14 @@ }, "node_modules/@emotion/cache/node_modules/@emotion/weak-memoize": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz", - "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", "license": "MIT" }, "node_modules/@emotion/hash": { "version": "0.9.2", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz", - "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==", "license": "MIT" }, "node_modules/@emotion/is-prop-valid": { "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", "license": "MIT", "dependencies": { "@emotion/memoize": "0.7.4" @@ -2197,20 +45193,14 @@ }, "node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", "license": "MIT" }, "node_modules/@emotion/memoize": { "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz", - "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==", "license": "MIT" }, "node_modules/@emotion/react": { "version": "11.11.1", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.1.tgz", - "integrity": "sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.18.3", @@ -2233,8 +45223,6 @@ }, "node_modules/@emotion/serialize": { "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz", - "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==", "license": "MIT", "dependencies": { "@emotion/hash": "^0.9.2", @@ -2246,20 +45234,14 @@ }, "node_modules/@emotion/sheet": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz", - "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==", "license": "MIT" }, "node_modules/@emotion/unitless": { "version": "0.10.0", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz", - "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==", "license": "MIT" }, "node_modules/@emotion/use-insertion-effect-with-fallbacks": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz", - "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==", "license": "MIT", "peerDependencies": { "react": ">=16.8.0" @@ -2267,88 +45249,14 @@ }, "node_modules/@emotion/utils": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz", - "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==", "license": "MIT" }, "node_modules/@emotion/weak-memoize": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", - "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==", "license": "MIT" }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/@esbuild/darwin-arm64": { "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", "cpu": [ "arm64" ], @@ -2362,328 +45270,16 @@ "node": ">=12" } }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/@hazae41/foras": { "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hazae41/foras/-/foras-2.1.4.tgz", - "integrity": "sha512-obzWFJ7sYYypl0UGjLKLZ8q/pFfY8B2re0oAw+ojc8XJQORz3yHMX8L+hv2r3Tm0zzOxGWAV/j0wdJuGRvhQow==", "license": "Unlicense" }, "node_modules/@henrygd/queue": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@henrygd/queue/-/queue-1.0.7.tgz", - "integrity": "sha512-Jmt/iO6yDlz9UYGILkm/Qzi/ckkEiTNZcqDvt3QFLE4OThPeiCj6tKsynHFm/ppl8RumWXAx1dZPBPiRPaaGig==", "license": "MIT" }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.8", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", - "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.2.1", @@ -2696,8 +45292,6 @@ }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "license": "MIT", "engines": { "node": ">=6.0.0" @@ -2705,8 +45299,6 @@ }, "node_modules/@jridgewell/set-array": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "license": "MIT", "engines": { "node": ">=6.0.0" @@ -2714,8 +45306,6 @@ }, "node_modules/@jridgewell/source-map": { "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2725,14 +45315,10 @@ }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", @@ -2741,8 +45327,6 @@ }, "node_modules/@lingui/core": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@lingui/core/-/core-5.1.2.tgz", - "integrity": "sha512-biqmMCWuBBj7ERSpgGSV91hTShnSrR/RIFUcNKjWuZYgDd3HpBdEmXKCo9NTanQYbkBUpmyw/bgwsSBex6vkDA==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.20.13", @@ -2767,8 +45351,6 @@ }, "node_modules/@lingui/message-utils": { "version": "5.3.2", - "resolved": "https://registry.npmjs.org/@lingui/message-utils/-/message-utils-5.3.2.tgz", - "integrity": "sha512-YUBrXApa3kxcL9oimJdw7oiAJ2ESkI24uyTMaRp9XYNaWgWqpEgoxC5bDN2Fwnk5THFjUp/l64kAD5LJGQhJxQ==", "bundleDependencies": [ "@messageformat/date-skeleton" ], @@ -2783,8 +45365,6 @@ }, "node_modules/@lingui/react": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@lingui/react/-/react-5.1.2.tgz", - "integrity": "sha512-YPAvbPUd+kJrmA9H1LSJ9f6+0hkOlm0w8g+7a8FtE7olamjXd7SyIgJMbeJmvKSdztrrdcLBs9YEftUKTfjiyg==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.20.13", @@ -2809,8 +45389,6 @@ }, "node_modules/@mapbox/node-pre-gyp": { "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", - "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", "license": "BSD-3-Clause", "optional": true, "dependencies": { @@ -2830,8 +45408,6 @@ }, "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { "version": "7.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", - "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "license": "ISC", "optional": true, "bin": { @@ -2843,14 +45419,10 @@ }, "node_modules/@mdi/js": { "version": "7.4.47", - "resolved": "https://registry.npmjs.org/@mdi/js/-/js-7.4.47.tgz", - "integrity": "sha512-KPnNOtm5i2pMabqZxpUz7iQf+mfrYZyKCZ8QNz85czgEt7cuHcGorWfdzUMWYA0SD+a6Hn4FmJ+YhzzzjkTZrQ==", "license": "Apache-2.0" }, "node_modules/@mdi/react": { "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@mdi/react/-/react-1.6.1.tgz", - "integrity": "sha512-4qZeDcluDFGFTWkHs86VOlHkm6gnKaMql13/gpIcUQ8kzxHgpj31NuCkD8abECVfbULJ3shc7Yt4HJ6Wu6SN4w==", "license": "MIT", "dependencies": { "prop-types": "^15.7.2" @@ -2858,8 +45430,6 @@ }, "node_modules/@messageformat/parser": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@messageformat/parser/-/parser-5.1.1.tgz", - "integrity": "sha512-3p0YRGCcTUCYvBKLIxtDDyrJ0YijGIwrTRu1DT8gIviIDZru8H23+FkY6MJBzM1n9n20CiM4VeDYuBsrrwnLjg==", "license": "MIT", "dependencies": { "moo": "^0.5.1" @@ -2867,8 +45437,6 @@ }, "node_modules/@noble/hashes": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-2.0.1.tgz", - "integrity": "sha512-XlOlEbQcE9fmuXxrVTXCTlG2nlRXa9Rj3rr5Ue/+tX+nmkgbX720YHh0VR3hBF9xDvwnb8D2shVGOwNx+ulArw==", "dev": true, "license": "MIT", "engines": { @@ -2880,8 +45448,6 @@ }, "node_modules/@notesnook-importer/core": { "version": "2.4.5", - "resolved": "https://registry.npmjs.org/@notesnook-importer/core/-/core-2.4.5.tgz", - "integrity": "sha512-7Oqkw07CykwC/xzGrC6St4C/87QmXqK8UtmSxwE05fpz8DWoKEviJSWFa5fKY52umTphGvmtY23252dZ9J9EJg==", "license": "GPL-3.0-or-later", "dependencies": { "@notesnook-importer/enex": "^2.3.5", @@ -2916,8 +45482,6 @@ }, "node_modules/@notesnook-importer/core/node_modules/entities": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -2928,14 +45492,10 @@ }, "node_modules/@notesnook-importer/core/node_modules/fflate": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz", - "integrity": "sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==", "license": "MIT" }, "node_modules/@notesnook-importer/enex": { "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@notesnook-importer/enex/-/enex-2.3.5.tgz", - "integrity": "sha512-0+08XVhsQQFoEUrar3k07DuTluNho/FHxJ25n/DT+ug8kVraHHVqI40a2P9h8bW8iWxYs02Zq1n+N2uTv5qb+g==", "license": "GPL-3.0-or-later", "dependencies": { "base64-js": "^1.5.1", @@ -2949,14 +45509,10 @@ }, "node_modules/@notesnook-importer/storage": { "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@notesnook-importer/storage/-/storage-2.3.5.tgz", - "integrity": "sha512-orvSK0XIcqlmiWmjQ3RzS3qZp7viBdCpAloX557Ml200LMSMGDsOtofYNv5IYllBETnqApERLPQaUzBSuviuvA==", "license": "GPL-3.0-or-later" }, "node_modules/@notesnook-importer/znel": { "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@notesnook-importer/znel/-/znel-2.3.5.tgz", - "integrity": "sha512-s1kTA3EQ5OswBc0RvWnWgIm6/mIWvnh3iWmcOJcApIqhDwQziEkYiS+UMfuY9nOUyIWtepMe/WJ0Odk15uah9w==", "license": "GPL-3.0-or-later", "dependencies": { "base64-js": "^1.5.1", @@ -2988,6 +45544,10 @@ "resolved": "../../packages/editor", "link": true }, + "node_modules/@notesnook/icons": { + "resolved": "../../packages/icons", + "link": true + }, "node_modules/@notesnook/intl": { "resolved": "../../packages/intl", "link": true @@ -3018,15 +45578,11 @@ }, "node_modules/@otplib/core": { "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@otplib/core/-/core-13.3.0.tgz", - "integrity": "sha512-pnQDOuCmFVeF/XnboJq9TOJgLoo2idNPJKMymOF8vGqJJ+ReKRYM9bUGjNPRWC0tHjMwu1TXbnzyBp494JgRag==", "dev": true, "license": "MIT" }, "node_modules/@otplib/hotp": { "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@otplib/hotp/-/hotp-13.3.0.tgz", - "integrity": "sha512-XJMZGz2bg4QJwK7ulvl1GUI2VMn/flaIk/E/BTKAejHsX2kUtPF1bRhlZ2+elq8uU5Fs9Z9FHcQK2CPZNQbbUQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3036,8 +45592,6 @@ }, "node_modules/@otplib/plugin-base32-scure": { "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@otplib/plugin-base32-scure/-/plugin-base32-scure-13.3.0.tgz", - "integrity": "sha512-/jYbL5S6GB0Ie3XGEWtLIr9s5ZICl/BfmNL7+8/W7usZaUU4GiyLd2S+JGsNCslPyqNekSudD864nDAvRI0s8w==", "dev": true, "license": "MIT", "dependencies": { @@ -3047,8 +45601,6 @@ }, "node_modules/@otplib/plugin-crypto-noble": { "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@otplib/plugin-crypto-noble/-/plugin-crypto-noble-13.3.0.tgz", - "integrity": "sha512-wmV+jBVncepgwv99G7Plrdzd0tHfbpXk2U+OD7MO7DzpDqOYEgOPi+IIneksJSTL8QvWdfi+uQEuhnER4fKouA==", "dev": true, "license": "MIT", "dependencies": { @@ -3058,8 +45610,6 @@ }, "node_modules/@otplib/totp": { "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@otplib/totp/-/totp-13.3.0.tgz", - "integrity": "sha512-XfjGNoN8d9S3Ove2j7AwkVV7+QDFsV7Lm7YwSiezNaHffkWtJ60aJYpmf+01dARdPST71U2ptueMsRJso4sq4A==", "dev": true, "license": "MIT", "dependencies": { @@ -3070,8 +45620,6 @@ }, "node_modules/@otplib/uri": { "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@otplib/uri/-/uri-13.3.0.tgz", - "integrity": "sha512-3oh6nBXy+cm3UX9cxEAGZiDrfxHU2gfelYFV+XNCx+8dq39VaQVymwlU2yjPZiMAi/3agaUeEftf2RwM5F+Cyg==", "dev": true, "license": "MIT", "dependencies": { @@ -3080,14 +45628,10 @@ }, "node_modules/@paddle/paddle-js": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@paddle/paddle-js/-/paddle-js-1.4.2.tgz", - "integrity": "sha512-pY9jYS+g3vk6ecc7GbCsVSuBEo1Yh+hxYE4i2XoY5/ZBAZLuCkQi/80hOmSBkFoaETohOpDmurILlQdgUHUcvw==", "license": "Apache-2.0" }, "node_modules/@playwright/test": { "version": "1.58.2", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.58.2.tgz", - "integrity": "sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -3102,8 +45646,6 @@ }, "node_modules/@react-pdf-viewer/core": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/core/-/core-3.12.0.tgz", - "integrity": "sha512-8MsdlQJ4jaw3GT+zpCHS33nwnvzpY0ED6DEahZg9WngG++A5RMhk8LSlxdHelwaFFHFiXBjmOaj2Kpxh50VQRg==", "license": "https://react-pdf-viewer.dev/license", "peerDependencies": { "pdfjs-dist": "^2.16.105 || ^3.0.279", @@ -3113,8 +45655,6 @@ }, "node_modules/@react-pdf-viewer/full-screen": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/full-screen/-/full-screen-3.12.0.tgz", - "integrity": "sha512-hQouJ26QUaRBCXNMU1aI1zpJn4l4PJRvlHhuE2dZYtLl37ycjl7vBCQYZW1FwnuxMWztZsY47R43DKaZORg0pg==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3126,8 +45666,6 @@ }, "node_modules/@react-pdf-viewer/get-file": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/get-file/-/get-file-3.12.0.tgz", - "integrity": "sha512-Uhq45n2RWlZ7Ec/BtBJ0WQESRciaYIltveDXHNdWvXgFdOS8XsvB+mnTh/wzm7Cfl9hpPyzfeezifdU9AkQgQg==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3139,8 +45677,6 @@ }, "node_modules/@react-pdf-viewer/open": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/open/-/open-3.12.0.tgz", - "integrity": "sha512-vhiDEYsiQLxvZkIKT9VPYHZ1BOnv46x9eCEmRWxO1DJ8fa/GRDTA9ivXmq/ap0dGEJs6t+epleCkCEfllLR/Yw==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3152,8 +45688,6 @@ }, "node_modules/@react-pdf-viewer/page-navigation": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/page-navigation/-/page-navigation-3.12.0.tgz", - "integrity": "sha512-tVEJ48Dd5kajV1nKkrPWijglJRNBiKBTyYDKVexhiRdTHUP1f6QQXiSyDgCUb0IGSZeJzOJb1h7ApKHe8OTtuw==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3165,8 +45699,6 @@ }, "node_modules/@react-pdf-viewer/print": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/print/-/print-3.12.0.tgz", - "integrity": "sha512-xJn76CgbU/M2iNaN7wLHTg+sdOekkRMfCakFLwPrE+SR7qD6NUF4vQQKJBSVCCK5bUijzb6cWfKGfo8VA72o4Q==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3178,8 +45710,6 @@ }, "node_modules/@react-pdf-viewer/properties": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/properties/-/properties-3.12.0.tgz", - "integrity": "sha512-dYTCHtVwFNkpDo7QxL2qk/8zAKndLwdD1FFxBftl6jIlQbtvNdxkFfkv1HcQING9Ic+7DBryOiD7W0ze4IERYg==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3191,8 +45721,6 @@ }, "node_modules/@react-pdf-viewer/rotate": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/rotate/-/rotate-3.12.0.tgz", - "integrity": "sha512-yaxaMYPChvNOjR8+AxRmj0kvojyJKPq4XHEcIB2lJJgBY1Zra3mliDUP3Nlb4yV8BS9+yBqWn9U9mtnopQD+tw==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3204,8 +45732,6 @@ }, "node_modules/@react-pdf-viewer/scroll-mode": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/scroll-mode/-/scroll-mode-3.12.0.tgz", - "integrity": "sha512-okII7Xqhl6cMvl1izdEvlXNJ+vJVq/qdg53hJIDYVgBCWskLk/cpjUg/ZonBxseG9lIDP3w2VO1McT8Gn11OAg==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3217,8 +45743,6 @@ }, "node_modules/@react-pdf-viewer/search": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/search/-/search-3.12.0.tgz", - "integrity": "sha512-jAkLpis49fsDDY/HrbUZIOIhzF5vynONQNA4INQKI38r/MjveblrkNv7qbr9j5lQ/WFic5+gD1e+Mtpf1/7DiA==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3230,8 +45754,6 @@ }, "node_modules/@react-pdf-viewer/selection-mode": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/selection-mode/-/selection-mode-3.12.0.tgz", - "integrity": "sha512-yysWEu2aCtBvzSgbhgI9kT5cq2hf0FU6Z+3B7MMXz14Kxyc3y18wUqxtgbvpFEfWF0bNUUq16JtWRljtxvZ83w==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3243,8 +45765,6 @@ }, "node_modules/@react-pdf-viewer/theme": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/theme/-/theme-3.12.0.tgz", - "integrity": "sha512-cdBi+wR1VOZ6URCcO9plmAZQu4ZGFcd7HJdBe7VIFiGyrvl9I/Of74ONLycnDImSuONt8D3uNjPBLieeaShVeg==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3256,8 +45776,6 @@ }, "node_modules/@react-pdf-viewer/toolbar": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/toolbar/-/toolbar-3.12.0.tgz", - "integrity": "sha512-qACTU3qXHgtNK8J+T13EWio+0liilj86SJ87BdapqXynhl720OKPlSKOQqskUGqg3oTUJAhrse9XG6SFdHJx+g==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0", @@ -3281,8 +45799,6 @@ }, "node_modules/@react-pdf-viewer/zoom": { "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-pdf-viewer/zoom/-/zoom-3.12.0.tgz", - "integrity": "sha512-V0GUTyPM77+LzhoKX+T3XI10/HfGdqRTbgeP7ID60FCzcwu6kXWqJn5tzabjDKLTlFv8mJmn0aa/ppkIU97nfA==", "license": "https://react-pdf-viewer.dev/license", "dependencies": { "@react-pdf-viewer/core": "3.12.0" @@ -3294,8 +45810,6 @@ }, "node_modules/@rehookify/datepicker": { "version": "6.6.8", - "resolved": "https://registry.npmjs.org/@rehookify/datepicker/-/datepicker-6.6.8.tgz", - "integrity": "sha512-s/KFkVZSLWTICeFOshlhgAGiRTzuSXSQOJHoXWcihqX8Nz8ZctgGaskd5+ybxSrcndSYGGts4XsL4A7P9kimBQ==", "license": "MIT", "engines": { "node": ">=16" @@ -3306,15 +45820,11 @@ }, "node_modules/@rolldown/pluginutils": { "version": "1.0.0-beta.11", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.11.tgz", - "integrity": "sha512-L/gAA/hyCSuzTF1ftlzUSI/IKr2POHsv1Dd78GfqkR83KMNuswWD61JxGV2L7nRwBBBSDr6R1gCkdTmoN7W4ag==", "dev": true, "license": "MIT" }, "node_modules/@rollup/plugin-node-resolve": { "version": "15.3.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.1.tgz", - "integrity": "sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==", "dev": true, "license": "MIT", "dependencies": { @@ -3338,8 +45848,6 @@ }, "node_modules/@rollup/plugin-terser": { "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", - "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", "dev": true, "license": "MIT", "dependencies": { @@ -3361,8 +45869,6 @@ }, "node_modules/@rollup/pluginutils": { "version": "5.1.4", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", - "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3382,38 +45888,8 @@ } } }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.43.0.tgz", - "integrity": "sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.43.0.tgz", - "integrity": "sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, "node_modules/@rollup/rollup-darwin-arm64": { "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.43.0.tgz", - "integrity": "sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==", "cpu": [ "arm64" ], @@ -3424,248 +45900,8 @@ "darwin" ] }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.43.0.tgz", - "integrity": "sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.43.0.tgz", - "integrity": "sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.43.0.tgz", - "integrity": "sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.43.0.tgz", - "integrity": "sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.43.0.tgz", - "integrity": "sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.43.0.tgz", - "integrity": "sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.43.0.tgz", - "integrity": "sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loongarch64-gnu": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.43.0.tgz", - "integrity": "sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.43.0.tgz", - "integrity": "sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.43.0.tgz", - "integrity": "sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.43.0.tgz", - "integrity": "sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.43.0.tgz", - "integrity": "sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.43.0.tgz", - "integrity": "sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.43.0.tgz", - "integrity": "sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.43.0.tgz", - "integrity": "sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.43.0.tgz", - "integrity": "sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.43.0.tgz", - "integrity": "sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, "node_modules/@scure/base": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@scure/base/-/base-2.0.0.tgz", - "integrity": "sha512-3E1kpuZginKkek01ovG8krQ0Z44E3DHPjc5S2rjJw9lZn3KSQOs8S7wqikF/AH7iRanHypj85uGyxk0XAyC37w==", "dev": true, "license": "MIT", "funding": { @@ -3674,14 +45910,10 @@ }, "node_modules/@stablelib/aead": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz", - "integrity": "sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==", "license": "MIT" }, "node_modules/@stablelib/binary": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz", - "integrity": "sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==", "license": "MIT", "dependencies": { "@stablelib/int": "^1.0.1" @@ -3689,8 +45921,6 @@ }, "node_modules/@stablelib/chacha": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/chacha/-/chacha-1.0.1.tgz", - "integrity": "sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==", "license": "MIT", "dependencies": { "@stablelib/binary": "^1.0.1", @@ -3699,8 +45929,6 @@ }, "node_modules/@stablelib/chacha20poly1305": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/chacha20poly1305/-/chacha20poly1305-1.0.1.tgz", - "integrity": "sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==", "license": "MIT", "dependencies": { "@stablelib/aead": "^1.0.1", @@ -3713,20 +45941,14 @@ }, "node_modules/@stablelib/constant-time": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz", - "integrity": "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==", "license": "MIT" }, "node_modules/@stablelib/int": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz", - "integrity": "sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==", "license": "MIT" }, "node_modules/@stablelib/poly1305": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz", - "integrity": "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==", "license": "MIT", "dependencies": { "@stablelib/constant-time": "^1.0.1", @@ -3735,20 +45957,14 @@ }, "node_modules/@stablelib/wipe": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz", - "integrity": "sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==", "license": "MIT" }, "node_modules/@streamparser/json": { "version": "0.0.10", - "resolved": "https://registry.npmjs.org/@streamparser/json/-/json-0.0.10.tgz", - "integrity": "sha512-juqNFdqqmY/nvsODq1Vba7PWIaqr01VcqICIrxbws97QKSQhQUMml8FqdHLmevwVpqH39H5mVXKFWiWCi1ke0w==", "license": "MIT" }, "node_modules/@streetwriters/kysely": { "version": "0.27.4", - "resolved": "https://registry.npmjs.org/@streetwriters/kysely/-/kysely-0.27.4.tgz", - "integrity": "sha512-c2p+wtX8WESSVjJAc16j4lT44w/g1DvJFEIeKj/CFy36vmi0uq9FOAzxc50VtRc7rp0UlECCfl3Sxd+BTZOHFg==", "license": "MIT", "engines": { "node": ">=14.0.0" @@ -3756,8 +45972,6 @@ }, "node_modules/@styled-system/background": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/background/-/background-5.1.2.tgz", - "integrity": "sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3765,8 +45979,6 @@ }, "node_modules/@styled-system/border": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/border/-/border-5.1.5.tgz", - "integrity": "sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3774,8 +45986,6 @@ }, "node_modules/@styled-system/color": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/color/-/color-5.1.2.tgz", - "integrity": "sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3783,8 +45993,6 @@ }, "node_modules/@styled-system/core": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/core/-/core-5.1.2.tgz", - "integrity": "sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==", "license": "MIT", "dependencies": { "object-assign": "^4.1.1" @@ -3792,14 +46000,10 @@ }, "node_modules/@styled-system/css": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/css/-/css-5.1.5.tgz", - "integrity": "sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==", "license": "MIT" }, "node_modules/@styled-system/flexbox": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/flexbox/-/flexbox-5.1.2.tgz", - "integrity": "sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3807,8 +46011,6 @@ }, "node_modules/@styled-system/grid": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/grid/-/grid-5.1.2.tgz", - "integrity": "sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3816,8 +46018,6 @@ }, "node_modules/@styled-system/layout": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/layout/-/layout-5.1.2.tgz", - "integrity": "sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3825,8 +46025,6 @@ }, "node_modules/@styled-system/position": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/position/-/position-5.1.2.tgz", - "integrity": "sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3834,8 +46032,6 @@ }, "node_modules/@styled-system/shadow": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/shadow/-/shadow-5.1.2.tgz", - "integrity": "sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3843,8 +46039,6 @@ }, "node_modules/@styled-system/should-forward-prop": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/should-forward-prop/-/should-forward-prop-5.1.5.tgz", - "integrity": "sha512-+rPRomgCGYnUIaFabDoOgpSDc4UUJ1KsmlnzcEp0tu5lFrBQKgZclSo18Z1URhaZm7a6agGtS5Xif7tuC2s52Q==", "license": "MIT", "dependencies": { "@emotion/is-prop-valid": "^0.8.1", @@ -3854,14 +46048,10 @@ }, "node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz", - "integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==", "license": "MIT" }, "node_modules/@styled-system/space": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/space/-/space-5.1.2.tgz", - "integrity": "sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3869,8 +46059,6 @@ }, "node_modules/@styled-system/typography": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/typography/-/typography-5.1.2.tgz", - "integrity": "sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" @@ -3878,8 +46066,6 @@ }, "node_modules/@styled-system/variant": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/variant/-/variant-5.1.5.tgz", - "integrity": "sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==", "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2", @@ -3888,8 +46074,6 @@ }, "node_modules/@surma/rollup-plugin-off-main-thread": { "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", - "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -3901,8 +46085,6 @@ }, "node_modules/@surma/rollup-plugin-off-main-thread/node_modules/magic-string": { "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, "license": "MIT", "dependencies": { @@ -3911,8 +46093,6 @@ }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", "dev": true, "license": "MIT", "engines": { @@ -3928,8 +46108,6 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", "dev": true, "license": "MIT", "engines": { @@ -3945,8 +46123,6 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", - "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", "dev": true, "license": "MIT", "engines": { @@ -3962,8 +46138,6 @@ }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", - "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", "dev": true, "license": "MIT", "engines": { @@ -3979,8 +46153,6 @@ }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", - "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", "dev": true, "license": "MIT", "engines": { @@ -3996,8 +46168,6 @@ }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", - "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", "dev": true, "license": "MIT", "engines": { @@ -4013,8 +46183,6 @@ }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", - "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", "dev": true, "license": "MIT", "engines": { @@ -4030,8 +46198,6 @@ }, "node_modules/@svgr/babel-plugin-transform-svg-component": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", - "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", "dev": true, "license": "MIT", "engines": { @@ -4047,8 +46213,6 @@ }, "node_modules/@svgr/babel-preset": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", - "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", "dev": true, "license": "MIT", "dependencies": { @@ -4074,8 +46238,6 @@ }, "node_modules/@svgr/core": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", - "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", "dev": true, "license": "MIT", "dependencies": { @@ -4095,15 +46257,11 @@ }, "node_modules/@svgr/core/node_modules/argparse": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, "license": "Python-2.0" }, "node_modules/@svgr/core/node_modules/cosmiconfig": { "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, "license": "MIT", "dependencies": { @@ -4129,8 +46287,6 @@ }, "node_modules/@svgr/core/node_modules/js-yaml": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "license": "MIT", "dependencies": { @@ -4142,8 +46298,6 @@ }, "node_modules/@svgr/hast-util-to-babel-ast": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", - "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", "dev": true, "license": "MIT", "dependencies": { @@ -4160,8 +46314,6 @@ }, "node_modules/@svgr/hast-util-to-babel-ast/node_modules/entities": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -4173,8 +46325,6 @@ }, "node_modules/@svgr/plugin-jsx": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", - "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", "dev": true, "license": "MIT", "dependencies": { @@ -4196,8 +46346,6 @@ }, "node_modules/@swc/core": { "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.12.1.tgz", - "integrity": "sha512-aKXdDTqxTVFl/bKQZ3EQUjEMBEoF6JBv29moMZq0kbVO43na6u/u+3Vcbhbrh+A2N0X5OL4RaveuWfAjEgOmeA==", "dev": true, "hasInstallScript": true, "license": "Apache-2.0", @@ -4235,8 +46383,6 @@ }, "node_modules/@swc/core-darwin-arm64": { "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.12.1.tgz", - "integrity": "sha512-nUjWVcJ3YS2N40ZbKwYO2RJ4+o2tWYRzNOcIQp05FqW0+aoUCVMdAUUzQinPDynfgwVshDAXCKemY8X7nN5MaA==", "cpu": [ "arm64" ], @@ -4250,170 +46396,13 @@ "node": ">=10" } }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.12.1.tgz", - "integrity": "sha512-OGm4a4d3OeJn+tRt8H/eiHgTFrJbS6r8mi/Ob65tAEXZGHN900T2kR7c5ALr0V2hBOQ8BfhexwPoQlGQP/B95w==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.12.1.tgz", - "integrity": "sha512-76YeeQKyK0EtNkQiNBZ0nbVGooPf9IucY0WqVXVpaU4wuG7ZyLEE2ZAIgXafIuzODGQoLfetue7I8boMxh1/MA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.12.1.tgz", - "integrity": "sha512-BxJDIJPq1+aCh9UsaSAN6wo3tuln8UhNXruOrzTI8/ElIig/3sAueDM6Eq7GvZSGGSA7ljhNATMJ0elD7lFatQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.12.1.tgz", - "integrity": "sha512-NhLdbffSXvY0/FwUSAl4hKBlpe5GHQGXK8DxTo3HHjLsD9sCPYieo3vG0NQoUYAy4ZUY1WeGjyxeq4qZddJzEQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.12.1.tgz", - "integrity": "sha512-CrYnV8SZIgArQ9LKH0xEF95PKXzX9WkRSc5j55arOSBeDCeDUQk1Bg/iKdnDiuj5HC1hZpvzwMzSBJjv+Z70jA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.12.1.tgz", - "integrity": "sha512-BQMl3d0HaGB0/h2xcKlGtjk/cGRn2tnbsaChAKcjFdCepblKBCz1pgO/mL7w5iXq3s57wMDUn++71/a5RAkZOA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.12.1.tgz", - "integrity": "sha512-b7NeGnpqTfmIGtUqXBl0KqoSmOnH64nRZoT5l4BAGdvwY7nxitWR94CqZuwyLPty/bLywmyDA9uO12Kvgb3+gg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.12.1.tgz", - "integrity": "sha512-iU/29X2D7cHBp1to62cUg/5Xk8K+lyOJiKIGGW5rdzTW/c2zz3d/ehgpzVP/rqC4NVr88MXspqHU4il5gmDajw==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.12.1.tgz", - "integrity": "sha512-+Zh+JKDwiFqV5N9yAd2DhYVGPORGh9cfenu1ptr9yge+eHAf7vZJcC3rnj6QMR1QJh0Y5VC9+YBjRFjZVA7XDw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, "node_modules/@swc/counter": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", - "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", "dev": true, "license": "Apache-2.0" }, "node_modules/@swc/plugin-react-remove-properties": { "version": "6.3.2", - "resolved": "https://registry.npmjs.org/@swc/plugin-react-remove-properties/-/plugin-react-remove-properties-6.3.2.tgz", - "integrity": "sha512-q/e5wh1kpm5DcxUrhsfA/YBCs7ZMO92wNlF0nyGu6R0Pqhu5mlcby9gQPU0Zwvn6GjYDX57T3KJncwIyVaGOYw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -4422,8 +46411,6 @@ }, "node_modules/@swc/types": { "version": "0.1.23", - "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.23.tgz", - "integrity": "sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -4432,8 +46419,6 @@ }, "node_modules/@tanstack/query-core": { "version": "4.39.2", - "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.39.2.tgz", - "integrity": "sha512-Crxng4rNDcN6bbppM/P8WiUR6JoGHY+5jJJjU7em1nJ6IUd88+AZpFAWz9ANQKL4GZOQ2CGzWEkuTL7o+rzvIw==", "license": "MIT", "funding": { "type": "github", @@ -4442,8 +46427,6 @@ }, "node_modules/@tanstack/react-query": { "version": "4.39.2", - "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.39.2.tgz", - "integrity": "sha512-SFoKo96R5HaT9o6Y5yZ2fK02+kNQr6gCyv0GIEluGZ0pcXEnIW2E06lrGuVUtUQ/o606efOYh7nl/ePpus0Q+Q==", "license": "MIT", "dependencies": { "@tanstack/query-core": "4.39.2", @@ -4469,8 +46452,6 @@ }, "node_modules/@tanstack/react-virtual": { "version": "3.13.10", - "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.13.10.tgz", - "integrity": "sha512-nvrzk4E9mWB4124YdJ7/yzwou7IfHxlSef6ugCFcBfRmsnsma3heciiiV97sBNxyc3VuwtZvmwXd0aB5BpucVw==", "license": "MIT", "dependencies": { "@tanstack/virtual-core": "3.13.10" @@ -4486,8 +46467,6 @@ }, "node_modules/@tanstack/virtual-core": { "version": "3.13.10", - "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.13.10.tgz", - "integrity": "sha512-sPEDhXREou5HyZYqSWIqdU580rsF6FGeN7vpzijmP3KTiOGjOMZASz4Y6+QKjiFQwhWrR58OP8izYaNGVxvViA==", "license": "MIT", "funding": { "type": "github", @@ -4496,8 +46475,6 @@ }, "node_modules/@theme-ui/color": { "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@theme-ui/color/-/color-0.16.2.tgz", - "integrity": "sha512-rG2GfxGmBMSYzErROjNjtFGBg1wU5mrg1w4+EwbuapTGV5ztnoihcFQlJjK0o2VybpI/4YM27r3G9eaYt0yJJg==", "license": "MIT", "dependencies": { "@theme-ui/css": "^0.16.2", @@ -4506,8 +46483,6 @@ }, "node_modules/@theme-ui/components": { "version": "0.16.1", - "resolved": "https://registry.npmjs.org/@theme-ui/components/-/components-0.16.1.tgz", - "integrity": "sha512-3v56xR8Rn9LgLzknt4TXLSvnxmAZ//lN8lW87J5yKqp+reJUPDWqItLCOv899sMRcOMpihyMfHUpBRhSG/Aeng==", "license": "MIT", "dependencies": { "@styled-system/color": "^5.1.2", @@ -4525,8 +46500,6 @@ }, "node_modules/@theme-ui/core": { "version": "0.16.1", - "resolved": "https://registry.npmjs.org/@theme-ui/core/-/core-0.16.1.tgz", - "integrity": "sha512-9Z0Fn50zdIWre0Apz3ObwfHXZ/zjw7NUhgRrSLYn/gdkJSPZZ8fcaY7Q2rnjfcrMt9DRCg5CPfQGLJqL1NY8xw==", "license": "MIT", "dependencies": { "@theme-ui/css": "^0.16.1", @@ -4539,8 +46512,6 @@ }, "node_modules/@theme-ui/css": { "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@theme-ui/css/-/css-0.16.2.tgz", - "integrity": "sha512-fNe+FhwKC5+7jQfxCRnm3oqYNhMFuiWiLA9OoLBEkt3b4egot29UK1+fqemwiNVjl206e2fPT5Z7uXRdb6LC2A==", "license": "MIT", "dependencies": { "csstype": "^3.0.10" @@ -4551,8 +46522,6 @@ }, "node_modules/@trpc/client": { "version": "10.45.2", - "resolved": "https://registry.npmjs.org/@trpc/client/-/client-10.45.2.tgz", - "integrity": "sha512-ykALM5kYWTLn1zYuUOZ2cPWlVfrXhc18HzBDyRhoPYN0jey4iQHEFSEowfnhg1RvYnrAVjNBgHNeSAXjrDbGwg==", "funding": [ "https://trpc.io/sponsor" ], @@ -4563,8 +46532,6 @@ }, "node_modules/@trpc/react-query": { "version": "10.45.2", - "resolved": "https://registry.npmjs.org/@trpc/react-query/-/react-query-10.45.2.tgz", - "integrity": "sha512-BAqb9bGZIscroradlNx+Cc9522R+idY3BOSf5z0jHUtkxdMbjeGKxSSMxxu7JzoLqSIEC+LVzL3VvF8sdDWaZQ==", "funding": [ "https://trpc.io/sponsor" ], @@ -4579,8 +46546,6 @@ }, "node_modules/@trpc/server": { "version": "10.45.2", - "resolved": "https://registry.npmjs.org/@trpc/server/-/server-10.45.2.tgz", - "integrity": "sha512-wOrSThNNE4HUnuhJG6PfDRp4L2009KDVxsd+2VYH8ro6o/7/jwYZ8Uu5j+VaW+mOmc8EHerHzGcdbGNQSAUPgg==", "dev": true, "funding": [ "https://trpc.io/sponsor" @@ -4589,8 +46554,6 @@ }, "node_modules/@types/babel__core": { "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "license": "MIT", "dependencies": { @@ -4603,8 +46566,6 @@ }, "node_modules/@types/babel__generator": { "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", - "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", "dev": true, "license": "MIT", "dependencies": { @@ -4613,8 +46574,6 @@ }, "node_modules/@types/babel__template": { "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "license": "MIT", "dependencies": { @@ -4624,8 +46583,6 @@ }, "node_modules/@types/babel__traverse": { "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", - "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", "dev": true, "license": "MIT", "dependencies": { @@ -4634,8 +46591,6 @@ }, "node_modules/@types/debug": { "version": "4.1.12", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", "license": "MIT", "dependencies": { "@types/ms": "*" @@ -4643,29 +46598,21 @@ }, "node_modules/@types/estree": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", - "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", "dev": true, "license": "MIT" }, "node_modules/@types/event-source-polyfill": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/event-source-polyfill/-/event-source-polyfill-1.0.5.tgz", - "integrity": "sha512-iaiDuDI2aIFft7XkcwMzDWLqo7LVDixd2sR6B4wxJut9xcp/Ev9bO4EFg4rm6S9QxATLBj5OPxdeocgmhjwKaw==", "dev": true, "license": "MIT" }, "node_modules/@types/file-saver": { "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.7.tgz", - "integrity": "sha512-dNKVfHd/jk0SkR/exKGj2ggkB45MAkzvWCaqLUUgkyjITkGNzH8H+yUwr+BLJUBjZOe9w8X3wgmXhZDRg1ED6A==", "dev": true, "license": "MIT" }, "node_modules/@types/hast": { "version": "2.3.10", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", - "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", "license": "MIT", "dependencies": { "@types/unist": "^2" @@ -4673,21 +46620,15 @@ }, "node_modules/@types/json-schema": { "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true, "license": "MIT" }, "node_modules/@types/katex": { "version": "0.16.7", - "resolved": "https://registry.npmjs.org/@types/katex/-/katex-0.16.7.tgz", - "integrity": "sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==", "license": "MIT" }, "node_modules/@types/marked": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@types/marked/-/marked-6.0.0.tgz", - "integrity": "sha512-jmjpa4BwUsmhxcfsgUit/7A9KbrC48Q0q8KvnY107ogcjGgTFDlIL3RpihNpx2Mu1hM4mdFQjoVc4O6JoGKHsA==", "deprecated": "This is a stub types definition. marked provides its own type definitions, so you do not need this installed.", "dev": true, "license": "MIT", @@ -4697,8 +46638,6 @@ }, "node_modules/@types/mdast": { "version": "3.0.15", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", - "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", "license": "MIT", "dependencies": { "@types/unist": "^2" @@ -4706,14 +46645,10 @@ }, "node_modules/@types/ms": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", - "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", "license": "MIT" }, "node_modules/@types/node": { "version": "24.0.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.3.tgz", - "integrity": "sha512-R4I/kzCYAdRLzfiCabn9hxWfbuHS573x+r0dJMkkzThEa7pbrcDWK+9zu3e7aBOouf+rQAciqPFMnxwr0aWgKg==", "dev": true, "license": "MIT", "dependencies": { @@ -4722,8 +46657,6 @@ }, "node_modules/@types/node-fetch": { "version": "2.6.12", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==", "dev": true, "license": "MIT", "dependencies": { @@ -4733,34 +46666,24 @@ }, "node_modules/@types/parse-json": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "license": "MIT" }, "node_modules/@types/parse5": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", - "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==", "license": "MIT" }, "node_modules/@types/platform": { "version": "1.3.6", - "resolved": "https://registry.npmjs.org/@types/platform/-/platform-1.3.6.tgz", - "integrity": "sha512-ZmSaqHuvzv+jC232cFoz2QqPUkaj6EvMmCrWcx3WRr7xTPVFCMUOTcOq8m2d+Zw1iKRc1kDiaA+jtNrV0hkVew==", "dev": true, "license": "MIT" }, "node_modules/@types/prop-types": { "version": "15.7.15", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", - "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", "dev": true, "license": "MIT" }, "node_modules/@types/react": { "version": "18.3.5", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.5.tgz", - "integrity": "sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==", "dev": true, "license": "MIT", "dependencies": { @@ -4770,8 +46693,6 @@ }, "node_modules/@types/react-avatar-editor": { "version": "13.0.4", - "resolved": "https://registry.npmjs.org/@types/react-avatar-editor/-/react-avatar-editor-13.0.4.tgz", - "integrity": "sha512-WQjmacEOoEYQb6CkAXYspmtruCPXFzLjEI92zV27yqveGBRkh7Quo5oYMvAgaEeqpXsGEr/wzXcdSTaH982Wtg==", "dev": true, "license": "MIT", "dependencies": { @@ -4780,8 +46701,6 @@ }, "node_modules/@types/react-dom": { "version": "18.3.0", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", - "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", "dev": true, "license": "MIT", "dependencies": { @@ -4790,8 +46709,6 @@ }, "node_modules/@types/react-modal": { "version": "3.16.3", - "resolved": "https://registry.npmjs.org/@types/react-modal/-/react-modal-3.16.3.tgz", - "integrity": "sha512-xXuGavyEGaFQDgBv4UVm8/ZsG+qxeQ7f77yNrW3n+1J6XAstUy5rYHeIHPh1KzsGc6IkCIdu6lQ2xWzu1jBTLg==", "dev": true, "license": "MIT", "dependencies": { @@ -4800,8 +46717,6 @@ }, "node_modules/@types/react-scroll-sync": { "version": "0.9.0", - "resolved": "https://registry.npmjs.org/@types/react-scroll-sync/-/react-scroll-sync-0.9.0.tgz", - "integrity": "sha512-DFJzqtF0lMUNxsKZ9aoFS+LGieGLXWQVWvCMTZWKm/qcGz+GCNTqwdHsnyWW3yy/aNSUxlXCAWdHaemGaES6lQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4810,15 +46725,11 @@ }, "node_modules/@types/resolve": { "version": "1.20.2", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", - "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", "dev": true, "license": "MIT" }, "node_modules/@types/styled-system": { "version": "5.1.23", - "resolved": "https://registry.npmjs.org/@types/styled-system/-/styled-system-5.1.23.tgz", - "integrity": "sha512-mIwCCdhDa2ifdQCEm8ZeD8m4UEbFsokqEoT9YNOUv4alUJ8jbMKxvpr+oOwfuZgwqLh5HjWuEzwnX7DzWvjFBg==", "license": "MIT", "dependencies": { "csstype": "^3.0.2" @@ -4826,28 +46737,20 @@ }, "node_modules/@types/trusted-types": { "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", - "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", "dev": true, "license": "MIT" }, "node_modules/@types/unist": { "version": "2.0.11", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", - "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", "license": "MIT" }, "node_modules/@types/wicg-file-system-access": { "version": "2023.10.6", - "resolved": "https://registry.npmjs.org/@types/wicg-file-system-access/-/wicg-file-system-access-2023.10.6.tgz", - "integrity": "sha512-YO/183gNRzZFSdKu+ikkD7ambAj4PhgjFAF2A/Mw/7wroSF6ne8r804RkpZzqrJ/F6DO2/IYlQF/ULOZ/bhKyA==", "dev": true, "license": "MIT" }, "node_modules/@vitejs/plugin-react-swc": { "version": "3.10.2", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.10.2.tgz", - "integrity": "sha512-xD3Rdvrt5LgANug7WekBn1KhcvLn1H3jNBfJRL3reeOIua/WnZOEV5qi5qIBq5T8R0jUDmRtxuvk4bPhzGHDWw==", "dev": true, "license": "MIT", "dependencies": { @@ -4860,8 +46763,6 @@ }, "node_modules/@vitest/expect": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-2.1.8.tgz", - "integrity": "sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==", "dev": true, "license": "MIT", "dependencies": { @@ -4876,8 +46777,6 @@ }, "node_modules/@vitest/mocker": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-2.1.8.tgz", - "integrity": "sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==", "dev": true, "license": "MIT", "dependencies": { @@ -4903,8 +46802,6 @@ }, "node_modules/@vitest/mocker/node_modules/estree-walker": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dev": true, "license": "MIT", "dependencies": { @@ -4913,8 +46810,6 @@ }, "node_modules/@vitest/pretty-format": { "version": "2.1.9", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.9.tgz", - "integrity": "sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4926,8 +46821,6 @@ }, "node_modules/@vitest/runner": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-2.1.8.tgz", - "integrity": "sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==", "dev": true, "license": "MIT", "dependencies": { @@ -4940,8 +46833,6 @@ }, "node_modules/@vitest/snapshot": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-2.1.8.tgz", - "integrity": "sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==", "dev": true, "license": "MIT", "dependencies": { @@ -4955,8 +46846,6 @@ }, "node_modules/@vitest/snapshot/node_modules/@vitest/pretty-format": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.8.tgz", - "integrity": "sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4968,8 +46857,6 @@ }, "node_modules/@vitest/spy": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-2.1.8.tgz", - "integrity": "sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==", "dev": true, "license": "MIT", "dependencies": { @@ -4981,8 +46868,6 @@ }, "node_modules/@vitest/utils": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.8.tgz", - "integrity": "sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==", "dev": true, "license": "MIT", "dependencies": { @@ -4996,8 +46881,6 @@ }, "node_modules/@vitest/utils/node_modules/@vitest/pretty-format": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-2.1.8.tgz", - "integrity": "sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5009,8 +46892,6 @@ }, "node_modules/@zip.js/zip.js": { "version": "2.7.62", - "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.62.tgz", - "integrity": "sha512-OaLvZ8j4gCkLn048ypkZu29KX30r8/OfFF2w4Jo5WXFr+J04J+lzJ5TKZBVgFXhlvSkqNFQdfnY1Q8TMTCyBVA==", "license": "BSD-3-Clause", "engines": { "bun": ">=0.7.0", @@ -5020,15 +46901,11 @@ }, "node_modules/abbrev": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "license": "ISC", "optional": true }, "node_modules/acorn": { "version": "8.16.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", - "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "dev": true, "license": "MIT", "bin": { @@ -5040,8 +46917,6 @@ }, "node_modules/agent-base": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "license": "MIT", "optional": true, "dependencies": { @@ -5053,8 +46928,6 @@ }, "node_modules/ajv": { "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", "dependencies": { @@ -5070,8 +46943,6 @@ }, "node_modules/ajv-keywords": { "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, "license": "MIT", "peerDependencies": { @@ -5080,8 +46951,6 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "devOptional": true, "license": "MIT", "engines": { @@ -5090,8 +46959,6 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "license": "MIT", "dependencies": { @@ -5106,16 +46973,11 @@ }, "node_modules/aproba": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "license": "ISC", "optional": true }, "node_modules/are-we-there-yet": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "deprecated": "This package is no longer supported.", "license": "ISC", "optional": true, "dependencies": { @@ -5128,8 +46990,6 @@ }, "node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -5137,8 +46997,6 @@ }, "node_modules/array-buffer-byte-length": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", - "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", "dev": true, "license": "MIT", "dependencies": { @@ -5154,8 +47012,6 @@ }, "node_modules/arraybuffer.prototype.slice": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", - "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5176,8 +47032,6 @@ }, "node_modules/assertion-error": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", - "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", "dev": true, "license": "MIT", "engines": { @@ -5186,15 +47040,11 @@ }, "node_modules/async": { "version": "3.2.6", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", - "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", "dev": true, "license": "MIT" }, "node_modules/async-function": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", - "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", "dev": true, "license": "MIT", "engines": { @@ -5203,8 +47053,6 @@ }, "node_modules/async-mutex": { "version": "0.5.0", - "resolved": "https://registry.npmjs.org/async-mutex/-/async-mutex-0.5.0.tgz", - "integrity": "sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==", "license": "MIT", "dependencies": { "tslib": "^2.4.0" @@ -5212,14 +47060,10 @@ }, "node_modules/asynckit": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "license": "MIT" }, "node_modules/at-least-node": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, "license": "ISC", "engines": { @@ -5228,8 +47072,6 @@ }, "node_modules/attr-accept": { "version": "2.2.5", - "resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.5.tgz", - "integrity": "sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ==", "license": "MIT", "engines": { "node": ">=4" @@ -5237,8 +47079,6 @@ }, "node_modules/autoprefixer": { "version": "10.4.21", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", - "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", "dev": true, "funding": [ { @@ -5275,8 +47115,6 @@ }, "node_modules/available-typed-arrays": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5291,8 +47129,6 @@ }, "node_modules/axios": { "version": "1.10.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz", - "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==", "license": "MIT", "dependencies": { "follow-redirects": "^1.15.6", @@ -5302,8 +47138,6 @@ }, "node_modules/babel-plugin-macros": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5", @@ -5317,8 +47151,6 @@ }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.4.13", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz", - "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==", "license": "MIT", "dependencies": { "@babel/compat-data": "^7.22.6", @@ -5331,8 +47163,6 @@ }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.11.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", - "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.3", @@ -5344,8 +47174,6 @@ }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.6.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz", - "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==", "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.4" @@ -5356,8 +47184,6 @@ }, "node_modules/bail": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", "license": "MIT", "funding": { "type": "github", @@ -5366,15 +47192,11 @@ }, "node_modules/balanced-match": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "devOptional": true, "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "funding": [ { "type": "github", @@ -5393,8 +47215,6 @@ }, "node_modules/baseline-browser-mapping": { "version": "2.9.8", - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.8.tgz", - "integrity": "sha512-Y1fOuNDowLfgKOypdc9SPABfoWXuZHBOyCS4cD52IeZBhr4Md6CLLs6atcxVrzRmQ06E7hSlm5bHHApPKR/byA==", "license": "Apache-2.0", "bin": { "baseline-browser-mapping": "dist/cli.js" @@ -5402,8 +47222,6 @@ }, "node_modules/better-sqlite3-multiple-ciphers": { "version": "11.5.0", - "resolved": "https://registry.npmjs.org/better-sqlite3-multiple-ciphers/-/better-sqlite3-multiple-ciphers-11.5.0.tgz", - "integrity": "sha512-t2RpIBaw6DYk8RNZjrqCLRoznBcIqownpd90spHpHVrJa+YYN/NOLoTlj1iLBS754yiYWL6uXgx4x+0E1Z5q8Q==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -5414,8 +47232,6 @@ }, "node_modules/big.js": { "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, "license": "MIT", "engines": { @@ -5424,8 +47240,6 @@ }, "node_modules/bindings": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5434,8 +47248,6 @@ }, "node_modules/bl": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "license": "MIT", "dependencies": { @@ -5446,8 +47258,6 @@ }, "node_modules/bl/node_modules/buffer": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { @@ -5471,14 +47281,10 @@ }, "node_modules/boolbase": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "license": "ISC" }, "node_modules/brace-expansion": { "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "devOptional": true, "license": "MIT", "dependencies": { @@ -5488,8 +47294,6 @@ }, "node_modules/browserslist": { "version": "4.28.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", - "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", "funding": [ { "type": "opencollective", @@ -5521,8 +47325,6 @@ }, "node_modules/buffer": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "dev": true, "funding": [ { @@ -5546,15 +47348,11 @@ }, "node_modules/buffer-from": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true, "license": "MIT" }, "node_modules/cac": { "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "dev": true, "license": "MIT", "engines": { @@ -5563,8 +47361,6 @@ }, "node_modules/call-bind": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", - "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dev": true, "license": "MIT", "dependencies": { @@ -5582,8 +47378,6 @@ }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", @@ -5595,8 +47389,6 @@ }, "node_modules/call-bound": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", "dev": true, "license": "MIT", "dependencies": { @@ -5612,8 +47404,6 @@ }, "node_modules/callsites": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "license": "MIT", "engines": { "node": ">=6" @@ -5621,8 +47411,6 @@ }, "node_modules/camelcase": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "license": "MIT", "engines": { @@ -5634,8 +47422,6 @@ }, "node_modules/caniuse-lite": { "version": "1.0.30001760", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001760.tgz", - "integrity": "sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==", "funding": [ { "type": "opencollective", @@ -5654,8 +47440,6 @@ }, "node_modules/canvas": { "version": "2.11.2", - "resolved": "https://registry.npmjs.org/canvas/-/canvas-2.11.2.tgz", - "integrity": "sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==", "hasInstallScript": true, "license": "MIT", "optional": true, @@ -5670,8 +47454,6 @@ }, "node_modules/ccount": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", "license": "MIT", "funding": { "type": "github", @@ -5680,8 +47462,6 @@ }, "node_modules/chai": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz", - "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==", "dev": true, "license": "MIT", "dependencies": { @@ -5697,8 +47477,6 @@ }, "node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "license": "MIT", "dependencies": { @@ -5714,8 +47492,6 @@ }, "node_modules/character-entities": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", "license": "MIT", "funding": { "type": "github", @@ -5724,8 +47500,6 @@ }, "node_modules/character-entities-html4": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", "license": "MIT", "funding": { "type": "github", @@ -5734,8 +47508,6 @@ }, "node_modules/character-entities-legacy": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", "license": "MIT", "funding": { "type": "github", @@ -5744,8 +47516,6 @@ }, "node_modules/check-error": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.1.tgz", - "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", "dev": true, "license": "MIT", "engines": { @@ -5754,8 +47524,6 @@ }, "node_modules/chownr": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "license": "ISC", "optional": true, "engines": { @@ -5764,14 +47532,10 @@ }, "node_modules/clipboard-polyfill": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/clipboard-polyfill/-/clipboard-polyfill-4.1.0.tgz", - "integrity": "sha512-ksMESxI9ermQxE3hOC4DGwfjmrAxuHVtwQoJMsy06ylpaY4ybISb6y21yJ17xg9EO9ZVWvzSLIkJRlO93E8Gng==", "license": "MIT" }, "node_modules/cliui": { "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "license": "ISC", "dependencies": { @@ -5785,8 +47549,6 @@ }, "node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5798,15 +47560,11 @@ }, "node_modules/color-name": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, "license": "MIT" }, "node_modules/color-support": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "license": "ISC", "optional": true, "bin": { @@ -5815,8 +47573,6 @@ }, "node_modules/combined-stream": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" @@ -5827,14 +47583,10 @@ }, "node_modules/comlink": { "version": "4.4.2", - "resolved": "https://registry.npmjs.org/comlink/-/comlink-4.4.2.tgz", - "integrity": "sha512-OxGdvBmJuNKSCMO4NTl1L47VRp6xn2wG4F/2hYzB6tiCb709otOxtEYCSvK80PtjODfXXZu8ds+Nw5kVCjqd2g==", "license": "Apache-2.0" }, "node_modules/comma-separated-tokens": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "license": "MIT", "funding": { "type": "github", @@ -5843,8 +47595,6 @@ }, "node_modules/commander": { "version": "12.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", - "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", "dev": true, "license": "MIT", "engines": { @@ -5853,8 +47603,6 @@ }, "node_modules/common-tags": { "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true, "license": "MIT", "engines": { @@ -5863,28 +47611,20 @@ }, "node_modules/concat-map": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "devOptional": true, "license": "MIT" }, "node_modules/console-control-strings": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "license": "ISC", "optional": true }, "node_modules/convert-source-map": { "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "license": "MIT" }, "node_modules/core-js-compat": { "version": "3.43.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.43.0.tgz", - "integrity": "sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA==", "license": "MIT", "dependencies": { "browserslist": "^4.25.0" @@ -5896,8 +47636,6 @@ }, "node_modules/cosmiconfig": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", @@ -5912,8 +47650,6 @@ }, "node_modules/cronosjs": { "version": "1.7.1", - "resolved": "https://registry.npmjs.org/cronosjs/-/cronosjs-1.7.1.tgz", - "integrity": "sha512-d6S6+ep7dJxsAG8OQQCdKuByI/S/AV64d9OF5mtmcykOyPu92cAkAnF3Tbc9s5oOaLQBYYQmTNvjqYRkPJ/u5Q==", "license": "ISC", "engines": { "node": ">=8.0.0" @@ -5921,8 +47657,6 @@ }, "node_modules/crypto-random-string": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "dev": true, "license": "MIT", "engines": { @@ -5931,8 +47665,6 @@ }, "node_modules/css-select": { "version": "5.2.2", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.2.2.tgz", - "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -5947,8 +47679,6 @@ }, "node_modules/css-what": { "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", - "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -5959,14 +47689,10 @@ }, "node_modules/csstype": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", "license": "MIT" }, "node_modules/data-view-buffer": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", - "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5983,8 +47709,6 @@ }, "node_modules/data-view-byte-length": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", - "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6001,8 +47725,6 @@ }, "node_modules/data-view-byte-offset": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", - "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6019,14 +47741,10 @@ }, "node_modules/dayjs": { "version": "1.11.13", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", - "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==", "license": "MIT" }, "node_modules/debug": { "version": "4.4.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", - "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -6042,8 +47760,6 @@ }, "node_modules/decode-named-character-reference": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", - "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==", "license": "MIT", "dependencies": { "character-entities": "^2.0.0" @@ -6055,8 +47771,6 @@ }, "node_modules/decompress-response": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6071,8 +47785,6 @@ }, "node_modules/decompress-response/node_modules/mimic-response": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "dev": true, "license": "MIT", "engines": { @@ -6084,8 +47796,6 @@ }, "node_modules/deep-eql": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", - "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", "dev": true, "license": "MIT", "engines": { @@ -6094,8 +47804,6 @@ }, "node_modules/deep-extend": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, "license": "MIT", "engines": { @@ -6104,8 +47812,6 @@ }, "node_modules/deepmerge": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -6113,8 +47819,6 @@ }, "node_modules/define-data-property": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "license": "MIT", "dependencies": { @@ -6131,8 +47835,6 @@ }, "node_modules/define-lazy-prop": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, "license": "MIT", "engines": { @@ -6141,8 +47843,6 @@ }, "node_modules/define-properties": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "license": "MIT", "dependencies": { @@ -6159,8 +47859,6 @@ }, "node_modules/delayed-stream": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "license": "MIT", "engines": { "node": ">=0.4.0" @@ -6168,15 +47866,11 @@ }, "node_modules/delegates": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", "license": "MIT", "optional": true }, "node_modules/dequal": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "license": "MIT", "engines": { "node": ">=6" @@ -6184,8 +47878,6 @@ }, "node_modules/detect-libc": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", - "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", "devOptional": true, "license": "Apache-2.0", "engines": { @@ -6194,8 +47886,6 @@ }, "node_modules/diff": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" @@ -6203,8 +47893,6 @@ }, "node_modules/diffblazer": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/diffblazer/-/diffblazer-1.0.1.tgz", - "integrity": "sha512-aBQUrBdpDYqqVf/8tlLh0JVRw/IBFlLQR7Wgn3/8kO54cq+HRcPuT/JUbbm/136hutuRFXzWERDIS/lX3HViYg==", "license": "MIT", "dependencies": { "htmlparser2": "^9.0.0" @@ -6212,8 +47900,6 @@ }, "node_modules/diffblazer/node_modules/entities": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -6224,8 +47910,6 @@ }, "node_modules/diffblazer/node_modules/htmlparser2": { "version": "9.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz", - "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -6243,8 +47927,6 @@ }, "node_modules/dom-serializer": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", @@ -6257,8 +47939,6 @@ }, "node_modules/dom-serializer/node_modules/entities": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -6269,8 +47949,6 @@ }, "node_modules/domelementtype": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", @@ -6281,8 +47959,6 @@ }, "node_modules/domhandler": { "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" @@ -6296,8 +47972,6 @@ }, "node_modules/domutils": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", @@ -6310,8 +47984,6 @@ }, "node_modules/dot-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "license": "MIT", "dependencies": { @@ -6321,8 +47993,6 @@ }, "node_modules/dotenv": { "version": "16.4.7", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", - "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -6334,15 +48004,11 @@ }, "node_modules/dotenv-expand": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", "dev": true, "license": "BSD-2-Clause" }, "node_modules/dunder-proto": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", @@ -6355,8 +48021,6 @@ }, "node_modules/ejs": { "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -6371,14 +48035,10 @@ }, "node_modules/electron-to-chromium": { "version": "1.5.267", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz", - "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==", "license": "ISC" }, "node_modules/electron-trpc": { "version": "0.7.1", - "resolved": "https://registry.npmjs.org/electron-trpc/-/electron-trpc-0.7.1.tgz", - "integrity": "sha512-aWjZ5pLeVhrX9A9d8O8YgR8N+q4IXXzc76CJT1PwtDijIw+y5I+c75IAAtZ4JayYLeR3ll95PNGl5RTBu2qePw==", "license": "MIT", "dependencies": { "debug": "^4.3.4" @@ -6391,15 +48051,11 @@ }, "node_modules/emoji-regex": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "devOptional": true, "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, "license": "MIT", "engines": { @@ -6408,8 +48064,6 @@ }, "node_modules/end-of-stream": { "version": "1.4.5", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", - "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", "dev": true, "license": "MIT", "dependencies": { @@ -6418,8 +48072,6 @@ }, "node_modules/entities": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", - "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -6430,8 +48082,6 @@ }, "node_modules/error-ex": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" @@ -6439,8 +48089,6 @@ }, "node_modules/es-abstract": { "version": "1.24.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", - "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", "dev": true, "license": "MIT", "dependencies": { @@ -6508,8 +48156,6 @@ }, "node_modules/es-define-property": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", - "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -6517,8 +48163,6 @@ }, "node_modules/es-errors": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -6526,15 +48170,11 @@ }, "node_modules/es-module-lexer": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", - "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", "dev": true, "license": "MIT" }, "node_modules/es-object-atoms": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", - "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0" @@ -6545,8 +48185,6 @@ }, "node_modules/es-set-tostringtag": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", - "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "license": "MIT", "dependencies": { "es-errors": "^1.3.0", @@ -6560,8 +48198,6 @@ }, "node_modules/es-to-primitive": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", - "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "dev": true, "license": "MIT", "dependencies": { @@ -6578,8 +48214,6 @@ }, "node_modules/esbuild": { "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -6617,8 +48251,6 @@ }, "node_modules/escalade": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "license": "MIT", "engines": { "node": ">=6" @@ -6626,8 +48258,6 @@ }, "node_modules/escape-string-regexp": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "license": "MIT", "engines": { "node": ">=10" @@ -6638,8 +48268,6 @@ }, "node_modules/esprima": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", @@ -6651,15 +48279,11 @@ }, "node_modules/estree-walker": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true, "license": "MIT" }, "node_modules/esutils": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -6668,26 +48292,18 @@ }, "node_modules/event-source-polyfill": { "version": "1.0.31", - "resolved": "https://registry.npmjs.org/event-source-polyfill/-/event-source-polyfill-1.0.31.tgz", - "integrity": "sha512-4IJSItgS/41IxN5UVAVuAyczwZF7ZIEsM1XAoUzIHA6A+xzusEZUutdXz2Nr+MQPLxfTiCvqE79/C8HT8fKFvA==", "license": "MIT" }, "node_modules/eventemitter3": { "version": "5.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", - "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", "license": "MIT" }, "node_modules/exenv": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==", "license": "BSD-3-Clause" }, "node_modules/expand-template": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", "dev": true, "license": "(MIT OR WTFPL)", "engines": { @@ -6696,8 +48312,6 @@ }, "node_modules/expect-type": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.2.1.tgz", - "integrity": "sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -6706,14 +48320,10 @@ }, "node_modules/extend": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "license": "MIT" }, "node_modules/extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" @@ -6724,22 +48334,16 @@ }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true, "license": "MIT" }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true, "license": "MIT" }, "node_modules/fast-uri": { "version": "3.0.6", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", - "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", "dev": true, "funding": [ { @@ -6755,8 +48359,6 @@ }, "node_modules/fdir": { "version": "6.4.6", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", - "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==", "dev": true, "license": "MIT", "peerDependencies": { @@ -6770,14 +48372,10 @@ }, "node_modules/fflate": { "version": "0.8.2", - "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", - "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", "license": "MIT" }, "node_modules/file-loader": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", "dev": true, "license": "MIT", "dependencies": { @@ -6797,14 +48395,10 @@ }, "node_modules/file-saver": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz", - "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==", "license": "MIT" }, "node_modules/file-selector": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/file-selector/-/file-selector-2.1.2.tgz", - "integrity": "sha512-QgXo+mXTe8ljeqUFaX3QVHc5osSItJ/Km+xpocx0aSqWGMSCf6qYs/VnzZgS864Pjn5iceMRFigeAV7AfTlaig==", "license": "MIT", "dependencies": { "tslib": "^2.7.0" @@ -6815,15 +48409,11 @@ }, "node_modules/file-uri-to-path": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "dev": true, "license": "MIT" }, "node_modules/filelist": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -6832,8 +48422,6 @@ }, "node_modules/filelist/node_modules/brace-expansion": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, "license": "MIT", "dependencies": { @@ -6842,8 +48430,6 @@ }, "node_modules/filelist/node_modules/minimatch": { "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "license": "ISC", "dependencies": { @@ -6855,8 +48441,6 @@ }, "node_modules/find-process": { "version": "1.4.10", - "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.10.tgz", - "integrity": "sha512-ncYFnWEIwL7PzmrK1yZtaccN8GhethD37RzBHG6iOZoFYB4vSmLLXfeWJjeN5nMvCJMjOtBvBBF8OgxEcikiZg==", "dev": true, "license": "MIT", "dependencies": { @@ -6870,14 +48454,10 @@ }, "node_modules/find-root": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", "license": "MIT" }, "node_modules/follow-redirects": { "version": "1.15.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", - "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "funding": [ { "type": "individual", @@ -6896,8 +48476,6 @@ }, "node_modules/for-each": { "version": "0.3.5", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", - "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "dev": true, "license": "MIT", "dependencies": { @@ -6912,8 +48490,6 @@ }, "node_modules/form-data": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", - "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -6928,8 +48504,6 @@ }, "node_modules/fraction.js": { "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, "license": "MIT", "engines": { @@ -6942,15 +48516,11 @@ }, "node_modules/fs-constants": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true, "license": "MIT" }, "node_modules/fs-minipass": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "license": "ISC", "optional": true, "dependencies": { @@ -6962,8 +48532,6 @@ }, "node_modules/fs-minipass/node_modules/minipass": { "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "license": "ISC", "optional": true, "dependencies": { @@ -6975,24 +48543,17 @@ }, "node_modules/fs-minipass/node_modules/yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "license": "ISC", "optional": true }, "node_modules/fs.realpath": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "devOptional": true, "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "hasInstallScript": true, "license": "MIT", "optional": true, "os": [ @@ -7004,8 +48565,6 @@ }, "node_modules/function-bind": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -7013,8 +48572,6 @@ }, "node_modules/function.prototype.name": { "version": "1.1.8", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", - "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", "dev": true, "license": "MIT", "dependencies": { @@ -7034,8 +48591,6 @@ }, "node_modules/functions-have-names": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, "license": "MIT", "funding": { @@ -7044,9 +48599,6 @@ }, "node_modules/gauge": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "deprecated": "This package is no longer supported.", "license": "ISC", "optional": true, "dependencies": { @@ -7066,8 +48618,6 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "license": "MIT", "engines": { @@ -7076,8 +48626,6 @@ }, "node_modules/get-caller-file": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "license": "ISC", "engines": { @@ -7086,8 +48634,6 @@ }, "node_modules/get-intrinsic": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", - "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.2", @@ -7110,15 +48656,11 @@ }, "node_modules/get-own-enumerable-property-symbols": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", "dev": true, "license": "ISC" }, "node_modules/get-proto": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "license": "MIT", "dependencies": { "dunder-proto": "^1.0.1", @@ -7130,8 +48672,6 @@ }, "node_modules/get-symbol-description": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", - "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", "dev": true, "license": "MIT", "dependencies": { @@ -7148,16 +48688,11 @@ }, "node_modules/github-from-package": { "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", "dev": true, "license": "MIT" }, "node_modules/glob": { "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", "devOptional": true, "license": "ISC", "dependencies": { @@ -7177,8 +48712,6 @@ }, "node_modules/globals": { "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "license": "MIT", "engines": { "node": ">=4" @@ -7186,8 +48719,6 @@ }, "node_modules/globalthis": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", - "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, "license": "MIT", "dependencies": { @@ -7203,8 +48734,6 @@ }, "node_modules/goober": { "version": "2.1.16", - "resolved": "https://registry.npmjs.org/goober/-/goober-2.1.16.tgz", - "integrity": "sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g==", "license": "MIT", "peerDependencies": { "csstype": "^3.0.10" @@ -7212,8 +48741,6 @@ }, "node_modules/gopd": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -7224,15 +48751,11 @@ }, "node_modules/graceful-fs": { "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true, "license": "ISC" }, "node_modules/gray-matter": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", - "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", "license": "MIT", "dependencies": { "js-yaml": "^3.13.1", @@ -7246,8 +48769,6 @@ }, "node_modules/happy-dom": { "version": "16.0.1", - "resolved": "https://registry.npmjs.org/happy-dom/-/happy-dom-16.0.1.tgz", - "integrity": "sha512-cqbqvutE6XAIMe4nM93TkbW5SDFtLkU/6nsQfJBJ2KSlaT+My2kmnYsCFXrvEzvmP7s1xGJ6Xt4D9LNJIJHMbA==", "dev": true, "license": "MIT", "dependencies": { @@ -7260,8 +48781,6 @@ }, "node_modules/has-bigints": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", - "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "dev": true, "license": "MIT", "engines": { @@ -7273,8 +48792,6 @@ }, "node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "license": "MIT", "engines": { @@ -7283,8 +48800,6 @@ }, "node_modules/has-property-descriptors": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "license": "MIT", "dependencies": { @@ -7296,8 +48811,6 @@ }, "node_modules/has-proto": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", - "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", "dev": true, "license": "MIT", "dependencies": { @@ -7312,8 +48825,6 @@ }, "node_modules/has-symbols": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -7324,8 +48835,6 @@ }, "node_modules/has-tostringtag": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "license": "MIT", "dependencies": { "has-symbols": "^1.0.3" @@ -7339,21 +48848,15 @@ }, "node_modules/has-unicode": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", "license": "ISC", "optional": true }, "node_modules/hash-wasm": { "version": "4.12.0", - "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.12.0.tgz", - "integrity": "sha512-+/2B2rYLb48I/evdOIhP+K/DD2ca2fgBjp6O+GBEnCDk2e4rpeXIK8GvIyRPjTezgmWn9gmKwkQjjx6BtqDHVQ==", "license": "MIT" }, "node_modules/hasown": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "license": "MIT", "dependencies": { "function-bind": "^1.1.2" @@ -7364,8 +48867,6 @@ }, "node_modules/hast-util-from-parse5": { "version": "7.1.2", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", - "integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -7383,8 +48884,6 @@ }, "node_modules/hast-util-is-element": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.3.tgz", - "integrity": "sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -7397,8 +48896,6 @@ }, "node_modules/hast-util-parse-selector": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", - "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0" @@ -7410,8 +48907,6 @@ }, "node_modules/hast-util-raw": { "version": "7.2.3", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.3.tgz", - "integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -7433,8 +48928,6 @@ }, "node_modules/hast-util-raw/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -7448,8 +48941,6 @@ }, "node_modules/hast-util-to-html": { "version": "8.0.4", - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-8.0.4.tgz", - "integrity": "sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -7471,8 +48962,6 @@ }, "node_modules/hast-util-to-parse5": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz", - "integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -7489,8 +48978,6 @@ }, "node_modules/hast-util-whitespace": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", - "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", "license": "MIT", "funding": { "type": "opencollective", @@ -7499,8 +48986,6 @@ }, "node_modules/hastscript": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", - "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -7516,8 +49001,6 @@ }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "license": "BSD-3-Clause", "dependencies": { "react-is": "^16.7.0" @@ -7525,8 +49008,6 @@ }, "node_modules/hotkeys-js": { "version": "3.13.12", - "resolved": "https://registry.npmjs.org/hotkeys-js/-/hotkeys-js-3.13.12.tgz", - "integrity": "sha512-c3QvLhHpML8lQa7mOAhPhU5aPBiE4O3AeUQDdtnZsX8NpmiHz5QdeapUNtl73kwq1K2o6jNOEHDztLa26dJpng==", "license": "MIT", "funding": { "url": "https://jaywcjlove.github.io/#/sponsor" @@ -7534,8 +49015,6 @@ }, "node_modules/html-void-elements": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz", - "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==", "license": "MIT", "funding": { "type": "github", @@ -7544,8 +49023,6 @@ }, "node_modules/htmlparser2": { "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -7563,8 +49040,6 @@ }, "node_modules/htmlparser2/node_modules/entities": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -7575,8 +49050,6 @@ }, "node_modules/https-proxy-agent": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "license": "MIT", "optional": true, "dependencies": { @@ -7589,15 +49062,11 @@ }, "node_modules/idb": { "version": "7.1.1", - "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", - "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", "dev": true, "license": "ISC" }, "node_modules/ieee754": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { @@ -7617,8 +49086,6 @@ }, "node_modules/import-fresh": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "license": "MIT", "dependencies": { "parent-module": "^1.0.0", @@ -7633,9 +49100,6 @@ }, "node_modules/inflight": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "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.", "devOptional": true, "license": "ISC", "dependencies": { @@ -7645,22 +49109,16 @@ }, "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "devOptional": true, "license": "ISC" }, "node_modules/ini": { "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true, "license": "ISC" }, "node_modules/internal-slot": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", - "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "dev": true, "license": "MIT", "dependencies": { @@ -7674,15 +49132,11 @@ }, "node_modules/ip": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz", - "integrity": "sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==", "dev": true, "license": "MIT" }, "node_modules/is-array-buffer": { "version": "3.0.5", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", - "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "dev": true, "license": "MIT", "dependencies": { @@ -7699,14 +49153,10 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "license": "MIT" }, "node_modules/is-async-function": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", - "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", "dev": true, "license": "MIT", "dependencies": { @@ -7725,8 +49175,6 @@ }, "node_modules/is-bigint": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", - "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dev": true, "license": "MIT", "dependencies": { @@ -7741,8 +49189,6 @@ }, "node_modules/is-boolean-object": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", - "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", "dev": true, "license": "MIT", "dependencies": { @@ -7758,8 +49204,6 @@ }, "node_modules/is-buffer": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", "funding": [ { "type": "github", @@ -7781,8 +49225,6 @@ }, "node_modules/is-callable": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "license": "MIT", "engines": { @@ -7794,8 +49236,6 @@ }, "node_modules/is-core-module": { "version": "2.16.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "license": "MIT", "dependencies": { "hasown": "^2.0.2" @@ -7809,8 +49249,6 @@ }, "node_modules/is-data-view": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", - "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "dev": true, "license": "MIT", "dependencies": { @@ -7827,8 +49265,6 @@ }, "node_modules/is-date-object": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", - "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "dev": true, "license": "MIT", "dependencies": { @@ -7844,8 +49280,6 @@ }, "node_modules/is-docker": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, "license": "MIT", "bin": { @@ -7860,8 +49294,6 @@ }, "node_modules/is-extendable": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -7869,8 +49301,6 @@ }, "node_modules/is-finalizationregistry": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", - "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", "dev": true, "license": "MIT", "dependencies": { @@ -7885,8 +49315,6 @@ }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "devOptional": true, "license": "MIT", "engines": { @@ -7895,8 +49323,6 @@ }, "node_modules/is-generator-function": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", - "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", "dev": true, "license": "MIT", "dependencies": { @@ -7914,8 +49340,6 @@ }, "node_modules/is-map": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true, "license": "MIT", "engines": { @@ -7927,15 +49351,11 @@ }, "node_modules/is-module": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", "dev": true, "license": "MIT" }, "node_modules/is-negative-zero": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, "license": "MIT", "engines": { @@ -7947,8 +49367,6 @@ }, "node_modules/is-number-object": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", - "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "dev": true, "license": "MIT", "dependencies": { @@ -7964,8 +49382,6 @@ }, "node_modules/is-obj": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", "dev": true, "license": "MIT", "engines": { @@ -7974,8 +49390,6 @@ }, "node_modules/is-plain-obj": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "license": "MIT", "engines": { "node": ">=12" @@ -7986,8 +49400,6 @@ }, "node_modules/is-regex": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", - "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "dev": true, "license": "MIT", "dependencies": { @@ -8005,8 +49417,6 @@ }, "node_modules/is-regexp": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", "dev": true, "license": "MIT", "engines": { @@ -8015,8 +49425,6 @@ }, "node_modules/is-set": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "dev": true, "license": "MIT", "engines": { @@ -8028,8 +49436,6 @@ }, "node_modules/is-shared-array-buffer": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", - "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "dev": true, "license": "MIT", "dependencies": { @@ -8044,8 +49450,6 @@ }, "node_modules/is-stream": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "license": "MIT", "engines": { @@ -8057,8 +49461,6 @@ }, "node_modules/is-string": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", - "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "dev": true, "license": "MIT", "dependencies": { @@ -8074,8 +49476,6 @@ }, "node_modules/is-symbol": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", - "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "dev": true, "license": "MIT", "dependencies": { @@ -8092,8 +49492,6 @@ }, "node_modules/is-typed-array": { "version": "1.1.15", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", - "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "dev": true, "license": "MIT", "dependencies": { @@ -8108,8 +49506,6 @@ }, "node_modules/is-weakmap": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true, "license": "MIT", "engines": { @@ -8121,8 +49517,6 @@ }, "node_modules/is-weakref": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", - "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", "dev": true, "license": "MIT", "dependencies": { @@ -8137,8 +49531,6 @@ }, "node_modules/is-weakset": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", - "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "dev": true, "license": "MIT", "dependencies": { @@ -8154,8 +49546,6 @@ }, "node_modules/is-wsl": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, "license": "MIT", "dependencies": { @@ -8167,15 +49557,11 @@ }, "node_modules/isarray": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true, "license": "MIT" }, "node_modules/jake": { "version": "10.9.2", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", - "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -8193,20 +49579,14 @@ }, "node_modules/js-sha256": { "version": "0.10.1", - "resolved": "https://registry.npmjs.org/js-sha256/-/js-sha256-0.10.1.tgz", - "integrity": "sha512-5obBtsz9301ULlsgggLg542s/jqtddfOpV5KJc4hajc9JV8GeY2gZHSVpYBn4nWqAUTJ9v+xwtbJ1mIBgIH5Vw==", "license": "MIT" }, "node_modules/js-tokens": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "license": "MIT" }, "node_modules/js-yaml": { "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -8218,8 +49598,6 @@ }, "node_modules/jsesc": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "license": "MIT", "bin": { "jsesc": "bin/jsesc" @@ -8230,28 +49608,20 @@ }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "license": "MIT" }, "node_modules/json-schema": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true, "license": "(AFL-2.1 OR BSD-3-Clause)" }, "node_modules/json-schema-traverse": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "license": "MIT", "bin": { @@ -8263,8 +49633,6 @@ }, "node_modules/jsonpointer": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", "dev": true, "license": "MIT", "engines": { @@ -8273,8 +49641,6 @@ }, "node_modules/katex": { "version": "0.16.11", - "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.11.tgz", - "integrity": "sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==", "funding": [ "https://opencollective.com/katex", "https://github.com/sponsors/katex" @@ -8289,8 +49655,6 @@ }, "node_modules/katex/node_modules/commander": { "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "license": "MIT", "engines": { "node": ">= 12" @@ -8298,8 +49662,6 @@ }, "node_modules/kind-of": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -8307,8 +49669,6 @@ }, "node_modules/kleur": { "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "license": "MIT", "engines": { "node": ">=6" @@ -8316,8 +49676,6 @@ }, "node_modules/leven": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "license": "MIT", "engines": { @@ -8326,14 +49684,10 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "license": "MIT" }, "node_modules/loader-utils": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "license": "MIT", "dependencies": { @@ -8347,35 +49701,24 @@ }, "node_modules/lodash": { "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true, "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "license": "MIT" }, "node_modules/lodash.isequal": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", "license": "MIT" }, "node_modules/lodash.sortby": { "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", "dev": true, "license": "MIT" }, "node_modules/loglevel": { "version": "1.9.2", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz", - "integrity": "sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==", "dev": true, "license": "MIT", "engines": { @@ -8388,8 +49731,6 @@ }, "node_modules/longest-streak": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", - "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", "license": "MIT", "funding": { "type": "github", @@ -8398,8 +49739,6 @@ }, "node_modules/loose-envify": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" @@ -8410,8 +49749,6 @@ }, "node_modules/lorem-ipsum": { "version": "2.0.8", - "resolved": "https://registry.npmjs.org/lorem-ipsum/-/lorem-ipsum-2.0.8.tgz", - "integrity": "sha512-5RIwHuCb979RASgCJH0VKERn9cQo/+NcAi2BMe9ddj+gp7hujl6BI+qdOG4nVsLDpwWEJwTVYXNKP6BGgbcoGA==", "dev": true, "license": "ISC", "dependencies": { @@ -8427,8 +49764,6 @@ }, "node_modules/lorem-ipsum/node_modules/commander": { "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", "dev": true, "license": "MIT", "engines": { @@ -8437,15 +49772,11 @@ }, "node_modules/loupe": { "version": "3.1.4", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.1.4.tgz", - "integrity": "sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==", "dev": true, "license": "MIT" }, "node_modules/lower-case": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "license": "MIT", "dependencies": { @@ -8454,8 +49785,6 @@ }, "node_modules/lru-cache": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "license": "ISC", "dependencies": { "yallist": "^3.0.2" @@ -8463,20 +49792,14 @@ }, "node_modules/mac-scrollbar": { "version": "0.13.6", - "resolved": "https://registry.npmjs.org/mac-scrollbar/-/mac-scrollbar-0.13.6.tgz", - "integrity": "sha512-P0eNiCTExlmWBQ0FXalfXVh42eo9b0obnZIo1khZzyZX99frTsCmZwcbH0RWZZtNYtBZVd5f/7k4iLPou+skzg==", "license": "MIT" }, "node_modules/magic-bytes.js": { "version": "1.12.1", - "resolved": "https://registry.npmjs.org/magic-bytes.js/-/magic-bytes.js-1.12.1.tgz", - "integrity": "sha512-ThQLOhN86ZkJ7qemtVRGYM+gRgR8GEXNli9H/PMvpnZsE44Xfh3wx9kGJaldg314v85m+bFW6WBMaVHJc/c3zA==", "license": "MIT" }, "node_modules/magic-string": { "version": "0.30.17", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", - "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", "dev": true, "license": "MIT", "dependencies": { @@ -8485,8 +49808,6 @@ }, "node_modules/make-dir": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "license": "MIT", "optional": true, "dependencies": { @@ -8501,8 +49822,6 @@ }, "node_modules/markdown-table": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", - "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", "license": "MIT", "funding": { "type": "github", @@ -8511,8 +49830,6 @@ }, "node_modules/marked": { "version": "15.0.12", - "resolved": "https://registry.npmjs.org/marked/-/marked-15.0.12.tgz", - "integrity": "sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==", "dev": true, "license": "MIT", "bin": { @@ -8524,8 +49841,6 @@ }, "node_modules/math-intrinsics": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -8533,8 +49848,6 @@ }, "node_modules/mdast-util-definitions": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", - "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8548,8 +49861,6 @@ }, "node_modules/mdast-util-definitions/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -8563,8 +49874,6 @@ }, "node_modules/mdast-util-find-and-replace": { "version": "2.2.2", - "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz", - "integrity": "sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8579,8 +49888,6 @@ }, "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "license": "MIT", "engines": { "node": ">=12" @@ -8591,8 +49898,6 @@ }, "node_modules/mdast-util-from-markdown": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8615,8 +49920,6 @@ }, "node_modules/mdast-util-gfm": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz", - "integrity": "sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==", "license": "MIT", "dependencies": { "mdast-util-from-markdown": "^1.0.0", @@ -8634,8 +49937,6 @@ }, "node_modules/mdast-util-gfm-autolink-literal": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz", - "integrity": "sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8650,8 +49951,6 @@ }, "node_modules/mdast-util-gfm-footnote": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz", - "integrity": "sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8665,8 +49964,6 @@ }, "node_modules/mdast-util-gfm-strikethrough": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz", - "integrity": "sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8679,8 +49976,6 @@ }, "node_modules/mdast-util-gfm-table": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz", - "integrity": "sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8695,8 +49990,6 @@ }, "node_modules/mdast-util-gfm-task-list-item": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz", - "integrity": "sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8709,8 +50002,6 @@ }, "node_modules/mdast-util-math": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-2.0.2.tgz", - "integrity": "sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8724,8 +50015,6 @@ }, "node_modules/mdast-util-phrasing": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", - "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8738,8 +50027,6 @@ }, "node_modules/mdast-util-to-hast": { "version": "12.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", - "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -8758,8 +50045,6 @@ }, "node_modules/mdast-util-to-hast/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -8773,8 +50058,6 @@ }, "node_modules/mdast-util-to-markdown": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", - "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -8793,8 +50076,6 @@ }, "node_modules/mdast-util-to-markdown/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -8808,8 +50089,6 @@ }, "node_modules/mdast-util-to-string": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0" @@ -8821,8 +50100,6 @@ }, "node_modules/micromark": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", "funding": [ { "type": "GitHub Sponsors", @@ -8856,8 +50133,6 @@ }, "node_modules/micromark-core-commonmark": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", - "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", "funding": [ { "type": "GitHub Sponsors", @@ -8890,8 +50165,6 @@ }, "node_modules/micromark-extension-gfm": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz", - "integrity": "sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==", "license": "MIT", "dependencies": { "micromark-extension-gfm-autolink-literal": "^1.0.0", @@ -8910,8 +50183,6 @@ }, "node_modules/micromark-extension-gfm-autolink-literal": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.5.tgz", - "integrity": "sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==", "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", @@ -8926,8 +50197,6 @@ }, "node_modules/micromark-extension-gfm-footnote": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.1.2.tgz", - "integrity": "sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==", "license": "MIT", "dependencies": { "micromark-core-commonmark": "^1.0.0", @@ -8946,8 +50215,6 @@ }, "node_modules/micromark-extension-gfm-strikethrough": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.7.tgz", - "integrity": "sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==", "license": "MIT", "dependencies": { "micromark-util-chunked": "^1.0.0", @@ -8964,8 +50231,6 @@ }, "node_modules/micromark-extension-gfm-table": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.7.tgz", - "integrity": "sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==", "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", @@ -8981,8 +50246,6 @@ }, "node_modules/micromark-extension-gfm-tagfilter": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.2.tgz", - "integrity": "sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==", "license": "MIT", "dependencies": { "micromark-util-types": "^1.0.0" @@ -8994,8 +50257,6 @@ }, "node_modules/micromark-extension-gfm-task-list-item": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.5.tgz", - "integrity": "sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==", "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", @@ -9011,8 +50272,6 @@ }, "node_modules/micromark-extension-math": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-2.1.2.tgz", - "integrity": "sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==", "license": "MIT", "dependencies": { "@types/katex": "^0.16.0", @@ -9030,8 +50289,6 @@ }, "node_modules/micromark-factory-destination": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", - "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", "funding": [ { "type": "GitHub Sponsors", @@ -9051,8 +50308,6 @@ }, "node_modules/micromark-factory-label": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", - "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", "funding": [ { "type": "GitHub Sponsors", @@ -9073,8 +50328,6 @@ }, "node_modules/micromark-factory-space": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", - "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", "funding": [ { "type": "GitHub Sponsors", @@ -9093,8 +50346,6 @@ }, "node_modules/micromark-factory-title": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", - "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", "funding": [ { "type": "GitHub Sponsors", @@ -9115,8 +50366,6 @@ }, "node_modules/micromark-factory-whitespace": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", - "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", "funding": [ { "type": "GitHub Sponsors", @@ -9137,8 +50386,6 @@ }, "node_modules/micromark-util-character": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", - "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", "funding": [ { "type": "GitHub Sponsors", @@ -9157,8 +50404,6 @@ }, "node_modules/micromark-util-chunked": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", - "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", "funding": [ { "type": "GitHub Sponsors", @@ -9176,8 +50421,6 @@ }, "node_modules/micromark-util-classify-character": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", - "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", "funding": [ { "type": "GitHub Sponsors", @@ -9197,8 +50440,6 @@ }, "node_modules/micromark-util-combine-extensions": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", - "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", "funding": [ { "type": "GitHub Sponsors", @@ -9217,8 +50458,6 @@ }, "node_modules/micromark-util-decode-numeric-character-reference": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", - "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", "funding": [ { "type": "GitHub Sponsors", @@ -9236,8 +50475,6 @@ }, "node_modules/micromark-util-decode-string": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", - "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", "funding": [ { "type": "GitHub Sponsors", @@ -9258,8 +50495,6 @@ }, "node_modules/micromark-util-encode": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", - "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", "funding": [ { "type": "GitHub Sponsors", @@ -9274,8 +50509,6 @@ }, "node_modules/micromark-util-html-tag-name": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", - "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", "funding": [ { "type": "GitHub Sponsors", @@ -9290,8 +50523,6 @@ }, "node_modules/micromark-util-normalize-identifier": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", - "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", "funding": [ { "type": "GitHub Sponsors", @@ -9309,8 +50540,6 @@ }, "node_modules/micromark-util-resolve-all": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", - "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", "funding": [ { "type": "GitHub Sponsors", @@ -9328,8 +50557,6 @@ }, "node_modules/micromark-util-sanitize-uri": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", - "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", "funding": [ { "type": "GitHub Sponsors", @@ -9349,8 +50576,6 @@ }, "node_modules/micromark-util-subtokenize": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", - "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", "funding": [ { "type": "GitHub Sponsors", @@ -9371,8 +50596,6 @@ }, "node_modules/micromark-util-symbol": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", - "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", "funding": [ { "type": "GitHub Sponsors", @@ -9387,8 +50610,6 @@ }, "node_modules/micromark-util-types": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", - "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", "funding": [ { "type": "GitHub Sponsors", @@ -9403,8 +50624,6 @@ }, "node_modules/mime-db": { "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -9412,8 +50631,6 @@ }, "node_modules/mime-types": { "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "license": "MIT", "dependencies": { "mime-db": "1.52.0" @@ -9424,8 +50641,6 @@ }, "node_modules/minimatch": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "devOptional": true, "license": "ISC", "dependencies": { @@ -9437,8 +50652,6 @@ }, "node_modules/minimist": { "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, "license": "MIT", "funding": { @@ -9447,8 +50660,6 @@ }, "node_modules/minipass": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "license": "ISC", "optional": true, "engines": { @@ -9457,8 +50668,6 @@ }, "node_modules/minizlib": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "license": "MIT", "optional": true, "dependencies": { @@ -9471,8 +50680,6 @@ }, "node_modules/minizlib/node_modules/minipass": { "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "license": "ISC", "optional": true, "dependencies": { @@ -9484,15 +50691,11 @@ }, "node_modules/minizlib/node_modules/yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "license": "ISC", "optional": true }, "node_modules/mkdirp": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "license": "MIT", "optional": true, "bin": { @@ -9504,21 +50707,15 @@ }, "node_modules/mkdirp-classic": { "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", "dev": true, "license": "MIT" }, "node_modules/moo": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", - "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", "license": "BSD-3-Clause" }, "node_modules/mri": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "license": "MIT", "engines": { "node": ">=4" @@ -9526,14 +50723,10 @@ }, "node_modules/ms": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, "node_modules/mutative": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mutative/-/mutative-1.2.0.tgz", - "integrity": "sha512-1muFw45Lwjso6TSBGiXfbjKS01fVSD/qaqBfTo/gXgp79e8KM4Sa1XP/S4iN2/DvSdIZgjFJI+JIhC7eKf3GTg==", "license": "MIT", "engines": { "node": ">=14.0" @@ -9541,15 +50734,11 @@ }, "node_modules/nan": { "version": "2.22.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz", - "integrity": "sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==", "license": "MIT", "optional": true }, "node_modules/nanoid": { "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "dev": true, "funding": [ { @@ -9567,15 +50756,11 @@ }, "node_modules/napi-build-utils": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz", - "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==", "dev": true, "license": "MIT" }, "node_modules/no-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "license": "MIT", "dependencies": { @@ -9585,8 +50770,6 @@ }, "node_modules/node-abi": { "version": "3.75.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.75.0.tgz", - "integrity": "sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==", "dev": true, "license": "MIT", "dependencies": { @@ -9598,8 +50781,6 @@ }, "node_modules/node-abi/node_modules/semver": { "version": "7.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", - "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "dev": true, "license": "ISC", "bin": { @@ -9611,8 +50792,6 @@ }, "node_modules/node-fetch": { "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "license": "MIT", "optional": true, "dependencies": { @@ -9632,14 +50811,10 @@ }, "node_modules/node-releases": { "version": "2.0.27", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", - "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", "license": "MIT" }, "node_modules/nopt": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", "license": "ISC", "optional": true, "dependencies": { @@ -9654,8 +50829,6 @@ }, "node_modules/normalize-range": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, "license": "MIT", "engines": { @@ -9664,9 +50837,6 @@ }, "node_modules/npmlog": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "deprecated": "This package is no longer supported.", "license": "ISC", "optional": true, "dependencies": { @@ -9678,8 +50848,6 @@ }, "node_modules/nth-check": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" @@ -9690,8 +50858,6 @@ }, "node_modules/object-assign": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -9699,8 +50865,6 @@ }, "node_modules/object-inspect": { "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, "license": "MIT", "engines": { @@ -9712,8 +50876,6 @@ }, "node_modules/object-keys": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, "license": "MIT", "engines": { @@ -9722,8 +50884,6 @@ }, "node_modules/object.assign": { "version": "4.1.7", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", - "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "dev": true, "license": "MIT", "dependencies": { @@ -9743,8 +50903,6 @@ }, "node_modules/once": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "devOptional": true, "license": "ISC", "dependencies": { @@ -9753,8 +50911,6 @@ }, "node_modules/open": { "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, "license": "MIT", "dependencies": { @@ -9771,8 +50927,6 @@ }, "node_modules/openpgp": { "version": "6.2.2", - "resolved": "https://registry.npmjs.org/openpgp/-/openpgp-6.2.2.tgz", - "integrity": "sha512-P/dyEqQ3gfwOCo+xsqffzXjmUhGn4AZTOJ1LCcN21S23vAk+EAvMJOQTsb/C8krL6GjOSBxqGYckhik7+hneNw==", "dev": true, "license": "LGPL-3.0+", "engines": { @@ -9781,8 +50935,6 @@ }, "node_modules/otplib": { "version": "13.3.0", - "resolved": "https://registry.npmjs.org/otplib/-/otplib-13.3.0.tgz", - "integrity": "sha512-VYMKyyDG8yt2q+z58sz54/EIyTh7+tyMrjeemR44iVh5+dkKtIs57irTqxjH+IkAL1uMmG1JIFhG5CxTpqdU5g==", "dev": true, "license": "MIT", "dependencies": { @@ -9796,8 +50948,6 @@ }, "node_modules/own-keys": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", - "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", "dev": true, "license": "MIT", "dependencies": { @@ -9814,8 +50964,6 @@ }, "node_modules/p-queue": { "version": "9.3.0", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.3.0.tgz", - "integrity": "sha512-7NED7xhQ74Ngp4JP/2e0VZHp7vSWfJfqeiR92jPgxsz6m0Se4P03YoTKa9dDXyZ3r6P616gUXttrB6nnHYKang==", "license": "MIT", "dependencies": { "eventemitter3": "^5.0.4", @@ -9830,8 +50978,6 @@ }, "node_modules/p-timeout": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-7.0.1.tgz", - "integrity": "sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==", "license": "MIT", "engines": { "node": ">=20" @@ -9842,8 +50988,6 @@ }, "node_modules/parent-module": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "license": "MIT", "dependencies": { "callsites": "^3.0.0" @@ -9854,8 +50998,6 @@ }, "node_modules/parse-json": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", @@ -9872,14 +51014,10 @@ }, "node_modules/parse5": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "license": "MIT" }, "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "devOptional": true, "license": "MIT", "engines": { @@ -9888,14 +51026,10 @@ }, "node_modules/path-parse": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "license": "MIT" }, "node_modules/path-type": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "license": "MIT", "engines": { "node": ">=8" @@ -9903,8 +51037,6 @@ }, "node_modules/path2d-polyfill": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path2d-polyfill/-/path2d-polyfill-2.0.1.tgz", - "integrity": "sha512-ad/3bsalbbWhmBo0D6FZ4RNMwsLsPpL6gnvhuSaU5Vm7b06Kr5ubSltQQ0T7YKsiJQO+g22zJ4dJKNTXIyOXtA==", "license": "MIT", "engines": { "node": ">=8" @@ -9912,15 +51044,11 @@ }, "node_modules/pathe": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", - "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", "dev": true, "license": "MIT" }, "node_modules/pathval": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.0.tgz", - "integrity": "sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==", "dev": true, "license": "MIT", "engines": { @@ -9929,8 +51057,6 @@ }, "node_modules/pdfjs-dist": { "version": "3.6.172", - "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-3.6.172.tgz", - "integrity": "sha512-bfOhCg+S9DXh/ImWhWYTOiq3aVMFSCvzGiBzsIJtdMC71kVWDBw7UXr32xh0y56qc5wMVylIeqV3hBaRsu+e+w==", "license": "Apache-2.0", "dependencies": { "path2d-polyfill": "^2.0.1", @@ -9945,8 +51071,6 @@ }, "node_modules/phone": { "version": "3.1.62", - "resolved": "https://registry.npmjs.org/phone/-/phone-3.1.62.tgz", - "integrity": "sha512-mxUdq2nULKg6ukgVr4GSF9/sQiAa6e3AJy2HNE3UJA+lqdEF+Cko2RhKHhZRHtFaLKuBLPptitIwjv0uHG+vhw==", "license": "MIT", "engines": { "node": ">=12" @@ -9954,14 +51078,10 @@ }, "node_modules/picocolors": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "license": "ISC" }, "node_modules/picomatch": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", "dev": true, "license": "MIT", "engines": { @@ -9973,14 +51093,10 @@ }, "node_modules/platform": { "version": "1.3.6", - "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", - "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==", "license": "MIT" }, "node_modules/playwright": { "version": "1.58.2", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.58.2.tgz", - "integrity": "sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -9998,8 +51114,6 @@ }, "node_modules/playwright-core": { "version": "1.58.2", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.58.2.tgz", - "integrity": "sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==", "dev": true, "license": "Apache-2.0", "bin": { @@ -10011,8 +51125,6 @@ }, "node_modules/polished": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.3.1.tgz", - "integrity": "sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.17.8" @@ -10023,8 +51135,6 @@ }, "node_modules/possible-typed-array-names": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", - "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "dev": true, "license": "MIT", "engines": { @@ -10033,8 +51143,6 @@ }, "node_modules/postcss": { "version": "8.5.6", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", - "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", "dev": true, "funding": [ { @@ -10062,15 +51170,11 @@ }, "node_modules/postcss-value-parser": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true, "license": "MIT" }, "node_modules/prebuild-install": { "version": "7.1.3", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz", - "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==", "dev": true, "license": "MIT", "dependencies": { @@ -10096,8 +51200,6 @@ }, "node_modules/prebuild-install/node_modules/simple-get": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", - "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", "dev": true, "funding": [ { @@ -10122,8 +51224,6 @@ }, "node_modules/pretty-bytes": { "version": "6.1.1", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", - "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", "dev": true, "license": "MIT", "engines": { @@ -10135,8 +51235,6 @@ }, "node_modules/prop-types": { "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", @@ -10146,8 +51244,6 @@ }, "node_modules/property-information": { "version": "6.5.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", - "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", "license": "MIT", "funding": { "type": "github", @@ -10156,14 +51252,10 @@ }, "node_modules/proxy-from-env": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "license": "MIT" }, "node_modules/pump": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", - "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", "dev": true, "license": "MIT", "dependencies": { @@ -10173,8 +51265,6 @@ }, "node_modules/punycode": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "license": "MIT", "engines": { @@ -10183,20 +51273,14 @@ }, "node_modules/qclone": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/qclone/-/qclone-1.2.0.tgz", - "integrity": "sha512-ah9Mpb9/UBdY5vvOcpqFq8g489YIqLTJlSk+FddPyPbE1nISrYx3TBAKQB590cGoXTd5yWQbVstDVatHMOoxnA==", "license": "MIT" }, "node_modules/qrcode-generator": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/qrcode-generator/-/qrcode-generator-1.5.0.tgz", - "integrity": "sha512-sqo7otiDq5rA4djRkFI7IjLQqxRrLpIou0d3rqr03JJLUGf5raPh91xCio+lFFbQf0SlcVckStz0EmDEX3EeZA==", "license": "MIT" }, "node_modules/randombytes": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "license": "MIT", "dependencies": { @@ -10205,8 +51289,6 @@ }, "node_modules/rc": { "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { @@ -10221,8 +51303,6 @@ }, "node_modules/react": { "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" @@ -10233,8 +51313,6 @@ }, "node_modules/react-avatar-editor": { "version": "13.0.2", - "resolved": "https://registry.npmjs.org/react-avatar-editor/-/react-avatar-editor-13.0.2.tgz", - "integrity": "sha512-a4ajbi7lwDh98kgEtSEeKMu0vs0CHTczkq4Xcxr1EiwMFH1GlgHCEtwGU8q/H5W8SeLnH4KPK8LUjEEaZXklxQ==", "license": "MIT", "dependencies": { "@babel/plugin-transform-runtime": "^7.12.1", @@ -10248,8 +51326,6 @@ }, "node_modules/react-dom": { "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", - "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", @@ -10261,8 +51337,6 @@ }, "node_modules/react-dropzone": { "version": "14.3.8", - "resolved": "https://registry.npmjs.org/react-dropzone/-/react-dropzone-14.3.8.tgz", - "integrity": "sha512-sBgODnq+lcA4P296DY4wacOZz3JFpD99fp+hb//iBO2HHnyeZU3FwWyXJ6salNpqQdsZrgMrotuko/BdJMV8Ug==", "license": "MIT", "dependencies": { "attr-accept": "^2.2.4", @@ -10278,8 +51352,6 @@ }, "node_modules/react-error-boundary": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-4.1.2.tgz", - "integrity": "sha512-GQDxZ5Jd+Aq/qUxbCm1UtzmL/s++V7zKgE8yMktJiCQXCCFZnMZh9ng+6/Ne6PjNSXH0L9CjeOEREfRnq6Duag==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5" @@ -10290,8 +51362,6 @@ }, "node_modules/react-freeze": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz", - "integrity": "sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==", "license": "MIT", "engines": { "node": ">=10" @@ -10302,8 +51372,6 @@ }, "node_modules/react-hot-toast": { "version": "2.5.2", - "resolved": "https://registry.npmjs.org/react-hot-toast/-/react-hot-toast-2.5.2.tgz", - "integrity": "sha512-Tun3BbCxzmXXM7C+NI4qiv6lT0uwGh4oAfeJyNOjYUejTsm35mK9iCaYLGv8cBz9L5YxZLx/2ii7zsIwPtPUdw==", "license": "MIT", "dependencies": { "csstype": "^3.1.3", @@ -10319,20 +51387,14 @@ }, "node_modules/react-is": { "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "license": "MIT" }, "node_modules/react-lifecycles-compat": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", "license": "MIT" }, "node_modules/react-loading-skeleton": { "version": "3.5.0", - "resolved": "https://registry.npmjs.org/react-loading-skeleton/-/react-loading-skeleton-3.5.0.tgz", - "integrity": "sha512-gxxSyLbrEAdXTKgfbpBEFZCO/P153DnqSCQau2+o6lNy1jgMRr2MmRmOzMmyrwSaSYLRB8g7b0waYPmUjz7IhQ==", "license": "MIT", "peerDependencies": { "react": ">=16.8.0" @@ -10340,8 +51402,6 @@ }, "node_modules/react-modal": { "version": "3.16.3", - "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.3.tgz", - "integrity": "sha512-yCYRJB5YkeQDQlTt17WGAgFJ7jr2QYcWa1SHqZ3PluDmnKJ/7+tVU+E6uKyZ0nODaeEj+xCpK4LcSnKXLMC0Nw==", "license": "MIT", "dependencies": { "exenv": "^1.2.0", @@ -10356,8 +51416,6 @@ }, "node_modules/react-qrcode-logo": { "version": "2.10.0", - "resolved": "https://registry.npmjs.org/react-qrcode-logo/-/react-qrcode-logo-2.10.0.tgz", - "integrity": "sha512-Q1+jLtcyDl5rLR29YdkXVLzYk62p3+541x00HxURVBQhs6SqFyEZZVhvkU/VQ082ytXa3GdCmGWMLK5z0Vhe7g==", "license": "MIT", "dependencies": { "lodash.isequal": "^4.5.0", @@ -10370,8 +51428,6 @@ }, "node_modules/react-scroll-sync": { "version": "0.11.3", - "resolved": "https://registry.npmjs.org/react-scroll-sync/-/react-scroll-sync-0.11.3.tgz", - "integrity": "sha512-jKu5mqOaTSfryXbGn14+Rw1+tyc7gNTCHtkCUPBkwSvIp8IQ8AwYrts1BpZszyGVXj4LyBdz8GgPxqVv+uV+CA==", "license": "MIT", "dependencies": { "prop-types": "^15.5.7" @@ -10383,8 +51439,6 @@ }, "node_modules/react-virtuoso": { "version": "4.13.0", - "resolved": "https://registry.npmjs.org/react-virtuoso/-/react-virtuoso-4.13.0.tgz", - "integrity": "sha512-XHv2Fglpx80yFPdjZkV9d1baACKghg/ucpDFEXwaix7z0AfVQj+mF6lM+YQR6UC/TwzXG2rJKydRMb3+7iV3PA==", "license": "MIT", "peerDependencies": { "react": ">=16 || >=17 || >= 18 || >= 19", @@ -10393,8 +51447,6 @@ }, "node_modules/readable-stream": { "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "devOptional": true, "license": "MIT", "dependencies": { @@ -10408,8 +51460,6 @@ }, "node_modules/reflect.getprototypeof": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", - "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", "dev": true, "license": "MIT", "dependencies": { @@ -10431,15 +51481,11 @@ }, "node_modules/regenerate": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true, "license": "MIT" }, "node_modules/regenerate-unicode-properties": { "version": "10.2.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", - "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dev": true, "license": "MIT", "dependencies": { @@ -10451,8 +51497,6 @@ }, "node_modules/regexp.prototype.flags": { "version": "1.5.4", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", - "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", "dev": true, "license": "MIT", "dependencies": { @@ -10472,8 +51516,6 @@ }, "node_modules/regexpu-core": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", - "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", "dev": true, "license": "MIT", "dependencies": { @@ -10490,15 +51532,11 @@ }, "node_modules/regjsgen": { "version": "0.8.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", "dev": true, "license": "MIT" }, "node_modules/regjsparser": { "version": "0.12.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", - "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -10510,8 +51548,6 @@ }, "node_modules/regjsparser/node_modules/jsesc": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true, "license": "MIT", "bin": { @@ -10523,8 +51559,6 @@ }, "node_modules/rehype-stringify": { "version": "9.0.4", - "resolved": "https://registry.npmjs.org/rehype-stringify/-/rehype-stringify-9.0.4.tgz", - "integrity": "sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -10538,8 +51572,6 @@ }, "node_modules/remark": { "version": "14.0.3", - "resolved": "https://registry.npmjs.org/remark/-/remark-14.0.3.tgz", - "integrity": "sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -10554,14 +51586,10 @@ }, "node_modules/remark-comments": { "version": "1.2.10", - "resolved": "https://registry.npmjs.org/remark-comments/-/remark-comments-1.2.10.tgz", - "integrity": "sha512-huQW1qMsVLT4bJP1bOUBXtZH9U9L9jN5gaqKRLWyHB5vFm55F1YZ25mqk6RcBIgdrklPYnVCJD6CcaLS9w/jwQ==", "license": "MIT" }, "node_modules/remark-gfm": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz", - "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -10576,8 +51604,6 @@ }, "node_modules/remark-math": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/remark-math/-/remark-math-5.1.1.tgz", - "integrity": "sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -10592,8 +51618,6 @@ }, "node_modules/remark-parse": { "version": "10.0.2", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", - "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -10607,8 +51631,6 @@ }, "node_modules/remark-rehype": { "version": "10.1.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", - "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", @@ -10623,8 +51645,6 @@ }, "node_modules/remark-stringify": { "version": "10.0.3", - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-10.0.3.tgz", - "integrity": "sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==", "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", @@ -10638,8 +51658,6 @@ }, "node_modules/remark-supersub": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/remark-supersub/-/remark-supersub-1.0.0.tgz", - "integrity": "sha512-3SYsphMqpAWbr8AZozdcypozinl/lly3e7BEwPG3YT5J9uZQaDcELBF6/sr/OZoAlFxy2nhNFWSrZBu/ZPRT3Q==", "license": "MIT", "dependencies": { "unist-util-visit": "^4.0.0" @@ -10647,8 +51665,6 @@ }, "node_modules/remark-supersub/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -10662,8 +51678,6 @@ }, "node_modules/require-directory": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "license": "MIT", "engines": { @@ -10672,8 +51686,6 @@ }, "node_modules/require-from-string": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "license": "MIT", "engines": { @@ -10682,8 +51694,6 @@ }, "node_modules/resolve": { "version": "1.22.10", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", - "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "license": "MIT", "dependencies": { "is-core-module": "^2.16.0", @@ -10702,8 +51712,6 @@ }, "node_modules/resolve-from": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "license": "MIT", "engines": { "node": ">=4" @@ -10711,9 +51719,6 @@ }, "node_modules/rimraf": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", "license": "ISC", "optional": true, "dependencies": { @@ -10728,8 +51733,6 @@ }, "node_modules/rollup": { "version": "4.43.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.43.0.tgz", - "integrity": "sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==", "dev": true, "license": "MIT", "dependencies": { @@ -10768,8 +51771,6 @@ }, "node_modules/rollup-plugin-visualizer": { "version": "5.14.0", - "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.14.0.tgz", - "integrity": "sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==", "dev": true, "license": "MIT", "dependencies": { @@ -10799,8 +51800,6 @@ }, "node_modules/rollup-plugin-visualizer/node_modules/source-map": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -10809,8 +51808,6 @@ }, "node_modules/sade": { "version": "1.8.1", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "license": "MIT", "dependencies": { "mri": "^1.1.0" @@ -10821,8 +51818,6 @@ }, "node_modules/safe-array-concat": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", - "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", "dev": true, "license": "MIT", "dependencies": { @@ -10841,8 +51836,6 @@ }, "node_modules/safe-buffer": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "devOptional": true, "funding": [ { @@ -10862,8 +51855,6 @@ }, "node_modules/safe-push-apply": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", - "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", "dev": true, "license": "MIT", "dependencies": { @@ -10879,8 +51870,6 @@ }, "node_modules/safe-regex-test": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", - "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "dev": true, "license": "MIT", "dependencies": { @@ -10897,8 +51886,6 @@ }, "node_modules/scheduler": { "version": "0.23.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" @@ -10906,8 +51893,6 @@ }, "node_modules/schema-utils": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "license": "MIT", "dependencies": { @@ -10925,8 +51910,6 @@ }, "node_modules/section-matter": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", - "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", @@ -10938,8 +51921,6 @@ }, "node_modules/semver": { "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -10947,8 +51928,6 @@ }, "node_modules/serialize-javascript": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -10957,15 +51936,11 @@ }, "node_modules/set-blocking": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "license": "ISC", "optional": true }, "node_modules/set-function-length": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, "license": "MIT", "dependencies": { @@ -10982,8 +51957,6 @@ }, "node_modules/set-function-name": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, "license": "MIT", "dependencies": { @@ -10998,8 +51971,6 @@ }, "node_modules/set-proto": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", - "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", "dev": true, "license": "MIT", "dependencies": { @@ -11013,8 +51984,6 @@ }, "node_modules/side-channel": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", - "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, "license": "MIT", "dependencies": { @@ -11033,8 +52002,6 @@ }, "node_modules/side-channel-list": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", "dev": true, "license": "MIT", "dependencies": { @@ -11050,8 +52017,6 @@ }, "node_modules/side-channel-map": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", - "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", "dev": true, "license": "MIT", "dependencies": { @@ -11069,8 +52034,6 @@ }, "node_modules/side-channel-weakmap": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", - "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", "dev": true, "license": "MIT", "dependencies": { @@ -11089,22 +52052,16 @@ }, "node_modules/siginfo": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", - "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", "dev": true, "license": "ISC" }, "node_modules/signal-exit": { "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "license": "ISC", "optional": true }, "node_modules/simple-concat": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", "devOptional": true, "funding": [ { @@ -11124,8 +52081,6 @@ }, "node_modules/simple-get": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz", - "integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==", "license": "MIT", "optional": true, "dependencies": { @@ -11136,8 +52091,6 @@ }, "node_modules/simple-get/node_modules/decompress-response": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", - "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", "license": "MIT", "optional": true, "dependencies": { @@ -11149,8 +52102,6 @@ }, "node_modules/simple-get/node_modules/mimic-response": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", "license": "MIT", "optional": true, "engines": { @@ -11162,15 +52113,11 @@ }, "node_modules/smob": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz", - "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==", "dev": true, "license": "MIT" }, "node_modules/snake-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", "dev": true, "license": "MIT", "dependencies": { @@ -11180,14 +52127,10 @@ }, "node_modules/snarkdown": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/snarkdown/-/snarkdown-2.0.0.tgz", - "integrity": "sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==", "license": "MIT" }, "node_modules/source-map": { "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" @@ -11195,8 +52138,6 @@ }, "node_modules/source-map-js": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -11205,8 +52146,6 @@ }, "node_modules/source-map-support": { "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "license": "MIT", "dependencies": { @@ -11216,8 +52155,6 @@ }, "node_modules/source-map-support/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "license": "BSD-3-Clause", "engines": { @@ -11226,16 +52163,11 @@ }, "node_modules/sourcemap-codec": { "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "deprecated": "Please use @jridgewell/sourcemap-codec instead", "dev": true, "license": "MIT" }, "node_modules/space-separated-tokens": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", "license": "MIT", "funding": { "type": "github", @@ -11244,34 +52176,24 @@ }, "node_modules/spark-md5": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.2.tgz", - "integrity": "sha512-wcFzz9cDfbuqe0FZzfi2or1sgyIrsDwmPwfZC4hiNidPdPINjeUwNfv5kldczoEAcjl9Y1L3SM7Uz2PUEQzxQw==", "license": "(WTFPL OR MIT)" }, "node_modules/sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "license": "BSD-3-Clause" }, "node_modules/stackback": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", - "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", "dev": true, "license": "MIT" }, "node_modules/std-env": { "version": "3.9.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.9.0.tgz", - "integrity": "sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==", "dev": true, "license": "MIT" }, "node_modules/stop-iteration-iterator": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", - "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", "dev": true, "license": "MIT", "dependencies": { @@ -11284,8 +52206,6 @@ }, "node_modules/string_decoder": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "devOptional": true, "license": "MIT", "dependencies": { @@ -11294,8 +52214,6 @@ }, "node_modules/string-width": { "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "devOptional": true, "license": "MIT", "dependencies": { @@ -11309,8 +52227,6 @@ }, "node_modules/string.prototype.matchall": { "version": "4.0.12", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", - "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", "dev": true, "license": "MIT", "dependencies": { @@ -11337,8 +52253,6 @@ }, "node_modules/string.prototype.trim": { "version": "1.2.10", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", - "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "dev": true, "license": "MIT", "dependencies": { @@ -11359,8 +52273,6 @@ }, "node_modules/string.prototype.trimend": { "version": "1.0.9", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", - "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "dev": true, "license": "MIT", "dependencies": { @@ -11378,8 +52290,6 @@ }, "node_modules/string.prototype.trimstart": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", - "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, "license": "MIT", "dependencies": { @@ -11396,8 +52306,6 @@ }, "node_modules/stringify-entities": { "version": "4.0.4", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", - "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", "license": "MIT", "dependencies": { "character-entities-html4": "^2.0.0", @@ -11410,8 +52318,6 @@ }, "node_modules/stringify-object": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", - "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -11425,8 +52331,6 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "devOptional": true, "license": "MIT", "dependencies": { @@ -11438,8 +52342,6 @@ }, "node_modules/strip-bom-string": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", - "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -11447,8 +52349,6 @@ }, "node_modules/strip-comments": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", - "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", "dev": true, "license": "MIT", "engines": { @@ -11457,8 +52357,6 @@ }, "node_modules/strip-json-comments": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", "dev": true, "license": "MIT", "engines": { @@ -11467,8 +52365,6 @@ }, "node_modules/styled-system": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/styled-system/-/styled-system-5.1.5.tgz", - "integrity": "sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==", "license": "MIT", "dependencies": { "@styled-system/background": "^5.1.2", @@ -11488,14 +52384,10 @@ }, "node_modules/stylis": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", - "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", "license": "MIT" }, "node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", "dependencies": { @@ -11507,8 +52399,6 @@ }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -11519,15 +52409,11 @@ }, "node_modules/svg-parser": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", "dev": true, "license": "MIT" }, "node_modules/tar": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "license": "ISC", "optional": true, "dependencies": { @@ -11544,8 +52430,6 @@ }, "node_modules/tar-fs": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.3.tgz", - "integrity": "sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==", "dev": true, "license": "MIT", "dependencies": { @@ -11557,15 +52441,11 @@ }, "node_modules/tar-fs/node_modules/chownr": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", "dev": true, "license": "ISC" }, "node_modules/tar-stream": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, "license": "MIT", "dependencies": { @@ -11581,15 +52461,11 @@ }, "node_modules/tar/node_modules/yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "license": "ISC", "optional": true }, "node_modules/temp-dir": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", "dev": true, "license": "MIT", "engines": { @@ -11598,8 +52474,6 @@ }, "node_modules/tempy": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", - "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", "dev": true, "license": "MIT", "dependencies": { @@ -11617,8 +52491,6 @@ }, "node_modules/tempy/node_modules/type-fest": { "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { @@ -11630,8 +52502,6 @@ }, "node_modules/terser": { "version": "5.42.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.42.0.tgz", - "integrity": "sha512-UYCvU9YQW2f/Vwl+P0GfhxJxbUGLwd+5QrrGgLajzWAtC/23AX0vcise32kkP7Eu0Wu9VlzzHAXkLObgjQfFlQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -11649,35 +52519,25 @@ }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true, "license": "MIT" }, "node_modules/timeago.js": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/timeago.js/-/timeago.js-4.0.2.tgz", - "integrity": "sha512-a7wPxPdVlQL7lqvitHGGRsofhdwtkoSXPGATFuSOA2i1ZNQEPLrGnj68vOp2sOJTCFAQVXPeNMX/GctBaO9L2w==", "license": "MIT" }, "node_modules/tinybench": { "version": "2.9.0", - "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", - "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", "dev": true, "license": "MIT" }, "node_modules/tinyexec": { "version": "0.3.2", - "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", - "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", "dev": true, "license": "MIT" }, "node_modules/tinyglobby": { "version": "0.2.14", - "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", - "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", "dev": true, "license": "MIT", "dependencies": { @@ -11693,8 +52553,6 @@ }, "node_modules/tinypool": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", - "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", "dev": true, "license": "MIT", "engines": { @@ -11703,8 +52561,6 @@ }, "node_modules/tinyrainbow": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-1.2.0.tgz", - "integrity": "sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==", "dev": true, "license": "MIT", "engines": { @@ -11713,8 +52569,6 @@ }, "node_modules/tinyspy": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", - "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", "dev": true, "license": "MIT", "engines": { @@ -11723,15 +52577,11 @@ }, "node_modules/tr46": { "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "license": "MIT", "optional": true }, "node_modules/trim-lines": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", "license": "MIT", "funding": { "type": "github", @@ -11740,8 +52590,6 @@ }, "node_modules/trough": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", - "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", "license": "MIT", "funding": { "type": "github", @@ -11750,14 +52598,10 @@ }, "node_modules/tslib": { "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "license": "0BSD" }, "node_modules/tunnel-agent": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -11769,8 +52613,6 @@ }, "node_modules/typed-array-buffer": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", - "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", "dev": true, "license": "MIT", "dependencies": { @@ -11784,8 +52626,6 @@ }, "node_modules/typed-array-byte-length": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", - "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", "dev": true, "license": "MIT", "dependencies": { @@ -11804,8 +52644,6 @@ }, "node_modules/typed-array-byte-offset": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", - "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", "dev": true, "license": "MIT", "dependencies": { @@ -11826,8 +52664,6 @@ }, "node_modules/typed-array-length": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", - "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", "dev": true, "license": "MIT", "dependencies": { @@ -11847,8 +52683,6 @@ }, "node_modules/unbox-primitive": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", - "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", "dev": true, "license": "MIT", "dependencies": { @@ -11866,15 +52700,11 @@ }, "node_modules/undici-types": { "version": "7.8.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", - "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", "dev": true, "license": "MIT" }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", - "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", "dev": true, "license": "MIT", "engines": { @@ -11883,8 +52713,6 @@ }, "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, "license": "MIT", "dependencies": { @@ -11897,8 +52725,6 @@ }, "node_modules/unicode-match-property-value-ecmascript": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", - "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", "dev": true, "license": "MIT", "engines": { @@ -11907,8 +52733,6 @@ }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, "license": "MIT", "engines": { @@ -11917,8 +52741,6 @@ }, "node_modules/unified": { "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -11936,8 +52758,6 @@ }, "node_modules/unique-string": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", "dev": true, "license": "MIT", "dependencies": { @@ -11949,8 +52769,6 @@ }, "node_modules/unist-util-generated": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", - "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", "license": "MIT", "funding": { "type": "opencollective", @@ -11959,8 +52777,6 @@ }, "node_modules/unist-util-is": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" @@ -11972,8 +52788,6 @@ }, "node_modules/unist-util-position": { "version": "4.0.4", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" @@ -11985,8 +52799,6 @@ }, "node_modules/unist-util-stringify-position": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" @@ -11998,8 +52810,6 @@ }, "node_modules/unist-util-visit": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -12013,8 +52823,6 @@ }, "node_modules/unist-util-visit-parents": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -12027,14 +52835,10 @@ }, "node_modules/unist-util-visit/node_modules/@types/unist": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", "license": "MIT" }, "node_modules/unist-util-visit/node_modules/unist-util-is": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -12046,8 +52850,6 @@ }, "node_modules/unist-util-visit/node_modules/unist-util-visit-parents": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -12060,14 +52862,10 @@ }, "node_modules/unraw": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unraw/-/unraw-3.0.0.tgz", - "integrity": "sha512-08/DA66UF65OlpUDIQtbJyrqTR0jTAlJ+jsnkQ4jxR7+K5g5YG1APZKQSMCE1vqqmD+2pv6+IdEjmopFatacvg==", "license": "MIT" }, "node_modules/upath": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true, "license": "MIT", "engines": { @@ -12077,8 +52875,6 @@ }, "node_modules/update-browserslist-db": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", - "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", "funding": [ { "type": "opencollective", @@ -12107,8 +52903,6 @@ }, "node_modules/uri-js": { "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -12117,8 +52911,6 @@ }, "node_modules/use-sync-external-store": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz", - "integrity": "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==", "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" @@ -12126,15 +52918,11 @@ }, "node_modules/util-deprecate": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "devOptional": true, "license": "MIT" }, "node_modules/uvu": { "version": "0.5.6", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", "license": "MIT", "dependencies": { "dequal": "^2.0.0", @@ -12151,14 +52939,10 @@ }, "node_modules/varint": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", - "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==", "license": "MIT" }, "node_modules/vfile": { "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -12173,8 +52957,6 @@ }, "node_modules/vfile-location": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", - "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -12187,8 +52969,6 @@ }, "node_modules/vfile-message": { "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", @@ -12201,8 +52981,6 @@ }, "node_modules/vite": { "version": "5.4.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz", - "integrity": "sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==", "dev": true, "license": "MIT", "dependencies": { @@ -12261,8 +53039,6 @@ }, "node_modules/vite-node": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-2.1.8.tgz", - "integrity": "sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==", "dev": true, "license": "MIT", "dependencies": { @@ -12284,8 +53060,6 @@ }, "node_modules/vite-plugin-env-compatible": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/vite-plugin-env-compatible/-/vite-plugin-env-compatible-2.0.1.tgz", - "integrity": "sha512-DRrOZTg/W44ojVQQfGSMPEgYQGzp5TeIpt9cpaK35hTOC/b2D7Ffl8/RIgK8vQ0mlnDIUgETcA173bnMEkyzdw==", "dev": true, "license": "MIT", "dependencies": { @@ -12295,8 +53069,6 @@ }, "node_modules/vite-plugin-env-compatible/node_modules/dotenv": { "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -12305,8 +53077,6 @@ }, "node_modules/vite-plugin-pwa": { "version": "0.21.2", - "resolved": "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.21.2.tgz", - "integrity": "sha512-vFhH6Waw8itNu37hWUJxL50q+CBbNcMVzsKaYHQVrfxTt3ihk3PeLO22SbiP1UNWzcEPaTQv+YVxe4G0KOjAkg==", "dev": true, "license": "MIT", "dependencies": { @@ -12336,8 +53106,6 @@ }, "node_modules/vite-plugin-svgr": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/vite-plugin-svgr/-/vite-plugin-svgr-4.3.0.tgz", - "integrity": "sha512-Jy9qLB2/PyWklpYy0xk0UU3TlU0t2UMpJXZvf+hWII1lAmRHrOUKi11Uw8N3rxoNk7atZNYO3pR3vI1f7oi+6w==", "dev": true, "license": "MIT", "dependencies": { @@ -12351,10 +53119,7 @@ }, "node_modules/vite/node_modules/fsevents": { "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, - "hasInstallScript": true, "license": "MIT", "optional": true, "os": [ @@ -12366,8 +53131,6 @@ }, "node_modules/vitest": { "version": "2.1.8", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.8.tgz", - "integrity": "sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==", "dev": true, "license": "MIT", "dependencies": { @@ -12432,14 +53195,10 @@ }, "node_modules/w3c-keyname": { "version": "2.2.8", - "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", - "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==", "license": "MIT" }, "node_modules/warning": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" @@ -12447,8 +53206,6 @@ }, "node_modules/web-namespaces": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", - "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", "license": "MIT", "funding": { "type": "github", @@ -12457,8 +53214,6 @@ }, "node_modules/web-streams-polyfill": { "version": "3.3.3", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", - "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", "license": "MIT", "engines": { "node": ">= 8" @@ -12466,8 +53221,6 @@ }, "node_modules/webidl-conversions": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", "dev": true, "license": "BSD-2-Clause", "engines": { @@ -12476,8 +53229,6 @@ }, "node_modules/whatwg-mimetype": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", "dev": true, "license": "MIT", "engines": { @@ -12486,8 +53237,6 @@ }, "node_modules/whatwg-url": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "license": "MIT", "optional": true, "dependencies": { @@ -12497,15 +53246,11 @@ }, "node_modules/whatwg-url/node_modules/webidl-conversions": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "license": "BSD-2-Clause", "optional": true }, "node_modules/which-boxed-primitive": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", - "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", "dev": true, "license": "MIT", "dependencies": { @@ -12524,8 +53269,6 @@ }, "node_modules/which-builtin-type": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", - "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", "dev": true, "license": "MIT", "dependencies": { @@ -12552,8 +53295,6 @@ }, "node_modules/which-collection": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", - "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, "license": "MIT", "dependencies": { @@ -12571,8 +53312,6 @@ }, "node_modules/which-typed-array": { "version": "1.1.19", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", - "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", "dev": true, "license": "MIT", "dependencies": { @@ -12593,8 +53332,6 @@ }, "node_modules/why-is-node-running": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", - "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", "dev": true, "license": "MIT", "dependencies": { @@ -12610,8 +53347,6 @@ }, "node_modules/wide-align": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "license": "ISC", "optional": true, "dependencies": { @@ -12620,8 +53355,6 @@ }, "node_modules/workbox-background-sync": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-7.3.0.tgz", - "integrity": "sha512-PCSk3eK7Mxeuyatb22pcSx9dlgWNv3+M8PqPaYDokks8Y5/FX4soaOqj3yhAZr5k6Q5JWTOMYgaJBpbw11G9Eg==", "dev": true, "license": "MIT", "dependencies": { @@ -12631,8 +53364,6 @@ }, "node_modules/workbox-broadcast-update": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-7.3.0.tgz", - "integrity": "sha512-T9/F5VEdJVhwmrIAE+E/kq5at2OY6+OXXgOWQevnubal6sO92Gjo24v6dCVwQiclAF5NS3hlmsifRrpQzZCdUA==", "dev": true, "license": "MIT", "dependencies": { @@ -12641,8 +53372,6 @@ }, "node_modules/workbox-build": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-7.3.0.tgz", - "integrity": "sha512-JGL6vZTPlxnlqZRhR/K/msqg3wKP+m0wfEUVosK7gsYzSgeIxvZLi1ViJJzVL7CEeI8r7rGFV973RiEqkP3lWQ==", "dev": true, "license": "MIT", "dependencies": { @@ -12690,8 +53419,6 @@ }, "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", - "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", "dev": true, "license": "MIT", "dependencies": { @@ -12708,8 +53435,6 @@ }, "node_modules/workbox-build/node_modules/@babel/core": { "version": "7.27.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.4.tgz", - "integrity": "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==", "dev": true, "license": "MIT", "dependencies": { @@ -12739,8 +53464,6 @@ }, "node_modules/workbox-build/node_modules/@rollup/plugin-babel": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", - "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", "dev": true, "license": "MIT", "dependencies": { @@ -12763,8 +53486,6 @@ }, "node_modules/workbox-build/node_modules/@rollup/plugin-replace": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", - "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", "dev": true, "license": "MIT", "dependencies": { @@ -12777,8 +53498,6 @@ }, "node_modules/workbox-build/node_modules/@rollup/pluginutils": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", "dev": true, "license": "MIT", "dependencies": { @@ -12795,15 +53514,11 @@ }, "node_modules/workbox-build/node_modules/@types/estree": { "version": "0.0.39", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", "dev": true, "license": "MIT" }, "node_modules/workbox-build/node_modules/ajv": { "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "dev": true, "license": "MIT", "dependencies": { @@ -12819,22 +53534,16 @@ }, "node_modules/workbox-build/node_modules/convert-source-map": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true, "license": "MIT" }, "node_modules/workbox-build/node_modules/estree-walker": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", "dev": true, "license": "MIT" }, "node_modules/workbox-build/node_modules/fs-extra": { "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "license": "MIT", "dependencies": { @@ -12849,15 +53558,11 @@ }, "node_modules/workbox-build/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, "license": "MIT" }, "node_modules/workbox-build/node_modules/jsonfile": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "license": "MIT", "dependencies": { @@ -12869,8 +53574,6 @@ }, "node_modules/workbox-build/node_modules/magic-string": { "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, "license": "MIT", "dependencies": { @@ -12879,8 +53582,6 @@ }, "node_modules/workbox-build/node_modules/picomatch": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "license": "MIT", "engines": { @@ -12892,8 +53593,6 @@ }, "node_modules/workbox-build/node_modules/pretty-bytes": { "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", "dev": true, "license": "MIT", "engines": { @@ -12905,8 +53604,6 @@ }, "node_modules/workbox-build/node_modules/rollup": { "version": "2.79.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz", - "integrity": "sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==", "dev": true, "license": "MIT", "bin": { @@ -12921,8 +53618,6 @@ }, "node_modules/workbox-build/node_modules/source-map": { "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -12934,8 +53629,6 @@ }, "node_modules/workbox-build/node_modules/tr46": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", "dev": true, "license": "MIT", "dependencies": { @@ -12944,8 +53637,6 @@ }, "node_modules/workbox-build/node_modules/universalify": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "license": "MIT", "engines": { @@ -12954,15 +53645,11 @@ }, "node_modules/workbox-build/node_modules/webidl-conversions": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", "dev": true, "license": "BSD-2-Clause" }, "node_modules/workbox-build/node_modules/whatwg-url": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", "dev": true, "license": "MIT", "dependencies": { @@ -12973,8 +53660,6 @@ }, "node_modules/workbox-cacheable-response": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-7.3.0.tgz", - "integrity": "sha512-eAFERIg6J2LuyELhLlmeRcJFa5e16Mj8kL2yCDbhWE+HUun9skRQrGIFVUagqWj4DMaaPSMWfAolM7XZZxNmxA==", "dev": true, "license": "MIT", "dependencies": { @@ -12983,15 +53668,11 @@ }, "node_modules/workbox-core": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-7.3.0.tgz", - "integrity": "sha512-Z+mYrErfh4t3zi7NVTvOuACB0A/jA3bgxUN3PwtAVHvfEsZxV9Iju580VEETug3zYJRc0Dmii/aixI/Uxj8fmw==", "dev": true, "license": "MIT" }, "node_modules/workbox-expiration": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-7.3.0.tgz", - "integrity": "sha512-lpnSSLp2BM+K6bgFCWc5bS1LR5pAwDWbcKt1iL87/eTSJRdLdAwGQznZE+1czLgn/X05YChsrEegTNxjM067vQ==", "dev": true, "license": "MIT", "dependencies": { @@ -13001,8 +53682,6 @@ }, "node_modules/workbox-google-analytics": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-7.3.0.tgz", - "integrity": "sha512-ii/tSfFdhjLHZ2BrYgFNTrb/yk04pw2hasgbM70jpZfLk0vdJAXgaiMAWsoE+wfJDNWoZmBYY0hMVI0v5wWDbg==", "dev": true, "license": "MIT", "dependencies": { @@ -13014,8 +53693,6 @@ }, "node_modules/workbox-navigation-preload": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-7.3.0.tgz", - "integrity": "sha512-fTJzogmFaTv4bShZ6aA7Bfj4Cewaq5rp30qcxl2iYM45YD79rKIhvzNHiFj1P+u5ZZldroqhASXwwoyusnr2cg==", "dev": true, "license": "MIT", "dependencies": { @@ -13024,8 +53701,6 @@ }, "node_modules/workbox-precaching": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-7.3.0.tgz", - "integrity": "sha512-ckp/3t0msgXclVAYaNndAGeAoWQUv7Rwc4fdhWL69CCAb2UHo3Cef0KIUctqfQj1p8h6aGyz3w8Cy3Ihq9OmIw==", "dev": true, "license": "MIT", "dependencies": { @@ -13036,8 +53711,6 @@ }, "node_modules/workbox-range-requests": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-7.3.0.tgz", - "integrity": "sha512-EyFmM1KpDzzAouNF3+EWa15yDEenwxoeXu9bgxOEYnFfCxns7eAxA9WSSaVd8kujFFt3eIbShNqa4hLQNFvmVQ==", "dev": true, "license": "MIT", "dependencies": { @@ -13046,8 +53719,6 @@ }, "node_modules/workbox-recipes": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-7.3.0.tgz", - "integrity": "sha512-BJro/MpuW35I/zjZQBcoxsctgeB+kyb2JAP5EB3EYzePg8wDGoQuUdyYQS+CheTb+GhqJeWmVs3QxLI8EBP1sg==", "dev": true, "license": "MIT", "dependencies": { @@ -13061,8 +53732,6 @@ }, "node_modules/workbox-routing": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-7.3.0.tgz", - "integrity": "sha512-ZUlysUVn5ZUzMOmQN3bqu+gK98vNfgX/gSTZ127izJg/pMMy4LryAthnYtjuqcjkN4HEAx1mdgxNiKJMZQM76A==", "dev": true, "license": "MIT", "dependencies": { @@ -13071,8 +53740,6 @@ }, "node_modules/workbox-strategies": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-7.3.0.tgz", - "integrity": "sha512-tmZydug+qzDFATwX7QiEL5Hdf7FrkhjaF9db1CbB39sDmEZJg3l9ayDvPxy8Y18C3Y66Nrr9kkN1f/RlkDgllg==", "dev": true, "license": "MIT", "dependencies": { @@ -13081,8 +53748,6 @@ }, "node_modules/workbox-streams": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-7.3.0.tgz", - "integrity": "sha512-SZnXucyg8x2Y61VGtDjKPO5EgPUG5NDn/v86WYHX+9ZqvAsGOytP0Jxp1bl663YUuMoXSAtsGLL+byHzEuMRpw==", "dev": true, "license": "MIT", "dependencies": { @@ -13092,15 +53757,11 @@ }, "node_modules/workbox-sw": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-7.3.0.tgz", - "integrity": "sha512-aCUyoAZU9IZtH05mn0ACUpyHzPs0lMeJimAYkQkBsOWiqaJLgusfDCR+yllkPkFRxWpZKF8vSvgHYeG7LwhlmA==", "dev": true, "license": "MIT" }, "node_modules/workbox-window": { "version": "7.3.0", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-7.3.0.tgz", - "integrity": "sha512-qW8PDy16OV1UBaUNGlTVcepzrlzyzNW/ZJvFQQs2j2TzGsg6IKjcpZC1RSquqQnTOafl5pCj5bGfAHlCjOOjdA==", "dev": true, "license": "MIT", "dependencies": { @@ -13110,8 +53771,6 @@ }, "node_modules/wouter": { "version": "2.12.1", - "resolved": "https://registry.npmjs.org/wouter/-/wouter-2.12.1.tgz", - "integrity": "sha512-G7a6JMSLSNcu6o8gdOfIzqxuo8Qx1qs+9rpVnlurH69angsSFPZP5gESNuVNeJct/MGpQg191pDo4HUjTx7IIQ==", "license": "ISC", "dependencies": { "use-sync-external-store": "^1.0.0" @@ -13122,8 +53781,6 @@ }, "node_modules/wrap-ansi": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "license": "MIT", "dependencies": { @@ -13140,15 +53797,11 @@ }, "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "devOptional": true, "license": "ISC" }, "node_modules/y18n": { "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, "license": "ISC", "engines": { @@ -13157,14 +53810,10 @@ }, "node_modules/yallist": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "license": "ISC" }, "node_modules/yaml": { "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", "license": "ISC", "engines": { "node": ">= 6" @@ -13172,8 +53821,6 @@ }, "node_modules/yargs": { "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "license": "MIT", "dependencies": { @@ -13191,8 +53838,6 @@ }, "node_modules/yargs-parser": { "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "license": "ISC", "engines": { @@ -13201,8 +53846,6 @@ }, "node_modules/zod": { "version": "3.25.67", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.67.tgz", - "integrity": "sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/colinhacks" @@ -13210,8 +53853,6 @@ }, "node_modules/zustand": { "version": "4.5.5", - "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.5.tgz", - "integrity": "sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==", "license": "MIT", "dependencies": { "use-sync-external-store": "1.2.2" @@ -13238,8 +53879,6 @@ }, "node_modules/zustand-mutative": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/zustand-mutative/-/zustand-mutative-1.3.0.tgz", - "integrity": "sha512-bnW3k8PO/eqz39w86W84DjZIxRR8ZDHO9l6MYzxYhkXJknoz7Wl4L5HZSCLDmZy2tphUKso3cVjNm6YG5QM5YA==", "license": "MIT", "peerDependencies": { "@types/react": "^18.0 || ^17.0 || ^19.0", @@ -13250,8 +53889,6 @@ }, "node_modules/zustand/node_modules/use-sync-external-store": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", - "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" @@ -13259,8 +53896,6 @@ }, "node_modules/zwitch": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", "license": "MIT", "funding": { "type": "github", diff --git a/apps/web/package.json b/apps/web/package.json index c86a50321..a88155bf8 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -31,6 +31,7 @@ "@notesnook/themes-server": "file:../../servers/themes", "@notesnook/ui": "file:../../packages/ui", "@notesnook/web-clipper": "file:../../extensions/web-clipper", + "@notesnook/icons": "file:../../packages/icons", "@paddle/paddle-js": "^1.4.2", "@react-pdf-viewer/core": "^3.12.0", "@react-pdf-viewer/toolbar": "^3.12.0", diff --git a/apps/web/src/assets/auth/capa-green.svg b/apps/web/src/assets/auth/capa-green.svg new file mode 100644 index 000000000..244429a80 --- /dev/null +++ b/apps/web/src/assets/auth/capa-green.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/web/src/assets/auth/notesnook-phone.png b/apps/web/src/assets/auth/notesnook-phone.png new file mode 100644 index 0000000000000000000000000000000000000000..64149eec64b2f10871dec0718bc47e2b6912e4a4 GIT binary patch literal 347710 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

aDv4j7+9r6KR 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 z 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

r3 zTYHApm4)dovpkEUDTQ?#znVnR*7rqnBV!>-=6KV-Mb@~a;I(m0z(;#ok0~Vq8`wje zI#GalyfZ@BK%L`%kK*upW<0pclc|8$oPM#FOMK`BdNy7SOO%QG8z#RTkCRNH&pk1F z{NP4XxQvD#K^w2vMM0hldIoMFp?GybfyAx+rff18x8%2{$$Kd^EOKcxHMzaA zd{Gb?vR$JH!eM=m)GziHpsG5phLG%C4m^^!oF>Il8&s4W0IwaVMe|g^PEDWo0U*k5 z0IpzaFU#`sHn-n%eX}qpLkjh$nS6oA83-4QR!dka!Ssc@S0fY;swvA^zf{VLSaoE- z3kuvcSBZ;9&VBCn8-l!?95+JjqsoAo65DHvaqfA}zbCuC*~&p(n#A2Ftp7Qwgf^G- zh#bWeIfQTk=ea(~g7F*re!PoNZ~D>^v9rE*mhUb&CPP+9aBBv5+85Gq|gey?`%<}2JIzfPFGE_Z3g+B$^m>83G)=^PS!sw#>GU8b# zM-Sn>z__$)Zo~?G3RZv#b@wG`d`emL4yy42aDWjN`k3>IJAQk`=XC63>yyLC$>yl5 z>PnT7sD`LBjdrP!D-=o^ zi1S2Ny0)0UWyT&gJ{hE8VJWKcRAl0h)n$DkP97P&KrK1Vwx&L5Y!u%*R6aY`Pay!A zEZG!1@a7GDfD`Oa!Sko9&^_>wy@dNu$dTx!-vTTMM~E}SQXwI1ns%r#Okql1aud7TM}mBz1?zEZ_;30(j_ zhzaEO&EndWgc0nW4-*;u>JFf)anT2#kDSJVl-pFWw~SdHc?1?d zkdWS}oCmA2R^wW+9zQo^P*FkIt&z;@8_ff*T8eV=A~Y7C4m8*eFPY?6rLNsUOcuM+ zl({~&s+*sZN<(2W_KOXrH%2(pTufHZ?AXk}Qk8yn^7P;a^~pI#dxNnqp%IPhW{_8i zwzV*rQcjk1>zcDmZIj%{Ju{vMz0ia+kW&p$61GNh{=RcRQrA4Xn7&qkhB$kniBHTV zQt+bisn~E>Q@}A8&(Bq*5V7f5grP=bg%2j=AcAI69gn)ER|Rym(PS}3c0Tlx&oQse zU;uLQ2e4d(?d@692Q<_D?7TfHi_7*ok)=WJd-*Xeve>S1@eP=TMWaJ1aPMZnN{bXQ z)M5#va0&;f7b#_a!(xjm*o~8Riu7#0UDVXGD?C@s7BL{!fZB1D?*TL$YaEsWd>$jq zZ*POJgBcFi2jjHXBJag)c_S(ShfSkc{w-3>TbnoEDTx9RdLgo*7rQgXy(WCwA3c1v zUp|KDZoDDtx5&w3$kNp4>sCeYyD(%IOr{iJaJv44tSOWS?gVvlGQFUj$SSx)HnNG| z(d5%WrD0|QHxWi`o`Nv^JsR|!a~CZi-+_T&YXoOeCPQGfLA>Z$SrvLKTO}BrcpIj* zOr5wBkX#alzMY1g>$iTs?kJ>w%sUznP2$LnR*Q#L2u8P%QW-KdB$k0fy@z^0ttF~p zk;=p!AEt^w-DR$s9mm&z=Qw>sLj%gC&-Z4>m%!-{9IZjZ3YbSbMoprN<&%*86h`R< zd3W#uupk`)IMB-qSM?%;p5x0S5GAg|nn6l9#Oc{K)}r9u+014DDrJ0nIvIUF>B-2t z=-sZe`D#zd7&0+2Jyy$T*7{k0o-%F~Rj71L<+A$^19XIW_ijYgA;-ZN#Zt3?xnap6 zBjUi>#gfCmFCRt9qa~CRK0wYz2Vt3l#Jd|^MsBMb$M4U$kwbB*DlHzeKiqq^ z8RVNB*G-71o49K_;Fgyks#r$PMqZ+(IIGq9Z6SGiAfWm5?UWd;&!75Bj z%s1l5QwtGAi##t_lHRFQ8v9<==JaJ``ywIY`71EYqIPOt6%TwpYphM~%4VukPgzsw zVL~n>Op=2R6pHH?u9j^qNJvS(%9UHw$4s8#%glnVkY>6>u11I_1-wtD#mnDEnAr>A zM%O1TW_%i2I3Z}m-CpIFFBgFua(%3Z=Zj5!&Pp8Jy_ssn4l2b^JUdu5`3|E|!9so~ zF#dj4S>#%ZwCJn{lY_}~Hj7JCL$RvkBK>vPssdxidkM@u?Mt;|Y7KLFNulf5)P;n?q;4I+6ouKo*vMRVl)SxymVT3 zpQe@s8vr4xk06BO#Z|`gKwuUehrPB`Xf5yKz^)D9*A(_o^8`<@KFS;OHr21wHC#*z zRN$&2J_(Er-SG>1eS*mmQHAI3`=kg&Jxel77g3{>e~6-m#)RL`*@Xb14%U1+`t!MT z10mLF2RzeBV<(9NF`lnoQ|zEfC}r$gjDXGmz5mwnH~nPdeV#9>p;v{DA5mA8`>Q*l zL}t&cK71m~AG(G{n!)}e|}ceh9fodGtya_B~0`7vZX zaGmqPYX#G@SL1w=inqJxZ(Pgi|H56Y04$`IE=N*<4iZF|po&uIDz^rdGiW|I#5OhR zQq@&0@k1PjaP`;051~e?!gG~Pgg3o-)d;dE;B+4xD^LqbcTcu)kX1aLTv|;mJM0Y8 zlhE(VP3hx8E8FOAHRqy6h$w+0=(UG3in=9ZeUP9!JeNJ$iPTvoG`!}^7s9H@;`!y_ zcqpmXPZA_V2GaGU^k{F={i2q#g7>9=N-|;*sE)ppz!hcb6ef9A8}Qur)azUrvzJMN zyQ%Jv!ve>f60rl+XvH3i>EeXc?lMSq-RE^IhXLz8SRMM}3O`h3leYHie)L$F0VZSL zYjAy^ZXj|8uT`9L<_VAb0519(OLey+BQbN?cGN2GTfBoUg+k(>U_0Y?d&pRv>6U)D zk&3C{&BlQYhr?Zz67+p{3sYSvo!Fh|kj6i||M1l!eKXo(U}#uba0K|>rqB6$YFINq z|BL&A9&sNkc2TxLZY^CxA2^HUnmrxD>6j`KO5;T(^%79z z?f5!SW+{`xhx(2?07aONJ6#5sX=r+bdOwf*k-ko=OX-b8LOX5lIZ%l$y0*=i&Khze z>(YqPuLAnRJQ2$YQ&jm-PfJFx?5XUSg?_;M5e$I$;tas5)5H+E$h2q*Y~!5@G*a<7 zJ(40d{rW7_ZJLBt`qTw4L-F8a6oHc^P41_@qd1!QEbCz9*RgWo)CgzoWJ48Wl;gBM zt5P)&PkpfV2Na20PEoMP6Y&Nlfq zs^I({XI$sQQOrxztCH=x^?bST1SZcuRXwA>xoGoGQhWB8)Y#~jgKlJzf^&7hdrnr! z_3w7V7}3rN@DLrtGT!4nd;de>i+>ITygO4c;xwU3q~blQ&f|h_G!mrpCL!j@dAw>w zfRrqY(flmaHanf2wGJd}f{zlh+F4(Lo6A^E4TayLTbL99vA0&0_bxq&n#GZcdN>EP zSG293gCs?KH@Md^Q8Z-0lYoSbBVB*L7UhELTolUv&{05|`dpqc-N!+Mh zPyK_Y3zs%PvbF(W67_7Bo9p)^qA-=SiF9G_M!#`D_(-gaGyH0W)XDYX?$V|O>ep{l zqpw)IfE5skM?KZHU)i>&*!An@tCWJ$#1ae;votYr1UU55J%I9g>64$tFOwsMid9K< zqrnaN50;x}^xJ}5XlRo9aNZd{n-*f!Mi0Rpu6PQz^iktYKn2^p9Dd4`4`;^h3#Q5! zpI`xxblWg-6o8^(Qo(2s$Av?fI%<$lN!-vtQ?}8Bz$RF_J&Rz-;GZx~$bC>yJG@zq zbOP3ZzaEq@(k)GQ%NgGPjTEiD!EPM&iAE$(&uQd}9p@kkET?-#L*g~~%S+=_MfEl* z3HVzBIk0Gjx?0S=ddeT^x4_P`cV=Yd;F;>}1Av7b@?$NsJMO{#eB#e>wf*7u&A7J9 zgtxTMrDt3Sr1isp037<4zBewuR0SMF8aj(Keovlaz0-Wlrq`&z-ux2@D6&as=6RLV7?h8F9n&p!NHS1prE*A%e-K&s&+alyIjAT7R z9?F~)>zsVQ9QR@^<8_m#vKp%xo!fWF&GA6Ez)Da&?RB1^iqAI`7=f9NR17TSPi?5k zyRS6O6!6&U;jGZs-ARj0jyEKbQ2b&%#9&^H5+snu3kZ0A-_hQ@i6cL7Upc z2Vmddtl$w-(~4JFyuUdgwfoijc~aEu zUi5`d=HFnGM1V+FA{Ws(r-6rrQ<^Z4Is*OPn@4r+8pfTT5|k#l#p!tdo%21}H_Fh8 zfM7^2ju#%W9%7%sD>EW@8mVRKlB*1(gXd(cx)tj!z4uw&ZVaoa(v0@~_!ykniVAe~ zF$Z|b3V-7Cw&J?Z1q&V93DV@td4SuqLNQad6Jb%V+aLKvgQ&kFQFA<@W_uM3Z$px0 zb*d7lKgtneX?`eq4aLkbCdfXZg0;rXr;~Z_8iFxCH0*)wMG`Cw!AqJMg2Qz@KvCm4oFQ2u?yy-deY>z7*0kno<1 z*k<_^Dhk2U=xYmx37kDw=U_C4M}8H7zUbrF#}D>rupy)0jEAB?hpXk6dE#jbZAe9S z{8so)V|YigtWr)5$a*^bh{*(o#)}um96TSM^jl-3ZqCGJim_x0NU9RmtdfzsZL z;ZzaKFe6aEhy8w^6A7DcfuB}+Hi&$<=whUJkZ82%CUW7`t$@$fd-{pmJAd5;^9k&L zaWVf$QGzNz`teJN1%q~W_perrI#~Ia5^4_tL1uj=Ty`Y*u+l1#^I2~@%WAquz(tP7 ziK5{^x=A@HL-0z!+?$~ovd4*q1JbC?l6!Uu68}`K`W*?zG|PyQe?Fk_DH4*iLxSld zs*euCc6FYjaQG6O=U6jIN6?x(!t4@SK)#F1E)tkbU6uovdmaB%Jl5o# zc7kHEW8C@)#Z8U+Ofxi6q(T{g!M)#G48NVj3shwyHe;wnJM(S#DYkKZ>E1+7E(xI4 z8NOE-uQS{`rXktE+FT!l(M-lN6abN(s?L zKUwdLAR#JWY~)-I34T!fysW*Wn2xntmGnbSAyFby0A%$-JZ1g#t?3y zt%cV2hHQ@<9>raNd$%*Z0ewv&*C#$FC8ttm=_S&U zmb|omII#oTh6KWFQYgPCeJbRgDvG28^--cHza$C@vTXVYS!jkQ^{CT%Ma4q%Oin00 z>a|70EVAAT=Pu4GISvLzN(6xaX_<19 ziaM|?ikjj!Xe(|>%0x{ToRzpPWQp@kF0aKd?voE04B`~CT2D`4(_)pn$@PD}Ch%7+${P}|KEublgZjfR!3y9Ba(Nc>DC%%cOQt<=*y3j5!e{6DYU9-lLCgiS4_Y6ET3 zJ)$YrjcIhQ`q*EtIZ{$sVyRME~T8%+Fmj2%4%p7t%iimCX}qF71gs&Y{nNz zkZAO$y4H@%#5ZN+dtsfH%nlg$1|M?gvArD*J^9HKeR<$T$ah4gl(w%EyVGMi<6Od1K@ z_`}(YQ?WlTU->tSRB-3Ss6WhZv?Cye`>BDF_+%O~)7I=^hEG7lL!u3P*(t*>=t~P| z7bEyJh@^G&u<5x_4(7@*eN7*@3u-Fb7bM{OzQ_^IHB)6OcXrMFmMJut(IPll#V;KBo$1VYASKsCT6!Y%Nkm^` zo^6v^EDV}91InH*E#D6`&v}SQf1`1Wj{wsS5Hq&sXflvLwZvh<_WaDSpQ~@im!~}0 zW+z#5vTK34qZf+IrpcyR`JdJN6h*p`EK7jiKe3?)22*0Hz$S*59P6%T;s0C{kmP#% zTj@M$l)yz5ClG0C4L$fmH3kY%Lm}xIXtpt$Mx`n{Xx!n@eaF#zlaz+E`14>OC3AwZ zO~xNt(IU009$vzC1K)5I4iKn}0@2eQ^k}HY%VDpPCb|1qj8ah8+`y->M5!H@3n#F1 z^PNEmxMiGBlh{0tvUdaq!{6S}cS@wSA&wgrnfUU%R!i%taUFP}5o;;SU+g<8ldJB> z{ar-|D&j5HzObpCFb}d9!6Ozgm^#4sMHEIck6<4Vj#s#0!SDGEQQ(>#7Orbxf5#fN zfghqRo91|%uJU@0jr$^&9-`zg=lJZVQ*#y*^GOnOnsZRcRD7KZCsr*%K}6iuG`Da< z?C!YVE>D^bbZ;|(?+6~g=7X>=t?sB5q5etgc@=)>i>;r={11faU-Z&yQ&~6P$qetY zJ4uVHs}MgoW?A_sE?TvFqP1dae70BSelK_;g>i>bU-tL z<6@~Bwn5~MASGVeTlI~}Iy1FJoeH~yP}bw=bN&V#5x@3syjR$-=Lr{MuP;Fw%~(#8_MYwZ%@@>Y{RqT22Ve=g~NA! zrPW<{vMv_o!#0Rw8pX3Aun}@xWPNAy!vGfKl7clh#Y!%M&)u+_Ge#?IhFN)T0j*z! zLQ$H9ROwR6%*sVuX+J=47fDg7+f7^n;VPoeE>hXK(}6j!f6kTi8{jMXi5?AS)^|RF z(Ksof(xv1tUv5(8ZrvKUU71yXP9LRLx7#?mipuXUmcRQ-u?CZ^s)dribMj3Jw$=eC zf&*U6N{oxxUADE`*MhY!M=-?kGR&MY*KDoXDOHB4;Y1N@MpD*#;8!D7$7{~8mx2bZ z!lNg|fnsT$Mt)=25@aUZe`mFi`TPa7nA3=#_AUZQ&=&Zs!863m8hV39%=v1{AcTc$ zs04jCLbC?RYDV;;$AE``18ehD0R`ELieo7H)-Ky@tDnJaU^iNFZ@cguO7G3&AvY%p zj5XRCbbmu3Y^58Y7(T4@-BW2WtWg$va-3ysN!o-E{%Nba_8?JUl`A3xguU~dBUnW= zy@;-Hn(%rNu*`n_r$U>3Fzx9oS?%H$dJ8Vdn4L1PMszzY^(AQ!DaI5dc2K?^;uiZ4 z!*f)`Sgx)EMgrjpv=yr0a-x5Gyp{e4qE!bn$(5W0^G|`_4Uqsa>qL5d{FE5cFXto$ z-JABw8hh!Q96$c$_6GPPn3PPp7!u77lCO-WG%{_W@xY?b$h^_^vt*$E1hFFJ@g%n`cuCDN>5aK34!w#PRzABYiuW)aXcaFx>cO z%tBJV3Gso0rQ37YGAa!w(~Q`uc#!Na&zJ`^>T!2sKlGW~dO=zeL>xcu|( zXQ|Ny5r#xz6wl;W@PCr{G0>H^n_61_n~am5BKm25yo6d+H|hdOFozH51Zq&|S3s-K z-WOt{sOt$PZnDM}Xi7_wTw1|RF(Beh#(~7f5eqYB%cvK?%{rdXg0nR+4Aj@%vPal* zKEc4K=nEvli(+T49WUwgr_H-Fe<4%P)DlDC8Eeh)$X0USPzdNieqt60{%b`MTrkbA ztL*;9X!C*Pa3zQbiUX+P1Z1Bf=i99H5`7H2=c^DA0-_A>l9}q z?l3GXl!4Wel7fI-y~Gcp&!3k1^nQT%u@X}u(v?QW)y(}1Eq}g1l;Jne^-|MOQlo`1mW4k_aOyPgS<-(~&3flUku zWLcb%%N@AdJHMTi+b&xa0jN|%FcQ2$EQY`zNrr8if0=|E5lr5T@*JMb%6T^F>^!6% zpC-X%WTK*NLJozj4><)NuZl7HxUa^B%Q7{>2+QhO&PpO#?UPOx&*9}TQi&(NXMgt4 zI4r}4n0j{CG90dqm}HYJZl5m=afFlJax*5%5GTX*vC(3Jb-bv>6YpcaVEjrZEMk7i z=dD762E!?3bjZ!5KYRRn2{ho{wrVxR0>uLGrC6Zr_?Iyuf=odWDH?xlvFg*|fTJCU z9kAjLVDk=RfFeZ|G+rfQNb+^WI@cNHSnhj6T&Nth>M8*$9HPR(u34G|wgSpE_0xfx z&1t??{bY6MD=Rc3#(4FXo2-N0;~tENxNy1a?FNEO^*By3tajy%x0M15p4cFXcCI2b zm0C(;UCQt&*AXW}>ILb*Qi7~^4UX~Bl!KJcX$4Q+H`giDdS?6E8N{XCc!%C=$!CTl zkf4uCh!0NnunF3+mYe+3wF4vl@%tGM6>f-|=lJ`Z=$u;q$x^f(lMJlHsQ%^|m7_+I zjd722YNQi=w7oE)XXl7`0;QzwK0;u_j7GB`HXpIFC0n??FY~_~oGf`~um?@dPQEN% zZg)uh%`b}+|I8q!2|)<-r34Po{;owf2!)ub=1X;1#}7@DCdnM0PiLEEy!yTv*Cp~a zhxJKE{+rv7q{>sg-_cfSYh}E;1XtdfpPHZU7!wEo7S&DpUFS5#gu~^Xy8v4dFi3LH zX{X8g^`!j*U?Tl@$@v%n8G)Ys3396W1utIB!tK` z|AfQB?hflv^5gS!D0xsig@ZPT#%6av(SzKo z_l*~Oo}zRAKeoOyEUsnS7I%UN2?=hEyIbRKjk|>a2^t`{LvVL@Xo3f~;O~@A-*?ac)xWw|^{T2_qsAC>PN-in{Zibmxvql9V5ohxwM=k55T{RwAj0f>uD~{Q zYcWU3J^HtXUn0nK>G)wx~~2Q#s7zKfFKhhXvunr=YtOe8Xzu!DK1J7 zZT-oBqVwTgffU1U3#liJ#>jO#Uu&SAAziAIz8FA^iNb`-3=b+OD(qONoDJ(wJ$jHK z=D%Vcu8^YqN}-Jv+f?#I$;B61*}l;(SVk3}otw)x7Mzd5HymuF?e*x5;+RIgw^RV3 z8-}ie8jIn6{KjF-`nQq6`EFD|HA_pC5$dBtGv&%4<*&a4v<@wCD;7}kj3Ea)cz<+M zMBjs%DA-TzyrVf&RqpPNvc?4xht4w?8cT6Z)ZM@??3}j0?0rlEjgEwbvVC2U8Cx?{ywMrQRp%sIR?YeIr6_o z_f-n+{2`>B|9X0H=?YW%h3=+#dBP(Vq|sXgXg`ilpVYr5;M;~x5zmcio{XW)EmC2{ zK_7od4U+x*xslQsP=379^P@6ukUDcO)TcX0Oai_@moz2uH1=DsKr7N0@`aRzGnNdp zz_s`4-?1Zi*vvSkW04E*_L8M+=@lJDl>)L6Fu77SI!pZ{DVmSv2@uW(E7j%x@5Y7< z`z!lj15I<9O#RJ?l}#`xhayta-P0bV?8?hZ&m1vf*_{ze)k0TaJ!tpA>Jtev+#@}J z7e0M*g0ypGFo)JpNsZ)mkg~_^TduvE2?We+sd{1xX?F|7B^fx7On$fd9o96486 zgi|wW6fQX(>0>BX!Gql&gqVN0|JQ)V*rBAfL zZkIo8lvdD#8HMOoj>qY5mM3MWxVU*fd1OKu`kH3q=B)TtSp;$YX zU@9jdb~UsdkI$MR9N)G4h=gx&%)*dO-xh+yoW-Xlr}L?!eh946HOw-QQrxTbO_ve7 z(h&P|c{OxpKWlgY%mU907NHHuc=GsWO<5Iirgq_kL5agJ(J3ESn^;E1Gsd z65zyl%ABU08zoj%B25dJHnpWPX4Yc)NoCcm*>1b`dxg?`od%*QJaSrhbyz9Ajo$kC}FZRC!`cG*1k9v|I>Jw(M z(f~8|qw}{^&;k}90XUB%Q|6%tMTw|J_CZ5&S=NXYcUa*f!?9(B22p(41u#Ldh_k+`hjVQ4FyRbU-)<*$bo}?y5xIE-vh=3ma@ z&>)d@Y~NhY5tQQ?$in?ec()0FAjf^0^tJ2sS@^hjJ{Xwjm8fTxCRI(_h@uHV_eW*Z zS{p#u{00U4UGj|+2{KaKMB#LV~TM$L#KfCaoluuU9y=lsg+7a4clOR9=v1MBH9|rhgu7Oif zKh^KQ3!3UcrN#5VA2{OGMh6vOCQ$yE3dYSYMy>}fSxCb5OkVPH0RU$m^R>*X#LhVk zxQP=_K?7B~AJXxOkOO39dk)N9J!?Ix9U_MfTg8R6g*4l=I1R1N+y)>mGcWy><|^5c zx$-HsbbSWtr1E5x;n$yV*N#J2BPEP+id~;w8A4@iLF80qda%Cv{1Wkb4QzfWc|rDi zYWj@yn&rc+gV+DxANm^bT9}K&Av@2*dFiixB@6*egBZAF;TvQ=@Sd0`U~y<;y`_kV zuatD4FXKW*J?kRUK^kcBf?V^xu5>5v*s56~5?A|v z7!VKs$v}8P){q7L&bnOq%clOQBrsu`hYgUk9}qv|pA7)k5;{7DD;Ph*eHx48yg#`Bbxj=pen3Du%-}HUqq=<~&jAY=1MekP>>Bs*oJfit# z`uNZlyLHk!#|agS@`)w308&uaiXJ(_sAZs2>GM9F5jsNVlSboS&&s%mvBHqCMsqX? z-a2tGeI|@DF?1;V+>5R51u2E?YcARtd2TL?A&CaBbYyCEJ18iZ?aQp=`RrU4?kp6y zg{ciCVuDNy6XOK4=k>2nJq6L${K2B+wBDat!Bfd7EgrE3Y&@DXdQ250A1`8svz!-r z|1CxYLSlp$ndR2k?@)e692mR+ZkZ=<|kU1XPPlxRAJ#M`=-jDPP4!c35 zU<4Ug9)LM%iR8_D>Ia1-?YA?GNr9Yl_PQFEOa*Jp2?6&E>Ugn6tS!YnUoI#Ub-uP` zv+=OeLXnlmezk`;pQocLo(}@f_%q%cEB%XF14+xtXeVa^7X9dF3iYWGaj9yX{V*TruI>Z7OcxF`zWKwYWh`67MJ__ zb$?0VJrHe%RYs^AY6In_593f!V?n$4;z>nDBulC{*t8R6Pt1a%|?l zC(%ukJm$V882_a;XG@W-U8t5z8JlM8eTE|jk{W(Q+9_SdKrZ(f`qU{h1l^HsMMPpR zqv?0+cTclL_I0RlKP^lLf#Pxw-vi12((Q60&4e-J(Xq5WQOcqnfLt7qKHc6@5q==7 z8fZ6aEzyj~+`}SFG-8dEp@hc^=EW|6j}zlVR8bT%9dR6p*ZCLGF+2FxHjeRr{=-xm z5PvIqJ@P&uQ(lC=GJCiz+D|7V%}2Be?4{FcFj(Y-G@=WGH$9x-2r213r}Dwl$uyz` z*6}Kp!LO7}uaN&yJ!nW&6^}2Pi6{^d+dXB`@pdOFRt?^n45u*IYuq2O3Nm_kUN$?* z{(psS2!%V3gj=Z!aGv_%A(kxy_oz4gpsk@%UwkW*a5r3RmT$%wl!_( zi1Xi>CZf~JYF^Fq|K$OIgWz8j(XmlRXc%~g{wKXL$m8Ey(FNs8pzfM#Xx|BamhKGz zfPo1gL%ynRS7?(*u;>}4$-}asKS%vbAlu!3_2P~oj;F4+ zVo4j%HGV~|=#)GhtGOdt8Zc#r;yp=Y|XepQh>pn?9*hi5K_{+x3v5>twrQ{Bg4WICf{dm9aTuL8r4L z8bl#b@tfvePof_RPc&y!GX_5O%H@Hz`py6UyMG6+afDa>3p%`YNdl8LnSi#zCl{t8 zV@I|mTb3Lx%0P{I*j-9UhfBB3?`Hbfxe%MhRc`Ke4P~Hd@f2loQv)!>;Njn-cZh@e zb*ae-9BShONg3w_%f_#9^`MA;u|3k#Xc~4JsjX#z_TypXs`G6MsgO)omL|d!nBc#wCAe=iaow~Xwsu?DiMYL z%ni78s%_J8|F@Yjew~>vgy|+zq@Tee?bWgi#!qzTt0V?YQt~UhT)W)BK{4~SuT9m5 z#jPI}SpVhef1!iGTSz|FPay&rCM+Zq)W+utz=BuzN63j8eaLT5bGO>5v^fLMzIi1< z(!|hH{YqN;ivTiWzX3w@S>M@bVG1d2eEd&HJ4J;sDDgOTfcG>Yrr!_^aAtcfw8WLS9d+$n=oz&@m z8#(<& ziMhhy^Z~|63+_kcOmZJ+2iF@0&krl!f~BT zxCs6Zz^_)Bs7C}WF82PWAZ#a_rt{^kC&L9esUJ2=kU0(^(l^EeDMz{1idg@0yC^4< zJn{C#{oMLPRl2}X?um0|(fu1KTZT$312t=t+Sp!!n!gm4S2^M8Iw38oC=TwI|<+q;;^$Z5+JiE1$SG}&S!v_ zJF}e_RjH%$H~bW$5TUr5iLf>^k`VTQzdn$w9E%5O>tM&q zH)LKRlZR}jux7u>|{-J zP6v2##9YJ&LuX1VZ$;%~q~Q2AeWNH(5g#?Z&iw~`jVEA!3Xmdy!lv)q(l61Tef!sj z)gv>ySJGtBE*upj^*)zG55J())48eF>O=;3!RaC-0o1!_tn8O%mwm&{@YLErC7@Lh zQTh)($gwEJ<)L7zK_(}*wbz!}^Z`8ydZO*SPWYz2fzY>cV!@x}ku2?xJMw8))za;u zSEcD(@2n9Y#eKR#V$~C4RE#U%VN9qh~Sr)88k_n|$!`1GFFj@JaAM#I`GsSMLEw-*(tDokw-xh~kj#`U_SQ z9KN6)#{BcL*3f;$*^tB3)SlhMMjT!p^_s6NOgRh6Y)~E6E{wJ7GfV=EXb%flJ2Kda z0yvqSi{fz8h+V+f-)5Nc;uUuEz3=ip6Qb?U=IG*3xK@d0jgEG!xU1el4DRQ;@B?mO z9Z_2hanpdoc@5pefTX|VL!>rSGQljq&$@@tw|hnxRKIvi(Y?N7ANZI;o`sXPEtn|- zYe}E3p7$|LzkVw_rXBkJGuUw~n8)KqpVP1Z!wY}qeg)SM14-KAP!G@Zjsl9k`oKHn zARzXjG!+{P*l);c`OQ5<1;fifFA}#@H?0-8*wSsHNHM)%;?|+#4_}gxTzC{A6gKjt zLv5rexldFde7zYcaW89f>D#uzty`-{+O?~A2Fv1F{h+EXm7Oew3g7N3#axjRW{zx( zqVu_n0}_1f0Dxf%a|~b)lg2zRunIqDleCV!Z9z5_gX~Rg(kT- z(`%u=4!4EwLmlsqnbOdRX#8`ZF12*M5jwOyAF$Fyd25RxCyvxrwF6Ib#jFS83FDpK z$FfJ1&b*D%uJ~-77|eU+yVP;A)IK%Ao<@+g!}r;*LS)|+=6twghY8AnyMd8q>#t3KK<^ zkA%Wr-N-lF#52%24hD=Sq5etcAe{s(V{*ewTRblvysk}?|9tVUT+?4(Q_l&<7;*R*uA$1ZCF5jdSf z^W8!Tf*Sn|b4*(l_nuoZ(M-=N;8@?^D1M`r8KRSCX21_I17p|x%9Ea&m7r$``)5Bv zj*Yi4*LSPh{kpBM@dycm`tbZRGY*iU(Unx`kdz$Hss?Hsu;uS!xO7OQt1xl37zQOG zK5M1Ph_w`(*_T3D*W_y;ijcDmGgmjL5cR45=n0c z!5|Ma#nztpIc)<<@icR%^nro7fT5(^oK1hU&^Ac}HPZ0yFb_vEs#2OM7uPWk_PLO4JT*PK+7){X#=w3LknaM#Fisfgi*Mwk5PpIEn|V zD677mVSuH(ig|p9quDyDuo#pjs7eB`3b0i#d9yM2C`+zPa`fN$=4?b4<{%9h(W0SG ztI_^qMDD{$z9i}w_}TvVN&5ePd^LX!bAx$PQ;U*h!R3?s&f$;P&zy|4`kC<*@9_78 z@^L+qJB^}%>zK}07fIPDT+}()p)#MGfU!@&*pEC~A(KB6F7j<=9g)_<283{&VVu3qGseD&9sk0ZZM=eg`?K0f{&&#l&|da13g*0C za&6A&`^iS8vV+^4(p{9r#Ug$QY$Jv>;x_4Ll>%=}FDbZ|rQRg}tob}{8*oWisvO&! zGX&|&=*6L9IHAm_{)*ht z32plS7CF#-6~!UDSP^a&?Ck3!h62C78mHNS&7pN!<%fZHNeNGHT%2#*pL8Mw`lJuF zy?|F^MI}TI*mEc@=J+rPFDYc6({Z=7FX8ZP&As;pw3@?a-Vc|;V;7GWem#Zx3*lCt z5fktS%m4Q!| z8gULCLt=@qV<3o8W`PSdIooh85mF%g%3aP~4CQ$ojA!wGt@CNtjMm1kWlg^$B8XEUtDRtkJjk zr}#FvG=M1D>}9l7AZfZhI_aG?R@+TTKvnWba+%~`e)U+!wj2^gv0!#ps6RSf^#+|t zA!wU&_dlmjNs&gNh^Me42uw-(b4Z^pvXTZ-|CO^h&T_+>~^ z1#Eid-5{0tWZv<0PPy}xH1cSp>)SV}dE)N>x$OLHfu?-}lhF*rq?q+%nkn3;{HjA~ z;&v&a0%LZQ4pX$l0aO0c^Sq%+6&RL}jb7m!);BdL8cQh}nlJj3hwK~l;ptobdD@VU zU0afAtaFj=vZ=*RgYU*F@480qtx@QEUusxsV6J{y8sxzpoaT>);dl6y@6~YoBjNq3Vnqq95H98+=>MLrEP&XZkpx+e<#yV=6d8qCb7f>LB>t` zxn;(AZUD6K&LL9?6(#fiA^AiPq=MO_FJ3Dg_-R?quD?F|3~wEKqNzJ2L}wJ;EjnxB z=@#lCMH3JqIfSBsM-{i$*#h2P$0eLb4F%`BUDR@K4z?Qt*o8AgMqp=ca7D2{clTdy zg}0|u@gG*>tPt_SGD4~XN%>ryRw0tasF!LC+~-LSX0G08oYB`3Igl%_j+1KYc{F<5 zpV3tR8RaJuO~9dY|NEb3Q^0+``i%v2UebgsPDK&H!xit>!fyW6C`CI z#vi1b3*7<@(q38^I}wMW=EFDkQYW+g#kd>-0JJ}7d~$`x^vg-jj~@dk83`iRjbqOV z8V)F91DWvT4id-D6NZ<*q;fD~G`jU(=$D|U$*Q$;qL_JDwUpCt&lbr= zt0}^kZ0|>Lm4&OjZ_MqC-l>j0{aL8~)ImJzn9zP_Kp< zJzN9m<`K3z52R`-T?)hRCi}r(2((W6*6i|}E__CM0=1ZodOegaBv0Q9i*R8XNu7p` zQe9h_sE_<}5Fm9WljU>H7BbyS?wfVbD+w_Q+&86$Ae6!@cpCXjWe)NZgj*%o3>V^a zk05gopiP<@6O_C5 zQKiE5!zV%V!_RaTeRjBCsNOv2Ie&~B8;t4uu$(*J+l!zLO-}zdOh!FRXwv%^RERj6 zp)iks>{C#P;**aUBZGf770VdQxCuurBeKwmfq~1yA@A!XbRrxbwOtzCJ}R@ zd>LkzAky2KE4-e7&GDs+pe z3r75IvFgQmFeH=%J(xH{uZeuJz`TvYy`Gg374?T8PrYC6GhsEa(YQ#6iJk+MS7tff zGv}@@C9&uVv}&ZYMU*H^&Yi$$i@Lh!&k9BDAEgLSJ)(Pa6(lY1yF#T#h+2XSNu&eL z73>D)CUEJJaQ| zf|cgq7=8~`BbIR&_vjgaC-(j|G@RGQc#jp<18K&E^UW~Cx`*%`2lSjK>|j}9&^=#| z73t!zH3$F9?DVb^!MebqS_m(w?BY{vj#xA!lz?5?I=k5~pJ&F!&0*fUupI|4cNs|e zsZW~Qj?L9z>?4DBZ{&X@F=~U4HXbQw7ml3EGwhJ&)Jt7Q9eLZ6Z$FIB61ZBHZvA8a z)O*D)dXHt!Nl4=lAwoj2Hj5);Tdu>B+?gN-YxDyp{=>O!9Ssdn@ zeJ=UU-bZu8sj3gTwR!*NniSlcYT>rZk(+GjrP$cL*CHrGM3XsFW7_&4KXs7B5&~!?l|;fjjBUwr%%(NNKVu*WF^BTh~MkYuel1&z==Ox`A0?JI|!= z+8&-@xB8@>;owA9x4F!ONqNtL4Ko0aJHs(Y&hrMN&j-A!8i|AyvGCl6?s@XfJ3@p! zpQ0aEoizLJk#s5dI6QRl# z1ge|28rpWKAz{#IkhXc4V?6Ji8XHLEB+M-k?hjbLxlepN#FrXy6Pt@=pu{l%y4y5e zBc$AH=|wY<-VWte^9~B_&u0zAGjiK9rFIV@p0qO08D1%++^zS?E(M5=e_`?ZLF~9u zRV|3?xJ2A7W9V@mxb*Exc&m*28L<;SRHH=`{T-|P8~**G>M@s_FVu={$yX`q&gUoj zAMyuI#)S0M6%`4U1nvzRwO@FArNc+7u-S_Z9 zCVxdt3mvk+ti)$<-1>*fvGlrT#8kpKx0j<|9ODeyzPDtw7~*I_LDS=7&AMX~uo$Q8=b zg{q&~tJjX{==w--bN7!oBn|n^O!XN51#!yRu{)c?CGA~bt!B0Wwo}UGy#LhJ;!wqQ zk-whDRRKX4ootgJGQ*4K(0ewLIl3o4dQqXH$_qt@!wRM7b&4SR0SUkJ^r_KALV}(5 zE(_XRi(heu3(|bP=smmbt(uMQ)NE}Z*i4_u&n-E4hP9o~pD1;<^l*A!p0&q|jdRyq z?oAdroVnr;JlM8}xe949HEo!vYoEJ$Jnva-UB9zUXf*UFIl<_53o9!eL@s)kz385( zYtM4bX}P;UsP34rI_GW~i~i;~Nr552FsJW@=hcNeP+PChY}yy)_-3K?e@;9RZi(y* z1=c1yyV=7|tp2NmkL9Y3x6&PyeBYV-h}z=m)!ZwL?JLMsZ#Q<|4Rvv?%Nb#|D+26i z4W3*-P>|smOw!_!%#o)@gv(^YU-?YIM9|S?sWDG1Tw#MRe2qWD;yn8)ZN+P{l|*b@ znvYqD7O@04BUCESEx+i!X){nWt8qKivtK(nbO*;b`JI4tdBn3NjgWGGbJ%yuH1+Ev zJB=K1F9A@u89xan%%LNPpAc6@eXi@l^~?wu6Rv1@3)h`+&MO^y6@(rW!JQV~^HtTr zb={ozPrPvd(t@F^FeZE)*NU=CkfwnLGV0CN$d;-M+nJq=$)5%Z;@c z_euJiQD}=yZoe?KXqDeSn4d2UkAb#oo*{)B8e9oNtK%a16t{;nr}Pl;R2bZOA;0L9(k!cpjG$_z4Gk9sUJldPFrbrQv%rnFYGW$9^@t_268r@WsK8+Wd~hfvly zj3>nzHu@|ZU6$Q~^)7cVYDWZuv(j!>?4#0sA4%G{#q3Gmz=S+eHahj%K9d^4yvQ41 z#j+I<-&jL_UK3Xs+%W$_c+x^+@$!t;Bgy_}EcnDT+pNc%#8q!bBae#!eGA0fd*|4A z`xy4stI~`5_)<0y`{9`O(QONvjO_ioHbahSZmR`IYCa;NOGe96d;J8{q1}SddnT1JMcC~*FwSBgQa-Jtx$m0c;3jIpr zF-K>2Cdpvt`sQF2BVdGp%IUcI;=|p8Aya&m@GX*=PJw)PttzU-+@&SPplu{C*5*mB zJl3xQqCtL>2L$QWQl>Wfw`v))96N1Qf38E{?JTe>32cE%Zz|d@Lr0S&i~H)+Q_}># z*aN3<0CnZvS6#eP=}J6Xlt0~Jsdna1P)GTcxb;X`Ic+xJim6O>ZY*Uf$JBe46`PNK ze91gJeqh@PTNs(aj7rLMH;A%-jv(f&zDpMT`{K3R_Nst+_LV=>r5ozmUjPs7V#;&g zyH;F7Yx=F~oUI1i@j8nl1AZ2jF?YgaVD2Mv6&4(pBIH=n&X2pxfcs;U#eHB$Cg53c zDeQ@7yip1tOK^WNbJ&;1;+kvU;r2BKHiBiD6nVHqt{O)U3I&GZxM8p`HkDQqaKD)l z82H#sxp>==#;e7B6%xA4Lfk}rAf}ai+C^$yPd(V0Qu@e+L!szOnPlL7$7w0jKW;4b zBz~Ogm8Iw17jf=FOIl2n!tIjT67&ZRQk7@5Rehiv{@z_#nN>iD#9^6M#~o7D20%$edV zwoIT>HnEBO_2X!L3=NutQILSZ5g9}3yDj(Km)0m@(w9uH3V>!YrD^*~%O00HHSgA@ zma9D17xFuuq^o1y6Opa+z*tdyL#L9ZuQz25L*B>ASLmyz243q0 z+whN{<6VcYxanA{kFI|Y_$vvMy9f&?l(+2Zs82KaSjo4(SKv?T1O}+hqr7joF~n_GqHsPlNPNEr2(jW%q;VF3aTgtKRtM zO0bfMGJ;5z@05>=NX9-ddyI|AfR?XLy*DRzvZ7I$ADW}%$>`3IK;j_(80E%`4tMjV z0DGP5$mT=1gypZiHyfy_3HD#qWjnv;&zZlp$Y#1;NEA0K##Q8;H*fm2`*Y|}yC2si zE#1sNg|a?K!Q<`pkIXG+U-)h*HXj(co-N?xCaI0x`akZR1>3ocMDp(OJQ;{M93645 zPErfJTwa`ydt&T1w)3nfIh^F(94xi&hRRW@LR$Ro_gYuXwYZC@aKZ&Jx%A}ie_xN0 zmlGjw#psL~{>%=io--0*%a-trd>9KykF5&85} zT&wen3BG7p+mh&tCRwZQ^!|P2?#Bqk&E+ODmNl;hjQ-N@!Xa$Vds8!B4@nmLZz z|DdEfO|pyqnvgXuy8y|l*kB4FswlH2CxS&H>#4Uhl>R`~l70WDWs0q}ZeT!(Drm?i zuG{=Vw2If_w>?1i{)M;ZAQs}2)|-c8 zGNR+2yFLymV?`GMyCi{!-Y|#BlJ;JA=EpB45!D}n8wl&YKM69`<@Io*h}d;x%9AoZ zRn*BI)4w4Pk~2+~Aia_zsW&B3*~OyEpp?VfRiOqBRdCzF=dh7V|Fy`b@6RXxQC2H@ z-o{{E6Th9Pu`sGJ@?Ddf%Zhk`1dpi?T>e5w0P zcH@hW!&uYW*!dF)2~119D$rst*8F@T9HZ7X`00{`%7$Qjpt963)1$==2U5;*KLa>r z-_EPjo5u*6^FR%luvuLc3)2f1nzRTp4pg~y;mv9n#k{{XbLiyyU7Gbp=*_w<|4CgK zw&CSgE-+Zg%0Cz_G3)u!0$4#gsvRpK%(u~Z?++~oCu8IAEHFLYSMvKa72?Y+qAam$ z$5(<*d2hGjnCh2~)i0_aL*%8jNYn$mK&{vI1brR1n^LC^q)~u`O}Cj3q@4=-u6tz@wJ2`6o$45El9(d!O*ne5+dr zJX%}!>5y4$c+5}_H@-MPw!`%fQ^PVK5pGZn$-3j%UG-ZsL2KCtI*VbHPktx9yPG;L zm2W;uCr7KtTcB7aq+byOq&woTtF-`LEU3OtmOdd{b-8bZ10@?VOzE0>=~S3)(PK-4 zoY+fcYQze+C0Yd_lKsH?&#;C74csUuMWlZ zy=Nq8VTWzL8Bq>IoOx68aWr-{>szRv^OO31R`;D;?uI{Me{c&b7EJBu1#EQ>v*1~K zw1(mxV1{h2OBIqKGz@8Y;5F)4Yqr?WJ_GlC@_426%AX6$*cndyBv%a=JM;mHtgM$6 zW#Vk6N{83i$GWx$FfN3h8A0TiN9F+ytTDG6xfvmzCW}T(2&8mu&mta*4*vPrt&Y1? z;#-<^9b6aRWW<6n;HzTO;s=?6lVihgR}X9lrAR!GV60NWp2Z)@V|v9WL-*JZt)$3} z=I<%YkiJ(Oiu=2-q{p8Xg<8)qAmH@!F&{ipBMk{S)(CU9_b#6oN18609F(OR?)Zz6 zViUmdT5lJ1p4rC>GqSmUV}l{HTNohYD#@e=Z4m|H&msKjg;?*WMX`gDSp|*(0WlwO z0?}3}_lDavEA$GeH{`HB^ogI3veNH30$LTHpXfY_Lyj_pnZ>Td(^y39og-N(?bD9x z5@!in6M7gD~cH3)KwnHN{TnW>b#P7}vb z*R+}JQ>JJOWRcluTvl9-7V~yaj#U&$g2R~!eLU`C(F_89d`Pp8WS=1?PJC9+TkGk0 zPed4WfA>SXVdbsmi_9qNm#VF|q|em*rVp?F9>}>c{`8ty^bloyvImV63e}$t#ib$3 z?MCAt|8331=`m^bU6fVjjyEz3`p!4WQSP=^`jFBNV`P63+g!u-J;Jgw8R=LkKtH+ zPdN>Hqo@WyE*}tVuh~?wJv~MZASi}(P-Y2y4HK><2 z%W>(Bi9c}7T0>CLC33EHSb4 zBM*Ry#`aoJ@TasYt9@VZtZT+HWusW77>f;uYjt=KIQrvdg}_a${Gy#$KzrMqM;T85 zK^Jby?)nwyw&Ou{Nzk9jXcZ47`?!XI4le%BG^m)p4=6xM41rCft8fbH-(oqt1dT2r z4Mrrvx|lg3F|}3Ki!TfIa~YQ$&-4BIPszL9wU_}o?PBIM>SuxL%(Gw3Kf?mQ37qb@ z!;YNZ2pJi=;=vJB%-DKa-@Ju0cILgF|69C%c+G~tc~_G;VZyL-SAf1+X!l39?T<~t zniw9St5eXgvP1w0F#D@g;22K2C(bLyMa8z6vFolx3nrg1UR#TJBCAWmaFMYl!rxb1 z2RMYSN>~whnwmeYR2&P!JM~{Il%l$1zc&v`4rTd)0RWp&GYvM}Zu0PQ&rhpkv5K^09IDLz4j>*wc3dii${a&MQ>YLE^uX@el77!jbR;WadMVy2A%F_ zCeW7_6dWfT_c8spx_LK%KoB)cSfST^nJw0Lx_gWa&viowZ2p$(MLE3y+o}X+&WFCj>fbAmp2be~QAQqiWoEl;rQZlXMkYa|8 zzaK~$YxL4t?t0m3ay#4T&96i)pPt`*-g-0Ye!Af*WugFwhkxXc>Ch+6NhE_7B+467 zQRbIRO-!eTZHDR0xXF7pp9AS%zr|*mrIXOOjdQBx`(m4CJ2!Ej$BN+g+c($j_Px@Wn#NhAsrxRR$F6c+Q# z{<}gC!i9e`?KKIDau^v<3evdqR)Y;W{ zmbFzyfJ+-{NW|nb#5a;GCnetv3YRy^&wL+c-O0>Cr_|Q{b3#1UM$^$V@`fN+2BVJK zz!QCQQdibvqP>h0I?>bS+BEV7k6Vwio&Om(+EZ>5NO1dt^Wp0fVO&-tMJle*9~y;d zIbTlCy;+%0_5O$h^Iu$U5w>57&Noe!d`>@vA2=Xy@82i;tIhGwK&spRCEG);qCX!8 zav!d{bXG<%$Ei5l*6gv$DHFo3tsB&EG}o`?R1ZuDpYwD4NHMG1dFn@Zwp>y2lkQd4 zQQHj7>(sq5n->B#jB+?I4DEJItxt5IV2Ittf!w>S>UG&FgKbvv{Ts<}VGX7vtbYV1 z-+gc-ev;+TwP?t=S8`?Gn4`quNwy*Ut9^IlxLBcosh4hHEa@-aMx$rop~p?r zlE+cIQA;|qrz4=Kx(~VHk6+B5T)=_3bQWv%i7(==NjplW&{D=Q8Eg85tJ1l}gTC{) z>tiST*Z>8F{9M=Sk|X!6b{Ul>S5{MF+cUH?PaaB`kZ6lanf*z|O>xSNqmpou>*Bqb zpLuYG3+Vi?jC%#d47j#Oq!j>Hza6~%X_C9nJp#_?9;Z9r==(Xb8L?iPK*o08@iR3f zQ;?)J>&$Y)F}050OUNTriCnvHc{RCCl3+vQw+(DN7#c{0-{;>~gA*cXGFaCJM-?7d ztatYSVg8uCJmMdZ(os(xhzh6UK;~lD;a(DNRFwPzjl+lC2dil4k;Srp7$b$4xgF+6 zIfY*#Kezb5Ka>8zhGpnMDvLKQp-4;EH>2{)9#KGurbkcZ6otDSz2CZ5#42U0Ub4B*)dQ*jRh^E4OPW zBPzNtI3I&tIR!QfDL~`syj$@yV&8%=9k_?xZQ6B_bqwZS$?~{@u7?O8D&(CwC4P8t zRWZ@9VU)h$yX@qRt9s6DX5kv?QTu1Uqiw;~y7K3C`c2`}iorKqON0mq0;417pISy; z`CMxhzT%I)c{eS=ZuhJf_)ku*5hF}twoX`}Ab<+y)3#EN#3FZ-L`OgReeqzEb0 zv~}N%wl(|S9cd3xB|Qor*)v~HqqQztBkGolE@HfrBVPE?JbI8}2i2?eN1H%FEC41J za0$IH+HY!N2PX@d)(x5w;Z}e)BKYJ(Cg8kR>gF90u-4e)^_HKGu$xXKwrVX?do=j2yeDE>g^eD$b!DYpx*==LDL&N*ixCeyNIIyu2m=4b5hQ#Hn>bTvI3pQY; zG!n7*Ci7OGFu&dmaA`TL`N96oedEMy%gpw|t2v`i(|?=UVr)VHWOwL2?xMRXjN3aO zC3smmoFS|#(cMbaZ1mkFNcxw-?qbQM# z&2{>%iv~ng+SL~?m?~mZTY(-0?SDpAD)t=buCP=iIAWiUZ$8OznQbI3`8e=VS5XCK zODH;P2=lsrirYnH>RaMd7>;+zvpffr@VZ6c;0=bbcspveR*n+37>vt2p7?w0iY!e- zH|@8;7?*wI_SyG0_x|CjLPum&UH78KS7A6&6ZR80rxt9WK(r((Xvy;^&t=mJTg&9^ zI1Be--g`;=`d^NU{JLJ>ZgZ@(ToKVz=W-fayN9>o>P86mgRnWV&enED01=o!7ZAHxotPw1W z#&)l@+qUA!4sk9bjH=Om@xAG=$LT$Y4Cc@-!YAHg9NBI*-DnZMxfCA2nZI4aECeD7zGy+{*%v*n=Pp8Dpv)1w?!9_#pxc3dT{cx8@)ZZ=*9v^7V!Jz zC#?M3&Zoo>q?kpxu$@D3ze6Q&K}{y16I-?mi0ZZPt(Oygx6%<^MiC{b)AjByJp^Ku z5q@j~2ooG%UwUVO@J7d?_$6JCDMO-dLwyLy$spg0G9TEWa=0!jvR1joH<5lTgBKg1 zn45Ez#U!9PdOJeG0Xi5>vzZe6OdrA-tM)Rs;{I#EDPiZuVqe2@#@wk1cq!t_!&{Uf7Qo#JgfuV6!y4PP9te)`p5s{>aU{W>YA=$ z7nvnCJusdwh(8A-&)!~6++>*?y$=<))~KjW zI%1%m-aZM4U>_4=!wY@`E#RWM12>nw+(lE~d9|BD0JrP}5fC>|`tC-Y z;zUM_XYjS0y{z~yU;KX0dCqOvRx!97>3{orp=&tk_Dn2yJN5eD+p*@zQjuhfu;Iww z*460#I(2#Qi(A>1T`WV-*x_x534Qk*JFn{E1BTn{=)%hz@GeH3$mLC)sCf_h`A*Jr zqV{()CY1{>=*i2U5OL0n*m*7D-Ufc+i=gM;7en+2sY*Y$LD!D`Xz>dqR~C(tr@fO6 zF8{p-O+&|x``g!rvPNy>>}YkSmJzTO_=ycAX8+E3dn681Sy?BxkV2C!$33T+GJ=I8 zd)<|j!b1OME5?_Weqwj#>zo>rj06%FZ0hshfCx_6KRG(-Z}AMN+;`@E?M`*2+;sNV z#&)wKCd$zen!`-WDZ=r9Zd~}z9JuEpfov+Mszrxg<8FK+2O1wB;qEdkG}0a(89Ho# zv2$%92blFZq$6ruzr0YNu_z!~f&FsS7RTjp7a&?u3csd=zD?E1e=V-!KJ8iAtZZ&v z3%)Uul?hj~tom?YM6YXlo~$on!OhetJ>h(Cge)nViH<#xRGXyf&H zV=YP3z*2)Ab(A~dSt*WaVRInqO8M+oD#Yx`pg9$2z1^gkZdeSbwp z9yADW_hEgK12j!qwy+qK>7T>6sPd%q9d2Q~8bc6^h^h`J!)E@A!WQ2LYHJ}dczV3j z&ft(qn)>(dz9C;3a6nPVZGGt!(7eiuy2F5^lsxDrYOpPDQO1#1tYA9(0^&D&01}|b zAgy!+1kRC*yqOG#l)fE^4oZ5AWHUM_FLj+vLNFsWZ z+1M!}zP8-z*{8Ma)r=Xg{#`L>b64B|1_u)j;tbx?mV3DWxfr}AlX_oHxzeqE-;7U9 z5Ln{a-?@9>Sa#b75wOeFj#j-p&6tM_s_8tgz$I_)(H4NN1%@*otIy2q+CU{cz19BDqL!&RYv4F;ltPiwA5CF0M@0wL5!4O%lp41h(|`_drG8sC~w{|y-8sae>SC| z11afwvy);nl(7$d`urPh^T)G|fD_#%ztf?OZBUN_Z_q?21}0CD#=uimSPJy zOS>}Lj<}olsRT=raL1!~bh2zcPs>@HcuQD_BGZmW$q@~Q6T*}2=KeIRk8|APuW`zz zjl>MQ=g`MLDYm2@d(uPx*ZC4Je<@#od7s^wa@@VP?FgS<)y1BJJ5 zE=P+jaM^v@uKG>kY}q6dlH#A5bsZlWCLXv(feF-G7J_vPvgEvjWN%E5oNg}f3eNqr zdihkk&raaQ{s9#I@=BhLJu!~kCRsc~roDjbWQ^0u<|$h(C1)82Ltd8yw0CzC8 z4m-)pf9jB}Fm0N_HJ23|BA8YsQi`5K*kjJ?J*De$MHAHbW#8AOY;%N1Ya5b=@g;Cq zt>p3UvD zr>7yTvPYf<=EfZHXdiOler(szw<%oWW0g>x8veBwO~jAoG_hfWq_-WV-Z%`p`g#~p zE7(0r9phxiwL!wt<|T>b7$S>>Xb%%kaM~?g**or$_icrKYv^2D<}1GMWF`!qzx$J}F!|Yh&%fjRo+r!|M9IoF?|YRl7j8F@i97isYWkYRzFz1E zsee(D$z?#g6Ta%N@?P>jFrkFxmBwZSYguDC82;h0x?*tMuks1dvX8QL>b2mO6v$;gwkjvy$0woSi`yyf(cp&g#Rh%ihu=z$_Yw7c0R_LViL@fxwqiEP))y zAnhMM>ju3?2E+<|*AmrRV^2x!Y7x^Co^D{8PtzXDQ5@N#ouLf0@b8+F#VcXJS49f= z09>RD)YWe-lWHqIILM8NmW(VPc9X0R-#U{KlUC0gg4_Oxd@G}8&u>tjigAi)g5mGB zBrHbsj;@~(O$Y$^OXNCcjmF!_RBdx8qsYwUs11trj!tl64rs`*NZ+~_h+&*PQ~KU= zRBa5hhbeZnY8trrw_gm9o-SKgIkUH4#kc;Q5LPOO9u{S+PRmi+*!t-0vSYXsv+H|Z z^q&%U-UUB)Q434jf|ZUv>GgjU`L8@(E2kdX)Ii z{YvpJD9j{oUGC4Q;+xIOKjYCt{m>$LUl-MNPdw~OgU`F#%b|*Pj&09*% z-irBt&?Qd6FwFSDrvG@yRq^1q}oL}Cs3^-UZqlmMj?QmWx z@Hv|-_}OUeU(pnZ%lpG2=DePVh&#RB*uC!Ac0Rih6f+vd|HI1Dg zvipPLf6;HJKRu1-VuHy;G|8#|x!LYV2?TZb8{OTx^aO{y47!S+Tx#40Z$H#@f4ZR8 zgoO2j`*{rsS+zDFlGyz*L{0PI1N3L3CSr<>(J961_G|H|E>~xPDF{E+;Na(2{q@nn zz#X-IYn8!LTYn~*qMrhWz>>B;lqq}+a7KS}J_li*05Ua3cRQmG;jH{f+1DdsWLh!* z!d)O@?EZ?!2r6~VX(mMH(u~hZtqj#TG1+A^s^(8vLpu)1CN4%Peld!l+SiO2m^A2Z zg`M}P_b#&`gz{+J~GcqPoDkhcw>kW1G z3{1L?ECsHrwAA6B=3QAglgfYL3uXvOqtT-AQ{C5drQ4AR_NDd_db`K^*8BMw`Anvm zQ#Dpu2_y^&n6cntg~9a^He2k@ zg^#2MxqSgpAOHeL*h9;nk`fy*wH}4<0=Da4{f<>|M783JQ=JJac5?B#&fV7g8E=^T z7{z6(+0e4mqE^;_j(Onjh|QxAt3^L!CGcx7{$fhvhmW2;uIgNu0ik?+E%tq&CrAft zAt$nV1GAfLV4BwLZ$|{wVWQz#)|QqKwIapChEKl#e8CSbkA{*DeBa(5HPh^7PAi94%kH$1=OWgxbd{Sum-z2 zHBT4Fwc`3*fo}aX>=bppaJ|xR{=K|JKY@V#pzei|I-){09Cq<}pi&Bb#6n^oFFNZd zFJm-3XJcZUsNcU7F}^^Eo%4>Yh(qKx(3t7NX(hEhg9E4+2!qiy;JRsx2Q)W7Ms69g zmoF~N1!(Cat3Vh4OCt$@kBo_X@d6YFMZ}}v)z5APKM8O35F8n`_7hp)F_d6B+|lhQ zrL==LFbqjx%GQP${$FOofQYa&5an!g@vvBI>wNaOiH%=8k~{fD77yUxLl7&W?l!&yq*e51cJ`(YF)!S_cCqN$qkRt~P8(dp&G5n*46YY&pB0axN3^CusMU1h&y!l*|)O%^hjhHK{* z^DkiYf%A-qz0!p>Xw!Nlr^DX8c?+k>V6qmgrzZXP<3BInkDQgqTLHRjp2aWt{?vfY z!0(-}gRjRgH-B>+2tdm9Ay(2u%EjUT?GfMuwyz#%)Mx3DL^#%;=i93TAb~d%5d8Z3 z{M0_GHDim)YPMlIPD-6Zx9(-j!uT^8>K-I)t#9|#ToyDbhCP3{*RMGD5}75&80Y8v z7*XC2`tH3AcX0R!RJUYI-7F1V(sIkQEb6=jubddBZ-Usa`-;EdAh`o|%IzaydHAj?@&Ftgg~ z5X1FV|F&7Q)kQd5eb@eZxz01@aV|^Tb%oDvG_PMs772x3MPKa%q?FA9v9ecOW`?Co zJ!nG#Rzc2g!~6^7A4yoUwgI5?H#(f0072v;3Gc-|CYinAl9I7^(@SPjnlxG@{7lJs zvTyv4IBexDU?bf!Cr;#B@Nz9o*~8U94^Ei=EoS_i+8_q7#d2w67KtMoI4i07R~Gjm z|4x?R@9vrm%gbd;n&R&YMT<^)6lhK^PF(?|OViLn1+49tUxt+YWvLMx&usiAH&}Kl z>md?UIJ?k>mO0thTEk}WFmuG}_Xg6{5OMbiOcS%g&+^t9<$b1J@tzywl=gG>#r%cs ziA-HZ4$fEW-Eu+3-GK585=_j1kT8H{H0e>1mRw)3RSyH=sZMI_IbBM{pAwMlJ2WwS z;d}wY)(Lqf%F6Nkx!Y1yR-fgS<*DQ&1Nh@s`}Qrt^$TDU!(I(}7DEBvsqxN0Oo&!c z2t6V#o6FSV;z9n;g#%7(M6#q`Ju53Z`qm1hM<=e>CWBX{zPi?B#|H;IDWgR7g;2h) zHZ|6?4u#D_C*_)iNHjNLO?F*UHG$uBy5sLPC9lBbkJ;vJ#!7=GB;`4S=Q_hO)O7_F z?!xBoIBfurhTAvg&9N{z$P2+8Vva67ro$Hn)Po$WwLxn@>oJ2Ta30 zmbO+kFQnYIid8#pwTr%ww`bg#OPrzDiAvioFidIXETDl}DW|SOshTI!NmfsEfMn1a z+P8Cawq|b9NdY+&0JY21L?%Z7sickjIR7Y{ei&#V@iett?e6aow(s55GR;|-r(1ik z{e7Vdh$XirJlAB{-geFQFD-%ndSxXL=IrA%1hw(1!^G)#Kmc+#u(%dTgnoJE5CJWD zg0#vlx>6H1CFB0yTAB?8KZMQqpv&o>;1TRRQKJz7`WY&#Pvz6_HphAN=>)Y48uaTC zA!)UEUR=xr(Y3V!44B)N_2~W!jx2-a#YUpU*0P5CMxurE_u5YBIOK^Em6~sr`*M6Q zwVQq?^`Ew%!OAVdugwMoE1*!;n3qH2+lhy$Y6K|>@gIkEU!ku0&cUR@VuFYJX14o{ zC#SG}Nf%vyyBd=_a$$#w>C+x&wniFPEjC`!N6`!(@?%;Zx`#o4z3?j)q3CKT6^9yK-G zn#mIYErs`iantE|!$6|<0vz@Jssfw69HsCeQpCo~Z%tcby{Dn46!E7tQgQcu&sRCy zdXJjSLHm~%QGh6T`1tp)H?ymr>%P1)5!25jfB95s-Jd37a@jXHyWjb3{4U`x&S3Z` z8ECnY-7c`FY8`RS@6-B5ZGW42W4CB)u_B`hD!%5Nv(n^RrO)qs*)F`6csR@9Qpp!* z_Pk=fW_ad_21aK|nrZ@0DhurZT?bk)J&^>e#MXslRvInKJh7Zt+D+)&o-T}-0Zt)` zqJ0BP&FDKPQ*)ylP;*MpWzO}vd}0Gmyhy2uJUOycHup(0#vRTr4R*ubZ1>;j1aJgy z7?S=+nGutJ!^zIG@|SC66;>4{+u%l*PP9m zw!FlH0I(`Wa7XLiT1xuC2;zOaR*aa><<_90%C^9s-RcE>wqJ+XhMVe#=fl_AcdmF7 z!Z$(gqW4w4)>)pLm7Z&IV$b}xu=}^|sBp$6lShp3?wH!zW&h}AK-wB-|VON zhJPGC6;z0Xcn@$DZMQlcda}7vv}Q+MOa9A|V88EiusCcSRFTg`FHz&q>0!YdUy?!T z$UhCo?#JC3sA3JD;whMfM38nqErEC-tM*QPDOAtNv;W>nP?gCW zp+1!58rbU$S^)+&Uu@4#wx*mzH)|sv!_?}PA7&|E(5Ow>L9HoEGHC=RP=uHJY}C~T zN{>!$YE}D|SJ&HASUl!8FqfK|cWrFm&vBarrkVt&c-_$0PJ_^d z_VqnFNF%5=cc_aB73!HDM!j*(Vd!IyBlRU9 zBGJb?Zou73xXT0&W=5HqeTC=EMX@5owz0;xo3=};9lxlxZ+fm@_ui}Q?;aLy&<^NI@e=q=+abq35 zt5zh41k8pJIE~ewyapQQ3iQk5G405}!zH}c`K5CH5kupnb?LW$CLN=DFE^$LQp^2f zL~5kiZ%Dyd%;O>iZV#gwYGYJ@9dZPeRZRCf#yBR?KDg|gc!Ff9dQC2nnr*)713u0- zUR89H;Z^l1%{_y`!Bs(8ond4=&yn)tS^!5mj)8j%;Yn7-tuYOt@bPO{F+-*B(vKg7 zLtKh(#7jRiwk0pqeW+4g`Mx=kZWx@2T{TfUbK_)L3WIt}g9-i`uHADtp+ClCdh(R3 zYoxcXKZ<*pOv>9P6q5z)5S*$i-rPzBy^RUuCXoH1P^EJao#ET|Jic>e-2OL%@_E%p zua#nZ0G=6NIQKC}aB#v|!NA}TUt2@RATmT42`^mSFC^T^4$Uj}>A?;xzw(@#Y}3eenRs)Wx)Vcswb-=oHY$@uYTJTd{&lH_ z!05UU6^Oh3Jcziz?Rs*TK%6@e#FY9j)|e(l%EeGERrfJ6j}(=HB{#8j&r$?k}~4AG$%Mlcbcvi>P5DN41gL!ps** zi3ndj5=27bdlS5$M$+eVGZR*v^_${;)^ME33QG@8@C)1ZV;^$woO2QRR3<~lKRy$_?-1pNv+NEJFz{8O(i4SI@+jm6ms zp|x?LCl%q0=hoAxrnLcQ(k+}Nv(q32L-%o+&*A3ZNC}QxJonj}h__da!Yae+nM7>6 zFE+DH?WxN%i2f|EnfN#T-qlnRf$kL@E7hC%5KJ3BtrerW;Fo7=z3v;OX{l+N z6b&26@vDS)Ua)l5iM%R?s$nV%r%|%DcYqsoF_kIr&ZBJiw(4w1JJo$bG3l7A(S}@D}wWj@h}L9LqM~ zq#wML2zGu4@p7#Nd|X1&F<|kyFhf(6YjNdh@qHOKSEN1f$PoF;3VMk=`GvI5$jht& zQRCVwleT^b6(r}}XK*aGl4zrXT2Ai{D*&+$0vg)2+!6lkGzUXWjzQMxFsz1+6%N(t8K4tK( z4GhdH>6RNr0lv+5=|?-0{&`RwWrNC0e7C>aOJ5L0x=~gr{n|%*EU{Xp(!^|h1n>2M z6Wg{R67v3b=sC2i@6HscnLo`|_i`Csyvbt=p4pvj+;SKpQFU@GaGMLhQ`9wT=l8ye zq=1AEUhoCi%pE-NYo&jd5oBdTZdK?=|Zm#l#zpN;aI=k`9D3x~|a*QVd~ zGr}Ca!NY%$HVsD`3}C`$Kf_Z`N0(6#-Rb)%Xp68DirYszzolIN<5JW3XNXZ!P=+Lm zXw%)7R4Ou-=_96ff5Ka<-nD!*8QN@~F6`&-OW{QyXmmd~6xBaNKKzYX->=*xMAnkA z^iqjkigJVg^+~bcQG)tkp4?(&!ERuEH%#v2wEEwH5@8U4T$&)AqEo<}yiZq9e-eik$g5#C|cao zzZI@hZ`4rN>cWY{B$P!~v)Nk#OtLJ8ih>5L z9n3-y2GF?Ap&(;bA}qmiKB~rrVM4`T8}T^Kk-dY;ay*dW4K1|8zq`kCzvt;qYWn_e zJPwF9RunN^v&P0=PEiS7{@wz@Nw*~ z`{_vGs2(wqYp&lwvs%4XL9BoZm~^7!Tn{s{!(rH=i42llYE`M=ft!aff#Yy2_YucvD+KIY3SD}c_j&PSR- z`Hi!lO?T_6{{U@2wBIQbXRY~9dljqiIp8rc;LBC^LtxNxbcQE6Xuto%o)jv?UrHLz ze{xHFAF3nF9sSNUUy3v!P5MW^MIx{TV}*zrF+pG_RDisr8kbpwv)aaZhlQ}f7lnDY zm2tlh|8rbF!Vb0w;^J4qCW`XZt4I4!pKdY5K@l~{q39WhxFUD+zki^=seR?39_6Wd zc8ZCbjmO<*N+R|r3YEx{7z%zWyjEL5$4t1fFrVkJ9G1~6fvP&YiTAE{lGJ?#B6xBO z@Di-WA2>LVn!nC(Qx+2Slzj~?vyqa?J&-BOzV*KQZa@I0=sn~y`QRQ_wy%9|V~4oj zg0C;9i@JTJD8ID)`p!g&Ggo*A{UTqoEURUZa>bEqrPlgU*>f*eh_e_@YLqBkAQ`%U z=Plb#qO}))w^kVpH*hBlK_h^hO~788J($>~tL$)jwL61^P`Ed@K76+}e&!xPVnKni zH&(jwVbjYqVE3E}M@+!Gu#4cKl%BQPeg#y~EbyW>adx2Jt~rP`ar5%-_q&*0Xvva( zOoz3lt&8t_vI>ID0JnMM{nVc_5UXA5QR9j^Ij18veEk=a2&0#c{SAU7>0ytM4xoG&HcpaJ-8a+`fG;)CPrlJ08S^ zq{%K+lDBT@K!=`p*Tt!eG#WC5&qzqm>TraAfgy#_b*Agz%%>=%IN69uV2hF?J4g)u~f?8WwQY_1mJRp9tnve-$2!tQ)zK zz%X%ojMxg}M|5<&rd=<;^U-H$@_^f+ zjdoyU!IlNUS}gt$>g-6CkMk|5?A#VFZsdJquH4z8CUaHFV%2V)A;j0GXW_}9Y0*V? zUl0p#O40W&>__zgO4c%xaB>!5>%+Sm1$Wr1t4~Hmh_^L7U<*gPPbtNg-9mO7f9)`! zeUrc{`yC|mF<_n^nEEX`TFGml$;;_D9bL1nd#3qfXN$ruNVmrHjRCVF(3-@v>)Do1 z265hbC7D%piQ|>kUem6bRs}oS)Jve`EeXRHEik4jf zX>p1cu8z5AVD9mg;;~R;mQ?DkXx=&0Y& z-|MFT3s%7RE`K?fU=~^T7zTvM6cbKIqw6@Q!d`N{FxonUygRt9KmrzlM>CO&{gyDc z$znkpB4#k%*Kcu zzP&wbqT0yp<1iDKgNf$l}-&*<)5uBD8y?WPD!ZFpwv(7 zw+^&Ibi&1j}H_g8PG@tLHfJ8)A+w_ROf3cR{& z{UtLGSa#4-h7h(eY4u|#x~;hrnmKJfc%IVj_c~bD!>-<^*M!ypd#^@q)|wM)G?A*@ z33@dV$&L2whn47i^Z1GHv48(kK2>>c;@-C07k5E1uk-A0ej8Fs18&_(*tuuEa{Fu} zd8){uV1Z*s3w6=qxdc$^kLj>WjJ^QT$ znpoBhJ_g9Lw;hqpTJjBW5(KVt8!WGNK8SV@@89%wc_1*~F&`wZ{=ZoOQ2`N$zYf)u zrncpiI`6tab?^Ap=@c;UKQt{!W_rx%d+ip26sO}ML^7ZO6wI#Y43kiVQ9Zu?JdO9NJk>5bTt$0PKGFI1dmS6+S72%b$GvX^;5m!|3%2lk5n8xQ@x$p zY`tjN-}!h?KQ&o@SV72ix**ms0iz?8=6P-xB@w+Vw753zjkyk#Fq_xc4pjsZQ6pNv zdsk#mEr8X~tF&t5&XBYHwo|qoN}OZ)^Pc#xmjQvm^r5@p74GtTV=IQTz1)AoQ{A7*^_G*_4N&;YtQ0Rd=B)8QMNsM_PC3)zHmjX3bV?>xGsQv~n?0sd2ILOP9;EVroN_ zY+FA6;2up;FadV*kP!-k_w2I8VOc~}cgNbJVrpoYkoD1+S-$1y`Q@mC6o`Y|lXF_=94HH;3LFL` zlo8I#4Q+ofw}e>--72)gjGjgT#SttPO3pX3`^)Z6thu~%iEq@_Y$NOXwWjTm^{5uQ zmEyK%WY2t3D#C}`+{lh4_sUUYR{WFbKXu;;on&$+bYc$0?BrbZ-nHw-h`kYZ$=pdT zQ2&K);mPHrL&}oRw@8B!iMdBd;KynEhQ;@Av`RbcO-7WhFR`9WjW>I{$+f{clEBST z0Ph}~aANY5)D8XXV`nArV5*nFlG6zV?}Hz5SyTJ|+L=$YXNgEPXBm)@JI^Kgh{+Z1oRo?q{B_-L ze7VjMl|}ntJHazO=uQTA)wfglGW4CpNKntj>CKba&n*(%p7`+jFIW$T)j^yD3RHL8 zpe5Bd+-naBO)lln0>k@A{JflY&_IYVG8)L%x*G|Kjeyn!xja5m5KVzNl1zqbXhb6N zybVyZ!phvI@Er)MjCoxv9(yP+Y#A;OWngf#buGCsd>kXu5P!NMw_OjTZ^mTr6j-Bn zd9GLAnZm))E=Oe*d;~$4IZyF-i00-O^0Ov1{0peM&V(wWm*eDwl)e96z7%Q!L`@a04*Ua^Fh>!B14-EKXsV-As!LFgNl9lP#zWAew-E zIYQkX)i4E2k|Z-HcNQtCPX8qd_g(Qly1+rM4<649&FDpmgFC~iWw$jG*bE5>!unK8 zat5S}gKd?LNrN3>*PA0jk-YCY6KcjttPhRC%(xiD2Z>f>FlnM?KgsNd$NnA=Gs|j| znb&KNxk&vyN_`7Lvu?giw~)c4;}X;IU3MF6Hd^IM?&Yhdd|W@fY<{kWi`=}WixkKz zn5i};*FFQ)vxa+cv4{J6|J@eD=w37)v=?7FY6vr%UUSKPxgJ1|F*bTpy}l0A`Q`rS z%0LWB00h#AA-|N4d+)_RsntAnve@GIAOT1Gcvo#!@-O{?i2-#x)3L^ z*+oA7!J=XrM#aAi9D0@aRvs7HOPu0>eiIBqN0MP8_;Su~hZ4eCg98}AM_bPZa>q+* zFjk)z&2GnUdTSjg%I>%$PR@~g2DF2Np$z3o64M~BVc*&z4%`q2uD7KXTxBJ0^hjJ7 zF@m6Df-7X%CJO=<`&!_N8^tj}?~jV#ogW0b-j)LuKX&JwSt8nMPlj{g2*Yu-;* z1ud^%(Mp~$7 zo6HT%qfwZK;tqXLlj-F|;Yv|O$AL|k=LVFM;Xxuy&+;(I#!5o?US6qW_cPB4^Uq7I z8*Qsj_x)L#NJz(LH7lQz6*ch{w-7W1YM1K1or4LF>OP^_x3<+Xan*S%GgHEB4HYcb z)lko!A7@$@mou&ZFY641m3qJ`RaaaPwZyU;H8zVopuqfa^M@=pKe$CF%m^u#x3-c) zAfulV>^KS;3<2(lZInG|^a(zz=k#75N0|u9q4d_h6C^wSpQ%iQF1|0KE)2=IdesVK zYmjoI+4hc4>~v+g`7&4v650$LMMnxE;~6tBc1b({(zf4(ssRa~>+3OkKL?cGJs&F9 z&oH~l-{215X~vl&pWQ+l4bPD*{KSALUR9? zYWyo)8KwRsm4c?2ip1gT_yhdnZ;{}CcLBxES}2EN18_BvemoLsvSM+}$0}`xfNaSa zsCqvET`j(vFi_KWy&Xoyqn6AI^t!Mm5J6gPG_@1Jp}|{Iy=26K&{)h%1M{_TcAPkC z#Im&dqa_dH$`!wH-+oy6oatNM0Vrkw^)qmIY$w)?RVe#3`_`tRYl&koi{)^*=H?$$wJegD+>yR?cnm!L?_vbso_@o&uX(!~K(8+f`jqyE zt@Q{)YcUcsTce{Vl+y0BZ<+CbJN6$%2?BdlCLGr!d4$xU6(Ijv0tAgGo8z<5%vU7@ zWB=|L#LTwY{%GnzswW_GjWT-q={_CiPvsQOo+1Fa?aeLvbx;Iq@OK0KsbgIB6v_3+ z10cvWR=mmckzr9{F%-Mo#y0lt@A}cBkH>Vic~b&kj;VN-aGS8iw=p=ITU-1+PR`V% z!`(hYFwAzuZ?wtw6CLtn_b~GtNw~>GI0p`-+C3kd6Pc@^Nv!^`Dhk-Sb(JM&U`M1Q z@qY!z|2;?k`QGJ0ad4P@MS>ZKs~kQ1qx_0c z&C-4V&b@HBV*^AGWbuq2NT<%adSp@3w^=z<2P{_{3onl0NCcX1qM-Q?Y)f3DX)=zJ zVwnnE9gt2s$N0xYFwPX#)11gPZmeQ6HX4b@u7r>rqu=9ER~&4gRI`DN{`wC9Lr{Zj zbkNcnGNdN`28$}ZA$%YJt+2mOp$cJnm3+9B)1!1JbJ%|rx&IO6{yn=?&|!|pB$<^% zj8OAE*E&b{Ovqfb6-l-fJ{}j6(~}{rw?Ek{SI4eMVUZAC1u%lrc4q(~@nLFC z3k3{jQWIToK9g}<3+sF{9!m@qnB$gOY#>|EdY&;P=fUHeK1pA6j1>F-Efbg}(Q$Sb zzD}k7?^}_9Rj_zzpeq4H-MqW{il=Om9^ZTY=wK9L`$IEZs%PpF6|sP%*USBw zS%o-=ZCWzJAL!&OU0zK%3*F%?6sFCvsV@p|c%RvcQfUy$iez0%vVEQSgEWzvPmnPK zlzd%-^?kzULX}ube0m!bBq41@u(Qlzm};sm!ZiR#%0Q=iTYyf8*pDkp@+h$jbP`UN zD-#K-eBZh?5z1*Nr7MZas=SwIXK5_(EBC&?q+K4?a{^-tkqjfncN)J-^IL{-KUAV& z7;%zGl{z@Xo_**UxAWr@UunnkaHSVpX+YwYqT{gbV|^Jqq9r(pKW9hLyy z@}>cDTsXmr7P0v{Vg%+JQ}YlNw_G!vwdOmFdG!_&y`g6P5&02%>;R-*C z3%*~8z)TJjYH;7u;Fx19_3r|S?{kDZyA+*a`9PMgMG8vUQjuyhD?{M6mw3e*)#t65 zg8w1eR0w9WT``^nIyV3Lj)Wi{$zn=rrcNGI0|j2I_Kv1{?4YYmbR6@-<7ts{bz!%3 zzM*w7)$dp!pXkh<_fq5MXgpG&_Fvhp0GcFOoJp=2r;rS1EWI2SJH_=kp&9pTQz~!Y zBXo@m=)!9$U4REuKVcbUvqMG@%IgHzb}Tp`;UU_8*dynD#PWv5_XjG7q-}SN}kJH{<*aT9Rb?og%R7CKN(Y6>M{ssVGJZD*RQG=PU<0T1Rqp3{o~~A zDa-kd%;tQ)WJM@eIb1BShH#kxRI81qzJZ1QG=--;a_-J=E+iWa9|BG?Ct7r!!>b9bM0mr24kx9Lq55%7B;|#PGZCq@L zP8XwVex)G{`pNlGlReoBeEG0B+kdjiE>hoK~pZf{|7b9;D&*008 z@Tg!ZkJFsjU-L8 z|B+tb)A~QC@aAj$-r94MnNcf%{Tu#|#?5(H_NN@}Zc|=%p+my)GqAc@%|0cfyOfFD z=Y91+?V>6m%B#8!y~{gdo|DL$zAU{+d{G8J6a@U?<;Cge!CP*hU%f8%?MGfED5c|9 zTup091O@eJYp&V?1{mzzVJPiJG-3%gy5v;qtOy9aeNPL6B zfu(A(L+0RBhRSv16$@g&Labm8j1TwKJvAbmmvYmi#L{ET4Av|W%z3J&CQB}gJ{gIh zMCg)In!+h|LO7?qGruiq0*U_euqi%mTRAiI_Enxr9BX455}smcenxyZnY4B5r18p__JiT6kIx>?_D^h{!hSFm`E7Kx5SoQ*{w#j6duaJVn;eD;79-P z-PG$(o%7a+=qfzh;SpZN=&h7F1o}qv(TfH!JwJltDRwM-yNf=fBs2Kwx)YQy3zzX9 zl2}{f1v@Z4{g9)x(pURIXKhn!`Zh28e*yms3;a4RZ;;%Qw`xD%XKa|4{&a(_m#HIS zw9X&B68iqQu#|`UA^JyyVxBHhOqV<+ST0xWPe6k@+cHWV)3nW2;$V-`d9E(COtKN8 zV(nq$Q0@ssw5{*cC+=-q)$rBUehTq^X&ohJmlg}_7nULqXtH$7HgJ`r1#C*@e`2|n z?0i(ou8D8D!366C&>6V$qtiE`XDPwAr&Rxc)n$AtKu>sGL9a7gdDj8m6lrO|zr*xj z7Kb64rOSZ;kA{;+Ud`5n@y$D-6PwKqEjb&eb0b!fnLm!VkJ~Fx4|IYgAGT~=S1bZv zi*`TNm-K?wrt_K5;J=T20fLj7@{Pn+u|l-Qx5Ts9Vi}SUVkm36pWKQ`4ap?;ckGjR zvZy{uPI9jfsD7v{7wVP|Gk^P13i_0>8fY7)bZqaSw`Rh45J~EUFr+T#>$W->jJqfy88vRwBjZ- zu~olc`w6^P{n|$hJ@<##+%3>FMDV{fAveWU2H;v6C!fhE@DcO?2C3KmjShgcj_8fi z59tEI7vP%ySX46PkW75EU+aPmBf&1+b4ifJOKK177L9kzfq-n4m?~TQ6Z>hK6Dzs% zs~4$z@Wdk1pgRr$@A2_lLX+ymSlJpUD*5x!dmLu@!NNx6> z5lOq>9EQ>W&U^c-!mF^!5tAp-@2WweUpSGrZX}zlyY}qwrDIENFKAKm-X)Bvkx2h} z2ZBDQnc*T~oJG@0QV)LZsc)0-;2LgBjLwVgMWNfc2xIeJeV@SCh)xsN@58hixxtdv z98V)l&JcsHqpV6h)-M&I9+D=C*i@IZt!2s8X(ii(v^?L^z=pFhdxU+$)=Wx6s3lvZ z-r|P6-88+8Bb7mEbKd>HF43grmGeYC+)1akdq(QV)|g6Ztfk4--wNv%_~5GdF4y;e z$@Zm^Uz3d6pI~#9r@8;w9sVP9FdubzY!uObKh3DNH5@I=9dbXI&SnS+h4L4PadX^)z={fzB_;iMXsz39k`;?)q zz|VI9aD(l8Vqv)#dm~yB*&k!uwt9UxNsPwWwX9?hJ3c~~Qi5F4y1w6VOd~LFJTY=b z>8$>tNsy{M34KdYV5Qk0G+<+$rThP}_ZCcXZQB}XAUFhfhXi+b*Wm8%?gV!U4#C~s z3GUu#AP`)G1$WoHMY8w3_nh|+UcIWWRYi3-z1EyVz9I7)yZLCs^eD_drC=Z^ex+PE z`{z*E{XK;%)e zQ}1z`aJsVw)YSXH$>VvH=G zsl3+wKY{O`rp*YT0a~?gxMD>Q;>p$_L!@W-hRbz=Kylf6-QUjv98r;`1qqXcu2r)m zl?F%tn;1gC8=?7n3+Iw>`d-}1yU^c8w&+?;6_ft9vi1E&%pS|Vq=*&o;rF6#ZBmdh z&6-dNj5S=f(==JA?0T0X)P(PwP7Gb6s76c3U_*!=Gk7TH-oTH^GzjaE(5aPb57)JA zPa}=75(e)(949YJ$ySOW8Sqa%`a!s zaXZ8@H){X)dces7>yZab^E(QL@yz2c3vo9nLkR?n`$kwWO%P)RZRDLOtLM1CR@J@XD?xA8Ir!$6OaItx zQEZ4pn8>H`WgWVyE@3iI%0Z^;&Jt3EW8N`}dLtQ5LA2WErh^^UFh%V%T|u9GGy`2% zO3_LmMfK-T?eNDZPQAsYm(9j;xkPQ`z3JtACw(N{@FD|B|8s!i6^Q=DqCk71%ma1% zXaDZEU{mw`$1pV;GO%b^x#J3%d9Ly?f$^;_y<*Yye!Zc%VT=lIN`K#xOcPJ)Tz*Rv zb4#mDI!Fl_^fu}!F;LQ|1O4cu2AZ})n6+Z-ywS#qU(gk5_vc%{*uP&-tPqoc6f!r* zbUskY>@4ikM&zp~EDmjo6p?^5lln*Bx=af|_l9|V*YQnKnSuTPpn6)W}aGr#3 zjHlQ@9bjUFD^@UpS}K!QVeo(w!rAfj06SL`b;l%Jfa-M2~qXFpnCXJ*uNqj)lq47krOANAbN8aC+l zcYr5KgaVV5kSZXeuE5OXG`9#78luGZ-M&s@8b5*U((Go$L|L77_}Wcv0S5X^s-j8k z(AMH=MAk`Oc`^@{2S=)kY!u$D6&i_is~7|AWZI?R(+EG?8&bu0u&H7AMQEFfT$Awz z|8ggl5$j`w@-NV^V*)yd^Ec)MfJaVk@gNx?La)8JYMwd;wuO$FJ*k@uvAJ7Ky}1%2 zU@_C0i!fjYY0$lY^X*1e7X9~7|AUsp%Xp-%?t?5jtTh~=H?9Lsn^ykl7XRl_bKN1x z4PXmnpI&ae&1(_JfDjNxT##i4Wp1N?N@tY!W0^Up)R;2P%nYL;M{ks#UzF$Z=QD#P zkx(n`^>X5F_hy(-1rw*fLuf-Zkk}lADC;Y{y`wu)k;0?(aLY3#xj+*b42XvVa z$y;=Pks)GUmIw}F4V1Yzm!|2`IrDJ)559dOz-G|sjb$q8v!$x5#ukD1>zn#MPmFf;k4f>t&EBtj;Z|Y!q5UL{R`~n|1ll``KXeaxaruq zA=F0x_|56-)goC=xr!mBoVNZE^v>NZkUp(0IQxnUTm7qrj&0l+`FvPvr9V z*t!XNtiwIrHqODPwh%Eqv^~oD0bFsW&ot*DElOlpMKS&5-;74_7|?UUqibhGkX=E! z7lz)dwt=QIAUP}oG^b;Uo>?TJsn&>`aD^kB1}c;ru4));0yLMrP86(_5dXveh2jky zVrsE}y+iI3%-umy!QFr&(8gm>i1HoFukiYgv4LYMB%EFhE0L`*cPpfvW`G!k6wxTu zA!*z>U>iKQ51M1qicYMm}1oOxKU(GD6E|V*0B2E@kYwrel5&Cm)U^#VOt5GQ&!C&MJ@)fe*TV& zwMNK<5+U@B?>t;hrK&bns)v}rp?*x&eqVH@EbfpK=uWUsQwl$PEJH(Cj`C~^SH=~+Wa&%V5)i`Os%pSr}Tf&N% zQ;rX|#;+2iIZcK{&dGvRj!J-yKos-BsM4lXj4)Yn7~|d>JfoR(d??g_4y-UHs%lM~ zM)qez8{~^n0x_WmF+w)8U*xw8D_;apY|7@*!X^KzPAl>L(O`8ZOUV(ep{TN9gj|-6 z8RJ-xGbH7UT>b>(PiPU*s>s0Jnyh@FyQOKYLyS69?xRr!h?QZ{y!R4i%9~~Y=pr{T zo}4|~@P{N{YAl{seNqqldGIwGw*$UG{og(O19wDoYhRBaC!dCmXC;d_$QcQq3ECoW zfh&5;th*fUu3ar^2qCljd0Gf zjowVT!DFf*6Jv|6Lfb8vuI%A*ZW_OxQi`AWvt?eb=$c8vh(I|6fF_AOm>0 zh>zWYW5sv<*n%(EI?q4lhG6{yd&?sYF(8EcCpF|(UBlkHe^L{wry|`Dh#-Y+OI8#W z&KMu1lJ5%(S6xjuYY;T9EHDvt&4Hf{R^Se1VvPRrHGoLq2lk zxDp&p56Sx0h*61QrUGRH@eL&nQFYe+L%DKcexu52xtez~F~mHy?s6vgZq5{eaXHzq zK-pRY8{u#h$@fAnPmW~W)v!YITm%&lOyaXzaN4!S!g^7fMgPb5{e7}Qav=U#;8Q5u zF`lqarbzv%?M*C~Z27!NhaK4spWWfXF;>imaL~s+NRqfidiG%u*+fd37EaRLoIl$j zzUC(NEJRSqj0&QHPM;V@KRhCc$W9A(K#^FHtfvxr&`JR|t{VY-)T4x9$Oog)=YEIoZtnvT7VQ{b7C(NK?MNpa{ zh+w2(8HodN+gA9d7fKnD(&3=VE+0}RlV;CRteH0q@7E@DbH^Ja;2 zqYlG(Bcf5nfD*QmT5CO2m-nnozXF?AQR@yLEp#9GpLGru7$B;`nEpbxiXanDl|O*D zEZvsAs1mcOh)y4c>B9GB3P%ZdYxjPs{D2F=8Wbm6Qb0||E`?mHGUfA0)j+jzq1fjDnQ(~E-rVy~{ z{;+fLx^g?$3TXpg#xT#0ba*i076H0)Wc|_D-2EuyWd90l6D4e+If-`A58RbhEL>d+ zyrINDsf)iM|KBTm3Q%y`yingal_TDV0;MXt$Or9hR^3S0minv7kc$c-)EgYH_RfY+ z8&L`c!>EN+%6-gXI}vpKd1E>!WJVGUmtKZ3IqICxmZR-rV4!hjFMJd+ZJ2)WWACLzjLMKEtv zwASuC02xguA9-i6g&L0y4n{;zIIO79VSrN}hJV5b`o>e@JTq}}pT9UU%N2L>7w`n?rlJ% z5N53Kcrx=tzTco~CrMN3bPv9I1uIy(;QzI$iLbe-qG_~pi9uw>W}b%7{IHz7JW43V zs(eY2RVaIO`%pebUKTK02#s%r8lM*ryj|D|lkiqZsnV(byO0NS#<(^?x9iTCHiLI=ys15*)~(6yu$VN94SsDRWBb}(azD*hmMxcKkC$+Q2J zI6*2@AP$S@%;#3c55T5%li_BnpdJu{yEpjuHYoyZEYeU`)i5~0F8q5@NAA)0H&jqd zqo4WAtTE;+*#0eSi^BxCyOlzmb|QakihJYUgVB@EvF0-Dg&irm-Ecv62<+JKp-b@)A_taU6Q=Sz96Ype69w1hJU?bqL3pZ2 z2FOsII(oUfSpSiX%;TJ>uhT;R<8{cy{qyC_%}Wjs4!)*iDES*|dMob1e(tA7@3U%N zy|rF6qB85$bOUfNKu)0!IH=LaU6s>|4+b0pmE1FERw~|0ra2_F3MRel9c6j7`5GVh z+ZXJBs3D~}rz5N~Bcs#n@#^2x+pl#zBaO47&d$|xJzd=_^|9gr_cOgfBW$rc3)TY- zddLbJRJ!7&rKQluHQI!0)6S9T>j_nzvEnLjwO3ql@fz)Sg;NWl3@5(1MsK^@aEC8N zyk(VCfsqfPGcy|$R8^^qm%lpdk-4lc+@f3|dpA+3O1=&0P;cR>(i|so$O5M<)h{hL z{yC*t>Q9jgMc6+Oevm3cq%};m)o7DXTvatmQ(n;||7Sw8sf{fA&v;ce<4Z&+kW+%^S+jr*>fp?z5sUM-#N*?vCKq}@+ zzpHa6SFKcH$sw(&{QUh~?E@%LPy4LAcPL|OCw4SWdqdTW8qI5)taAPo|9fhY!$e8d zCLAJ^%idi=kVlv_$mE|Te9XVbIF*mkJY8DSs{c7!yq4A=JM=1rJr1u$Ui?JWP#6;- z|7xGi%SWTBZOsPad>Uf#3hjJQ07WEk>GaB*Z}71`O#SL7_@6{>K??yl_4gy}=l&ORU?e>VHc_Th)#>w-MqSNKI zMR#`ub_h_lE}GX&lyV=cP4q?2gIrEwVeB2ToO_qzBJT}QKp-z$c{ky3I~I5jjW#mw zf{%wys8uE9WPbpAZpI zWVV7aiLy)w2R$cHg_O{xi*Z0yLs_wb+kjqOX;xMrN9!cyE%HZ2+qurDs-9^M1?~UJ zr$h(=TEtXZA%jBs2CSYpqHmR273P3`2s%d)E$j|y<)H028BQV6B>7h^^f4(F$fcd& zhA#S1!XRG*+g5}(GSn)?A43&iO>!jFhzv1k3vO$O=&DsvcG#7zX^}dSOwU?X{=ZPX z3=Cs@G+@*P$xs*#Vcto3$P@RtT_{p9Igi>|4Q1>q?Q@{u3`E=v}kPntr zX{BhrZCmEM`x*2~{P=OzCI?`FI`X}#&uJ|#F7|zF_>(? z#%x{%=a}kNEmxq0*)X5Z$S%z{Odz1mL8@XpwYTVqU@dl)6#W42^vLPFw7GoqY%V{w z$T2^G{yO@+_f0Fnh2h4=#uhW?onmycG~Iksq@h0h$KfN2{{*OC9oL_Jajf3&=A6dx zUJPgV^Kf&o5V);un0-s%0a&9mvyY$7W|ZYym+iY(vs|V>+O2hXbl&VE{n5&R%~vO* z^8(x|5YVFfpBOWh8H9*V3ep|Vsy%CPf^unRk<6lDWV;R=OIhdP7L+OP&)mi|llGo#L^Xdpi&Jnp>=7L-E3+8Kf z@hfQ$^xLO*$9Th;e$MR_qb2OrxY48#W)~eZ$Nl$dNGxmaThWz~+i(FxgkF^u<>jLf zI$3{6I(A+evAC|{4=91Yf;x!!x_*cE1koxscw?Q0wzjs_t*wjEL;`D$Via=jT3T8w z6Inc~b5+`_9=ln)eH*pb78ZlZ`E;#U{^er@YsS&3}sBMMl|}qF#E*iY1zwavilx=g(vjg7Jo!iufg~1 zBd^_SzKI~gFXL!w?ucVDDXB>Mw9@h`KTxLGfwht%t+icdcLO-KT06aNm)-^g&cYci zlh@;GJ3w+L1$s`Ox1Wn9#i&^qc$kV^DN4~>nj~Oqv?uhvGrXOaX1LaQRKDG>e>MOA z7U8Tu|Kki$at&M;3_rI<<8dr~2m@C&HZJfwZk%69q*7j4X?4~GoOdhqG-O;tLGzmD z7;W7iq5Iv&=jE{q#++hh$^1hQKn-?sbG&SBgt1kE?>eK{xdLg~+30=ml;N*fn$HNj z*mK$o*F$f&*bu`))sm^}a{e{GzYDdMRO9w4dZiHHUN=W|KleHal@m*5_ueA$8k{Vo z==*w%z^D*fgL;kla2m3@;j#4G^O`HxAAw2TGPwuMB6zPpGB*$?^OomMs3`wMyrHrF zSQeQ^$Y{pt3L5$FP-uhi`3HB|t6AAT9cjSl$~E_pNhhab%#NqA9BUAY2w9(R4w@B- z30VV7mUcU%N#xv${zmzn*9*q6nrlBwQ4sHUR%Mc1i!ZDC@?{|M;8>8x$zYb%L_%!Z_NxC-#O&YOz#T(_Gr)kk@N&Da2N1+ z9_zxG8GIRgby+8ap&Yae-%?t+RgTwuwDE*xEcMO+iJF4HRdE_m*fN^DAO5_ z4pPs31G3p@5RSv^#wH_m3NEs5F%S~o22bEee8l}9+$vav%(;`OyyEvXA^6AeP^SU6E_I^YDEr4A z6Ei?i5>9mno@Z0uIH(F}QO(ZGTxl)w>KeM78~eLXKF8#wA?eDerZi{Sx&J7ZJq)K{ zGwg%#+LRxoX846(Rg+3IX8MFm9--N=wA5g!JZTk_O@?)8{NfD==LC~K&z9NWo906M z*_fcF)FG$m{Ecl6U9ZH$)^zjwx_$k*8urQul3EYi!?w`NrS8WoBQ~ai-^*nV-OJ23 zj&)vxBnu(304qV>C4h-gfdoKUs*)1rIDheK$ormfWV#$)rtk#fwuPyz;J_(^@Ll&4 z3f>8{sJpZTS_Vfit6Jw%&Qol;77e5bV&}$OP2hb1X0Jsl8iUXWSRrW7R8D;>B;K$N&5R&)Tg_H9c%y~*)5a5VV z&-7jQO7#h|1O^pDF)0eg5&hx6zFRNdxQ#?ODECKYA? zk0q_NTm5Y%71V=Kz&480g;O1rimFi3*SD|sdCIhUC*~$X9-*Ow67h(W5h1^Whl^`N z1W5yBtN!{B0Z!zC0TC6e=dQn>Z?$E*yC2)T>oMe^t*}-Lar~dkO0u2M4?6v~I;#D) z@YWsX_5Gd&OE6s?DFp66dM)&ZuvE8f!rg8l`MLL8bX{hhwg8+7SZ`0}5&tnLK!-{m z)-2Rt&lW+^L-Fk0Hj(s_Os{KIS3{Y4ywN)t*&*xOPrH`Y zObAK|?K{pvg6$1|R+~B$(2akuLU(%0^9g*kjP#6*;}M=Q!^N@$Ov0gXEDBbg{kckV8h3kwqBk1ZLIDhz7{~H9G-s)D?I7gSu!g&bgO4)Nb6uGui$`>rl$C$0~oaN zt+V=+t88fRkHZWT{I^Y-`ahH7j1b@riALU?E@d^>rEUmS3S@E~tbb$CA~9kd*~W&0 z!lnNW;{o9Ce_m0# zc>V)w=MKO+1i%z)(5hXfgSH$cHb&5Lpem3LWgR1S(Rse;7GKkU(pBwx{oz6Y-X%$i z2_Jv`LZQPe3I{?!VDIl3C-S~Q4BH$holw??b}N4`d1nX8r z`@vFL;Qjyq`~M$YKT3UYSS*J1(TZPyn23-d8X zcjr9;jPq)>Zo7`Qb_S4hqnQ96A5g^O zJau$M4;nRnd_Md_b?Ro1aL$Jev%pDxidl9;Cfl>yecNf?+1y%qSUL*WZS-KlK^T>% zUVJvIM4nfuYA*1o$>DKfqOPiH%3(s-S`f>>r0X<7W(Q#TlP?m4j(+!J`Z^y_r@qxe zOP>Do@CwA>=+u;2XJk|Pf^pEp$sPCk?%S}cc?uT(1O?rtyO8%_3=HO_1ggv!LQMwRONq0g0~^Tu+QPdgvkRh#AIuWz5w221!-bU&r>9F!KU0O(?8&G*r^-Q$-m zE?wQPiLAr?sZy`!>v;mP`1i5A)3mjzNcLZw?N$$(Y!){^oviGeu3pM1oBxsri>e6? zg}R*GjpeLr!~PwyTNFW$uwuggeCH@g&t3jC&ZdTjme=7CwhOf+ z6?o5WZQO3dB%fO>e-vxtrDEBWTe5*Tb?`XsT#k>AJF~6o-=RO4O=cfs_ebV=*Bzfy zgSn3P272+U+#d`R2MZ>5a_nV$KGU7VpFXjr>`?g*$25KC3(ym z`ZYHlQq}VZL9##T`y%90n1F-A1Ucrqa3c^f(0uhZt~Nrp&wL<1DT(V-eX$U71+qdd zUZQaQqc4Pf*j-=&J>{euP>E5Rnp8$n#gIOXu^oudmTW=4Btt=bUNk~Q$L9=43%U5+^%K!9c#+E&SX*1u#lAw(EJqNI9RSSdpdyUX zohcvUFwz`CL~7pg#^TchQ&uAP#R4L23k1dL_GZ=f8`}WfjRy)pHh1uhkawvwc{ot- zUXsq;ydU39x2|SVj1wl{N}v!Enma$JsA13Bo9}*Utjqm5e7RRX(xwz;L|C~zh^23H zA4k`$%vtdLu7K!yxJt9WSiRdp;PHv~Y6QrrSUrpUs^n;8wg-JEU~I8p=db8~L3sta zy)eA583KXdmjcIzZ)>=6?#IoKwD=ad(vE{@bS|k=!rWRN`n@xm8}8_zvOM;SQdZhr z4_9W&l#dM&YYNbBpryUTdOuPS5hI9sZ=Evw?II?-Bh++z$89|q7xR2}-M!{X7-+iW z2=31FLAyP_?f24{a`WqY`E^RC|D zO!cd&sR_{~Y&Hw&i#vl`?SSLpXT{2zTjH8iF8uBebyBpo0+S34^SKnAhnR%k8&mCx z-WYS9yG?9rlg-;08D|`kO037=XT@Phz2O_0KY4HDfN5d{6mX2HXl(Q>4pjTD`{Hnh z4i9X~DXq|a2rN^qHjnA0e9eKsW*Y}ftYkbdFKTg!UACk12Y&0hmOxN5MN)6j~lC^2| zFzvBD`sJ9SId)zd=aa6#iy)Lhq&Qy+!zd-i^K*$m#u3wU?S}k*#;gf#mvxhOlb<{~I^xO!XrWdVHr&eX zvMwu>T?I0k=x^`UQe-(+Sr0XMI05G@_34}d1_C@lP#GeM2%5k}fqW5VfB4hnguM4A zn#dSTh1q2HPYDF;ciPZCLL@O%5p= zb<*{CVoyBEEnARqc*T(Fsg^o(q}D*hUAg>ewHRd{8dy7GWMB!619OeWiTSY`lHK2# zA-|VE#tRM@IHRjKhCwAV36~@g9eSO?C^Owc$Q81u0c`q@>h_cLl(KMYqe|l3I7vyQ zDPGcgY)lwJ76%xT(67VPpo^Es)0}sD`=e+$CTV!P5)i0LlDgPal6cZct7G3q*x!+} zhv?gPUSCum+;;zdw)wy^zGFO(;glYX+q zN$YNQE8^J)$o2~!BAYwqYD=>o%9JNDGsoN`lH!gi(XX>=+NL7NANSH3e9t4_e$hXm zCXGR91(tT(G!TY*pJ@&d|Hq@Fuv#UGv3qQ#vo#=V?F^C8BxrwdtRwknHKJj3T&BeC zTbn2OAGgi9QFlrUVx)LZJDh#zGIFt{2Bsoo_4UORaE7v_8Tjt!S?vN~qs8{_{7kPa zc{jt}UvQf9-p@66C5b{4IrMQnsOWTiisWwRE9!{icV$kF`Hf{3>3=Cku8KQ7bZ`&>;CU}YhmcK?1^5np5=FFnXV z*7Mj&@`xYfT#xK|TYOLc9Pu=oK%=({^8vcZy^+(Xo=G*VJudejSJtIXWFWYhBt8HjF&b}O%LF;z8IZ=Y3m zzEvF};UiYgC!_uLx_NhdZ@qG@>Kc3y))*((3CJcvGCw?;VF25Ddf4Yioc4D1(rJQ? z)ItUh$GK3qFlz9|%|wKlAGaV-W{xt)sn4<~NzE!Ul4**QN?>c*z-T2%o#bLkx29ut zPkqUT&9l(j1G`{nHzV5%<7OP!x{?Vedx<}z#Gta0Jl6oGnbgI4+`PN-YgOWxzLH!O5PPcV-SWEXC#I8i zw+2=3(!N)~Kf>Tt)+}SGLntaa$r4ALW*8U#*ZKtLA-@XLRx!UM5>#++J+fRi zn+Q!bYS|XHh`+HBagDz9Bq<0%1U#)bPS6DB3dcWrpM($L1wk^@N*9|V1i|QMI*uJW z-l>!b*T+>(Gtt=;YSuOF-}-uCoS@HNnLWSAhB554Z^ug?q?l8L3cdG%LN}_GlWSdY zgo-aMGwQ(#^8GsCdH30I@Lt&us{1$WDs%1Zs{I(<7jxInQl!pI&x5ji!X0B`Ct@`~ ziz`>4oK#S#C-qroc;_Oa%$Cg%dMNxun!pzZ_N02lZQ#4my8bTu|x$RJ)$t%`bw2 z2A4f_jK9}A-3;kpH?UAUujkdMqeaFbeFHCKCWG8dM!kd`ReM<_i>=Oe2$JGl)Kh^d&5)+ALvx#eS0-@EnS_3lb1Q25-H&|Go{ne% zyGgvPC^}w*??PNYrZnC(rp$178^cZ5)z0J#i47TAe*V4Amfvv-LE&Wo?7%NzOdf~e zFo^(N{gqA}R{Kcf0sT^k;&#zHlAm8Jvm(Ai3C&VzIqLqg@&SVHU;Q34^882?NQ(W% zo{=H6z!~b$$*(mTrPrTwY<|>nJqD+xYN|OWK41-jtv}vzsD(9^1MloxHKy?Rsac?8 zS!8ead2boz?c8MZ!#8ZEL+j9}y74&Ujuq8!rRgX%CKw{>OJ+~ApGkIkgUS`LeGyE= ziTc9Oie;+svq6u`&kVLu3EqeMQz@FmsGSDlNQBXS!vcqu_2fJ<9K&?^l~H2%Ga*bP zKT~|`HOC$r|A<*J0R*oXGA2IjMD=fNSczMn^?SJ`qewcfc;e_=InRx}t8IZU^)Jfy z-q}0W`aWcxXLm{W%B>3+AKB#7OCDUL6daxS-tx(dxw?y&4?O}CRYCdNzrDgAtkM-+ zYnAg0W}iVMIiR}M+3Tv9itd!SCtzIG_;v=_YP6Be?#i+VDphc9{fBps0at615g2~w!W*N;!*iKFzPW8# zBh-Y!H_o{+w_#B`)v~2Ca2n&JjbG>rzp*Wc$J+!VugNwEITAviB)Mx4Jx+v$^+R$S zqF9{vFwY01XG@kP?nm=w+hzjd(rqDmNzySm+xZ?$aAAw5vN9(FaHS*3PA$6dfXvc5Xtzaup*hH$Z#ynDX`c?G? zs72UxlZuJO)SbrFlH;Q|3^SSe_1Sk@Jtp zwLc_E);zFP`MNEIYON9tz5R==ifti45JDjqLK=*SJUF5_cxIE>%!P4GrgLLVACzhO zvGYQDoCJ)~7RhAAbD6QfyDeE#j5H*Qqn7W4h;a7)B)eIo#0$u9e19;MXVk%Xg#8}D z;;sxUD3)nO2AeaAEdS*_lQNY4PEhC9TT-+4%OA^>+pRZs01=nrfpO6Kz3cZv!4r}# zkojyjg%;+g2(#AJwrtlf%MLb;Se5omhw0nn+-V`j>79`0ep+{PJ8N`?>pANrv%VC| z*xFAGW>M}<)!sCz)MHVn^z;=2SExP5UH>qf)jTv zBul@_eB-n^9RR{_S_zvp2qnZ|fYb{6*mG?D3*rU+j<^gyFq_STcAl`Eq{PWk;%Dr| zdk>jy95-nd1qRK2aaP<-Si|9$wqNPiUuD%u%ca_e`NuXF#A^$9rq0Om7O{^ZP>SD$ z+r`H;X=0(=+7v{yFHy=baZ%`cXc|T2T9Lcd)Px1ne9Bu7qn=C>Rw$#$pLGlz7jCc= z36m4WQ&MRsyQ=PVSA6pok^aEyl;(@JC|`rE`z(d=^UH|5Z+t-o?&HVTL~ZU zJ+2S0nEG}5_b>yPgcNYRaZI6HL2Cx~MrdTlf)r3jB=-oBZP;$?7kV$GC;ZomGy7J>Lnif^lm`c^yrG8k~SlXwX5QQIxY&Qz$ z+YuPVXXj)k62?eu>4V^Ob`q^pm`5;@z)YrJ*cCgvL*u`vd+f4t(kAg-sW@`=neMzX zY%SwXWhKyGbSHavo5;R{Ys$1={%%(6N~6w8>S0*<+SbPY`f=&`)2V@bQ@g+f^gLC(^{dwP6hcs7T(jgPBkYuugHx_Zyt&=SEk+Hrb5Qmk6WgrsQ( zApRei3m!)~a>3Cg5u*@=;osXPqFf%4qSE z*&d7WH6pP`u@n2*RxPl;sEg0nj%?2_gf56g+lEEkEasXPvwv=e*5`OQ`L*Qfv*q>= z79f5TFkkXiY{VN(_g*g!NjL?^s{;1%9p2h9{JqF?KU6 zvcWLpc0#QcL>MbAhG;};<3)0+a0H_QHX4*IL z-_-jFPl%~evApky`xu3TA|7R)w`rCsU8qS_vIBV#+M>)L8n?(58h_=@5*9p{!sv7z z3X58YPqXiOQ59t>4+~0>k;4ktoQ9i*^XGY;!f)n4L1Yd^?Y)3 z*VXv9+13*d{9E2%Gq{noi$Z#L>*pKEdYLL)cdw&{izk7eKUo10Iu?BXm-Ei*>)FwixG6k z)tBj80g&1~=KNv@T$--T(3H0s# z{5s#RtbaG@h3GAKgS;LE>y~lfhe$2iynj%`<+Jo~mj zYXgC~ObgPd)mDqatnUtnN$znMitKxmyJZ!8SV(nZRqzm*Xoh+i>#aj&e510M+l%cG zFt1H0SybSJiu5w+70o7=oqL-fctFS|nSF99YL1@@!R+ta)=!zOIl7p?;(Uu{3C^0y zViHF}plZpOYO2BPt3vie@Y&Acc6P$HIT+d)91kQoz%) z%eKvNcDk~a=JThA{b~4Ey=*<7osg>wmgW+5a=x5mA`Wf!k6xJ0l1WL%$C?NCYnB6& z>S=5`M;=xy32qddTHA2D>nv?aGb5>L^9?+9!hIi-$W+BRPi&yQJqpHr>K4HKA@)m@44B2%J%WPcYc%!}kpjMsHu!u@78^$!8`hgi*vnQLe zDg2HZu{ZwMX#hpS#0ecL8H+mMnLer6Zm7pe*fc0?y9unRj_?apYKy#HmSo9%QbXal z8>UZ>t1^X}GCXN=U_>u=(+ z5EidEOl)exNNm$GI!sv@g40+~p?<;q2`2{ub7vpP)WXnW##{sMlIY;~0a^Z- z41vgY#`=?)FAYM0`u(??GNeAxQH?bUdz5vJcqm5D+&JFF5HKRwJjsG`09T}>O9v6h z_-@ThfCV)`-l1N z?5?{(hF`nn;CliuTLPgF!-Xk?vI%*HscWn`?Ht!hEwE&6|7gFG~L#+ri#`nT@{JImMQ7R!%5*`%*;*%3#vV2Ri)k=w# z@BuU~tPnoOE?x({fO3SAimMNY^7#WJdn*V#YLB^?L!|5TnH`h1f`O| zAnedAP&SwTJfGc;dvGCTJiOAHr_yG5EYsAxqFEw<{UP;}HIH;IYA6U6;Y-AokbxPR z<6W|GjP+1-A(qcbzpE?i@U`m{;untVt5J_aRPBg&LO**?Oc;nqo@yqJ5(BBSBxAqz z76&%RIsMd@Dq;2GSe}{Ld zT{dEjx1`x#!|pNK1qn3NvoFdZ1VsT66h);;0Vl`n(5}YmE0&I~v?f-4kMp`Kqs9UI zU#)7=KU{Hyc6?EkN$um_o-Me}>pHVmIQP?K*JYQOMp>lf9CG$K*t&JrjkMrS>q9Is zfJW_(SUj1NKan0GH3gMctM#o3qhlHs&$@OJ&gaO=EPjs8@~<@93cf-Dvn^dPd6s5V zN}q-~Lz$}vwS{BcbD^hst=$78(hO7F;f|KqW4^y154H7?&0jTEOVB_DMFl-{Kv0~R zffF4;b6pZfG(3$A3KhHn8AWW$6>y$ARkASfESjcJ?_dKpP;qvCP)6~H&)r$gDdEJ4 zjuP{k){aj+k1Coaf6FJeToE~tMtWk9tuHWhMlsE=8P9)5K8)q6j=29m3OjL>G(tv` zlMbOtDLFo8QGY&z06ncR>MTgNOe8C_JY}$wp<{HsFd#Z%SFgU$tSqTlhWcWHmLPM5 zViW${G+cxwPd_+2O=u!HmX+2`fr2IFf@)jk<6BGzhnz*>`e@O`IKxp1hX04Lzl@8j zZ`=N16_i1dMnHOKq@+PYVCW9%5^1DMTDrTXyFt1eNvWY*C5IFoYGB~MI8M*wy6@|L zUOaD@4?3U4TEE`6{k!e!%`JiZRej<0pQZdODT3cte&G|ceQs1@dTq{v za$?o;h2rbG8lq?Z*-JsF!O#3&D=0rFw1~6)Z(M*4a*lq08;BCopZYS-Mxc6e#+_C_ zlxC0Hv8-l}w(@6Is?~Si+iXXWg*f7D23JO4D>gji?^@U@3UsCIWVrReYvbD-dQ`qz zP@I_RW0hIFNby$mTlioyi2sRSLd*iC9aXuh+DaJh@&9<4L)4*qQhDD zF7gN}3H$q$ML^NRoHEOCvo#)qEmZ$zdxMsuSeE{Pxv>? z{*QF>zrKq>_(&A!nA-odWB%VSN`X*CXK~~mRQ{*;{+};(+f!kq&e~Ivz@GfC+x6JG{hxbcXQBKJAQy_yW)E7Urxkeh=Pxj}f+zb(rbsNw7({n}MtRtq6u97c ze99-6)Iqaj7A3tuVFM$U2m|QkC*lm_|K?<$gY0kbQ+9qa(?790pWxC@nj>Jv6WOP} zD1qKrO)6Nq0mJWEJcxL0_2$CvLd5qxez$oAQ&*R=j6rXu%0#+-pan800>6EStU;0L zzM%HM9q1ti49c~dh&O+KFA_z?R%7eBail9Q>e<86*%DLi4x^Ov;@d?gPWJtn60LF2xEpQiDV|95oUP&^V1$LL_h7qcv(dFL~3V1qJCwjh7~SoP_wqx=D&$=L;PcJ11cyA>Z2nf|NS z5#c_4hzXB zQE1bYLFYzr)Q2`$zj_Jzl}EGU=_WWlV!pXq168odD5+@H}OWG5Yq8$|5|$ z^g`&c_wVA6*d81rS>K!pS6pN+nLt8zz^u_HMIWgf!v9>F9cW@vZqgFTFMo&VherCt1-Hft z7?XwfbOUnV@NTb}ncAC5XazVV!0v5y)^kgx&J>;pHPO>SmQ5b96Gj&+045F#5xMzU za)hNMbf%5~>^+NaLfvLG2yyy}Lg4VqyZ;lA%a5BCBH=+3LKiDv&qA(`+N#TUROxLz z3r@mr{u$k=bJ!q%E1l_2Gra$4>YNX#*y;fihtdaO^jSj%(p|&Z(a)B8f&e$2ivZv~ zo93JlobH*;G(7zgfK`-zce8^oGhb@|>rGEX!Ol{TG|oJjjIS`C-y?)PntwYruw<{e zue5_rMCWG33wfbi46GS3X3aiWFHAYuC-`qvf3S%wGZ)Vh*Bz*OduS zWSRnWwA?rZ@p9joCh}Yx|BTs%b%_ndn!fJ)R@P+}ptfum0d7h6+Hh;mDOK zjz^iX;ISOBC3{Rl9gAFNAc3)U+c2XlR|sGYZvdV{oIlDw@L7U7>aDOFP24K<1TsZ$$E~%Tn@kb_09p?B0Ug~1mfc)Z3*lE zG{&4BJqacj-5ynxV!`|lo=~W|$8`EyBIJy6=f^|OEeW$Rj!|aItF4p?(_FhV6`so# z$59q{7+vH}x?SgRxX#xXH4rS9l|)T}(-RUIN<%&&;56StI_21$l1bE*FLXcFtc)jVF3(et zyKly=D4M6+G}eFT7{y4`ZcCu>GAgu1^!Yzy<Q zSk6(HWqY5)lbhO2Yj1PLnl)M)sNA6ejm#a;uHEwGTXyYlOE>wzA2WYI`o7G2uWRHe zEuVEMI)$j>YwuHSEJVPEB?LHvnIi{nBESqO`UUfg^4ND`!X&U)lEfx)9LT30 zgvxkEanDHu15V%dsgej1j?rQ+F!1vJvXIERM79G`F~v1W)=8Nbk|2MMf7Pw28~GZc*FAj*GRl2R|3c zfNrt`{FI8C2JWV;*^ZU1du6Z57Nj0T054~86S%wi^M|jRw7jBLc3|=f;3Rq9bYxhM*L}z^@W^A^ z3Yx}|B8|(m+IWpda#g!u)n>Mn{ef903Ps`WC?sWvIkLcgue5mE3rMLIXJpalNn=e| zcoc;Is}yI-YBQ@4X0vpIf0*MjkiBl{$Z#BCB+e7LyPD9xxHp6XK3y{+*L<}3b8w!P zSF9A+tRP?HW9QX2ED%p|NJgL$!0pU3VrhUmX~)s>`2iEMCkV(JB2AE@_3^IZ?M6*h z)b9^TPH1$V!ybw^`yi&X$8E$s3qw47-{yshO;f~1hcbIC0IXfD!IslO&0x{lyrIZF zIq=;^wB;-$(`}7^-3=;3zvUR3h&Of)kb|Z9x5~}}TE3q}tC2mNZ(Hi+Ox0X3Z`5=1Zg?mB$yIw0c;6UbFcLGe2=|$ z-b{1P>m`h8&!fc4`zm94E3V%in2RjW-^M;8^Zh%p5z*bLKoGnFOkN2c*G1D1)OgXT z*B_ECx$x96J`S7$_Og_y2T77;nZWu315B2q1E;Z{L(>Oo9+?sGKQKh@Y0{Tdm6F5o3VR|4a@I0c;kk1YK+#Xi~-v9)Z**8^LG z3AC?)R56+_#K0t61`~qL;Ww=VLG1^)*)#b9Mig9#wuH{jb=RFI-I$)p``$pu(VX=T zfyDs26??y-ulMsXK?qcQpT68M$S_AGp--8PIG_fF1MhofnvWt^6u#Qr6!-*wb0cX+ zdAdOM5e-J}w&JkJ$R-h+?X@C~MQV?EAwj607?W-SmcVij#>P220p_sC{!ieiZ)dPV z@0G~CEW#`1N51>rNk5%$Hz%N$Wu}sR*O=Y70GpwOUFb&iyrLc|+fqrDft|gR;iPzk zHH3Aj*Ea2n!vMK9Fwb=Xy`yZycOxi}yHaR**AS~7 zZJm2_AzJ9ODJ297u6$ywMWdb921(00*d%q>!jSP2au?XdMoT;<8V8SjM zRrG<$oq-3e(B0T*D@k+w!spm?eYC()-|cFf$5-|ZMTJPc3|R4REP?UR@3pw{YX+iZ zjKti~G&zbo@qBHJgADWmzgEK6(pZ{{#0yWn2Ov1XZHsJy21C12Z`-CiNv^}BBVym? z5Te#IDz<^r5p^K}F_&EBLY3h=C(CQ+jqUJaX1AZ+;aZeF5wf@~x`ETovV)FPf$`E5 zIGo@Ivg$KH6d?Szp!pV{Og&v!u<1-Kv+7xLU&`~99TA=c?7kIn_|8}3qJoLaD_Tn_ z$%hP@EHzv{UjO#~fLosr*r2Sw!@GENM-+MCl&wXfJ2b|SbdBTZJPVXk8I*Lfki5Kt zu-(royWD(Mf0jB0K^1(z0aBEd1`jtR-%dWM>Mp_p@09sN=Pu(`k=xnJLvU~D?!#NK zu@@WLg%G!#KlVQM{6lv+M2Y7zz`Bt1x)L68f2K^^%qPraoBU=Z76P57 zfImi+&L=O(wMo3q@d`D(h)l!?DuD6`iI3Eg+zJJWJs8iqBI#642`+B zpG#(ge@fU%L+@vE+O8NKu0ZUqk?Jv4mK=!5ef~P2vy@z7&{+&CYND#=H2lxsgKa(# zfQu_fv1$#PSrR==E@mGHPvtgCMHPLA4J5RUmc%|!cQ4{+Qhvz+?F7{s!RG6kNE^hK zt`tV@D%pQ7gpo3Umx7(fVZSoMUVe7dA1Qd)D{X?#IPQdOHS3C_+R1b?i0&?w6Zp7& zGv_i|^DZV1O!0naxME#TE4zDH>;eESJb6HRAB*@frm8){4cA#+-n`h}K=#P1U~Wo2n0?E3*{g z=(KZh;HiKsqi*Yt;3FEo83T@9E-Qwq!tB7TNjw+k( zR6_<%XZG_&W?s)w>^>gIIzgcHe%)2p0aZgOWS7pkMrzE~5dqSy5E{Rxl8RRHnSAV& zsx(}WSiAqq0=_t(R-rJv)_gE`oyZfVY{ejlUuxM?NAR^8A2O64`L7IR;K=6I6RqgM z`wXZ&3CKQ`KPuT}CiAhPAeymNN-m#&$INQ8>3WJ7#Qr8yDyuHzO|OqZbDImPcIbMQzDttsf@ zl;MbMU4EM4r7TDzvpjrW?pOVH$-v00v$RXitDPsL-iR|HC4fWAP1Rxh7-(XnD zw$Xvk(-e|wE;$+O%oO?OlrBT@IBfs#hBZL`NX=N19A+od z?AE?Pwm96#i%aiyb9urq)frnla162UW^{owPyoU00NsYqMpfPk^)ZeQL9(Ce5?GMxxlO# zDXJ}Cxu2;=UFj2kE`yakWm$&^;IU>l}fhKNV)K`G)bZ9*zb}x&2{q zHcNrs?7UVwSsl~4sNfrWo7mkv?eWd!pD7yYf;zw@YWn%ll8&TVaqk0;-ItW&f143N zog|l3aD+af*rZE1WpvDrk@Uq9W>m5?t#BYW=|zUGe`|>aOo9!*yiTS5o|f3y^kK2> z+dxmW`}FG6EXl8M@iiND=Gtd9#wZ`;I&BnJWnO-JeOM6G^5TkH)mUaaXx2ydYcAS( zpm*~Op5mJD&Y?rz7-^k){6~PfcfTujMNJa=RB-5XjaWeKI56Bw-OVvb9*fASn~$$w z6wXtsFYYP8<_^%`X}6Yw3PYpowMTOy6G`RG zw~MSQo5v|NW-MyzNxC&MtQJASl(cz&*KgJ)H0mieVVmRxQqAFt&j*yD*}XgTCA zYegrQBfl5ma`Ip>+6BI6aHW1?B^j?kOFSIO!s&oPYv<1q!KG?kv`|#kX=9|rGsS#W z-o}g0F&UAnjkmNq@-`)TQ3f-GSTXl!e`NY~d>j)p7Eao9h#nFK-tUYdX7v3Q;hO zrrdp+IA>PN6&A{K`C9f&6ZAQ2Ba63E424NPeG7}t`Xfx5t#n0SCYz`MApGJvS4TS+$DSs0g1%nawxj|%xH)>R=}zM!}QT) z^API>7I&y_8_yGp0q+g71$GUC38wTpkK{z3?KF!b-D{{+gV1@h>UzlS`JO&Z+BKp_Ow*XX!gkd zEq`AXf!=!OX#IT%S^RvDb)S7>jeU>io6|;?>hSsC&3$4PE5D%$-3Oz0E;oADVM<=$ zrsos1HX3P33DlKB?#pCkun&RJNpZpvpM*X7GHbDIeCDkzzi^OT3rtm;OO&d~G_5w( zx{4_i$V=E_AHLi!w2>Q3pAFB_%lGXTU1#%G{%t0%*dov~J}^d0Mnp*tIks4aV%rpo zU|+iLYwNGm+Vo3L1)NMe1&<4&!1X=e_I^s&cYh*K9C-%c+|nY>-_0VgkJ8w%V-!bv z^1*ZDL6iP6bYrWM+DxTl_F0KTH zr29ByeCl6cxwn}xN)3-TH6A{90tfuiTMFiinqB(L0hQ?x;c6tvJs52IQ%lE^UMmV9yh;sQLdaiU2bjiuR5nRy zN|+nO_~iL!-SGA_MbL-n?kvSW>_!JB`lblYHHk+R5l~Aqk@Q^V*j+P=1rgveo9#3t z**et)TD{+0#yxgtk{t~#b$vqqs&SEm_sjntT1KQwK=C3B{6yf%bL!Z-VVu|4oRQ%; z>Sn2Yn;5U^ex3p9(z`nzc9P%oI@Xm3iR_p}4o|G3pY}%JbW@t8vRee}^3h`So+P34 zu~(5WpPKQp+Y-H(;G4@pNTO&X`Jlg`tlNUQ|u(sQKUd` zK70{|b?&Nv!QfOxsYQL5;{_)D!mmjB!jAOU0)D^_P}F&xuUO_P+5a2Ge3LQT0W=XHkN^u1}iBaAvDJ9XtIfNXPa>7);pm^i3bK-b`m zm#MH_PD>o%&_KjSjtwy@y-ive>qyRLORfDVYp;m zoY&#Z8Qd}_6ae$1Hpp-=71g@JkBjcqB2=_>aNeJwc9G&}z~!qitJ{eOC1~VzapR6w zRj+UG>p*<1`t`0}#t@tHmKm5qOD)!;yqi`#GWU9%u!lAJ>z0Z`1%w#4 zhB~upSm7)+$628-IFnem~>Kb8(rXco{Q0!FwAl#pc28Q;+vSK_6=j z5nx*8B5I^?*|nqEAu@^O*pxIWE>w+h8CXI*bKTpyvHeI9P37hNMW*gnIkW;ZL01vr)>BgpEkKpQEH06aT8=Sg0bva8^~xAuQVAKo z#U>e|A4dXeYXaE}2eo0>yj>tjY#-3{MlZNHA;hB~5KXQH!5!~YWU98=q`nplk|9uW z!=>Z4+Q#X79D!LBad(itbuwKBMCaaakrtS%t0Ls`Gqnd(MPi1m$B)KA5f%MI%MTsk z%B?3J)~Gmnh1%KEu48oj%Xx&5+%2M(vx@I+Lv|b6psbk^?W=*SnwZd6v$j(kBdn3ziFS;+WU+K%55Y% z=BA_>EoV$G0$e*h|Jm9ER;30ZwGBIA~Q z6Rfs5p~6bxV*P!(Mc|?G-JuQ*VMWCqg`tF3qIPe5BLc^gaO3j^Ykvj`z)y!114csk z2O&Q5n#4G08JEb5brC#@!swBKDNT(n4M~d4C&r-HVMAhClx%wQim^;XsQnLmON=N* zU~`XaKJVfv1boMtRVCbFEQmcGxK3J?S~^_<+;f~Ve%-q%3@E2@J}hpzP5zm#Dj5iW z-5y06^j{l;BDW4}=DpBr*9Dn`=*I|W}ZDPApDn82Sal-RQK}6CQ*Ks&CIt*3bN??T>#mIRP>Enlj>XZ?xtZcK1qQ5%X=tUBI$d1#nzLt5-9V_m=A zCk&IoqMoII*ii$a8JC?*A)EUXtdw0WIwko@uJi)ZDz9QlYsYyAqsrV6=Raq+nn+-Z z3R%ok4zx5hX67>?#QS3&>N!7!<{ecK&+x~cQ}6>e*0rw((k4MAr5*(ejLBRqVL0f$ zmRmCs%0Fp1bK=zd7)d?*pY6osvAryS7$Hc2@Tzf@PUu@_6AmDuXE?ZRmo;z>UN7e949EoM_uk|y<-F`vQ7EpLb0 z9An#PC8m1nyr@R$Dqpp5a=ALbyFFgn+1pBH1uLgZ zVE}GIj5n4ehGY;$E5dW#{1lBm!VuB{>6&`a>Hidy{oMd~ z59EX_OX^;)rJbO0VFL;Qx*RGmtFMEdgT6x>CGx4JH&N&zsn_~3%&!n`)vh-DCOsYP zL8ZIRoga%fxxaKhbKuPwH`=J}o{E%WGo40@RXcNq+6YKs1>GE--}Y2#4xG$F`mdj9 z{kImth*q)>%#S?egFNd(9oaxDMuW(t-|G*2*L_Af#~(zc*hxp6ESZh4UH(br8P!v= z7ojsnlW^pyp^Ug>czB-U`xmC=VVIB_2M3v22xmB8l7=KE^e~$0B{9%nP@?g*pd1Qu@Rf#; zdswU;7bONbVLSuJOTbe>k*XTeUxh;3YYKl9`Rw%#uL8#I+CLbapE#l+DK|j8LzIlP zhJ0J-^6xXiz>jXGO*7B-c6B}HFC57uKR-|*NA=r>#R@~tEuNi~#QDoyN$!@2M0Q@U z9-BRqZxhF`U^^EO553H`zzcodpUgp}5L&`T5(wr>EN3mwaFmUfg+?cl93_9CQr}N! zoIi%0@vcD77^#`-^$*X!b54BsB-9=UVbQP{qY;-=bSt(PRS8k?chnRUsuiV=?~k6uZWohenUhiG@!EfIwYSM3486mr##=QvbDd`FGq)Fj-tSk-Q2u-k zi|@y0zm8q(q_0c@FIeD%qg5X(=1OiU<`5(m&rW#Co(YCOEw*vbY5-fcF)|5RB;GEnzuR7A^P^4oljo@$yJ8ucihMWtUkk~A*z4Y5=)eOG$m~5 zhlvC88yu4eX|i#XH~u4^gFn}(%R&+rCMBGjL#BEb@l-xzGq|^faE|A0!oiFn4mov9 z$0AVguZp^H*?awK?I4X>8$!$<5-EoHK_n6x?^16QBEp2kDtB}WWgSbsMb0+D3Ju1z^ z2r5ZT@p-H}uWcLp)-n4!PJJj^%z*1vdSgi@j3h75h@Qp!A#9(wgA!wwnDzASfS%T2 z$2-V6M0rZT2a_riqlj?Ra;oJITp~6;l)crT;+LH7_CbS(0R!63n3GrLR?_M%I;F4h#qmk(XdMTg<(^OmF?M{Z7QNB;qDGV{vE*RA0`s?<(h<@>CJFpUbmwmj z2{DU6_?SK)Hc`#B3((D{I-novF{H-nid)rG(D=9n`ZL!ItHjx<(8Bu;n-QVCZ&B@M z_TB9*X322AUA++PjWZjf`Ur_E5s6318t)lDR($+E4};b)PDJ`aza-9hQ)s%RCpQ_vDcwqQ0ZYeEG-mP>>p0xnMmOt}J z8|W0L!XM zhJKI6E|AiDW;yq|p4udH=ZP^4 z&p2hg#q|B){MnhGDMQ6`&^~L_k!6R^lT&Jng|!i~{?jz9`OeGN4z*_K|)= z11grvgorp4ydk)VxMYeGO8yLfuxE^p2gab93||nBWyt5CWZ^q@E^j{^60#9P)t>Sd zGW;Z+avS#`lqRogZ|EUqP;<%tYKJstK`GC?d_6r53rJCpJA^4}lgS^o(^RQO@oPZ( zek@058PMFd;8<8E@x%O8K3nw4!uX&Zf0fLBh$7W2Hp^oXOcrm8KTu2jg;`;YhrSojG1YJO6|b*`ya=ttht$iMmtchvFTLw%QD z)2;Gq+*#(CC{?fD^rAc|p@P4~@5bC;-+9{RPDSOWn924aeAPo~0BW4ih%+hka_eP( z%+0T3cO>X8Ac5+4uV=5xoKcStfRbuQ{OS%XuJi`IZ@p^+wi zlL!Qu96Jz+eJwLf{V6fV=iuAB7<;Sla#s@MNr=mH5e~Iw3%Zf$oZ8}~^|1mY&Cm?9 z`A|V|quFb!OnlYaMWN{7>3F_uTU0;VL)_PkM+W`z$UewGl5mt>9sc;5Sy20*c5I=b z3|1m5HbRY2qJ~N{o8qkMT0NlhS4(C?ACwa$^NzlRnQ<0)G1(FewDP2dH<4>&?eD_% zKOd=xf7Y=00C7vhWW~UZ0d2DHJ^M73iq${aow)YFvIUt5hdQXCB{60=6le8Cn|5bb z&SLyO4~HUD4FoJ`+#w70vDb{?gqJ5x@{ww5R*T6u5}Z_6Ug7rb61y|QF^*MU5ypFg z6%6yd*U2%CgpR%3&;~(Ab{x~dU04WZ(jE=5KD9iH_s4nG_d9DIfdr09&WdmRmW_~k ztH|-Gl&u68QLt|9n?i}z*hoaf`Vy@k1T&od&qpZzuE8}kj>|}8*QYh^^E5M;JQ5pI zcIKb@zPSPQo0U;m67|ai=Wi0>zy9CHCL#evTKb1`vZ@Xkh-HR?Ffa|ucas&NyXP+z zEix_aMa-SPa`45xwIp~rWy2r5f%s)KKfO)bMC~)uus5&8JMNK*%{Y&_)kd5~!!c5< zn=4fymoK~zE15THtu$OeXo8cBK37vw4+z_TLQVHXE!3bYpp=2arj{&su7bJGK^`es2Wei!U&qx<1sC7EAfpeLCHu%^h!PQ zOI$HNGA%vlmRH>KH7>aJ8uM=;`(GgMUUAF$=ah>{gl7F!Nc$;~+OKq{Md^P0!8(0+ zJ~xnmPllk26m-$B7*B;9hcq*mETC|(#g<0(3mFM>rel`yvlf)P(>V!Duj1a}>SIEh zG07W=vQTp3?|yc`Ni9ddFfwW<=ohZB=r60O{^+BXtzOq?osJLB zpUBzuiYLy=8kakDfTbuOmSpD1sAuD-K#^VR{-N>GWZ3#@zSN@ zSw*ZA5`RiKW2^O3pBA;HmdG*hpaG5Q2JXPXe(;8Ge-N#M3z{Knl6M_83n)~>KN2Tu z8tWvu$zwU`_&(YHyXc#SJO05QM5)~R+It1Jf1uDF@$#3tua#y|Wz(7f09c5~7H7IH zb)#u>%_#Jx&z@B6*?65b=`&HQhWT{#)PQ=&8l=kFE)16 zV`CukX&%%LLVIdAWoANmxi-Hbo4=svnFHkH7>O2jq}T2qK;I3mBO^;Jzf;I4pF?rC z9{Ki<=sArgxvn@2!UHI7C^yt&Y#rBxC5Mz~R7D`m$Zj;@*f6|>t8UDx4Hk#WWN43V z)2i!e;1>o_3YrLS=$D2IpTvd&Dz*jfUQ24ne)5|a+9q-JfOm{rKM(fO)ZjxDHx$t4 zxwYG7q}ueywML*vy2KJHix`;<`91;lm3U1{RWZ_4iV`}{Sn8Ee8%OSmRLlDG+Z~%o z>6+Hi@B?T5TrapeL|sVsS-Rq7oGELSl`Y`5@#a9Ey z+rwcZqo3Rg0>#&=mwl9O?|$^G;J%)~vEQa(JVYD&0jVhsic}g3Up%y#v9Vp^gFReA zF3IBM0+mIq43H8rr}Kc6FjNb$cEF*Q0FOJS$i36bcj+|FZ~jum$7{*!&zO^t98GL% zibaKw-6y-!4DWnwrf(-9T}a;_J^-1v?ey5(6j%T3ys67OCqw#a^c#ID?HMONbS9H8 zH;KC1viM~Blmw7sJ@2zwV$OLctVd5y=mjbaaYTZ4MZKuBaQH)G8s-h&H0gWNSw541 zZ0^S7eQpFmPA?W?taE#kJs)G*Y}fT6+=XGgFxq6Ih5hHm;rOnk+C@q_h|-A`OxGnF zDuo7_DX)>WW1i9*M6^%~wo=vykR(!`}#J?E9W`KJ3<(6vlVVOKETG2%$E}qvFdzWi(DpsC7CR24Lru(QTbU zAAoBrit&Nxqj;``jw}HGT$k_tGl+0I^aTwT8mU7AP-E;l-vF2`qwb1Fsy$sgPA^sT z);_hmW&4Z#3Z>FhSkt!`x-<|1)vfSXRYdmPWa6g`BDL5*xAP;1FakA&94%uHJcXkc z_<>3<9G3oGs&dPkQ&H2&r^a5qRy8AnE-OpiT~24;CJwU|1anaS z2GqDV`HW$4L#8QC=@Ee4cFXB#Hke6iJbX#BDGh=iB&sP6+l-M=!jx!ULQkF^R|{pxCYPcpVNXs;0vok zpMAIUz*i=z(ywW17<$2b%u7#UB~kMdI!pey2GXWG4Pp1y1cv3%>J>(@<7~62Pfzty zbvD0+C$^p%`YM>O`Z%;+l%h=w)_sp#YnoZI%%@#X+s=S-_x_%=R#KSgyzyGHnZ?@t zqn2m8v*KXc`pb~FXl%XKK*xIOmU$}^_bgQK|6bsW6i^2QMZYm_2f8qkdW_>seWU>~ zZ3&z&e5gzKjxOnlU(+sCuP!9u$2q30uITyTd86SwnR1HtAv#P>y^-xPsKl4BMg~6W z$8pbr0hsaWS6Eu=4-hpA-!kc)zUv|_pvEd*3A;GzA)h{hic^N2e!Wldt9`gn@DynC_Dl2OxifpHhP(Vn!ht zx3kqg+~EE!!8qzr&Pyu)2DwX0%~+mubLft2x^r}A(&B3uT;fkRCxck~@eps2-#+nN zq%!1^vgT>$-dq?%m+R+Cu@UWLZQp?sHZlSgbCtr-B4B|jCMCZt62~!QKNDm!J&XL> zay>v|mr;%U#^w|ET53e@5AYrgMLFgR0d$_&9}L$gH=}GtY=&N+5I<+>ix$l@xLMfu zS70ZES&AWsZXQcVl_bS|ysKTy!4azo)8ypqv2e->rlkmknyG1f(OsKyEspqKVOLXdbux95W{si1x+OA6JkY>##s97TqPSwRT^^f7itnDrH?{!uOYN6I~4~>*^PE=hB#m z%?&(Qg-&l0UGC!fC9&9yuMf2H}1ftM~Yjlrq0K3%BEwA#rB z`=%aca+PXL*CD{j#+mURvDdQvlS3RPte)h4l(r-7G$z<)LYI(Yn3j0tyZw`^&v^sd zTQ?!{)-@%9?%hO#uh1W(FP4b3Y5%&h%oM(4r@u8i|LO971_1mYlik^~f}e^ZC>F%T z=4$lMlw$W3THcGQftmVM*wbnTmhI1riVECwNep}|Nf1dj~-%UY~~wCaGL=2u9*zG3U8 z$0o7y2~ca&+rW%APf~qZI>Ng;S{SiQdSY%_&{RdmDa(~~3LJ}`fu1)f7ZxBHUUgVR zm}fXh(xvUba7})h+>x+1s+=Uj6+J}JpX~Y`wrzi~!KH<4k5a@>I;VZAyqQ>%r(uIT zhbZNs4hzv;9}+Q%4y7h3;Eh*L(Q}j;Rk&H6)u&K%JrrGKY5O=wai-e}Ag@00`{gn9 z;3UX9aJ9E5qkq)pKAVp+IV2VNAjy;O+NrJe!tp3>CretmocS`jeot()z}-BJlZ9)! z9oBq7k!tIEuvUN2UTsGsQVRA^Y=^ZwOA~y94>>6n(QfPTd0Y1uL(!5~Db0}<5<18q z6NANl)gnS2$~a1#?>1+7MirzDb$zQdw$Xgff}BV5-}x?Ww^`0UPEqK(8Z5LN3EF?F+Dm+a@LdR^xinlhxVJ7?YMk%VdY)Ng|(6R2qFeS~pkFJz)M++h}oFIZ(}_G~BM2 zN_-##c*$1+?Xrw87@zOxY|9>MyS)Gwvtm| z3qXN2*H9VMq)^so0^@J|hu!X5_%7RSoKO@-wWU_UdMcHG!{oZD=fC!W_j-(bIAsgI z-)T#u)Hf>VC=2i@?%LBVJhqG(K{w}P^sF0VG=(4%5hF^@S@oIw8b9(x7OrK~jb$`- z5V5s#U4&EPE7d|neNJeM21EQXE4v{n7suy9O}M5mLSTH`uMlbXlZR7^XM~>0J)Tza z?_TK9vG8B?!u;E+W!jMEUDJxM?sRo*dbXgyoLCakOFZ=HG*o1P{a+=ztaWRu%_(r! z7YUoRsxIS(l5&p6V>VwF&#HD$Pt(bDyt3(pwK7S0o;9a5@(mc#PYZ&#( zx-D}O_T**+1Cmgu=yjs#|3 zr<2hi$t}MvnnnL^w)NKF-Yp%@4u?r%2MZ5D4vA~P2&r}Pc1lZZzA@<`58=~wz{0W@ z5`2?B{zC_(h>kG4o>5wglgu=UZvP`XLS^zyl=cuh@J42kdqlRWINQe~T5{%z5u-vs zIM0r~!|ltwv;nWrkwlqAX#iA{^-8;Sv$M+tYB_F|w(=yRI_uo$It1!j76oN#qOSYS zu11hqZ|*U1$?X_81Dv}BS5Gdz32Oc*7xuxX!+5h(UZj1vW$LKj_AYbPvP`J|#(1Y) zsNKPw2hLe*g6qKE_})q&`t&u6$uztSTWx<;TE>M7)|x1<)s3^uwIck|ryc*O%Q2RN zN?iQ|1vZz|pn9{nS|J^F>+LJQ14ivqQxKWgF{98`CBazoGH_p36}Wsm(|5f7HeFLG zVyxwDgWK%LEJrU;Bc(HJLO6c7f}2qLb){w|A%Ekrs@?{gy4Fvs8rRG?qA3by|u|(r4Hpl-iBjhDYW4 z;OSsl#o6Tmj|hxcs!N})x|Z#b%bXSM3q~a{mvrB*YF|x>rHoTQyP_@)9I5$ts8f&K z4AXsd;{S-ta zY+OLe-ggzh>htH!PtL9y>eULw3p=G@FqYX)oe`fa zZ{7kHrE4#pPMx);?Yvh-m1TtiKz}-U=r(+}ACu6i+VgNy5xgN3agW!f<1j?)z<%R^c{`X|9)*}_+^LGva1yXjKjyAK|})1;=QG;W%>tk2H7*H?Tj8$xE9_ikk@+X&WlmGWT64g@^{ zRU>v)Rv+N{n(lWbRoZ52-^wkj9zz!?5C*L|Iz)fdy9ebge1>=Gf1 z7j8W@gZ;3|F48v7;J0JF{r#u91ONRIo!vKU4W{&n3I6E{*iBnm$4nXTC5u*^%3WFV zt-hLs)R@MhQo~Yu@@ODbAfhrpy6ij}A=99lq%fyxXt8LOwyFmE3dD?Ety^JSz6287 z3%6>g*>1@#&~&qGHldr94a*Iy;oN$r5ur@&!?-hx2ER7JYTw^;^1>aSHM6H?M@n7r zk4v|aY&+gn2e~fmYFLGGM;)C@*hn(V^ex_ztu=(^^|ooS+dCWsQDyFFXVSmb7ygQD zKpKd$#6yDhKSi)}lt2psW6K1*>t27_RoZC1g`?us*7nTr8cQA6iiJhFe+_FLnH@8v zM?`Sww1B@HeY#m||9M$9`($sq%OxRtq<%&)qKK`c#i=1>R%tqLLnMt?wyPjqwpQiJ z;2k8{g6{O_+gh>=gWPXnCvvkdKonuQwpw&mdn;V41igB>c2D9dEa^R z4n7k<3y6f}yidr}wmY}`>#xgn3$M#VtGa|vV{Ul*wsv$KCpr2b|KCxY-&@{$WbL_* zgUvsOvcAs`I7Z}91~l!y>Dl)@UXMi)8`1sE+Wf=69UV!+8j8{v+B^!xne~ym z?&(oWyWDW%sD;F8xg@b(nb{mkt)p$dxVtr{O_l2J-~G0OHn3aH1rK^r*!-xAgB5s$wyF z*PH2}ie>OrU%UCluQp~HoImO?=Oc!|xLKgwdScOcKYhthry>}X<^VW>xB-FId=yY@ z3*|ZM<(;WKjVfa;L`9w7y^?S7TLCIo&d6mnjc3oSj+`sOp8lL ze$33$`RNziMup~y?+RiEv0678ZCnpYnOZgN3B_C=^}d|AQ~dIG6dq}dz}7lk*=uAo z>N}B4_j3-d%eSI>z~B{d2z_a*b=t>u9uF@EskWZm`SZ}C?Ye*3t^MjC$L0($_ zXjY{4@Mh&jKpyR1gNk#V@E~-t7P$47RX!xgYVY^FH(y7xw@D8^*#kV2;mW-uf&qhh zTZKzI5fLP}V@In3M8G@E9;2e&)g@7%fFi$+$>2NVTY!VD>Y{&r5Ao|?`Jlz|Gr%A) z-*>N(*#Ib!w+0-XF8ug?RTcJuXxw*4<}~}d8E&dYG%p~Q%CtnkK+n02Tdj#P#J;dF z`3s)RnqyVqT+upEF|gG}`>hc84M);X+-4YBmskm(}PIj$pVV9FeXQ<48U}4DF9}NKY9lLwkV)- zY#sK~?r)U?TvB*R={R88nYQC9L#U5k^|Rk*r>?N*-9Kj^PAx_NE9&*lETApBk41AML|Szu}4Dqk!@@rD0;z5RQh$fX5l zO4;_$IUoN1#sA|UurUjzy_*o?k$=Rv|GSgS(sMFlmjKamcI6~a`f?y(uDop{h;rjZc_`hu0fd`E;C5Jnh$%?9 z!rp_BzGn2*gM9whEoBt>LjLuO#`jER4(->c7KsFxRe&zT)C$;=j!4e|sF@T6{xOrk z$hZG)w*R;nrKmq2c_Z0U1-PJR3P9%=2Vf{kkk-@Ly9RWL768~m>Gu!u+bi@jS%7jN z-A|U?v`G0e~mmdLL=Oe`7@#OLP;IH4C)T1dvdj%-GG&j~i_BA)avNf9=dm zD1!qn$!;+Xl=z79&>75bd5G@}JW-N`QSx^F{B@Gf=k&*a~-bpb&RqbV5t9(kNRJqzex@S zVhewgHw4sd-C#bE76om+Hc|wvto?NXn}~6sUOpB8ha@Pe4FNtUf>7uiiJsW-Qow{m zG*&z(?gpR>nCA>S=EdVpM216CfM)*+f~3{QRlYc__?jVd^|c-|q zESniXEcFCP>-=?+r@Rxu3z(AqlIOa8P4KQ3=(C$Hb0mWx^J5Rn{$@bAIKct$=ple8 zhKl;v=cG(Gf9{<#ihlXRFyl63MQpc+r&(lzvOm+~%-t90`*vRvtE>u=E#Q0+T&|$x zBzVm$^Bw*(Si6}|8Ltw$0;$M*ezx$w~8Nm52RO=Z6{Ik;eHRMgrpc zUjtMN`F5c5xzeBmC2U`$fP`8Po09?aF+h^4N#yw-8Ezmom%!d95_67AV>(93sX)oko ze}#VNM;W|}BrhkoU7yY|zizo?VPXUGCsd}^NQOUe`kmulHUr3G#{#gCtAfxPB{x*i z+A+z=M(Y&y#u>hIpnfyC{!SoeYqH<{|C#ggn<~gU6oA^q)t@D|zED@lBL4WHk~rdt z;sCeA>rH9J`0tF>^C+SXQ_L4l8Fn^(V4A9S{P}#WdD1jMaG!Va8Q^jWv|;Dey?rioX1Q%##rteSU}7(8VBvzQMMdF7{&di`$P zoG?%oiOuj@$$zHC}~U`36-rr0>BLzh#} zj>X=832@VAfKl)@{Dm3u(O^&LVYiMuFkIHL4PURx_&f(lN7qoF$wKrH02U)0oqYc_ z>Ea!~ernHOIK_baX8uix{o8kji-56dV92@BnB^1w&((008qF*ti`e~ra=N)&IQgaI z%mG#M#4~KF)G|FJ&;wt_yprcN9I>jMK>|3eM9a?S#U$4s*j-fGf(-Urj)$ov^~5*o6|l{~hl+U>*o(-v@IIokmL5U% z&Y@o@z6=RFlcgAPEV|&2ixrGQPbrPA5G;qPP`;TwmP{j$PUH7BW4NboHqT<(wF#UE zhSq4i`o3K-^oecenJHw0XqE3zMGuUSF)POmnH#bHqVQwy~#RN&e>k3zSJadf_Dc;rlYpuo2LnEBYo}{3j_>!sN${xFs*PS1B~}rBpzchF-=) z5>d+ls6~#$!J{FW5&15<))e|j{r}n`N*J@#a~5E;N`K`)opCJ2UQ4~(u;4MbUVl#i zi7X6kDC=eL1xIODcn?DV})HicZBj!)HqBYatW1gLTC=|`DS)c^z` z6%QCt(UjPKH&1TO>japSIpj|0p6`T(FSED+a%*7-zRY+r!GjP%6kOXM%w(e+*KO9diThHF4QViwZ4qXwd8jo+kd_8BHTqR zfLDVxF)wnGMA{>sEulbBs``F_A=(f1%06aOZuDgHf#mOWc`E5yE}6~)c{rwp$w@7o z3a`KfLpfz}_gHFgZ!R~tp#nji-&h(P-4BQfNq7_P>q4G2y*|;3z~#jwZ^>kawJLoE#Fh!@QVT@QE^a_!6&a()}T16pG4u{#u#@lw(!0%u;DwRMep|9gYa z;65suLr4;w9mIs-4`Zbp^6b6#=s6UdA6KNg4`lOH;g7>Y!) z$e|YRw@q0v7#CCbew^Q+j2VA?Em67kA_`4YcOiSCNC*zh!F^^-hx6dmw@=1hE#ENR zZnxo0mkn&PP6p}^NmvzMhR_vB6RAr`1~VFyxnOo4?2kCB>S@f+fqV;m3z|1YM_ex# zAwuq5XK5uu?e+ef57hxKtCL1i2z0N_|MuACsAuv-65Uv18~0RMlJgmp4pA$%8T4%k zb0L^S)kSpd=`->?3LQ$d%XSL3Iy{P=`1ZnM%(}-O`|I9X$K386%AE8Vujnvd89Shz z5#VS}r%|vR{HW_ryj|1@`(}X-f!%cU&EjJ|6q3=@Ec=t^VHZNg+u(5U7Ez#`k++A1 zLr;iCr@RLYjrS>4G6LweBZlQ$f@e4Cc@Y?2nqpcld8EANWxxifcy)z6lSU@5~gUvYo1`I(onsHAeexU{gBv7E!a!=Xv`74`=S z><=CD7~!fRAKG8=>9jcLwxn6$DPN<`dV`c&%8jQV(y+c>-is-Q%_@onN4x=(PW%j~ z%_zzQqAlxNO}^1v9@oLX`5ocbl;YQ`uw9zH?<1f!YgJ!eqQV{5rI^fG8XTE|C=`~v zENp0k|FCHL`t?H+Y+ej58rhbh=T?h`JWzicP3XFP9b897@J!2Z-ZkJTHj|w*=#xa> zYsh_n8Vm242$q<=scAeOLppgJk$G$vu%>N9>sjmma|Da@h$Cky6k~G5C=q43>c&g_T8GDBtWo%AeO#c%YS zIM{^9=Q67)@Ckh21gGTvdnaWS9|D5lK}Z|LY6gCJ0=-4^31>M*$;X*H)nNs?I$jGJ z_WY!(KB6@~Q{+D6!)~6Yi8Sd;N<+T#NLsCNSnQmlc2nAnd@g-FMuPh=w@Mw$DewW?&es~vD z+A@7K__Fjl&;CT7=TDQcRfTQ(kBB0X9j9GHW%r4&E!F9L;Mo4|5VA7%Yn`T`)tk-) z%15Ao7V6*GO>(Hesm!}JFfmvZQ|BAkP*8}2kbGTnzI)Y^N*h#?{`Pw4^5+~@`Eilm z2ay&(k)&0bUf0qD^_v3aBMJDUI$%>{n9BSY96n_Y~L+w2>8|D(uL`f1``R z&w=H>kR5wz|J;rM=o+&a`pn=3-+Kfvd<;gYG+^*;cm2ALsPU%BFdBd%9B%^{N5HL_ zV+QCZHPlr3%Wh5X*ngRMTqMf|NhRq15dKTSt-V8n&W$J@-lX^8S>GrA3ohfbB@;Tw z!ybxh1J8vG0G0YegSIScoke6VTyl-fbxApZvvA?`1FCQ8XyS;N3{9nkg+aCxmwdFn zU5(Z&f2~IH+Pbe;X`A#mC#HcX}U)vkO4V3aXBqp4uh* zzmXv|1e}R}_LUBVBp?r@nxyMJoK#B;Rd#n7uTMKZG*~DuiC<5M$6uBpbX$r?+(d2P z9_G13m#!xD_RmFrV#~bDzc$$a5Ob8V1Zv5zRh?_-8BLPZW3B#XvMQz|q9N;Ecc)c| zcomg-waT(_SL3gF3}{*jY$bj)qN2Vk8N7xFp&oiw@e-@4j74VQ)o27)PqjScBQ!z} za|jFujtljEXQ``}AiM{qKBjvSRrMn2pwk(dq_3Zu7g0GtL|J9+od=wRZ)sF@Ebx_Y z83W1BDJE0jG7wJTllury0-gl=(>t6x9^fP9KeK3#ym2x8p>?4<%xe0bf8)k%^Pcsd z-$AxTGW|$N)LY%QnfFui6ozk)DS>{n881^={`4u~hbE2RKI<#G%Gj&wK9k|iJK-_mEjNcK z$YO_d-2pV39)`$#Ul*IK{fGwUDUm9ld+2%^RE7t^q;bqs7%yzCQ8~;qzrO;8I^#U+ zqa>EH9}8!oy?4}yT|*7^lp9Jy@%Guw&AtdsYaErSPLAfAsCJ3i^3GStwRpW@Jvy+6glGQVE1Y_~mH4-yZ{~jCO1W4xh0|Xvia2 z0KwCFj;ptiY3hTE{ZS`_$Oco^MpBT@8Q@U28Vls-_6jMY(f5gd7ah8eDNG9EpPGpD z;!W_yU5UVo;eXWR`A#COFwwVod8mPA{(GWaip$SU$uAAit(7lf3LnZ1xAo&cFfB(n z`MA?&{jMyxuM|>7Ok}tq4H?=QLh2FUYK7+1`8HREI2Z`mP243sn|XXH~)V zxQ&8T2UfJNlEsAsn1?-2tvSWQWibnPxdr>?KxEt*R=$emdx)*(t8g7@rqDn)cnYIC zWsuUlR_{t58!ma=;3;kYf-{!CM^{G=apj%5kK;H3B1Tv^izn}eGB1O+1v>MEwJMB+ zMAETkTWnhKzWiP@WF;){Vo9cuYhVCR8Xvl6D4~?7fy8=E}0+$cw5i*np0B!kGGvG&cNA0jt14H^CX!$IH=l)^?{c} z;P3D6h{<=vRLW#=|8}f6Qz+g#`G*BCCYJHVoQ^$1B;44ZtCTv?ghAPwq6>~AQrP#fm8MI59*r##1lurCX;j49p}aV{N|+2MXZe4VTP zB{S@4br?-ugJVPVA;yOJ6yDxbn$U0#Wotdp;^{;=LRI6lDxr0K5yw0@CY6^LQJP2~ zJ(y?++jq}kAuFw*ZBS1ze(ZYG*$hV{3dgR8ad(={YcTt=vQA6x;$3rO;P;6kwEfxf zkeB+RB46LyZ>JPsNsk{nDPGhzyOf%7v>_V&!cdEvG@&uij=;+`v*FRWg9{wCiYDFa zQyR>sJH-;jUOfs z)LJNWOBXBAp-pKzw8n}4bxw(4 zTwdt`jNn(l$;M#a$B064W7l^bBdNfe0)JldXDWPUJWCiZ!E2ww{RrpJ-_m)Ao%FT8 z`cwa-3L4wD$%+;>@49|57&mSF$mZYF<>21sX`E%s|Le7=w(-MYP*ZN>Q;0wvj(|rN z$6bvh_BRfnGD%&2l{a!DkB%pdgh4i6dF4Nm z{N4Q-iIyYQhTL&tGXwdLnEw4r32a%Zv4Kyw3U+5hR0ofM`jFP*OPj&y7X6Wc4 z)NwKW`X6@?8`J?rS|?H5{2}7k>|&jUv;zuK?Dw zT>^lzwW#WSOd0Ah2khad*xSxmhk$hVrco%re%95W?uNQ2D+aZEl7E_*77aXy3fv3< zy;?*Y4Adl4p`!Px{URG&LvLO`=Y_Q$UTp$_dyQkj9H8hOpn|9Ni=9@PsUU$cww;R5 zR-VOhn&40_4WeiR@WZu!YXm}Y74oDLbo@qPpR0jL7#~VXaf86oD&~Ob@{Av#irAw{ zx;6j@QFzCN5fHB(0+3MCJ3u~=j0DAbhe{8y6X96DLZvj1Q@M>w4gob-=co8jT7K0(psVB2UHlCg}7AC@l;a#jL>FflJmX^0H0r+bjK2l16gRGp;W zd)Mb-c(&;4=z2P1$*=0wMUsM;)~je`YnS@do%-bIG_Lxv*~k9+?_+8--2BYz9m`%F z6lFXWIC8XI0JRiTX#lZ(2%yW{@)@0Xk*1(rRJsBQi(UZ22f!+ZkPok+JkEd$iA~&F z@o|FH4j}$Ay8{T4Lx7RlOj*kjlu^d$*=0C33T1K()X-!d`sN)RbQAEy0|0^a^Fw>3 zOW^wue+hUm?0u+POS=CuiebC`1OAd34ysjBQT3IRH=Ob*7#XNyG%xk3^QH4X{uE%# zn(Ga)j+b_t_uGbmG=`<$dMG^t6CTE!9&y8TU;vPgNz#=^PJq13QxVR zc$@;m^?l7{QPHsaX=Bjn#>MqyOpYJ5(McuevA|84?>HozF4!ywQWd)U_1&kmdM7NW z%ieX*A+PCF?17Avq1cR*Jb!hj-cvwuX_|BfPRCJkD+WrZT^EZyc$*^@Jl z0cVRQJ4WKKlsc^!kwES&>RPs2pe0NRt^SYloUVcd~ zQf}P&zW^=P9@`QquiDkO-4+;*6El=;kqft8b*Svb%>QxZw;Y7^$r3Y~)A04UdfVyC zLSPu@^~CZ=m!pJ~As_^A0AKc+sPu|`XY|`S+E>3C=z@tN$~Yw%x}Ui|s_350yQ(G| zKFb6$LF(h)UF6x*zJ*%DpR8n2_Mq}WA`^p`RviHGYv`?>y;jbVDIF(@&;HC$Y4fXg z`t+1?#ickt0KD;6kV?;MUQf`&kNgU^qlhj}=!v3;`*_yFlW_?C)<>$!xlL^kbQaeL zs#)n&l4&419p!VbzvQ*z1o$>2o=%@)WS}%n=@_{ga%7AB3Bj&B)hvKfzi+u!lIrLE zz?vX~YgVa!SLO0yCMgNg+t%I*rh8?c)nplA3SVVD6-Ih zR#Cj}CbmX7iX!rvblI=;b*c-1e62Se3t;RUPcA4O8nSD`w(3!^{1jkvfzbOC`=;B@ z;%-i;2$!FLHa7uhn6ZO`*uAa7Ohf2|SmCBkQFcJwf}n8|oguR3ra+9Wm|6ApX2Oly zNDylE=Bxncv8nF%+k(BAq9ieX>oOr2^vz1x7d!}6_2869h=0yCipn#tohB@BMEvN4 z+I;U(UUr(!RwhvOsw_y5&J*m0;I$tXR!nwsi?YH3^`BU8mR_|Z${pj2e;7Ec`4?O& zz!2(93$7`orPfW*=+@K8!i0Ag$sP&O=L@2aH4(>)ycMUe_PMy@{7)xqr0f+>Xjwp; zQGD9`u+WIK`#0gA%%xB(hmr}Jx5&$nlpHcZAOJNk8!*UNaaCl6LNtx#L8~O0&rI*H zg?4^Fzdr95H$0spCb`oF1haTEFXuO*6xv`{%>6L2lWbG$h<+U*KqQEy|DI&}@OAXz z8h>|$a-u^g_?h08K+1%A9dR6#$4B zq>PJ)7@U}*hw^?G*ibeD4SF1G+?SZYP>5PnI^nl7;obyd=f(%5TD(NGlHll z@w~u|$aFF$@QFPdR0nP4*o^j4rX20|L0*EPUVcDSA3sy7fi2QCurU7$LBIJO<&m&*G@vI;1<*%i4%{;Y2&VEu zVyA48ZU|qHTn6;jlWX8OsU@A~lXgrVR^hkKHUwmEXd>zHKi{4diZ3Lc7QG0r@lnow z$^-)NmoK_vZ*u)U_hx5A&Pt|kTf!^+-Ho0{I&KDCu?E1{y0V2PB?9C8TZgwskhZ%< ztJV+Pr|R#4uRRt@`s1lZZv-5vN)2npX8XJi2eU_PZAH=^z;oJGx6WFF&2Su6iKZA- z5IJ%7sNK(Ks)R_9kLv*7y7Q;Qk;UI(jO-^^`MA<0@Fb2iYY|v_9*>Yj5aN?5;U!*VJDTmNMM03WGg#yxUi{7QrRLXn58Hdo)5b=dD3VUJ_I)AnV{tD5Ir4~!7gq?J#+h+c4h4HJ-ldV4%ce8LtSEam~s{|WZH;uu&U#U=mQiHx_n z{-99O93kVvUD*ep=}(F_fu#qz>K%ff9d`avrlNyHsWmNHB%-niWUw?IHZ>%uD;n&R z-%W|ncJ03LMgIBk?jG~2SsIt5c0eb3_UhwtnD!&d#DnZMWT@+>%Ayz2!n+W0Thff^ z>sQJnjUGUR6R$qxo8M`5=JQ>|x5QSvh8Gz5mg1K)y$_0~Q!C4;frPDtRW7S$4+dyW zh%4*?slF-@oSF$fVlAxmFzAl$H^Gy3+cXg8VDvltX%^jOl-y8 zt&yHc%}FHdW1MCW_Dr#R{?q(hAtNhy)Cn zYuyn(Yvk*I!K>RG7K!=S`kUU|e*_#Sw8JclG%eG=4+$NN*qqPE9dSu$?qonoNXW!^ zlU%y#&K_n+>Z0$L)&+L_$%hHhZw;(bc&qw&BZapVJ9$bk4EA89=V9?|hK^4x z6}`l*+GDhgHuYW>YvSXwDW)OAPC?0^ZvL8gBRi=Sr^; z-JQJH@!Bl8F$y`>ys0&apYyh%C>EO9mDcR9M_+`{N-z6lJY$yB(QERk>8{Q|l(nsD z3NOmH8}KWym2ZNVW>Yzz{N|Acd22aCJz!e%Ra>Ot$q>uoOZZCOwSGlf*s$=$?Edp; zt+bNOJlo)H9pRrAa4zSukg(I*R%(vFci%{oa4f9=zL|fHlexskPlyf4Yytma0`y|a zaCBUnzGvuK#)MkAqqnCdq-38-h{%#KxXrgPF<-27#wEkob5*7U9%d#ct&vyn?w)cH zmi}H2K#QwUsW@`P2u@DIZZ~2BMf5u z34COXz1DY|{nGaBi&@+27p7SvmF1h&{x23Ns4DQv2&NVt+F#B|icXEWb)9;@z$cKt zsFAAAtUbd+>a{zb8TA)SiPEl@iXXm(s}Q;0{8n8RDxlQo!Ok_(0Ctt|@MrjZ?16MD<8i zIX*G`2DuyYH8oOF^Q=#A?U(N&j+HpNN2I!sklme8+w|a+5WWc-%mBvT(!=JZ&-}*5 zbl+1+gMy6OPxooW)o-<>raCxGR&fOO5yGlBcmjBDwv9bkU5#G49z2;v%yZzvfK+Y#EZ8i261dD zhdcAOvSv))_OCT>ET}xN4Xt;)^qp#^Zoh1%fh{cFv}?ER*|wOlKQ<73C#&nF>jT~e zQpm2?sp#)~Qr%fG>1H&`GZq?;k)wGBc6;?`pKt<(xA-D^a>SI93$e0t?2z6={IP(Is1-I?m- zzOKhwQ(eE!kgB(DRTZtHJKQi8Ue%V)QGlK54`q9^fTJsIY3uABa$bOd(~5mq`ybz- zWMQEg=9|X>WiPHAWao>^tCqLInG^MsY!9TTCS+9c%1uUJlR0UueHvNjBu$r)`FW)I zF{rmF9d=judB3!uS=aenM{}CNKt~2B&zlse&B3n4UPK(T28I;BKl&Y2gvh(Hpwb$U z^ivJ1J_>ANRsW;d*GmU47h*lO2)H>ZZ4J#L9F0qd$^<72&t2KApX@DTr1fW1rWVi% z+%g|~b9)UT``6c*{!y9HQsfbax_nsxo1c98x_T);gUL@;+1{GQvJ1w zhZdr_dnfp>61J6nK`HkPUawEkS`c_AC3Q{V&-S-gsK}v4%mN9{!`c^94c%RbT6dgj z->MqoR)-e&YS9}CtuBuamS%78%z8Ex5T&m_4LCD*FY4qqTrv}ZeVYdDI-a?oWu3mH zH=q2Bfqlj%NkLOoBUOQ=LuMVI0VW&%d>9~Z_Ra@MOhC0wSX($0!Gl>4`lR3pdsWIc-K8XmjF{tXrFoF@EnFVVYSeEv6ONlPPnmR!$ zLKXgq(m}GaJ*$5C}(SpDwi%G)Xmw0>f&#;%@UHIkJQfIZfyGPZHWH9?Q@1a z9}dtsp6wLO_P-wXJ(JdeAZ||)3bg!>rvlRJ`%(+I_5gRL?#&9W_Z7zWyr$`5hOlk; zdim`3PrJWP&gYatEW5t&0<#VPOm!JwNP%GbH5a%}d$U3d4KDc*;lX)_*Jx>ZFsfDC zNy8Q0!>kw`6P+)T`lzfVq}8zh#SeQp#DAL1s`(km4{pTZTo$HA2u~VU`Fj0hMPJc- z)<02rlA&6E+4dS=dwzMC2UspNymRn9b_PUmF4vw+In+fN#!Y5?{M*@|a*`Wf;A;G= zq{24;rkxY5YUyH|#j{m~1MKocH3OoJJBp-d^7UH5Q)_rzha}mjvt=Ms!su_>(BVuY znn@4kn|5gw=gPvq1Q%Cfg4HG zf!3||3#B|Z`9#=Ptfz1`f-`(G%tZxh#{Qy^`b@PQ@ABCR=A$O>s(w2>Y|4%K=CB z6GnntrSh+tb=ro8#x33kAWh4 z0?}?X%8#8=9fo21O6gHj?V6xeWM)13KK(VV85m<%zU&4-0qYD$dR$2cY!e`JPfOQn zPjp~BF!nNiGu!rYT6QnT!wdf)xrcnKnlbMJ&KLqwakUq#HGGiG_vX2`XUA3#jcA!Q ztu-7S-O9`Enw{aT=4LH=H5E)Y*$TsO5ek3KBr-7_ai>`>)dw$!HAq6(_-#V&^9%1C zW>9#enHs|j)E)IR&>Ee|G#kgrzBI5zXke*e*40=}AVRg>XG+Ji z;A2Nk*fjQYvw35#G{ikqVCt5-)E^PLuH!u^8FTcL`SZ8IZa#il^sn!vRLgp6z4ERR zeXO6kp>jS)RqfhhtDhL{oqKjk^O(h$YTIu5H7Is>c^$2r-W~gwnj6bM6F*dIUbf3r z#T$(#<{_8ua`;7L#l8a;(-PY^BbLk&f34C6nF>^L5~q`CR^kk};4 zMTWhupflQXpXZ40l9$j)f$2FRvMtipca5dgBXjB)6k6%Ie~Yyq#Hi3 z7P0S_Y%{=L5XslO%m=M%hu&0NI#(Ga+m$-okms#T*faJE$~Iw!;yQPE*xOo9`AomG zBQaV4ax51Lk01yQ%(?htYNLzGdxz`H0&Pd7h!T6f=!%O^%#(b(eWiz>$U)x^ge7g5 z)4ZU|N+O%t+1i3ayVakCe(Z@ifJts^xMuuVO}L`K5z9J+X+{ z&+v6*uNs1{Em`VSkv&9kkN$Ca#!^QXDpI90?coyON4g1+l+T?g3 z?L4B{Hp`5RkCohMlfR<(2v>D;4LHHi0*pAc@Nv`ZVk4^Ly4^j)57K6ky-dn>$15D#it6VCa(wE12Tyxrz zahbi7j&eDyR71MD^8AV}irDlQ?a>y=_Zpq`HDGb8ewg_jCqt#78hp=rFnCM=n+8e9T&9o* zA#2LK%;0^Ax%H@~`eg(bbjK$r4WqCM!|p`udQ|Vyt3!ZeN_A;Gv!7yqjq3HzL_Ic{ z2&3=4-7P9j0+{yd{l37@c3O4TPU_Jc zFau$iibv6s{eW~{Tn;Xw~iHflsvl8o=UPtlW)EnLl zu(DF~JTnOJ{rc1Pw#7lu^tY+_?6T)*4PFT@zG$&ijHi@~tFxKw1XstCS7en=weF0M ze&FyIolSPp4KGhE_YHlI8dL6CUYHQ<_j&V6whl2p4<)Oh- z=^;fT(pwzrH#2%+mbD+cgQH80%jGrM8CWA`?wll9beGDk zip}9P_^1iTR%#yiipp#>wED(WH@L92&f0UGp7UquUCAo3yQPSO@)wxYv%@4F?KoP} zis;sn-(32qF@bg9N1nM;cw$iQQAuRWPN}M(t>O54>`52P!ix6q%YB)Hc0 z!^{xN*0(=JM!MCKgs!&zddk6K?s_9n%GNKCK~!J_4;yw~ugHmY?Q7h_dj}UhzQyGM zX%Z% zUDj@`cMTPU3mJrX95~&J^f5ZIZ?=v0gP;0<9p@G*PF%f#VAyIz=~C0MU;(D=mz%74 z2+sHz0ix97B8~ZIjCSrWfj684`FT5XyZxMoVk;LhyPGy4t{}7rUkd%z2epXpu45oIoUUnNcHle*jK|k%R9geunf7Ob z_QjuhK}*PJ0z*gzbc#)YgOi^|&2#54X5>fqO@u4ntg?a4=+ZB9U(ux#%O6!9;>Yd2 zLEk1@;D-y2xZCce8fN!)e<7bN>5BJnktR*^)hG*_>dcMt<)~6euD-p5@QrUAsX2mr ze|}HWTexQ*)_go%Yf-bDlC`%-`Z+d}8>iN&exjoSq^#l4e>qJv3t4RL*(SB|EhX3x zo9*@v$!uf$?Amj|Y=6deSR2(;oNLR8pEP~DUTk>OFVzGg1-=jkDL?CT4?HdHi-<_{ z%Pj6)?XY{b26I$rTdJh8$FZB-QV0X*{2L9G{g&%G6H3#nf=1B5(*yyBqRi`|1v`K4 z;VK|7s`07gd-QREgch!g2$vh9(*)w-z)+WRa6K60FzRpsW(>jPx8mni1YEMQiybVN9IVyzOFsnRSnbueq#TX{+=qwJb z9YI-imxilDA}rAIi^YLS)-Fpb(me#()XBY}e9Y;^<>Z$3Esf_FE98em%aN<=X$`Cc zO7~r&Uqj1os&mM&k=j-dZ?+1*fs^;y`$~Y!P$=eT)`OEK|$6XS#3IN zOsXLUe$<7uh&2c?e5?|=|6+@m7;{F%73+yV}kfI>TF zKjoFY2Cc@6xf5per+(|XhT|k6&!@zl&nEFT>@7JV!{c2U{UL>}A(+>l#>%v#dktHj zxPt3vzoNtQ2)OYh-mRK|DGf1KGAh{!3>UKS@E}|h{gs?*W&+<~vC<(gL9qJ5)LA(( zc!l_u@capa%e>pbXfh%A8_NTgRSG*>Js36&_kt4xk?RA#2}|AnSXer&x+PQyWN=rG zYujYL_0Zq(G}yZTdO-+wOPzZKxA+t%Qp?zRpA_79W2@~>=khF;+g2O&(8$>`A!X@86+g=Z(|NeCOcDHOZF)@{-L&i+-~A zA$O%kG7URhJ8SEx=lfBT*J**=70q)aEHeHEOR~!gY>4|FJv1M`>j!=3_d;r9ZPksi zy!a$RTKj@)(t&QsRa8}zwnA)3_@d`vNDUwFe2lr54zduN=pNJ9nv9y+V+w=MTNlRSUiQA4y4B&T0~HhB7wQ-|+o zN9u1gi5~}u+aK9M43EdnzLR}fvlAy$ZzQk(fUW9BKE&IQOc`ey80og~9e{g5B=TFd zuHJB5mTOCb-@hl1TPbhB#c`kJ2p0rPvy;#C;N#-pWE4@*0d=U>`8#zAYiaaE!-wMx zgyeR_p1;fw6pS?;K|zT@Cnfaodb$je{0hIN+ncl3;=q>j88Y@Hn%3o`<<;+Pc-Tj= zV$~L47x#P>t*wB^bXiJ&w7;K0ZOY?G(aMGwNUz;;nNTfVcxt&S{Z1ZrgpKqgbY~Fw z&L?|*fm__!JX<*U1}?x5dUbD!jK|}|D7d8M-0JIn{J{(Ps7)t_t9cfk$y-dA$^9WPq(&TaKMQ zY!Aa+?;Z`LHk!XDo93E?73`XBQeZSm_Z%ce0ij2JIG*7BaS@8{Jma_}B!1#PcMrx0 z8g=jH)oRxa(9qj)9p(y8<3Og=xt6(DYyY6u3-PE)cUsu?(OFyfbs-srDPg%>yEu+Q zAg%>4q9M#jW=x*XH(T8x1A7L;mhCw45ImeUxel*xQSD5gJvy|e)5iLguHO_q3ATsl z@$4+9MC?D09|S?x^lDrg5qHIK1<}xQ!>cyTnrNhAgLbUrg7DB&4&S2Z!e-f9MQD30 zJGgZ5_{c5BA0|2(e;M{N!zCH~U{ga`#)C^favfZQqbg#CaiIxwLrW0idWBaP{s6Nr zxP|=6(R)x&alxL^Y9O`aS8C?~w#5g! zLPkv_7g(FNRFU$JOl#uX6sck=Iz92AgWDhaqt0t@;jS2wP$-H1ZbW9Mk8i z4sdtLuw(<2A-p5g^+uG*|`=GWC*(?%M^4lWCX6jM@aUzNMx|AJ8ql--NFVC1= z6f6Q`&`Qoq4;X?fjr@0akp#{Q7exkB@xP^hboL1r8xcOo$sHz<6pUz*)TMK!AL_7_GPVlL%B`bLW-Rf>Ekp!WgEAhw|)2?8_HDyD;iL{@gUbH^`>a< z^ICqpKLO$DVL1~%TlqU`3ka{pGN@!-uv#$wK2<17NP~|m7ZjUV1eYuc>?=#wSwx|d zq9oF{pc8WUi=Q_;*Q^Ljc~C!=b64P~afy*J2KT8A=dvj-_szXN`ZYb#*+a4ruyd%W zq&&ILRFFv#7(TST9#2modEsngC7i+a2~QQz^s6LaNWxvVcE0Mb9k@siyR4`F8IHvMX2?4cG!r4G~&=iFwVWG`aN!LDm)P z5$n;cjH7wPh0SD4SXEQbXVaWZg4Z(^I&M-%LV|7RHJPPs4|BX{-}{>xgXqz0kXKG7 zE9GJEIqUM6$^@Ui@&QRrvcE=e$Tw$jz)9rkWIgK_`GV>Aq+bKIH##9p$S=n#Eryb_ zWJxNgM~Uq%UT9k|IP6i4T`5Cl&57P-QyVljEPJ(Eei~Nus1C_E@_*QS3$H5EFYa3r z329J3Qb14<>E_U-($Zbh(t zFmlda>}&7uwZETDA!N|_Hq@p}lxWRNyDq+4G0wWj1U|@sI!Gl|xEfgq+Zn7ls4K&; zbbWfc{(v7L)`4v`v1{{OUVCLi#f#mhKHHIJy85yCMSuBFd9xpOmW-Lig?2SbM{0(v z`8Q=vmRGrJrpPOSX3?T1npne=J52gdEaqhp5XKXfQ!ZyuQ{xW;Dw1HR@2bDOo8>#} zQf?@T<5!XLoo(14;!*8lA(I^ZG8*#6x?ZVPY@~R=Vetd&KaG$0bU%ZN-rZGnu68V@ zw=1ZrefE^sJbe9Ik|=R^g0g(^7TqeZ$R${?9npK!d;D`fjCFTJZJ@r>!;oD2&h5E)alx7UZL>tnPle@tDq*Kk*;P1(a3CSJcX77>)e&7tUl;>~=z&?=tQjAivMl3=wEi;wmw#T^jMGZS6 ze^;eB#=55^TiR!FR|thTyLW1zVE@V+-M5;%oFLIq2anVL^-#BnW=_$_lLw!wp8HW` z=8tnSFr`KBy5&qOp{rbUT$$rkXfn9= zpQK`OD zycmYZteWP`ou^GP$V_Zh=NBm6%iYz)+kb*SOG8ocemO0D8q3bg)^|u0_h1yh zpCcc$InY<0x)4X~$=)o^*y?LBa*}SH46tR7lKT@ySZO80{amgS%1KNqs3) zM%4FM!{6%GBrr3b`qLwxy+M}kSDu*T3jBMmswa1c z#}!D6`|+z{x>`|24jbB9hKt9qsb4qRWLg}P_c~lu6g$RE3ka>a(-%XbGAgs*GBn8V zI8;$!5_~|cE?;1(O}4Si)&Li}isEH$8{ndmGS9de92w-<-1pNGBpK*Lc{Z;qAu@A+ z({99q0%3PO*F&~-Lfi^-Rk@b{p`2N@X^c%b?c7Yw%O%E2LpeR$ugsfg-KIcYlR z&Da>2=6lLF#aUo^nqaG@#l~sry3g-gn22Ir%jr$E^#ew>7L(?FR)wSzCgEIVk!3l7 zCS1KQ>MB2eP*<+?$%F$egIjSo#+%g)MfMKEN7WL4w($SSh(KOMSA&@0gB-D}&&vFk zumeAr2AlElrtclEh&K^F{%x^fgWiS?>xqe?;5&cevU^R~p8iZh0%YP9aDmwX#zMi9 z01PFh`Mb2U}Sx=nFq_*+%^8(;Up$!^Fc~ACM8ttA>tHe&G4|@6JL(H3082ab0TDq@-Ea$IL_!tpV+PC$f2k+P$hHQSQ&|*9yZ_~0LMe2L1f&@GxsNk6O|P=BugVwT;+0ncuuZh z|2h5g+hc6|ee;W&cjQ`hZ|@jx2?SAgaTB1r?NJ4-E}T9)Ko4(Zm1Jw{x{9#osV}~? zkGH0G(obw#Ezf0!<5Ce;_$aSLIpKtqkDV{dFb;|J3MV8fYEU-J86}<`-RfGZqaMX6 z&Fd5WN^HVQKf*O1wqbJTBZ_$efw`{2SyhHHvgM0bVP_o~hu7wLBf17~buPZ6>OQt@ zz^-w=!!hyC!t?6|z8u1USd!kk(siHasl)er`*^s7G9m=+S{Udw?ZhpO#IN*UouPQ+ z`_jy{j?qj6X} z9);hVe*QMr-K7Vzx^117mHDq}Tlz(aPdF6%%CT9`~Vvyt3^P&MIm~Crmu-_oS=V^?; zU2Ve?pAGi)slb)F=ce-=A7ft~A^eh7p|{IFB1tMB5|L!$3{{~^Bu(Km#?SI(W2PL8 z@{vSg1DWaq;a3@8;(Z~0b#x1n%MJz_p<^IQ3iYkw)7=N4F|!&|4&RP%uanA8lt^-4 z>L5#ypQc2|cDIcn5}x)+kz}c(j`;=q=Yp#VO8H>r3ALEvw$C3jDT*Z%X%1J!Eg-tb_5(ii|%&d3OMIV4w+*j&pkth$R{kWTX8oUs);N|{)?%83pQwBh|QeA<}?nCwbLN$gFWUae*}L z%WAdy52755rtf zKRj}{RF0%|DBH+EX9L?QaYW-6FPz5Jv_BTO?hQs-<(uDYG(8@1ak73v<2r2pedi1` zKReF})ZKSFxV2u0zEuG_PBk2KlqqH9GU;P`Ln84`Bj(jj49aRk^l`S%f}SDJ3tw@$&vi2+;w_`zv~I8x;-Aqh4p?6@m9 zlg}>_RTpri&HjKfa)F>-G>~ z38t@ion*QBb(a*C&4#rsy&9fP|KJn`J6usJ2I9c}Y4|jL2{VA70f5DV?PcU<_61 z-)H`@_#l*4Y4Es$X(!-@=ha5#d5(40w@-#s+LRad@8L)iCLb)$N_n}U zlcIn#qR}C0-oTloQ`vDTe@2NZiMUdEW~=Rsbvb{h#N7bOVQ0z`Afb)+q*mBEJ5MQ1 zNX_7q@TBz1ZMRKz68{7>T zFka)Xh}_}$ZXI#*6pXBV5gYXS)!{$N%`g4N`x@|cea8~g!MQIWS=9Ufps-zCAQ~mE z?xTaykX?^hSE{u2Vzo#Tk<6SoiUDbDG>Z|w4DA3LDqr2VMT7iDo*|DcyG&h6{;lKx zxkUY_;K$j#qf>*BFqq*N$_;xF%xsENF6{$&p`)S>r<+Fn zJR_7dd+(LwE7~Wz1JO|4{=|6vv7Y`4s;Q8-g*&ws#lz%T(z{3U$u@{df*GngXgDUY z`ivSENuw5v`)>2cL7AMxPsA^OSqT2zFmP~dB07LGA3aF@|MJnTN%JXWN>RGW;he;g?{1w{v(dvdAm{k-WT8B-#jM1F3+}IwGgrl@K}}r zXG0#r!Fi}BT(@VhX!#y82|0^Ko5fbb)H>bs%ZE+bC#_nl4~N_#<7~Rt%uBto)a|p|Oy$tOwYo_A;Kd?{f>(0I!#YaMW%zlYYBKzyA}6{9p_CjcjIs zkXePQfS46)*-%|)_ucbqU1UG|L>tT{?TI!@7{hM!mq(20>yUq-oK7l8%`csRqd zm|lecy2)QeoAi#M31v9SD56w1Kleeca3x7s#t0Fw{n>1nzdoWI6eBigRsQ~+a+I!O zRL|D@2+KMU`Lfqmb8^pzny4Y z(Spgt3S4jcU(TM%IK9XYdlUrP@+JEAo>n3);l6=T0tu28aN0A#8&qvghpax;;6ld$ z;$_kp@Ea0Mt0Qb@L5o`tKyoU;4@01ZDzq(V9vZHI{DdGAhQ=3 z3N3dtOh=ylZp;3CbNQj0+Zg=f^RJuhBiS@qOdUyb^6A;zY|5|q+Lp#%I>oP9fh#^! zl=YdVGe#NmU#{#~mGtaa8}V+ait5w=m)X0K4{Ujo)>M-_os>?|v_@03@(bf00*bsJ z$0sgm#85?Y?280og-<5L_3ycwDV2MbXZTwvzM`yoMD-yDX>Ht)HoYoi!)~D1kRX(i zGCZkZIF7lek5yz^fBi5#6J{{@=o8z_e+o`XG6bs7iU%@W@*jT(9~EOnNw!=BiAEu8 z$p&DjJeruY<*}rgmiB&-AnSP*AaPiJ1Lxg{+#P!dntT9rHK4H5lJ|7w0l>r}{{cR? zvYGE;D`3WC{k)F|I^{c6^}ug!&L(-ytfFQPI79x@Lh-&T^<}0ph|CB8{X(4AW?)Wd zCNcCH#j%wEfvE5aWu#rLWGR%+zavoMh(9O)7au^u=m?gDm^$;YkI!qBYyPkReyvK9 zwg|A0Jh+HU@sF@<(~KS7AJ(D7_$jmqWG}pl&>~0H9Nd91=pBJvu<-teh< z4(&9s-ajl8NVzL#x?O){AsKmF67BpmL4)kH>@hHvHN5Ih{CzEdhWTtkV4WT`&J1V% zWeknMWfTp?Zcz_d)uXW85GdyjIA8wq5+er$qk=IVFO05J3GdWh^tvz!k9LXS z-NYB|l(Jk2-`H%8lWhVED(lltV_K_fqUsJ(Arj?0*D!uIL?>U4ORhZ1W}zq~&Eq#v z)47wmS!y3qvRCjMne=PbiBdznJX}xAR$LBe|GkW5U|iRF4w^~LRSBnJH-I4^ke>E= zQ}vuLaSY_zl$?W`cj+?7q&eOcMucwkb3U`YVlmZ~=VRetZhx+@Vtqk2ocj@T*PoL* z*q-r8e~kLp&Dr|$zT40AGs!+4cqZl1wI=0?&pzX@5ZqnH z`#J29`|vDf)h-EM-G}#`qEQQv3~*ix-mTvay=LHX^0=TXWwE37xkliaM4yx9f3gYr zKq!>`b-edNj$iRYP-U0Q2P_gBL-K2YU=f;gEmf zZr{U{aFf8jIkx33=km>ILY2(hTEK7K@`V#03*nB^a9j;ozG9*9ohFPJCe3Sq-1M)j z9o+q>eMEfc^@3X7Jv%PpwuXQC8%;sU*K@8L{)UpJNX;^-U%Jk1(g#dfBn(V4uN+PF z=$|H5*_>u)vd3aNj(;^{G}r_X2EARvoDJ#&iSCItIyE-{;=Ns%=(fB3hUY`4YuOVz zU_hN(aHPTssd3zS#ck)m2Dt8f#^PxSCFJ6v4hL#A%DO445tBzzp0$Ym) z$A+Amy_{S&v%*Tj8CFAW+kOaT)^95qg{(o}Jf8Q6y!{<4ONJ4FiU;j=}{yq!9KfwC$+x`17 zbPCWFp}l-b_E%v3&vAOty8aJ;;-CN2Nd}mRa@pMn@V}4e@7E{_Yd8Kq&;PtH0$K$4 zt@C-uAN}_o`ujNP?jrv4v!VBQR`{=~tAPiFteQ&w_vz_;#8Y`y+!h1S+zqNOyT??L zdl}Dn!T(ePypM97MWf#*s(^rW&`n?a>Vo4Z3=Mij4N$PNTyUZH(V>O1{0Ozj2ESky zDmsYhn?_%wiktQ%#Qr$|=ta>(JpaCxl*!X<=YOx@-$yKo0AVo%snSsX^K<{4H}nPq z}*8d-uJM1mECeOa1Jo-DH{&{-AC((6*6MNE?pIGyMzi3VO?*UK=F00VHe?IfS zF9MlCZWCy;k@@5QeuMyA2i9c7;P;e&pVz;yn^GWv%m04~{<;KB;WRq{C6*4RfLw8> zZxj{X3Y{Q*Gub~0F!vZC|5<3zBAY&)^=h6@CEzU{Ybd{4fJ^be_{Hz?)4*CFRQI`Sgcxkxh z)uAOs?BM#g8}KVQ{(5d0nZN@lg+7u-^ebXwpum8Qz6VldmqD38SMCT>t_hMilh(Xu z?Px0iz-$}>dcaB&RUo2nP_DoMR9bNX-8L4QqDqla-U6s0V|DxK4CVl5qRiS_EcytV ze&f@9&u&^T@JS2=lmmr>I{0hV89xgc2qF%6HXf0j|30&f9?)^!o4o&%NlC$2j}iwc zy*-eZXg+%|e+*PVGcGGUGiw%Pl~)YF3bGtg=wiU)e7I={>cv+OgU}G(!(mAV%-QpD zZFs9$sUfslidUzFS2a%^U;IRMTt_Bh{2CKE1^^3kB6WZmvfD!w`--_P^nE2*m^oxz z=J8^o)VK$#dPa&{aNtyb2?;tLP;eBmeo*==AZAO>f?C_O;dH2weH$Daxm+;3m!}Y5 z9o*plTMNY=vwILr&0oGX!u{&V-SVgB?r~wAO|-Oe&A9V4JYm^+=1dEo&fuE8>D(os zu;-sg?l9{?sl(N)P`Qg)*Xcm>%o)sCh*#S9zU*oLiDr*~5DpRm^xlmd? zjW_N`R}WxwsG>!=6PAFPq03MTE=IoN)P|Pwn+QvUL@UUx%~l6=hvGf=LVjr4akrXc zE=a}vr>%y|UWjYG0aMSr{H>jr!p#4@BSl$wos?^VPFPPbel0{ulmf3QgyMidTy)Wd z{543fKW%|BDG{21kWruO{~W4i;ZYs1jFY~r^S z&jovTIOBdrXRnQ3F#(uEfk&e(i6>tTYqu)Q zroml}5YGQ#2apdOAVZedHzl>CktdJ1`Yyqc|0U8=2)i&75bz2IGuvGca=w3Osy&m9DO{b?~N=W9?`bex&vf4`6F)VKETux^3XOszWXq&0%Q@ z4NZusI>5rp1LuDA(5@xeh`85}+|9ujl;uOlC%>epU&%h94_F@Lt{MDfqJf}%Zzs=) zH`jq~7rO*Wf#)2QD;AQ?3#4UWtqXtj((VdOK9EI3n-&I?88w{u>wE~lZM|DmKj^^k zgWZS*$Vlh!ST7kcIFD(Zt@GE}hmhlX`9EpRBI*Tz{bc~PHghQiuoBU8s2&fTHR!q* zntMtkF#oCK_;?DlwX&wLy>LR30RkLpwsNBT8;ay#UCdmWOLCMsz;Jpf;oc3>;~>gwNM#nGZ-S~j|s~Ycd%p$=gVmJNpML8H7sb{%y%ve8nc_e0{H*0T+G8O=1Pp(Uv)3DMzw&Gc)pjo=OW!dZ%E_4G&M zi9er7Mnz~HqkR%#^Gi(!d5#F_JT}t;7%(}hF)a-tbl%PFlx6bfqcClG?){+P!{M$o z{{dt@vT5_(10b-L=MgOR*j#)DV=pv=u)sbbvH2i_nq$}uM2n$B3}`iW1h7v<#5)P{ zi1-87P(?BtaP$CB{4%$$zrZr(#wH^v7Wo?7(+P0PwKG;7OUbmR4Ij=7$ne*nv~x7{ z?>wYBRf*H60tHZDr?9v4PfaUsbt|ANAinZp0~n7%o^*eKKy(a}&?0RTK|vx48}J5|t@>Jld15B1D10Nw=(c$tk zz-K*TaGc#8<25YsKLM~`&`){|7>{a;#Diz{W4*mGglTX%U z+|>{t3ZV<;5c`V_%i}sQqoSiGC?_~sf^qIWV6jrJI69Tjyxiq8mC@X|Q&}%{nvwqm zsDEv-9jxV$Rs(8tyDrZSCNE9D*W1Ns=SaRKU3uA=P{~8dESq%-)WU ztk$&BaO`KL*}3$D@eWqOgjY~taHh}V|F9%I4g!^YWD|tla=15#ky^m8HG7kk5An?2 z%A9)dO(uEe0>tD6#F;w?s`p)U$`rcp{#@~jzM-n<`;WHDFM~lQj}inRDU*1hN>ZEZ zn}*|3MCij6P_j?JfV9OxCN}IvDZQJ)TrabOR73k3Hb0w;Vb^Re&+iZOdZz#jmmE^p z^|{kk^I~hkUoqo5j#9WIm|VXVaUd{}Rv5A+FbYYKu>gigAnIS5#k1SxB#lTy5+LiH z0H|g;F1bKq(Ug8A^+wK;@{?T!zDQAllKQLGE+@sV=i&DiP7+5*3K^&M>$3e->V^jU zU-x|&w-X$sa)i!`6yXO|!Gk&jUIAl2NURcF<%p;v)liqB1}Vbk8Ygk?K8w~Cz-J-I^Vs~U>wLE6$gRKF(W2Bo& z1T#UZm109Wn6+NUY1k51GMyzq2<7`@Y%d^vq+)PPS~(C=Ca0TiV*3q>XMI*KWL+_u z0Kf6ehCubEO%Pd^Kw;taG5WxLyevoU?qOx5dr-mnvbF{V?ZxI=gNZEh-fcX8H$K=n zopd2)#v#r(hk+9)@c`P+D|zq78#cdUf-$1T8QD=)$3aj1Uy8%ed|DD2 zAvDg9k<>JT8wwv#1VO}^r50r@ZaUfk(3N>9;V2+`)-Ug!uNiK0S{6|;t7d+w5d&w& zJ@v?XO23VQJ9=+-1_U|Yk-HQcj(D>_YPYq9r75#^c5oc-sZQ3D=D8|XI-W|OXD3K> z4JBxOc79gfL4=~i;P^%2U6N4^g~yLXV8-m8Uuosq&_;y@-<&L`zqGcoq{}0>#LsK2 zO}Md?gnFt^WW3QxQw|pB z4@*29%zP)HG$Kgpt)dW#ZIGV}EphivVxrePT506Jt*a?@S$>dj1-XJnHb0}SH zUtKgV1Ge6(Mv7_xqlY_+!LS`p_(EJV2gfC7XQaEzMaIenks|K|N(S}}8;LDJyGrz= z+u2q(@vYnug*Ww49|bOd-@u=z5AzhrIOauo#{TD9PF2Y`e|_#n zFfT_7*5VmBx zin^sR3+a&1^sua z#eP?%Uqzc@WJMz6Wq83Frq{eH=vn>_0uau}-{;%aD_e7A(?l!7itK&G{7^x8#1qH zc)C#BL8k8gc&SVYA7>lXH#hH|^YTSLL903U)+>#h3liXN)$#QPD- z1rv63KZniZ3t~B6-2Vl(`>oHs1_ig6Q8?kRJT&m(bu9rXxhCFV+ZD_4Fx~^>rt-(! zuPy?uwxc z4xVL0)?rfY(YYa0%!^llYc7p=$7h{8+Y@_#G%Fz;|7(3I+?oYwtwL)DTQ*y+b=fs! zir#lU1KCn~VeqfG@o)RL&84>XYZ?O#VQ&ES)%%_!#z*p9gXM3;hc4sI3jA6MTRJ$0 zHQ3J1&KFWm6fqdgJyH#O_Yh9L$~1MV-x0s%%|3u6eoG{~W?H4u;S|NA=!wo@VC>ev z^#L}*1yH%x`)Hj1h&LK2J7i7+vC|6EF)JK$3t*-S-L%NUM?u^_+*T7IomIBG?#}Y< ztl2U-I6$@G1lfvL>GQ9@&o}A;LPj?&`pQ&W5kpj|F4^+0vm@Fj)P&F-dhd-NE zoXY-)7isq5S0ZhUM;LSLw(`x%2dk_Sf(tjLK#G1!e{c3b8(Bpl{IE`+9zm2!Xt(r4 zcBl%SolOf`(Z_absE>CihJ);f=N0%)M-gMBk z@V6+ha|^fV(+8Q)i!?gB$0wRsrZyvt=|2U;XEL*Iu&xdY$)oqvC9i|Z3BY6#b5NUO zM1ECKzc1F$#~q2HXfcSoarE4}c*9rA{A{as^-UB!5hUfFLzaP%OUk6ZtPtdEP8T$L1f4{yCiLclSDgWE3@Mq2Y|3K2!`Eq^X zUkGi}ZR#C>`e%ojqAdFDK@dJRHl_S&v9QiL3fLWUHz9LcO}62q1M{}H7}~MSU;Me4 zjx^v{6Z)5$ejVSM^lYK~g_$iVw^@NMvu&k_%KJFK>;(j_Van6 z*=Ruo-5$sZ(!1t?R`r$=+FZb}c7*0S2yk8U#)6&yT!`_iIIaT(m$S2woBJC;$TBE} z_U*yn8bj!^o-VBh-twP0X%AEY<$+)XPmm4ywe|l$XkEk{Fh8i0&=kt^1KL&%SPMYi z0j6tR9sAC8zmM_%iG77e0x*3)1Q+e2&)&}QC;%*q_v``f%n4`o5TMocIP<{%BwXIaHa430fCj0!3iJBK)V;>j=n?qYUFw6(I3!v;fT`g{)9gLnRv=FuD4{ zvf*TT8Pdf{!IoFZv!oiZPCX=9?u&frlKvF0LBsO_*H+oQONbhJx@(g z9tQ)DOUx|MMvXXQ!Yza$V2b?a0tQ8zLM9Rv1=n$|pZx=XBMWyMA!qe#{j+=UNb+qm zCuk6W^r@wy>voWo7qkj#Wsue#L(q8KW^g*`pd5zX9;OTGEn?{yaTG5nY>#z_NslxQ zG$n5BgoiEBGEG=6kXA#0#e^{Q6wLX(gbJk&sicqmUZZb5ALEXK3@R4Fm#PpFu^x=m zc(rd6gj%^YT}Nhxk`tnY7ifqo<<@;|_$Phk6p?yI1SMhUmM>c1SXe z>Z0NU7{;0SpGv2!X3zGbJ!Me|PcAB~UNq>r^E1ZjXdN zYM+5{&mR+JVqcX!E1h=Q=vhKtb~qS?wq|#|Ia3G=eVt%^$Yk^xdXGx8z1P+1dj>Tf z+iF4XOKeB2GMN1uu?nib@@~EykKo2xK=GVPqIbv&J#QPrv|FdTAxG9_1?KRD*FZbA zEe2~DBOC7W-DQF0HDqU_9r%_g<_yNj10j-IgVJmdBTus{vt`#)FYA2A2L>c7!y9U% zDaRR%dF*DJg%tYPGYl#Q*2w}(FXyVDsnkoH<}Y}cH!Ectx-!UjE!04z7WhWeJT#`@ zSY^+m-|h6R&4`=of^I?FdXUVP_|V3)#9!=KVlqF^GSXCc9H-(%YWZ%p0kTE)tLA-Q zVvC1l!FB85>NVqD0_lxex#y3mmT*JgM8ZFd&)CEr7EF}uHYQT@h%a2W>7-v8{7hOOa|?hKo+c6P#LOociz?*E)bl*~AdT zF=7pCd=U_{>FjXa)7GNKRU5w*oQA<$-)tqWQ@FYcMgwM3<%Ums-1p{hmh#cX>+SL! zXZv?oYRz;j8@aVy7t=}hY!ilUE16f_aw{+M8EF0B7`2Btu6ID}Z#tKKwyouw@AV09 z29#*#V>i6^2HpCDBd>m~nafbHwjewCV^u+-Y4X2cv$L+t$>e{xNBeAiBnG5Y589IS z?z;kw_z`6C= z@k9|_3(18e%Wo|>=+%LICY0u=Bz-)DM&(haMA7>*v_KQ-T)b5Vr6#U2U!WnQq~(CVI74S*&E2k-M?+#=j83Cxz8pA=U=7qud26-tXz|M;QIR8Y}HSt;-Q@V(%ev%3?A;x-lxiN?!9-+ zJ_?P4p$Ej~UutC?<6FG*$1Bt1&vf}cy0{9oMELDS_~V2Tb0X^&sj0QUN}W+UU<(X> z$Vv}2?Ivj0@oAxqD9J*z7I!v=gFK+hCA8fOd)`G!#(djFfdK(0@BBrT z>`}+#yD6Z3qQgx5;7!3BFSGYH>ydk(1sfrmAO={Evo(lOo}E%|a~XVW3+7c)Lz>nul3XVtEpI|0N{<}dsC`<)}QfxctqhNm}7D7w= zOQJue^k2BkUKebtBcO@})#S!Zmk=F558J-&(e7QRpeii49j`VWj+-Am9?%O9h1UrC z;!8fr8EX%lgW%^l)R4R$W59$GAix)7CB{DI_m)B`#jEKXl?W57nT{l`BjdfVO#T6~ zKZ)&-*J03Sbr%{^asrU=8i?3J0WMBAea}G8*ZMM8`!B9G>z()Q)HO#M6I-}!WZ$cc z%LA}Z1dA_baYL^O;W z*`3!S?mzj8BKVXG*%G;$oU_leVfjt{@KOB=%gDI1J42scFVo@W$J3${$srJl$2f~g)Eh&(TgK3Rf+wLK-AnuRv00#AxCgQRxy6H-SU zJUruJ4{nV4U}*c@jtE0S+m~+Wd|^Q1fSX#FiY)lI-|o2`!_2Cgg`Aj4PA3&j5|>D# zuID;Y>8fu2l}V@Kq|72O%>xkv1paZ^U)v}xV8xG72*!9U$ z5&nFQsNSrz^GCy@XRmgc`^0ZC1gG2q_-^=yC_aJySnHe;E`3>*?26t8b+amz6zjG& zBTOR6Nxhp(lsFA<=KMlc=#`e5nfdMCS;4L)zzdSZY@4ePV4b z1`mp-+!?>(o1FKP$ajIjh1^Tj>+e3nOGc&y>qsay2 z&|--b=A8MRIN|DQjlBIO`cZ!D@n7#2%BY z@p2$M#j!Q%6RSMz$E-0-R)Q%1t51wAnRQ4hjg2!|F&aax-m))qA^*|JrH1RhieR+i zuHuxj)|2wSq<*0VKmBEG?M2&FCXIJMMeUmodSd(!?U9<3dw5(XQ30YB19IU$;6J7P>h{JGB8!GXPHkR>s0YD9u|ms>EUj@TFt0ZWar!RGyIfy(^Y-f7ojQei zop122Joa+v{Q5-@?gtNa+D*afn#{iI<%`?H)eyLM_Gw$rRC>YG9NR|Z;ti8zZ5dQpHRh~Uo zmYCry`|}V%|9*UD79Wq^rn<<$51YVSBX8LU6(&V%&jTo5)-^uC6WS#n0_gOsRmWVR z%{T8bSZJE9bcm9|7gB-)U6BZawFD>!P;`Uqr(ha`C8b@>=2CfH@lw%&8FzwFEP{Cg z1z|RF1BYWwtbtifhlf!wE$CsZu0lsUauOgY7Qmp z*O{G<)ihm97u$Z=S5MLYA}q+(cljQVSi?qbLoPd+>f>PI<&R#z9+fWHM;d8@t!@0} zDO@e)`dp)HBKcgGB+4;Co9z^hEpUzM^nwq*ggx{z_LCN!L?)k}(@xJ&-2k#+^QC;w+$iD=Yz8^L_O}vu8)7;M;3ffj~>I`+$Q1M z*RE}xoj9{i`gypt{yW_pxwn>rtLJ6(3wf1CzjPdVcuiT)_V*8VHJ^NAUmow%n?G7I zNn1X`S|Ku<<%w+Odgl7g`f_E~LC2_fYrM%iK|ZqL2Wyh?FxL(>dF@x@@74|D_sp*F zJo=v0*6m~pvbAS5{rZ}_Lx_>nV#W>=yZPtK^k$X7oRHtu+KT6Qw9P|397ci*jjRM^ zxJjb0kj3(3t&VL+=lHn_dEu+)`+J^q2yq8$c-Diyq=u6vZ}7d2^8!vQy#m$uifOFI z9zLbpSj$I^ZwQ!aD^2w=;w+B!RIjcwHs~NCXq50mTXR3gy3(z$edq30?`e=c(NMt$Yj$?tCy>%UTO+^ueAK)NuIu6!ZmUbGk(a;al7!kC@_zb>?Qtm| z5`kN*F2@)em~S`!mNAszqXa?7{9$@;v?j*p&KI#ewc=G6{wt^Z^q+e?$a(0ihB}&I zL)NcM?lBqJ=P&9!kl`_ID8Aw2XK$-c%9EVcGEOp@{P{*|lmSRD~|Le+#uWL(-d4quIF`W5EmERfk_ z?oOJHVOogmSK?Hj6c2nk&O3XLbjLQ04`${smSEl4UF|yU$Om37Ma|UJ5?`&?vnih&SLRm(=7ph?5S&{h}o;(OJ%W^>Jj4w@6dmL zIBVD~zFjYKQkQt9QgSz>4;k>V%$xL_Ujx`t3CL!Eom9>sgqIUfFyuWU~ z`pxF*e6^u@{lhMN>6FwH`hFgNl!E*7vlu8;$hgUs#>Dty*My=G^)XGJ3q$C zN;AG9S`7Dh>Zem9&P&v9x3()1BMP3R7pHm)BhlVxm)}`XmE5}bpbv5WkilNt%DOKk zq+F1W{;i42Xx#iTWkN(Ld()1rQ7;41L9$?bahmktWV4HZW(b;9jBy+R`wC~I$@xxK z^Al+pVa!77P2Lq8p7N5rfx&(%aI5XKK{8JJO0=fIgS&CatQA~WN2J5vzC0^j z8!H-btP+Z2gKh0iifltCx11d8$=oBtmRaHRqAcCZw-ZSdE0>4*t;)WKx^Qc&Js@W#Y#7Wc9Cpq+6fSw}WjXJOWh6|}k{YJS~ZsoE%^ zOmw^)ihx8(7Ppcfz`PN{u!fQ!lE;kpvhn)X;;V8VzrKi55i|s>B(V6is&#Y;PzX|4 zQ!fV-!9=V!Gy<3N1Lh+4?d^;D8VOVw0m&u}nEa^qdfjt}e}6ONMEq)%d}yMw%I7QE zTg~R`Ybz)6=R>TQpA+571JPjgLC25v*fE`oJK=eIJNooBRf>UA^r_pEawmD8- zVhI>e>}8gE3&;}02)zPbhg)2#6#WgG#~JD2dLw8(j4>F4(WkaJeK(z}ujOK(*=vH9i>~R!HM`hoe+jNL(D1Ue3b4uY0bzSYLG)S62bCX@_Hz*D9BdXm`d*(D*S9KTnaYJ&&%z4iYjDx3VTP>)27pYJC`y#$HAKLj6cZ_vsS+EEcQE)i zP<}c10(EKrUEuQ=Cf1rCb@1MCY&{DC2CX~-r%l9UeAedI;dEA#)GxqRe1&_zR1DU_U2ZbCLyv^dd`?~>M?<=amGz@GJCcSwsXC(fIe%z9##VX zwl?+-UqccpV#dXEcGlog)z3`Vg9MMK2Y=-ee^|I z;pp&&hpU@&v44$)zh^6&2)0iW)vXCX%t5!PS;|Y#h)CtK;)O^JndVIN9xO;+qvH!r=HkohI z(+_KfQEJX8BIACrN-ycU$dla_m-OmZ4X)w1iB_Xa7XqtZ8%&!z|Gw(p-31MO(%Iu) z0}gx)<6c`ES>feA?p@(NwO5!t%B$bGTaCBBjN4pf%O`T%GLy%=-DX&k<@q}Fo$QB4 zCBHFzRz~Zx&r^cH;^gv8d^42sBH0^udF^(xPLcAINUpZm z%~S>zV#)P^3Iij|HUiBdnUkhaCR#>XtB^ZYJ7tB(&-t^|O{T9JoH@4LRthcFdWEX; zUB=F+?eTZTg8r-=8>I+|yIhHtoVznMD?fUiw=aW5&-jq&FSSne`72Jo+E{b6k14(l zd`iDcuT{r+<=l(qXnB2s;fuA0Ln#)$PUDetW2IJHNmvWgH`NiJ@ogdv9k-bySM7MT zzE3qcNWuCs^wr(|NG*_;bUf>)G~*aK9b7bB>?`Myt9U)eQ|7T04^i0GQLq%<%5c|u zGL~~I6-VM})Rx~Ge2eXk51G{j!R1$(`t>I|U&2NL^U-~a)A&os>H|L5ifWUn zDjFFBw%%-k3CNmGoTnyc<@SOOgR}EU^HPTb zhO~_3NT+;NiX!~%g6AkIZd6|~bQ z?JJJ?bD!iqZ1b;G?(dM~j?^u)9Ta}rO^v3xQ%T{vz~Qz~y>**=L^NL4%3^K7QE2k8 z#XNqJvTQr)Q;D?-?CrM1dKR-o{Zt zq)7`ss3?d5g7h8@A|-@KZwaW3Akx&(JJL%)q_=SspZ%0ydCEo8ZSQBlOWwS*k9={e*!))Z>*H6eCFjkM@Ga4G$^}8rTIXB0`An4XSwfct|NRFkESu^gDL*@MY~kL1dvi(6cN@^r_!Bg) ztBG?1X5G3=@@Vu^rbYpr8nHY5#of zehs^j&e$-R#j$Akwf zjv9z6OiNzz*S`~aY2$V&z@ebg;`Va%HgQA65BTO%;Q@R#~Yb z6#y9MnQA{Kt0R=-ESOJc##wX>Fe}}90XKW1P*94WmwT?rIFSB%yB@(P6SF!@rAaK2j)u1KVNkti|Fbx=k4#@)dg+rR?eBg_X=7LY z`(C|hGS394kq)nnZ`^YNXjvsyi3wRk4%XcvRjhPT*YkFRA zF@YJ?o7ItzAR5ce^n?dje(Ah{2w09UJxDO@D0(k*%6vQfa*)aFEwd+Unf345g$vIz zt$$vn229&Jha*W}zyII$*UkS(xq(FF^{mC^Qeqv6l5y4H7<7^kpMKOtQ6lwvS)Dfp zwGr`ksd!gkkGN2!h0k&m_k~`1?#81Z^hTil&*_{By}wdvon}KV`D->szvmZXy9P<} z9mYz_1uY{*El!5En68+{|LwV%W6sg8pH!kP=mWvT+ScH+ok1*au?+IH2`skGc#K#F z7#<1za=xswJz;bFV!4FpeME8RgaFPmW4zoHxuj7oi=DCfw2dB zE6>gInmAhZ{_gt!Z9$V3;qfF;TC6Z-(=e32!+S(CZ>bMd?-}b_4jgN%LU!R4Lp^Y& zHQjwYvpZlRTM6?gjm`F1fRAZTV+J07>)w@?xVO#x4!a#Daei~3p$TH0W$%~O>D`Kq| zMT|#(^Rb6@)lwpVcIclfP+oeh*nzkfNHUAV{(;sB>IB&teG|mA+K{eDZ&=3bMK+Uq;shd`^`*c6Zpcl7?xCh zCLCK)MdAEgx&IzfjO^*nt=Sl=?Mj<20}?oPy>+LF>M*>gy!LT71ovjR1kh1p@ubH- zk}J;^)s>_*t=vVg8dfI7awGuODQ(x#L)-!7oi(Zs1v2*1k5Qv*ys(QI0sc2(hVkYG z@1m}G1G}IjVw~9qmhXgu?eAEp@a%*e%fR8wyvu=Q*H_Cms4gHP4m^IKfh-UK08NIdB2&O) zuWN1np@vTmW7`~=pzebd=*&JZVMnCwnzD-+^opQ3nsI6gB7_(oY z>=Okoe@C|b!s*R_0~-%#?I+Hgn$cxW*bi%)EH9o8*-Q!u{59`-`CzXWrgq~6KgUdC zWoyVkUI1vE$_+#WoG?f<_6Zt&B0SS}Bg5Sq)zvva)Wz#492nuK-{v}B1a3?$(IU>3 zJL`-xr)NoO47xSTjK}XxOoxGbY3~oho=ot5*iblWAk_)IfD0{T6RzfdZ@`uJ0RS=b zjWsk8yUUepUy2CzZ-jiqxju5VUV|(%A>+#Vn-?Q&&gTe5VkwN1D;H z-2%-(S8<|lh)l?r-w8kCXr1}`cF9=E$I?Yk$IE0fsXb_sCz^7u{e}8gfzE42MErb~ zURD*~YX$z_zJD=fK6^&%U9#N>AV39AW=;=-Q_g_oh`p!EjpvSj{n5l0<2CPZ!EGkW zj?V&mZ%g?k*d1QkCADA50ATk-PPKO0T;_#I8DprWDt1x(u8a|ZD6;xqxP+NYOoj|2L(K~R1fzRjq__4;WZI_0A6n9b0T%Wk0 znIzrCjxX>YF2n={6{4;97js5+1;5C6>qb2Q`mgB>=`YC6Kx3r3Q&)BGi|Js#=Ey88 z?{&zPStW#9U0>eQe8h{~JcEB2z(O49^3cEe!r4e-Vk-TEFzo|=<9K?*8*;idbCiNV zrD>izQp;mdu4S(oG(l9#8ILbz=45@wuI+RQaq_&q@$`5D(v~{>;`DeQG0mU|A%b?z zgT2pZ%%d1Q_9gD1Ic@;LuazIrye-lE>Ktod)xP<;Pjc;&o)(-9vWMYIs_mceKR#>jKh&c_*8jt2I*(({rlUzZy~AylxYU-{tZbTL;9jG3D?gIo@W?)mEB#0W}yCyX?`e*>Uu!@F!keXl$Q^WsQzULI&qWyk?xXH>;u;jgEMjD>qgiv`nS z@r*(8_5Re9nMT@28QRCc$>jL+LYprcp>EY!bJrL)bnzqtyBq-k`*#_;2)sU{GVw>iE7r(LW`oy%v$B7r| zJo=0`-zraO=dv@WsESux0ina8?mhz2_nG zD;dLMQcOd*WG|gl3;nzAAg=^B8efB_e&JsbEn_5XQww4(7AOBasUA#DhUF1t6$U*r z^m!NYNyiYF!Q5~?Ta-0d!{5V1uQo)C!FQH*Gy^1d7@kKBPn8T2vmFLfd}<0vk0)AT zX~OTH91JWUFuqam-!5VIm>&wE=R&M}AHA}_<1C4y=Lgf5iks=h5~2P_-N7^&7@88% zd=SA}@vswQzs`R0RkN0+6}-$oGC9eo8`*a}*@sblrbC3;QIql9$gkY4XH7xARVjwv zZ>jmX=CqnYN)5|NAQpRJc;gV&jA*qAVq7}F&9%I@ zrule%mj}7$80-^Or98mj){?9dBxY&Ux33_(i?8k6NWOj&Eu!i97F550P813@YPKs` z)%DfDq|`0Z+%-mM+KI)x;I8_3V2ppsPNDF|K_p@%mm)KR0ogkdU=jwu9<(c;cqGN* z9$akzF#`ypYxLRt$A3%&AIq>Bm(p#Dcl5FNtjSiV2!Sv1@MA09OjRdD0e1qAckhF` zCnbTbR%>xwflp)noN@d|c-u2fu`cG+;`pCM5@IA2nLg9l4)!lv7aBeRw>UJ*r_*t4 zxdM}4_WHwsUes6Y$R}n)NT?2HLx$7#=fm*4K63C0nP96kN!b%Voe!Su@6Vc}eh$-c zr8bf^$^eCzzo|Oum1l=rU-9g}3U%ZL{#b^xt-1awq%Y>9gkfDeIFsr3M%Y~TF)D8e zA5)+?9XyucGkG#=$*hK{&He2%ZCuKGi_}hozEl~Cg);N7-f{!C%_uLNV<-|egQ=Yv zN1bm8Yftc{Q>umbgPWJ(o6ZC!_w6TOd4nrrB`Td8bB~NwNW}Q)1@cZquVsK!5jWsZ4F^(4dWx4C3;Ue<8wC_|`sY z$E(eD(6QGx5w+Il86{PA8DGxji;tK62p0C!7HVkgs!_HtP`a>v_2Z{22g?qb;nh)} zV&4>Lg_2E4eSO(R34UIY@p%Sz!G-kjk42-o!=W+>x45lp&iV6`{;FH+7K55WHh=kJ z*a#E8xcrnc`}b7D8uz>WVu81Uut^}@$y|)7+c1Zw3sROC z4A7$`#^Fj>brVT`2tbV8y^nsIcZKc~#u@dg@2ICwVS&p5bx5K}K=T*b+}_+OnNHlsVo9u&iF$tss7xj&TY_ZaQpN@+Hy@>aHi4vAZTHt4uO}cj1{f zOO2m02ky%+1|P+oK7M@kV!rOt+8^KI&(l({D=8GVn|$(Xs-)37LJal!`DRB3xs>0{ zeSTaY9&&5G>gX(w#52q^9t%G*V4x7}`k80y$+E2p=Cqm>Mv6QgL7*oKYeFbH2oy2ZSt*zuUEA})LbgA0 zgk&6#D5UlsP+Ge7*C?Yeq_i!GR8ukSA|Szr=3(RU77Yy{GhtCH)~$N5QdR%U+Z>77 z(K5#$cnc9U7UcjKznQ6Z`UeYcbouR@`v*ObLlpc_qLVfyZ~ZL|;JIc!o_n%D#hw5I zm6zrZNBNmNVm=LZB+|{oK1*oH*Z6r8(ck1-9&$k9j+F$Yt%HSCE0sV@+98zZDuecE z|2&6cr9a_0e2z+*S`M^c%-nCA=Th|fsr>NW1y**e)APZz>^9Yx-cD&LRGbh_>5$!5 zYwC?@Q@Z2IpH}A2_wA=?kL?p-OHBXf3#B3Hgt!?`?!aE zW|DP0*Trr|+DSH~9KC|sxM?64B_Ni*K?AYfccT#pp@;%CoS&a6dn%dhPP)0bRE$s5 zx(&NZj8D6ZJw(cX#{WmeDrQ~*+vL~aweC(7JC%-<^_}ykt z*;D)>e3L%bIg{gBj082F_+hgT;8*0ntQg=l)SxE?&Q9VAD~wQNpG|82k^<%^J6Mkbr28d7cD-hXb0bA-NOOY;4cj>V@nc7M0P9SlJ&0pZNy}15VzDsXr@YZkFd>>iQw!qdpKxPcEY+W72HY zh2M!@!7DQZ6;i&phD-@6kw+TPn`* z3H$1+j)c?zcORPMA~9F9xb_gYf`P-M$x%u*)Pzq;3~K>7lSb8N2lQ`0^Ae+9kH+AwwyS@; z2$s}hEka@pc+4ons9M92i@pQmeR}F{IKy}r$!&Ed_|lc3EbG28$}Bl?t~-ENVR<1& zVg5Mu?@Vtq%un*gKR4d0^rt>+QoOnw)!z4N%|=%D*B_tGimzQu8=$m{E%d=O-g15z1rNw=ol~+hIuV!DB`D9c0q%~oYoMfg@*P?>7GqcuQcf5Q2IKBMfYt%IN7nv8G z`7>8$x}TRmFd z6EWjI-z+g|6fJUmtuE>n7=a-MDv+CE5Tx*$ZbyP@z)1sguXDnB)o5~BVAMmhePwZN zWe3tVL0^jiX`*tR<%37`$(L(~#WJv+A>;32Bs1G2v~wRdF|oh0ZDjLHR$i=1;xkNs zE)alnHPYQ}59iS>Hk=-o>BI;%0y`rlh6Qc1RG$xt`5`HnPK}z03*YQ;N4ablm|EvQ zb}(#zLW<6daarwnPPPd?XkJ707Pr@a$Bh66q%zuIGC|Os#93!IJT+xAWODYbX68To zDQ58>;LYZcGjp!3_okbE;5Ir#{q()p(otsi%Jv+4u%BDk3yD8!4$?+u0l;MAGSoUu z>FB|ob9|#Cq1s!F1e&<`8Px0ISb3%g>88E3og-$DIo*+oZq3i1eTdALA}<6C-~4!s~ZF$n>Y)L!enu zn>yi!2KFxWn{Khzs^?ikFje`f$khZnbqh!rv|s+wluPULZ{v+wuS^N{#~2xf7{{-i zac&(Qcc<=?Cw_$u3L?_kTRzUrRXg}Z8`)npf)t<=Sa^3Xl%5@3EzG`>@PD2ldcjY@ zBhl7FPLnTEY}K5E+`9#%QiKm)36CKeZbrfID>UwPt0Ub-vN~DCyMv?V%E?eL9lQ$p z{U|$lC#IKOnXF=YRu8*W-1I!K|9F90U+QKsZIeNtUpe}eh0FYXcLZ`gQZ>GNR(j7I zZL*)fI9^4a5zUv#ZUd1}G8b#Dc_WFF|3%}OQ~!vzkb7-Adq%?swqct7P}(nD*Lzg0 zz(QCico?mz!x%E_j~cdA+BNj7s#jEji_Ha6m333KP`!U5WVFHL$x&Bmj*!@*(3H|N zw$?6M%Zr>w&e_`E;<&z!30z6sK?c;@^_UT;t1FwZ-G&7K!M|(WruR>7S$}_lo-Dm+ zACCxvx=sG0jXY(qw|d6cfz>|gPjKN>a(3)_9{PH8mJ++d;|EOX~*PA(Pn4|B}=yg44^dJ93c>;t9 zIPVEWxDPga_f4hjPowIm?kXVv52hCby36)SpKow?LLz&~NCOmbkWWamW~FKQfebO+ zHlpJBe8-;+(X~}EWT`YlbH2hiCvEo#$cacx;6{@#mEq!mq)w87HPg{#o1_HKS2Mov z!)(nJVs~Z;<^r^_G;g9ZFFRH#Lu>STV@00js+Rpea>Vu$Obs7kql0^)FVLN?Q7$C| zw69D=f5++1pgbgLyS+n^O*nqzWDD=XbSdxcS;4~|3^yd$sjsxx=5V3Yg1+zN+=}h9 z*tQ(3k=<|4o%zTffHTq`oW?mhP`8?b$?}W?)>YFZ7tzg6e##!)wlolPymNhR;D%$m zC8Ykvsj<-hcO7i|h1e)De&gCobya3R)QGo}l%YZ(#qGwTtM;5V$@bnpqx93&fW`AKqLx*Tj_WvtA%k{D|y%3#;;nry| zX=b9-bM9N0Oi%Q&oK2>XI9Fmd$13mr>_=qCxt z?;9E8CYPMAuhjdXcjq3F+>Y`Ix8}yoHhXN&*sLM;v+{G{096 zq&vZLuxRnc5!=?i@g)M3T-WayxiBO~8*PsIAlIn)F-%o%<_f!6O3+}HDun>GLh(<~ z9!=QHRynxtlB~O;E%;3uKGXMJuuHKPff;YPi!AcSWUteud9Z&g400HMB?P^8(CXUH zlpIyU^nDZ)93ECvC?X>jl?77g=oaOS_0J9dP^0-9h~s7epFX3#bI&Z}Di&2GTghMM zC{sV;A8A1qN4VyRDZNe}X;`ip*02WGgc9Ptq_jx}tul)igB#Z9p`MlB zW^(<7uFO|jkpIwtHx{pFtUf$(>4VK2!949Mc1a#~35b?6G+GMKpf9F(Da zfYRo7>=dH{JPTLF_dW@+KZX>|>=p_4W!BrpOeX%9ab3{DS^86r{`6aXp@a>NBcG~+ zlDX42I<(U8oa6iycLFeM8>C{T;Q{t_!nOqtpzB3~E>841cb=;6_TCK`v;o1?og1}| zdxDAH0?A5Sz1O_MwqaCA#qRdY4O%62?de+rDL}<%<*mMe-8TJ?6zf1rv^$5A;^d>x z^KcD{=)(yCqxf?n2nYGGCtp+)S0tvjjRyho2RTU+J6`N$N9)3xr#X^Sx!}Vq5a@X7 zxJxu{vyP)a+ zA*Vf_brlL1_h<){zwEU@<&3puqr>F-MXGP*E2Zcfxv@&-(Ns)Z-eIPNl%Lk)b1yP; z`9y@40@}LD#dO-AbaMxU)?Y6KBvKl89zddX;q;gI0Sz<#p_^Nq2e%Wg!gct*nWxb$ zZ$_%L)Li%8W`c}mC*DSbZH-qo7glS|*)xyq2Cm_H{>AEhtIi$y*#xA)NS-V|tmM>H zgUI*#?0GWAK(vWQQgm>z@U>L?V#IM=yM$Jt>Mn*=#WPnB8y9unn@6kUYT&4#or)|y zLg~j9{TY#-k3d5GUyp--HOugE!$|(f@q!yzcGw|d8P!#O;c6GbYg+Rem3CnZ<8RjS zS?1R64J1p3!PTK5bc3;{~Gf%!r<<>0cxXvEep>sOS>5T{57qwm0 z+$c%rGfP={x?1IKN}6pIsJ27971zCqE`Ny$Sm#u3dgb`=lJ#nmTto4@^t#^QWA=<` zS?#_}o_h(=hYUYtlGTLs{%Aaevnxe~I7!S}xIN<~&1nQ8m!tD0X3OT!us(0(CT{rO zd#cT}SNu}*#ofaY^R(fILotwcsru&==R%(VO}m!hi*21^BQoBbJ@C#^CaoEfj;yg^%;R}UN;4xdPn7G!krublqo+AB-V6$RIjS z;@}R79fNHRAy^4Z`j$a>O=^qqYsNA(i)eUSe{qK>MZwbe?ifX-6*PpqtkaxP-$E~MGJn28To7O4mD+dPmxgjSZDyc*(<`hD@t2??Ou zGJt$dKbL*_kyVYg;2t@#ofQkfejY0L#+JrsBM(T{<|n_2=Dsf8=m9exO|RUna=!4K zuS=m#S|4BJ(q*q462qrOE${RELzaFIZnFD%jQ7cBG3}H92kO-%;&^KEY5}UBu{r0j ztq?ZK`Q`u1nz=3XF$gY<-RqdG(wI1YPEJ1fDlrov%|LZA!C<>Ckv)a-D0i!5Pn#4l z@uMdEWOe+s(pwpG>OcI$Ds{-egsLD*>oLsdN39*2AAR9k-@m9xUkKA^JmGAvcIy&u z_L_^BJ{T%nDmxf?K0KUxuOvj&qF{^28I9OtY85rLgmX(2pC( zi9gy0^V|17Q;3ZeYnL^%V3CDs0Z-t1Kvh z1x~kBK5i)He-^u-`2roC*Ny~bMu~XMIvH@vozCAyyAV-vCwIozO)`WZTuy!jh`+t3 zO>74-e3_mhewHks9QXx8y%99G+HLdwhn^83n=Zl>w)S48aj&M8waEbnAwiz;U z1#Q}9t%-qJQzwK=wLLV5aaCG@^_4Y8SAOisWOw_8gEbg-3SKHk8A#k?cJE4`o#nQ7Aru1r=00)=w1Rxy)0lHO?k$$wt$v!1nM2O zw{Te^?L`$^?ko9@*JM){TX(*;ht|g*BZY(^XymI4iGBIEItqago0eS?MZHJdB}YKT zPXkh*wr0&c95eKY53eujVLo8rj7~6V39WgXy|ON=phd4l|Cii)#z!4yIk2zNsklGp z%Nn#MJs0n)fdnVi1(q`g%;A+crKXiJQtq8KTUO2K$2U|xmxNd`y71(auVWI>4QA??=yo{oIW!8M0fx1?B`CuCz24_tM2U ztmifm8KFCs%xa^S%1!UNW{~Ed)#x*~3;D(ePW8_@#6eoCRIEzsGQ+)ld*R`f1Rwh% z4$u1|ZUnmWKAdTDfM{_mD!Ut7>8vX2#MKEZ&T14FyMT?PU0eNiRulzS|2p(C*=;KY z?7H*BU*$_@4x7uou3bu00V7-?J@v{dj5bZQN2Oe~tF%b<;*dGed9E;Usy(hRdpq?# zA7Q>&65e-yr@cnV*nT;}X8U7BLG&rcP>D9$Pyh2q^=7*XyLFo866N-EX*Yv3Y1?i(9bTRnsUEpjQ{UDtChEVgTcw2t>&0+S5E=V80=6hp5>S9#Z77?h zDoGE|is&{k<1A!5?cym60!dDmSuj$;`i^U!R97Cko_IUdz zT8_QB3=_Ad?D;o65%a}TF^X8BU~$#*O_fJ%RCC4Jbhd0+IpL$6GOCi#0KD@7WHH(< z;cnS0mdLOi$a&_cdQbnpowLtNTKpc;t2~EkPq{TWOVh%=pL?WxPSsrK$x_9rx)%r5Q_1tKX7|+lq8xg!vEJt{2P?9@gLU;pm!d+mF>5 zlGV7MMm>9Vd!>iWk8AZqZ4-+P-PjHFzFP(|5Scw}y`8$y#}fy}m-f_P0rtf%h22h{Pl}e1jOqV+K zyoWK4U6t5w|5$ladN%EpRq2yQqO3do}0Gs$O zDQB4%p8DzA?LKxrUhX_)PmP%2`D2FA9Yg54kNY2yD}y?WWIB54yC|O_X&?CWu=cnE z7#T5D!-dI^-QVSAAJKW_%B6>o?v8TIyzP~Cxav61JDb;rxcLyp4JwNNxvUb+$BcR}uaWOdG1 z>>Mxe#zW7wj4w#Kd5|2B*m`384k>e-b<^4)Z8&sbICb07gj)Iebb9014sM~ZU*fM5 zr!SRasgTn4+Y=Yyh{;mKLteHps2drDS%xB|^Q-gE< zQI4PSO=>UP>ZiH;vi4B?Sb7i{DnCM0qU%%S?Tq}Jjt5GRe2-iqIN1!7W9fRBU6SKP zn8EsrR?xc93#ez1hAlC{Z+>rW-KM1gy?1m)Oh&)ir zNNk(fNGV%Vc?__;SC>dN7t2fFNb}hO)wX?8%it=LWYUR_lqs{5tcF`)pZY5Y=<8OzHD^nH80~bkiuH?B zb6a`DyF^N+L#6(E;*)PJKW?V`GWFeAdZ5M9^$>eY)b<*#=_&)eyZ0!&fUec9fAl>3 zM@TpM@$ZiB99rMmlsKry>I}^%F3}8QWHVPh;{fMwZ`-^=prQ?R$PpHW7P1fe?w6QG zX)LCCLz$bZ86{(tVw!Bqza=9q``kXm&t&NgbgYt1@=SfB`GZY=;LzPUG9B|b@*Yo} zc*7BF7Tak4Xa1^MvHu2#m}fQ2buqH$IYR_Q_*kAya21&Iso8`+v!Otc;Co?G_z{JIeH| z)D)`91(p{g{GWx&7UXLRjZ`H@N@-774*CeS_0sk|R5DU4kfgv`K+uwhG|uUGM5`*- zO&CaZNHuG&7CQPYhNC@8P1iu}-X-@lTW>oP;!W%XuG+HAGl~}b97vy-`&i&X+k354 z1@GbHNA~oBXd*3t>0xN+Lp^@1ofkKO0|kIs8$gJrG1kaFpjGtR_D+t$lf7( zI5&fO{duuc-?hpFM$o-Pp4{@bYht7?4)&Yjau6Bq;*{g$K4^s2lH?u-h#GzuE$;6H z4j4pB$A+f#`xCAL$~V_<>VKl&&9Yp`w0uT=YkeVNx>jD3RyZ@;YFMVeQiNB6)?_cc zloVbxC7aw{UP?9A>YDgvwW8GZ;qQnqt;C#UZ$MF|0$SifY0bGmYxMKls(cpXDc9S3 zUnFqWoHsbKX}I1t5SR|xOqYPZD=nyQhE(YeflJ)2EHg4K4-MJ(7$^2w!1K8A&zbG^ zAoM6+hKW{536i{c*{j?9l677cm00a$UM20WYWI(*IQJ7|oB{)h9BzU*!!4wpa#1CH`Y^ z{)8g)noxs?B)e`fec(q1%QbfUA4MiB2l`DW-CDvYZ}HiTV$V73bWBHcuN^@zD=TK# zl_81n87*=FQUo{+t{1JjnrW_npX)8Gwv3}M2yed+vw26hr2XM@Z&8c*ftRZOHb&+V z|6@S06>p^0#Em|D{+|`m#Gfu*-dd$UTDvsK=H%I>eH9pK1{@S>N)RZX!E{U;@0;V}cAuw00Bn^nvirNYT;J)E)jEVqpt@ z3(`t3XzI}W-;yMm<>302TN^PZnUtL6WZ~2THa^}F7eF?QnPu28{DDRw zed*{U0h~r1N)T`cHPXs!8iDkD+Z2^d((tQJa|)U}r1vROoW2mZJF+A&T(e~pQd=oQ ztE7tvyY~xpVQf)Qg5Q=Qc_Uy`KBzBLqg;b`s`Rm%$dEgewdWh-^&q`3rtgI&h6R2$ zX2E`QHqf7w{;uV0kQF8q_2OYo-wCtr!fdR zX7Rc!+qYn78r`j;cp9g9%+hrGc(*y=BmfwSidY}35xU>*e@VMY-b1aeva+2siEbm5 zd0wDM;_rsIN0m_0zuULeiRs9F6hvWfN?(7p5}+w5?@K)1O0I7cs!z{VrsO8shim@Q za5Z~mgTqr;kDr_No95@k(Y^Pzz1?F*yMySq;r$ys{YVfMsQW`Cqe?)-n!=_Mlyus! znj=Hw1<85@(RaN-Cv>NTB1m?_=Y}=-+H|A!We*v*)#A(EJ4c_x;r_^f!+8KW5j4(-~<-wzf#o0*p2uNPW83#IE$6TL-5Qy$Z` z2ISjJp9TztCPwA9wM7>c*?r^HQdjolGu{LgC2Je!6(Ip79}zG8Ehs;iuME%rwmL@u z4ivRoMC)j9cF_`p2N37o0!G5}0}Vn_pd=ubs1mjyrdF#u3^I<%AVY|Yxxdd$y5Hk- z?=QA}WnH@Wi}uOCNy6h-)WVmVU2*{@??J~Svw>9WWS!myGC5{Qw`lJ@}XWC7SPiwJ+VUbtU1*Xfi!rf+m;cQlt*`?=;t< zF4Z^E!{SXj^GT+GSEJ68P#vm#rVl>->|G*h^P`l-I_**Ui1kk(`9eDJ&OLC5uD=Vw zR5+xff~A3HXBH{0^;J*ymejVH8d_r=1D5U~m1k_awz*#TLwz zvGUW3@VG{R*ZNIAiVeSByC^51EGl$J;kjOTM@62iwsYC`jf0jQ)l>0M+3{DH~E8Ufi}j2^-!@@Efe$=;jwjZsW`mY_cl*3)YPuM*jAH$_H$J zSUhOLk92i>U!RA$iYxm&NfaB)n97*4!^!8gZDI&{h_2;5LHP7ecVpp9yG*!RCW z)`R#xXE~jyyz6tz#@2pNCG^xg!dOc}rvNM@c=o*T!?8<$v%PQe8yTe-eb1FODc{U} zYLa3()^1QkO?oS83cvR|;UWYM5NQMv2Ga0I_GM$ppMnP*F~gkt5TD5Pqy&nnX1?F7>?QyK_J$*BMJ zPP9r4T^-S{pOH}aVNpdAs|9+S{T!X4=*-;xLwdL^<5;yetNz;=#X`bn^Ml)e8x;)s z;1l|mckbYNnpp6&A8H+O!byRP>x<6baJGfv@USjN4=)Uum~aqD!0Fd1aYIEf_+Jc* z8X#HMwdZKi7#umaO$>XY8KDb046;m7Hwj{m!T$_g4Po?*?1XnffaCTBB7od8Ku4eH6x0@0VDMSm4CK8^WmdSsN2Nfr0lWE_hzoxahp$bH!^(uQ!I^k=x1XC z5@rW@wcbUCWomi$H+JE!Hp&6)*!&9voVLc_O(|qkdW+k*4;|D#Pe#4LYn#%)Par>j z3ImTn=d51%P*FZSKTrs^gLwHe9BCWvWCzum=cqPpDN#4R_1a%7wmZ$){^eE1XYZgl zF&w@I@`=TUXBZ^Q17Y!hK>@c>md%jc!8d+bhoKLixdvB$>b8Idynucc0nmCFZ2yfd z+_Zx{fe&cE#;}W02@l4-){Nl6^;mSmAl=OA35t_%@QK^Fhn99k=>xvCDH7e(}QJ{33Qy56kfc?LhIJRf+Z*h25$ZK>^kWI8Rx z5b8k9Z2=jsW-G&kmE6sBe<fCFffv+D60K1K&%XRD!VXUX(9KWFML z==*G$(HSH07H3e-|Ek86PoDalRn0PsYq?CC0q>WURdUbxffP{f3+xNSRbyscmuxFU z+@cWnYae~vU5?wcAz#8*2JF%TYRw#_skdrs(;Gv*fv`lo9`tgrM8`FE!e@q_Dy+m` z+@RPzly231T}W>m1U!7w+v+R+oH9|j{&A>g(R!xRzM;o$-kJa5V`ERr5CUL;*V5JN zm!8MeDF&nEU4PE4Y`|qFg{@EGiW&(l6S=y~eTlwC;W`(Ec-0UN4`Ie#JVyN1xvxz4 z4Rxe-qU2H@D^!o6-oS|(ib|D4vc-68@(b@UP9(24ynoQu!yvBjd0f;j0oRARa3lRn z+)aIvrK;V86DQU2#4pYd)R_V6g(;tVG09)%ZdCWv{7uFLHG&355^=BVTZ>Z9Q!&Ua z`30`s#&ILAuN%*Ip2TKht%MgYDrKZ=^z_@-u}lUm8b#^-LjgJaRI+D^57INb1V6eH zTcgbo0V@)5maRV+N<7iA73K{A;9`}9hBXe&?K{Y)B0GOmY>H5=5GJCbVxzMS$J*f| zlPZVSi~-Uzd#mG=Cgjc!N=7=i^`1&kTujNMQ51#k7;h0D$VYaJ&V*QuTA>D5S2vxI@go2r{&C-u7D!?TUnqHZPHX zsb#6L&Dl6Z)><#AqzI_5rp{V4orqn9N%z&fZrI$ib~)!`xOMp!BZlSuD!cNe*v5_N zFLHc~OA4QbLi*dg^04T~uXGSqKVD;2`+`6K&56b`mz5Kq?T6mtkbMm~NGvvc}4&3Q?K% z)(+vRm6;S{B3h}sK6OT#-@j)BDxa>du(b)J?SL+;dWz@+J>T~6bf#z}yDvmt8-WB$ zh#A-sOD$123LauJxUdTrRM$$`dDwsB=1l}LU}%6j6r6c<&}S)FyU{j)gJgM1*3MG`@b zg#&a4x+h9LQqHF(8=IQ?u@f$5m0!i@cI98b?cnF&3>7_W3~@0SeyX0J=pVG-Yw9(I zerJqG{nYH5M!eAUI9bZo)iHztMs;cOk(b!WHwz}e@ zUr@7W3v`Bbk4H=mIjFB2!7(M+TvFz?R9;-WD3Hcg*2tdME=0=Si2KCgCWWo6q*eeJ zQ3jl_Clu4CdlXP^Wh>(b&W9kRVSdM%u#A*8kr{^Ec4!m6X4X5l&Sz{#?dI8}3zE=5 zyk)q=t6t^>GL=47T`I=Rv7)AZqFh}nTwXx4n$erPQ5S~VBe-d>peornSAdK5JMOKI zYyn>uBJkEHw<1NaG6ofbr4+do_|53KLEn1W?J^butTWi3<^SC7Ry^obU-J7sYS)F) z1#8)MM;sCP>2Z6+wKp9>3?p+r=J|qaVL*OEKz?Rt1V=HehL*KttPo3NVTtAb;j(;faJ+L>!ZZw>Z3{U4=H zK}((aAHk7HJ;E+s<`H{KIGgyLuwJxsSR3W(h;CsTvNwN3yhZ_K5FiklRL(Y+u+5-s zzaKk%lGg0y3_NVBPv#*9n|Ug)`Z+3=0Swf@4h-nSlaHZPmsIqTC`LF(Oo*%oW76{1 z8`H?T&N6o3gsnQ48fm+)`QVYbjUHm6OD{WIQTsv~)MFPcIUj$)1pe!NW8Jd)29{T% zBkhBYgMVZIpYSX%fX)}?iPv}YndYvT{6D77JE+O7Tl=91kAR>eq9S0UmnaGfQdOka z6r=`GM0ziQP!tgb0Vx3$2)!jVK|oqSr3N8VLT@4=5TqrvP`{gV-sgMI>_6_A3^UB! zW$(4twbt(vZgBf~Z*eJN5B9CvGfx^`YfORq->5=} zh~qHa@OPX z%ZQlo@bw9X?7je;nBygTLm82WDeIt0mNz_>Qi|hL3}(_mP)s}~7@!M(T%-W{go7pV z)c<*Bqs*Fxtr#rb!cWamaw1vuJKYzp`up~}FB{gqLiBCT4fo41zzgX-pJy$Lov&wj zMO)I@aiKd)xF3<*bJ}Xi`O)ZeB@+R|+~+^?s{J7d=%sm$R_Room)aOj5G5*EDEmF6 zS_&!pY6-RT8xmCXjl@D?WXUb*7^d=;=|QGy60zeyeYeB6p+2P&(-wOfeuXn1m)qT-_%p!V%vh zF0com`Yu=bH?3|p*1v&8lMJ?L(9SttUgjjV!&w9H`^O)sFO)0V|8a7)z+Z9fa>7Q zp`mg@Vq-P2L^T83@kXHNgp|ERw}eOE_d&%h@7ZN>qyXer$+=(IIQ*?x7fGFO9eNP4 zIGH7CUSiC)yq1dAb%h^vJzptYWFY<+cFEW+D;(2QvxJ zxIDLKPllJ?j%*Q~vO|A+s!#p`5M0{%rIX?tl-569-55SMw>Z+rUwp1eiJZGin7-(& z6x<^IM+)rfdmix)3jFTp7=3?5`<+seJoI%no@!dgO>M@s_YG5d+2d4Qr#G~~qK>e( z)EoEYiHOu&H)x}oT=q*k{h}+V4fL~yfrSFYPXRYvU2bek$E+K?!?(SXYY{6mz@8vz z@5kr2NW62f65vH`Fh0y*4FuZYPk^<6nvWAp`USI;aS8kT9OrE~G88^RTMVsF;kbnb zOy{Gl3XE=I1r_qj8T<#$xgoTyPT#lu2I3F1gR{urZ9CVP{!063XTH%P>{%;UumdSijSjSvcsvT9e@tm%eFUPAF zGW1}LJwvq<%!rPU@>T_^9%svJ>bhi0^R_?spX+Pc^l`k+RtL1|q6Es&yqs|pU;A2e z4^O+NS%+-z>bi6}2)P2Wl#l_6W@nl1RmQfXUKKthwzNvkE8=y&I6GSf?zNe;!3ln#|XV{O+j+O%RddZ%M9rMSH<=(UH4m|8J0JH|a9(31Ga#5an9^RWB-^R~d}li$6b~@SWc> z#snCdj={RXJD(U@?wmO=Rmkp34oo$X;VZ)gP&v|_BVxU;5#^CYvFjLsC+q0aYAPXr zcHoq!N$Jkw&H0g|{??xS*sFy9?*1^GI&iC<62;$sY)7Yc>3A(9ddCQ77f2%7deo^9 z{|l;rzTG?=NWbORrhSmR78ufo-n>rjp?*E*j;Om;gTWWvbrsq-;vGBp3mD(|fHAb} z3-)k`=xit;2YH){bzcNjFrzL3M4+~EaBk$bP?Wq@61BHF?RIB;qhmH!L zS)APNRegQ_pqmG=GEa34nOrurv-;qtOF|C6zbD2MGXb5ZRu+!#Ddhbc`=HCUse^cu zD}%gXTIt^kCHqEL3EbD*-2S`aZjCX6{M1z* zGG&jO^ggSIoR#|tR_Tk~^2QxuWGo%ErvF=lqL(!H@qDIt*9iu@a;FOiHVTK1F^P2w zCz=j8*N$FNX&QKOcrMFWbu_bt1u*DfJ(i(_V%tGKBa$q*rL8}pnw~1o$3d) z`>q9kA>|#Kx&(X4Qdd_PMTxTH5x#;Ah@qPAuYs=nWZp5F-iLvjhKd2j+;M8TV~Uv@ zCAaL1l@R-e>7S}|OFF*=0eyl>&a(p;8Pvp0m-*z^3PAP6k?Pmli@^hg@g*IIQ7|MK zkv)fg+0~#@OM*of)hD&zMh2$|tB#WFYg^4Ox}S^lGah06y1MM&B*2+N&Cl;Uma3;v z25L6CTiiT2H1Km~Q0;GBzkVtwHQmaR{q?m%(H_D<6+e-$l+x!ia~|eBX>*@LI2A6_3P(NnAw?Em9eefC zf4I2fMugDCvLa;5MOnU}bpFk3%CcB9I^%v)vw&ZYkcl(&>@IhQymJri^8-+gDu;XnQN zGymzo-xrA94Ccz9Nn}(Y$#MI`b2rTnZu^*}9nl&#v}RWhmRI27YEZSKNuu5*{}775 zLesil6Esv>1waoJAMTn9P1n6qEBc+jf^qn$F&KH{KSZ}(hHr#LOzbFfe`*Y0hOA@;<_-Z|=Ti+49R^PCTMXL+w$6Qa}O7tf|D z_(lRb=S_IDfg)qw5$W-+ctRDg_dz5$bxW79+jHD1_P%ohes@k^7)j~9+tl(mdoJar zQAlSK5I6T7{twN<9I?ii8Z@~(iFI2e$jHCmiB#P?m8zvS=ZTH8L;HgtsO@C&sBLt+ z@0GcaFzeqN(WuILe9T_I8>hz)?ujXiF(~NNWX>1bwkuN#W@T->C7*N8_otIyl)QjN z-bf2Kj{4wFQMmI=skg@%Yip-Ap;sDNo-^WPsmp3hZB-d8y0HJp6DnfI;5 zc}Uxewo@dPk+}1Urh}kwkDRKH7J9j2+ih-0UX#XJSE+LDjvP9vMw|clLFX_JsUI7* zrq>({0vL|J!~>V~?jwqIH(W!ETDo~LtFO8<7&k+o(PO5zV_^OX+hS{v zC!BvoC(7%ODyebzkCP9N=4?`%cFYc)h6W`SWe+!}4#v6xSN6^BBaA>@I2Et}^R3Y! z^)#YmCQ|9A;Ta-zP@+gMxaacl`jAoGGw)y(>5vjU`sSwUp6WqQQHq-Hd8yzutx=NB z5HKba**0k8B>PAFiIEK|ZquWrXS=UzyTlz#F<pQ1VVB z?;~{ZM@jU=*iMUvt8ypU#1p9dnOO_p>ABG(OjPsX+R*CzoguZK*LK{(GTXT1t4Xj!B@R13)7=C+R zBmfv;s$^7#ZW7%NM$~p4e7SGssqR*)1-t*4}kW_CcBJDP<0IJeZTIYEe1 zyv$CF5XQ8qJT;DPSDw4E(aL?>k7yDaJ0=#~Cq}Y%pGT?yZtqw%x29=Mye<7ZKi=bL zBFCR@Ftu)wlJ|sLk%w~3HL|WnjK@ZQF;z}=ce;<#!0;2Cv+R3yaY z^XFCFSqnbKvr(_7xQ`1qg$A8tR1@7vj{Z>1=9Hmh{)Rd??CJy7>{^co2%oDea>Rui zyqM(o3(#@|Dx#9*{JK9G-xh73tM|U2iIDjO;fqw>w{NBj8%T@;8CLf3R_6qYAiQHn z4?r|*%~6bC9>_}1h_t)d=lTX8>e`AHe7?=~KOOt^YDUwWLje4=?b^^CO*8l1`$iCg zAhhFM5?Sx&0&|S?C*60s#~_qE8_Q#c?$k`60U_lXnj)lxB;NN$suH3j2;mO7hw*cF z6y|6ZZJ*dx+Bx1??)7~BdUgHZu*U0HX{6=ea}N~#b|`)BgnPh!>y9I|O83zo?RM}T zvCWwx^KQa)YE5v;#9#jLUNLc}xURow?_2{{P+_+6-6!-TI!x(dVkZwyZNK2qr+ed# zmU8y%oueVeZp4mWs3Tnp!1<)o)H17dT4h3)z5@e-~v-9^=DLPhdeKH|Cs98L)tz!V< zkPLaMh?9JGuS4gF;)95E-&@!g^t0Z)zUPEcsBG{1ir!<@dzQ>?&u?Xz!g)j@Yn^`f zeZUgSBo9UvT0?KPrc$1=L|?j<^ZX8yL?7p4q8Jy@MY1`7+J#<-B}&rsjaG9s*!tz9CLv4bWd27p+%D_tpS9_-({)6{4PzCA^b$YmFs{ zZauYOO=?>%Jfdh>`W?Gqd^F^`c&uY6cw)%);D{Y1kP5NI0G?(;>9CB|;~C{hccfuQ z++IiAyv0J<{%D!&LEF@}0Kn8)L8b!!M&5KjGV;p!>8-&Uyf5cga!rH%eSl1I$Pn;S z+J4d2BkdAOGdk$(2B0>U28T0Y~hRVnEwX1>i(Fm~bkP{i~Fd)y8Az z6-qJ-hNU<0^Lz~7`^y~Ev)GB%eNxc9@5#dYL_4Y?0PZ!XY4IM zbb(sJG0BW#fS<&_R2CObP2ACxMTxx?}qet-5osAIOz=FNAbARh>6$^n|$G08oG4 z{aV&`H`^1e4+o7JLk3N2BZst7+YN;!{9NrUr{IG?8~cj(sOq3&qW?ih=bwy0Tyw>cv-wMB*+p6nf$*>u$yO-cp_EpX;Qe=FX^plG=dz;YXi;+}PXI;Ee{#MQ8FF z?M6cpqVI03-8g%z{n#fXGVIBBx`*%T{QL8XT%4u&VGYg1D3edRf3d(oFIJ(%^tA)f zMwju)WUt=qg(%wV+XwdHnM@tn1;fV30%GV!Txc}svyf9U3C4y zVHquf<;;5vMGUX~j^I|*>dpJ7bgbnxbd~l}o3_Y~~qUFC!0Lu)ZRQeYUB`+8PCa8;x+=BeuN7SO!+xWGZRCbkljZ}a# z1s?e|?xDQX8&|59w*9-q)nSSzbEp>N&MfU}N(zQo#a!7v8;jyHp5VH-_3IL=_@$03 zcVE6?y>#gxW`*b|wkxr(PrQ6S|KR#R6~lisr7uU{tNcf%LbB`4rEh~ws3@+E_Q_k9 z&UsSydb$tk2a631C@DC_?RR&>+IS+e`X@!%9QN^$@N*}^apQFO^PWWJu-~b~bMFZ* zF?ir3=)73~>I@;9h1gg4i?H>CDTY~b+cW~3B#{r1R@?GzspH7yPTFQYn_p%Ua1I5A z^||!Vr!gt_8jgNDZ>G!D1M&f7mHOmK8Gr;semRiNPIHfOt^F`J9|m=Jit>j5W}Z@% z%gf{RO3X&_`UY_J-X3Ey_U}=oNCPpO*lZTLSScqRF#DW*In3Mx^o|BKzOWN~q^kw! zd&uSoC~r_XoNW~sGR|T@%HpB<(@}WoSw%C`#^>%!#QpDw5DYD;^(JQR-N56DmgIY* z`#{KeeItIMc5t&$=9jg7>iT#FB}hU3+1Pq~y)e<8Mh>CSmYogRLyU}+-NOS&W^pUZ zWKCRSO5Rm!#ix`W1*%`4FNPvQ!K3HwuD7S~m@q~nmhB+EPDqFftR~rh5k)jZ8qIlX zAe6FcCPiH;E2>U5s#yGXDZ+Q4hv1)TO{bAJmXqA~xq^(G`rSgd#27` zo3ZFhFP8Gni*IK3Qz{^UI|quMI>v?!6=S-CJPi_w(r3U>gV?l>o8WB=8F|-ZtmS?1 z=IVWLRcj>kv(I&Ji2Urh3*zV6P9=Y1B46gk+q7Wh8M!_aQry z_tE}$7do}(xnAjh`+9O-hyR{nPSmLv|E`stf3Ax+j!i5lOFgrpC8W$cNlcuXK0emz z<`FI+-E-&9JICf%X^0V)@s|~L3r~c1Km0sB{>?3A6d7K*okaFcZDgdTFaNWB>0A;1+DL>KukaWr`kL zjH`aaQ}}}*3wKx9{>IZo&j3w<3LYu8I$e7TQqaG2?n~2>t9zHuR>TzwgC__4EibUZ(nTfIroaC5tqJ{zuHSrd0-8(5#X({E@4+eE$1oc{!n(zR0^fh z)f+XW2xqM1*Tv?SXg#Ty7)0G@hOZTXtVaRL7L4M z2|>sD&tvO>Wg&T-FqNE$>PiWdCNLLVbM~C6#u%CRq)~y>P-|_QZ@Vz{Mn7HK%lYYL(^-1 z7P|7+biOCo!m6Zf)}oL%)Y*!!JoEqhL$E>>Bs{9|?x=rCwlrvBaqb0Wz9RTNpEi(F zcJZ#8HW~}4D+O%|4JKJI39G0Tzxwl6k~`ahQ^fLGSs)1~+oN{4XJsC7LaKFmQ^(Gi zf9s#?t!F!r2=SaDf~%i~8lK^bj2f10T!P?k5HbwjHE)I?7?XnnQ>h8*&q)(i6hJ-E*sn_n?>=MY08W7Ze8Ye05Yu+btKp^50A4VM|1`G)0K_8qfES2ES1)N23d z!nY|{O+ige!R}wuN;RgePUU>2g4FHWM<*7QP&b(8d2D$Qa`1JU5J4BxD7-;xTZ)rAtxEEhW541|`-99Qm6u?1+aGTG{Su@`jgQYFLkx48@^K$)Vc$&`zd z0iFDBL?jQHlUsOFi#)?%Sp_!>`yT9M)53*pA-VP_wmC4@z2EW&(kE6WzGW(uK4OE_ zS1xfs(us_+6M+%TJBuF(*%HFA>w;u^R7jp`9SToVELOHBhZ};RtNm=v5_sb-)UbgA z?0Ayh-qn+O4VmZlwr5PVKt>DgOyb+}m$z~&4l9IdHo}lY@1TWj!0ZQ_oKE-}7abe| z`HLl*s8*l4!x*j;n0(0k@51|E1sQwh2uz6A&~Lo3tr|Fb?yX18&{hlH{i%~aYe!VH za?q+?5J+f`Fm-o|(bIZWn9(sV*Zv^9g&?htscjk5I86~0yvAgFw&*bFOINW>B-a%*UMGFbjyPA1TF}jGYEBh96?|rL7wKHU*!VL6vhetaq z?~s!qGz@4PV2d6|*XVm8zMMMwKAgrRO}_8j-D|z^v`J^mUg4J^WQDyiyk|j2Yh&|y z)x;ceEKH4LvcFC}T~=U;q)7=BOtK9n@)Wpfg%~1Kt(TEo5_p$cGo>UI1UaELn3VOm z(-)@Z#W0=haw}_aA(tiFgQL=Y=1@>P;g_P?c2cqFU#IldxrE(>*uQH_I;gbR1U(x6$bFw3lY|Fc_0~UiwouXy?@WbwSkk z3{X*~#fxJ>x&}Q?*oB`G&0?}fGm4rv>$H#o;dm*;?p(fHa1~*VZ_gG?7beHYhO)A$ z`|dqab~<zJH~tR%+w?AOa+Q~yqho1vLv{2vF7JsIk3Cf93LoeUE$5x zet@xWsWmR*(NV5vBqNtR`uCv^MA@%hVt)YsH@a?}WP+#~b@!7x?)r)Z_$ zl}b8{pGlzuB?@PIq2r=uOHF`Z>fMoqtZwDd(+)7E52qm2q6dJ(kRh|DzQQ9W4ZG}r zRy)q>wuY3Zd%G?!=$YM;8l#m_2P=NI^7Azfad$qLc!=yZP)c}9$Ty>ie*DXGkIW-b z#uFmb3D|*OpQmZCtG8kSTA$R5_ZiEWgo!J!VR@tZs}zqimVG=Kk?XjD3o> zTiFP}6R@tN5-;~uN^feVuL?O&>aYP!$7jg}5?Itd6?x7}Igd zZ4}{V5v$c(g^V4|X0lV&;bN!;{pJZpu-dD$d(H3$_ zGIg6JX}sEGTQuDCn{!yw%&iiPS0+b0+~#3OUz5G1N(6Vtkkx7?rX|i>tm8<{>=1C?+nn5xzm2ACtZGxNBGg& zMjrLK*S8yfOP7lv(z;qWq{2>d-yQ<#c!^&k0#4dndoYy{4Q|0OX>kXW%UeF*j`3f+ z-U<+6N~#5$35!{7;Ce7w9t1sa`}W-D(Z5JykPXJ9HIrZM;;(~QF*QZl(fKEq*ElY` z>lGB|iPWdCp)OKsvb7n* z+9$VOYNC}Qt5iSeZ?a(hXlr^S0JB?aA9t+6z-y=kA3I>E%3}u>Fsa#SnAOq^7F`ZO z5_6@6pes2ukV%RGZ_qDhA$8NQv?;iLiTup~J=qV;*$@73ehhw^ZT^J>b<@@cmYt84X*>y7ztACV5d~~wS%R?1D=uNqV<~Ht`3T^eAhq*-j`6+XnCFryz z{E;Uss3lpoT8L`5J1a1``nq*@atr?hjzk786z+TDY2L1w%0JDIsc<{;7`y7~3+W12 z{8w6ZY+B65K!K`!S4(_2iRm9lHQ&KbR^`!Lzs}IO3f|UBzsfP>qIiE59w{gC!-h zYm>roZwso`SzPSyPF>>+M$K|asovKKgKE%T4iOmV1u`rXvg)i#;G>e-ifTjKE`RQ| zX`YS{J}&(65%7_u#1A=1tnGV8pu&t2n|_(M-3deNrUtldgik$x2?H6dZnKN?$-xy( zl%+4H{A4NyeF}KD-N6TQwTF&!zRNbI&&ykf$y7mZEp3!B!!CCc;!^y8^SAu%-Wxv47u=H_cmqtdA6b=!%3L52=k~`gw$4b=2(6 zuXm7|I%09KhJvae-SDX&n{Z3iA>6r7easW|sC3XSX!=MbvEMHiXMS&Ic|IJfE(8Mi ze81w!c3P?)6!nOFKgfLI2lY}nr+dXx!rVlwDKpgL4IXaEBr9pc z?q@aYoZc6%TT}2yj*;Lh6Frqf`y*FIq?cAofCWagu3=K*_1J4^^V-4~8VMfQR|MTL z-jcbyMn))A$@Hb9RV27b;6geBp*u9PFR5Y7ohE~rms-KkI+VJt<%y{+-&dl=^<3l; zlpTq7tI&9eJs@*_+*_w=8jfnRtGH*3Nr0(KFNX9cF`xW*M-@;-f+|fU_)aNqXL@6= zzLb`_SEsfhQr4il1{*7_D5UaEY{?XI28}j=VPpI^r0kFJ*%}8O{=9wa1*C&nUunJV zwA=R|HY_=_X^8#s0xWOwcR1zIaTh0!#HIi>er={IU7N!E z&b0n4j^t$O$e8qN(qaEaNEnq+V%SG#fTY4Cr`XPI&Qla&zlPl~TMvcQqhK&&%f}^q zLK$7xR1eWcZ3k+zY2dugrz)cSAo&-NFetaJPR$G0g4Q&z99c83jCK({IZ)Q}kK|-X z==e(eoAffg`?I3chdyNz9E}U-&rFyo6aL`}ql&ZK`Kk4vSlh7SACK*=6F^?idgTtt zdP>(Vy5)!%sH|@t-kCbJH-}{FSGdcj??QiK-vj8RWt7{M0D9ZwHH9(4_f=s zuKY~NDka>TQKcG|?+?^;Ijb{0pCz-cgsFn=DP;;?kIImu@Gm~m4*GT^TEV-jN--BP2~@~PFp-Rlagjm?lUCL!K$sl`zRNfxY=KPb^*1*X za{NK~DREZBNWOs%5m%mnt&W+@miE;kaT zM0D+}Pk)Nm8VT0nq3$WF_}uI7{vKPmWo|wdDsz_Uq0Ezwfl-QG7|iip#qpCM52t1{ z+}far>GON3tfA(Tr=P!LMb|DiI5l*-50`7c4<9H1o3H-KMDMyHT5L0x+@uPCS58vx zhjmTLiYtTnc^=WF#@jaP1{=A}vMmasjN0rCaRdYRj`&YfA};b$bcRzbYi@V zCNQbyEnfuX@j-QbruAyY$*f`I@l7C_oY*msp%cvTaxWx8m`+Z=EqTUe zQIvw9=KMYG!EPIMe_{$a%4G4Y5#ZU!Q}f=8=}()VmEJ5l?u|~H;c4hSblp*oc>Iy4 z$F_*9=i7yHkH1Xcrb&pj@BEo(*N{L?`DGiBA2DIPi9FToH_AyPkT3kJu`ru7VymAj zbR?(YfOCzbliH*(_-LUk?s-WhP4wfsfA2`XlrWlLIFQjTYTfyC2>2)Kf2TX)14wxzWXd%}_VD(u z4j620G8w|EyEGuOIES5K)sCm!OsEi7Hd@sw z&Ueb}zcxrI*k&%f5b9oKktdsRc{WS_m|Ex(kx4?e-#m+N=lGs+vK7Vj*!CB(OB@+H zGdN~g$7ss)1suD6*8S7kB)El09I?@cBU6$`i)Z9Z0>?yvp?O@m33KkW1R_`$VVel? zasC+C%CD*QR<%I2Xef^`UudK|WxwiFyWr_=?k>gSb@57h!$OIBYI@<$!OjrAZhI?q zA8Ie`%ditmzqQpIH@fBVzwg}jE2|T{FCa#0PpUs7_Vz-h4~9ZfesFwr7)#xuXwRv- zXIy^|?p}j4f97B}p7kvYnwVMdH$pT3uaW-sCziWZb*I#W&q+ZO7iI+qns%EvGefZZ z)jQUqDRsGk=*FyF5%`YJGR)Wecq+!7;Z=_jqA3cyS<+PwVFhNBd9p)U-SxTFqgR{8 z_H@c9-mKNIE+DDO^J$@9VEDphn8C# z0=Dj@E@qMqLKHfoaXt@P)htHo?dM;r@mcmF5!V)~9u++`-W%{485Y`a+K7HXNY}nx7m}$fbT**3Tm=_aJRLZ|t{<2-=O?G>V zQ4n)}g6BM92lVdrbzkjUsd@sIBIvNBF9L7S4WLh(qq;@MGI@2#(k*J+GgT_en2#skXVkLNJisz?7MPyl_6V0V*NRh@K z*Q~>S`~2B|3y?=w_O~FGAnqFuT>?@cwbM?to`*KJs7JEG@CE+L$i})jnC0ppmZr(z zb?V9j3{zvmE4~2DsFH5fB|~;>l1rb~flX%nQcC+JA?5>1tv_n^qA7u-CZ7k^rOI-Q zSEhc!L|iGsJEUqWFsW=uvfc{0McIe~V+zNRHZ-S#pk!I7(o82@t`~!`TaY7m4N4#r z)-xp?^7j+1otkRgBJSc#ySNBQ>{i9C_Tu#Sx~T}X)h)jlp+N-CzX&fc)OSS zYaXF)SMdSf2d$BVPtFxD}+A8qFPlu|bf%b=D8_NB-M)>&1% z*ASV|$4hiBx{f#;yIY-3i8yJ?;Zev0Qz~$(xM?h=sJ0>pT5hZ7KZ9z;^)+0(;=Zy8!&q_|mwOfysk^Av$kL1zzXC7&4 z+L58Nzrjzs_7WQ425%KqT-S26Rb4Ai9#VBB*Rq(D4K|qXc{1H&z}Dl*XTRsCHc{E< zb2)=S5-&`DNsfV(WUOA7S)7f-7atUb$VjTzC99|A51rjRud?uJ`xl2jDky!<|7qNH z<|olpr`Y~){`~g>Q;%)nf*#_NWzVosz)=09JW(#{o8M3bPe>g{`v-G&Gs*jLz(8kR z4Z%zWjp*vbeJK#b6uLN>@9A0->3w4@i=E}X8F$3b(!?YMhf<2$$MTI-+$cM%IA!#h z8gOeD#Svs$^te4HrDXBvNUb3;G9a54{N9VSp+q+NLJj=bu*_m%uOeIuA*+1!84opb z7bqjZ&caj-MQ{VYNh#d+?zmawAy0f4)=;K?IgN+XW%Fh9?$p@QUTp)aHhrk1VeH5K zjBEJka!Uw6bt0ykKchUIiO$x?CzFj(6FG%lQefrRO~-dLUspe!KN;sbj}d3lWm0$4 zOd@0z@R>TkOyjBpnYz@*?w!VxV5`S$;>})CDyG3KsG0jGGx|BC{&YgeSRiprAz>z? zn-u$Pkkz*?9y4`GR2e)H4vAmM9S9ee%I|P+!r>}nKxP&OBAHPYlp7qjx|@-~%>vKS za-gC+>gjZBJ|FCJpHt^q^)PWG=Fgc1Y}!?D_OLTL(@7Ko5A>GA>T&Ef48hQP1<+>* zs<@$qMUryxopm{(v2~o4eeY_cUs+YD$)pPNe*D_<=6&x6w*OsvtmiHrtO*}_+JFPT zanj1Yd%Sm65^goqI^T#2YmGfbb*bU28NL(N)J+BA!WL>Xz=e}sz9|NH2_at(q^WI> zEk8*t`CG&AsHIH!uc%s;)=3h(NL#Y16CtJCdqQvBM_^+X6ipLV?bKYUx}wJVd1%nc z8#rT4QrI9^>q*eHE$?FL*qno*YI{aK|2mJ;P0HePhW83fk678}J&Ag&ijC^)aXb^g zqVCu(p*yW{{vf$5SzF1yQnZLS$D?D$nx{p;m#{A(9olXD)9=5OBr(4u)GZPu!7D*Z z>xfHy7eTUNlCnlXd=<@Pp_rw|tq)S! zpaKv!NnENahBl5uCoSGqce0C^d>nEjN%teVzcg9QLFP~JXTkvDcaWMZ$Pl)Ge=e6|K~1Gzq#TO<81ZhTa`1GCChp#7ETls&|1{n@{kVR9L;4a zq%JP32dM1pSyN4;gU0^|IaB91mVawgmqDDryP{6TVJptn*|q z`d*A{7@Z*w(Xo}P&O?d`4SP|2+zb$Q%Jbs;BK(9pVOP_L0UJWHf-yx77;=+x5F#gHImS^cP4nog<1F>q;v@?Khnp}g-& zKK&}VLJQqPS3W+p)Q2=Jz?zH+YX9RG=c-vs~8UvR;XoWR3Id)#ww?6jo1Cbo7 zKmGll7z$bI3qgGGUOQR7%W?i<0Eu5Vz?w2m3Bq$6W+V(MboVu%sy7vKzFJE+_2ziRpo6F*xL#C9_qDVia?r z6{ehXRl@hGnhBF>siiuuSZub7SyiUtor*n0Q`L1obkbe2Zf-zKfeNnK=#~K#JPGslss(WJTo-2LC zdFZud!KQ0PDsIeGd1Yf`TLm-reoC`o)TJU(&158Sgq{$sD=Mk_rQI9ZU9XBXs^Za> z#gElZlro$UU9_wC!tGx|?)(geyIUsoF&AsYgG)L)QJz)%qYMhzjkjrref4Gvv#}y)h(1If~Qco zeep0~f$4!~{DaEt5I3d7#+{m-oI=#k4eL(-JSyEF6dP)`o5kPMrug#Ti2vxiIwi$? zLE9Qyf@P_4T`~@mzYamBrqA}NX*U9$9poT0izR0yzuI_Ysq4=6P_TO+I(A-k!ushX z-c|K>r}dmF>9vqig@KRkG9ZL+?ztoo8Er(-`r5jQHu_|#P*b~is_RlwoehRAgD-Sx z0EAgh5#EhQQDPIW0~?*YFjo=YDc4qd^_$yTxL}zsLzKx{mdd0o&DC!?XR=?xG9_`V zYk!m0x73-yf1o`nO3t#XI=EFHS~QhU<-J4tSjU-kT04TXSyF^Otpx{FGKQNia5O$x z291vDO6n)_*Ettr;1&$37^xp_RdgraQG^XwbkBjNHB$OkjolE|%+bV*b;6T6&%-`O zaJ;wULx)MeQt`m9=2stoFFAHl!5t9ORQ-uV9V;3z!)|a0f>?3Gk@)QoqpZ`{Y;}?7 z&ua~6`;38I86|2{70*>%5#A6wIk<((Fqss3kywM{iuv#Eb?OE0W#$Xd-wMrQ>{%x4 z%f+TDavGvb7Q5JQiJo@m74NKOB&nUSnlMBbuBR0=JY}zScM00@#!n9^%-lzfe7k$L zXa_dYvr?5&m)Gwc+0`)wMFK506vFa-*E7B&Y5Qw4yNv+{0i>GlmEJGEv)?^wEQ`j< zV9m;6MoV)fy0$ceZ7EA8P5iAHUAP0;jn0(9v4HxCn(gdFgCI^@7@v+*L7Kt@>p4(r z5?9Ojb4aE5*ur%I0~Pk7Q9}7(!T_PNq=SLI;kw1CM2ax9)*w}HGs+G`)bmP0he3u_ zNqAPcyoVDQRAgVAWZ?{%_x>7qz-()+BLZ|=gz@=)Sqeca@Tqc$%a>p{4rnv{O#v^B zRBSmAt5sMmx-q6azXdDVEP=4*Tbm7GD%c$5kc7hw9E{}6cjk-BEuw=YTh*8#hUgUT zTRYA}Hv2vZR7bX1>Asl~t(O{~I5MpL_*V#P8wWPTip~H3M_1FY-h#q$N~=nrQvDGZ znwO|VSNp4&!fnH%cCt6p#p+@0=y#lBf3Wsk2%5hY(H&$C+!#W|;#yum{p#Hmq)j!< zNU2J7I{`+;cbJXY2-1F6tJrLi`r~_rIQHv}I0DxC`5 z-iQKRayq!luyHCIw}Xu(sDvgO%pB|c=_m6)T2$peZ!G- zCi9HF>G0nYIPNE%Co}3y!-7yS9~#h;ck=A^D)(AAH|4^lLE@Co2f%S7{a*Jws5qJL zO@jXP881CvkIEBiPExq!`G|cRkdgBe%Nts>l6Z7AYBWHVZ)VC$`1MNBP+WX;nX1gF z%g`wG;9-b2AS72Qs@_-n&oOZQibwo|OfH{TOMzP_aT_F>70WI4v1?^=BZbS7YJGC9 z$?mAHq2#PSh)Tl7^7)Ul3wO~a^bQ<1!$*afBX!sVI72KfAopw)eA6#=x%9|_rgynF~KN(Hf&p0K4?R}mqp6X&(@TL}X& zlk4>lG7t2vBOBJ0!5Eh;*{y~}CAAZyY75$>eh@f*(8Tqrlq7Ox@|OuVW-xv!yu-cZf@^TJC+W90?Kk zZ+D{Rms_b4qMK=V8rPMlVJzjKEUzj)sS@d|rZ)FxB1T;b4jb`PWrE;OT&E8h2+WQF z+U%G!uJD?nQzl7h`ixZR={+XSFss-uEGuo0{S$lOu8~G?>{w5 zq}|Sx++a!46<*chex#{dvoHVN2@EKP``@SVty#Nnw-1JBhx8UQg#p zV=kVFk^`Q0$-If1dQz&r4X*G3%TuL>{xdjkb@YXq`nsKbddJ<216}i>fza-MY<|1D z7JQ6zdD{#s)K!1z`QMMO={_sLmh$yh=i;g|8acx5tTlFWE9fL5_3!%yD&s+$N{3cn z#i^;T)Me|PY&WgR#bP@xxndk~*Mz;HN=4)AQbrYuSS3xI4SC4RNLX+PGU*78D^tXG zC8d<6{O-2y3r`qV72@J?h-nfv>fE7+x6+}(MHOtR`VV(M-ai=n!u;MTYIn8^ap3ig zRi6neA+hph;rLg=?bGU#u7|uNf+WL9JvoY(Gy=W;2$r`LoE>HwpO1z!DU>LkwA zProjw`}FAqxz;1x*qyaRs;pKvg>U9P| zf*2{}V8Wzops>muz>Ly0=CF;*l}m~~Bj>u+RapeeVSV&A-){S9yqW`_>vZBi8vI#XzpKv9B zf0p^pVN+uP1;)g+#oBf;em@#wV{UuC(@-gUIj7xQ5$O|~yF`j3V7+?^X8ZU_`-Ldu zs3~fFGLERo&|r{OBFsx&OYE!iXwK$=Di#@J4VR#U*xT-qU4_nA|N7X$!-$E^KQQ4C z9=f2i5!E|emaZH!==1#qrq8mW=9vY3AHm6F49LLbQeoheo zCk;67o5dwe*m8mB>pZ@?PFJd6T2G!{oXs(5F=hhFov}NH4mVXw(f!g%6T0~BiqYxk z=!k8xkf$(*YDhB_WDvw{_?X{QFP-_G!Sop=ZaC1_^Pc}7P0Xx4ZQ~vV@MuB#blOky z+vkl^tXu6d?$skgLp(sHfc>Q5{|@+Q{I~{;1^&}lbMDmF@+-z{ciT%wb4u8E!?$fc zhR#nLZ26x=oa^NGBN+AQK1&@Zkz$>4DhkKM5%yKmD!n=AF5<-{M#i57JPy2We|5C~ z6mg^V?ms|li_Er(05mS8QK&QBUz&y`1}hTj^FOPe#IA(YkQ-&mny?zwohI6Q7_!U? z2|PHJsHJi5iP<6h*+zYpD&_XYs!m^AhJ~4tY(^b;;f*eyb7|z~8Wgb+9YSo|uu?4u zJ*T!Oc{wL!E2jcNw!dvK7XG{XH`hZCBO8#uXE0#er*rcKBr)#8-YymkD&1_j7#POP zTq=6=g&ETWnGsd~Fm!YHPZr(Fi5Hurx=g9;?qDDKp5#*yEScuv3*;a}$!g6&pGzqy zt0MR^?{)MG(x4hjK2x%0mq}NG$+W5jg(rhsXCSMnGh3is?c!XT)OHjTd(mR~`he@< zBYU(GU#^_Glk0BA-`3Ut<;)|IM&qi&`oD7EL)KVtR#_}lEKlE@+h=Nk zWv7{9$aMW=n)}emGl(xaaVN-ie(mYix*|i8*l4B3LzU8;z~2m!pang)DSDr`q+-&5 zRP@RLq;@|sCIChZ)@v`CMVm1i<&>?5^$KVW(ker+i5cVwGLeRH(N1;vpY)IZ8eKdpWO2M@dGG#r`Yay_4K0Z)x zL1V+^fyfWIGEq$w_}vTS;~7t>Yj`4ep;zr7vIa*vtuB7fC51s-12og}8m=C|0hN zBurG|KxLr(QAw#0gAk@N3sXz+XBZfC2?czGA{j6kzK%om5*lt^#AVCJC=y~X`o&bp zVJt~zgBp;l3IC6(w+?9XZ{NSKk6^D$?B`0|`+=Bqat65J~9~0wbh5 zM@R}tDMLb}TS{Vd^IUv?_vdrp&tLonY`f0A-)9`h>r}SUdr_GH6zUg^#8wq$7)x_< zwiXg;t2sm$Yn4>?-bch%c!h;$qjcevq8A}|i*g^O+v4SXEq(jr9~MBsa;O8+^CG@1 zp2m<9ijO%Ag2Pz-HSy2`TFu;K6=*&$oeRww$vu|5i$X8?CIQQ3FMhid9p*|_*F$jT zYkO!&@#CMAomLQ!{DI7s)`TJO+m)Xom|`)??bXfg4zVWjqnzfuNoFhmPYb1bGE%Hc^AICtONFCx?L+5^u&(xWt5QDjM$@b1;kyp1Vrs1s%X?O2 zdMQ_O+$)u*e7(};U|i(;d4n*f=__4zr_9BIOl1zIS~>US)jB&|07IiW4jczMdr5y5 zkl8eAL_hb^?8y;GK7xkpH}%@kDH(O%K^3Hh1tUg;iDG*Ut+jAzG@r447rS<4WIa=F z_ywlK!_rC%@mU9Ci(W;0OUJ)!(ijUpKqzsAMaFt)E^*Q>HQ{g1narH%SN_?{7JxP> za|W{)9ZGb$oUg@IdTg3`Ci2Ow20J`>Tu7T^YRjm)WUXM-EG%PGik)(5!uHVV9#486 zP-K59Hug)By@xrE$!HE!Zl!CDkN7OZ`6>&gyIm7j2+Fgx06<%S+^Wr00bKOr+s#l%z;yi4_Uj;_+HR(pt`Wmn0 z>6|_8FEv$mYD}EX7BTVVCOqFZl)Xv^ioh#o*BdCr zCE{faXiXRF$n$@x>Cc0a>9I)eo9rmBjmB5W)Q-mQ_K3+$`rX(q_o=_>+I1B}U9uE4 z|HhC29`F>9)bRL9OMgWW-nrTkS?96$nYHQYeCF~z^@wFX|5Z8udH=iSDv#-1bnT|!TTKpl3x*l8``JtoftGCStX+|<4&tBw>|v;Nj&(5vm` zbs(o$4J!z(Nt4z}&VGG}w0ap`APX$FICk~S@?&0iu(UHTohBsHBF(yLPp zp*_!Z5j;|R-om5nodFJa%Y65X7(lJU>2o*HGKq@=$4hq{Xb_Ed5DH#ZCiY*Z(jg~0 zye4~awO~2i@3huW#mD~D(9GG7nZ@-0CBZT>SDF0+4WXEnJug^Vuz+blxOS#Tz4FTZ z6Q0<($XRvBD_ur~*4E%36D2J_1XrBri65ghemY?I4}Je2mLP2_+;|}c_$gP;=Wv6j zH9c*U&kbd8Z!f7^j()<7nlTh0^GnqXKo%3RpR4Z_J<>)%(ZS%owa=6Yu&NGOgsTb)C}V1QXVgbZ7g` zjqo=I-tydGeXAEs-UA!dk37Hh4*a9Wy-EG3;_m;owsE^Mm%HIxmls=DC6OXYLlh3I zupb$CP2wWoElyx9X*ej}-rNQ>E50rZC)R&oJgot(g7eym4Z19@5<)h@s=Z|{Y3uiV zaSVRA^0twPo@b&CI|rWA6mz4H^ge0qA{j6To+LZ-SBKY)F0^#qZF9lV!`i!{D6f0@z5yCW;9bTw(??}H}d<*WQ zV=5nUsWYmm+x4TqOl2I6^=N_f>W`mWr_Ea?lgIt<;FBxQ#Egseie|cb?J2G@?wli?=aVkuB+!5BI43K_vQO8Ts~^cVW)9|SBBf*e8;Td@4L+3 z{Uhy*i9KtUEW1gB*zoLz_^mNzoBrCxRl$q7Cl?vg=>_JM=&dyaQO%yGVk2|zBN&@e zJC*%8>%&Z`J;m5fn;!`_x5KOKOrh79;);OR9G0R2l7nv=opg142 z<~I>3S9n2p`$`82_wh#cE+ zBu{Ve?x*Fj4vaMAGb~E?4)&Bd-}!A}3Hq^s!DGUKr>D++=>U&bsu$W>P0G&CbY%>S zo0>kY-RW*mz-VkeEa!=G-M-RB%?dI8J8R}PB;a?i2*2;U670(ZfxclDTpAy3J_tau z09>ODziNH~cV!tcABF0yTie+Z9Mz3_viHWYzM^gXN5$9XO+1j?$iyohpLq8RH!LB; z^Jq6A|Cf60SI0(bcg5PZSyFFSjyYCMGE>CGEY-zqfa3w^cvlhdJqq@FRFtPy{ZVvK zA7Hhr)(8~U7u95#{mKo)g{HQ;q$6E97JuV^&vXe@dH&dh;+MW{gltm6^@8?8qZ!6hJ8z9Wfn&2i_qJH`&p-3% z-^TuaG?)$&^FSpk2i;WQhoR?!P%Dx5s^-g6Dq3<3a{HcbEWeY*V?1kXDr}HM)A?c! z6(_X{THL84@?apHql+6G3A-!3h~T3#yV#aTH$S--DhYNuuOE(6a(S)wsV+9Ai?n5F z$W2i)a=qzz@B74LgnJl1F1O>Zb>O|6Jn)PwV-lZM2%-Ir+imD&3DdC1?7kf9T>Vdt zmCL;+7QwJ{(~TW>ofaCzrvE7QhGqnlRi?vH7lTjm$vkvi&!0KSF@PQ>DOR-1G3#**Yx2B$OBdRM_DlVHzkODV{-#Grb-zp*O&Kht zrSYBiuO>}mq0buZUEFc6&jzrHE6#To#BpA1ksU$5J!RS$wiLWtmL7gvGP|AsW-76_ zI&nFBlmbUxp6Nb7G`+r3d!&nqDe~)0x94$j+^Z=vJ72TIes!~sN{e08Y|+5w7!<63 zc_UEfmDZcSZgY-n{6&N1@(4;IM>RkU9XV7!G=nbXYSqvlpo`3 z*D3#hEo6EKR||RN^vSPU{)^T0i`Q*XJ|Z4+wlV#^hS4T|;s@JFn&*oe7gq33A(vA# z=cWOGYPaFXPPX74n!r|XFux$-Z#_*;KTb}a6q2*}atGgtsIGY0!cEtdMq@YnveWEL zUi~`ccDeZZ-jGh>!9X)8zNZjBw*1=p^x%(J%key>wrS%*jD=>;`{aWr&=~l`F^2V^ zJebp3wzrU*%S`nm*>z?wSL}zkZ^vC0A+@)!MetPt=w8x_Q2xagY^IT$3uP~7WsbGN zI~VDHba$!dbHzTMDVLxsrs6y_{V254;f+g*?o!GN%!9AQ@$=$uu`=gFGHDw{7d)rP zIPaxo9C`VY_|(RmcPgwM5hT(R{Z||f=$0O)`uu7k>inqh#%Sd<$OuRim%Gd{JIO(O zC_DsBPl}k!@1S&-JR??MyjA+GpA_vpA@J_-%Z!iHNDj;fCjtGXk_?W9xKnw zMwS(o;!h1DC2vsfQsGy=`7uf~A&EKlOlr}$^#BZR{6!9JoY$oRKT@g9uK0F)opp)$ZY%li z8~C9zcCnyu>SglsmK&{@zDd)SeYyGZRCgIDF1`Q8?{s2Wgsp$r4O9-^w_s25VPX+# z*e`KxsvG<9MpW(9iiuQul<(f>*Wof~GPc`2>*~*ryTn}@b0Mua!dXu%SWPCc^moE* z)pQxbBx0>%*!7qwgw=u3G^pHdMUV29rKe0Ta*e^(^v}CJr-l+=-z6zWjVATi{1nNf z+GgpJ-u?7CZlijR6@lR&vhifi)W~pYIh_))L{gq7`BL1Zx*kEX6?F)5h$_!lw(tFZ z+?zJQBpC!$SO%46zndgHXm6#n3<8@6!dijJc5B|q?x`HW9=C06%O zGw66TxTh|?KTI&vafliAT@uC~+Jg?T)!y3iph&A;6@>$SvjzF*QazN>VT(h~JEbL+ zt~4Q!iPL+YGS)#!h4?6jm4h)&9Z7twc5Xc4v@{&A%`i$ka8>czpwr(5GEoJ>z z4&aWpSfe+$A}-3g-zo>_qu-=pt?&zvRMn04W?s|j{fd6)o=_)y9H4^id=<`j-fg+OmC!Sl}I4}D0GL&vsBhg)|Yc&|>Fl=DL&a?-GaOCy0 z9+zkd8$C4)C`BQ%OwFeigc_K%IWC~3I+}X4rCqs{;nqpebhlqd^>mJmvy1$OzWE7Uebknf}VwPkUs}NOLxg4ACR9 zPrf2ReF~fhYlZ36;840iMJ}J}Ed{?lg(^4~PBr>99~)h051ib>CF|fz%jp;Kp9>e| zem}$E@w83=J6D71HV7CRUF=9Fxf|*a3)U2oTl~(?RS5_n?VkfgVw)q`V#-&txM6y_oBm0^Lq-T*kT_;aSs06><{ft3NSRx0!zHZ~*; zAKOi&u-x)RNIg+@yyrpu9KN>T3!->SHjS^5HsOx4?3`noxiY{jL7~sgdt~|_-(sVSsJ^*46fS^yMS;bGE^lW7t$1wUQR13A z-pAP}v>=z=VwcBo#@?;?EYW3h^Q5vpo?0zueJ!c8lvoH%_P#l7ob&uTiCIS)jJW)p zNISYYcl5zYcrENSz?(-O)}H7L}H4G!%r@Wb@9mKS)9J5?=|}F;B|r@guwiH z&>;kFhdgcE^t`|0OPSwG?>KExFN5aAL9P>SYo=yA2WkWR)&C}ib0z#~8J6H}DKdCb)ZB~T?v zeN2VkTX0cQ>!H)rI@FeeRmBrnRd5P=ylzkAFxKJ>YYx-_QlWeTZ^IhcH(t}B^4H$) zu#oU@-uB_HJ?%Vo#sP^0i*+&+VscSXLiTKax6IW6jnA}j9Qoj z-N>Gu-!`M804xg3zFi@iim0&BqtzKRTC_r<^UA!WWtU6f$KoMJotYCM+q=y21nLr` z6EFT}j`mdn>3@%wkqfE%-S9{2A`2VRU(^I)nATw>UzBj;fql)_;2w4)6|FXg@%8m= zf7&=EgdEByKqhgZGoj~>*YoNq5(ZknR^pnd5t`~`41O5T9pVS(f|RZAWn>{l1GQhK zHk`9$rLR%}mmF$$+pViO;5f?AlN!dpXOi{rc?8fjOo};JSt!G2#v257RHX{YO#gO^ z^jLqr#`d)F6|F-KKLF`1zWqY8%zdseZvMNtd`FPz_VZWVPA?y-Gkg51JpIEm*56Th zgOlqXqDqaqdL|ChcG>xekNhpc^>A(dbKEwZD#Bd3ZlK|mk5 z;a4cLg}+}D3vZQeuNk)6s7EPc&+AXklbN~mu;obUjgc_1k{NUwY>FZcH&7%+sES@xcS$U7TNrPGjF0*Hf6s2huDATZrQa!}FKzIlm zQ&f(C5X*;*hfk(Df<{@lf;tkOUJ~uSR1rH=W!@7%DMVh|^LRE%Y)&uB;(*s!Quc23 zu|Pz&yWG2`SD;X$=kJs5Ks0(^_(naY%I^n%vhnZob9AWe|2<4WII2b$LiFt3fU++| zlJWpim^mt4^5N3zXu_b)-d)T&r{rRxjV+fj|A`4lkCEKNCF*VX`_yLTERE_j?en|6 zeLz93^W^R)s=pOWO#`%B6u2B&mdgH9#qP1qL^D@F*$JWyfgh7XcaZ9h44tSbBuqU3 z?~F(=$85i^#Mf9nh%!Sj+g@ie?%6Si&m11mFMlgTxdAViKsS_~N-&JC($k{>!4Kqi z5GQ37-#8w&E6VxRpFKzlUcWt7A7Q2bdV)PglPkkSV&hxEr%d|B1%4+YIxRtKu~e%H z_3LI{fo~#Zn`!O!Zw>y_xV!pUe@#&9g?6WGP#ZMRm@5(X)8g@W^N$cFT4|r5p4r5n zLK-h}jJNrF*U0ySqBI-$*Ub0hYony%gvYz+(?)DjCvI8&*%Ykgsy_2Ueq7b#g&{)t zaIOs1-@xQBkv_j*h~;+wQ$L+Sa}C{w9r@&=s!zd6UMZ@I_ld_0p=WzoJ;yZ=Mw#ulBC>apH)&*b z1#o|XXhWxV0T|wU;h!%m)l3>4_9WMkc{lOc%ca9klDct|0A0R;!)G{G0DxB=iUCd_ zkFNnw5;1@)PkqzkFt&;~yMuuNOB_v*=GDWXdl5n{dy5UZi7$Ts@$`lK?DN6!TH%Sajh4QjI!2uUGKE?IP&3806B=n}&`J{E1YE#H!>H#_rUXK5^pUVOqw z$h)AS>kd^hLmbLQc;?P)QQ?NXuT^9U{G72%DW5xj8`W6$OB5ibSl*t+W%VS@a-95DYKN@Z)d@4aXI!3 zoOZF(4sgI9Sk3nk8U4vTCA_e)t&0!4BeOTn@NDDOqMe0+Z0lQ*G-`tF_z{J_iBck* zI}od!h~~%hx8z|(QSQs6eB-QJ4&L30jl>V%Lf1p3PVAQTwJ4iNI>My*N(8x=k_{mP zn>hH>FyACMJdk;&1n4c+#}nr(zc>nM40e++1G|kG&$EeiGozX&)D}qg9$;o&!Vv@3 zdpK#?f($aA0*JOPS+Ue3X5YBB-7{V8EeZ~QU84{`yzKEc-ikO3jtaQpJ7}=T;5Q@7 zr*$hRVzCYk%Lmfx6nhU}L74`Bt`*rw!SM$(1^9Rcm{FVzW=k15jS*s% zlF!TmT}dL_{Qp|Ehe6oQi-7Lz51}{W?s$B<-TL9MY7`$ln}2WpRJk(qE+ zBgu*h@<~{POPKPVdsVvuyQJ!$>Igok%Sl!eSezmkL2++k1NkqX$M;w#Km(zCx+p$r zd8OQbAC-f}e82RIg$g&;-^Wi450JsCilzpzMGfn*R^kvZ(0ml%dZU#ANekR|h)+B1 zNDyYDErPwGIu8oHLCa!BsIyUS-FeN25*fYgykZIHrdsEcka;yI__3&-BrDQBvFOY36$af~)8_9rl7r0{;d(xa%LR?KdAYCZaSPYvKJHD(oJ58XQ0_K^Oy%x2o@zid1q zAhTkzm4RAYfJ@>2dTbVF6qkvd*zVtvk%qR|7P&S~4mq(LKAorsu)w(OyiYPr?b3Z_ zF_cWmAflo~Vms-5)yEjUust1k`&!w^hu@mq8F*Vhjqa#dj@XvPENSND%w_9C5WHl$ z;1$0N>WgyTy(;AIzax=H=2rrT@h9yO`<*OiNae(ZZdIlc2D6O-xm0e7 z3j_Mb@|@<%4e>^DBS)SB#kpbeoU(c5<|7{H2J#+f_^3*~R#Dqd@;DJ2)+07qEKbM=@o~nl zpEj*jn8s`fsm>QQm)Yj;@AdA(v!A3SBZ1r3&Cr1~w9FW@!31${*W?v^QDBYdCmb=K zA~Ec{#x_TV#`hY0G2eRT$yx-DW6)~>!aaYaSTL#;SwSQ+LKfGl%yk`j ziYQi0FHc6XdT&*;UyIq;o-dhQSfg|9misHwAFcuTLIGVOU#WboYK)hlUv7)^u4od2 zwU_7$d|Q4;g5xd=@U{c5mGU~FbiXhAg>nrXCm%}T-Z5gp19>(OC9S{c*5k`y>{Cav zOof|t`@_)6dX6{yBX0BaH${nIxtR`zIERzlB(TG;RXF!<_4u0r+wubTYh>jaE6&5DBzYJY^zxLY(&9x@ai0I$7!W~ie3&~>?zOn&%7cCHeB1lGwMFOm6dx;1?`18X>h)RZ#azQnT35 zJW|Mf7CH@Qf%b5_Fe8bTv)zl5i{jDn-mI6+BW0_R#q#EtLmfBoO8%>S6J#$J$0Jw$ z4g30HP_+_5tVr%`q|{c=ulgpwTST0=e2($Jp+IE7NTe;DNWl(|Z*LKCN+#F}3{G^t zk8seco|5|nc8ll9^~I~Y4eklD+2q`av*pB`LFj=}!2-*y?#|ZK4aZN2qBPa*DHfU7 zpOo0s^M$zk#P)4C(K)hKz_|8T!ADI5{`I#njJL0k`3}V zeTxYY@j##XuOc>_aqAxFlMv!Khw)wl3f3c=9a%m^wXCZ=94O)@;(VmyHhxk}rrduj=bUnEA30lGvjkLtO ztRq&-E^4kNyk(8^_(46>a6e}GDJ#d1n)HiqcVWyt1jB44&Ei7b%}wcI^M>?<8(91UP%S+1*xq7>Nza?1bn+*KVGL@4?EB$>=A#cQhw9}61b|*cmbO;Z<&iDR-B2mX|xn;AoO>BGZiE8t2 zFGA#3$WK`7YLFH_8coi!%#Q2RLjp(=a(?du11f-)_z<>m3u`EKd5pzA8LKD8CZ~LkfAC_!| z7ylM1Nvi;mmzj9Z_q|7whzA-I{UGlaXS)^s0Y%2-rD}51T!%rJm~g3YE2a(*ESHW< z0&{5-Du95PJq}=ZE2TQ0jn`4{At~o#+u`o5*Q`#I6Bi=`ud(!1*{Z{A6c@vPKQYW7+Pqn7HnWlw9V46xYF=md1Af0&y#sQZmSQC&W1Rg3^1{ zmE)zS???reO^-NBB@)$rGfK-ukpXlbAlZPA%F_W)6*s;t=sV`^-M!n~W|vY@ z*SNVdA*FzpF46*CtlBi9JwCp@-1aDeL>$Df%{OiGzpGcd5Qe%VxVFa^6VE-;=NRtd zRAhX9RiRN8me#kik?y->sOq%kIi-s^UMf!BZ#5CB4ZTlHXBNUE7Db^pY8!6XDd`*8 zV@Jo4ECtJsX60q+WgKH6xnJ39kL2A2;P`;f06`5kzM|+h)bxQYsTLvraP{lc^m%qu zfKT?GR;vrmmVAs=`c~Zb(PZc{YG0YVSEs2l^7!5?`xeRDLex-MEAOi2Gw#-;9@a{a zDS-v)*BX5J85Gq4>1?)pBLszue6qY{Du1*0j=8WR1-NB&7#X!V6PKA#f${IAV25bQs9mjxFh_1(DP=sx}@roC31 zEaAjQ$TT@YS_yrl?V&x@Qt!~VcMhzy=Hp+jLVKhgfDq5_CoIC}&J0ojnNQr`=K6QO zZ4o371NGKk%Jx`MMu&DFDPS^pu>{uzKZ+F832X%MV56 zaBvnBNE!D9FAP9)0l|&D-THuwq64)oYp>Kn$MzQl#rS-SZf^4*@GTd2!dL8MtyuK+ z#1zwT92|XaQvI6zYAEVa6v_3VW;v#MGuMF}Dqhj*(3^wrR%Ny!HszL;rH0#5uY)&l znZ>SN)JI+6Wc=^I(;MGxQwT1YQ#&lX$x1EZ&)_XCQr$Waat9i=$LDJvPbu3H&qB_V zZ&I_KwSR`Azw9-#j8Mp@yYoVXao<n?EQPzW2?SGW zu`Zd|=<+ATEQyFGN)0wB`54dUH7$4X6J@;*EK;~kJKja1xV*3Jns=JCW3{GzbMyT^sTMg zopH`>=-$Ea$IP#HKov!i6oIRq4mt&~4#75@@=-|Yg$)o9Ik}qtE z%flYjXwBYGl`RBPvcGV@B~7N0f*4Xnd_sVY=)`4uSuh<{t;rEMZ(nY@CtDzO&vZ6k zU%g;5B60ikW>c3NP}uufwGgp?dE;A4`-$K7z#Tm!-aPHOoT;N)X}rFa=@X1jo)Z{_ z8%5!Mm!lfu>q(0O^sLtwUNFaLQgZ)?KsrMGXn#-S<-}zt_Off<@4V~cAi*f-KAvoF zODM^~LrYmVEe;}~@rw?tK$4$wu|#q%q5$=g75i_M5i}OQ9AgvvBRjk&X?$5?BA9<36zr>FAJQzx)-Vq;Tl0joXsY&&jm+bzrC-W0PZ;1sQCVQ0lK{4UY ze9aw4hj~&l6ZgQ9b@qrS&y z;X7Fn-Q=jlnqmVsx?ycRUA)f`WqSJFl!{7}8U-cUy%HDAC0PyDfKIQ9z>4eTopgO& zz49<&Bz-F_Ng+b`wuW$COjK9Hr8uEkL06n=_2(zvo|&o}37Z)ccL!KU-qbSQ{@=2j zk-hc(lbHxd&GoRGf9+L>)4KK2tIO2+i`4HAarH}B$Y`W(y@deW|{_DbUDL!iN zp^=Z?Y^dR{;RU@kvMN%@roZO1 zqH(dP0jxS-ZzW~d*Ctf#rf+?&MPMjjKc%=v$b(wS7@C!nMZGbcy92D;=56K~TE^ZifmOzo}OgaN83Q?N2#Q*%OKWj%%5724Yo-1gN zio!jajfV{#GtJuyujx(Z;llm&wG@Wr9lhwc6~?9UED1+8D{g=K=kat2;?1n{{3`)9S0W#7q6hbp8aG+`Q>xbW<(SAS}BszOiiZaKkeH2F_ja#!LF`; z6KDE9wK^i;Xl`n0+R8-VXO8iGTYBs01={tG z8+iKq;-42mKYm);5%!U42)$@d{Y~k{5n4L5EW4Z8^3cE;7;$(V_5$) zOb2zAt;>Wa&&MA3EGr-)pI%aQ=t_fYx>M<0|U(-On}a|<(HZ9Te{7k3diPLCY0GRkjlZrWDariVMr=_ zg;y^!fAMvS8U4H&U>yw6C3>osaYM@Vh3JS;7vX*tWBsmeeU0T#o;yW@H^DdhmMP1J z5B}>)Xy#_mfao!Yj5u$-yp>dOJESV&Cc)_Y#uHp6k$eBH)J0*Gv3}a`o^%gs=q1=k z^l;f%^y_Dlgy^gQ%FKIAOd~=o|2*DMT8K|_o4!u}8QEK?dl7u+rxSXC!ZQ4*9pvwM zU-(f|Fn>Z%oP|)%-rxmFt&h4lmRwc2b-ZzPk z+_jzF@H*-4($z)MQzM-6PmlN19tFJP#$rrfFEIO3p#~)OH$djK|g{St`GI2 zLfQ6Kr8RDQ`9Zw) zo7nxmwBQncaP7v)VdeN2wHXInIA0!+eME9>>GZp*)@JdaNK#L|R-P3mAORGyU;3qj zO&e@j`_LsZ8=cm5O+ucW{1An){%jg^lx=Y~UcRk4N;NH4#zeX%Vnn+q94o#Fl~NeCODQ=D({P){<@wqzX0`Muet z3~eo}wllf>g*km)lzwXq^w1KT(>=iK<3COIh>@j>_||nu6McDVVZg*tt~4-Q?V>phy>Eja5>*KpBYwF4yTF*Zx_z7nZBivL_0ckvV$ zAut>My4e7!6sZ2qbKm0Jla>_h>g?W;#nagv-939nzDRBKqm(e=mL2YBWoPDuQfH(# zZCw_f9-tSKeza2gNx4-I@_vx6^#(}>R5l-+R1rN>djQh@j^ZKt8GtsCY8!h=O`AV- zhhzM!ZGou{qCfB%b8i1~%QrG2EQJW>DoT_y(t zLzFit0cJN?{)TDk>ddouVvM4eG?^$F@0}3>e5UJ0-EU3y`BZbQHngTirG@X#7 z!caZs=i886rqqDZ{w!n38_b%@O0#@3%5eq7EE%*6e6ua!!yI94WC?TUV0Sj`Y_9{GcpG(URsKl-jmEY!1z_5*Pj zT*}nnmzSfcQdiEjCp9+|32)L(oHG$XhI>(Z_UF4Ben?&A-z3>I@)+Zi>{wYkYoI70 zcQ+qwb0g{Yz?57DQW)C{kd{FVNVMB_9em@JAjX`?AoV-4jV!F`N%5#~Th=lGImF5!^RMK%Yx9;N(szIO!O6BW_B*Y$92Cq4rE#?HK?UXJ^fz&Y1 z#io1AhqYwbEji2tq6j{E7rVxLR^e5+Y;Zx${IAmO(fGA${Gns&NXh1dnzAN1f@p~e z)>=rQ3l!D?1wdLB%y&fKb%A%!0ZgO9i*%X>>Wlw5xAJIU#FkL$7BW6i=NeE_?G;v; zBQ0B)07MTen96eo5$P_`%Xm9>(`FU#CjJ`h{$>6PFHHaXNS;@w9zQ&4%N^du z#dsX*SlLx}K%F1+&o?I08%(R|Uf;6Op4!O-MW9rGIz+qEhK5Z6j~NpSooFvR^Binj zmD`nq&TMkC+V3ymy&voh15cWr=i}21$L+{_W=5!I8?4~j^j6u^U#m?;2GDPK{LmAr z4d|)kp4=KJNKD;oMY$5fJddv+UMGdB>8FGHxW_R|FV?pUBNJ275ifVdS2C~c51RL$ zz4@=(y-p#6{AFYvjP>sxqG6KH3FbcXt8c|??A*TBv2u)~o!i;*vxj<5+#*>a0*mR2 zyJ*gP(yWXAT#WuYV<`QQA+zn@B=Z;bY^$sO=C@_+rDvDqG|q376pDn>Oq@g6=#V3~ zJ%;D! i{>8;72@>&;oJZ+ljb#~G zsx+FM4OmlEw#YyoV?8}L9l1E=bdJiIECYN&` zlsVKx^a`lhI5pSKcCpw4Mn}9kAdlcNFBRRZ90}+{S*Xt!DcCL~R`K|_ObC!zM5PK$ z6$UB|QSCQzCjKRszTq#_AaNr+=D$|#m1nb89MpNxm|$x_BtoQ$5P8IBGyB!8IQG0a4R4>LIO0bVVLPQk!s?Vlk%@_c2{ zCDGFEqnJadXNz&z->t_ti|&oDh0go#%UMfKpkKOtje%&Uy^TUlZvT@z%CWZ!U@9ih z|5jn)h|`IgO*puKa+e<5L%jm=pHu+&N=I!%aDiZJjG0#atljqA zyNQxpR~Y2^t6eoOPKLXX2Se!>uD@og3`}A~1#?KKfXIhjX_XG>)#5XCX&!ZY$`RPYG5T$C=(vw?vxZ&1LT zj<3*yDc*Vy1@aYMX8z2LugVJ3<()Wp-Mrzv;{@q1hCFEQ1jEaev*gpDE%X(jeI}8v zOH;m9k`$|sR9~gtR$}4BxWH@HrWW2N1{82K1nF|-Ei`0F~28SR?j+~$Mp@Iwh-N=buTkhTAl zBdB<#U!E;jvGk@c5g59GA{$qy5<62nyzfWu2jK8ZO?;nv;p)+b52;JucdIj~VYnW1 zFuxoj(r-Aq{Xs1C%tN(%A-sB(CE7sJa{F6lPs%$D!x*RP9kT6RD)>bvR7=pKj%TWh8N`@CXVFy_uG*+>ZNU(D17>+ISR*a zi7Wf0>df2T!>bSLGQCL*Qd^S0>0|e^R%;VSLoO%wR&Mcg9JkNkmF!R=JSuyOr>#5{ zci7#pop7)dS*qN47{>m)l~_ymGx96pji+^N^KsvZ39i2;7n&D$B{pSJh$n0c=E&~`Y#Q0Nd{^~W#r_E1})^uh0TIZ+Jx6{z02Y5y0aq2Vtty>B{e z^Wg&gmX?;*iKgyO$gs|PK5y#gJ}iM>$J{_TV901+E;sf%FAXv0e!f4N$XC`_S^QA4}=`r9~&svObdngt+#&|St~A20WL-7&TKNH(Q< zK{F)pWG5nk>JeQZUNM0&MBQk*>yD=KiAC6xR{DQf07d|cvC>G>sG0DS1^NKWhw9HQ z2y?i-Xq@r@6`neT`FYKnCgXNyT$+v=SvKJy-fRC=Bcwb5G5qPz`^_q3;Z1y{by-EW z)GQJPW|CGd0gWW8*Q?I(rU`~>_*)z3ZVf*P0Hn)ccZV`7%+J^vt1H)<0>??;y$jQ*!b(hKgB zaoeJj-lasdO&8)73!LiTvh#xpY*S72m{puw<9*A5E(N3T&Qh;$#Q8fD(+$UkPliL~Z(a{V%sYU4hv=}`_#M20MWvh@=V0Wps5Y(I zy^S$f{l#^?09o*Xd#eELujSKP$lt2WqEl*h*41?%Al3g)R;*2`_^gFGB91``yGnQ(l z9V6Wsl5gWw=s{N<3^Z;V)5t`IR_MH(NDpz+@tyT2CX#BmkhFRzgW125UM&GUMBAOe zBxO0TAxWeEUbS)?zf)~&N3gTdHN;HWr29ONI((4cUJ?~)=6<8t3QvwPPM;or0_Pk3I4Dh zG0HLw%|9>Yj#G$9lp9pQ6)&g$=e3y|)BpB8-I!XxhW-44*eQzOY`8c0zU}t+tVm#; zUH10;Q!NIi*}a;owkKt_$xG?@$&X1?Ix>W8mHGb z6oya5DTV2#!k<|&*?l4=l#^{xQNNvK@sk{q{gbNFmY9`gXHRb(^4`LPZI;$+AWH03 z19&|#VXNvmU(!vG{M3s3mi^#Ymw4;{N7h?MMYXp7!!vXUh?LX}f(i_cv_q(rNY7A` zf{5hMham?Q>5>!>P!UGG1xrHi%Hz4v|H*Y&AODSJ_C z(}wxrr3_Fv{`0Lq>%zkzF^KU-I+0HegxcHzdiGvW&=UgfkBI_gyp(i1*>C|lvUHVn zy3_R1($d4*OJP^v11k<9?S1VoY&#B!9C0JMM0L&@u-kY!9poux{bOPWcVjQ25@=O- zuU*8(x|leBHOg1u4|iyQg(&mUsAKmv=vI8}6WfFiC6fjH;>x$$^YR}Ml7F1YGl_LB z@BOD#0PorC7Ws6vNF1Lpki4P6`CCLkT>NIL_K=ZFI4Xc+_{eR@c!^x{ENmYmNUl~F zp|6bh(-FirEKQ?M?W~4qIXGS!jr^r#FFGQ$JPK$S8aKum z4A_*6aXdOxOrfU?rWb$3Sr{)aRS`-|?WFW>{O14myR~ue-q14}b)Xi+#}f|E5;H0f zJcz#$kC-D6pNlgkb*YY##Jk}ehf)^EL!E834ZqIF%p9$5<^ef z{K9C!s<_Yft&XS~DuxEvd>_Mn^<;KO+u|7q-^1n$WKucxIh05>!^gRMNpt?L$`wsU zWgycm{9*IY9p4G5V0dA+)IanMmO%|STUgjS>8%?mC{bC;9cpnl1~@xO0>B@_2D*v4 zIX6wgH?7Ao;Cc56oS(kV?!+QFeIB#`YS`}hpuS3?9LW$jYxJ3To1&P@+yN{vWV&*v zjlOwoWU&4A%-+GBDzdT*DovpeFWDpE8}A45QfWW(_wufOSd1r>$VuV3e1C8xT&?)k zPVvW-;1JbiyK>C+6_OK4_+3m^4d!sP*ZN2gjy>L`0CL2w@pUU}2vmc?B%)%J+R;*6 z1KaT4Lm5J4J?6UH=>cyvVussNpxV>j???h!@s?A#7`v;DpQU^!%j7jE6lrQo&ChZ&glz<8y%|2!9>!CNz#qmx@r$gW|R?%^#+b zpm-+twR4EA_DhamGDH2xI64AkX7y*B=-nO=&l*!tJ##@owJ0GA&lStuLX0LF;yZW8 zOF(`!pyZG|F>ysvamD7TlJ&RYw;Vq)FWpm$rccZxq`mt|ADPX;e$NAm9vP%DX@6F7 z^DVY#%q_kBv(UDAUN(t(=|$veX{nQ@O5P|*rZ!qXgaP;trJ^2e11Lt#9E~m0PMnwg>i&EbPx;3n{Ez=<08V{F z6G3iprdV{2w-HJ6ABoJgV+4WFltrX;ohr@?IFE;Lgg3;|~gHAU48e z=dp#|@(XW}MG~{Uxrya|P;smj*PvF>+RVKkK61whP}VKikE7^j_2JMfOaJc(+mG77 z7tv%?im5sok+!AQ_}rGE^2ENGE&zN}Ujdd{mq(yI6Bni=ypww)a~1!k!HC<4&uB9( zeTruL+^Kc5dgC;de#f+@3aS(NS(ET2T!zu-+iJoIWH@D zOKW!t1pTmcPzpjXKIt*1t7^Yv!Y(M~|6K!c__~KuHieTIu+9!x>yw~$j3;f2>(8J0 zUym<7ydGlUo2AMD9_jZ;Bn`pf0k-gHxZw_e%`&^GqYu!}`w!e2Bm8Ul1@X``*{O@o zzb?pSJRX8&z_8L`MJTy>gK|e5cvC(sA%Ls758QE^dF})t_h#AQuGiZHU8pJ~_$&27 zQePbWIIbw%xaaec-;2CO->%D7q^q6e*s$FJ)JCe!2VLS-`bgh|ci1>KCy09KFC@L0 zwwo(V?a!Lokvq;HXbI=^N8n|d>5iQl6_LhoI^}{2)-|UZvU&s7iK$@9d6r`yi0wHs z*}B{t6|3Sxx!!7KXy}7UA`l7YOoP%1G=uvvFhg&sDIYLXa$AP=a4;|7Df{W|E zlYMJScFWKH{-3tx+`ufOr;0fcmO1cE^DQwdmp$EEbb#60FyeWq zIkhob0>FU#c4kqeC0?+p_fG3V)DudllBaIGDmLGr1lcI-XhT?VX z9d(*ec{x^dzRriig}!}H)BA%VVxo{H&Z^$hTtbptX?)HeT42SQPgy&HV(UAot3%W! z;Uja|M>a~3^gL3WiW6q=xozR#S*X~)hHQ6?Q2Rzm*rP+ar|bBV7|EUOI`igmNE`FP zYtV;6w>)30_r9RgPe#maANwg`%DinP3h|KBmj}vQPaUO#An`+^wk;bQ%(Xu* zA)y#DDl7;|QDI@Xn`_gya`56TEy3Q1Qa$=HI2U_>W^_~$%B}Oi2(oHI)=m`X?TKNu zZ#Kn(U|BT&NQ^FC!Huxle1A$^MwFQyb#B>NQv0W*pBEGcML8-yB?FPGvCj{hZo_t> zVcEn3%AYn*eQPbI3z4<{}>cZ2sE1v9trA zQIN}tR?ETzQ)5q_8${!25e`kwK%NW3<_6K%uRsSGcfDGOk4;jQf$grT`TSNPxjxGv z|1S8(iXS^(%lzjEVhO^R2&1JNDb6wieqrZ4eq|H_(KiyAwljq_L#CI3Y~fsO#F2w8u;^DrOl;7q zYf7*fHm{m(wHA9@!pCgAPXX2xqL1{@AT;-aHX$GC%E5AI3kd_q+>l0m)WsV=ug>oeQ@!m8&4@79u(?1pqq_p;f0A4d>7@U7dh z8e6XDNU0Ki`tkDpPOWRt{Yc*t;gdG;hEnf~HB*6P`zix8u-`*RU1}xM`Fy9H;c}8b zaB=D+Yxh_E6kooKMSd9&r1HQ*2l(5KC3ibGx|)fh>;9X)@V##5y&my|Yi;zWB{I!m zz7zl>@|xhdSqzse{CKnGKKswL>zT$-B@%!RB#FNZ`kLo}H6z2r)kNZ~2c)-~@D~op zP=9H>Bax>kL&QM$tSQ@|U z41;iIl|zjw4n`5vaZir>8^zn+7SNI}weyZt&}q%sO<#5jh1xGXvb1JKsf?Y+;w(aF z@zQPNxJFt|w%M9s1LAD)3E@KyJ1&pT^5kHPii5tmUP6cw^zjgXALFCqFe`oUX9nT7Cy%90Q=v_(xTy`lVI z#oiyVmyJPOoO;e4zt`tLj-Oua6Ep*AR=hNwc(mKwO@^D~{9n^qeD;4YT;sqqT_JFN z!1#O~>UW1)js%s(_$P)c`KUj@eHY3@zImCQMdNjcVvV>rx!8Mwhf=d1*uB0-c-6_7 zX4G(XvBmIaeTbl=GsWbnX6V}zt)a1%%5aE<@Z0Jhm4E{Lp5T70E&O@z3ttB)eT- z?R}M)sw3`J7wpL75(F8}5cihHeamtBt(S5+#ng#=@d{}H`@o@0Ej>x>3RrQ4O(s(g zD>2rVjJ0B;-5|*=I<&O2>!zBgyZfmEjJ?gkMn}w!{}TS@3%>rhrP!uC@EsnIdVN0z zwun!Xg)fQL5}l@X#fo-5MwyV7zzFK0E`5A0of=}y1E93+Knpb)0LbAAnvTa{_Y5ovZgOcyo#4SvZMJ!%k63I$~OY0UfpgPb#2hRJSzKyNp_=VXKj z?SFX2&z8h>auF=0!ZxpeAJ!-x?*eMt}6o#odkglV+RHa-=A-b zf91U*et&~!kQ`qZ!o%+cIRM_73v;yyNW!H9Q4j!&v9E z4%R)@3{g}Pgvzah3ZOg^mCsbSG|(WP4p1(HjaKQ2`$!dejn;IYgPGdzpvoaNV_A+V z*RMq#ws8j8GqtMok4iE<#4`d->jRIQsGm)# zF8ktWsxig!J88hNN(_xRV{W4egP}wcn z1CpTo-VSEO1Xf)q_#C>FU!Ja=RXvtTa_kmr_ox$Wl5!pQmgm~tn0y4uK+OobncCTb7JHR|jcmDdpA|U{OUFH*Y{<7uV zO@=e3=k&T?88Kw@RekrnMQ(+Ob?8lzKC*vKYar7@n_6T-fYyV3q|$=A7=qSts;40h z!}@ct5~>@7@HY%Er6NE&I1VdNEWakckC^H1la{f$M}*+#!C$vPnvZ_S<#s5kPa<*n z@=ihT7j!h3it}(haYhJ-rOdT_?M_i{vDcRQHPNv9a-!Nf4>^w|z{*edGCrH7 z?GWH3KV)K~oqnp;K`rv>Sp7QIQc6<7lI*m~XA5XH3?VgJwL~g~+W8e_7Z-4$MqZ=s zwKB&`zN%jPxU$i5_l+pSSiTV62$QNfB3Mh|P0+2X2>J7YqSY;mLDY!~CZbRRk6@O9l;tsl{% zHNl#sDOiN9z{%wBa3a1gk!mpKfzZZ`S^zPf(vyasNNMsU+j~o||Dq)Ex--6p^RHpKSAX!HXLe_+ zuk@L79^Qcn<9G_k@(M(7(UG3fd0obJTr>xHk%@{U9cfP?##(8oMJLOUHiWTirvQa{ z9fq0r>&Rkzd{NSEaTAFx@1=)6h73-5*^e>Wy~EobyPV98W0&{ulN30}4U*-<^9#=W zd@>5ew(cRcHsrcOP4?N3`n2#tY;9twNqA|zGE?u7E3iD(Q13RhiNZ9j#e!lBgab)| z-gyWHZv(*pO<|CV$GvIl00w3V;WlVJx7{|_B{%_7wecbW&`1Pa`UT&}l#GI<(tCpQ zmuaHb0S@_ySVK;@^Ox^hVYNe-H)*s~8;e^rf_cmF12o*~R%yXCcD9Hi{Q485KBHqj zjnsf3Rg&)dzhMsm{xEn@^+4>z;V#IaupG)c!2-0=< z!+5+N7Dci|gR+5AE+Pov7+TzpWLw-3Nd%KW7;Y<=q|@d3Ywkaaa>a60TX+AMhxAYv zN6(@&fHw5=@O$sV9BV1TsrTX^p5h@n(4#JW|6n~O6};($IJ+ZpRg@7)UT>0K!aW8A z-xqd)MT;vTsAUJ$+B5Ibw!_k?js*VI4AlwKSPlW!RgJvkAEQIw2ZnoA<*MG?ctKmh zfmi@~MN>dV2W{c=1hfb%V%l3l}EJRRb(!5qm!KJIDLCVhS$CXx&ijS zCK=AL6yQIsf;M$I+u6II6)j+?x29-muGt@Y6c+>a@?FOeq#M7PEYV{jcNB3i?yfpc z-1=erDO28=f)PiQlDb=;K?0BOSm1F+5>WWCRx(SU{waK2^@J6}c?_yaiL2aHG0}FP z)bB&xc#2)WRCUOI(=TdglRU=744&3{RPv81EA?|4tK=adXx3;A->1}LKaL+mcOsNY z$NAXP53d7mBN16bSO*nrRBPGlgX(fpcit0efU1&F%* zf|^zArcS27nNZ-prw_`SZx9oZv_45YC5WlX=Hf(!- zmL_W~n2BGIP^pZQR|$Ux`V8vaO{RT2$Aeilh=MAv7G+) zc~nR%-1LKCiW6MyD!b3`y!q8KQIi42m9zXTqp@+cOoQ(`^Jh{TySrywHETr+(5oFN zvs*p4kEFxng&5@ElGUx9R%~`LVCDKF-8wAXo^Yi+@`_kcsXG^ds0QB_&elv(`z$$wQy1s8IA$GWHj-hK3Pc3Snz8?f2 z15XSGNqTIt#S+ME-l<5#b8{IC@={cGe&m+@yy+f|GGWGjv>IdDhTpjADZthRJV`~s zIR3O`*t9cOA4XT(nj7Zu`Rt}(&vd^LeFo)BE2OKGWe!G8?SnGpaWSL6i?>9L7d$S) z4uk|QY61hL+RR$rYi_Z20t8(&d_!{OpW^Q!r7stnQuM9g&6ph883lv7xmB*r=7qb; ze@sjmcSWqQ4my;bzSw9n9Y5?V|H?g0Yj_U&e7$Wr77)tEKxmn%m>}{+jhClozzDW% zzZOi9em>+5ywrW#8sjUM+ao?TUTsp=a|;wA zzzsX3kz;40TUyV}h}hjD_Hb(g6MOhEy*-TuT1Ox!dH4XVx{Cq)t?OjNN2y13IoFxK z2gN7c4s`ZwJIxj*H{A#1>zbg_+1RZdiXHfYdU`MzxVMvO1L95~MHdfM zY7K3BP(;Ap*nkCnHX4$P+|0iN@jXqLcG4z))^5(^zOWBGp}PEhz8EoPduX1Z_cM9Q zd`yt;KlD}3TSBo>@2<~(Jf<(ta9f+TRl=~2Penn^&!2z#&;S5=!mtCfE9nB{_r_P+tfohQrYsX4V@66--6PZl#|pMdy`rYNYxT)39>oBtM0!SDbjM!97C0fIj<2$;VkbjvdD$87#T@uf{AAy zK9V!V@lE?1>{Y}UlhyRoEpFV6t|3nbrG(R5w-D270{N?w6BCjx=s~`GUl~w*D5T@7U+YP2 zkPujD$Z}bN8La{d1hTp(qV5=uI~9CgEq~a|-B#bn)cc8ALc!20d24KHTX+=E_&gVY ztj6D+*(uMg_x%NJP7c0w&rQztWjE~Kpa-5`o?8eMahbh6`h2{xF!#aU^}p#ub<SE(BMmu`(Q2cJv1!gqy=Po)amH4~!K>{JmeIh*2L&)V@YJSl0NRi`~KMV2Rk z@$aJfbz$XTlF+e8OhbY$^Ln*N-9-GLcNu^TaOpSAsvl4!-okvZ4EA1AxQBwxNy?7O zn*i5ruim9Mvuo6jSdUoaU?|KJ5m4yUaBre6*ON#^(hMNKY8xb|(#d|Qj9t!4(>=o8 z27X3ch#zOSLnA@h3(86L*DNFkoW5L(Gg=OH+2dX+&LCZ<{Ip|?4hzLcG{eD%5L?oP zCvW}T0tRnqR@%L`(D~LQAf3C<5N-Xx{su#+-_QFrN%^WoA*zjLj53C`Eg_;)`!whx zSCuSX4kuRlqJ1t>cGIncJ)>;CHHT$SE5e&M-~LmdiBznLqFYRl_*y~(;W6_)ll~8Q z2HWZ1dG1`Y3S1cc^o=YV`*0|id=Z_~23+syfTD^BNk>_iOA;Sp`PC$#0*DH|GJzJR zPlCA_Zl5~|!1gkoS$8vUaRE!LM1&l13}R$a>SPj@N1YI2VO@6(SnbiF1i+Y>g}&AZ z;r(mugy!Y z`>(>BJtoPyM-^sJPj8H%E9brd-b);17Y0v>;#kFR)&!9SE zTof{&HwWUy+YYv`-8J^Sn}eJSvNmSu!aWn`zI!Q;emSxlCnC-VQYK9An9_r%xwuqx zxg#;!-wIJ9sc+Y%`2@-7mqo|USOm+wV)13Ohq^qpO6#dGWb9KNH)$u(D)nZvAqrV# z_H%p5cgIeErO?~)A#8MIi;RSkQp7paq?zm}0_BA{c9a|vI!#8EzbqM$J`g^Y$cIWr z*gT1&F#+@snI4L2@}-axGEEh0f}9#x`ScJk6(a#I=$HcIP6i8lBDqBmcA|RX`b_)Z z4*+NbD+w#6gJTj46*LkyJ5N`hXM&ZfyOY?8F(ff7S&{r7I~NBA6z9U-a4|4}Z>kBV zFI&smXorm zI7=P^YddL1q|=UFFxlW|(L{!9_=r-!#TAuO-tP2*;erAgbjo`o?foc`gpRo6+guCN zw1jB2Xk0#-FF}#HDh#b@FiLC}LW`66sp&3AuBqZbZOu@9L>h%f%+J=}UCg7Qn9EN^ z3Ku+#6+dKWGqQVNbF!b#RQVuv@4p;MmW{t9sc*^g$AYW84%L?>&l~p@eD`gFz4r$# zJ^CK`)*!2mSuTw2a~`I~nx4{6qd@5)Z(S0XoX-8oYVT$NMMHy%T%;-X{vSM+a3!5y zIcx)7cJj@u^NaiXr%ep!n!hkekX}*F&X--W{?K{pEa6n7T7$qAu#kge-@^+7du`X< zI6AbNc|+M!$EV8+CZ{3?EUu*Jk7pLZrlOTAeePH-^kKC71F{v)!J1@Xu(lADhGp-t z_qs{n5YrQD1ZPPe^~&dRD`Lxmr?F*i>vc|*-|97pRH$GE?0^3Kka@x6B|$U#Eav`* zKd!EnF#%IqwVSs3X#KI_Df#Js*ZsbPh!-2vRLnGPOhfX*rRuvCYR_f(nj~9XUiU|y z8=A;m`MUI5`@f(s5jZ|L4uJ+nd#TSz(~-z!4Yg$KD#-7DA#=7nTAR~RXma)G>0Lbw zQ5x_-RPJPfu%Jw~T~UKi`0Cp`>2HRADoKfnDQc4>Q5t+xYH}60aS}XlD|qEP@;#5~RP6}++Q4@w>tB^W{!(#=-VdF7usQ~CZ1c{@$J@ZS3d z%#c~6Me-hevSTyqAurukH}&o zA;D{s>FpUXlC;3QHcd-o5+Otxw}>aG00Af<^tFC0M9DIp^7KsY`S5Ds5$!ZBnj`$J zH>YSS@&cs#%?Oe0laH@~1%!fo`wFu7Sgtdp${wnF0IdM^Vwn&39!rzMIt>DAj<*o& zc_sD5l~B1@%IDDx29RGGt?p_W2f^B;`Xd1r%mdLXldEH;?WbBjoc~{N;6WLPJRIe_ zm%ISP1#ts{F9F==K**|T@5kseEOia^WFlZ;=Bz<)AnYyA^Z6)PW009y$?*BQm8@Ze z#4L&FOMphT|6KJjbkb|{Th2Hj7lCxt#U~Y*4#be9m{ThnxGf`no8J&F%mhLq%Zj05 zLTgpCRL`Qf`h=qE+Gs3mJW6G*FZzEpx%Bk@_Xy>{Y3FE^k{aVRMGXWNWpkgf|B(uGDLQVG-CP+C`rqd9c z+HlsWjK*z$;j5xQUC^y_bM)+QFXK<6LzriJrqS)Q`_Ri7D9h_n;30J}*%oL`UR@sT zDWq@>F8=OK9u)ANA-^11@Hv{O9(V5Iv%e@&mFABtrL)K>knEQNmFV+cJE&lhGN-Q% z3*GrLI+d&Y^r2_Vt28Eh4_#dcotn>S^SVA&G}!b3Q^g_5ec77 zQ)|mu28LO_w9EaR(E3L_W2naZw=&R+WhGXlli_w5U5LlDze2w*d6dE`$6P6~pB6p; zu^ak4dMaM&>TI+sq%{mglc;6YT}{F3agl9NLtCZg% ztyOzVy#gqYAI!KV0NE=8Sd`Pj)?ur$T-=SA-wCJh2cA)YZk9#Qex1$_<7d_Kg`KQa zgj&3^8{V~&JsV-4OHpa$j`;^^v-ZFD0zd#WASOs6#Y)Ug)uy~<9R*(C1|rRUOz8-G z#oS8et&uiW2h`Qpa^jdcIqa)YXc;6yrMZt#1>JhAF;$mmq(P7e$|ulgoLU>1ZGRz9 z#BTP7=606IvO_sW^M@RabcDXK0j$=imIko^6agy)^BYNreUGr-VeSb64vJuH z2gS>Z`*hp6UIAi&*78)BYhd{LBYw(P;yCl&8PJEt;ZsVa*8yuHc!*hDqkt+cTDeg* zR+ZklnqO=pb3Q}$Fntf$sZj{p?|yfx!OKN8;g!nwoPO7{9KJvH;MvuVgYom>UmD%* zzNm(iSH!=M3*f0*yl=z+ag;MaG}h=(MA*CcqJO&J06Nsz9bhVQZNAqvWpKUQ%!PjB z|2F&{ZuaY%A$10%{k83VAFWaifcscWN*DPj&?FFw#uk?|TY%xZ?XLho6c+g{~mBFhvl)t890phuQ2TJ8!r**la;rBeh z`+p@lzJ_o+RoDzmD6*cq=HF+}w)qtJ$j|&}xaw~UF8Kdpw5wmx01Rz(M-M4yHA`Em zwzxNc%|*5?F08}M%JwJ-o05)r_1nh6e@EvXESG@e9+<&DfLxwA!b>Wr^0 z;q_=#F7&$L5GveXz!ker@~rWw4X*3z(}^9|vRbST&`@xi$Z)&K{iXCLZUdc%414L6 z6`kUyF7+=p8KXaaEpR}60g#0W%6(8O=y@RkPvMi3_m^mn1DZXYlFTmkQ8u7Fs(ik| zYD-`2H4e|Z^cb>U=nQBS(2%)I_t)~Pu=j!3^{+vbukxLzuF!4~q0k^NUuU!@P!v zE1SL;$KENH+R;%I`>-0P9q3bBvkD`|>KfXM9)ZpP?%%)xAfM^WH%D5{&qi&F-Pjzf zC){~FzFyOo3qy^Um8j-qag@oOL3*|!e`1Kf*qGgeB~!q*vC#KS;9#%)Lv@ zq`{;8jAC*?&vZjA28-RDN-v)&AovX1;Ezb{ zQ*xoI${b?Q)Hw*JB-SI)*6NkMiI?~WFyCp5!mG|J(^dC$8msK&bdvuf1QUF*69}UR zhj;`NwBAPkEJ?c$fAnw=c8IjD!+KIQQpEoBF$T6-F&IR5XW**ONj;c|U1S!i(@k zst9E`1-U4+KdCK+AD*SfwL?#-_MlMTv7)mPzpIO`qT0<>Hgc3a*tu%b(>C&1meA`N zc}Brdw4$_7u~=rQ@%%H0pc3+WqUX-?U5L};M|saNcL8MfqDxb4a4FQeK2nP&|ydZy0R&;aacy#3N5nZ1c_`WDJ{r+XB*ql^X8`+<9XGj!vcCLDX# zPHuYqefN41S{>kZcEi{KN0b+1!rPEDXOMmJ@_!7E3dCUGDni zdnKK;gojamf~gIK)Sd-25}-Ubcu7WC9`d{oYu~vMGuOjs z#@J$xZl%+6b&L{*n4~Z_PgQ4 z4*qv~29|MUzZID)g^LPKf_)Tx|Bv@WgwISMmZdwGjqXSaxTL`E2pnM%Y5+f#VN-Qt zy)y&;6HPIRXpo3rirp`XUuFl?@qE6&Ghl5QW#{bveaZH|(p8s?Cmt0O8c_E;bjp@_ zZRRYar#tWdh8A_moHkupKI{0d^_6nXY9H6m{KX769HF{988El(YQy}&+!jKJ& zJ%9FJw@*dWP4W_wGoY7TGpr4I5Wt{)w<>H#)NQwulcB*gkfG1@b*s)0&l>#dUD;^e zM8QZCQ{MncyRhb``+XO419V}}jVQE=m(e-A)d!|@0}Jpb)}WRb%wyLfeTqkBHwY4A z_>yw<8r?4QQriz&oV))3;6vMK(Yc`H4kLMKlk%No4ARc3qvavh z@&TpE9RJZDE%kKAH=Z=L!3uZA7K6H60VPpwQYR=uznDxAglq3>i@VGHs+3F1Z7iypzaDe{er9IY0BVzM6O~Q) z*SuB%pAQkTa_oG)VF)K`v8i|TJ=Gt{GA<5Clg6L8K`TX8*-xS-e0NRL{~sBO02~`>&0ZmF%XRmz+21w)U)J4XQgBy& zS6)i#!|8)bZ|~2-4cRW?hvkl!;kx20QmE+7oyEscHVVU=q?<*cm0N>&Pc5}~Rz-0A z=*|%62K62`lG{E*wVOk44bpaY((7lk%~am2?d6R%bokclFNybM@8B{0UJK0}#RF5` zI-te${#+06OsOc)AB`|M%&cmbuBa%A}s8nH^gegWm4JViQ#=jB(m`?^Nu-B&#;hn9`9vF-HdewT5w4U2j- z|+&*=Wt;kxngfk>c`` z8&J|!pN|jCb^f2Wu$1tt!68uKD0K}cn>pWPxj@ce%0Up)p!@03myogZyHo(gBXd1et%AO= z!LwtxU_UI3ee8i-X~s7 zLvg50pk+#~bhR`r5#ux)bj|+q-y!*ux8(PtAtmcR{?U}4?_X2WPu6m@oAr)=mKU$t zn}?=+yh$FU;XO-p`F>Y=3mu7~dqPECf89qyjF@|q%704bhhGU6qX@?(qNX_+};PCY;I%rNUc7LN%*FhbQHTp z$7_6~TRSD$I64}bQ{sBCAl>RSh{=&{UHkbprV1VQPwcfyZ)Ov5evrt`WnX|r{D)RvQen@u(#}R?Lb2dIP@)A z4&Dv2i0JufF05nW&aD8IwHdqg?jI_vq{)alx1{g<1T|UEc|-W8((Lhv|iRsE|i#-rX4N)HO3z-e>q?z`v&Gas5p^$CGNmGx4d@ z!|^4V>UBT`(=fqTRoJeZ5WO+`RB6I0)=J12#S?bWr?t0wX$~!ofSVf7%2ocLJXB~2 z`QoiJAX&_1y2MC4t%HZGyjPy`PXqmI6i-x+P{MNFjHF2iFoV^-g7dL)i~!2p1$^z1 ziz3cnD$bc0q^R7$^1?lh{3md25D!PO#Tryz6$Z~?1M%!03S&{}v3u(|6O%c`YqJW# zyh|EIWJV^3MF~WB9u7>&03Df%q(p!bg=T;=)QrrgVR`8k{81h+g*~!{-!}?8ugwA* z>STK3_T))Y;Dd?=l7pb9iuQ`ato!-QPif{e|Fy6FvIoyHxKW?~ppvc2w>hnwB)be~ zsQD~la-)RlC>Lv6+x2`qH=Zr;dYnh52o{d1c-;2W_lY%iYNcZ(Fn{b_Z|2s4UB==lZr+RJ zw!(kz1XBM>wE#d?lMyJhjq-g7k`&U&&WyPZ!Z-TlIW1eeLYgbFL>p0!9izGxwt0m zt8B{n>8A=eU`=`NJ*%$Y{%7Z#3f`ps7@ZqYCSF>MHwR*>V@G)iQ_4=kR9OCA?#}WF z4b$xhzhHP8_LDNmInx6KbJcP55W_hwFRKPOiJXcF;^%AM3Zb5(|7HPHwDyJ+jWxlJ zQa{{aL#Rb_{v!JrwKY=d*+l+KD*J1j^-`XDM$)SrSS{&2$*sR%en}W#3A`meiH~Ln zBWe7FA~dO}O0f3}0rN=B?hI+r9NRq-n1m;#JVTjCa=?*k8SF%F%CRjziDn#}fRu`UyyWU!wt- zlSP4^M`JwJw&+`SiqGN50ss^76J&BOcK&?0Wke}+JY6>OD%s89w^4!m(rXJiO~k`Z z397HMBR9nXU8!@wmQvjH6>oVo@z+sfJ&@R8-zN~Lo-Mw1eYh9?;0X~807?cQmhzIb z52%d?=_+|mSofLFaw{G9x?t@YH61M;l=p5a?{8lkwomCRmqK)~c>{%MR}c?8H>sld zHnM}862M-pP8z`49*8@Ahk5qCDtRI{Ywe+w>XOAD{RAA&@|*Lrjn=lyKwMyTSbmyR z_<_(=2gQD~Pu#(i%#c7hC?TzvOFZNx?2%}QmGshoOQg#ro~RiOaX0&YZDZXDd8w$p zu>s4M_y72JBT1xNLICTlqZIc=o<`O(dt}{iYAG~4D_>n$D6Y=KMoDsUp!!tjn}dM# zGmeEDwk$kI^0B=ANFTJ9_n3Y4Hwm#TV0C%l$Ug9Y=QF+BO$e?3LjfT7(ltFHaowTtg-$zuH_57iC6*P*UL&(47NzZyj(Qm+ZSRlZ-5jX!q2242Wk1) z4l7jv5BTIzr>b-I9#|sjKlutJAPBPMhaEhJh@Q~9HFCp;y*A-EUY4iUh#)5kvvS!7 zI+=cSPhO!$8el^6_N#GLTPug7Du1ls zvQyEwTcffe{)tk>3j*?}xQ%{?rJ&9mA}pSU-47H&-D%5vgo?fiYq-wRtDSohlZ2I zL-H68&z-DpK+i8rxnccr=?5Y7Y`FcrPVf>fUXls1KA^oh4}&= z&Ez;>P5AUlxY%gN+Ab#m=H0d@2dP^prx|?rr$B3QD@$?9#TgG7mSmPD;j`oAOcR=6 zsdri$XO+|qF9=kcY4jB!Wl}@T&D@y0wovRv$kf-0tEx!^(3cod)k}*~7kueHlzHY2 z0cXBhY60AsIUYhBnjvJnESiWVa9{FmBuJ+SAH@4c9mkVZzpGN~p=NBqo0JXGh=YX(Heno!xYE2)%k1@P5{It_W z&e$HP9jqVp4C5^7J#3iI!kzn{MZN^NP2&&e`oxBASUtFUcW`obxdg@09i11!4_jgg zd%4f8H&Ywa$4{sHc)h|e3=FI)bzb$~qY}Ql+`2LW$fF?tLpVIe@A4$nLje5K*mEW8 z((wnwCzJgz3=|bV)>hv$J2)19O{ibDq!gqe(Vt0ZJkLU{{fO|u_t~&DwQc0D95V5W zyXH%-gEksi=Yb5I8kBKN!p*~1$t0x-oApN~#8y>+thDSJ*`B7n_}c_+e{&07)!eH8 zGQr3>7-cmAz$sme$*9fL>z%Pj<6e=0j7@i5zP`?s8oZ*M7IIi@!)KaO7^G&=hK>A7R%?0Z*e<; zi8$v*nEAL2)eff$IGI3k06jY3_MxCaX$is-}&1*Qws6RJ+XY+i4MQq?*#K zy*59&{{gEP!wB^;-S6}}a_ze_o}K4b#|OLNhJ=kRJ3nYswO-bYws@ihJ2m=+3N{3N zrBh!RtM&VqiP_}SqDRd2$3~{FUR^#}D693e!k$v9e|90%8|S$?+0Iz-yIQ>54GF(2 zD0m4PMUtim2L=*DJet7lnA`QnO6_raCM%^mAoVE177Sy-TAvIfuU_r{l`S$F1(%z+b{GvBx%4;#i6pVC?!%wY_j6?3AXFc& z2ips8GubvwVd4~^gt_idsN4(O=xDUswZ?&>TD#6ioqt@t3xt@7_h!+u9@;*^<$d44_rg`%ouv@epgEkr;+Qy9gS25*KvfL z;%T_<#t-BV^&SG(U7S0Gop7Abyb@kY{}Yg$gQ2K&VD3*gTMm5O_`0!y%5LBa^nP#= zJST$8(h0}mslobzOt@Ri3@HDVCsUcGrnI!xfjF;nBfCs@4&H*xC_X!-yYEh9#`kh}$3P*{VGXOBgcdr~v@E8~zUvyW0x8LT7=SSCt;ZKp6+Gn{9e8mJ z=yN3aY1X-dTBL?9nTZ2BIV|sFUlA*qh$=1o9Y>A22V$2CYI_-!Vq9P{Dl>Qe-o4VN zMAQWM$nO`fjZXVg8@Jw_kZcO0KL_)b&$WZK{tMnMR*;m|eZ`_ozdW+Jt|J+7+vTQ+ zRaprx&u42@Zrlf-H(;|~kZN!=Rv|onWwa~9MZ=;gReG~Ek}Lh24{ZI<^3>6f5W3l~ z`ydU7GUOvPO*fXWzL0)GePZD8r)sG}f^ zki^M{mN+s_n))R?5cLes{hffkn$iGAfhT2p^bvnxCPAkTTh%E+8;?yDkr>5o9o znSq_7Fel=CR`IE*&ZrLO8TJmdz${ej`aff7fQar0>fqrBv?y+IY`O&rMtpB>#c=(*Y#y-=mF{Q5)m(05;te+tV(uin_{t?@lFusx$IBLvndFXgy&o_c7?xM6an5 zqaII4W$U+elZsl2Ujp;379AIKry_7386Y%oW>cAk4+!LWC$ zTRB^fwr))z#qr}8)+-DP|JB>vqE&%rxz08>l2{`mhEbmQzx?}G&e86MsKO@<6S~H! z?{2Rr$4sYasT7t?4$Yq(jh8XE&fbhQsXaS-pxqV9c6GFC34&qaLGhR2H!ob4pysxp zxX?@}I#?h&#-zk{VaVJsYOOQu+rdAtb)OPcd!r%$fx3}U70$tLbHFB%v zACRi>Y}6PB7&$G1&Csh8=RRL^x#YRPvq0cDj#`DZAZ|{2CAk@1*7_+}lsRk0#)?1> zfLy23x6;7nH*rg28cXdmkKHM>#Rig~{rT+Tvgo@5JXkg>p=Pi|=kT55sQT&w#@aLf zO4L|9m~pa!R0wlO;gtq;87}O6y~Tv{-2606+1xmM_5B)uZI9xdg}_!8<7fr0dr%_x zeV^RK0vbal(FQ@G244d$)RH#mss&^G@IWb>PAPSAMbom1l(e*wK+@07vwK_y)mmn) zki0cEW}FmN=E|=+#qqMqDUfBS_x*waE$AzROAZv_!!?DSBySkr>rzui*4zlaxl+3v zGG1(UdFg*11k+jo6EC)9mnU}h@pWBrMDS^4#baclLYe{pq7EVbaK5Chw7R+eIM)1>lrD=wh#Hc^R@dHcCf`5kP@#om{?ewtN<{xzu` zdb+KQ%3lx(&VaS*b8gjB-ue(xld4>ONm>WcE0-ETQT3iig4lE%FL6D#ihqg(&5Jw? z+)m07L7dKzk#$1!6nEd!%0_j;ueWyNj99q}4&|7v*(8&cks8%0#Nz~L)5tU}HU%pz z6lEjDIVd{5)etVaCD7pKd$gra)A33@!N*KD@d` z^8%Q8d3rzCUU`ds>mKC$2{hNXl*M57`;@ODDMW|CDA=?%Jn6IVp9tT*dQ(!L0vVI}xKLlF%e_KEFK(A>){tp`+C% z=3F$-3_kw5@%N4bmc?p_==mGaQnT9F8BXoZK}@l<>Ic|@P+v0zb#d3C+qFEXYsbJQ zcYW_xH&+7L8CokArhTIuLZ^)6U*SfTD;)g(p)deIQ@f{O^;cA1V`Z>H(B`>z(kR@R zpM(QfvJw~(|K!L-Tj=uE#rB(*|I5RIf2JF0N$@CivPEj34PC>&+1>||Fony zne1`JIt`1;dW*oim)>mgE5of?iI{Z*B~$s{uMeBvgwjluf70?h8vDRm{2*jKy(_B} z*U3SvcxX*#n#PPzsRuop4_p$jfl`<_AlVsZd%}iKzsd)2VqazXjQ2w5WnLM(kh{UdS+CbjKWQ=C82TQOrR!Gm~WDVKb7}v$NP%D>f(X#y2v>EeP4LB{(@e zK~ikRwH#i`J>NHXr#O2ge~F8jU@29A!vSvELckxuAd|PNBG%)S&V7}h1-?yagt+j8 z^BWRm=c-c^lo{;E%B{I@c1D4QDX_w|IiboqnASaJH8hb-m8>`nL_*yUrrFRZEwAZl zIFd3uBdtH^&7d^(t9$UXoujK$KZa_`z*mD+U<9g|%pNa9mJXDFR$b81j4dz;1n!gn4ft)7w(=_QLAF9VibV*W39aJcG6L@G zWq7a9BDYWnnb3Lc4*|to9i`YY-tD@|p!dxnF~?JaYU>4=upV$35J52@gOz>N|0s0r zD{?(0-+kEtOaR*8{NW((mB`!$Xi#0uwuz0d_qE0!J)3o@-lNWry5>3hlL-&;2l@z; z@#)XFa1M{6EjSTimkG$x)hjHf+4X^zA}z8$-$T9uxY+V(Iteo;Bxlcy!Wls6;4)fEWKqwsZJa%mf%m%^&|q z)AIZc-Oja5+fIIrE^SSjAR!(tqFI@!%TK9Z4S~hp$Tk?3t!y-^-&-bBr_iF0&!V>S zhIlMNS0ovC#F7D$jdiyn$h`&Ac^^WPuQ+pZUBgv47uZ$~%5P{`x@hd3cCGTjSh* z&zqFfzWRh>t)B8_%`5+2yj6h&;#*|E6Quh^(89BW$qyzBvyemN3CHQxIn0}`p}LPR z>$ub7vU|rhj0RhLuBBJ_gOkY}hL@a;(f0hMcf|LkR4hS$=Zn8lfxWm!>Q()k>K1#5 zGCaL2h2tG|eQa~Z>Y=~gcuWv%riTB$274H4uKCu3ZvP(1gR zUUA1-1myer$gWj&1abwc#76djNyLdI@*Z`a(>E;QOX$dZYoGldHsj4lU26ye#TQPP zyXO3{>u9VvOK~6vA5k$h;W1XQP4$5#pg&!~dPZ6hbMwICABG-jD>?qJTxxUzNBz`%OjZ~+(Wfh>RCA+Gy-kn*-~z$J^A_JJJ**$sJeIS< z7aur$U$#EpZ>8|wW8>Ah^+bq-uNCom29{47+G$#-L*GyYZ4Z*PBpDSb6(`_ zR59SDYrtA*B+eIq6~pDwVV^|!up&xuI+=I$MDsVfQ;7Cvag6Rl-FbSfte>v_TF6^6 zJN@|Z=EP~U>;cgR6SevXxOjeZmS*P~C6b@X?*W>CCg4 zf8S@=x3SA@c))kyKS0%M7)*ntIi1QS-6hW>^ts4!-awjh(EATR=~qjV1_bymli%;? zwpN&3a(L@DCOid|6umGQn;bqgl@v6tPb7 z4;YoLnYayiWk{-+A0gTW2tbPi$kj$Jq%?K%ii*2XD^|k&F?NEiQUhc`6@lY}{uzZX zh=f!u+qY6jYeRY3=Ay9Ck;reK!Eh?`Sm3Tqs`W!$tdLi5J zDkeCm5)dNp5q|0C>l6Io(Fg6YWC5sYo-Hlf{F~1EaR4lwRnm8PC;{3vr z!O_m({<JDfFGx4fElpvYEMyn&20r*hq?Z~P7S3*lzh^+8C)qq~L!l%6Y!Jc@m;g<}Y zfv|XPpD$N9i2aMX6T#1Pyp?y2uGBSO5qQT92+`yRgB%r=ukj9{Iz584z7BqyR>&1s z>JL3KGtShKmI|#E3|7d#d@VmU_PsWAX2^d^jV#Pd)S$NNyY*_#;l2F0G~=_X+Sggd zh!um%=Ds?vV+QTNRg&tFE8xF>+~r^Otnu%bNdMy1{Q=oi!?XqFDfTMYvp_;7h1S=% zN%f%ZCcwOEGx*>Wm!~rgwP@rk!kH(5(FK6uY$2jTj>~V&kj1vFmLJ|vw9WG8Qnq3R z_2SgW{mWf{ZRb)>oB%eNV^cWk`M!YC$}xQxJZye_Y<$#L%g+$JM3*F`r5BNY8WHP3 z3RppUzpkuHgF{@o21KfLF1{ST+JAK%4EH6mn9Bfo^ognhClF6(rCeur-gSn06FEm! zct6LF?=YWmj08dr^8FY8&wVDrFNzIQRpYQW9~;JG3lt%*<)txK3crgNVBfL8losEa zOEPz1U+B>`7`-B#ao^qwjXkIW)onEnx-hz=9o}Oa$*X2T0f#b+B`@ z)8*k;^h*piAUab6?p?cQm$fh%00N6!q~BOubdH&^-`f-@WDS4JIOsnh`>!7KI-2B3 z)8E3U9n?1u!y<0JkYB61!>|4s`T`hHI{qI2+aibMI;fT0UsqI;i1eqwyhUQs5hVwY zB+$zHT^lABbF%pt>4IEqdaq{LWvCmEvaFmtr;7#EQOP~Fw5Zq{-rJK&h(|6&fARvO zJ*lAi&?}eAZ#G~JB%s*;cd3Cj?H5rjyzSwqoawbjZE$gA(x$@UOgKh_7%DOHv$rhf zZgrQoNAaw5+aj2a-^s0+aH%8#gEz`9d(O>;q^<&nY_8(FLXN-#0>(UXh2-dvDGp#StF_(mNX_IER@9 zmxLgt<3pzZ<%Qn4LePSV5Z$2qqeM10V4lu;q-WnH!%E3l$7A!^Zl`Y$AOtPobDl9M z!-2Lgvtu^*n8&oQ#5M&3qJK67Y9m~@O`1XtxNfvS-aXO}(8G_kg4c-UxZ&_V;xN{m zKG>K;h^WN80-xzm$@4f_MWPRVrIOiKB?~3gNut~Z&R?GON?FuJ|Kzf*+K6&y9fbq`a+69L*l*Phm z@5Vd>6A6q^j%N^q-QL;dX#Q*#lV)`?rAnP3D{*TSNWw(&j-xs;3^@6)1(zR)1LD38eU&j%op44Q7fImHG#v<4+MW+ z*OZL>#O#ygvdY#s+E19#p9}uim^#A*Q2t3zlZXnoZB%q(khg|10^WopVpK?UM$m>d zTJ({9D4|a(a_X~k8Gb9m!3sN>+eolsE~H9$?7$=t1SSL4KGbPX>D~LZMk;e9_pysh zxjW0=8|>fCyltYZ6DM1FdX%&v16Ys#^5mS3E;B`?5FiZEDaBZ)tR(Z^v9h>~j*(lq z>pkpR3%B{2*KFV9TgqN{16+F{KPNl=?*~n*A<3>%>D0W~vu@l!zYwBTY^n-!ZRm>; zPJVx}biM!Q-~$|_ESiyqNZTaSoPb*Xc86B*iijclJNayS-3$+ggX(HF znpSBhdsXQ;==NpG6qAiLUYwsy%EP{?c^1TZT*`+6ajwK7xm|oJ2Cfx<7*^ zwiN>IhI57L`viCm3XgJPg+{}hCj(jrwu2FHlXr}*>NCk8hJpQhLf^(8h3$Q*w$@OC zW%k3EoKU^i7H!F5b=Rp4&4)EXfFQXJVHeyMAGwO35b>csU^+MyDt_1=slJX?w0!uU zCrqs|e5peJ>gc$JtE!|X`v19r3++SYxy*Gc4%avP^0kq&+!tvn7lT1<;_(XK#l;_7 zgwPC+M2K+{XSZ0mD5QWJHH>S&nqUdLc}Qr5QA{W}y?4&(Jb(YYRLd2sTG^xdBp5no z85GDY3F>#BP+9pb@B?n<^2hLjfUe0$cbg;7#54# zO4GP)kXwXnXWgB-OZ>>YorGCts{;w7pM&_sCNShx=@cqpD@&MdE)dps*aQ%am{mSvC7L54fnU(jPFMdUZ|!-}VpvoT@k;4WW^l z0jwVB!EM^KLymuNS;4Y~->!lS>4ScOxT^=)``dV=N&sPD!vCJdFIQkylkq1E;!obB zO3>&@sZ3A!Wd{(1Cdjq9)3sez!jP=M~p(t`dS*VB@5 zFq)hK(Qo~#O)bFAy$~cQ<$iBUpIH4s4p}TitWnaU2L?h&v=XH+)4iYUW^UL4y+F@J zy}A2PMV}$*8dgtdODrAUGn;4&Y`*M>?|opn`X2sRRsPfG|F>g$0z=wPDU42DoTy+0 z?u_%u1!z1L$+J~0In$(u^y>Xk+j_S?U zlj8|>Xa<89XBaKSrJAnO&S~!DO&`m%I|?xQsP`^t={*)aBQFgD_xFa@JyEjegrarA z#1Abkz291 zUlXBL$dnF4!<~FhZ?&B+h_`HlYjbflzv=m4mEwn;eYT$p79jvB-CovaAZ|}-({FIc z1B{Knr0K~5XPWQJh24VfaXtE$O@;$E{;erM+(aMf5oF>rfMjkrzwBow^;L21mn(r7 zZMA^bskHFPxx+lG6DcL4qHbom5!i=h#CsG!x=H^xo6Dh-?>rgLss1_q-o#M?Cp$ae zUlRA2nxvoNjBD=t`1g4cT8C_F%a>>l0bG9lSnSpb^LLK3^a5)?^Gec#)E?!Hr@0|p6xgl)8y zb9r?)uj^l8ohWHvMOUz#63Zt^_Tq_jgzvdj+BKt{2yVgty-}-8^a$Ag8nhmLb%Wa) zRFlvIfxEQQ!*AEdKeyEVf>EQ)@o@hQ_IwNAZVsJxzP0;S$FIcGdOv(5W$d_4iHdz6 z1)6Gd!?g)BUe0f~Y4^Zupa?et)wn~3;s)5z%m5R&ktSQlnq+zFqT_!x-VpTu59s($ z<`d$AS&7-g)ti<(S64tziFxu#F+|^z*^28|&>%=S=pf%LL5U&yq(06{78}q?ko-{~ z`6D_~U|H|2Gm-s12yM`reFA zNP4SXzsn;osr~h#BG*Wlf9ac*`j>s>QnNgevP##|(!_fVxojmrvXcH|c9cAr>E%C( zU@=Jg{<*uu@mgb3Flf0Hm0zz-3gD=Ai0h(+X(3+&;pZ!r=Y8!gb@|y{)Kj{FcjK-} zmXEcPLX4`%E{lyQo~->43m&!<+^%)#H~YYZG89D(gK%tLJ%W8K;PQG+zZl6@tco~} zeQJx8c3wwupyxEwEj>_?C7 z+sF~E>QKn2ySKdQ+IeNr*VEi zGcBp*-rg*YbqwE6<6Hd}k!YcL%g5q>O_+y?5tjf5^d-oM*|!)uKseMSnJ3A);pnAj zCRv*To2=nM?L&IL!g78uted^FS?5*06m9h50Jem_;+$yWq7+rSKFHF7seKvN}33PtZGUP9CZRbJs;`LydCdk@#$P5P$8aX_S) zl?-2QxmRk;WNSodZ5Kc%-;+Jt_((+X*aXo&XYk>l;3_G66kpt<2KLAJvbfogww87= z$U4(Yf=dyuuke7i8C$2%{kZfmDflT+3Om=)necIn4XW6OJi@rDC&8zoV~H2|?)&zA zl#Z($Th`ha_>kup+KS6qB1yBjCAL3OeW!D2sXtlpYYT7cYok|Lg5rTaIb_K=@b?QM zw{OFa=CmiNPY+-uQ~p@_^ihD-`mHOV*j3UO{+NDe1r}`ZNEiWbE?ZV{xKPVN$3lz; zM&;1nx}d)g#DSOv9R3FBt>gPwp+&^%6whlCVA?IZX7;LcR782d!|#m%`gBgryx5kCnB(x%~JNXJznrI7f8u`|4gR7qj=4%w-~N z;$@#c!J?1MjNBZUZGw+&ES3`*T{^!pG$kdau^dU`&?Ddv5A+gohvp6PNS`)5yVS*Mtis^<@ri=z@55%5;9_#>K<{kZTPl=H#|Go;~K4N?=o`E+AEPvewK{UOOJ9&bVm4 zXkRosd1I9+sq5BJ$9$9QN#orQM(HlGubBF03!YPq6JqIZ)A*uJThfHTV|MYbS^1;h zrq*`;@k#E1T98K)y~JbwpxUu!WLmAoNtQbfzT_s~3K$vJGF^>qMLY8BfPtw7G4}JF z0r|lR>uVZ_Iopi$Di)$-ZW>yn2hG)yJq(YOGx0=X6l<5_uTQiUBNlXNp(apk+s|L0 zGxOsQQ$IU0TV3reLAv=ShH97JZ2m*NL7v_8>a8L$M9sH?5#RRO6Ma3X%5esbvz8>S zQdKfR&M@Xs$h@{Aco=f{KYX`LhNOi}Da)i6DVevVf1(csl~s;fvj&g#?{(B6V!)q8I}_9U;pO zYu4%2I3(R$u08BC>QV?0>z3k7M>?;Yj%#VkF!My*B83~GjYQR1Lj}7;Z+L44>sCAu zp5l(&A)7s-RDYL%3~G=6NWY9Zpr{fG(~-0UgqQ5jLk(>UqN6FkUO#@CJaGRy=0L;+ zr(p&yGnlsAu(`Fs&19Xd?tv0E)h^L+f*2R1I3m~gTWtWwqvN}U@2Z;~pF9}olBTxm z-6=lHFCRgq&)w^AWS=Wd{Qo;LF{IfaeRVw#jkMkNf2|3A{qfVR$aK2ARQiFV$A=7v zvAFs1?!zB@KeMVU01o0{30Xo`Wo=>)FiragA-5r6x+*qB>a=nTO(GJNmOE>o)o?6= z#yi!4@!Q%{<;Suna**G^H$aH66vO#RGhUS}HlbaaF~>xt2}n1gf+la(wSo5Ab`XMe z&+T5~U_Bgr?GZRc@PdiepH;u42M1cg!%t|H6>0kCY^yi&L5w_PrUhK9ad4N<&C@jZ zT6#eU9f}e=O0bv*7nvjv@pngeG3T=8j)6-R{wxyi8+qHxH;A{n5 zw2zJvcBQn|Ru#;$%*?c`ib@B~`BG14F`Nv9Ra@SG#{4ni+Je189@%c z`cQHyFuJqadSXE$L3R6Yz*n^_fAiUR*94rbid9ozV!JHVJ4MZOtNnT`ttq|rOYcv! za&3u`ijgCnKeM;LcL{LDRF={9<+~maN~Tl1o$&oyD&|^hVXt+C-I9~PcbW1^8JGB| z;qk{1J1x-e>sYBYB81a8_#MkU&(QfImaDWzn4=i zz0f5MVwcjI*NQB9V&ybqDEFcou^Vc2x#CaB0OT-{XxiXFc-Lf_!8V|W)u&~}*ORJn zh2bd+%+5-nb7x=?coNrP4!mMYQBj!o;{Migrt+B&VbJ;Za|b3t5pHmrx5tPiRo`20 zoG8Nzx`jV2F9u4#JbnzICAmu%LTRCyLe?p%ARKPBrb}DAor)ll1?kX7j*S}!E5OLc ztC(e75#SIvqLaFKdz)M}k=779Y+rbGGq-o5s_HA>?FULs2`@xkPX4g&$M3{i6$rUi zNnDH54SX-j=1e2?@8zaPbp0nbPb%Q+hn)Jvi-+co2G)7ycPa2`58rl~9TC7ZjgZTS zVcF!C>U$~L3gyv2$ov+2(M-poUC@;D&ch4BfWFBD1GrRUo4^}jqE~Q&oDf#_PZDVc z-KGsPEF`q9JmFnLNpe#I+eUjJsUztig@nVJjGNvX?z*jlLearF55En~Uf&n(mNL4% z@|_0Dd~Qi-iU;k=XzeVUyh_6Llfl;94dmd#xLY4YDTyCP6FoaMgzQ?sHPAUgvm*doEaP`lr75_QJ#@XhlC~dneVIs0@kHotp8qw5`TT ztB=o}zT=FGuK!pYCdV6#5!cQOsJIgM9kf>5BTKhYyL#67G_e}vH82#vTJdS%Br^Eu z%{%hdyIwwEjUtmcQHn|!hMEVn7jPuoFC&6(-P*5%Sq=nXOlyjD9})U z8VDu~_B|;q+{An&iu(B{}(5Xp$U9 zNE|1^$r^K`)Ao(x(?FT2KynCO^hxQ!^qARqR3W)5ni?9uoG@9g_xWBB{mi7_N)A#a>JIo;bKWt}ay4^qra`#+ zTmC+!I6qCa(Y)GL->f1<{(G_6bdea3g|4brE&-U|hRNj6kX5;y5uUiXd&PapTA!#S zbQty6+WQguu571$Y_vxv$8}ko#CH3P2vP>VL+-v##8pYl?#^uSGl-6ExBaDWg;(p| z9~VSl|Ks?lofrX7z{H}ip(#i1;Usc#D`f-HYoW(SIays%mKgD&EKwqO7inMDy7E3n6smBAi$ z%(7HPMv!w8=W@fW6v?r((Gke!UC<@O(Jm1kI)a%Sk_+P|+vCZc;$x=M!o}>sts^}d z(lgr}v;7L=bJhc0tZs?-I3^OIRL;a^Gp&E4IRU5T2NPBxMyhl%Dd)6+$hR_huWXVx zyh}#zoDj*||GoMOqve$2iLj1vhD?4Sp}H`DTH1RsH~=4ewwS4E322kU7qf?+anR2m zR&OmPlVqk7R1gqtS$H_hF*v58rBX;W!m~w@EFaaF3VU z--&mLz7eV42~5*k!9!;}IKEQ@EKB5=@#_OJ9TP)Gq+`!3c*;v;a)3#i8^Fu@;=!?x z8-S|J6p%;%9OLRK>W+9<*)yw1V-4LR(IFYTJ+aJ+&61uzXg!c6@7zO63E;x;L^QmZ z{YIQ5X+5cDg|1=@AY0Net7shz0Th=IQhOhJHxHwD6c}{|;t{ z1Hd>&c)hFl8}P7_+5L9s?C7({yAbmZq!JL^*e%Ni1pf{IK6!E8qv2`#(!7HcgEl<~1LNH3Co_VM7-xa`|6&~=j8KzHDc6@=)| z3yOXdLhCaUsmrQ6@HoxB>>@h`S5A}8LW|Vd_xyf+-s{kC!0Zv7-vYh^mrR-=2?>LFue!3~lp?bxREeWfMqZ@L z(4O|Zun0~+G`R?s>C9cX-Bc1Ovw4%XYqtt>M0_F0v?xq!aLlYsikiZ1XIMIF4KpK+ zI`KIX4FKaThZ=b!S_55~SwxphiHnZl|0xK)4q-RpP`yumn(fhCmG{k$+8zDD5lv6d z33Pj$Lhg)&fL{Vl0%Tc5p2M@7bHbhH4`Ouwc~-y3tM5FcKqoJ|f~N(yHpU2Uie{@N z@*N^6*URyIvnq5f0F@!417g2P0h211=R&*07C0)m+h-*A3YaS5z&E25+CQ?fj1m}w8N9j0BLF`U`Wb5AoCjqmKY1k zy>>v}O&UcyqsiVgi^MhE%}pM^GXHy~mD0WAjKns!2a=E}h9Y6<@W9z7dy?e2Vn055 zH%qdB2wYBdCYp3UE$u%-<=6(7YjbdIOlGFaNt@4c=*PvEhkhejVmB(28~jLC<4c-c zNMrZ9?y?hkmS+%U!NHdm#1a`UawmFK^T1;~pSnU4E708=^t}3M%SzKc$E}dx;WBW# z1IRH&vGD96VPK>l#P@JQ!l}3qB}? z^CJOz&yt*z=4d_48>RnbRP3c2n|ED&OoeKhemJ{yz%>^11;QEU(!#L%9}8fTZu{vj zSrq@PD=8MAOboyYtsjfPl=RolAfpoFWXzjcvWz|L3wW!%Wd%`gzsi?e7z;_q!AOST$B2D?0<0U)^GgvO64~Y?jdfzWTVOsvh6K5-WG| z7C47~2}`|+O)SP0m@%B2ba!STV0KrxMZWmyD_IN`Pz1wuw&#@P_KiIvlJ5W-GASo^;oAKQL<#=-23{D@LEERM-dyH}evEXV7KKRN!^3RruZCMXWjGTd~!U#h)mW!DMoQr%IQ`-XCA5 zmJP`lOSmf!*gTO zXUQO1^g`N4-fY>vN_-YkmHUmsBAUgb!9s`$2}o(R!mjKVSe+4uOlg~JEcMGa!Z0Ic zhp=UgJe=r@_lpr$!>bBZW%rNfk&iEZp>Nw(8)2yQWfTgLd%NPb7g|$MU80qG+EiYF z_%UlZVX&(%d- zOb=@`omn8QHCqouO&Kuu5Cf4L5D`FUtdGyud>4Wd%|ZwT+<1$IiYPpWlH1`2^L$u5 zkiaN!waMZ~r)rLV)h^R71WAtQhC=}2sjBGWcgXpxszX8CTlxJ&9U2faZn-; z`u;+NYl#-cXoRHKAs#NNq@DMqk{RI8CeJ0h&zTsPRQ{o=^Uv>PIqg+sFKW|;=b=k2 z2@B2-=U3=#+}v^d5G=GjHO-x+1dMi&uW!`+x`s2ds9@d8QPga>sHGM6k3+{Ezq5Pm z#rc%Woy%uLC3ROadwQ?Ba2n9vlO6Dbhq@hBU3z%m{&E%>{y`MVd_L=L^L^FfvT^y| zdh%{bdhlr}f}uHPtVJLRc@u$k@s$U4b{|&zgS0$2xIZ!Lj7Fb8M?E0L$(qaD8qLhi zFd?^8&%!Tv%wJpd575%}4q}UgsZ~K68i~6D+`zI3FcdRJr9{wZeW#aCJ;elpD{6jM zOlL!k-ir$z@?Zt9CB4J;Y#1SO9ZJwcnQ-q&x*{9@_)~UB@1XFQQm9VH(ERGL0w`IJ zZ8-KaiGRLlezq-XmYwC_*hM>e1r-5*^>4kvEhQ0uBR86gr}Md~2b|&X>E}%t23mi0 zCiXQ+rY~>Xi+9)FIX6mLdGzXs| z*gPjbv}rdBlFfNYPeZOlM7^8QCAVOKscqa4J|;=CT_r{7n-|n<+3{#jzn}-(&84`m zSK_mV@m*rB)phD-;RdQvvBzV$?Z4fBY5jkON&oD)9U5^c0gzb6kpb$L;inw=AGh+G zH{62G^#)#B1FWut4)W%r{PkV3;Yyc97-gRUmt+(HlJRWTBfCtJnaT-kZo>93f%+H6rT6MQZ^gpy#{xR!tQ<3QxgTR7V^RCnZtY@C!wu#V!2ue+GX z@0pjQQlnI(ZBeUCik4MgNAn

eYA$e;#UR?0n_pv+n((7*C~30>uFgOYy}f+J2X| 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 import("./views/auth"), - props: { route: "login:email" } - }, - "/login/password": { - component: () => import("./views/auth"), - props: { route: "login:email" } + props: { route: "login" } }, "/recover": { component: () => import("./views/auth"), @@ -96,11 +92,11 @@ const routes = { }, "/login/mfa/code": { component: () => import("./views/auth"), - props: { route: "login:email" } + props: { route: "login" } }, "/login/mfa/select": { component: () => import("./views/auth"), - props: { route: "login:email" } + props: { route: "login" } }, default: { component: () => import("./app"), props: null } } as const; @@ -111,8 +107,7 @@ const sessionExpiryExceptions: Routes[] = [ "/account/recovery", "/sessionexpired", "/login/mfa/code", - "/login/mfa/select", - "/login/password" + "/login/mfa/select" ]; function getRoute(): RouteWithPath | RouteWithPath { diff --git a/apps/web/src/common/theme.ts b/apps/web/src/common/theme.ts new file mode 100644 index 000000000..487e0d155 --- /dev/null +++ b/apps/web/src/common/theme.ts @@ -0,0 +1,283 @@ +/* +This file is part of the Notesnook project (https://notesnook.com/) + +Copyright (C) 2023 Streetwriters (Private) Limited + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +import { ThemeDefinition } from "@notesnook/theme"; + +export const THEME_LIGHT: any = { + $schema: + "https://raw.githubusercontent.com/streetwriters/notesnook-themes/main/schemas/v1.schema.json", + name: "Notesnook Light", + id: "default-light", + version: 2.1, + license: "GPL-3.0-or-later", + homepage: "https://notesnook.com", + description: "The default light theme for Notesnook app.", + colorScheme: "light", + codeBlockCSS: ``, + compatibilityVersion: 1, + authors: [ + { + name: "Streetwriters", + email: "support@streetwriters.co", + url: "https://streetwriters.co" + } + ], + scopes: { + base: { + primary: { + accent: "#008836", + accentForeground: "#ffffff", + paragraph: "#5b5b5b", + background: "#ffffff", + border: "#E2E2E2", + heading: "#181818", + icon: "#181818", + separator: "#F0F0F0", + placeholder: "#858585", + hover: "#eee", + backdrop: "#0000001a", + buttonForeground: "#181818" + }, + secondary: { + accent: "#0D9E46", + accentForeground: "#ffffff", + paragraph: "#858585", + background: "#F7F7F7", + border: "#EFEFEF", + heading: "#4B4B4B", + icon: "#666666", + separator: "#E8E8E8", + placeholder: "#999999", + hover: "#dbdbdb", + backdrop: "#0000001a", + buttonForeground: "#181818" + }, + tertiary: { + accent: "#008836", + accentForeground: "#ffffff", + paragraph: "#777", + background: "#ECECEC", + border: "#E8E8E8", + heading: "#666", + icon: "#777", + separator: "#E8E8E8", + placeholder: "#a9a9a9", + hover: "#dbdbdb", + backdrop: "#0000001a" + }, + disabled: { + accent: "#008836", + accentForeground: "#ffffff", + paragraph: "#A6A6A6", + background: "#ffffff", + border: "#E8E8E8", + heading: "#212121", + icon: "#DADADA", + separator: "#E8E8E8", + placeholder: "#a9a9a9", + hover: "#00000010", + backdrop: "#0000001a" + }, + selected: { + accent: "#008836", + accentForeground: "#ffffff", + paragraph: "#181818", + background: "#E2EDE6", + border: "#008836", + heading: "#212121", + icon: "#181818", + separator: "#E8E8E8", + placeholder: "#a9a9a9", + hover: "#eee", + backdrop: "#0000001a" + }, + error: { + accent: "#f54b42", + accentForeground: "#ffffff", + paragraph: "#FF242E", + background: "#FFEDEE", + border: "#F7999D", + heading: "#f54b42", + icon: "#FB2C36", + separator: "#E8E8E8", + placeholder: "#a9a9a9", + hover: "#00000010", + backdrop: "#0000001a" + }, + success: { + accent: "#4F8A10", + accentForeground: "#ffffff", + paragraph: "#4F8A10", + background: "#85ce68", + border: "#E8E8E8", + heading: "#4F8A10", + icon: "#4F8A10", + separator: "#E8E8E8", + placeholder: "#a9a9a9", + hover: "#00000010", + backdrop: "#0000001a" + } + }, + statusBar: { + primary: { paragraph: "#5E5E5E", background: "#f7f7f7" } + }, + navigationMenu: { + primary: { + background: "#f7f7f7", + paragraph: "#666", + icon: "#666", + hover: "#eee" + }, + secondary: { background: "#EEEEEE" }, + selected: { + background: "#00883610", + hover: "#eee" + } + }, + contextMenu: { primary: { background: "#f7f7f7" } }, + editor: { selected: { background: "#e1e1e1" } }, + sheet: { selected: { paragraph: "#008836" } }, + list: { + secondary: { + heading: "#A6A6A6" + } + } + } +}; + +export const THEME_DARK: any = { + name: "Notesnook Dark", + id: "default-dark", + version: 2.1, + license: "GPL-3.0-or-later", + homepage: "https://notesnook.com", + description: "The default dark theme for the Notesnook app", + colorScheme: "dark", + codeBlockCSS: ``, + compatibilityVersion: 1, + authors: [ + { + name: "Streetwriters", + email: "support@streetwriters.co", + url: "https://streetwriters.co" + } + ], + scopes: { + base: { + primary: { + accent: "#008836", + accentForeground: "#ffffff", + paragraph: "#F2F2F2", + background: "#181818", + border: "#2A2A2A", + heading: "#FFFFFF", + icon: "#FFFFFF", + separator: "#383838", + placeholder: "#404040", + hover: "#2b2b2b", + backdrop: "#35353580", + buttonForeground: "#FFFFFF" + }, + secondary: { + accent: "#0D9E46", + accentForeground: "#ffffff", + paragraph: "#A1A1A1", + background: "#252525", + border: "#0A5729", + heading: "#C0BFBF", + icon: "#808080", + separator: "#383838", + placeholder: "#404040", + hover: "#ffffff10", + backdrop: "#35353580", + buttonForeground: "#BFBFBF" + }, + tertiary: { + accent: "#0D9E46", + accentForeground: "#ffffff", + paragraph: "#818589", + background: "#2C2C2C", + border: "#2b2b2b", + heading: "#808080", + icon: "#808080", + separator: "#383838", + placeholder: "#404040", + hover: "#ffffff10", + backdrop: "#35353580" + }, + disabled: { + accent: "#008836", + accentForeground: "#ffffff", + paragraph: "#505050", + background: "#ffffff", + border: "#383838", + heading: "#212121", + icon: "#FFFFFF", + separator: "#383838", + placeholder: "#404040", + hover: "#ffffff10", + backdrop: "#35353580" + }, + selected: { + accent: "#008836", + accentForeground: "#ffffff", + paragraph: "#FBFBFB", + background: "#494949", + border: "#008836", + heading: "#e3e3e3", + icon: "#008836", + separator: "#383838", + placeholder: "#404040", + hover: "#ffffff10", + backdrop: "#35353580" + }, + error: { + accent: "#f54b42", + accentForeground: "#ffffff", + paragraph: "#f54b42", + background: "#250b0a", + border: "#F7999D", + heading: "#f54b42", + icon: "#f54b42", + separator: "#383838", + placeholder: "#404040", + hover: "#ffffff10", + backdrop: "#35353580" + }, + success: { + accent: "#4F8A10", + accentForeground: "#ffffff", + paragraph: "#4F8A10", + background: "#132204", + border: "#383838", + heading: "#4F8A10", + icon: "#4F8A10", + separator: "#383838", + placeholder: "#404040", + hover: "#ffffff10", + backdrop: "#35353580" + } + }, + list: { selected: { background: "#202020" } }, + contextMenu: { primary: { background: "#202020" } }, + sheet: { selected: { paragraph: "#008836" } } + }, + $schema: + "https://raw.githubusercontent.com/streetwriters/notesnook-themes/main/schemas/v1.schema.json" +}; diff --git a/apps/web/src/components/auth-container/index.jsx b/apps/web/src/components/auth-container/index.jsx index 66b70380b..5e3ef463f 100644 --- a/apps/web/src/components/auth-container/index.jsx +++ b/apps/web/src/components/auth-container/index.jsx @@ -26,244 +26,141 @@ import Cameron from "../../assets/testimonials/cameron.jpg"; import { hosts } from "@notesnook/core"; import { SettingsDialog } from "../../dialogs/settings"; import { strings } from "@notesnook/intl"; - -const testimonials = [ - { - username: "HolensteinDan", - image: Holenstein, - name: "Dan Holenstein", - link: "https://twitter.com/HolensteinDan/status/1439728355935342592", - text: "@notesnook app is what @evernote should have become long ago. And they're still improving." - }, - { - username: "jasonbereklewis", - image: Jason, - name: "Jason Berek-Lewis", - link: "https://twitter.com/jasonbereklewis/status/1438635808727044098", - text: "I work in content writing and communications. My day starts and ends in Notesnook. My Chrome app is always open; it's where I take all my notes. The clean design, focus mode, the tagging and color coding are all features that help keep my work organised every day." - }, - { - username: "camflint", - image: Cameron, - name: "Cameron Flint", - link: "https://twitter.com/camflint/status/1481061416434286592", - text: "I'm pretty impressed at the progress @notesnook are making on their app — particularly in respect to how performant the app runs and behaves, despite the overhead of end-to-end encrypting user data." - } -]; - -function getRandomTestimonial() { - return testimonials[getRandom(0, testimonials.length - 1)]; -} - -function randomTitle() { - return strings.webAuthTitles[ - getRandom(0, strings.webAuthTitles.length - 1) - ](); -} +import NotesnookPhoneImage from "../../assets/auth/notesnook-phone.png"; +import CapaGreen from "../../assets/auth/capa-green.svg"; function AuthContainer(props) { - const testimonial = useMemo(() => getRandomTestimonial(), []); - const title = useMemo(() => randomTitle(), []); - - const version = usePromise( - async () => - await fetch(`${hosts.API_HOST}/version`) - .then((r) => r.json()) - .catch(() => undefined) - ); + // const version = usePromise( + // async () => + // await fetch(`${hosts.API_HOST}/version`) + // .then((r) => r.json()) + // .catch(() => undefined) + // ); return ( - - - - - - - - - - - - - - - - - - - - {title} - - - {testimonial.text} —{" "} - - source - - - - - - - {testimonial.name} - - @{testimonial.username} - - - + + + + End-to-end encrypted. + + + Privacy Simplified. + + + + Write notes with absolute freedom. No spying, no tracking, no + backdoor access. Just you and your thoughts. + + + + + + + + - - {version.status === "fulfilled" && - !!version.value && - version.value.instance !== "default" ? ( - <> - {strings.usingInstance( - version.value.instance, - version.value.version - )} - - ) : ( - <>{strings.usingOfficialInstance()} - )} - - - - - - - - - - - {props.children} - + + {props.children} ); } diff --git a/apps/web/src/components/error-text/index.tsx b/apps/web/src/components/error-text/index.tsx index 0fe20adea..746f66ec0 100644 --- a/apps/web/src/components/error-text/index.tsx +++ b/apps/web/src/components/error-text/index.tsx @@ -19,7 +19,7 @@ along with this program. If not, see . import { Flex, FlexProps, Text } from "@theme-ui/components"; -import { Error as ErrorIcon } from "../icons"; +import { Error as ErrorIcon, Warning } from "../icons"; type ErrorTextProps = { error?: string | Error | null | false } & FlexProps; export function ErrorText(props: ErrorTextProps) { @@ -59,3 +59,42 @@ export function ErrorText(props: ErrorTextProps) { ); } + +export function AuthErrorText(props: ErrorTextProps) { + const { error, sx, ...restProps } = props; + + if (!error) return null; + return ( + + + + {error instanceof Error ? ( + <> + {error.name}: {error.message} +
+ {error.stack} + + ) : ( + error + )} +
+
+ ); +} diff --git a/apps/web/src/components/field/index.tsx b/apps/web/src/components/field/index.tsx index 282c9ea95..a5f6b9ed0 100644 --- a/apps/web/src/components/field/index.tsx +++ b/apps/web/src/components/field/index.tsx @@ -18,8 +18,7 @@ along with this program. If not, see . */ import { useState } from "react"; -import { Button, Flex, Text, InputProps } from "@theme-ui/components"; -import { Input, Label } from "@theme-ui/components"; +import { Button, Flex, Text, InputProps, Input, Label } from "@notesnook/ui"; import { ThemeUIStyleObject } from "@theme-ui/css"; import { PasswordVisible, PasswordInvisible, Icon } from "../icons"; import { useStore as useThemeStore } from "../../stores/theme-store"; @@ -78,10 +77,9 @@ function Field(props: FieldProps) { return ( - {isPasswordVisible ? : } + {isPasswordVisible ? ( + + ) : ( + + )} )} @@ -178,7 +177,7 @@ function Field(props: FieldProps) { p: 0, px: 1, height: "100%", - bg: "transparent", + // bg: "transparent", borderRadius: 0, margin: 0, display: "flex", @@ -221,7 +220,7 @@ function Field(props: FieldProps) { p: 0, px: 1, height: "100%", - bg: "transparent", + // bg: "transparent", borderRadius: 0, margin: 0, display: "flex", diff --git a/apps/web/src/components/icons/index.tsx b/apps/web/src/components/icons/index.tsx index 63a085cb6..df5429f41 100644 --- a/apps/web/src/components/icons/index.tsx +++ b/apps/web/src/components/icons/index.tsx @@ -237,6 +237,15 @@ import { useTheme } from "@emotion/react"; import { Theme } from "@notesnook/theme"; import { Flex, FlexProps } from "@theme-ui/components"; import { isThemeColor, SchemeColors } from "@notesnook/theme"; +import EyeClosed from "@notesnook/icons/eye-closed.svg?react"; +import EyeOpen from "@notesnook/icons/eye-open.svg?react"; +import ChatIcon from "@notesnook/icons/chat.svg?react"; +import EnvelopeSimple from "@notesnook/icons/envelope-simple.svg?react"; +import LockSimple from "@notesnook/icons/lock-simple.svg?react"; +import ChevronLeftIcon from "@notesnook/icons/chevron-left.svg?react"; +import ChevronRightIcon from "@notesnook/icons/chevron-right.svg?react"; +import ClockIcon from "@notesnook/icons/clock.svg?react"; +import WarningCircle from "@notesnook/icons/warning-circle.svg?react"; type MDIIconWrapperProps = { title?: string; @@ -325,6 +334,33 @@ export function createIcon(path: string, rotate = false) { return NNIcon; } +export function createSvgIcon( + Component: React.FunctionComponent> +) { + const NNIcon: Icon = function Icon(props) { + const { sx, size = 24, color = "icon", ...restProps } = props; + return ( + + + + ); + }; + NNIcon.isReactComponent = true; + NNIcon.path = ""; + return NNIcon; +} + export const Plus = createIcon(mdiPlus); export const NoteAdd = createIcon(mdiNoteEditOutline); export const Note = createIcon(mdiNoteOutline); @@ -361,7 +397,6 @@ export const Search = createIcon(mdiMagnify); export const TableOfContents = createIcon(mdiFormatListBulleted); export const Menu = createIcon(mdiMenu); export const Login = createIcon(mdiLoginVariant); -export const Email = createIcon(mdiEmailAlertOutline); export const Signup = createIcon(mdiAccountOutline); export const Logout = createIcon(mdiLogoutVariant); export const FocusMode = createIcon(mdiGlasses); @@ -377,8 +412,6 @@ export const Export = createIcon(mdiExportVariant); export const AddToNotebook = createIcon(mdiBookPlusMultipleOutline); export const Expand = createIcon(mdiArrowExpandDown); export const Shortcut = createIcon(mdiArrowTopRightThick); -export const ChevronLeft = createIcon(mdiChevronLeft); -export const ChevronRight = createIcon(mdiChevronRight); export const Close = createIcon(mdiClose); export const Tag = createIcon(mdiPound); export const Tag2 = createIcon(mdiPound); @@ -418,8 +451,6 @@ export const ChevronDown = createIcon(mdiChevronDown); export const ChevronUp = createIcon(mdiChevronUp); export const SortAsc = createIcon(mdiSortAscending); export const SortDesc = createIcon(mdiSortDescending); -export const PasswordInvisible = createIcon(mdiEyeOutline); -export const PasswordVisible = createIcon(mdiEyeOffOutline); export const Fullscreen = createIcon(mdiFullscreen); export const ExitFullscreen = createIcon(mdiFullscreenExit); export const Announcement = createIcon(mdiBullhorn); @@ -428,7 +459,6 @@ export const Colors = createIcon(mdiPaletteOutline); export const Published = createIcon(mdiCloudCheckOutline); export const Copy = createIcon(mdiContentCopy); export const Refresh = createIcon(mdiRefresh); -export const Clock = createIcon(mdiClockTimeFiveOutline); export const Duplicate = createIcon(mdiContentDuplicate); export const InternalLink = createIcon(mdiLink); export const Select = createIcon(mdiCheckboxMultipleMarkedCircleOutline); @@ -590,3 +620,13 @@ export const Inbox = createIcon(mdiInbox); export const SpellCheck = createIcon(mdiSpellcheck); export const ClearTrash = createIcon(mdiDeleteSweepOutline); export const CloseCircle = createIcon(mdiCloseCircle); + +export const PasswordInvisible = createSvgIcon(EyeOpen); +export const PasswordVisible = createSvgIcon(EyeClosed); +export const Chat = createSvgIcon(ChatIcon); +export const Email = createSvgIcon(EnvelopeSimple); +export const RecoveryCode = createSvgIcon(LockSimple); +export const ChevronLeft = createSvgIcon(ChevronLeftIcon); +export const ChevronRight = createSvgIcon(ChevronRightIcon); +export const Clock = createSvgIcon(ClockIcon); +export const Warning = createSvgIcon(WarningCircle); diff --git a/apps/web/src/components/otp-input/index.tsx b/apps/web/src/components/otp-input/index.tsx new file mode 100644 index 000000000..f3cafaf99 --- /dev/null +++ b/apps/web/src/components/otp-input/index.tsx @@ -0,0 +1,180 @@ +/* +This file is part of the Notesnook project (https://notesnook.com/) + +Copyright (C) 2023 Streetwriters (Private) Limited + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +import { + useCallback, + useRef, + useEffect, + KeyboardEvent, + ClipboardEvent +} from "react"; +import { Flex, Input } from "@notesnook/ui"; + +type OtpInputProps = { + length?: number; + value: string; + onChange: (value: string) => void; + autoFocus?: boolean; + disabled?: boolean; + type?: "number" | "text"; +}; + +export function OtpInput({ + length = 6, + value, + onChange, + autoFocus = true, + disabled = false +}: OtpInputProps) { + const inputRefs = useRef<(HTMLInputElement | null)[]>([]); + + useEffect(() => { + inputRefs.current = inputRefs.current.slice(0, length); + }, [length]); + + useEffect(() => { + if (autoFocus && inputRefs.current[0]) { + inputRefs.current[0].focus(); + } + }, [autoFocus]); + + const handleChange = useCallback( + (index: number, e: React.ChangeEvent) => { + const char = e.target.value.replace(/\D/g, "").slice(-1); + if (!char) return; + + const newValue = Array.from({ length }, (_, i) => value[i] || ""); + newValue[index] = char; + onChange(newValue.join("")); + + if (index < length - 1) { + const next = inputRefs.current[index + 1]; + if (next) next.focus(); + } + }, + [value, length, onChange] + ); + + const handleKeyDown = useCallback( + (index: number, e: KeyboardEvent) => { + if (e.key === "Backspace" || e.key === "Delete") { + e.preventDefault(); + const newValue = Array.from({ length }, (_, i) => value[i] || ""); + if (newValue[index]) { + newValue[index] = ""; + onChange(newValue.join("")); + } else if (index > 0) { + newValue[index - 1] = ""; + onChange(newValue.join("")); + const prev = inputRefs.current[index - 1]; + if (prev) prev.focus(); + } + return; + } + + if (e.key === "ArrowLeft") { + e.preventDefault(); + if (index > 0) { + inputRefs.current[index - 1]?.focus(); + } + return; + } + + if (e.key === "ArrowRight") { + e.preventDefault(); + if (index < length - 1) { + inputRefs.current[index + 1]?.focus(); + } + return; + } + + if (e.key === "ArrowUp" || e.key === "ArrowDown") { + e.preventDefault(); + return; + } + }, + [value, length, onChange] + ); + + const handlePaste = useCallback( + (e: ClipboardEvent) => { + e.preventDefault(); + const pasted = e.clipboardData.getData("text").replace(/\D/g, ""); + const newValue = Array.from({ length }, (_, i) => pasted[i] || value[i] || ""); + onChange(newValue.join("")); + }, + [length, onChange, value] + ); + + return ( + + {Array.from({ length }, (_, index) => ( + { + inputRefs.current[index] = el; + }} + type="text" + inputMode="numeric" + pattern="[0-9]*" + maxLength={1} + autoComplete="one-time-code" + value={value[index] || ""} + disabled={disabled} + onChange={(e) => handleChange(index, e)} + onKeyDown={(e) => handleKeyDown(index, e)} + onPaste={index === 0 ? handlePaste : undefined} + onFocus={(e) => e.target.select()} + sx={{ + width: 45, + height: 45, + textAlign: "center", + fontSize: "md", + fontWeight: 500, + color: "heading", + bg: "background", + borderRadius: "radius1", + border: "1px solid", + borderColor: "border", + p: 0, + outline: "none", + "&:focus": { + borderColor: "accent", + boxShadow: "0 0 0 1px var(--accent)" + }, + "-moz-appearance": "textfield", + "::-webkit-inner-spin-button": { + "-webkit-appearance": "none" + }, + "::-webkit-outer-spin-button": { + "-webkit-appearance": "none" + } + }} + /> + ))} + {}} /> + + ); +} diff --git a/apps/web/src/navigation/auth-routes.ts b/apps/web/src/navigation/auth-routes.ts index b018c01e3..b429b114a 100644 --- a/apps/web/src/navigation/auth-routes.ts +++ b/apps/web/src/navigation/auth-routes.ts @@ -21,16 +21,14 @@ import { getCurrentPath } from "./index"; export type AuthRoutes = | "sessionExpiry" - | "login:email" - | "login:password" + | "login" | "signup" | "recover" | "mfa:code" | "mfa:select"; export const authRoutes: Record = { - "login:email": "/login", - "login:password": "/login/password", + login: "/login", "mfa:code": "/login/mfa/code", "mfa:select": "/login/mfa/select", recover: "/recover", @@ -39,8 +37,7 @@ export const authRoutes: Record = { }; const unauthorizedRoutes: AuthRoutes[] = [ - "login:email", - "login:password", + "login", "signup", "mfa:code", "mfa:select", diff --git a/apps/web/src/root.tsx b/apps/web/src/root.tsx index 24de28114..31d9991f6 100644 --- a/apps/web/src/root.tsx +++ b/apps/web/src/root.tsx @@ -153,7 +153,7 @@ function RouteWrapper(props: { ); performance.mark("render:app"); - return ; + return ; } if (import.meta.hot) import.meta.hot.accept(); diff --git a/apps/web/src/stores/theme-store.ts b/apps/web/src/stores/theme-store.ts index 2f435a928..50a68c8ce 100644 --- a/apps/web/src/stores/theme-store.ts +++ b/apps/web/src/stores/theme-store.ts @@ -28,6 +28,7 @@ import { ThemeLight } from "@notesnook/theme"; import { ThemesRouter } from "../common/themes-router"; +import { THEME_DARK, THEME_LIGHT } from "../common/theme"; type ColorScheme = "dark" | "light"; class ThemeStore extends BaseStore { @@ -109,18 +110,19 @@ function getTheme(colorScheme: ColorScheme) { } async function updateTheme(theme: ThemeDefinition) { - const { id, version } = theme; - try { - const updatedTheme = await ThemesRouter.updateTheme.query({ - compatibilityVersion: THEME_COMPATIBILITY_VERSION, - id, - version - }); - if (!updatedTheme) return theme; - return updatedTheme; - } catch (e) { - return theme; - } + // const { id, version } = theme; + // try { + // const updatedTheme = await ThemesRouter.updateTheme.query({ + // compatibilityVersion: THEME_COMPATIBILITY_VERSION, + // id, + // version + // }); + // if (!updatedTheme) return theme; + // return updatedTheme; + // } catch (e) { + // return theme; + // } + return theme.colorScheme === "dark" ? THEME_DARK : THEME_LIGHT; } function changeDesktopTheme(theme: ThemeDefinition, system: boolean) { diff --git a/apps/web/src/stores/user-store.ts b/apps/web/src/stores/user-store.ts index 8c4d3a070..0e070a126 100644 --- a/apps/web/src/stores/user-store.ts +++ b/apps/web/src/stores/user-store.ts @@ -38,6 +38,12 @@ class UserStore extends BaseStore { user?: User = undefined; counter = 0; + private _pendingLogin?: { + email: string; + password: string; + sessionExpired: boolean; + }; + init = () => { db.eventManager.subscribe(EVENTS.userSessionExpired, async () => { Config.set("sessionExpired", true); @@ -112,8 +118,8 @@ class UserStore extends BaseStore { login = async ( form: - | { email: string } | { email: string; password: string } + | { email: string } | { code: string; method: AuthenticatorType | "recoveryCode" }, skipInit = false, sessionExpired = false @@ -121,21 +127,32 @@ class UserStore extends BaseStore { this.set((state) => (state.isLoggingIn = true)); try { - if ("email" in form && !("password" in form)) { + if ("email" in form && "password" in form) { + this._pendingLogin = { + email: form.email, + password: form.password, + sessionExpired: Config.get("sessionExpired", false) + }; + return await db.user.authenticateEmail(form.email); + } else if ("email" in form) { return await db.user.authenticateEmail(form.email); } else if ("code" in form) { const { code, method } = form; - return await db.user.authenticateMultiFactorCode(code, method); - } else if ("password" in form) { - const { email, password } = form; - await db.user.authenticatePassword( - email, - password, - undefined, - sessionExpired - ); - Config.set("encryptBackups", true); + await db.user.authenticateMultiFactorCode(code, method); + if (this._pendingLogin) { + const { email, password, sessionExpired: sessExp } = + this._pendingLogin; + this._pendingLogin = undefined; + await db.user.authenticatePassword( + email, + password, + undefined, + sessExp + ); + } + + Config.set("encryptBackups", true); if (skipInit) return true; return this.init(); } diff --git a/apps/web/src/views/auth.tsx b/apps/web/src/views/auth.tsx index 473f25959..87872c431 100644 --- a/apps/web/src/views/auth.tsx +++ b/apps/web/src/views/auth.tsx @@ -18,7 +18,7 @@ along with this program. If not, see . */ import { useCallback, useEffect, useMemo, useRef, useState } from "react"; -import { Button, Flex, Link, Text } from "@theme-ui/components"; +import { Button, Flex, Link, Text, Box } from "@notesnook/ui"; import { CheckCircle, Loading, @@ -26,10 +26,17 @@ import { MfaSms, MfaEmail, MfaRecoveryCode, + ChevronRight, + ChevronLeft, + Clock, Icon, - Warn + Warn, + Chat, + Email, + RecoveryCode } from "../components/icons"; import Field, { FieldProps } from "../components/field"; +import { OtpInput } from "../components/otp-input"; import { getQueryParams, hardNavigate, makeURL } from "../navigation"; import { store as userstore } from "../stores/user-store"; import { db } from "../common/db"; @@ -38,7 +45,7 @@ import { Loader } from "../components/loader"; import { showToast } from "../utils/toast"; import AuthContainer from "../components/auth-container"; import { useTimer } from "../hooks/use-timer"; -import { ErrorText } from "../components/error-text"; +import { AuthErrorText } from "../components/error-text"; import { AuthenticatorType, User } from "@notesnook/core"; import { ConfirmDialog, showLogoutConfirmation } from "../dialogs/confirm"; import { TaskManager } from "../common/task-manager"; @@ -54,17 +61,18 @@ type EmailFormData = { email: string; }; -type PasswordFormData = EmailFormData & { - password: string; -}; - type MFALoginFormData = { code: string; method: MFAMethodType; }; +type LoginFormData = { + email: string; + password: string; +}; + type SignupFormData = EmailFormData & - PasswordFormData & { + LoginFormData & { "confirm-password": string; }; @@ -78,6 +86,7 @@ type MFAFormData = EmailFormData & { code?: string; secondaryMethod?: MFAMethodType; phoneNumber?: string; + password?: string; }; type MFAErrorData = { @@ -87,10 +96,9 @@ type MFAErrorData = { }; type AuthFormData = { - "login:email": EmailFormData; - "login:password": PasswordFormData; + login: LoginFormData; signup: SignupFormData; - sessionExpiry: EmailFormData; + sessionExpiry: LoginFormData; recover: AccountRecoveryFormData; "mfa:code": MFAFormData; "mfa:select": MFAFormData; @@ -99,7 +107,7 @@ type AuthFormData = { type BaseFormData = | MFAFormData | EmailFormData - | PasswordFormData + | LoginFormData | AccountRecoveryFormData | SignupFormData; @@ -133,10 +141,8 @@ function getRouteComponent( route: TRoute ): AuthComponent | undefined { switch (route) { - case "login:email": - return LoginEmail as AuthComponent; - case "login:password": - return LoginPassword as AuthComponent; + case "login": + return Login as AuthComponent; case "signup": return Signup as AuthComponent; case "sessionExpiry": @@ -210,12 +216,12 @@ export function HeadlessAuth(props: AuthProps) { ); } -function LoginEmail(props: BaseAuthComponentProps<"login:email">) { - const { navigate, canSkip = true, openURL } = props; +function Login(props: BaseAuthComponentProps<"login">) { + const { navigate, canSkip = true, openURL, formData } = props; return ( ) { /> } loading={{ - title: strings.verifyingEmail(), + title: strings.loggingIn(), subtitle: strings.authWait() }} onSubmit={async (form) => { - const { primaryMethod, phoneNumber, secondaryMethod } = - (await userstore.login(form)) as MFAErrorData; + const result = (await userstore.login(form)) as + | MFAErrorData + | undefined; + + if (!result) { + openURL("/plans", { authenticated: true }); + return; + } navigate("mfa:code", { email: form.email, - selectedMethod: primaryMethod, - primaryMethod, - phoneNumber, - secondaryMethod + password: form.password, + selectedMethod: result.primaryMethod, + primaryMethod: result.primaryMethod, + phoneNumber: result.phoneNumber, + secondaryMethod: result.secondaryMethod }); }} > - {(form?: EmailFormData) => ( + {(form?: LoginFormData) => ( <> {IS_BETA ? ( ) { autoComplete="email" label={strings.enterEmailAddress()} autoFocus - defaultValue={form?.email} + defaultValue={form?.email ?? formData?.email} /> - - - )} - - ); -} - -function LoginPassword(props: BaseAuthComponentProps<"login:password">) { - const { navigate, formData, openURL } = props; - - if (!formData) { - openURL("/", { authenticated: false }); - return null; - } - - return ( - { - await userstore.login( - { - password: form.password, - email: formData.email - }, - false, - Config.get("sessionExpired", false) - ); - Config.set("sessionExpired", false); - openURL("/plans", { authenticated: true }); - }} - > - {(form?: PasswordFormData) => ( - <> @@ -338,12 +314,13 @@ function Signup(props: BaseAuthComponentProps<"signup">) { type="signup" title={strings.createAccount()} canSkip={canSkip} + showAgreement subtitle={ navigate("login:email") + onClick: () => navigate("login") }} /> } @@ -386,30 +363,6 @@ function Signup(props: BaseAuthComponentProps<"signup">) { defaultValue={form?.["confirm-password"]} /> - - {strings.signupAgreement[0]()}{" "} - - {strings.signupAgreement[1]()} - {" "} - {strings.signupAgreement[2]()}{" "} - - {strings.signupAgreement[3]()} - - . {strings.signupAgreement[4]()} - )} @@ -427,7 +380,7 @@ function SessionExpiry(props: BaseAuthComponentProps<"sessionExpiry">) { setUser(user); } else if (!user) { Config.set("sessionExpired", false); - navigate("login:email"); + navigate("login"); } else openURL("/", { authenticated: true }); })(); }, [navigate, openURL]); @@ -448,18 +401,27 @@ function SessionExpiry(props: BaseAuthComponentProps<"sessionExpiry">) { subtitle: strings.pleaseWaitLogin() }} openURL={openURL} - onSubmit={async () => { + onSubmit={async (form) => { if (!user) return; - const { primaryMethod, phoneNumber, secondaryMethod } = - (await userstore.login(user)) as MFAErrorData; + const result = (await userstore.login({ + email: user.email, + password: form.password + })) as MFAErrorData | undefined; + + Config.set("sessionExpired", false); + + if (!result) { + openURL("/", { authenticated: true }); + return; + } navigate("mfa:code", { email: user.email, - selectedMethod: primaryMethod, - primaryMethod, - phoneNumber, - secondaryMethod + selectedMethod: result.primaryMethod, + primaryMethod: result.primaryMethod, + phoneNumber: result.phoneNumber, + secondaryMethod: result.secondaryMethod }); }} > @@ -473,6 +435,13 @@ function SessionExpiry(props: BaseAuthComponentProps<"sessionExpiry">) { disabled required={false} /> + + {(selectedMethod === "sms" || selectedMethod === "email") && ( + <> + + + + + + + + {"Didn't receive code?"} + + {!enabled && ( + + {`${strings.resendCodeWait()} `} + + {elapsed}s + + + )} + + + + + + )} + + + ); } @@ -731,16 +790,36 @@ type MFAMethod = { type: MFAMethodType; title: string; icon: Icon; + description: string; }; const MFAMethods: MFAMethod[] = [ - { type: "app", title: strings.sendCode(), icon: MfaAuthenticator }, - { type: "sms", title: strings.sendCodeSms(), icon: MfaSms }, - { type: "email", title: strings.sendCodeEmail(), icon: MfaEmail }, - { type: "recoveryCode", title: strings.recoveryCode(), icon: MfaRecoveryCode } + { + type: "app", + title: strings.sendCode(), + icon: MfaAuthenticator, + description: "Use the authenticator app" + }, + { + type: "sms", + title: strings.sendCodeSms(), + icon: Chat, + description: "Text message to my registered number" + }, + { + type: "email", + title: strings.sendCodeEmail(), + icon: Email, + description: "Verify via registered inbox" + }, + { + type: "recoveryCode", + title: strings.recoveryCode(), + icon: RecoveryCode, + description: "Use my original emergency key" + } ]; function MFASelector(props: BaseAuthComponentProps<"mfa:select">) { const { navigate, formData, openURL } = props; - const [selected, setSelected] = useState(0); const isValidMethod = useCallback( (method: MFAMethodType) => { return ( @@ -766,56 +845,84 @@ function MFASelector(props: BaseAuthComponentProps<"mfa:select">) { subtitle: strings.authWait() }} openURL={openURL} - onSubmit={async () => { - const selectedType = MFAMethods[selected]; - formData.selectedMethod = selectedType.type; - navigate("mfa:code", formData); - }} + onSubmit={async () => {}} + onBack={() => navigate("mfa:code", formData)} > {MFAMethods.map( - (method, index) => + (method) => isValidMethod(method.type) && ( ) )} - {/* */} - {/* */} ); } @@ -831,13 +938,24 @@ type AuthFormProps = { openURL: OpenURLFunction; loadForever?: boolean; canSkip?: boolean; + showAgreement?: boolean; + onBack?: () => void; children?: | React.ReactNode | ((form?: AuthFormData[TType]) => React.ReactNode); }; export function AuthForm(props: AuthFormProps) { - const { title, subtitle, children, canSkip, loadForever, openURL } = props; + const { + title, + subtitle, + children, + canSkip, + loadForever, + openURL, + showAgreement, + onBack + } = props; const [isSubmitting, setIsSubmitting] = useState(false); const [error, setError] = useState(); const formRef = useRef(null); @@ -878,23 +996,89 @@ export function AuthForm(props: AuthFormProps) { sx={{ flex: 1, flexDirection: "column", - alignItems: "center", - justifyContent: "center", - width: ["95%", "95%", "45%"], - alignSelf: "center" + alignItems: "left", + // justifyContent: "center", + width: ["95%", "95%", "65%"], + maxWidth: "500px", + alignSelf: "center", + mt: "149px" }} > - + {onBack ? ( + + ) : ( + + + + + + Notesnook + + + )} + {title} {subtitle} @@ -903,30 +1087,58 @@ export function AuthForm(props: AuthFormProps) { {canSkip && ( )} + {showAgreement && ( + + {strings.signupAgreement[0]()}{" "} + + {strings.signupAgreement[1]()} + {" "} + {strings.signupAgreement[2]()}{" "} + + {strings.signupAgreement[3]()} + + . {strings.signupAgreement[4]()} + + )} - + ); } @@ -946,11 +1158,11 @@ function SubtitleWithAction(props: SubtitleWithActionProps) { type="button" variant="anchor" sx={{ - textDecoration: "underline", - fontWeight: "bold", - fontSize: "subtitle", - color: "paragraph", - cursor: "pointer" + fontWeight: 600, + fontSize: "sm", + color: "accent", + cursor: "pointer", + textDecoration: "none" }} onClick={props.action.onClick} > @@ -967,14 +1179,20 @@ export function AuthField(props: FieldProps) { {...props} name={props.name || props.id} data-test-id={props["data-test-id"] || props.id} - sx={{ mt: 2, width: "100%" }} + sx={{ mt: 2, width: "100%", gap: "spacing3" }} styles={{ - // label: { fontWeight: "normal" }, + label: { + fontSize: "xs", + fontWeight: 400, + color: "paragraph-secondary" + }, input: { - p: "12px", - borderRadius: "default", - bg: "background", - boxShadow: "0px 0px 5px 0px #00000019", + fontSize: "xs", + borderRadius: "spacing4", + outline: 0, + bg: "background-secondary", + paddingY: "spacing6", + paddingX: "spacing4", "::-moz-appearance": "textfield", "::-webkit-inner-spin-button": { "-webkit-appearance": "none" @@ -998,15 +1216,10 @@ export function SubmitButton(props: SubmitButtonProps) {