@roberttlange/agentlens 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser.d.ts +26 -0
- package/dist/browser.js +216 -0
- package/dist/browser.js.map +1 -0
- package/dist/main.d.ts +2 -0
- package/dist/main.js +394 -0
- package/dist/main.js.map +1 -0
- package/dist/main.test.d.ts +1 -0
- package/dist/main.test.js +403 -0
- package/dist/main.test.js.map +1 -0
- package/node_modules/@agentlens/contracts/dist/index.d.ts +221 -0
- package/node_modules/@agentlens/contracts/dist/index.js +2 -0
- package/node_modules/@agentlens/contracts/dist/index.js.map +1 -0
- package/node_modules/@agentlens/contracts/package.json +22 -0
- package/node_modules/@agentlens/core/dist/__tests__/activityStatus.test.d.ts +1 -0
- package/node_modules/@agentlens/core/dist/__tests__/activityStatus.test.js +485 -0
- package/node_modules/@agentlens/core/dist/__tests__/activityStatus.test.js.map +1 -0
- package/node_modules/@agentlens/core/dist/__tests__/config.test.d.ts +1 -0
- package/node_modules/@agentlens/core/dist/__tests__/config.test.js +121 -0
- package/node_modules/@agentlens/core/dist/__tests__/config.test.js.map +1 -0
- package/node_modules/@agentlens/core/dist/__tests__/index.test.d.ts +1 -0
- package/node_modules/@agentlens/core/dist/__tests__/index.test.js +2058 -0
- package/node_modules/@agentlens/core/dist/__tests__/index.test.js.map +1 -0
- package/node_modules/@agentlens/core/dist/config.d.ts +9 -0
- package/node_modules/@agentlens/core/dist/config.js +273 -0
- package/node_modules/@agentlens/core/dist/config.js.map +1 -0
- package/node_modules/@agentlens/core/dist/discovery.d.ts +13 -0
- package/node_modules/@agentlens/core/dist/discovery.js +177 -0
- package/node_modules/@agentlens/core/dist/discovery.js.map +1 -0
- package/node_modules/@agentlens/core/dist/index.d.ts +6 -0
- package/node_modules/@agentlens/core/dist/index.js +7 -0
- package/node_modules/@agentlens/core/dist/index.js.map +1 -0
- package/node_modules/@agentlens/core/dist/metrics.d.ts +10 -0
- package/node_modules/@agentlens/core/dist/metrics.js +445 -0
- package/node_modules/@agentlens/core/dist/metrics.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/claude.d.ts +8 -0
- package/node_modules/@agentlens/core/dist/parsers/claude.js +264 -0
- package/node_modules/@agentlens/core/dist/parsers/claude.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/claude.test.d.ts +1 -0
- package/node_modules/@agentlens/core/dist/parsers/claude.test.js +87 -0
- package/node_modules/@agentlens/core/dist/parsers/claude.test.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/codex.d.ts +8 -0
- package/node_modules/@agentlens/core/dist/parsers/codex.js +526 -0
- package/node_modules/@agentlens/core/dist/parsers/codex.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/common.d.ts +35 -0
- package/node_modules/@agentlens/core/dist/parsers/common.js +138 -0
- package/node_modules/@agentlens/core/dist/parsers/common.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/cursor.d.ts +8 -0
- package/node_modules/@agentlens/core/dist/parsers/cursor.js +511 -0
- package/node_modules/@agentlens/core/dist/parsers/cursor.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/cursor.test.d.ts +1 -0
- package/node_modules/@agentlens/core/dist/parsers/cursor.test.js +179 -0
- package/node_modules/@agentlens/core/dist/parsers/cursor.test.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/gemini.d.ts +9 -0
- package/node_modules/@agentlens/core/dist/parsers/gemini.js +403 -0
- package/node_modules/@agentlens/core/dist/parsers/gemini.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/gemini.test.d.ts +1 -0
- package/node_modules/@agentlens/core/dist/parsers/gemini.test.js +107 -0
- package/node_modules/@agentlens/core/dist/parsers/gemini.test.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/generic.d.ts +8 -0
- package/node_modules/@agentlens/core/dist/parsers/generic.js +32 -0
- package/node_modules/@agentlens/core/dist/parsers/generic.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/index.d.ts +11 -0
- package/node_modules/@agentlens/core/dist/parsers/index.js +59 -0
- package/node_modules/@agentlens/core/dist/parsers/index.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/opencode.d.ts +8 -0
- package/node_modules/@agentlens/core/dist/parsers/opencode.js +591 -0
- package/node_modules/@agentlens/core/dist/parsers/opencode.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/opencode.test.d.ts +1 -0
- package/node_modules/@agentlens/core/dist/parsers/opencode.test.js +219 -0
- package/node_modules/@agentlens/core/dist/parsers/opencode.test.js.map +1 -0
- package/node_modules/@agentlens/core/dist/parsers/types.d.ts +15 -0
- package/node_modules/@agentlens/core/dist/parsers/types.js +2 -0
- package/node_modules/@agentlens/core/dist/parsers/types.js.map +1 -0
- package/node_modules/@agentlens/core/dist/redaction.d.ts +3 -0
- package/node_modules/@agentlens/core/dist/redaction.js +97 -0
- package/node_modules/@agentlens/core/dist/redaction.js.map +1 -0
- package/node_modules/@agentlens/core/dist/snapshot.d.ts +2 -0
- package/node_modules/@agentlens/core/dist/snapshot.js +9 -0
- package/node_modules/@agentlens/core/dist/snapshot.js.map +1 -0
- package/node_modules/@agentlens/core/dist/sourceProfiles.d.ts +4 -0
- package/node_modules/@agentlens/core/dist/sourceProfiles.js +176 -0
- package/node_modules/@agentlens/core/dist/sourceProfiles.js.map +1 -0
- package/node_modules/@agentlens/core/dist/traceIndex.d.ts +66 -0
- package/node_modules/@agentlens/core/dist/traceIndex.js +1281 -0
- package/node_modules/@agentlens/core/dist/traceIndex.js.map +1 -0
- package/node_modules/@agentlens/core/dist/utils.d.ts +10 -0
- package/node_modules/@agentlens/core/dist/utils.js +125 -0
- package/node_modules/@agentlens/core/dist/utils.js.map +1 -0
- package/node_modules/@agentlens/core/package.json +28 -0
- package/node_modules/@agentlens/server/dist/app.d.ts +133 -0
- package/node_modules/@agentlens/server/dist/app.js +1939 -0
- package/node_modules/@agentlens/server/dist/app.js.map +1 -0
- package/node_modules/@agentlens/server/dist/app.test.d.ts +1 -0
- package/node_modules/@agentlens/server/dist/app.test.js +925 -0
- package/node_modules/@agentlens/server/dist/app.test.js.map +1 -0
- package/node_modules/@agentlens/server/dist/main.d.ts +1 -0
- package/node_modules/@agentlens/server/dist/main.js +3 -0
- package/node_modules/@agentlens/server/dist/main.js.map +1 -0
- package/node_modules/@agentlens/server/dist/web/assets/index-B9pmgl04.js +52 -0
- package/node_modules/@agentlens/server/dist/web/assets/index-Dwy5TIZL.css +1 -0
- package/node_modules/@agentlens/server/dist/web/favicon.png +0 -0
- package/node_modules/@agentlens/server/dist/web/favicon.svg +37 -0
- package/node_modules/@agentlens/server/dist/web/icons/claude.svg +7 -0
- package/node_modules/@agentlens/server/dist/web/icons/cursor.jpeg +0 -0
- package/node_modules/@agentlens/server/dist/web/icons/cursor.svg +5 -0
- package/node_modules/@agentlens/server/dist/web/icons/gemini.jpeg +0 -0
- package/node_modules/@agentlens/server/dist/web/icons/gemini.svg +37 -0
- package/node_modules/@agentlens/server/dist/web/icons/openai.svg +2 -0
- package/node_modules/@agentlens/server/dist/web/icons/opencode.png +0 -0
- package/node_modules/@agentlens/server/dist/web/index.html +17 -0
- package/node_modules/@agentlens/server/package.json +24 -0
- package/node_modules/@fastify/accept-negotiator/LICENSE +22 -0
- package/node_modules/@fastify/accept-negotiator/README.md +52 -0
- package/node_modules/@fastify/accept-negotiator/index.js +170 -0
- package/node_modules/@fastify/accept-negotiator/package.json +77 -0
- package/node_modules/@fastify/accept-negotiator/types/index.d.ts +17 -0
- package/node_modules/@fastify/ajv-compiler/.gitattributes +2 -0
- package/node_modules/@fastify/ajv-compiler/.github/.stale.yml +21 -0
- package/node_modules/@fastify/ajv-compiler/.github/dependabot.yml +13 -0
- package/node_modules/@fastify/ajv-compiler/.github/tests_checker.yml +8 -0
- package/node_modules/@fastify/ajv-compiler/.github/workflows/ci.yml +33 -0
- package/node_modules/@fastify/ajv-compiler/LICENSE +23 -0
- package/node_modules/@fastify/ajv-compiler/README.md +237 -0
- package/node_modules/@fastify/ajv-compiler/benchmark/small-object.mjs +37 -0
- package/node_modules/@fastify/ajv-compiler/eslint.config.js +6 -0
- package/node_modules/@fastify/ajv-compiler/index.js +53 -0
- package/node_modules/@fastify/ajv-compiler/lib/default-ajv-options.js +14 -0
- package/node_modules/@fastify/ajv-compiler/lib/serializer-compiler.js +27 -0
- package/node_modules/@fastify/ajv-compiler/lib/validator-compiler.js +58 -0
- package/node_modules/@fastify/ajv-compiler/package.json +84 -0
- package/node_modules/@fastify/ajv-compiler/standalone.js +44 -0
- package/node_modules/@fastify/ajv-compiler/test/.gitkeep +0 -0
- package/node_modules/@fastify/ajv-compiler/test/duplicated-id-compile.test.js +55 -0
- package/node_modules/@fastify/ajv-compiler/test/index.test.js +307 -0
- package/node_modules/@fastify/ajv-compiler/test/plugins.test.js +246 -0
- package/node_modules/@fastify/ajv-compiler/test/serialization.test.js +279 -0
- package/node_modules/@fastify/ajv-compiler/test/standalone.test.js +203 -0
- package/node_modules/@fastify/ajv-compiler/types/index.d.ts +87 -0
- package/node_modules/@fastify/ajv-compiler/types/index.test-d.ts +302 -0
- package/node_modules/@fastify/error/.gitattributes +2 -0
- package/node_modules/@fastify/error/.github/dependabot.yml +13 -0
- package/node_modules/@fastify/error/.github/workflows/ci.yml +28 -0
- package/node_modules/@fastify/error/LICENSE +21 -0
- package/node_modules/@fastify/error/README.md +140 -0
- package/node_modules/@fastify/error/benchmarks/create.js +9 -0
- package/node_modules/@fastify/error/benchmarks/instantiate.js +18 -0
- package/node_modules/@fastify/error/benchmarks/no-stack.js +13 -0
- package/node_modules/@fastify/error/benchmarks/toString.js +11 -0
- package/node_modules/@fastify/error/eslint.config.js +6 -0
- package/node_modules/@fastify/error/index.js +100 -0
- package/node_modules/@fastify/error/package.json +75 -0
- package/node_modules/@fastify/error/test/index.test.js +232 -0
- package/node_modules/@fastify/error/test/instanceof.test.js +263 -0
- package/node_modules/@fastify/error/types/index.d.ts +49 -0
- package/node_modules/@fastify/error/types/index.test-d.ts +92 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/.eslintrc +1 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/.gitattributes +2 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/.github/dependabot.yml +13 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/.github/workflows/ci.yml +28 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/LICENSE +21 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/README.md +128 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/eslint.config.js +6 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/index.js +8 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/package.json +71 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/standalone.js +58 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/test/duplicate-schema.test.js +26 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/test/plugin.test.js +78 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/test/standalone.test.js +230 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/types/index.d.ts +41 -0
- package/node_modules/@fastify/fast-json-stringify-compiler/types/index.test-d.ts +142 -0
- package/node_modules/@fastify/forwarded/LICENSE +24 -0
- package/node_modules/@fastify/forwarded/README.md +43 -0
- package/node_modules/@fastify/forwarded/index.js +59 -0
- package/node_modules/@fastify/forwarded/package.json +74 -0
- package/node_modules/@fastify/forwarded/types/index.d.ts +14 -0
- package/node_modules/@fastify/merge-json-schemas/.gitattributes +2 -0
- package/node_modules/@fastify/merge-json-schemas/.github/dependabot.yml +13 -0
- package/node_modules/@fastify/merge-json-schemas/.github/workflows/ci.yml +23 -0
- package/node_modules/@fastify/merge-json-schemas/LICENSE +21 -0
- package/node_modules/@fastify/merge-json-schemas/README.md +119 -0
- package/node_modules/@fastify/merge-json-schemas/eslint.config.js +6 -0
- package/node_modules/@fastify/merge-json-schemas/index.js +357 -0
- package/node_modules/@fastify/merge-json-schemas/lib/errors.js +36 -0
- package/node_modules/@fastify/merge-json-schemas/lib/resolvers.js +127 -0
- package/node_modules/@fastify/merge-json-schemas/package.json +67 -0
- package/node_modules/@fastify/merge-json-schemas/test/additional-items.test.js +164 -0
- package/node_modules/@fastify/merge-json-schemas/test/additional-properties.test.js +129 -0
- package/node_modules/@fastify/merge-json-schemas/test/all-of.test.js +43 -0
- package/node_modules/@fastify/merge-json-schemas/test/any-of.test.js +81 -0
- package/node_modules/@fastify/merge-json-schemas/test/const.test.js +58 -0
- package/node_modules/@fastify/merge-json-schemas/test/contains.test.js +55 -0
- package/node_modules/@fastify/merge-json-schemas/test/custom-resolvers.test.js +50 -0
- package/node_modules/@fastify/merge-json-schemas/test/default-resolver.test.js +111 -0
- package/node_modules/@fastify/merge-json-schemas/test/default.test.js +50 -0
- package/node_modules/@fastify/merge-json-schemas/test/definitions.test.js +46 -0
- package/node_modules/@fastify/merge-json-schemas/test/defs.test.js +46 -0
- package/node_modules/@fastify/merge-json-schemas/test/dependencies.test.js +75 -0
- package/node_modules/@fastify/merge-json-schemas/test/dependent-required.test.js +75 -0
- package/node_modules/@fastify/merge-json-schemas/test/dependent-schemas.test.js +76 -0
- package/node_modules/@fastify/merge-json-schemas/test/enum.test.js +44 -0
- package/node_modules/@fastify/merge-json-schemas/test/exclusive-maximum.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/exclusive-minimum.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/format.test.js +36 -0
- package/node_modules/@fastify/merge-json-schemas/test/id.test.js +22 -0
- package/node_modules/@fastify/merge-json-schemas/test/if-then-else.test.js +550 -0
- package/node_modules/@fastify/merge-json-schemas/test/items.test.js +152 -0
- package/node_modules/@fastify/merge-json-schemas/test/max-items.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/max-length.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/max-properties.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/maximum.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/merge-schema.test.js +29 -0
- package/node_modules/@fastify/merge-json-schemas/test/min-items.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/min-length.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/min-properties.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/minimum.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/multiple-of.test.js +36 -0
- package/node_modules/@fastify/merge-json-schemas/test/not.test.js +29 -0
- package/node_modules/@fastify/merge-json-schemas/test/nullable.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/one-of.test.js +144 -0
- package/node_modules/@fastify/merge-json-schemas/test/properties.test.js +312 -0
- package/node_modules/@fastify/merge-json-schemas/test/property-names.test.js +49 -0
- package/node_modules/@fastify/merge-json-schemas/test/required.test.js +30 -0
- package/node_modules/@fastify/merge-json-schemas/test/type.test.js +52 -0
- package/node_modules/@fastify/merge-json-schemas/test/unique-items.test.js +38 -0
- package/node_modules/@fastify/merge-json-schemas/test/utils.js +9 -0
- package/node_modules/@fastify/merge-json-schemas/types/index.d.ts +61 -0
- package/node_modules/@fastify/merge-json-schemas/types/index.test-d.ts +52 -0
- package/node_modules/@fastify/proxy-addr/.gitattributes +2 -0
- package/node_modules/@fastify/proxy-addr/.github/dependabot.yml +13 -0
- package/node_modules/@fastify/proxy-addr/.github/stale.yml +21 -0
- package/node_modules/@fastify/proxy-addr/.github/workflows/ci.yml +28 -0
- package/node_modules/@fastify/proxy-addr/LICENSE +24 -0
- package/node_modules/@fastify/proxy-addr/README.md +141 -0
- package/node_modules/@fastify/proxy-addr/benchmark/compiling.js +50 -0
- package/node_modules/@fastify/proxy-addr/benchmark/index.js +30 -0
- package/node_modules/@fastify/proxy-addr/benchmark/kind.js +57 -0
- package/node_modules/@fastify/proxy-addr/benchmark/matching.js +78 -0
- package/node_modules/@fastify/proxy-addr/eslint.config.js +6 -0
- package/node_modules/@fastify/proxy-addr/index.js +331 -0
- package/node_modules/@fastify/proxy-addr/package.json +73 -0
- package/node_modules/@fastify/proxy-addr/test/all.test.js +55 -0
- package/node_modules/@fastify/proxy-addr/test/base.test.js +365 -0
- package/node_modules/@fastify/proxy-addr/test/compile.test.js +58 -0
- package/node_modules/@fastify/proxy-addr/types/index.d.ts +18 -0
- package/node_modules/@fastify/proxy-addr/types/index.test-d.ts +27 -0
- package/node_modules/@fastify/send/.gitattributes +2 -0
- package/node_modules/@fastify/send/.github/dependabot.yml +13 -0
- package/node_modules/@fastify/send/.github/workflows/ci.yml +28 -0
- package/node_modules/@fastify/send/HISTORY.md +521 -0
- package/node_modules/@fastify/send/LICENSE +23 -0
- package/node_modules/@fastify/send/README.md +310 -0
- package/node_modules/@fastify/send/benchmarks/collapseLeadingSlashes.js +13 -0
- package/node_modules/@fastify/send/benchmarks/containsDotFile.js +15 -0
- package/node_modules/@fastify/send/benchmarks/isUtf8MimeType.js +23 -0
- package/node_modules/@fastify/send/benchmarks/normalizeList.js +14 -0
- package/node_modules/@fastify/send/benchmarks/parseBytesRange.js +15 -0
- package/node_modules/@fastify/send/eslint.config.js +6 -0
- package/node_modules/@fastify/send/examples/index.html +1 -0
- package/node_modules/@fastify/send/examples/simple.js +15 -0
- package/node_modules/@fastify/send/index.js +28 -0
- package/node_modules/@fastify/send/lib/collapseLeadingSlashes.js +25 -0
- package/node_modules/@fastify/send/lib/containsDotFile.js +23 -0
- package/node_modules/@fastify/send/lib/contentRange.js +18 -0
- package/node_modules/@fastify/send/lib/createHtmlDocument.js +29 -0
- package/node_modules/@fastify/send/lib/createHttpError.js +23 -0
- package/node_modules/@fastify/send/lib/isUtf8MimeType.js +12 -0
- package/node_modules/@fastify/send/lib/normalizeList.js +28 -0
- package/node_modules/@fastify/send/lib/parseBytesRange.js +133 -0
- package/node_modules/@fastify/send/lib/parseTokenList.js +46 -0
- package/node_modules/@fastify/send/lib/send.js +729 -0
- package/node_modules/@fastify/send/package.json +81 -0
- package/node_modules/@fastify/send/test/collapseLeadingSlashes.test.js +22 -0
- package/node_modules/@fastify/send/test/containsDotFile.test.js +18 -0
- package/node_modules/@fastify/send/test/fixtures/.hidden.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/.mine/.hidden.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/.mine/name.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/do..ts.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/empty.txt +0 -0
- package/node_modules/@fastify/send/test/fixtures/images/node-js.png +0 -0
- package/node_modules/@fastify/send/test/fixtures/name.d/name.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/name.dir/name.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/name.html +1 -0
- package/node_modules/@fastify/send/test/fixtures/name.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/no_ext +1 -0
- package/node_modules/@fastify/send/test/fixtures/nums.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/pets/.hidden.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/pets/index.html +3 -0
- package/node_modules/@fastify/send/test/fixtures/snow /342/230/203/index.html +0 -0
- package/node_modules/@fastify/send/test/fixtures/some thing.txt +1 -0
- package/node_modules/@fastify/send/test/fixtures/thing.html.html +1 -0
- package/node_modules/@fastify/send/test/fixtures/tobi.html +1 -0
- package/node_modules/@fastify/send/test/isUtf8MimeType.test.js +22 -0
- package/node_modules/@fastify/send/test/mime.test.js +56 -0
- package/node_modules/@fastify/send/test/normalizeList.test.js +28 -0
- package/node_modules/@fastify/send/test/parseBytesRange.test.js +103 -0
- package/node_modules/@fastify/send/test/send.1.test.js +646 -0
- package/node_modules/@fastify/send/test/send.2.test.js +977 -0
- package/node_modules/@fastify/send/test/send.3.test.js +133 -0
- package/node_modules/@fastify/send/test/utils.js +36 -0
- package/node_modules/@fastify/send/types/index.d.ts +167 -0
- package/node_modules/@fastify/send/types/index.test-d.ts +67 -0
- package/node_modules/@fastify/static/.gitattributes +5 -0
- package/node_modules/@fastify/static/.github/dependabot.yml +13 -0
- package/node_modules/@fastify/static/.github/stale.yml +21 -0
- package/node_modules/@fastify/static/.github/workflows/ci.yml +33 -0
- package/node_modules/@fastify/static/LICENSE +23 -0
- package/node_modules/@fastify/static/README.md +538 -0
- package/node_modules/@fastify/static/eslint.config.js +7 -0
- package/node_modules/@fastify/static/example/public/.hidden/sample.json +1 -0
- package/node_modules/@fastify/static/example/public/images/sample.jpg +0 -0
- package/node_modules/@fastify/static/example/public/index.css +9 -0
- package/node_modules/@fastify/static/example/public/index.html +11 -0
- package/node_modules/@fastify/static/example/public/index.js +8 -0
- package/node_modules/@fastify/static/example/public2/test.css +4 -0
- package/node_modules/@fastify/static/example/public2/test.html +8 -0
- package/node_modules/@fastify/static/example/server-compress.js +15 -0
- package/node_modules/@fastify/static/example/server-dir-list.js +38 -0
- package/node_modules/@fastify/static/example/server-hidden-file.js +15 -0
- package/node_modules/@fastify/static/example/server.js +13 -0
- package/node_modules/@fastify/static/index.js +580 -0
- package/node_modules/@fastify/static/lib/dirList.js +211 -0
- package/node_modules/@fastify/static/package.json +87 -0
- package/node_modules/@fastify/static/test/content-type/binary +0 -0
- package/node_modules/@fastify/static/test/content-type/binary.br +1 -0
- package/node_modules/@fastify/static/test/content-type/index.css +0 -0
- package/node_modules/@fastify/static/test/content-type/index.css.br +1 -0
- package/node_modules/@fastify/static/test/content-type/index.html +5 -0
- package/node_modules/@fastify/static/test/content-type/index.html.br +0 -0
- package/node_modules/@fastify/static/test/content-type/sample.jpg +0 -0
- package/node_modules/@fastify/static/test/content-type/test.txt +0 -0
- package/node_modules/@fastify/static/test/content-type/test.txt.br +1 -0
- package/node_modules/@fastify/static/test/content-type.test.js +144 -0
- package/node_modules/@fastify/static/test/dir-list.test.js +738 -0
- package/node_modules/@fastify/static/test/static/.example +1 -0
- package/node_modules/@fastify/static/test/static/100%.txt +1 -0
- package/node_modules/@fastify/static/test/static/a .md +1 -0
- package/node_modules/@fastify/static/test/static/deep/path/for/test/index.html +5 -0
- package/node_modules/@fastify/static/test/static/deep/path/for/test/purpose/foo.html +5 -0
- package/node_modules/@fastify/static/test/static/foo.html +3 -0
- package/node_modules/@fastify/static/test/static/foobar.html +3 -0
- package/node_modules/@fastify/static/test/static/index.css +0 -0
- package/node_modules/@fastify/static/test/static/index.html +5 -0
- package/node_modules/@fastify/static/test/static/shallow/sample.jpg +0 -0
- package/node_modules/@fastify/static/test/static-dotfiles/.aaa +0 -0
- package/node_modules/@fastify/static/test/static-dotfiles/dir/index.html +0 -0
- package/node_modules/@fastify/static/test/static-dotfiles/test.txt +0 -0
- package/node_modules/@fastify/static/test/static-encode/[...]/a .md +1 -0
- package/node_modules/@fastify/static/test/static-filtered/bar.private +1 -0
- package/node_modules/@fastify/static/test/static-filtered/deep/path/to/baz.html +3 -0
- package/node_modules/@fastify/static/test/static-filtered/deep/path/to/baz.private +1 -0
- package/node_modules/@fastify/static/test/static-filtered/index.html +3 -0
- package/node_modules/@fastify/static/test/static-hidden/.hidden/sample.json +1 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/all-three.html +5 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/all-three.html.br +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/all-three.html.gz +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/baz.json +3 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/dir/index.html +5 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/dir/index.html.br +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/dir-gz/index.html +5 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/dir-gz/index.html.gz +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/empty/.gitkeep +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/gzip-only.html +3 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/gzip-only.html.gz +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/index.html +5 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/index.html.br +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/sample.jpg +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/sample.jpg.br +0 -0
- package/node_modules/@fastify/static/test/static-pre-compressed/uncompressed.html +3 -0
- package/node_modules/@fastify/static/test/static-symbolic-link/origin/subdir/subdir/index.html +3 -0
- package/node_modules/@fastify/static/test/static.test.js +3793 -0
- package/node_modules/@fastify/static/test/static2/bar.html +3 -0
- package/node_modules/@fastify/static/test/static2/index.html +3 -0
- package/node_modules/@fastify/static/types/index.d.ts +140 -0
- package/node_modules/@fastify/static/types/index.test-d.ts +240 -0
- package/node_modules/@iarna/toml/LICENSE +14 -0
- package/node_modules/@iarna/toml/README.md +301 -0
- package/node_modules/@iarna/toml/index.d.ts +57 -0
- package/node_modules/@iarna/toml/lib/create-date.js +23 -0
- package/node_modules/@iarna/toml/lib/create-datetime-float.js +24 -0
- package/node_modules/@iarna/toml/lib/create-datetime.js +10 -0
- package/node_modules/@iarna/toml/lib/create-time.js +22 -0
- package/node_modules/@iarna/toml/lib/format-num.js +6 -0
- package/node_modules/@iarna/toml/lib/parser-debug.js +60 -0
- package/node_modules/@iarna/toml/lib/parser.js +127 -0
- package/node_modules/@iarna/toml/lib/toml-parser.js +1379 -0
- package/node_modules/@iarna/toml/package.json +82 -0
- package/node_modules/@iarna/toml/parse-async.js +30 -0
- package/node_modules/@iarna/toml/parse-pretty-error.js +33 -0
- package/node_modules/@iarna/toml/parse-stream.js +80 -0
- package/node_modules/@iarna/toml/parse-string.js +18 -0
- package/node_modules/@iarna/toml/parse.js +5 -0
- package/node_modules/@iarna/toml/stringify.js +296 -0
- package/node_modules/@iarna/toml/toml.js +3 -0
- package/node_modules/@isaacs/balanced-match/LICENSE.md +23 -0
- package/node_modules/@isaacs/balanced-match/README.md +60 -0
- package/node_modules/@isaacs/balanced-match/dist/commonjs/index.d.ts +9 -0
- package/node_modules/@isaacs/balanced-match/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/@isaacs/balanced-match/dist/commonjs/index.js +59 -0
- package/node_modules/@isaacs/balanced-match/dist/commonjs/index.js.map +1 -0
- package/node_modules/@isaacs/balanced-match/dist/commonjs/package.json +3 -0
- package/node_modules/@isaacs/balanced-match/dist/esm/index.d.ts +9 -0
- package/node_modules/@isaacs/balanced-match/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@isaacs/balanced-match/dist/esm/index.js +54 -0
- package/node_modules/@isaacs/balanced-match/dist/esm/index.js.map +1 -0
- package/node_modules/@isaacs/balanced-match/dist/esm/package.json +3 -0
- package/node_modules/@isaacs/balanced-match/package.json +79 -0
- package/node_modules/@isaacs/brace-expansion/LICENSE +23 -0
- package/node_modules/@isaacs/brace-expansion/README.md +97 -0
- package/node_modules/@isaacs/brace-expansion/dist/commonjs/index.d.ts +6 -0
- package/node_modules/@isaacs/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/@isaacs/brace-expansion/dist/commonjs/index.js +199 -0
- package/node_modules/@isaacs/brace-expansion/dist/commonjs/index.js.map +1 -0
- package/node_modules/@isaacs/brace-expansion/dist/commonjs/package.json +3 -0
- package/node_modules/@isaacs/brace-expansion/dist/esm/index.d.ts +6 -0
- package/node_modules/@isaacs/brace-expansion/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@isaacs/brace-expansion/dist/esm/index.js +195 -0
- package/node_modules/@isaacs/brace-expansion/dist/esm/index.js.map +1 -0
- package/node_modules/@isaacs/brace-expansion/dist/esm/package.json +3 -0
- package/node_modules/@isaacs/brace-expansion/package.json +60 -0
- package/node_modules/@isaacs/cliui/LICENSE.md +63 -0
- package/node_modules/@isaacs/cliui/README.md +151 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-regex/index.d.ts +4 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-regex/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-regex/index.js +16 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-regex/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-styles/index.d.ts +34 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-styles/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-styles/index.js +170 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/ansi-styles/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/eastasianwidth/index.d.ts +6 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/eastasianwidth/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/eastasianwidth/index.js +307 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/eastasianwidth/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/emoji-regex/index.d.ts +2 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/emoji-regex/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/emoji-regex/index.js +7 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/emoji-regex/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/index.d.ts +41 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/index.js +322 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/index.min.js +12 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/index.min.js.map +7 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/package.json +3 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/string-width/index.d.ts +5 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/string-width/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/string-width/index.js +49 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/string-width/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/strip-ansi/index.d.ts +2 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/strip-ansi/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/strip-ansi/index.js +8 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/strip-ansi/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/wrap-ansi/index.d.ts +7 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/wrap-ansi/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/wrap-ansi/index.js +176 -0
- package/node_modules/@isaacs/cliui/dist/commonjs/wrap-ansi/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-regex/index.d.ts +4 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-regex/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-regex/index.js +12 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-regex/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-styles/index.d.ts +34 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-styles/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-styles/index.js +167 -0
- package/node_modules/@isaacs/cliui/dist/esm/ansi-styles/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/eastasianwidth/index.d.ts +6 -0
- package/node_modules/@isaacs/cliui/dist/esm/eastasianwidth/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/eastasianwidth/index.js +299 -0
- package/node_modules/@isaacs/cliui/dist/esm/eastasianwidth/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/emoji-regex/index.d.ts +2 -0
- package/node_modules/@isaacs/cliui/dist/esm/emoji-regex/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/emoji-regex/index.js +3 -0
- package/node_modules/@isaacs/cliui/dist/esm/emoji-regex/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/index.d.ts +41 -0
- package/node_modules/@isaacs/cliui/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/index.js +317 -0
- package/node_modules/@isaacs/cliui/dist/esm/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/index.min.js +12 -0
- package/node_modules/@isaacs/cliui/dist/esm/index.min.js.map +7 -0
- package/node_modules/@isaacs/cliui/dist/esm/package.json +3 -0
- package/node_modules/@isaacs/cliui/dist/esm/string-width/index.d.ts +5 -0
- package/node_modules/@isaacs/cliui/dist/esm/string-width/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/string-width/index.js +46 -0
- package/node_modules/@isaacs/cliui/dist/esm/string-width/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/strip-ansi/index.d.ts +2 -0
- package/node_modules/@isaacs/cliui/dist/esm/strip-ansi/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/strip-ansi/index.js +4 -0
- package/node_modules/@isaacs/cliui/dist/esm/strip-ansi/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/wrap-ansi/index.d.ts +7 -0
- package/node_modules/@isaacs/cliui/dist/esm/wrap-ansi/index.d.ts.map +1 -0
- package/node_modules/@isaacs/cliui/dist/esm/wrap-ansi/index.js +172 -0
- package/node_modules/@isaacs/cliui/dist/esm/wrap-ansi/index.js.map +1 -0
- package/node_modules/@isaacs/cliui/package.json +163 -0
- package/node_modules/@lukeed/ms/dist/index.js +37 -0
- package/node_modules/@lukeed/ms/dist/index.min.js +1 -0
- package/node_modules/@lukeed/ms/dist/index.mjs +34 -0
- package/node_modules/@lukeed/ms/index.d.ts +2 -0
- package/node_modules/@lukeed/ms/license +9 -0
- package/node_modules/@lukeed/ms/package.json +48 -0
- package/node_modules/@lukeed/ms/readme.md +133 -0
- package/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- package/node_modules/@nodelib/fs.scandir/README.md +171 -0
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- package/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- package/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- package/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- package/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- package/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- package/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- package/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- package/node_modules/@nodelib/fs.scandir/package.json +44 -0
- package/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- package/node_modules/@nodelib/fs.stat/README.md +126 -0
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- package/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- package/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- package/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- package/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- package/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- package/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.stat/package.json +37 -0
- package/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- package/node_modules/@nodelib/fs.walk/README.md +215 -0
- package/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- package/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- package/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- package/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- package/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- package/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- package/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- package/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- package/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- package/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- package/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- package/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- package/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- package/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- package/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- package/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- package/node_modules/@nodelib/fs.walk/package.json +44 -0
- package/node_modules/@pinojs/redact/.github/dependabot.yml +13 -0
- package/node_modules/@pinojs/redact/.github/workflows/ci.yml +48 -0
- package/node_modules/@pinojs/redact/.github/workflows/publish-release.yml +43 -0
- package/node_modules/@pinojs/redact/LICENSE +21 -0
- package/node_modules/@pinojs/redact/README.md +350 -0
- package/node_modules/@pinojs/redact/benchmarks/basic.js +184 -0
- package/node_modules/@pinojs/redact/eslint.config.js +1 -0
- package/node_modules/@pinojs/redact/index.d.ts +52 -0
- package/node_modules/@pinojs/redact/index.js +529 -0
- package/node_modules/@pinojs/redact/index.test-d.ts +22 -0
- package/node_modules/@pinojs/redact/package.json +37 -0
- package/node_modules/@pinojs/redact/scripts/sync-version.mjs +20 -0
- package/node_modules/@pinojs/redact/test/actual-redact-comparison.test.js +211 -0
- package/node_modules/@pinojs/redact/test/index.test.js +824 -0
- package/node_modules/@pinojs/redact/test/integration.test.js +390 -0
- package/node_modules/@pinojs/redact/test/multiple-wildcards.test.js +227 -0
- package/node_modules/@pinojs/redact/test/prototype-pollution.test.js +223 -0
- package/node_modules/@pinojs/redact/test/selective-clone.test.js +115 -0
- package/node_modules/@pinojs/redact/tsconfig.json +19 -0
- package/node_modules/abstract-logging/Readme.md +47 -0
- package/node_modules/abstract-logging/index.js +18 -0
- package/node_modules/abstract-logging/package.json +25 -0
- package/node_modules/abstract-logging/test.js +17 -0
- package/node_modules/ajv/.runkit_example.js +23 -0
- package/node_modules/ajv/LICENSE +22 -0
- package/node_modules/ajv/README.md +207 -0
- package/node_modules/ajv/dist/2019.d.ts +19 -0
- package/node_modules/ajv/dist/2019.js +61 -0
- package/node_modules/ajv/dist/2019.js.map +1 -0
- package/node_modules/ajv/dist/2020.d.ts +19 -0
- package/node_modules/ajv/dist/2020.js +55 -0
- package/node_modules/ajv/dist/2020.js.map +1 -0
- package/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/node_modules/ajv/dist/ajv.js +50 -0
- package/node_modules/ajv/dist/ajv.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/node_modules/ajv/dist/compile/errors.js +123 -0
- package/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/node_modules/ajv/dist/compile/index.js +242 -0
- package/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/node_modules/ajv/dist/compile/names.js +28 -0
- package/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/node_modules/ajv/dist/compile/rules.js +26 -0
- package/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/node_modules/ajv/dist/compile/util.js +178 -0
- package/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/node_modules/ajv/dist/core.d.ts +173 -0
- package/node_modules/ajv/dist/core.js +618 -0
- package/node_modules/ajv/dist/core.js.map +1 -0
- package/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/node_modules/ajv/dist/jtd.js +72 -0
- package/node_modules/ajv/dist/jtd.js.map +1 -0
- package/node_modules/ajv/dist/refs/data.json +13 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/node_modules/ajv/dist/standalone/index.js +90 -0
- package/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/node_modules/ajv/dist/types/index.js +3 -0
- package/node_modules/ajv/dist/types/index.js.map +1 -0
- package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/node_modules/ajv/lib/2019.ts +81 -0
- package/node_modules/ajv/lib/2020.ts +75 -0
- package/node_modules/ajv/lib/ajv.ts +70 -0
- package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/node_modules/ajv/lib/compile/index.ts +324 -0
- package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
- package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/node_modules/ajv/lib/compile/names.ts +27 -0
- package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/node_modules/ajv/lib/compile/util.ts +213 -0
- package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/node_modules/ajv/lib/core.ts +891 -0
- package/node_modules/ajv/lib/jtd.ts +132 -0
- package/node_modules/ajv/lib/refs/data.json +13 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/node_modules/ajv/lib/types/index.ts +244 -0
- package/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/node_modules/ajv/package.json +126 -0
- package/node_modules/ajv-formats/LICENSE +21 -0
- package/node_modules/ajv-formats/README.md +125 -0
- package/node_modules/ajv-formats/dist/formats.d.ts +9 -0
- package/node_modules/ajv-formats/dist/formats.js +208 -0
- package/node_modules/ajv-formats/dist/formats.js.map +1 -0
- package/node_modules/ajv-formats/dist/index.d.ts +15 -0
- package/node_modules/ajv-formats/dist/index.js +37 -0
- package/node_modules/ajv-formats/dist/index.js.map +1 -0
- package/node_modules/ajv-formats/dist/limit.d.ts +10 -0
- package/node_modules/ajv-formats/dist/limit.js +69 -0
- package/node_modules/ajv-formats/dist/limit.js.map +1 -0
- package/node_modules/ajv-formats/package.json +74 -0
- package/node_modules/ajv-formats/src/formats.ts +269 -0
- package/node_modules/ajv-formats/src/index.ts +62 -0
- package/node_modules/ajv-formats/src/limit.ts +99 -0
- package/node_modules/atomic-sleep/.travis.yml +11 -0
- package/node_modules/atomic-sleep/LICENSE +22 -0
- package/node_modules/atomic-sleep/index.js +38 -0
- package/node_modules/atomic-sleep/package.json +37 -0
- package/node_modules/atomic-sleep/readme.md +58 -0
- package/node_modules/atomic-sleep/test.js +47 -0
- package/node_modules/avvio/.gitattributes +2 -0
- package/node_modules/avvio/.github/dependabot.yml +13 -0
- package/node_modules/avvio/.github/release-drafter.yml +4 -0
- package/node_modules/avvio/.github/tests_checker.yml +3 -0
- package/node_modules/avvio/.github/workflows/ci.yml +24 -0
- package/node_modules/avvio/.taprc +3 -0
- package/node_modules/avvio/LICENSE +24 -0
- package/node_modules/avvio/README.md +670 -0
- package/node_modules/avvio/boot.js +607 -0
- package/node_modules/avvio/examples/example.js +72 -0
- package/node_modules/avvio/index.d.ts +92 -0
- package/node_modules/avvio/lib/create-promise.js +45 -0
- package/node_modules/avvio/lib/debug.js +19 -0
- package/node_modules/avvio/lib/errors.js +38 -0
- package/node_modules/avvio/lib/execute-with-thenable.js +28 -0
- package/node_modules/avvio/lib/get-plugin-name.js +34 -0
- package/node_modules/avvio/lib/is-bundled-or-typescript-plugin.js +23 -0
- package/node_modules/avvio/lib/is-promise-like.js +17 -0
- package/node_modules/avvio/lib/plugin.js +279 -0
- package/node_modules/avvio/lib/symbols.js +26 -0
- package/node_modules/avvio/lib/thenify.js +60 -0
- package/node_modules/avvio/lib/time-tree.js +200 -0
- package/node_modules/avvio/lib/validate-plugin.js +26 -0
- package/node_modules/avvio/package.json +51 -0
- package/node_modules/avvio/test/after-and-ready.test.js +864 -0
- package/node_modules/avvio/test/after-pass-through.test.js +32 -0
- package/node_modules/avvio/test/after-self-promise.test.js +20 -0
- package/node_modules/avvio/test/after-throw.test.js +24 -0
- package/node_modules/avvio/test/after-use-after.test.js +90 -0
- package/node_modules/avvio/test/async-await.test.js +325 -0
- package/node_modules/avvio/test/await-after.test.js +449 -0
- package/node_modules/avvio/test/await-self.test.js +31 -0
- package/node_modules/avvio/test/await-use.test.js +294 -0
- package/node_modules/avvio/test/basic.test.js +439 -0
- package/node_modules/avvio/test/callbacks.test.js +113 -0
- package/node_modules/avvio/test/catch-override-exception.test.js +26 -0
- package/node_modules/avvio/test/chainable.test.js +67 -0
- package/node_modules/avvio/test/close.test.js +544 -0
- package/node_modules/avvio/test/errors.test.js +26 -0
- package/node_modules/avvio/test/esm.mjs +12 -0
- package/node_modules/avvio/test/esm.test.js +14 -0
- package/node_modules/avvio/test/events-listeners.test.js +23 -0
- package/node_modules/avvio/test/expose.test.js +80 -0
- package/node_modules/avvio/test/fixtures/dummy.txt +1 -0
- package/node_modules/avvio/test/fixtures/esm.mjs +3 -0
- package/node_modules/avvio/test/fixtures/plugin-no-next.js +5 -0
- package/node_modules/avvio/test/gh-issues/bug-205.test.js +16 -0
- package/node_modules/avvio/test/lib/create-promise.test.js +55 -0
- package/node_modules/avvio/test/lib/execute-with-thenable.test.js +82 -0
- package/node_modules/avvio/test/lib/get-plugin-name.test.js +67 -0
- package/node_modules/avvio/test/lib/is-bundled-or-typescript-plugin.test.js +20 -0
- package/node_modules/avvio/test/lib/is-promise-like.test.js +20 -0
- package/node_modules/avvio/test/lib/thenify.test.js +123 -0
- package/node_modules/avvio/test/lib/time-tree.test.js +391 -0
- package/node_modules/avvio/test/lib/validate-plugin.test.js +19 -0
- package/node_modules/avvio/test/load-plugin.test.js +123 -0
- package/node_modules/avvio/test/no-done.test.js +18 -0
- package/node_modules/avvio/test/on-ready-timeout-await.test.js +33 -0
- package/node_modules/avvio/test/override.test.js +374 -0
- package/node_modules/avvio/test/plugin-loaded-so-far.test.js +84 -0
- package/node_modules/avvio/test/plugin-name.test.js +69 -0
- package/node_modules/avvio/test/plugin-timeout-await.test.js +33 -0
- package/node_modules/avvio/test/plugin-timeout.test.js +218 -0
- package/node_modules/avvio/test/pretty-print.test.js +75 -0
- package/node_modules/avvio/test/reentrant.test.js +124 -0
- package/node_modules/avvio/test/to-json.test.js +151 -0
- package/node_modules/avvio/test/twice-done.test.js +22 -0
- package/node_modules/avvio/test/types/index.ts +411 -0
- package/node_modules/avvio/test/types/tsconfig.json +9 -0
- package/node_modules/braces/LICENSE +21 -0
- package/node_modules/braces/README.md +586 -0
- package/node_modules/braces/index.js +170 -0
- package/node_modules/braces/lib/compile.js +60 -0
- package/node_modules/braces/lib/constants.js +57 -0
- package/node_modules/braces/lib/expand.js +113 -0
- package/node_modules/braces/lib/parse.js +331 -0
- package/node_modules/braces/lib/stringify.js +32 -0
- package/node_modules/braces/lib/utils.js +122 -0
- package/node_modules/braces/package.json +77 -0
- package/node_modules/chokidar/LICENSE +21 -0
- package/node_modules/chokidar/README.md +305 -0
- package/node_modules/chokidar/handler.d.ts +90 -0
- package/node_modules/chokidar/handler.js +632 -0
- package/node_modules/chokidar/index.d.ts +217 -0
- package/node_modules/chokidar/index.js +822 -0
- package/node_modules/chokidar/package.json +63 -0
- package/node_modules/commander/LICENSE +22 -0
- package/node_modules/commander/Readme.md +1149 -0
- package/node_modules/commander/esm.mjs +16 -0
- package/node_modules/commander/index.js +24 -0
- package/node_modules/commander/lib/argument.js +149 -0
- package/node_modules/commander/lib/command.js +2662 -0
- package/node_modules/commander/lib/error.js +39 -0
- package/node_modules/commander/lib/help.js +709 -0
- package/node_modules/commander/lib/option.js +367 -0
- package/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/commander/package-support.json +16 -0
- package/node_modules/commander/package.json +82 -0
- package/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/commander/typings/index.d.ts +1045 -0
- package/node_modules/content-disposition/HISTORY.md +60 -0
- package/node_modules/content-disposition/LICENSE +22 -0
- package/node_modules/content-disposition/README.md +142 -0
- package/node_modules/content-disposition/index.js +458 -0
- package/node_modules/content-disposition/package.json +44 -0
- package/node_modules/cookie/LICENSE +24 -0
- package/node_modules/cookie/README.md +295 -0
- package/node_modules/cookie/dist/index.d.ts +148 -0
- package/node_modules/cookie/dist/index.js +350 -0
- package/node_modules/cookie/dist/index.js.map +1 -0
- package/node_modules/cookie/package.json +47 -0
- package/node_modules/cross-spawn/LICENSE +21 -0
- package/node_modules/cross-spawn/README.md +89 -0
- package/node_modules/cross-spawn/index.js +39 -0
- package/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/node_modules/cross-spawn/lib/parse.js +91 -0
- package/node_modules/cross-spawn/lib/util/escape.js +47 -0
- package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/node_modules/cross-spawn/package.json +73 -0
- package/node_modules/depd/History.md +103 -0
- package/node_modules/depd/LICENSE +22 -0
- package/node_modules/depd/Readme.md +280 -0
- package/node_modules/depd/index.js +538 -0
- package/node_modules/depd/lib/browser/index.js +77 -0
- package/node_modules/depd/package.json +45 -0
- package/node_modules/dequal/dist/index.js +86 -0
- package/node_modules/dequal/dist/index.min.js +1 -0
- package/node_modules/dequal/dist/index.mjs +84 -0
- package/node_modules/dequal/index.d.ts +1 -0
- package/node_modules/dequal/license +21 -0
- package/node_modules/dequal/lite/index.d.ts +1 -0
- package/node_modules/dequal/lite/index.js +31 -0
- package/node_modules/dequal/lite/index.min.js +1 -0
- package/node_modules/dequal/lite/index.mjs +29 -0
- package/node_modules/dequal/package.json +57 -0
- package/node_modules/dequal/readme.md +112 -0
- package/node_modules/escape-html/LICENSE +24 -0
- package/node_modules/escape-html/Readme.md +43 -0
- package/node_modules/escape-html/index.js +78 -0
- package/node_modules/escape-html/package.json +24 -0
- package/node_modules/fast-decode-uri-component/.travis.yml +12 -0
- package/node_modules/fast-decode-uri-component/LICENSE +23 -0
- package/node_modules/fast-decode-uri-component/README.md +43 -0
- package/node_modules/fast-decode-uri-component/bench.js +35 -0
- package/node_modules/fast-decode-uri-component/index.js +115 -0
- package/node_modules/fast-decode-uri-component/package.json +33 -0
- package/node_modules/fast-decode-uri-component/test.js +32 -0
- package/node_modules/fast-deep-equal/LICENSE +21 -0
- package/node_modules/fast-deep-equal/README.md +96 -0
- package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/node_modules/fast-deep-equal/index.js +46 -0
- package/node_modules/fast-deep-equal/package.json +61 -0
- package/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/react.js +53 -0
- package/node_modules/fast-glob/LICENSE +21 -0
- package/node_modules/fast-glob/README.md +830 -0
- package/node_modules/fast-glob/out/index.d.ts +40 -0
- package/node_modules/fast-glob/out/index.js +102 -0
- package/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
- package/node_modules/fast-glob/out/managers/tasks.js +110 -0
- package/node_modules/fast-glob/out/providers/async.d.ts +9 -0
- package/node_modules/fast-glob/out/providers/async.js +23 -0
- package/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
- package/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
- package/node_modules/fast-glob/out/providers/filters/entry.d.ts +17 -0
- package/node_modules/fast-glob/out/providers/filters/entry.js +85 -0
- package/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
- package/node_modules/fast-glob/out/providers/filters/error.js +15 -0
- package/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
- package/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
- package/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
- package/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
- package/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
- package/node_modules/fast-glob/out/providers/provider.js +48 -0
- package/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
- package/node_modules/fast-glob/out/providers/stream.js +31 -0
- package/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
- package/node_modules/fast-glob/out/providers/sync.js +23 -0
- package/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
- package/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
- package/node_modules/fast-glob/out/readers/async.d.ts +10 -0
- package/node_modules/fast-glob/out/readers/async.js +35 -0
- package/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
- package/node_modules/fast-glob/out/readers/reader.js +33 -0
- package/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
- package/node_modules/fast-glob/out/readers/stream.js +55 -0
- package/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
- package/node_modules/fast-glob/out/readers/sync.js +43 -0
- package/node_modules/fast-glob/out/settings.d.ts +164 -0
- package/node_modules/fast-glob/out/settings.js +59 -0
- package/node_modules/fast-glob/out/types/index.d.ts +31 -0
- package/node_modules/fast-glob/out/types/index.js +2 -0
- package/node_modules/fast-glob/out/utils/array.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/array.js +22 -0
- package/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/errno.js +7 -0
- package/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
- package/node_modules/fast-glob/out/utils/fs.js +19 -0
- package/node_modules/fast-glob/out/utils/index.d.ts +8 -0
- package/node_modules/fast-glob/out/utils/index.js +17 -0
- package/node_modules/fast-glob/out/utils/path.d.ts +13 -0
- package/node_modules/fast-glob/out/utils/path.js +68 -0
- package/node_modules/fast-glob/out/utils/pattern.d.ts +49 -0
- package/node_modules/fast-glob/out/utils/pattern.js +206 -0
- package/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
- package/node_modules/fast-glob/out/utils/stream.js +17 -0
- package/node_modules/fast-glob/out/utils/string.d.ts +2 -0
- package/node_modules/fast-glob/out/utils/string.js +11 -0
- package/node_modules/fast-glob/package.json +81 -0
- package/node_modules/fast-json-stringify/.gitattributes +2 -0
- package/node_modules/fast-json-stringify/.github/dependabot.yml +13 -0
- package/node_modules/fast-json-stringify/.github/stale.yml +21 -0
- package/node_modules/fast-json-stringify/.github/workflows/ci.yml +33 -0
- package/node_modules/fast-json-stringify/LICENSE +24 -0
- package/node_modules/fast-json-stringify/README.md +742 -0
- package/node_modules/fast-json-stringify/benchmark/bench-cmp-branch.js +116 -0
- package/node_modules/fast-json-stringify/benchmark/bench-cmp-lib.js +323 -0
- package/node_modules/fast-json-stringify/benchmark/bench-thread.js +33 -0
- package/node_modules/fast-json-stringify/benchmark/bench.js +391 -0
- package/node_modules/fast-json-stringify/build/build-schema-validator.js +26 -0
- package/node_modules/fast-json-stringify/eslint.config.js +9 -0
- package/node_modules/fast-json-stringify/examples/example.js +81 -0
- package/node_modules/fast-json-stringify/examples/server.js +42 -0
- package/node_modules/fast-json-stringify/index.js +1312 -0
- package/node_modules/fast-json-stringify/lib/location.js +24 -0
- package/node_modules/fast-json-stringify/lib/merge-schemas.js +9 -0
- package/node_modules/fast-json-stringify/lib/schema-validator.js +1134 -0
- package/node_modules/fast-json-stringify/lib/serializer.js +141 -0
- package/node_modules/fast-json-stringify/lib/standalone.js +34 -0
- package/node_modules/fast-json-stringify/lib/validator.js +96 -0
- package/node_modules/fast-json-stringify/package.json +89 -0
- package/node_modules/fast-json-stringify/test/additionalProperties.test.js +332 -0
- package/node_modules/fast-json-stringify/test/allof.test.js +751 -0
- package/node_modules/fast-json-stringify/test/any.test.js +231 -0
- package/node_modules/fast-json-stringify/test/anyof.test.js +792 -0
- package/node_modules/fast-json-stringify/test/array.test.js +666 -0
- package/node_modules/fast-json-stringify/test/asNumber.test.js +13 -0
- package/node_modules/fast-json-stringify/test/basic.test.js +400 -0
- package/node_modules/fast-json-stringify/test/bigint.test.js +76 -0
- package/node_modules/fast-json-stringify/test/clean-cache.test.js +47 -0
- package/node_modules/fast-json-stringify/test/const.test.js +314 -0
- package/node_modules/fast-json-stringify/test/date.test.js +639 -0
- package/node_modules/fast-json-stringify/test/debug-mode.test.js +121 -0
- package/node_modules/fast-json-stringify/test/defaults.test.js +376 -0
- package/node_modules/fast-json-stringify/test/enum.test.js +37 -0
- package/node_modules/fast-json-stringify/test/fix-604.test.js +25 -0
- package/node_modules/fast-json-stringify/test/fixtures/.keep +0 -0
- package/node_modules/fast-json-stringify/test/if-then-else.test.js +468 -0
- package/node_modules/fast-json-stringify/test/inferType.test.js +92 -0
- package/node_modules/fast-json-stringify/test/infinity.test.js +55 -0
- package/node_modules/fast-json-stringify/test/integer.test.js +194 -0
- package/node_modules/fast-json-stringify/test/invalidSchema.test.js +18 -0
- package/node_modules/fast-json-stringify/test/issue-479.test.js +57 -0
- package/node_modules/fast-json-stringify/test/issue-793.test.js +107 -0
- package/node_modules/fast-json-stringify/test/issue-794.test.js +177 -0
- package/node_modules/fast-json-stringify/test/json-add-comma.test.js +57 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/README.md +10 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft4/required.json +54 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft4.test.js +12 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft6/required.json +70 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft6.test.js +12 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft7/required.json +70 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft7.test.js +12 -0
- package/node_modules/fast-json-stringify/test/json-schema-test-suite/util.js +31 -0
- package/node_modules/fast-json-stringify/test/missing-values.test.js +88 -0
- package/node_modules/fast-json-stringify/test/multi-type-serializer.test.js +19 -0
- package/node_modules/fast-json-stringify/test/nestedObjects.test.js +63 -0
- package/node_modules/fast-json-stringify/test/nullable.test.js +543 -0
- package/node_modules/fast-json-stringify/test/oneof.test.js +490 -0
- package/node_modules/fast-json-stringify/test/patternProperties.test.js +168 -0
- package/node_modules/fast-json-stringify/test/recursion.test.js +245 -0
- package/node_modules/fast-json-stringify/test/ref.json +12 -0
- package/node_modules/fast-json-stringify/test/ref.test.js +2046 -0
- package/node_modules/fast-json-stringify/test/regex.test.js +32 -0
- package/node_modules/fast-json-stringify/test/required.test.js +204 -0
- package/node_modules/fast-json-stringify/test/requiresAjv.test.js +50 -0
- package/node_modules/fast-json-stringify/test/sanitize.test.js +141 -0
- package/node_modules/fast-json-stringify/test/sanitize2.test.js +18 -0
- package/node_modules/fast-json-stringify/test/sanitize3.test.js +17 -0
- package/node_modules/fast-json-stringify/test/sanitize4.test.js +16 -0
- package/node_modules/fast-json-stringify/test/sanitize5.test.js +16 -0
- package/node_modules/fast-json-stringify/test/sanitize6.test.js +22 -0
- package/node_modules/fast-json-stringify/test/sanitize7.test.js +68 -0
- package/node_modules/fast-json-stringify/test/side-effect.test.js +196 -0
- package/node_modules/fast-json-stringify/test/standalone-mode.test.js +219 -0
- package/node_modules/fast-json-stringify/test/string.test.js +84 -0
- package/node_modules/fast-json-stringify/test/surrogate.test.js +67 -0
- package/node_modules/fast-json-stringify/test/toJSON.test.js +203 -0
- package/node_modules/fast-json-stringify/test/typebox.test.js +36 -0
- package/node_modules/fast-json-stringify/test/typesArray.test.js +550 -0
- package/node_modules/fast-json-stringify/test/unknownFormats.test.js +27 -0
- package/node_modules/fast-json-stringify/test/webpack.test.js +50 -0
- package/node_modules/fast-json-stringify/types/index.d.ts +231 -0
- package/node_modules/fast-json-stringify/types/index.test-d.ts +259 -0
- package/node_modules/fast-querystring/LICENSE +25 -0
- package/node_modules/fast-querystring/README.md +114 -0
- package/node_modules/fast-querystring/lib/index.d.ts +14 -0
- package/node_modules/fast-querystring/lib/index.js +20 -0
- package/node_modules/fast-querystring/lib/internals/querystring.js +96 -0
- package/node_modules/fast-querystring/lib/parse.js +126 -0
- package/node_modules/fast-querystring/lib/stringify.js +69 -0
- package/node_modules/fast-querystring/package.json +56 -0
- package/node_modules/fast-uri/.gitattributes +2 -0
- package/node_modules/fast-uri/.github/.stale.yml +21 -0
- package/node_modules/fast-uri/.github/dependabot.yml +13 -0
- package/node_modules/fast-uri/.github/tests_checker.yml +8 -0
- package/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
- package/node_modules/fast-uri/LICENSE +32 -0
- package/node_modules/fast-uri/README.md +143 -0
- package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
- package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
- package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
- package/node_modules/fast-uri/benchmark/package.json +17 -0
- package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
- package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
- package/node_modules/fast-uri/eslint.config.js +6 -0
- package/node_modules/fast-uri/index.js +340 -0
- package/node_modules/fast-uri/lib/schemes.js +267 -0
- package/node_modules/fast-uri/lib/utils.js +336 -0
- package/node_modules/fast-uri/package.json +69 -0
- package/node_modules/fast-uri/test/ajv.test.js +43 -0
- package/node_modules/fast-uri/test/equal.test.js +108 -0
- package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
- package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
- package/node_modules/fast-uri/test/parse.test.js +318 -0
- package/node_modules/fast-uri/test/resolve.test.js +78 -0
- package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
- package/node_modules/fast-uri/test/serialize.test.js +151 -0
- package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
- package/node_modules/fast-uri/test/uri-js.test.js +912 -0
- package/node_modules/fast-uri/test/util.test.js +38 -0
- package/node_modules/fast-uri/tsconfig.json +9 -0
- package/node_modules/fast-uri/types/index.d.ts +60 -0
- package/node_modules/fast-uri/types/index.test-d.ts +17 -0
- package/node_modules/fastify/.borp.yaml +3 -0
- package/node_modules/fastify/.markdownlint-cli2.yaml +22 -0
- package/node_modules/fastify/.prettierignore +1 -0
- package/node_modules/fastify/AGENTS.md +290 -0
- package/node_modules/fastify/GOVERNANCE.md +4 -0
- package/node_modules/fastify/LICENSE +21 -0
- package/node_modules/fastify/PROJECT_CHARTER.md +126 -0
- package/node_modules/fastify/README.md +422 -0
- package/node_modules/fastify/SECURITY.md +211 -0
- package/node_modules/fastify/SPONSORS.md +24 -0
- package/node_modules/fastify/build/build-error-serializer.js +35 -0
- package/node_modules/fastify/build/build-validation.js +167 -0
- package/node_modules/fastify/build/sync-version.js +11 -0
- package/node_modules/fastify/docs/Guides/Benchmarking.md +60 -0
- package/node_modules/fastify/docs/Guides/Database.md +321 -0
- package/node_modules/fastify/docs/Guides/Delay-Accepting-Requests.md +608 -0
- package/node_modules/fastify/docs/Guides/Detecting-When-Clients-Abort.md +172 -0
- package/node_modules/fastify/docs/Guides/Ecosystem.md +768 -0
- package/node_modules/fastify/docs/Guides/Fluent-Schema.md +126 -0
- package/node_modules/fastify/docs/Guides/Getting-Started.md +620 -0
- package/node_modules/fastify/docs/Guides/Index.md +43 -0
- package/node_modules/fastify/docs/Guides/Migration-Guide-V3.md +287 -0
- package/node_modules/fastify/docs/Guides/Migration-Guide-V4.md +271 -0
- package/node_modules/fastify/docs/Guides/Migration-Guide-V5.md +727 -0
- package/node_modules/fastify/docs/Guides/Plugins-Guide.md +520 -0
- package/node_modules/fastify/docs/Guides/Prototype-Poisoning.md +383 -0
- package/node_modules/fastify/docs/Guides/Recommendations.md +353 -0
- package/node_modules/fastify/docs/Guides/Serverless.md +604 -0
- package/node_modules/fastify/docs/Guides/Style-Guide.md +246 -0
- package/node_modules/fastify/docs/Guides/Testing.md +481 -0
- package/node_modules/fastify/docs/Guides/Write-Plugin.md +103 -0
- package/node_modules/fastify/docs/Guides/Write-Type-Provider.md +34 -0
- package/node_modules/fastify/docs/Reference/ContentTypeParser.md +255 -0
- package/node_modules/fastify/docs/Reference/Decorators.md +434 -0
- package/node_modules/fastify/docs/Reference/Encapsulation.md +194 -0
- package/node_modules/fastify/docs/Reference/Errors.md +372 -0
- package/node_modules/fastify/docs/Reference/HTTP2.md +94 -0
- package/node_modules/fastify/docs/Reference/Hooks.md +896 -0
- package/node_modules/fastify/docs/Reference/Index.md +73 -0
- package/node_modules/fastify/docs/Reference/LTS.md +86 -0
- package/node_modules/fastify/docs/Reference/Lifecycle.md +84 -0
- package/node_modules/fastify/docs/Reference/Logging.md +264 -0
- package/node_modules/fastify/docs/Reference/Middleware.md +78 -0
- package/node_modules/fastify/docs/Reference/Plugins.md +245 -0
- package/node_modules/fastify/docs/Reference/Principles.md +73 -0
- package/node_modules/fastify/docs/Reference/Reply.md +994 -0
- package/node_modules/fastify/docs/Reference/Request.md +279 -0
- package/node_modules/fastify/docs/Reference/Routes.md +793 -0
- package/node_modules/fastify/docs/Reference/Server.md +2265 -0
- package/node_modules/fastify/docs/Reference/Type-Providers.md +256 -0
- package/node_modules/fastify/docs/Reference/TypeScript.md +1725 -0
- package/node_modules/fastify/docs/Reference/Validation-and-Serialization.md +1057 -0
- package/node_modules/fastify/docs/Reference/Warnings.md +58 -0
- package/node_modules/fastify/docs/index.md +24 -0
- package/node_modules/fastify/docs/resources/encapsulation_context.drawio +1 -0
- package/node_modules/fastify/docs/resources/encapsulation_context.svg +3 -0
- package/node_modules/fastify/eslint.config.js +35 -0
- package/node_modules/fastify/examples/asyncawait.js +38 -0
- package/node_modules/fastify/examples/benchmark/body.json +3 -0
- package/node_modules/fastify/examples/benchmark/hooks-benchmark-async-await.js +44 -0
- package/node_modules/fastify/examples/benchmark/hooks-benchmark.js +52 -0
- package/node_modules/fastify/examples/benchmark/parser.js +47 -0
- package/node_modules/fastify/examples/benchmark/simple.js +30 -0
- package/node_modules/fastify/examples/benchmark/webstream.js +27 -0
- package/node_modules/fastify/examples/hooks.js +91 -0
- package/node_modules/fastify/examples/http2.js +39 -0
- package/node_modules/fastify/examples/https.js +38 -0
- package/node_modules/fastify/examples/parser.js +53 -0
- package/node_modules/fastify/examples/plugin.js +12 -0
- package/node_modules/fastify/examples/route-prefix.js +38 -0
- package/node_modules/fastify/examples/shared-schema.js +38 -0
- package/node_modules/fastify/examples/simple-stream.js +20 -0
- package/node_modules/fastify/examples/simple.js +32 -0
- package/node_modules/fastify/examples/simple.mjs +27 -0
- package/node_modules/fastify/examples/typescript-server.ts +79 -0
- package/node_modules/fastify/examples/use-plugin.js +29 -0
- package/node_modules/fastify/fastify.d.ts +252 -0
- package/node_modules/fastify/fastify.js +983 -0
- package/node_modules/fastify/integration/server.js +29 -0
- package/node_modules/fastify/integration/test.sh +23 -0
- package/node_modules/fastify/lib/config-validator.js +1238 -0
- package/node_modules/fastify/lib/content-type-parser.js +413 -0
- package/node_modules/fastify/lib/content-type.js +152 -0
- package/node_modules/fastify/lib/context.js +95 -0
- package/node_modules/fastify/lib/decorate.js +152 -0
- package/node_modules/fastify/lib/error-handler.js +173 -0
- package/node_modules/fastify/lib/error-serializer.js +134 -0
- package/node_modules/fastify/lib/error-status.js +14 -0
- package/node_modules/fastify/lib/errors.js +505 -0
- package/node_modules/fastify/lib/four-oh-four.js +190 -0
- package/node_modules/fastify/lib/handle-request.js +195 -0
- package/node_modules/fastify/lib/head-route.js +45 -0
- package/node_modules/fastify/lib/hooks.js +429 -0
- package/node_modules/fastify/lib/initial-config-validation.js +37 -0
- package/node_modules/fastify/lib/logger-factory.js +136 -0
- package/node_modules/fastify/lib/logger-pino.js +68 -0
- package/node_modules/fastify/lib/noop-set.js +10 -0
- package/node_modules/fastify/lib/plugin-override.js +90 -0
- package/node_modules/fastify/lib/plugin-utils.js +169 -0
- package/node_modules/fastify/lib/promise.js +23 -0
- package/node_modules/fastify/lib/reply.js +1008 -0
- package/node_modules/fastify/lib/req-id-gen-factory.js +52 -0
- package/node_modules/fastify/lib/request.js +374 -0
- package/node_modules/fastify/lib/route.js +645 -0
- package/node_modules/fastify/lib/schema-controller.js +164 -0
- package/node_modules/fastify/lib/schemas.js +207 -0
- package/node_modules/fastify/lib/server.js +441 -0
- package/node_modules/fastify/lib/symbols.js +67 -0
- package/node_modules/fastify/lib/validation.js +280 -0
- package/node_modules/fastify/lib/warnings.js +57 -0
- package/node_modules/fastify/lib/wrap-thenable.js +84 -0
- package/node_modules/fastify/node_modules/semver/LICENSE +15 -0
- package/node_modules/fastify/node_modules/semver/README.md +665 -0
- package/node_modules/fastify/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/fastify/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/fastify/node_modules/semver/classes/index.js +7 -0
- package/node_modules/fastify/node_modules/semver/classes/range.js +557 -0
- package/node_modules/fastify/node_modules/semver/classes/semver.js +333 -0
- package/node_modules/fastify/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/fastify/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/fastify/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/fastify/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/fastify/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/fastify/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/fastify/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/fastify/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/major.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/fastify/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/fastify/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/fastify/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/fastify/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/fastify/node_modules/semver/index.js +91 -0
- package/node_modules/fastify/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/fastify/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/fastify/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/fastify/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/fastify/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/fastify/node_modules/semver/internal/re.js +223 -0
- package/node_modules/fastify/node_modules/semver/package.json +78 -0
- package/node_modules/fastify/node_modules/semver/preload.js +4 -0
- package/node_modules/fastify/node_modules/semver/range.bnf +16 -0
- package/node_modules/fastify/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/fastify/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/fastify/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/fastify/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/fastify/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/fastify/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/fastify/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/fastify/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/fastify/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/fastify/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/fastify/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/fastify/package.json +225 -0
- package/node_modules/fastify/test/404s.test.js +2035 -0
- package/node_modules/fastify/test/500s.test.js +422 -0
- package/node_modules/fastify/test/allow-unsafe-regex.test.js +92 -0
- package/node_modules/fastify/test/als.test.js +65 -0
- package/node_modules/fastify/test/async-await.test.js +705 -0
- package/node_modules/fastify/test/async-dispose.test.js +20 -0
- package/node_modules/fastify/test/async_hooks.test.js +52 -0
- package/node_modules/fastify/test/body-limit.test.js +224 -0
- package/node_modules/fastify/test/buffer.test.js +74 -0
- package/node_modules/fastify/test/build/error-serializer.test.js +36 -0
- package/node_modules/fastify/test/build/version.test.js +14 -0
- package/node_modules/fastify/test/build-certificate.js +109 -0
- package/node_modules/fastify/test/bundler/README.md +29 -0
- package/node_modules/fastify/test/bundler/esbuild/bundler-test.js +32 -0
- package/node_modules/fastify/test/bundler/esbuild/package.json +10 -0
- package/node_modules/fastify/test/bundler/esbuild/src/fail-plugin-version.js +14 -0
- package/node_modules/fastify/test/bundler/esbuild/src/index.js +9 -0
- package/node_modules/fastify/test/bundler/webpack/bundler-test.js +32 -0
- package/node_modules/fastify/test/bundler/webpack/package.json +11 -0
- package/node_modules/fastify/test/bundler/webpack/src/fail-plugin-version.js +14 -0
- package/node_modules/fastify/test/bundler/webpack/src/index.js +9 -0
- package/node_modules/fastify/test/bundler/webpack/webpack.config.js +15 -0
- package/node_modules/fastify/test/case-insensitive.test.js +102 -0
- package/node_modules/fastify/test/chainable.test.js +40 -0
- package/node_modules/fastify/test/child-logger-factory.test.js +128 -0
- package/node_modules/fastify/test/client-timeout.test.js +38 -0
- package/node_modules/fastify/test/close-pipelining.test.js +78 -0
- package/node_modules/fastify/test/close.test.js +706 -0
- package/node_modules/fastify/test/conditional-pino.test.js +47 -0
- package/node_modules/fastify/test/connection-timeout.test.js +42 -0
- package/node_modules/fastify/test/constrained-routes.test.js +1138 -0
- package/node_modules/fastify/test/content-length.test.js +174 -0
- package/node_modules/fastify/test/content-parser.test.js +715 -0
- package/node_modules/fastify/test/content-type.test.js +143 -0
- package/node_modules/fastify/test/context-config.test.js +164 -0
- package/node_modules/fastify/test/custom-http-server.test.js +118 -0
- package/node_modules/fastify/test/custom-parser-async.test.js +59 -0
- package/node_modules/fastify/test/custom-parser.0.test.js +701 -0
- package/node_modules/fastify/test/custom-parser.1.test.js +266 -0
- package/node_modules/fastify/test/custom-parser.2.test.js +91 -0
- package/node_modules/fastify/test/custom-parser.3.test.js +208 -0
- package/node_modules/fastify/test/custom-parser.4.test.js +218 -0
- package/node_modules/fastify/test/custom-parser.5.test.js +130 -0
- package/node_modules/fastify/test/custom-querystring-parser.test.js +129 -0
- package/node_modules/fastify/test/decorator.test.js +1330 -0
- package/node_modules/fastify/test/delete.test.js +344 -0
- package/node_modules/fastify/test/diagnostics-channel/404.test.js +49 -0
- package/node_modules/fastify/test/diagnostics-channel/async-delay-request.test.js +65 -0
- package/node_modules/fastify/test/diagnostics-channel/async-request.test.js +64 -0
- package/node_modules/fastify/test/diagnostics-channel/error-before-handler.test.js +35 -0
- package/node_modules/fastify/test/diagnostics-channel/error-request.test.js +53 -0
- package/node_modules/fastify/test/diagnostics-channel/error-status.test.js +123 -0
- package/node_modules/fastify/test/diagnostics-channel/init.test.js +50 -0
- package/node_modules/fastify/test/diagnostics-channel/sync-delay-request.test.js +49 -0
- package/node_modules/fastify/test/diagnostics-channel/sync-request-reply.test.js +51 -0
- package/node_modules/fastify/test/diagnostics-channel/sync-request.test.js +54 -0
- package/node_modules/fastify/test/encapsulated-child-logger-factory.test.js +69 -0
- package/node_modules/fastify/test/encapsulated-error-handler.test.js +237 -0
- package/node_modules/fastify/test/esm/errorCodes.test.mjs +10 -0
- package/node_modules/fastify/test/esm/esm.test.mjs +13 -0
- package/node_modules/fastify/test/esm/index.test.js +8 -0
- package/node_modules/fastify/test/esm/named-exports.mjs +14 -0
- package/node_modules/fastify/test/esm/other.mjs +8 -0
- package/node_modules/fastify/test/esm/plugin.mjs +8 -0
- package/node_modules/fastify/test/fastify-instance.test.js +300 -0
- package/node_modules/fastify/test/find-route.test.js +152 -0
- package/node_modules/fastify/test/fluent-schema.test.js +209 -0
- package/node_modules/fastify/test/genReqId.test.js +426 -0
- package/node_modules/fastify/test/handler-context.test.js +45 -0
- package/node_modules/fastify/test/has-route.test.js +88 -0
- package/node_modules/fastify/test/header-overflow.test.js +55 -0
- package/node_modules/fastify/test/helper.js +496 -0
- package/node_modules/fastify/test/hooks-async.test.js +1099 -0
- package/node_modules/fastify/test/hooks.on-listen.test.js +1162 -0
- package/node_modules/fastify/test/hooks.on-ready.test.js +421 -0
- package/node_modules/fastify/test/hooks.test.js +3578 -0
- package/node_modules/fastify/test/http-methods/copy.test.js +35 -0
- package/node_modules/fastify/test/http-methods/custom-http-methods.test.js +114 -0
- package/node_modules/fastify/test/http-methods/get.test.js +412 -0
- package/node_modules/fastify/test/http-methods/head.test.js +263 -0
- package/node_modules/fastify/test/http-methods/lock.test.js +108 -0
- package/node_modules/fastify/test/http-methods/mkcalendar.test.js +143 -0
- package/node_modules/fastify/test/http-methods/mkcol.test.js +35 -0
- package/node_modules/fastify/test/http-methods/move.test.js +42 -0
- package/node_modules/fastify/test/http-methods/propfind.test.js +136 -0
- package/node_modules/fastify/test/http-methods/proppatch.test.js +105 -0
- package/node_modules/fastify/test/http-methods/report.test.js +142 -0
- package/node_modules/fastify/test/http-methods/search.test.js +233 -0
- package/node_modules/fastify/test/http-methods/trace.test.js +21 -0
- package/node_modules/fastify/test/http-methods/unlock.test.js +38 -0
- package/node_modules/fastify/test/http2/closing.test.js +270 -0
- package/node_modules/fastify/test/http2/constraint.test.js +109 -0
- package/node_modules/fastify/test/http2/head.test.js +34 -0
- package/node_modules/fastify/test/http2/plain.test.js +68 -0
- package/node_modules/fastify/test/http2/secure-with-fallback.test.js +113 -0
- package/node_modules/fastify/test/http2/secure.test.js +67 -0
- package/node_modules/fastify/test/http2/unknown-http-method.test.js +34 -0
- package/node_modules/fastify/test/https/custom-https-server.test.js +58 -0
- package/node_modules/fastify/test/https/https.test.js +136 -0
- package/node_modules/fastify/test/imports.test.js +17 -0
- package/node_modules/fastify/test/inject.test.js +502 -0
- package/node_modules/fastify/test/input-validation.js +335 -0
- package/node_modules/fastify/test/internals/all.test.js +38 -0
- package/node_modules/fastify/test/internals/content-type-parser.test.js +111 -0
- package/node_modules/fastify/test/internals/context.test.js +31 -0
- package/node_modules/fastify/test/internals/decorator.test.js +156 -0
- package/node_modules/fastify/test/internals/errors.test.js +982 -0
- package/node_modules/fastify/test/internals/handle-request.test.js +270 -0
- package/node_modules/fastify/test/internals/hook-runner.test.js +449 -0
- package/node_modules/fastify/test/internals/hooks.test.js +96 -0
- package/node_modules/fastify/test/internals/initial-config.test.js +381 -0
- package/node_modules/fastify/test/internals/logger.test.js +163 -0
- package/node_modules/fastify/test/internals/plugin.test.js +170 -0
- package/node_modules/fastify/test/internals/promise.test.js +63 -0
- package/node_modules/fastify/test/internals/reply-serialize.test.js +714 -0
- package/node_modules/fastify/test/internals/reply.test.js +1920 -0
- package/node_modules/fastify/test/internals/req-id-gen-factory.test.js +133 -0
- package/node_modules/fastify/test/internals/request-validate.test.js +1402 -0
- package/node_modules/fastify/test/internals/request.test.js +506 -0
- package/node_modules/fastify/test/internals/schema-controller-perf.test.js +40 -0
- package/node_modules/fastify/test/internals/server.test.js +91 -0
- package/node_modules/fastify/test/internals/validation.test.js +352 -0
- package/node_modules/fastify/test/issue-4959.test.js +118 -0
- package/node_modules/fastify/test/keep-alive-timeout.test.js +42 -0
- package/node_modules/fastify/test/listen.1.test.js +154 -0
- package/node_modules/fastify/test/listen.2.test.js +113 -0
- package/node_modules/fastify/test/listen.3.test.js +83 -0
- package/node_modules/fastify/test/listen.4.test.js +168 -0
- package/node_modules/fastify/test/listen.5.test.js +122 -0
- package/node_modules/fastify/test/logger/instantiation.test.js +341 -0
- package/node_modules/fastify/test/logger/logger-test-utils.js +47 -0
- package/node_modules/fastify/test/logger/logging.test.js +460 -0
- package/node_modules/fastify/test/logger/options.test.js +579 -0
- package/node_modules/fastify/test/logger/request.test.js +292 -0
- package/node_modules/fastify/test/logger/response.test.js +183 -0
- package/node_modules/fastify/test/logger/tap-parallel-not-ok +0 -0
- package/node_modules/fastify/test/max-requests-per-socket.test.js +113 -0
- package/node_modules/fastify/test/middleware.test.js +37 -0
- package/node_modules/fastify/test/noop-set.test.js +19 -0
- package/node_modules/fastify/test/nullable-validation.test.js +187 -0
- package/node_modules/fastify/test/options.error-handler.test.js +5 -0
- package/node_modules/fastify/test/options.test.js +5 -0
- package/node_modules/fastify/test/output-validation.test.js +140 -0
- package/node_modules/fastify/test/patch.error-handler.test.js +5 -0
- package/node_modules/fastify/test/patch.test.js +5 -0
- package/node_modules/fastify/test/plugin.1.test.js +230 -0
- package/node_modules/fastify/test/plugin.2.test.js +314 -0
- package/node_modules/fastify/test/plugin.3.test.js +287 -0
- package/node_modules/fastify/test/plugin.4.test.js +504 -0
- package/node_modules/fastify/test/plugin.helper.js +8 -0
- package/node_modules/fastify/test/plugin.name.display.js +10 -0
- package/node_modules/fastify/test/post-empty-body.test.js +38 -0
- package/node_modules/fastify/test/pretty-print.test.js +366 -0
- package/node_modules/fastify/test/promises.test.js +125 -0
- package/node_modules/fastify/test/proto-poisoning.test.js +145 -0
- package/node_modules/fastify/test/put.error-handler.test.js +5 -0
- package/node_modules/fastify/test/put.test.js +5 -0
- package/node_modules/fastify/test/register.test.js +184 -0
- package/node_modules/fastify/test/reply-code.test.js +148 -0
- package/node_modules/fastify/test/reply-early-hints.test.js +100 -0
- package/node_modules/fastify/test/reply-error.test.js +815 -0
- package/node_modules/fastify/test/reply-trailers.test.js +445 -0
- package/node_modules/fastify/test/reply-web-stream-locked.test.js +37 -0
- package/node_modules/fastify/test/request-error.test.js +583 -0
- package/node_modules/fastify/test/request-header-host.test.js +339 -0
- package/node_modules/fastify/test/request-id.test.js +118 -0
- package/node_modules/fastify/test/request-timeout.test.js +53 -0
- package/node_modules/fastify/test/route-hooks.test.js +635 -0
- package/node_modules/fastify/test/route-prefix.test.js +904 -0
- package/node_modules/fastify/test/route-shorthand.test.js +48 -0
- package/node_modules/fastify/test/route.1.test.js +259 -0
- package/node_modules/fastify/test/route.2.test.js +100 -0
- package/node_modules/fastify/test/route.3.test.js +213 -0
- package/node_modules/fastify/test/route.4.test.js +127 -0
- package/node_modules/fastify/test/route.5.test.js +211 -0
- package/node_modules/fastify/test/route.6.test.js +306 -0
- package/node_modules/fastify/test/route.7.test.js +406 -0
- package/node_modules/fastify/test/route.8.test.js +225 -0
- package/node_modules/fastify/test/router-options.test.js +1066 -0
- package/node_modules/fastify/test/same-shape.test.js +124 -0
- package/node_modules/fastify/test/schema-examples.test.js +661 -0
- package/node_modules/fastify/test/schema-feature.test.js +2198 -0
- package/node_modules/fastify/test/schema-serialization.test.js +1171 -0
- package/node_modules/fastify/test/schema-special-usage.test.js +1348 -0
- package/node_modules/fastify/test/schema-validation.test.js +1572 -0
- package/node_modules/fastify/test/serialize-response.test.js +186 -0
- package/node_modules/fastify/test/server.test.js +347 -0
- package/node_modules/fastify/test/set-error-handler.test.js +69 -0
- package/node_modules/fastify/test/skip-reply-send.test.js +317 -0
- package/node_modules/fastify/test/stream-serializers.test.js +40 -0
- package/node_modules/fastify/test/stream.1.test.js +94 -0
- package/node_modules/fastify/test/stream.2.test.js +129 -0
- package/node_modules/fastify/test/stream.3.test.js +198 -0
- package/node_modules/fastify/test/stream.4.test.js +176 -0
- package/node_modules/fastify/test/stream.5.test.js +188 -0
- package/node_modules/fastify/test/sync-routes.test.js +32 -0
- package/node_modules/fastify/test/throw.test.js +359 -0
- package/node_modules/fastify/test/toolkit.js +63 -0
- package/node_modules/fastify/test/trust-proxy.test.js +162 -0
- package/node_modules/fastify/test/type-provider.test.js +22 -0
- package/node_modules/fastify/test/types/content-type-parser.test-d.ts +72 -0
- package/node_modules/fastify/test/types/decorate-request-reply.test-d.ts +18 -0
- package/node_modules/fastify/test/types/dummy-plugin.ts +9 -0
- package/node_modules/fastify/test/types/errors.test-d.ts +90 -0
- package/node_modules/fastify/test/types/fastify.test-d.ts +351 -0
- package/node_modules/fastify/test/types/hooks.test-d.ts +550 -0
- package/node_modules/fastify/test/types/import.ts +2 -0
- package/node_modules/fastify/test/types/instance.test-d.ts +588 -0
- package/node_modules/fastify/test/types/logger.test-d.ts +278 -0
- package/node_modules/fastify/test/types/plugin.test-d.ts +97 -0
- package/node_modules/fastify/test/types/register.test-d.ts +237 -0
- package/node_modules/fastify/test/types/reply.test-d.ts +254 -0
- package/node_modules/fastify/test/types/request.test-d.ts +187 -0
- package/node_modules/fastify/test/types/route.test-d.ts +547 -0
- package/node_modules/fastify/test/types/schema.test-d.ts +135 -0
- package/node_modules/fastify/test/types/serverFactory.test-d.ts +37 -0
- package/node_modules/fastify/test/types/type-provider.test-d.ts +1213 -0
- package/node_modules/fastify/test/types/using.test-d.ts +17 -0
- package/node_modules/fastify/test/upgrade.test.js +52 -0
- package/node_modules/fastify/test/url-rewriting.test.js +122 -0
- package/node_modules/fastify/test/use-semicolon-delimiter.test.js +168 -0
- package/node_modules/fastify/test/validation-error-handling.test.js +900 -0
- package/node_modules/fastify/test/versioned-routes.test.js +603 -0
- package/node_modules/fastify/test/web-api.test.js +541 -0
- package/node_modules/fastify/test/wrap-thenable.test.js +30 -0
- package/node_modules/fastify/types/content-type-parser.d.ts +75 -0
- package/node_modules/fastify/types/context.d.ts +22 -0
- package/node_modules/fastify/types/errors.d.ts +90 -0
- package/node_modules/fastify/types/hooks.d.ts +875 -0
- package/node_modules/fastify/types/instance.d.ts +609 -0
- package/node_modules/fastify/types/logger.d.ts +107 -0
- package/node_modules/fastify/types/plugin.d.ts +44 -0
- package/node_modules/fastify/types/register.d.ts +42 -0
- package/node_modules/fastify/types/reply.d.ts +81 -0
- package/node_modules/fastify/types/request.d.ts +93 -0
- package/node_modules/fastify/types/route.d.ts +185 -0
- package/node_modules/fastify/types/schema.d.ts +61 -0
- package/node_modules/fastify/types/server-factory.d.ts +19 -0
- package/node_modules/fastify/types/tsconfig.eslint.json +13 -0
- package/node_modules/fastify/types/type-provider.d.ts +130 -0
- package/node_modules/fastify/types/utils.d.ts +98 -0
- package/node_modules/fastify-plugin/.gitattributes +2 -0
- package/node_modules/fastify-plugin/.github/dependabot.yml +13 -0
- package/node_modules/fastify-plugin/.github/stale.yml +21 -0
- package/node_modules/fastify-plugin/.github/workflows/ci.yml +28 -0
- package/node_modules/fastify-plugin/LICENSE +23 -0
- package/node_modules/fastify-plugin/README.md +188 -0
- package/node_modules/fastify-plugin/eslint.config.js +6 -0
- package/node_modules/fastify-plugin/lib/getPluginName.js +25 -0
- package/node_modules/fastify-plugin/lib/toCamelCase.js +10 -0
- package/node_modules/fastify-plugin/package.json +70 -0
- package/node_modules/fastify-plugin/plugin.js +67 -0
- package/node_modules/fastify-plugin/test/bundlers.test.js +110 -0
- package/node_modules/fastify-plugin/test/checkVersion.test.js +67 -0
- package/node_modules/fastify-plugin/test/composite.test.js +14 -0
- package/node_modules/fastify-plugin/test/esm/esm.mjs +11 -0
- package/node_modules/fastify-plugin/test/esm/index.test.js +11 -0
- package/node_modules/fastify-plugin/test/extractPluginName.test.js +49 -0
- package/node_modules/fastify-plugin/test/mu1tip1e.composite.test.js +15 -0
- package/node_modules/fastify-plugin/test/test.js +396 -0
- package/node_modules/fastify-plugin/test/toCamelCase.test.js +24 -0
- package/node_modules/fastify-plugin/types/example-async.test-d.ts +19 -0
- package/node_modules/fastify-plugin/types/example-callback.test-d.ts +19 -0
- package/node_modules/fastify-plugin/types/plugin.d.ts +61 -0
- package/node_modules/fastify-plugin/types/plugin.test-d.ts +166 -0
- package/node_modules/fastq/LICENSE +13 -0
- package/node_modules/fastq/README.md +310 -0
- package/node_modules/fastq/SECURITY.md +15 -0
- package/node_modules/fastq/bench.js +66 -0
- package/node_modules/fastq/eslint.config.js +11 -0
- package/node_modules/fastq/example.js +14 -0
- package/node_modules/fastq/example.mjs +9 -0
- package/node_modules/fastq/index.d.ts +59 -0
- package/node_modules/fastq/package.json +49 -0
- package/node_modules/fastq/queue.js +346 -0
- package/node_modules/fastq/test/example.ts +83 -0
- package/node_modules/fastq/test/promise.js +325 -0
- package/node_modules/fastq/test/test.js +733 -0
- package/node_modules/fastq/test/tsconfig.json +11 -0
- package/node_modules/fill-range/LICENSE +21 -0
- package/node_modules/fill-range/README.md +237 -0
- package/node_modules/fill-range/index.js +248 -0
- package/node_modules/fill-range/package.json +74 -0
- package/node_modules/find-my-way/.github/dependabot.yml +34 -0
- package/node_modules/find-my-way/.github/workflows/node.js.yml +68 -0
- package/node_modules/find-my-way/LICENSE +21 -0
- package/node_modules/find-my-way/README.md +845 -0
- package/node_modules/find-my-way/benchmark/bench-thread.js +35 -0
- package/node_modules/find-my-way/benchmark/bench.js +156 -0
- package/node_modules/find-my-way/benchmark/compare-branches.js +113 -0
- package/node_modules/find-my-way/benchmark/uri-decoding.js +55 -0
- package/node_modules/find-my-way/example.js +29 -0
- package/node_modules/find-my-way/index.d.ts +237 -0
- package/node_modules/find-my-way/index.js +836 -0
- package/node_modules/find-my-way/lib/constrainer.js +170 -0
- package/node_modules/find-my-way/lib/handler-storage.js +174 -0
- package/node_modules/find-my-way/lib/http-methods.js +13 -0
- package/node_modules/find-my-way/lib/node.js +228 -0
- package/node_modules/find-my-way/lib/null-object.js +8 -0
- package/node_modules/find-my-way/lib/pretty-print.js +168 -0
- package/node_modules/find-my-way/lib/strategies/accept-host.js +36 -0
- package/node_modules/find-my-way/lib/strategies/accept-version.js +64 -0
- package/node_modules/find-my-way/lib/strategies/http-method.js +15 -0
- package/node_modules/find-my-way/lib/url-sanitizer.js +105 -0
- package/node_modules/find-my-way/package.json +57 -0
- package/node_modules/find-my-way/test/case-insensitive.test.js +230 -0
- package/node_modules/find-my-way/test/constraint.custom-versioning.test.js +130 -0
- package/node_modules/find-my-way/test/constraint.custom.async.test.js +111 -0
- package/node_modules/find-my-way/test/constraint.custom.test.js +273 -0
- package/node_modules/find-my-way/test/constraint.default-versioning.test.js +289 -0
- package/node_modules/find-my-way/test/constraint.host.test.js +104 -0
- package/node_modules/find-my-way/test/constraints.test.js +108 -0
- package/node_modules/find-my-way/test/custom-querystring-parser.test.js +46 -0
- package/node_modules/find-my-way/test/errors.test.js +484 -0
- package/node_modules/find-my-way/test/fastify-issue-3129.test.js +34 -0
- package/node_modules/find-my-way/test/fastify-issue-3957.test.js +23 -0
- package/node_modules/find-my-way/test/find-route.test.js +275 -0
- package/node_modules/find-my-way/test/find.test.js +16 -0
- package/node_modules/find-my-way/test/for-in-loop.test.js +13 -0
- package/node_modules/find-my-way/test/full-url.test.js +30 -0
- package/node_modules/find-my-way/test/has-route.test.js +218 -0
- package/node_modules/find-my-way/test/host-storage.test.js +27 -0
- package/node_modules/find-my-way/test/http2/constraint.host.test.js +44 -0
- package/node_modules/find-my-way/test/issue-101.test.js +31 -0
- package/node_modules/find-my-way/test/issue-104.test.js +206 -0
- package/node_modules/find-my-way/test/issue-110.test.js +31 -0
- package/node_modules/find-my-way/test/issue-132.test.js +80 -0
- package/node_modules/find-my-way/test/issue-145.test.js +24 -0
- package/node_modules/find-my-way/test/issue-149.test.js +21 -0
- package/node_modules/find-my-way/test/issue-151.test.js +54 -0
- package/node_modules/find-my-way/test/issue-154.test.js +21 -0
- package/node_modules/find-my-way/test/issue-161.test.js +88 -0
- package/node_modules/find-my-way/test/issue-17.test.js +397 -0
- package/node_modules/find-my-way/test/issue-175.test.js +80 -0
- package/node_modules/find-my-way/test/issue-182.test.js +18 -0
- package/node_modules/find-my-way/test/issue-190.test.js +44 -0
- package/node_modules/find-my-way/test/issue-20.test.js +79 -0
- package/node_modules/find-my-way/test/issue-206.test.js +121 -0
- package/node_modules/find-my-way/test/issue-221.test.js +50 -0
- package/node_modules/find-my-way/test/issue-234.test.js +94 -0
- package/node_modules/find-my-way/test/issue-238.test.js +119 -0
- package/node_modules/find-my-way/test/issue-240.test.js +30 -0
- package/node_modules/find-my-way/test/issue-241.test.js +32 -0
- package/node_modules/find-my-way/test/issue-247.test.js +51 -0
- package/node_modules/find-my-way/test/issue-254.test.js +31 -0
- package/node_modules/find-my-way/test/issue-28.test.js +618 -0
- package/node_modules/find-my-way/test/issue-280.test.js +14 -0
- package/node_modules/find-my-way/test/issue-285.test.js +37 -0
- package/node_modules/find-my-way/test/issue-330.test.js +231 -0
- package/node_modules/find-my-way/test/issue-44.test.js +149 -0
- package/node_modules/find-my-way/test/issue-46.test.js +75 -0
- package/node_modules/find-my-way/test/issue-49.test.js +108 -0
- package/node_modules/find-my-way/test/issue-59.test.js +131 -0
- package/node_modules/find-my-way/test/issue-62.test.js +28 -0
- package/node_modules/find-my-way/test/issue-63.test.js +23 -0
- package/node_modules/find-my-way/test/issue-67.test.js +50 -0
- package/node_modules/find-my-way/test/issue-93.test.js +19 -0
- package/node_modules/find-my-way/test/lookup-async.test.js +29 -0
- package/node_modules/find-my-way/test/lookup.test.js +58 -0
- package/node_modules/find-my-way/test/matching-order.test.js +17 -0
- package/node_modules/find-my-way/test/max-param-length.test.js +44 -0
- package/node_modules/find-my-way/test/methods.test.js +830 -0
- package/node_modules/find-my-way/test/null-object.test.js +36 -0
- package/node_modules/find-my-way/test/on-bad-url.test.js +72 -0
- package/node_modules/find-my-way/test/optional-params.test.js +216 -0
- package/node_modules/find-my-way/test/params-collisions.test.js +126 -0
- package/node_modules/find-my-way/test/path-params-match.test.js +53 -0
- package/node_modules/find-my-way/test/pretty-print-tree.test.js +596 -0
- package/node_modules/find-my-way/test/pretty-print.test.js +680 -0
- package/node_modules/find-my-way/test/querystring.test.js +54 -0
- package/node_modules/find-my-way/test/regex.test.js +269 -0
- package/node_modules/find-my-way/test/routes-registered.test.js +45 -0
- package/node_modules/find-my-way/test/server.test.js +368 -0
- package/node_modules/find-my-way/test/shorthands.test.js +44 -0
- package/node_modules/find-my-way/test/store.test.js +49 -0
- package/node_modules/find-my-way/test/types/router.test-d.ts +182 -0
- package/node_modules/find-my-way/test/url-sanitizer.test.js +43 -0
- package/node_modules/foreground-child/LICENSE +15 -0
- package/node_modules/foreground-child/README.md +128 -0
- package/node_modules/foreground-child/dist/commonjs/all-signals.d.ts +2 -0
- package/node_modules/foreground-child/dist/commonjs/all-signals.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/commonjs/all-signals.js +58 -0
- package/node_modules/foreground-child/dist/commonjs/all-signals.js.map +1 -0
- package/node_modules/foreground-child/dist/commonjs/index.d.ts +58 -0
- package/node_modules/foreground-child/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/commonjs/index.js +123 -0
- package/node_modules/foreground-child/dist/commonjs/index.js.map +1 -0
- package/node_modules/foreground-child/dist/commonjs/package.json +3 -0
- package/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts +6 -0
- package/node_modules/foreground-child/dist/commonjs/proxy-signals.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/commonjs/proxy-signals.js +38 -0
- package/node_modules/foreground-child/dist/commonjs/proxy-signals.js.map +1 -0
- package/node_modules/foreground-child/dist/commonjs/watchdog.d.ts +10 -0
- package/node_modules/foreground-child/dist/commonjs/watchdog.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/commonjs/watchdog.js +50 -0
- package/node_modules/foreground-child/dist/commonjs/watchdog.js.map +1 -0
- package/node_modules/foreground-child/dist/esm/all-signals.d.ts +2 -0
- package/node_modules/foreground-child/dist/esm/all-signals.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/esm/all-signals.js +52 -0
- package/node_modules/foreground-child/dist/esm/all-signals.js.map +1 -0
- package/node_modules/foreground-child/dist/esm/index.d.ts +58 -0
- package/node_modules/foreground-child/dist/esm/index.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/esm/index.js +115 -0
- package/node_modules/foreground-child/dist/esm/index.js.map +1 -0
- package/node_modules/foreground-child/dist/esm/package.json +3 -0
- package/node_modules/foreground-child/dist/esm/proxy-signals.d.ts +6 -0
- package/node_modules/foreground-child/dist/esm/proxy-signals.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/esm/proxy-signals.js +34 -0
- package/node_modules/foreground-child/dist/esm/proxy-signals.js.map +1 -0
- package/node_modules/foreground-child/dist/esm/watchdog.d.ts +10 -0
- package/node_modules/foreground-child/dist/esm/watchdog.d.ts.map +1 -0
- package/node_modules/foreground-child/dist/esm/watchdog.js +46 -0
- package/node_modules/foreground-child/dist/esm/watchdog.js.map +1 -0
- package/node_modules/foreground-child/package.json +106 -0
- package/node_modules/glob/LICENSE.md +63 -0
- package/node_modules/glob/README.md +1294 -0
- package/node_modules/glob/dist/commonjs/glob.d.ts +388 -0
- package/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/node_modules/glob/dist/commonjs/glob.js +247 -0
- package/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/node_modules/glob/dist/commonjs/ignore.d.ts +24 -0
- package/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/node_modules/glob/dist/commonjs/ignore.js +119 -0
- package/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/node_modules/glob/dist/commonjs/index.d.ts +97 -0
- package/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/glob/dist/commonjs/index.js +68 -0
- package/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/node_modules/glob/dist/commonjs/package.json +3 -0
- package/node_modules/glob/dist/commonjs/pattern.d.ts +76 -0
- package/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/node_modules/glob/dist/commonjs/processor.js +301 -0
- package/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/node_modules/glob/dist/commonjs/walker.d.ts +97 -0
- package/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/node_modules/glob/dist/commonjs/walker.js +387 -0
- package/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/node_modules/glob/dist/esm/bin.mjs +346 -0
- package/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/node_modules/glob/dist/esm/glob.d.ts +388 -0
- package/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/node_modules/glob/dist/esm/glob.js +243 -0
- package/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/node_modules/glob/dist/esm/ignore.d.ts +24 -0
- package/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/node_modules/glob/dist/esm/ignore.js +115 -0
- package/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/node_modules/glob/dist/esm/index.d.ts +97 -0
- package/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/node_modules/glob/dist/esm/index.js +55 -0
- package/node_modules/glob/dist/esm/index.js.map +1 -0
- package/node_modules/glob/dist/esm/package.json +3 -0
- package/node_modules/glob/dist/esm/pattern.d.ts +76 -0
- package/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/node_modules/glob/dist/esm/pattern.js +215 -0
- package/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/node_modules/glob/dist/esm/processor.js +294 -0
- package/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/node_modules/glob/dist/esm/walker.d.ts +97 -0
- package/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/node_modules/glob/dist/esm/walker.js +381 -0
- package/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/node_modules/glob/package.json +97 -0
- package/node_modules/glob-parent/LICENSE +15 -0
- package/node_modules/glob-parent/README.md +137 -0
- package/node_modules/glob-parent/index.js +42 -0
- package/node_modules/glob-parent/package.json +48 -0
- package/node_modules/http-errors/HISTORY.md +186 -0
- package/node_modules/http-errors/LICENSE +23 -0
- package/node_modules/http-errors/README.md +169 -0
- package/node_modules/http-errors/index.js +290 -0
- package/node_modules/http-errors/package.json +54 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/ipaddr.js/LICENSE +19 -0
- package/node_modules/ipaddr.js/README.md +233 -0
- package/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/node_modules/ipaddr.js/lib/ipaddr.js +1067 -0
- package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +72 -0
- package/node_modules/ipaddr.js/package.json +36 -0
- package/node_modules/is-extglob/LICENSE +21 -0
- package/node_modules/is-extglob/README.md +107 -0
- package/node_modules/is-extglob/index.js +20 -0
- package/node_modules/is-extglob/package.json +69 -0
- package/node_modules/is-glob/LICENSE +21 -0
- package/node_modules/is-glob/README.md +206 -0
- package/node_modules/is-glob/index.js +150 -0
- package/node_modules/is-glob/package.json +81 -0
- package/node_modules/is-number/LICENSE +21 -0
- package/node_modules/is-number/README.md +187 -0
- package/node_modules/is-number/index.js +18 -0
- package/node_modules/is-number/package.json +82 -0
- package/node_modules/isexe/.npmignore +2 -0
- package/node_modules/isexe/LICENSE +15 -0
- package/node_modules/isexe/README.md +51 -0
- package/node_modules/isexe/index.js +57 -0
- package/node_modules/isexe/mode.js +41 -0
- package/node_modules/isexe/package.json +31 -0
- package/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/isexe/windows.js +42 -0
- package/node_modules/jackspeak/LICENSE.md +55 -0
- package/node_modules/jackspeak/README.md +394 -0
- package/node_modules/jackspeak/dist/commonjs/index.d.ts +323 -0
- package/node_modules/jackspeak/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/jackspeak/dist/commonjs/index.js +944 -0
- package/node_modules/jackspeak/dist/commonjs/index.js.map +1 -0
- package/node_modules/jackspeak/dist/commonjs/index.min.js +33 -0
- package/node_modules/jackspeak/dist/commonjs/index.min.js.map +7 -0
- package/node_modules/jackspeak/dist/commonjs/package.json +3 -0
- package/node_modules/jackspeak/dist/esm/index.d.ts +323 -0
- package/node_modules/jackspeak/dist/esm/index.d.ts.map +1 -0
- package/node_modules/jackspeak/dist/esm/index.js +936 -0
- package/node_modules/jackspeak/dist/esm/index.js.map +1 -0
- package/node_modules/jackspeak/dist/esm/index.min.js +33 -0
- package/node_modules/jackspeak/dist/esm/index.min.js.map +7 -0
- package/node_modules/jackspeak/dist/esm/package.json +3 -0
- package/node_modules/jackspeak/package.json +115 -0
- package/node_modules/json-schema-ref-resolver/.gitattributes +2 -0
- package/node_modules/json-schema-ref-resolver/.github/dependabot.yml +13 -0
- package/node_modules/json-schema-ref-resolver/.github/workflows/ci.yml +25 -0
- package/node_modules/json-schema-ref-resolver/LICENSE +21 -0
- package/node_modules/json-schema-ref-resolver/README.md +406 -0
- package/node_modules/json-schema-ref-resolver/eslint.config.js +6 -0
- package/node_modules/json-schema-ref-resolver/index.js +284 -0
- package/node_modules/json-schema-ref-resolver/package.json +76 -0
- package/node_modules/json-schema-ref-resolver/test/anchor.test.js +56 -0
- package/node_modules/json-schema-ref-resolver/test/collisions.test.js +199 -0
- package/node_modules/json-schema-ref-resolver/test/deref-schema.test.js +287 -0
- package/node_modules/json-schema-ref-resolver/test/get-deref-schema.test.js +363 -0
- package/node_modules/json-schema-ref-resolver/test/get-schema-dependencies.test.js +158 -0
- package/node_modules/json-schema-ref-resolver/test/get-schema-refs.test.js +87 -0
- package/node_modules/json-schema-ref-resolver/test/get-schema.test.js +222 -0
- package/node_modules/json-schema-ref-resolver/test/has-schema.test.js +28 -0
- package/node_modules/json-schema-ref-resolver/types/index.d.ts +67 -0
- package/node_modules/json-schema-ref-resolver/types/index.test-d.ts +23 -0
- package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/json-schema-traverse/README.md +95 -0
- package/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/node_modules/json-schema-traverse/index.js +93 -0
- package/node_modules/json-schema-traverse/package.json +43 -0
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/light-my-request/.gitattributes +2 -0
- package/node_modules/light-my-request/.github/dependabot.yml +13 -0
- package/node_modules/light-my-request/.github/stale.yml +21 -0
- package/node_modules/light-my-request/.github/workflows/benchmark.yml +30 -0
- package/node_modules/light-my-request/.github/workflows/ci.yml +23 -0
- package/node_modules/light-my-request/LICENSE +32 -0
- package/node_modules/light-my-request/README.md +261 -0
- package/node_modules/light-my-request/benchmark/benchmark.js +164 -0
- package/node_modules/light-my-request/build/build-validation.js +100 -0
- package/node_modules/light-my-request/eslint.config.js +9 -0
- package/node_modules/light-my-request/index.js +194 -0
- package/node_modules/light-my-request/lib/config-validator.js +919 -0
- package/node_modules/light-my-request/lib/form-data.js +79 -0
- package/node_modules/light-my-request/lib/parse-url.js +47 -0
- package/node_modules/light-my-request/lib/request.js +290 -0
- package/node_modules/light-my-request/lib/response.js +240 -0
- package/node_modules/light-my-request/node_modules/process-warning/.gitattributes +2 -0
- package/node_modules/light-my-request/node_modules/process-warning/.github/dependabot.yml +13 -0
- package/node_modules/light-my-request/node_modules/process-warning/.github/workflows/ci.yml +24 -0
- package/node_modules/light-my-request/node_modules/process-warning/.taprc +2 -0
- package/node_modules/light-my-request/node_modules/process-warning/LICENSE +21 -0
- package/node_modules/light-my-request/node_modules/process-warning/README.md +118 -0
- package/node_modules/light-my-request/node_modules/process-warning/benchmarks/warn.js +25 -0
- package/node_modules/light-my-request/node_modules/process-warning/eslint.config.js +6 -0
- package/node_modules/light-my-request/node_modules/process-warning/examples/example.js +11 -0
- package/node_modules/light-my-request/node_modules/process-warning/index.js +124 -0
- package/node_modules/light-my-request/node_modules/process-warning/package.json +73 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/emit-interpolated-string.test.js +29 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/emit-once-only.test.js +28 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/emit-reset.test.js +36 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/emit-set.test.js +30 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/emit-unlimited.test.js +37 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/index.test.js +99 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/issue-88.test.js +33 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/jest.test.js +22 -0
- package/node_modules/light-my-request/node_modules/process-warning/test/no-warnings.test.js +80 -0
- package/node_modules/light-my-request/node_modules/process-warning/types/index.d.ts +37 -0
- package/node_modules/light-my-request/node_modules/process-warning/types/index.test-d.ts +36 -0
- package/node_modules/light-my-request/package.json +85 -0
- package/node_modules/light-my-request/test/async-await.test.js +55 -0
- package/node_modules/light-my-request/test/index.test.js +2316 -0
- package/node_modules/light-my-request/test/request.test.js +16 -0
- package/node_modules/light-my-request/test/response.test.js +19 -0
- package/node_modules/light-my-request/test/stream.test.js +359 -0
- package/node_modules/light-my-request/types/index.d.ts +128 -0
- package/node_modules/light-my-request/types/index.test-d.ts +149 -0
- package/node_modules/merge2/LICENSE +21 -0
- package/node_modules/merge2/README.md +144 -0
- package/node_modules/merge2/index.js +144 -0
- package/node_modules/merge2/package.json +43 -0
- package/node_modules/micromatch/LICENSE +21 -0
- package/node_modules/micromatch/README.md +1024 -0
- package/node_modules/micromatch/index.js +474 -0
- package/node_modules/micromatch/package.json +119 -0
- package/node_modules/mime/LICENSE +21 -0
- package/node_modules/mime/Mime.js +97 -0
- package/node_modules/mime/README.md +178 -0
- package/node_modules/mime/cli.js +46 -0
- package/node_modules/mime/index.js +4 -0
- package/node_modules/mime/lite.js +4 -0
- package/node_modules/mime/package.json +52 -0
- package/node_modules/mime/types/other.js +1 -0
- package/node_modules/mime/types/standard.js +1 -0
- package/node_modules/minimatch/LICENSE.md +55 -0
- package/node_modules/minimatch/README.md +453 -0
- package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
- package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
- package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
- package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
- package/node_modules/minimatch/dist/commonjs/ast.d.ts +20 -0
- package/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
- package/node_modules/minimatch/dist/commonjs/ast.js +591 -0
- package/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
- package/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
- package/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
- package/node_modules/minimatch/dist/commonjs/brace-expressions.js +152 -0
- package/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
- package/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
- package/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
- package/node_modules/minimatch/dist/commonjs/escape.js +30 -0
- package/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
- package/node_modules/minimatch/dist/commonjs/index.d.ts +94 -0
- package/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/minimatch/dist/commonjs/index.js +1029 -0
- package/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
- package/node_modules/minimatch/dist/commonjs/package.json +3 -0
- package/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
- package/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
- package/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
- package/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
- package/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
- package/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
- package/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
- package/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
- package/node_modules/minimatch/dist/esm/ast.d.ts +20 -0
- package/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
- package/node_modules/minimatch/dist/esm/ast.js +587 -0
- package/node_modules/minimatch/dist/esm/ast.js.map +1 -0
- package/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
- package/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
- package/node_modules/minimatch/dist/esm/brace-expressions.js +148 -0
- package/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
- package/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
- package/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
- package/node_modules/minimatch/dist/esm/escape.js +26 -0
- package/node_modules/minimatch/dist/esm/escape.js.map +1 -0
- package/node_modules/minimatch/dist/esm/index.d.ts +94 -0
- package/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
- package/node_modules/minimatch/dist/esm/index.js +1016 -0
- package/node_modules/minimatch/dist/esm/index.js.map +1 -0
- package/node_modules/minimatch/dist/esm/package.json +3 -0
- package/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
- package/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
- package/node_modules/minimatch/dist/esm/unescape.js +34 -0
- package/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
- package/node_modules/minimatch/package.json +67 -0
- package/node_modules/minipass/LICENSE +15 -0
- package/node_modules/minipass/README.md +825 -0
- package/node_modules/minipass/dist/commonjs/index.d.ts +549 -0
- package/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/node_modules/minipass/dist/commonjs/index.js.map +1 -0
- package/node_modules/minipass/dist/commonjs/package.json +3 -0
- package/node_modules/minipass/dist/esm/index.d.ts +549 -0
- package/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
- package/node_modules/minipass/dist/esm/index.js +1018 -0
- package/node_modules/minipass/dist/esm/index.js.map +1 -0
- package/node_modules/minipass/dist/esm/package.json +3 -0
- package/node_modules/minipass/package.json +82 -0
- package/node_modules/on-exit-leak-free/.github/dependabot.yml +12 -0
- package/node_modules/on-exit-leak-free/.github/workflows/ci.yml +46 -0
- package/node_modules/on-exit-leak-free/LICENSE +21 -0
- package/node_modules/on-exit-leak-free/README.md +54 -0
- package/node_modules/on-exit-leak-free/index.js +108 -0
- package/node_modules/on-exit-leak-free/package.json +37 -0
- package/node_modules/on-exit-leak-free/test/base.test.js +30 -0
- package/node_modules/on-exit-leak-free/test/event-emitter-leak.test.js +23 -0
- package/node_modules/on-exit-leak-free/test/fixtures/beforeExit.js +33 -0
- package/node_modules/on-exit-leak-free/test/fixtures/close.js +21 -0
- package/node_modules/on-exit-leak-free/test/fixtures/gc-not-close.js +24 -0
- package/node_modules/on-exit-leak-free/test/fixtures/unregister.js +24 -0
- package/node_modules/package-json-from-dist/LICENSE.md +63 -0
- package/node_modules/package-json-from-dist/README.md +110 -0
- package/node_modules/package-json-from-dist/dist/commonjs/index.d.ts +89 -0
- package/node_modules/package-json-from-dist/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/package-json-from-dist/dist/commonjs/index.js +134 -0
- package/node_modules/package-json-from-dist/dist/commonjs/index.js.map +1 -0
- package/node_modules/package-json-from-dist/dist/commonjs/package.json +3 -0
- package/node_modules/package-json-from-dist/dist/esm/index.d.ts +89 -0
- package/node_modules/package-json-from-dist/dist/esm/index.d.ts.map +1 -0
- package/node_modules/package-json-from-dist/dist/esm/index.js +129 -0
- package/node_modules/package-json-from-dist/dist/esm/index.js.map +1 -0
- package/node_modules/package-json-from-dist/dist/esm/package.json +3 -0
- package/node_modules/package-json-from-dist/package.json +68 -0
- package/node_modules/path-key/index.d.ts +40 -0
- package/node_modules/path-key/index.js +16 -0
- package/node_modules/path-key/license +9 -0
- package/node_modules/path-key/package.json +39 -0
- package/node_modules/path-key/readme.md +61 -0
- package/node_modules/path-scurry/LICENSE.md +55 -0
- package/node_modules/path-scurry/README.md +636 -0
- package/node_modules/path-scurry/dist/commonjs/index.d.ts +1115 -0
- package/node_modules/path-scurry/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/path-scurry/dist/commonjs/index.js +2018 -0
- package/node_modules/path-scurry/dist/commonjs/index.js.map +1 -0
- package/node_modules/path-scurry/dist/commonjs/package.json +3 -0
- package/node_modules/path-scurry/dist/esm/index.d.ts +1115 -0
- package/node_modules/path-scurry/dist/esm/index.d.ts.map +1 -0
- package/node_modules/path-scurry/dist/esm/index.js +1983 -0
- package/node_modules/path-scurry/dist/esm/index.js.map +1 -0
- package/node_modules/path-scurry/dist/esm/package.json +3 -0
- package/node_modules/path-scurry/node_modules/lru-cache/LICENSE.md +55 -0
- package/node_modules/path-scurry/node_modules/lru-cache/README.md +383 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts +1323 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js +1589 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js.map +7 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts +1323 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js +1585 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js.map +1 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js.map +7 -0
- package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/node_modules/path-scurry/node_modules/lru-cache/package.json +101 -0
- package/node_modules/path-scurry/package.json +88 -0
- package/node_modules/picomatch/LICENSE +21 -0
- package/node_modules/picomatch/README.md +708 -0
- package/node_modules/picomatch/index.js +3 -0
- package/node_modules/picomatch/lib/constants.js +179 -0
- package/node_modules/picomatch/lib/parse.js +1091 -0
- package/node_modules/picomatch/lib/picomatch.js +342 -0
- package/node_modules/picomatch/lib/scan.js +391 -0
- package/node_modules/picomatch/lib/utils.js +64 -0
- package/node_modules/picomatch/package.json +81 -0
- package/node_modules/pino/.nojekyll +0 -0
- package/node_modules/pino/.prettierignore +1 -0
- package/node_modules/pino/CNAME +1 -0
- package/node_modules/pino/CONTRIBUTING.md +30 -0
- package/node_modules/pino/LICENSE +21 -0
- package/node_modules/pino/README.md +177 -0
- package/node_modules/pino/SECURITY.md +87 -0
- package/node_modules/pino/benchmarks/basic.bench.js +95 -0
- package/node_modules/pino/benchmarks/child-child.bench.js +52 -0
- package/node_modules/pino/benchmarks/child-creation.bench.js +73 -0
- package/node_modules/pino/benchmarks/child.bench.js +62 -0
- package/node_modules/pino/benchmarks/deep-object.bench.js +88 -0
- package/node_modules/pino/benchmarks/formatters.bench.js +50 -0
- package/node_modules/pino/benchmarks/internal/custom-levels.js +67 -0
- package/node_modules/pino/benchmarks/internal/just-pino-heavy.bench.js +76 -0
- package/node_modules/pino/benchmarks/internal/just-pino.bench.js +182 -0
- package/node_modules/pino/benchmarks/internal/parent-vs-child.bench.js +75 -0
- package/node_modules/pino/benchmarks/internal/redact.bench.js +86 -0
- package/node_modules/pino/benchmarks/long-string.bench.js +81 -0
- package/node_modules/pino/benchmarks/multi-arg.bench.js +193 -0
- package/node_modules/pino/benchmarks/multistream.js +98 -0
- package/node_modules/pino/benchmarks/object.bench.js +82 -0
- package/node_modules/pino/benchmarks/utils/generate-benchmark-doc.js +36 -0
- package/node_modules/pino/benchmarks/utils/runbench.js +138 -0
- package/node_modules/pino/benchmarks/utils/wrap-log-level.js +55 -0
- package/node_modules/pino/bin.js +6 -0
- package/node_modules/pino/browser.js +547 -0
- package/node_modules/pino/build/sync-version.js +25 -0
- package/node_modules/pino/docs/api.md +1593 -0
- package/node_modules/pino/docs/asynchronous.md +40 -0
- package/node_modules/pino/docs/benchmarks.md +55 -0
- package/node_modules/pino/docs/browser.md +278 -0
- package/node_modules/pino/docs/bundling.md +40 -0
- package/node_modules/pino/docs/child-loggers.md +95 -0
- package/node_modules/pino/docs/diagnostics.md +16 -0
- package/node_modules/pino/docs/ecosystem.md +86 -0
- package/node_modules/pino/docs/help.md +345 -0
- package/node_modules/pino/docs/lts.md +64 -0
- package/node_modules/pino/docs/pretty.md +35 -0
- package/node_modules/pino/docs/redaction.md +135 -0
- package/node_modules/pino/docs/transports.md +1376 -0
- package/node_modules/pino/docs/web.md +309 -0
- package/node_modules/pino/eslint.config.js +28 -0
- package/node_modules/pino/examples/basic.js +43 -0
- package/node_modules/pino/examples/transport.js +68 -0
- package/node_modules/pino/favicon.ico +0 -0
- package/node_modules/pino/file.js +12 -0
- package/node_modules/pino/inc-version.sh +42 -0
- package/node_modules/pino/index.html +55 -0
- package/node_modules/pino/lib/caller.js +30 -0
- package/node_modules/pino/lib/constants.js +28 -0
- package/node_modules/pino/lib/deprecations.js +8 -0
- package/node_modules/pino/lib/levels.js +241 -0
- package/node_modules/pino/lib/meta.js +3 -0
- package/node_modules/pino/lib/multistream.js +203 -0
- package/node_modules/pino/lib/proto.js +256 -0
- package/node_modules/pino/lib/redaction.js +114 -0
- package/node_modules/pino/lib/symbols.js +74 -0
- package/node_modules/pino/lib/time.js +39 -0
- package/node_modules/pino/lib/tools.js +427 -0
- package/node_modules/pino/lib/transport-stream.js +56 -0
- package/node_modules/pino/lib/transport.js +289 -0
- package/node_modules/pino/lib/worker.js +194 -0
- package/node_modules/pino/package.json +120 -0
- package/node_modules/pino/pino.d.ts +908 -0
- package/node_modules/pino/pino.js +234 -0
- package/node_modules/pino/test/basic.test.js +886 -0
- package/node_modules/pino/test/broken-pipe.test.js +59 -0
- package/node_modules/pino/test/browser-child.test.js +132 -0
- package/node_modules/pino/test/browser-disabled.test.js +87 -0
- package/node_modules/pino/test/browser-early-console-freeze.test.js +12 -0
- package/node_modules/pino/test/browser-is-level-enabled.test.js +101 -0
- package/node_modules/pino/test/browser-levels.test.js +241 -0
- package/node_modules/pino/test/browser-serializers.test.js +352 -0
- package/node_modules/pino/test/browser-timestamp.test.js +88 -0
- package/node_modules/pino/test/browser-transmit.test.js +417 -0
- package/node_modules/pino/test/browser.test.js +698 -0
- package/node_modules/pino/test/complex-objects.test.js +36 -0
- package/node_modules/pino/test/crlf.test.js +34 -0
- package/node_modules/pino/test/custom-levels.test.js +267 -0
- package/node_modules/pino/test/diagnostics.test.js +107 -0
- package/node_modules/pino/test/error-key.test.js +37 -0
- package/node_modules/pino/test/error.test.js +403 -0
- package/node_modules/pino/test/escaping.test.js +93 -0
- package/node_modules/pino/test/esm/esm.mjs +14 -0
- package/node_modules/pino/test/esm/index.test.js +21 -0
- package/node_modules/pino/test/esm/named-exports.mjs +29 -0
- package/node_modules/pino/test/exit.test.js +79 -0
- package/node_modules/pino/test/fixtures/broken-pipe/basic.js +9 -0
- package/node_modules/pino/test/fixtures/broken-pipe/destination.js +10 -0
- package/node_modules/pino/test/fixtures/broken-pipe/syncfalse.js +12 -0
- package/node_modules/pino/test/fixtures/console-transport.js +13 -0
- package/node_modules/pino/test/fixtures/crashing-transport.js +13 -0
- package/node_modules/pino/test/fixtures/default-exit.js +8 -0
- package/node_modules/pino/test/fixtures/destination-exit.js +8 -0
- package/node_modules/pino/test/fixtures/eval/index.js +13 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/14-files.js +3 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/2-files.js +3 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file1.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file10.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file11.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file12.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file13.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file14.js +11 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file2.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file3.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file4.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file5.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file6.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file7.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file8.js +5 -0
- package/node_modules/pino/test/fixtures/eval/node_modules/file9.js +5 -0
- package/node_modules/pino/test/fixtures/noop-transport.js +10 -0
- package/node_modules/pino/test/fixtures/pretty/null-prototype.js +8 -0
- package/node_modules/pino/test/fixtures/stdout-hack-protection.js +11 -0
- package/node_modules/pino/test/fixtures/syncfalse-child.js +6 -0
- package/node_modules/pino/test/fixtures/syncfalse-exit.js +9 -0
- package/node_modules/pino/test/fixtures/syncfalse-flush-exit.js +10 -0
- package/node_modules/pino/test/fixtures/syncfalse.js +6 -0
- package/node_modules/pino/test/fixtures/syntax-error-esm.mjs +2 -0
- package/node_modules/pino/test/fixtures/to-file-transport-with-transform.js +20 -0
- package/node_modules/pino/test/fixtures/to-file-transport.js +13 -0
- package/node_modules/pino/test/fixtures/to-file-transport.mjs +8 -0
- package/node_modules/pino/test/fixtures/transport/index.js +12 -0
- package/node_modules/pino/test/fixtures/transport/package.json +5 -0
- package/node_modules/pino/test/fixtures/transport-exit-immediately-with-async-dest.js +16 -0
- package/node_modules/pino/test/fixtures/transport-exit-immediately.js +11 -0
- package/node_modules/pino/test/fixtures/transport-exit-on-ready.js +12 -0
- package/node_modules/pino/test/fixtures/transport-invalid-node-options.js +26 -0
- package/node_modules/pino/test/fixtures/transport-main.js +9 -0
- package/node_modules/pino/test/fixtures/transport-many-lines.js +29 -0
- package/node_modules/pino/test/fixtures/transport-preload-main.mjs +13 -0
- package/node_modules/pino/test/fixtures/transport-preload.mjs +13 -0
- package/node_modules/pino/test/fixtures/transport-string-stdout.js +9 -0
- package/node_modules/pino/test/fixtures/transport-transform.js +21 -0
- package/node_modules/pino/test/fixtures/transport-uses-pino-config.js +33 -0
- package/node_modules/pino/test/fixtures/transport-with-on-exit.js +12 -0
- package/node_modules/pino/test/fixtures/transport-worker-data.js +19 -0
- package/node_modules/pino/test/fixtures/transport-worker-name.js +24 -0
- package/node_modules/pino/test/fixtures/transport-worker.js +15 -0
- package/node_modules/pino/test/fixtures/transport-wrong-export-type.js +3 -0
- package/node_modules/pino/test/fixtures/ts/to-file-transport-native.mts +15 -0
- package/node_modules/pino/test/fixtures/ts/to-file-transport-with-transform.ts +18 -0
- package/node_modules/pino/test/fixtures/ts/to-file-transport.ts +11 -0
- package/node_modules/pino/test/fixtures/ts/transpile.cjs +36 -0
- package/node_modules/pino/test/fixtures/ts/transport-exit-immediately-with-async-dest.ts +15 -0
- package/node_modules/pino/test/fixtures/ts/transport-exit-immediately.ts +10 -0
- package/node_modules/pino/test/fixtures/ts/transport-exit-on-ready.ts +11 -0
- package/node_modules/pino/test/fixtures/ts/transport-main.ts +8 -0
- package/node_modules/pino/test/fixtures/ts/transport-string-stdout.ts +8 -0
- package/node_modules/pino/test/fixtures/ts/transport-worker.ts +14 -0
- package/node_modules/pino/test/formatters.test.js +364 -0
- package/node_modules/pino/test/helper.d.ts +4 -0
- package/node_modules/pino/test/helper.js +155 -0
- package/node_modules/pino/test/hooks.test.js +114 -0
- package/node_modules/pino/test/http.test.js +214 -0
- package/node_modules/pino/test/internals/version.test.js +17 -0
- package/node_modules/pino/test/is-level-enabled.test.js +179 -0
- package/node_modules/pino/test/jest/basic.spec.js +10 -0
- package/node_modules/pino/test/levels.test.js +810 -0
- package/node_modules/pino/test/metadata.test.js +120 -0
- package/node_modules/pino/test/mixin-merge-strategy.test.js +57 -0
- package/node_modules/pino/test/mixin.test.js +241 -0
- package/node_modules/pino/test/multistream.test.js +729 -0
- package/node_modules/pino/test/redact.test.js +893 -0
- package/node_modules/pino/test/serializers.test.js +257 -0
- package/node_modules/pino/test/stdout-protection.test.js +41 -0
- package/node_modules/pino/test/syncfalse.test.js +186 -0
- package/node_modules/pino/test/timestamp-nano.test.js +37 -0
- package/node_modules/pino/test/timestamp.test.js +124 -0
- package/node_modules/pino/test/transport/big.test.js +42 -0
- package/node_modules/pino/test/transport/bundlers-support.test.js +99 -0
- package/node_modules/pino/test/transport/caller.test.js +24 -0
- package/node_modules/pino/test/transport/core.test.js +733 -0
- package/node_modules/pino/test/transport/core.transpiled.test.ts +114 -0
- package/node_modules/pino/test/transport/crash.test.js +36 -0
- package/node_modules/pino/test/transport/module-link.test.js +241 -0
- package/node_modules/pino/test/transport/native-type-stripping.test.mjs +151 -0
- package/node_modules/pino/test/transport/node-options.test.js +116 -0
- package/node_modules/pino/test/transport/pipeline.test.js +137 -0
- package/node_modules/pino/test/transport/preload.test.js +54 -0
- package/node_modules/pino/test/transport/repl.test.js +15 -0
- package/node_modules/pino/test/transport/sync-false.test.js +67 -0
- package/node_modules/pino/test/transport/sync-true.test.js +57 -0
- package/node_modules/pino/test/transport/targets.test.js +48 -0
- package/node_modules/pino/test/transport/uses-pino-config.test.js +166 -0
- package/node_modules/pino/test/transport-stream.test.js +40 -0
- package/node_modules/pino/test/types/pino-import.test-d.cts +30 -0
- package/node_modules/pino/test/types/pino-multistream.test-d.ts +28 -0
- package/node_modules/pino/test/types/pino-top-export.test-d.ts +34 -0
- package/node_modules/pino/test/types/pino-transport.test-d.ts +156 -0
- package/node_modules/pino/test/types/pino-type-only.test-d.ts +75 -0
- package/node_modules/pino/test/types/pino.test-d.ts +683 -0
- package/node_modules/pino/test/types/pino.ts +91 -0
- package/node_modules/pino/tsconfig.json +14 -0
- package/node_modules/pino-abstract-transport/.github/dependabot.yml +13 -0
- package/node_modules/pino-abstract-transport/.github/workflows/ci.yml +80 -0
- package/node_modules/pino-abstract-transport/.husky/pre-commit +4 -0
- package/node_modules/pino-abstract-transport/LICENSE +21 -0
- package/node_modules/pino-abstract-transport/README.md +171 -0
- package/node_modules/pino-abstract-transport/index.d.ts +122 -0
- package/node_modules/pino-abstract-transport/index.js +128 -0
- package/node_modules/pino-abstract-transport/package.json +41 -0
- package/node_modules/pino-abstract-transport/test/base.test.js +473 -0
- package/node_modules/pino-abstract-transport/test/fixtures/transport-async-iteration.js +22 -0
- package/node_modules/pino-abstract-transport/test/fixtures/transport-on-data.js +22 -0
- package/node_modules/pino-abstract-transport/test/fixtures/transport-transform.js +24 -0
- package/node_modules/pino-abstract-transport/test/fixtures/worker-pipeline.js +15 -0
- package/node_modules/pino-abstract-transport/test/match.js +24 -0
- package/node_modules/pino-abstract-transport/test/types/index.test-d.ts +31 -0
- package/node_modules/pino-abstract-transport/test/worker.test.js +372 -0
- package/node_modules/pino-std-serializers/.editorconfig +13 -0
- package/node_modules/pino-std-serializers/.github/dependabot.yml +13 -0
- package/node_modules/pino-std-serializers/.github/workflows/ci.yml +81 -0
- package/node_modules/pino-std-serializers/LICENSE +7 -0
- package/node_modules/pino-std-serializers/Readme.md +182 -0
- package/node_modules/pino-std-serializers/eslint.config.js +7 -0
- package/node_modules/pino-std-serializers/index.d.ts +145 -0
- package/node_modules/pino-std-serializers/index.js +36 -0
- package/node_modules/pino-std-serializers/lib/err-helpers.js +118 -0
- package/node_modules/pino-std-serializers/lib/err-proto.js +48 -0
- package/node_modules/pino-std-serializers/lib/err-with-cause.js +48 -0
- package/node_modules/pino-std-serializers/lib/err.js +45 -0
- package/node_modules/pino-std-serializers/lib/req.js +100 -0
- package/node_modules/pino-std-serializers/lib/res.js +47 -0
- package/node_modules/pino-std-serializers/package.json +42 -0
- package/node_modules/pino-std-serializers/test/err-with-cause.test.js +187 -0
- package/node_modules/pino-std-serializers/test/err.test.js +200 -0
- package/node_modules/pino-std-serializers/test/req.test.js +477 -0
- package/node_modules/pino-std-serializers/test/res.test.js +120 -0
- package/node_modules/pino-std-serializers/test/types/index.test-d.ts +71 -0
- package/node_modules/pino-std-serializers/tsconfig.json +13 -0
- package/node_modules/process-warning/.gitattributes +2 -0
- package/node_modules/process-warning/.github/dependabot.yml +13 -0
- package/node_modules/process-warning/.github/workflows/ci.yml +22 -0
- package/node_modules/process-warning/LICENSE +21 -0
- package/node_modules/process-warning/README.md +118 -0
- package/node_modules/process-warning/benchmarks/warn.js +25 -0
- package/node_modules/process-warning/eslint.config.js +6 -0
- package/node_modules/process-warning/examples/example.js +11 -0
- package/node_modules/process-warning/index.js +124 -0
- package/node_modules/process-warning/package.json +73 -0
- package/node_modules/process-warning/test/emit-interpolated-string.test.js +34 -0
- package/node_modules/process-warning/test/emit-once-only.test.js +33 -0
- package/node_modules/process-warning/test/emit-reset.test.js +40 -0
- package/node_modules/process-warning/test/emit-set.test.js +35 -0
- package/node_modules/process-warning/test/emit-unlimited.test.js +42 -0
- package/node_modules/process-warning/test/index.test.js +99 -0
- package/node_modules/process-warning/test/issue-88.test.js +38 -0
- package/node_modules/process-warning/test/jest.test.js +24 -0
- package/node_modules/process-warning/test/no-warnings.test.js +80 -0
- package/node_modules/process-warning/test/promise.js +10 -0
- package/node_modules/process-warning/types/index.d.ts +37 -0
- package/node_modules/process-warning/types/index.test-d.ts +36 -0
- package/node_modules/queue-microtask/LICENSE +20 -0
- package/node_modules/queue-microtask/README.md +90 -0
- package/node_modules/queue-microtask/index.d.ts +2 -0
- package/node_modules/queue-microtask/index.js +9 -0
- package/node_modules/queue-microtask/package.json +55 -0
- package/node_modules/quick-format-unescaped/.github/workflows/ci.yml +21 -0
- package/node_modules/quick-format-unescaped/LICENSE +21 -0
- package/node_modules/quick-format-unescaped/benchmark.js +24 -0
- package/node_modules/quick-format-unescaped/index.js +109 -0
- package/node_modules/quick-format-unescaped/package.json +29 -0
- package/node_modules/quick-format-unescaped/readme.md +66 -0
- package/node_modules/quick-format-unescaped/test/index.js +136 -0
- package/node_modules/readdirp/LICENSE +21 -0
- package/node_modules/readdirp/README.md +120 -0
- package/node_modules/readdirp/index.d.ts +108 -0
- package/node_modules/readdirp/index.js +272 -0
- package/node_modules/readdirp/package.json +66 -0
- package/node_modules/real-require/LICENSE.md +21 -0
- package/node_modules/real-require/README.md +51 -0
- package/node_modules/real-require/package.json +49 -0
- package/node_modules/real-require/src/index.js +14 -0
- package/node_modules/require-from-string/index.js +34 -0
- package/node_modules/require-from-string/license +21 -0
- package/node_modules/require-from-string/package.json +28 -0
- package/node_modules/require-from-string/readme.md +56 -0
- package/node_modules/ret/LICENSE +21 -0
- package/node_modules/ret/README.md +539 -0
- package/node_modules/ret/dist/index.d.ts +7 -0
- package/node_modules/ret/dist/index.js +26 -0
- package/node_modules/ret/dist/index.js.map +1 -0
- package/node_modules/ret/dist/reconstruct.d.ts +2 -0
- package/node_modules/ret/dist/reconstruct.js +77 -0
- package/node_modules/ret/dist/reconstruct.js.map +1 -0
- package/node_modules/ret/dist/sets-lookup.d.ts +5 -0
- package/node_modules/ret/dist/sets-lookup.js +51 -0
- package/node_modules/ret/dist/sets-lookup.js.map +1 -0
- package/node_modules/ret/dist/sets.d.ts +9 -0
- package/node_modules/ret/dist/sets.js +43 -0
- package/node_modules/ret/dist/sets.js.map +1 -0
- package/node_modules/ret/dist/tokenizer.d.ts +8 -0
- package/node_modules/ret/dist/tokenizer.js +361 -0
- package/node_modules/ret/dist/tokenizer.js.map +1 -0
- package/node_modules/ret/dist/types/index.d.ts +3 -0
- package/node_modules/ret/dist/types/index.js +16 -0
- package/node_modules/ret/dist/types/index.js.map +1 -0
- package/node_modules/ret/dist/types/set-lookup.d.ts +8 -0
- package/node_modules/ret/dist/types/set-lookup.js +3 -0
- package/node_modules/ret/dist/types/set-lookup.js.map +1 -0
- package/node_modules/ret/dist/types/tokens.d.ts +41 -0
- package/node_modules/ret/dist/types/tokens.js +3 -0
- package/node_modules/ret/dist/types/tokens.js.map +1 -0
- package/node_modules/ret/dist/types/types.d.ts +10 -0
- package/node_modules/ret/dist/types/types.js +15 -0
- package/node_modules/ret/dist/types/types.js.map +1 -0
- package/node_modules/ret/dist/util.d.ts +18 -0
- package/node_modules/ret/dist/util.js +82 -0
- package/node_modules/ret/dist/util.js.map +1 -0
- package/node_modules/ret/dist/write-set-tokens.d.ts +14 -0
- package/node_modules/ret/dist/write-set-tokens.js +108 -0
- package/node_modules/ret/dist/write-set-tokens.js.map +1 -0
- package/node_modules/ret/package.json +42 -0
- package/node_modules/reusify/.github/dependabot.yml +7 -0
- package/node_modules/reusify/.github/workflows/ci.yml +96 -0
- package/node_modules/reusify/LICENSE +22 -0
- package/node_modules/reusify/README.md +139 -0
- package/node_modules/reusify/SECURITY.md +15 -0
- package/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- package/node_modules/reusify/benchmarks/fib.js +13 -0
- package/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- package/node_modules/reusify/eslint.config.js +14 -0
- package/node_modules/reusify/package.json +50 -0
- package/node_modules/reusify/reusify.d.ts +14 -0
- package/node_modules/reusify/reusify.js +33 -0
- package/node_modules/reusify/test.js +66 -0
- package/node_modules/reusify/tsconfig.json +11 -0
- package/node_modules/rfdc/.github/workflows/ci.yml +21 -0
- package/node_modules/rfdc/LICENSE +15 -0
- package/node_modules/rfdc/default.js +3 -0
- package/node_modules/rfdc/index.d.ts +13 -0
- package/node_modules/rfdc/index.js +198 -0
- package/node_modules/rfdc/index.test-d.ts +13 -0
- package/node_modules/rfdc/package.json +73 -0
- package/node_modules/rfdc/readme.md +181 -0
- package/node_modules/rfdc/test/index.js +306 -0
- package/node_modules/run-parallel/LICENSE +20 -0
- package/node_modules/run-parallel/README.md +85 -0
- package/node_modules/run-parallel/index.js +51 -0
- package/node_modules/run-parallel/package.json +58 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +65 -0
- package/node_modules/safe-buffer/package.json +51 -0
- package/node_modules/safe-regex2/.gitattributes +2 -0
- package/node_modules/safe-regex2/.github/dependabot.yml +13 -0
- package/node_modules/safe-regex2/.github/stale.yml +21 -0
- package/node_modules/safe-regex2/.github/workflows/ci.yml +25 -0
- package/node_modules/safe-regex2/LICENSE +18 -0
- package/node_modules/safe-regex2/README.md +59 -0
- package/node_modules/safe-regex2/eslint.config.js +6 -0
- package/node_modules/safe-regex2/example/safe.js +5 -0
- package/node_modules/safe-regex2/index.js +54 -0
- package/node_modules/safe-regex2/package.json +77 -0
- package/node_modules/safe-regex2/test/regex.js +51 -0
- package/node_modules/safe-regex2/types/index.d.ts +9 -0
- package/node_modules/safe-regex2/types/index.test-d.ts +12 -0
- package/node_modules/safe-stable-stringify/LICENSE +21 -0
- package/node_modules/safe-stable-stringify/esm/package.json +4 -0
- package/node_modules/safe-stable-stringify/esm/wrapper.d.ts +4 -0
- package/node_modules/safe-stable-stringify/esm/wrapper.js +6 -0
- package/node_modules/safe-stable-stringify/index.d.ts +22 -0
- package/node_modules/safe-stable-stringify/index.js +625 -0
- package/node_modules/safe-stable-stringify/package.json +65 -0
- package/node_modules/safe-stable-stringify/readme.md +179 -0
- package/node_modules/secure-json-parse/.airtap.yml +7 -0
- package/node_modules/secure-json-parse/.gitattributes +2 -0
- package/node_modules/secure-json-parse/.github/dependabot.yml +13 -0
- package/node_modules/secure-json-parse/.github/stale.yml +21 -0
- package/node_modules/secure-json-parse/.github/workflows/ci.yml +149 -0
- package/node_modules/secure-json-parse/LICENSE +19 -0
- package/node_modules/secure-json-parse/README.md +132 -0
- package/node_modules/secure-json-parse/benchmarks/ignore.js +35 -0
- package/node_modules/secure-json-parse/benchmarks/no__proto__.js +40 -0
- package/node_modules/secure-json-parse/benchmarks/package.json +15 -0
- package/node_modules/secure-json-parse/benchmarks/remove.js +39 -0
- package/node_modules/secure-json-parse/benchmarks/throw.js +49 -0
- package/node_modules/secure-json-parse/benchmarks/valid.js +49 -0
- package/node_modules/secure-json-parse/eslint.config.js +6 -0
- package/node_modules/secure-json-parse/index.js +161 -0
- package/node_modules/secure-json-parse/package.json +74 -0
- package/node_modules/secure-json-parse/test/index.test.js +649 -0
- package/node_modules/secure-json-parse/types/index.d.ts +60 -0
- package/node_modules/secure-json-parse/types/index.test-d.ts +43 -0
- package/node_modules/set-cookie-parser/LICENSE +21 -0
- package/node_modules/set-cookie-parser/README.md +202 -0
- package/node_modules/set-cookie-parser/lib/set-cookie.js +242 -0
- package/node_modules/set-cookie-parser/package.json +45 -0
- package/node_modules/setprototypeof/LICENSE +13 -0
- package/node_modules/setprototypeof/README.md +31 -0
- package/node_modules/setprototypeof/index.d.ts +2 -0
- package/node_modules/setprototypeof/index.js +17 -0
- package/node_modules/setprototypeof/package.json +38 -0
- package/node_modules/setprototypeof/test/index.js +24 -0
- package/node_modules/shebang-command/index.js +19 -0
- package/node_modules/shebang-command/license +9 -0
- package/node_modules/shebang-command/package.json +34 -0
- package/node_modules/shebang-command/readme.md +34 -0
- package/node_modules/shebang-regex/index.d.ts +22 -0
- package/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/shebang-regex/license +9 -0
- package/node_modules/shebang-regex/package.json +35 -0
- package/node_modules/shebang-regex/readme.md +33 -0
- package/node_modules/signal-exit/LICENSE.txt +16 -0
- package/node_modules/signal-exit/README.md +74 -0
- package/node_modules/signal-exit/dist/cjs/browser.d.ts +12 -0
- package/node_modules/signal-exit/dist/cjs/browser.d.ts.map +1 -0
- package/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/node_modules/signal-exit/dist/cjs/browser.js.map +1 -0
- package/node_modules/signal-exit/dist/cjs/index.d.ts +48 -0
- package/node_modules/signal-exit/dist/cjs/index.d.ts.map +1 -0
- package/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/node_modules/signal-exit/dist/cjs/index.js.map +1 -0
- package/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/node_modules/signal-exit/dist/cjs/signals.d.ts +29 -0
- package/node_modules/signal-exit/dist/cjs/signals.d.ts.map +1 -0
- package/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/node_modules/signal-exit/dist/cjs/signals.js.map +1 -0
- package/node_modules/signal-exit/dist/mjs/browser.d.ts +12 -0
- package/node_modules/signal-exit/dist/mjs/browser.d.ts.map +1 -0
- package/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/node_modules/signal-exit/dist/mjs/browser.js.map +1 -0
- package/node_modules/signal-exit/dist/mjs/index.d.ts +48 -0
- package/node_modules/signal-exit/dist/mjs/index.d.ts.map +1 -0
- package/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/node_modules/signal-exit/dist/mjs/index.js.map +1 -0
- package/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/node_modules/signal-exit/dist/mjs/signals.d.ts +29 -0
- package/node_modules/signal-exit/dist/mjs/signals.d.ts.map +1 -0
- package/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/node_modules/signal-exit/dist/mjs/signals.js.map +1 -0
- package/node_modules/signal-exit/package.json +106 -0
- package/node_modules/sonic-boom/.eslintignore +2 -0
- package/node_modules/sonic-boom/.taprc +3 -0
- package/node_modules/sonic-boom/LICENSE +21 -0
- package/node_modules/sonic-boom/README.md +153 -0
- package/node_modules/sonic-boom/bench.js +98 -0
- package/node_modules/sonic-boom/check.js +18 -0
- package/node_modules/sonic-boom/example.js +8 -0
- package/node_modules/sonic-boom/fixtures/firehose.js +22 -0
- package/node_modules/sonic-boom/index.js +733 -0
- package/node_modules/sonic-boom/package.json +52 -0
- package/node_modules/sonic-boom/test/destroy.test.js +49 -0
- package/node_modules/sonic-boom/test/end.test.js +98 -0
- package/node_modules/sonic-boom/test/flush-sync.test.js +140 -0
- package/node_modules/sonic-boom/test/flush.test.js +419 -0
- package/node_modules/sonic-boom/test/fsync.test.js +63 -0
- package/node_modules/sonic-boom/test/helper.js +42 -0
- package/node_modules/sonic-boom/test/minlength.test.js +35 -0
- package/node_modules/sonic-boom/test/mode.test.js +116 -0
- package/node_modules/sonic-boom/test/periodicflush.test.js +61 -0
- package/node_modules/sonic-boom/test/reopen.test.js +239 -0
- package/node_modules/sonic-boom/test/retry.test.js +414 -0
- package/node_modules/sonic-boom/test/sync.test.js +261 -0
- package/node_modules/sonic-boom/test/write.test.js +515 -0
- package/node_modules/sonic-boom/types/index.d.ts +63 -0
- package/node_modules/sonic-boom/types/tests/test.ts +4 -0
- package/node_modules/split2/LICENSE +13 -0
- package/node_modules/split2/README.md +85 -0
- package/node_modules/split2/bench.js +27 -0
- package/node_modules/split2/index.js +141 -0
- package/node_modules/split2/package.json +39 -0
- package/node_modules/split2/test.js +409 -0
- package/node_modules/statuses/HISTORY.md +87 -0
- package/node_modules/statuses/LICENSE +23 -0
- package/node_modules/statuses/README.md +139 -0
- package/node_modules/statuses/codes.json +65 -0
- package/node_modules/statuses/index.js +146 -0
- package/node_modules/statuses/package.json +49 -0
- package/node_modules/thread-stream/.github/dependabot.yml +13 -0
- package/node_modules/thread-stream/.github/workflows/ci.yml +74 -0
- package/node_modules/thread-stream/.husky/pre-commit +4 -0
- package/node_modules/thread-stream/CLAUDE.md +53 -0
- package/node_modules/thread-stream/LICENSE +21 -0
- package/node_modules/thread-stream/README.md +135 -0
- package/node_modules/thread-stream/bench.js +85 -0
- package/node_modules/thread-stream/eslint.config.js +10 -0
- package/node_modules/thread-stream/index.d.ts +92 -0
- package/node_modules/thread-stream/index.js +541 -0
- package/node_modules/thread-stream/lib/indexes.js +9 -0
- package/node_modules/thread-stream/lib/wait.js +68 -0
- package/node_modules/thread-stream/lib/worker.js +179 -0
- package/node_modules/thread-stream/package.json +52 -0
- package/node_modules/thread-stream/test/base.test.js +259 -0
- package/node_modules/thread-stream/test/bench.test.js +38 -0
- package/node_modules/thread-stream/test/bundlers.test.js +59 -0
- package/node_modules/thread-stream/test/close-on-gc.js +37 -0
- package/node_modules/thread-stream/test/commonjs-fallback.test.js +75 -0
- package/node_modules/thread-stream/test/context.test.js +21 -0
- package/node_modules/thread-stream/test/create-and-exit.js +16 -0
- package/node_modules/thread-stream/test/custom-worker.js +9 -0
- package/node_modules/thread-stream/test/dir with spaces/test-package.zip +0 -0
- package/node_modules/thread-stream/test/emit-event.js +22 -0
- package/node_modules/thread-stream/test/end.test.js +56 -0
- package/node_modules/thread-stream/test/error.js +14 -0
- package/node_modules/thread-stream/test/esm.test.mjs +46 -0
- package/node_modules/thread-stream/test/event.test.js +24 -0
- package/node_modules/thread-stream/test/exit.js +14 -0
- package/node_modules/thread-stream/test/get-context.js +22 -0
- package/node_modules/thread-stream/test/helper.d.ts +1 -0
- package/node_modules/thread-stream/test/helper.js +26 -0
- package/node_modules/thread-stream/test/indexes.test.js +11 -0
- package/node_modules/thread-stream/test/multibyte-chars.test.mjs +75 -0
- package/node_modules/thread-stream/test/on-message.js +18 -0
- package/node_modules/thread-stream/test/pkg/index.js +37 -0
- package/node_modules/thread-stream/test/pkg/pkg.config.json +14 -0
- package/node_modules/thread-stream/test/pkg/pkg.test.js +45 -0
- package/node_modules/thread-stream/test/port.js +16 -0
- package/node_modules/thread-stream/test/post-message.test.js +23 -0
- package/node_modules/thread-stream/test/string-limit-2.test.js +35 -0
- package/node_modules/thread-stream/test/string-limit.test.js +37 -0
- package/node_modules/thread-stream/test/syntax-error.mjs +2 -0
- package/node_modules/thread-stream/test/thread-management.test.js +138 -0
- package/node_modules/thread-stream/test/to-file-on-destroy.js +23 -0
- package/node_modules/thread-stream/test/to-file-on-final.js +24 -0
- package/node_modules/thread-stream/test/to-file.js +12 -0
- package/node_modules/thread-stream/test/to-file.mjs +8 -0
- package/node_modules/thread-stream/test/to-next.js +9 -0
- package/node_modules/thread-stream/test/transpiled.test.js +29 -0
- package/node_modules/thread-stream/test/ts/to-file.ts +10 -0
- package/node_modules/thread-stream/test/ts/transpile.sh +19 -0
- package/node_modules/thread-stream/test/ts-commonjs-default-export.zip +0 -0
- package/node_modules/thread-stream/test/ts-native.test.mjs +35 -0
- package/node_modules/thread-stream/test/ts-node-fallback.test.js +35 -0
- package/node_modules/thread-stream/test/uncaughtException.js +21 -0
- package/node_modules/thread-stream/test/unhandledRejection.js +21 -0
- package/node_modules/thread-stream/test/yarnrc.yml +7 -0
- package/node_modules/thread-stream/tsconfig.json +8 -0
- package/node_modules/to-regex-range/LICENSE +21 -0
- package/node_modules/to-regex-range/README.md +305 -0
- package/node_modules/to-regex-range/index.js +288 -0
- package/node_modules/to-regex-range/package.json +88 -0
- package/node_modules/toad-cache/LICENSE +21 -0
- package/node_modules/toad-cache/README.md +265 -0
- package/node_modules/toad-cache/dist/toad-cache.cjs +878 -0
- package/node_modules/toad-cache/dist/toad-cache.mjs +852 -0
- package/node_modules/toad-cache/package.json +82 -0
- package/node_modules/toad-cache/toad-cache.d.cts +138 -0
- package/node_modules/toad-cache/toad-cache.d.ts +128 -0
- package/node_modules/toidentifier/HISTORY.md +9 -0
- package/node_modules/toidentifier/LICENSE +21 -0
- package/node_modules/toidentifier/README.md +61 -0
- package/node_modules/toidentifier/index.js +32 -0
- package/node_modules/toidentifier/package.json +38 -0
- package/node_modules/which/LICENSE +15 -0
- package/node_modules/which/README.md +54 -0
- package/node_modules/which/bin/node-which +52 -0
- package/node_modules/which/package.json +43 -0
- package/node_modules/which/which.js +125 -0
- package/package.json +45 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
(function(){const p=document.createElement("link").relList;if(p&&p.supports&&p.supports("modulepreload"))return;for(const k of document.querySelectorAll('link[rel="modulepreload"]'))O(k);new MutationObserver(k=>{for(const B of k)if(B.type==="childList")for(const _ of B.addedNodes)_.tagName==="LINK"&&_.rel==="modulepreload"&&O(_)}).observe(document,{childList:!0,subtree:!0});function c(k){const B={};return k.integrity&&(B.integrity=k.integrity),k.referrerPolicy&&(B.referrerPolicy=k.referrerPolicy),k.crossOrigin==="use-credentials"?B.credentials="include":k.crossOrigin==="anonymous"?B.credentials="omit":B.credentials="same-origin",B}function O(k){if(k.ep)return;k.ep=!0;const B=c(k);fetch(k.href,B)}})();function pd(u){return u&&u.__esModule&&Object.prototype.hasOwnProperty.call(u,"default")?u.default:u}var Gs={exports:{}},no={},Xs={exports:{}},le={};/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react.production.min.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/var xc;function md(){if(xc)return le;xc=1;var u=Symbol.for("react.element"),p=Symbol.for("react.portal"),c=Symbol.for("react.fragment"),O=Symbol.for("react.strict_mode"),k=Symbol.for("react.profiler"),B=Symbol.for("react.provider"),_=Symbol.for("react.context"),A=Symbol.for("react.forward_ref"),H=Symbol.for("react.suspense"),Y=Symbol.for("react.memo"),se=Symbol.for("react.lazy"),ue=Symbol.iterator;function re(m){return m===null||typeof m!="object"?null:(m=ue&&m[ue]||m["@@iterator"],typeof m=="function"?m:null)}var Me={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},ye=Object.assign,te={};function oe(m,C,b){this.props=m,this.context=C,this.refs=te,this.updater=b||Me}oe.prototype.isReactComponent={},oe.prototype.setState=function(m,C){if(typeof m!="object"&&typeof m!="function"&&m!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,m,C,"setState")},oe.prototype.forceUpdate=function(m){this.updater.enqueueForceUpdate(this,m,"forceUpdate")};function ot(){}ot.prototype=oe.prototype;function Le(m,C,b){this.props=m,this.context=C,this.refs=te,this.updater=b||Me}var Ke=Le.prototype=new ot;Ke.constructor=Le,ye(Ke,oe.prototype),Ke.isPureReactComponent=!0;var _e=Array.isArray,Qe=Object.prototype.hasOwnProperty,Ee={current:null},Fe={key:!0,ref:!0,__self:!0,__source:!0};function De(m,C,b){var ne,ie={},ae=null,de=null;if(C!=null)for(ne in C.ref!==void 0&&(de=C.ref),C.key!==void 0&&(ae=""+C.key),C)Qe.call(C,ne)&&!Fe.hasOwnProperty(ne)&&(ie[ne]=C[ne]);var ce=arguments.length-2;if(ce===1)ie.children=b;else if(1<ce){for(var ve=Array(ce),qe=0;qe<ce;qe++)ve[qe]=arguments[qe+2];ie.children=ve}if(m&&m.defaultProps)for(ne in ce=m.defaultProps,ce)ie[ne]===void 0&&(ie[ne]=ce[ne]);return{$$typeof:u,type:m,key:ae,ref:de,props:ie,_owner:Ee.current}}function it(m,C){return{$$typeof:u,type:m.type,key:C,ref:m.ref,props:m.props,_owner:m._owner}}function ct(m){return typeof m=="object"&&m!==null&&m.$$typeof===u}function Je(m){var C={"=":"=0",":":"=2"};return"$"+m.replace(/[=:]/g,function(b){return C[b]})}var Ye=/\/+/g;function Ge(m,C){return typeof m=="object"&&m!==null&&m.key!=null?Je(""+m.key):C.toString(36)}function Ce(m,C,b,ne,ie){var ae=typeof m;(ae==="undefined"||ae==="boolean")&&(m=null);var de=!1;if(m===null)de=!0;else switch(ae){case"string":case"number":de=!0;break;case"object":switch(m.$$typeof){case u:case p:de=!0}}if(de)return de=m,ie=ie(de),m=ne===""?"."+Ge(de,0):ne,_e(ie)?(b="",m!=null&&(b=m.replace(Ye,"$&/")+"/"),Ce(ie,C,b,"",function(qe){return qe})):ie!=null&&(ct(ie)&&(ie=it(ie,b+(!ie.key||de&&de.key===ie.key?"":(""+ie.key).replace(Ye,"$&/")+"/")+m)),C.push(ie)),1;if(de=0,ne=ne===""?".":ne+":",_e(m))for(var ce=0;ce<m.length;ce++){ae=m[ce];var ve=ne+Ge(ae,ce);de+=Ce(ae,C,b,ve,ie)}else if(ve=re(m),typeof ve=="function")for(m=ve.call(m),ce=0;!(ae=m.next()).done;)ae=ae.value,ve=ne+Ge(ae,ce++),de+=Ce(ae,C,b,ve,ie);else if(ae==="object")throw C=String(m),Error("Objects are not valid as a React child (found: "+(C==="[object Object]"?"object with keys {"+Object.keys(m).join(", ")+"}":C)+"). If you meant to render a collection of children, use an array instead.");return de}function ft(m,C,b){if(m==null)return m;var ne=[],ie=0;return Ce(m,ne,"","",function(ae){return C.call(b,ae,ie++)}),ne}function me(m){if(m._status===-1){var C=m._result;C=C(),C.then(function(b){(m._status===0||m._status===-1)&&(m._status=1,m._result=b)},function(b){(m._status===0||m._status===-1)&&(m._status=2,m._result=b)}),m._status===-1&&(m._status=0,m._result=C)}if(m._status===1)return m._result.default;throw m._result}var we={current:null},L={transition:null},P={ReactCurrentDispatcher:we,ReactCurrentBatchConfig:L,ReactCurrentOwner:Ee};function F(){throw Error("act(...) is not supported in production builds of React.")}return le.Children={map:ft,forEach:function(m,C,b){ft(m,function(){C.apply(this,arguments)},b)},count:function(m){var C=0;return ft(m,function(){C++}),C},toArray:function(m){return ft(m,function(C){return C})||[]},only:function(m){if(!ct(m))throw Error("React.Children.only expected to receive a single React element child.");return m}},le.Component=oe,le.Fragment=c,le.Profiler=k,le.PureComponent=Le,le.StrictMode=O,le.Suspense=H,le.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=P,le.act=F,le.cloneElement=function(m,C,b){if(m==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+m+".");var ne=ye({},m.props),ie=m.key,ae=m.ref,de=m._owner;if(C!=null){if(C.ref!==void 0&&(ae=C.ref,de=Ee.current),C.key!==void 0&&(ie=""+C.key),m.type&&m.type.defaultProps)var ce=m.type.defaultProps;for(ve in C)Qe.call(C,ve)&&!Fe.hasOwnProperty(ve)&&(ne[ve]=C[ve]===void 0&&ce!==void 0?ce[ve]:C[ve])}var ve=arguments.length-2;if(ve===1)ne.children=b;else if(1<ve){ce=Array(ve);for(var qe=0;qe<ve;qe++)ce[qe]=arguments[qe+2];ne.children=ce}return{$$typeof:u,type:m.type,key:ie,ref:ae,props:ne,_owner:de}},le.createContext=function(m){return m={$$typeof:_,_currentValue:m,_currentValue2:m,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},m.Provider={$$typeof:B,_context:m},m.Consumer=m},le.createElement=De,le.createFactory=function(m){var C=De.bind(null,m);return C.type=m,C},le.createRef=function(){return{current:null}},le.forwardRef=function(m){return{$$typeof:A,render:m}},le.isValidElement=ct,le.lazy=function(m){return{$$typeof:se,_payload:{_status:-1,_result:m},_init:me}},le.memo=function(m,C){return{$$typeof:Y,type:m,compare:C===void 0?null:C}},le.startTransition=function(m){var C=L.transition;L.transition={};try{m()}finally{L.transition=C}},le.unstable_act=F,le.useCallback=function(m,C){return we.current.useCallback(m,C)},le.useContext=function(m){return we.current.useContext(m)},le.useDebugValue=function(){},le.useDeferredValue=function(m){return we.current.useDeferredValue(m)},le.useEffect=function(m,C){return we.current.useEffect(m,C)},le.useId=function(){return we.current.useId()},le.useImperativeHandle=function(m,C,b){return we.current.useImperativeHandle(m,C,b)},le.useInsertionEffect=function(m,C){return we.current.useInsertionEffect(m,C)},le.useLayoutEffect=function(m,C){return we.current.useLayoutEffect(m,C)},le.useMemo=function(m,C){return we.current.useMemo(m,C)},le.useReducer=function(m,C,b){return we.current.useReducer(m,C,b)},le.useRef=function(m){return we.current.useRef(m)},le.useState=function(m){return we.current.useState(m)},le.useSyncExternalStore=function(m,C,b){return we.current.useSyncExternalStore(m,C,b)},le.useTransition=function(){return we.current.useTransition()},le.version="18.3.1",le}var kc;function au(){return kc||(kc=1,Xs.exports=md()),Xs.exports}/**
|
|
10
|
+
* @license React
|
|
11
|
+
* react-jsx-runtime.production.min.js
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
14
|
+
*
|
|
15
|
+
* This source code is licensed under the MIT license found in the
|
|
16
|
+
* LICENSE file in the root directory of this source tree.
|
|
17
|
+
*/var Ec;function hd(){if(Ec)return no;Ec=1;var u=au(),p=Symbol.for("react.element"),c=Symbol.for("react.fragment"),O=Object.prototype.hasOwnProperty,k=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,B={key:!0,ref:!0,__self:!0,__source:!0};function _(A,H,Y){var se,ue={},re=null,Me=null;Y!==void 0&&(re=""+Y),H.key!==void 0&&(re=""+H.key),H.ref!==void 0&&(Me=H.ref);for(se in H)O.call(H,se)&&!B.hasOwnProperty(se)&&(ue[se]=H[se]);if(A&&A.defaultProps)for(se in H=A.defaultProps,H)ue[se]===void 0&&(ue[se]=H[se]);return{$$typeof:p,type:A,key:re,ref:Me,props:ue,_owner:k.current}}return no.Fragment=c,no.jsx=_,no.jsxs=_,no}var Cc;function vd(){return Cc||(Cc=1,Gs.exports=hd()),Gs.exports}var v=vd(),S=au();const yd=pd(S);var pi={},Zs={exports:{}},wt={},Js={exports:{}},qs={};/**
|
|
18
|
+
* @license React
|
|
19
|
+
* scheduler.production.min.js
|
|
20
|
+
*
|
|
21
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
22
|
+
*
|
|
23
|
+
* This source code is licensed under the MIT license found in the
|
|
24
|
+
* LICENSE file in the root directory of this source tree.
|
|
25
|
+
*/var Tc;function gd(){return Tc||(Tc=1,(function(u){function p(L,P){var F=L.length;L.push(P);e:for(;0<F;){var m=F-1>>>1,C=L[m];if(0<k(C,P))L[m]=P,L[F]=C,F=m;else break e}}function c(L){return L.length===0?null:L[0]}function O(L){if(L.length===0)return null;var P=L[0],F=L.pop();if(F!==P){L[0]=F;e:for(var m=0,C=L.length,b=C>>>1;m<b;){var ne=2*(m+1)-1,ie=L[ne],ae=ne+1,de=L[ae];if(0>k(ie,F))ae<C&&0>k(de,ie)?(L[m]=de,L[ae]=F,m=ae):(L[m]=ie,L[ne]=F,m=ne);else if(ae<C&&0>k(de,F))L[m]=de,L[ae]=F,m=ae;else break e}}return P}function k(L,P){var F=L.sortIndex-P.sortIndex;return F!==0?F:L.id-P.id}if(typeof performance=="object"&&typeof performance.now=="function"){var B=performance;u.unstable_now=function(){return B.now()}}else{var _=Date,A=_.now();u.unstable_now=function(){return _.now()-A}}var H=[],Y=[],se=1,ue=null,re=3,Me=!1,ye=!1,te=!1,oe=typeof setTimeout=="function"?setTimeout:null,ot=typeof clearTimeout=="function"?clearTimeout:null,Le=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function Ke(L){for(var P=c(Y);P!==null;){if(P.callback===null)O(Y);else if(P.startTime<=L)O(Y),P.sortIndex=P.expirationTime,p(H,P);else break;P=c(Y)}}function _e(L){if(te=!1,Ke(L),!ye)if(c(H)!==null)ye=!0,me(Qe);else{var P=c(Y);P!==null&&we(_e,P.startTime-L)}}function Qe(L,P){ye=!1,te&&(te=!1,ot(De),De=-1),Me=!0;var F=re;try{for(Ke(P),ue=c(H);ue!==null&&(!(ue.expirationTime>P)||L&&!Je());){var m=ue.callback;if(typeof m=="function"){ue.callback=null,re=ue.priorityLevel;var C=m(ue.expirationTime<=P);P=u.unstable_now(),typeof C=="function"?ue.callback=C:ue===c(H)&&O(H),Ke(P)}else O(H);ue=c(H)}if(ue!==null)var b=!0;else{var ne=c(Y);ne!==null&&we(_e,ne.startTime-P),b=!1}return b}finally{ue=null,re=F,Me=!1}}var Ee=!1,Fe=null,De=-1,it=5,ct=-1;function Je(){return!(u.unstable_now()-ct<it)}function Ye(){if(Fe!==null){var L=u.unstable_now();ct=L;var P=!0;try{P=Fe(!0,L)}finally{P?Ge():(Ee=!1,Fe=null)}}else Ee=!1}var Ge;if(typeof Le=="function")Ge=function(){Le(Ye)};else if(typeof MessageChannel<"u"){var Ce=new MessageChannel,ft=Ce.port2;Ce.port1.onmessage=Ye,Ge=function(){ft.postMessage(null)}}else Ge=function(){oe(Ye,0)};function me(L){Fe=L,Ee||(Ee=!0,Ge())}function we(L,P){De=oe(function(){L(u.unstable_now())},P)}u.unstable_IdlePriority=5,u.unstable_ImmediatePriority=1,u.unstable_LowPriority=4,u.unstable_NormalPriority=3,u.unstable_Profiling=null,u.unstable_UserBlockingPriority=2,u.unstable_cancelCallback=function(L){L.callback=null},u.unstable_continueExecution=function(){ye||Me||(ye=!0,me(Qe))},u.unstable_forceFrameRate=function(L){0>L||125<L?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):it=0<L?Math.floor(1e3/L):5},u.unstable_getCurrentPriorityLevel=function(){return re},u.unstable_getFirstCallbackNode=function(){return c(H)},u.unstable_next=function(L){switch(re){case 1:case 2:case 3:var P=3;break;default:P=re}var F=re;re=P;try{return L()}finally{re=F}},u.unstable_pauseExecution=function(){},u.unstable_requestPaint=function(){},u.unstable_runWithPriority=function(L,P){switch(L){case 1:case 2:case 3:case 4:case 5:break;default:L=3}var F=re;re=L;try{return P()}finally{re=F}},u.unstable_scheduleCallback=function(L,P,F){var m=u.unstable_now();switch(typeof F=="object"&&F!==null?(F=F.delay,F=typeof F=="number"&&0<F?m+F:m):F=m,L){case 1:var C=-1;break;case 2:C=250;break;case 5:C=1073741823;break;case 4:C=1e4;break;default:C=5e3}return C=F+C,L={id:se++,callback:P,priorityLevel:L,startTime:F,expirationTime:C,sortIndex:-1},F>m?(L.sortIndex=F,p(Y,L),c(H)===null&&L===c(Y)&&(te?(ot(De),De=-1):te=!0,we(_e,F-m))):(L.sortIndex=C,p(H,L),ye||Me||(ye=!0,me(Qe))),L},u.unstable_shouldYield=Je,u.unstable_wrapCallback=function(L){var P=re;return function(){var F=re;re=P;try{return L.apply(this,arguments)}finally{re=F}}}})(qs)),qs}var Nc;function wd(){return Nc||(Nc=1,Js.exports=gd()),Js.exports}/**
|
|
26
|
+
* @license React
|
|
27
|
+
* react-dom.production.min.js
|
|
28
|
+
*
|
|
29
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
30
|
+
*
|
|
31
|
+
* This source code is licensed under the MIT license found in the
|
|
32
|
+
* LICENSE file in the root directory of this source tree.
|
|
33
|
+
*/var _c;function Sd(){if(_c)return wt;_c=1;var u=au(),p=wd();function c(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var O=new Set,k={};function B(e,t){_(e,t),_(e+"Capture",t)}function _(e,t){for(k[e]=t,e=0;e<t.length;e++)O.add(t[e])}var A=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),H=Object.prototype.hasOwnProperty,Y=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,se={},ue={};function re(e){return H.call(ue,e)?!0:H.call(se,e)?!1:Y.test(e)?ue[e]=!0:(se[e]=!0,!1)}function Me(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function ye(e,t,n,r){if(t===null||typeof t>"u"||Me(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function te(e,t,n,r,l,o,i){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var oe={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){oe[e]=new te(e,0,!1,e,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];oe[t]=new te(t,1,!1,e[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){oe[e]=new te(e,2,!1,e.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){oe[e]=new te(e,2,!1,e,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){oe[e]=new te(e,3,!1,e.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(e){oe[e]=new te(e,3,!0,e,null,!1,!1)}),["capture","download"].forEach(function(e){oe[e]=new te(e,4,!1,e,null,!1,!1)}),["cols","rows","size","span"].forEach(function(e){oe[e]=new te(e,6,!1,e,null,!1,!1)}),["rowSpan","start"].forEach(function(e){oe[e]=new te(e,5,!1,e.toLowerCase(),null,!1,!1)});var ot=/[\-:]([a-z])/g;function Le(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(ot,Le);oe[t]=new te(t,1,!1,e,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(ot,Le);oe[t]=new te(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(ot,Le);oe[t]=new te(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(e){oe[e]=new te(e,1,!1,e.toLowerCase(),null,!1,!1)}),oe.xlinkHref=new te("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(e){oe[e]=new te(e,1,!1,e.toLowerCase(),null,!0,!0)});function Ke(e,t,n,r){var l=oe.hasOwnProperty(t)?oe[t]:null;(l!==null?l.type!==0:r||!(2<t.length)||t[0]!=="o"&&t[0]!=="O"||t[1]!=="n"&&t[1]!=="N")&&(ye(t,n,l,r)&&(n=null),r||l===null?re(t)&&(n===null?e.removeAttribute(t):e.setAttribute(t,""+n)):l.mustUseProperty?e[l.propertyName]=n===null?l.type===3?!1:"":n:(t=l.attributeName,r=l.attributeNamespace,n===null?e.removeAttribute(t):(l=l.type,n=l===3||l===4&&n===!0?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}var _e=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,Qe=Symbol.for("react.element"),Ee=Symbol.for("react.portal"),Fe=Symbol.for("react.fragment"),De=Symbol.for("react.strict_mode"),it=Symbol.for("react.profiler"),ct=Symbol.for("react.provider"),Je=Symbol.for("react.context"),Ye=Symbol.for("react.forward_ref"),Ge=Symbol.for("react.suspense"),Ce=Symbol.for("react.suspense_list"),ft=Symbol.for("react.memo"),me=Symbol.for("react.lazy"),we=Symbol.for("react.offscreen"),L=Symbol.iterator;function P(e){return e===null||typeof e!="object"?null:(e=L&&e[L]||e["@@iterator"],typeof e=="function"?e:null)}var F=Object.assign,m;function C(e){if(m===void 0)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);m=t&&t[1]||""}return`
|
|
34
|
+
`+m+e}var b=!1;function ne(e,t){if(!e||b)return"";b=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(t,[])}catch(g){var r=g}Reflect.construct(e,[],t)}else{try{t.call()}catch(g){r=g}e.call(t.prototype)}else{try{throw Error()}catch(g){r=g}e()}}catch(g){if(g&&r&&typeof g.stack=="string"){for(var l=g.stack.split(`
|
|
35
|
+
`),o=r.stack.split(`
|
|
36
|
+
`),i=l.length-1,a=o.length-1;1<=i&&0<=a&&l[i]!==o[a];)a--;for(;1<=i&&0<=a;i--,a--)if(l[i]!==o[a]){if(i!==1||a!==1)do if(i--,a--,0>a||l[i]!==o[a]){var f=`
|
|
37
|
+
`+l[i].replace(" at new "," at ");return e.displayName&&f.includes("<anonymous>")&&(f=f.replace("<anonymous>",e.displayName)),f}while(1<=i&&0<=a);break}}}finally{b=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?C(e):""}function ie(e){switch(e.tag){case 5:return C(e.type);case 16:return C("Lazy");case 13:return C("Suspense");case 19:return C("SuspenseList");case 0:case 2:case 15:return e=ne(e.type,!1),e;case 11:return e=ne(e.type.render,!1),e;case 1:return e=ne(e.type,!0),e;default:return""}}function ae(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Fe:return"Fragment";case Ee:return"Portal";case it:return"Profiler";case De:return"StrictMode";case Ge:return"Suspense";case Ce:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case Je:return(e.displayName||"Context")+".Consumer";case ct:return(e._context.displayName||"Context")+".Provider";case Ye:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case ft:return t=e.displayName||null,t!==null?t:ae(e.type)||"Memo";case me:t=e._payload,e=e._init;try{return ae(e(t))}catch{}}return null}function de(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return ae(t);case 8:return t===De?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function ce(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function ve(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function qe(e){var t=ve(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var l=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return l.call(this)},set:function(i){r=""+i,o.call(this,i)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(i){r=""+i},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function bn(e){e._valueTracker||(e._valueTracker=qe(e))}function oo(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=ve(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function xn(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function vl(e,t){var n=t.checked;return F({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function er(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=ce(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function io(e,t){t=t.checked,t!=null&&Ke(e,"checked",t,!1)}function tr(e,t){io(e,t);var n=ce(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?kn(e,t.type,n):t.hasOwnProperty("defaultValue")&&kn(e,t.type,ce(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function so(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function kn(e,t,n){(t!=="number"||xn(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var nr=Array.isArray;function Gt(e,t,n,r){if(e=e.options,t){t={};for(var l=0;l<n.length;l++)t["$"+n[l]]=!0;for(n=0;n<e.length;n++)l=t.hasOwnProperty("$"+e[n].value),e[n].selected!==l&&(e[n].selected=l),l&&r&&(e[n].defaultSelected=!0)}else{for(n=""+ce(n),t=null,l=0;l<e.length;l++){if(e[l].value===n){e[l].selected=!0,r&&(e[l].defaultSelected=!0);return}t!==null||e[l].disabled||(t=e[l])}t!==null&&(t.selected=!0)}}function yl(e,t){if(t.dangerouslySetInnerHTML!=null)throw Error(c(91));return F({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function Fr(e,t){var n=t.value;if(n==null){if(n=t.children,t=t.defaultValue,n!=null){if(t!=null)throw Error(c(92));if(nr(n)){if(1<n.length)throw Error(c(93));n=n[0]}t=n}t==null&&(t=""),n=t}e._wrapperState={initialValue:ce(n)}}function uo(e,t){var n=ce(t.value),r=ce(t.defaultValue);n!=null&&(n=""+n,n!==e.value&&(e.value=n),t.defaultValue==null&&e.defaultValue!==n&&(e.defaultValue=n)),r!=null&&(e.defaultValue=""+r)}function ln(e){var t=e.textContent;t===e._wrapperState.initialValue&&t!==""&&t!==null&&(e.value=t)}function gl(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function rr(e,t){return e==null||e==="http://www.w3.org/1999/xhtml"?gl(t):e==="http://www.w3.org/2000/svg"&&t==="foreignObject"?"http://www.w3.org/1999/xhtml":e}var lr,Dr=(function(e){return typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(t,n,r,l){MSApp.execUnsafeLocalFunction(function(){return e(t,n,r,l)})}:e})(function(e,t){if(e.namespaceURI!=="http://www.w3.org/2000/svg"||"innerHTML"in e)e.innerHTML=t;else{for(lr=lr||document.createElement("div"),lr.innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=lr.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function En(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var _t={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ao=["Webkit","ms","Moz","O"];Object.keys(_t).forEach(function(e){ao.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_t[t]=_t[e]})});function wl(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||_t.hasOwnProperty(e)&&_t[e]?(""+t).trim():t+"px"}function or(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,l=wl(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,l):e[n]=l}}var Ar=F({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Cn(e,t){if(t){if(Ar[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(c(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(c(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(c(61))}if(t.style!=null&&typeof t.style!="object")throw Error(c(62))}}function Tn(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Nn=null;function ir(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var _n=null,on=null,sn=null;function Ur(e){if(e=Bl(e)){if(typeof _n!="function")throw Error(c(280));var t=e.stateNode;t&&(t=Ro(t),_n(e.stateNode,e.type,t))}}function Br(e){on?sn?sn.push(e):sn=[e]:on=e}function sr(){if(on){var e=on,t=sn;if(sn=on=null,Ur(e),t)for(e=0;e<t.length;e++)Ur(t[e])}}function Vr(e,t){return e(t)}function un(){}var St=!1;function Dt(e,t,n){if(St)return e(t,n);St=!0;try{return Vr(e,t,n)}finally{St=!1,(on!==null||sn!==null)&&(un(),sr())}}function dt(e,t){var n=e.stateNode;if(n===null)return null;var r=Ro(n);if(r===null)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(e=e.type,r=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!r;break e;default:e=!1}if(e)return null;if(n&&typeof n!="function")throw Error(c(231,t,typeof n));return n}var Rt=!1;if(A)try{var At={};Object.defineProperty(At,"passive",{get:function(){Rt=!0}}),window.addEventListener("test",At,At),window.removeEventListener("test",At,At)}catch{Rt=!1}function ur(e,t,n,r,l,o,i,a,f){var g=Array.prototype.slice.call(arguments,3);try{t.apply(n,g)}catch(N){this.onError(N)}}var Xt=!1,Rn=null,an=!1,ar=null,Hr={onError:function(e){Xt=!0,Rn=e}};function Pn(e,t,n,r,l,o,i,a,f){Xt=!1,Rn=null,ur.apply(Hr,arguments)}function Mn(e,t,n,r,l,o,i,a,f){if(Pn.apply(this,arguments),Xt){if(Xt){var g=Rn;Xt=!1,Rn=null}else throw Error(c(198));an||(an=!0,ar=g)}}function be(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do t=e,(t.flags&4098)!==0&&(n=t.return),e=t.return;while(e)}return t.tag===3?n:null}function st(e){if(e.tag===13){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function Sl(e){if(be(e)!==e)throw Error(c(188))}function co(e){var t=e.alternate;if(!t){if(t=be(e),t===null)throw Error(c(188));return t!==e?null:e}for(var n=e,r=t;;){var l=n.return;if(l===null)break;var o=l.alternate;if(o===null){if(r=l.return,r!==null){n=r;continue}break}if(l.child===o.child){for(o=l.child;o;){if(o===n)return Sl(l),e;if(o===r)return Sl(l),t;o=o.sibling}throw Error(c(188))}if(n.return!==r.return)n=l,r=o;else{for(var i=!1,a=l.child;a;){if(a===n){i=!0,n=l,r=o;break}if(a===r){i=!0,r=l,n=o;break}a=a.sibling}if(!i){for(a=o.child;a;){if(a===n){i=!0,n=o,r=l;break}if(a===r){i=!0,r=o,n=l;break}a=a.sibling}if(!i)throw Error(c(189))}}if(n.alternate!==r)throw Error(c(190))}if(n.tag!==3)throw Error(c(188));return n.stateNode.current===n?e:t}function fo(e){return e=co(e),e!==null?cn(e):null}function cn(e){if(e.tag===5||e.tag===6)return e;for(e=e.child;e!==null;){var t=cn(e);if(t!==null)return t;e=e.sibling}return null}var Zt=p.unstable_scheduleCallback,ze=p.unstable_cancelCallback,cr=p.unstable_shouldYield,fr=p.unstable_requestPaint,ge=p.unstable_now,wi=p.unstable_getCurrentPriorityLevel,xl=p.unstable_ImmediatePriority,dr=p.unstable_UserBlockingPriority,pr=p.unstable_NormalPriority,Te=p.unstable_LowPriority,kl=p.unstable_IdlePriority,mr=null,xt=null;function po(e){if(xt&&typeof xt.onCommitFiberRoot=="function")try{xt.onCommitFiberRoot(mr,e,void 0,(e.current.flags&128)===128)}catch{}}var kt=Math.clz32?Math.clz32:El,mo=Math.log,ho=Math.LN2;function El(e){return e>>>=0,e===0?32:31-(mo(e)/ho|0)|0}var fn=64,hr=4194304;function vr(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function In(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,l=e.suspendedLanes,o=e.pingedLanes,i=n&268435455;if(i!==0){var a=i&~l;a!==0?r=vr(a):(o&=i,o!==0&&(r=vr(o)))}else i=n&~l,i!==0?r=vr(i):o!==0&&(r=vr(o));if(r===0)return 0;if(t!==0&&t!==r&&(t&l)===0&&(l=r&-r,o=t&-t,l>=o||l===16&&(o&4194240)!==0))return t;if((r&4)!==0&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0<t;)n=31-kt(t),l=1<<n,r|=e[n],t&=~l;return r}function Si(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return-1;case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function vo(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,l=e.expirationTimes,o=e.pendingLanes;0<o;){var i=31-kt(o),a=1<<i,f=l[i];f===-1?((a&n)===0||(a&r)!==0)&&(l[i]=Si(a,t)):f<=t&&(e.expiredLanes|=a),o&=~a}}function Cl(e){return e=e.pendingLanes&-1073741825,e!==0?e:e&1073741824?1073741824:0}function Tl(){var e=fn;return fn<<=1,(fn&4194240)===0&&(fn=64),e}function Nl(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function jn(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-kt(t),e[t]=n}function xi(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0<n;){var l=31-kt(n),o=1<<l;t[l]=0,r[l]=-1,e[l]=-1,n&=~o}}function _l(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-kt(n),l=1<<r;l&t|e[r]&t&&(e[r]|=t),n&=~l}}var fe=0;function Rl(e){return e&=-e,1<e?4<e?(e&268435455)!==0?16:536870912:4:1}var Pt,Ln,Be,Ut,Pl,yr=!1,gr=[],Jt=null,qt=null,bt=null,wr=new Map,$n=new Map,Bt=[],ki="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function yo(e,t){switch(e){case"focusin":case"focusout":Jt=null;break;case"dragenter":case"dragleave":qt=null;break;case"mouseover":case"mouseout":bt=null;break;case"pointerover":case"pointerout":wr.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":$n.delete(t.pointerId)}}function Sr(e,t,n,r,l,o){return e===null||e.nativeEvent!==o?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:o,targetContainers:[l]},t!==null&&(t=Bl(t),t!==null&&Ln(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,l!==null&&t.indexOf(l)===-1&&t.push(l),e)}function Ei(e,t,n,r,l){switch(t){case"focusin":return Jt=Sr(Jt,e,t,n,r,l),!0;case"dragenter":return qt=Sr(qt,e,t,n,r,l),!0;case"mouseover":return bt=Sr(bt,e,t,n,r,l),!0;case"pointerover":var o=l.pointerId;return wr.set(o,Sr(wr.get(o)||null,e,t,n,r,l)),!0;case"gotpointercapture":return o=l.pointerId,$n.set(o,Sr($n.get(o)||null,e,t,n,r,l)),!0}return!1}function go(e){var t=kr(e.target);if(t!==null){var n=be(t);if(n!==null){if(t=n.tag,t===13){if(t=st(n),t!==null){e.blockedOn=t,Pl(e.priority,function(){Be(n)});return}}else if(t===3&&n.stateNode.current.memoizedState.isDehydrated){e.blockedOn=n.tag===3?n.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Wr(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var n=I(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(n===null){n=e.nativeEvent;var r=new n.constructor(n.type,n);Nn=r,n.target.dispatchEvent(r),Nn=null}else return t=Bl(n),t!==null&&Ln(t),e.blockedOn=n,!1;t.shift()}return!0}function Ml(e,t,n){Wr(e)&&n.delete(t)}function wo(){yr=!1,Jt!==null&&Wr(Jt)&&(Jt=null),qt!==null&&Wr(qt)&&(qt=null),bt!==null&&Wr(bt)&&(bt=null),wr.forEach(Ml),$n.forEach(Ml)}function zn(e,t){e.blockedOn===t&&(e.blockedOn=null,yr||(yr=!0,p.unstable_scheduleCallback(p.unstable_NormalPriority,wo)))}function On(e){function t(l){return zn(l,e)}if(0<gr.length){zn(gr[0],e);for(var n=1;n<gr.length;n++){var r=gr[n];r.blockedOn===e&&(r.blockedOn=null)}}for(Jt!==null&&zn(Jt,e),qt!==null&&zn(qt,e),bt!==null&&zn(bt,e),wr.forEach(t),$n.forEach(t),n=0;n<Bt.length;n++)r=Bt[n],r.blockedOn===e&&(r.blockedOn=null);for(;0<Bt.length&&(n=Bt[0],n.blockedOn===null);)go(n),n.blockedOn===null&&Bt.shift()}var dn=_e.ReactCurrentBatchConfig,xr=!0;function s(e,t,n,r){var l=fe,o=dn.transition;dn.transition=null;try{fe=1,x(e,t,n,r)}finally{fe=l,dn.transition=o}}function E(e,t,n,r){var l=fe,o=dn.transition;dn.transition=null;try{fe=4,x(e,t,n,r)}finally{fe=l,dn.transition=o}}function x(e,t,n,r){if(xr){var l=I(e,t,n,r);if(l===null)Di(e,t,r,j,n),yo(e,r);else if(Ei(l,e,t,n,r))r.stopPropagation();else if(yo(e,r),t&4&&-1<ki.indexOf(e)){for(;l!==null;){var o=Bl(l);if(o!==null&&Pt(o),o=I(e,t,n,r),o===null&&Di(e,t,r,j,n),o===l)break;l=o}l!==null&&r.stopPropagation()}else Di(e,t,r,null,n)}}var j=null;function I(e,t,n,r){if(j=null,e=ir(r),e=kr(e),e!==null)if(t=be(e),t===null)e=null;else if(n=t.tag,n===13){if(e=st(t),e!==null)return e;e=null}else if(n===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return j=e,null}function $(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(wi()){case xl:return 1;case dr:return 4;case pr:case Te:return 16;case kl:return 536870912;default:return 16}default:return 16}}var w=null,D=null,Z=null;function z(){if(Z)return Z;var e,t=D,n=t.length,r,l="value"in w?w.value:w.textContent,o=l.length;for(e=0;e<n&&t[e]===l[e];e++);var i=n-e;for(r=1;r<=i&&t[n-r]===l[o-r];r++);return Z=l.slice(e,1<r?1-r:void 0)}function J(e){var t=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&t===13&&(e=13)):e=t,e===10&&(e=13),32<=e||e===13?e:0}function Ie(){return!0}function Fn(){return!1}function ee(e){function t(n,r,l,o,i){this._reactName=n,this._targetInst=l,this.type=r,this.nativeEvent=o,this.target=i,this.currentTarget=null;for(var a in e)e.hasOwnProperty(a)&&(n=e[a],this[a]=n?n(o):o[a]);return this.isDefaultPrevented=(o.defaultPrevented!=null?o.defaultPrevented:o.returnValue===!1)?Ie:Fn,this.isPropagationStopped=Fn,this}return F(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var n=this.nativeEvent;n&&(n.preventDefault?n.preventDefault():typeof n.returnValue!="unknown"&&(n.returnValue=!1),this.isDefaultPrevented=Ie)},stopPropagation:function(){var n=this.nativeEvent;n&&(n.stopPropagation?n.stopPropagation():typeof n.cancelBubble!="unknown"&&(n.cancelBubble=!0),this.isPropagationStopped=Ie)},persist:function(){},isPersistent:Ie}),t}var Mt={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},pt=ee(Mt),Et=F({},Mt,{view:0,detail:0}),Kr=ee(Et),Ci,Ti,Il,So=F({},Et,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:_i,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==Il&&(Il&&e.type==="mousemove"?(Ci=e.screenX-Il.screenX,Ti=e.screenY-Il.screenY):Ti=Ci=0,Il=e),Ci)},movementY:function(e){return"movementY"in e?e.movementY:Ti}}),cu=ee(So),Uc=F({},So,{dataTransfer:0}),Bc=ee(Uc),Vc=F({},Et,{relatedTarget:0}),Ni=ee(Vc),Hc=F({},Mt,{animationName:0,elapsedTime:0,pseudoElement:0}),Wc=ee(Hc),Kc=F({},Mt,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Qc=ee(Kc),Yc=F({},Mt,{data:0}),fu=ee(Yc),Gc={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Xc={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Zc={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Jc(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=Zc[e])?!!t[e]:!1}function _i(){return Jc}var qc=F({},Et,{key:function(e){if(e.key){var t=Gc[e.key]||e.key;if(t!=="Unidentified")return t}return e.type==="keypress"?(e=J(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?Xc[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:_i,charCode:function(e){return e.type==="keypress"?J(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?J(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),bc=ee(qc),ef=F({},So,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),du=ee(ef),tf=F({},Et,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:_i}),nf=ee(tf),rf=F({},Mt,{propertyName:0,elapsedTime:0,pseudoElement:0}),lf=ee(rf),of=F({},So,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),sf=ee(of),uf=[9,13,27,32],Ri=A&&"CompositionEvent"in window,jl=null;A&&"documentMode"in document&&(jl=document.documentMode);var af=A&&"TextEvent"in window&&!jl,pu=A&&(!Ri||jl&&8<jl&&11>=jl),mu=" ",hu=!1;function vu(e,t){switch(e){case"keyup":return uf.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function yu(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Qr=!1;function cf(e,t){switch(e){case"compositionend":return yu(t);case"keypress":return t.which!==32?null:(hu=!0,mu);case"textInput":return e=t.data,e===mu&&hu?null:e;default:return null}}function ff(e,t){if(Qr)return e==="compositionend"||!Ri&&vu(e,t)?(e=z(),Z=D=w=null,Qr=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return pu&&t.locale!=="ko"?null:t.data;default:return null}}var df={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function gu(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t==="input"?!!df[e.type]:t==="textarea"}function wu(e,t,n,r){Br(r),t=To(t,"onChange"),0<t.length&&(n=new pt("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var Ll=null,$l=null;function pf(e){Fu(e,0)}function xo(e){var t=Jr(e);if(oo(t))return e}function mf(e,t){if(e==="change")return t}var Su=!1;if(A){var Pi;if(A){var Mi="oninput"in document;if(!Mi){var xu=document.createElement("div");xu.setAttribute("oninput","return;"),Mi=typeof xu.oninput=="function"}Pi=Mi}else Pi=!1;Su=Pi&&(!document.documentMode||9<document.documentMode)}function ku(){Ll&&(Ll.detachEvent("onpropertychange",Eu),$l=Ll=null)}function Eu(e){if(e.propertyName==="value"&&xo($l)){var t=[];wu(t,$l,e,ir(e)),Dt(pf,t)}}function hf(e,t,n){e==="focusin"?(ku(),Ll=t,$l=n,Ll.attachEvent("onpropertychange",Eu)):e==="focusout"&&ku()}function vf(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return xo($l)}function yf(e,t){if(e==="click")return xo(t)}function gf(e,t){if(e==="input"||e==="change")return xo(t)}function wf(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var Vt=typeof Object.is=="function"?Object.is:wf;function zl(e,t){if(Vt(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var l=n[r];if(!H.call(t,l)||!Vt(e[l],t[l]))return!1}return!0}function Cu(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Tu(e,t){var n=Cu(e);e=0;for(var r;n;){if(n.nodeType===3){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=Cu(n)}}function Nu(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Nu(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function _u(){for(var e=window,t=xn();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=xn(e.document)}return t}function Ii(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function Sf(e){var t=_u(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&Nu(n.ownerDocument.documentElement,n)){if(r!==null&&Ii(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var l=n.textContent.length,o=Math.min(r.start,l);r=r.end===void 0?o:Math.min(r.end,l),!e.extend&&o>r&&(l=r,r=o,o=l),l=Tu(n,o);var i=Tu(n,r);l&&i&&(e.rangeCount!==1||e.anchorNode!==l.node||e.anchorOffset!==l.offset||e.focusNode!==i.node||e.focusOffset!==i.offset)&&(t=t.createRange(),t.setStart(l.node,l.offset),e.removeAllRanges(),o>r?(e.addRange(t),e.extend(i.node,i.offset)):(t.setEnd(i.node,i.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n<t.length;n++)e=t[n],e.element.scrollLeft=e.left,e.element.scrollTop=e.top}}var xf=A&&"documentMode"in document&&11>=document.documentMode,Yr=null,ji=null,Ol=null,Li=!1;function Ru(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Li||Yr==null||Yr!==xn(r)||(r=Yr,"selectionStart"in r&&Ii(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Ol&&zl(Ol,r)||(Ol=r,r=To(ji,"onSelect"),0<r.length&&(t=new pt("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=Yr)))}function ko(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var Gr={animationend:ko("Animation","AnimationEnd"),animationiteration:ko("Animation","AnimationIteration"),animationstart:ko("Animation","AnimationStart"),transitionend:ko("Transition","TransitionEnd")},$i={},Pu={};A&&(Pu=document.createElement("div").style,"AnimationEvent"in window||(delete Gr.animationend.animation,delete Gr.animationiteration.animation,delete Gr.animationstart.animation),"TransitionEvent"in window||delete Gr.transitionend.transition);function Eo(e){if($i[e])return $i[e];if(!Gr[e])return e;var t=Gr[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in Pu)return $i[e]=t[n];return e}var Mu=Eo("animationend"),Iu=Eo("animationiteration"),ju=Eo("animationstart"),Lu=Eo("transitionend"),$u=new Map,zu="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function Dn(e,t){$u.set(e,t),B(t,[e])}for(var zi=0;zi<zu.length;zi++){var Oi=zu[zi],kf=Oi.toLowerCase(),Ef=Oi[0].toUpperCase()+Oi.slice(1);Dn(kf,"on"+Ef)}Dn(Mu,"onAnimationEnd"),Dn(Iu,"onAnimationIteration"),Dn(ju,"onAnimationStart"),Dn("dblclick","onDoubleClick"),Dn("focusin","onFocus"),Dn("focusout","onBlur"),Dn(Lu,"onTransitionEnd"),_("onMouseEnter",["mouseout","mouseover"]),_("onMouseLeave",["mouseout","mouseover"]),_("onPointerEnter",["pointerout","pointerover"]),_("onPointerLeave",["pointerout","pointerover"]),B("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),B("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),B("onBeforeInput",["compositionend","keypress","textInput","paste"]),B("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),B("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),B("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Fl="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Cf=new Set("cancel close invalid load scroll toggle".split(" ").concat(Fl));function Ou(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,Mn(r,t,void 0,e),e.currentTarget=null}function Fu(e,t){t=(t&4)!==0;for(var n=0;n<e.length;n++){var r=e[n],l=r.event;r=r.listeners;e:{var o=void 0;if(t)for(var i=r.length-1;0<=i;i--){var a=r[i],f=a.instance,g=a.currentTarget;if(a=a.listener,f!==o&&l.isPropagationStopped())break e;Ou(l,a,g),o=f}else for(i=0;i<r.length;i++){if(a=r[i],f=a.instance,g=a.currentTarget,a=a.listener,f!==o&&l.isPropagationStopped())break e;Ou(l,a,g),o=f}}}if(an)throw e=ar,an=!1,ar=null,e}function xe(e,t){var n=t[Wi];n===void 0&&(n=t[Wi]=new Set);var r=e+"__bubble";n.has(r)||(Du(t,e,2,!1),n.add(r))}function Fi(e,t,n){var r=0;t&&(r|=4),Du(n,e,r,t)}var Co="_reactListening"+Math.random().toString(36).slice(2);function Dl(e){if(!e[Co]){e[Co]=!0,O.forEach(function(n){n!=="selectionchange"&&(Cf.has(n)||Fi(n,!1,e),Fi(n,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[Co]||(t[Co]=!0,Fi("selectionchange",!1,t))}}function Du(e,t,n,r){switch($(t)){case 1:var l=s;break;case 4:l=E;break;default:l=x}n=l.bind(null,t,n,e),l=void 0,!Rt||t!=="touchstart"&&t!=="touchmove"&&t!=="wheel"||(l=!0),r?l!==void 0?e.addEventListener(t,n,{capture:!0,passive:l}):e.addEventListener(t,n,!0):l!==void 0?e.addEventListener(t,n,{passive:l}):e.addEventListener(t,n,!1)}function Di(e,t,n,r,l){var o=r;if((t&1)===0&&(t&2)===0&&r!==null)e:for(;;){if(r===null)return;var i=r.tag;if(i===3||i===4){var a=r.stateNode.containerInfo;if(a===l||a.nodeType===8&&a.parentNode===l)break;if(i===4)for(i=r.return;i!==null;){var f=i.tag;if((f===3||f===4)&&(f=i.stateNode.containerInfo,f===l||f.nodeType===8&&f.parentNode===l))return;i=i.return}for(;a!==null;){if(i=kr(a),i===null)return;if(f=i.tag,f===5||f===6){r=o=i;continue e}a=a.parentNode}}r=r.return}Dt(function(){var g=o,N=ir(n),R=[];e:{var T=$u.get(e);if(T!==void 0){var U=pt,W=e;switch(e){case"keypress":if(J(n)===0)break e;case"keydown":case"keyup":U=bc;break;case"focusin":W="focus",U=Ni;break;case"focusout":W="blur",U=Ni;break;case"beforeblur":case"afterblur":U=Ni;break;case"click":if(n.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":U=cu;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":U=Bc;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":U=nf;break;case Mu:case Iu:case ju:U=Wc;break;case Lu:U=lf;break;case"scroll":U=Kr;break;case"wheel":U=sf;break;case"copy":case"cut":case"paste":U=Qc;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":U=du}var K=(t&4)!==0,$e=!K&&e==="scroll",h=K?T!==null?T+"Capture":null:T;K=[];for(var d=g,y;d!==null;){y=d;var M=y.stateNode;if(y.tag===5&&M!==null&&(y=M,h!==null&&(M=dt(d,h),M!=null&&K.push(Al(d,M,y)))),$e)break;d=d.return}0<K.length&&(T=new U(T,W,null,n,N),R.push({event:T,listeners:K}))}}if((t&7)===0){e:{if(T=e==="mouseover"||e==="pointerover",U=e==="mouseout"||e==="pointerout",T&&n!==Nn&&(W=n.relatedTarget||n.fromElement)&&(kr(W)||W[pn]))break e;if((U||T)&&(T=N.window===N?N:(T=N.ownerDocument)?T.defaultView||T.parentWindow:window,U?(W=n.relatedTarget||n.toElement,U=g,W=W?kr(W):null,W!==null&&($e=be(W),W!==$e||W.tag!==5&&W.tag!==6)&&(W=null)):(U=null,W=g),U!==W)){if(K=cu,M="onMouseLeave",h="onMouseEnter",d="mouse",(e==="pointerout"||e==="pointerover")&&(K=du,M="onPointerLeave",h="onPointerEnter",d="pointer"),$e=U==null?T:Jr(U),y=W==null?T:Jr(W),T=new K(M,d+"leave",U,n,N),T.target=$e,T.relatedTarget=y,M=null,kr(N)===g&&(K=new K(h,d+"enter",W,n,N),K.target=y,K.relatedTarget=$e,M=K),$e=M,U&&W)t:{for(K=U,h=W,d=0,y=K;y;y=Xr(y))d++;for(y=0,M=h;M;M=Xr(M))y++;for(;0<d-y;)K=Xr(K),d--;for(;0<y-d;)h=Xr(h),y--;for(;d--;){if(K===h||h!==null&&K===h.alternate)break t;K=Xr(K),h=Xr(h)}K=null}else K=null;U!==null&&Au(R,T,U,K,!1),W!==null&&$e!==null&&Au(R,$e,W,K,!0)}}e:{if(T=g?Jr(g):window,U=T.nodeName&&T.nodeName.toLowerCase(),U==="select"||U==="input"&&T.type==="file")var Q=mf;else if(gu(T))if(Su)Q=gf;else{Q=vf;var G=hf}else(U=T.nodeName)&&U.toLowerCase()==="input"&&(T.type==="checkbox"||T.type==="radio")&&(Q=yf);if(Q&&(Q=Q(e,g))){wu(R,Q,n,N);break e}G&&G(e,T,g),e==="focusout"&&(G=T._wrapperState)&&G.controlled&&T.type==="number"&&kn(T,"number",T.value)}switch(G=g?Jr(g):window,e){case"focusin":(gu(G)||G.contentEditable==="true")&&(Yr=G,ji=g,Ol=null);break;case"focusout":Ol=ji=Yr=null;break;case"mousedown":Li=!0;break;case"contextmenu":case"mouseup":case"dragend":Li=!1,Ru(R,n,N);break;case"selectionchange":if(xf)break;case"keydown":case"keyup":Ru(R,n,N)}var X;if(Ri)e:{switch(e){case"compositionstart":var q="onCompositionStart";break e;case"compositionend":q="onCompositionEnd";break e;case"compositionupdate":q="onCompositionUpdate";break e}q=void 0}else Qr?vu(e,n)&&(q="onCompositionEnd"):e==="keydown"&&n.keyCode===229&&(q="onCompositionStart");q&&(pu&&n.locale!=="ko"&&(Qr||q!=="onCompositionStart"?q==="onCompositionEnd"&&Qr&&(X=z()):(w=N,D="value"in w?w.value:w.textContent,Qr=!0)),G=To(g,q),0<G.length&&(q=new fu(q,e,null,n,N),R.push({event:q,listeners:G}),X?q.data=X:(X=yu(n),X!==null&&(q.data=X)))),(X=af?cf(e,n):ff(e,n))&&(g=To(g,"onBeforeInput"),0<g.length&&(N=new fu("onBeforeInput","beforeinput",null,n,N),R.push({event:N,listeners:g}),N.data=X))}Fu(R,t)})}function Al(e,t,n){return{instance:e,listener:t,currentTarget:n}}function To(e,t){for(var n=t+"Capture",r=[];e!==null;){var l=e,o=l.stateNode;l.tag===5&&o!==null&&(l=o,o=dt(e,n),o!=null&&r.unshift(Al(e,o,l)),o=dt(e,t),o!=null&&r.push(Al(e,o,l))),e=e.return}return r}function Xr(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5);return e||null}function Au(e,t,n,r,l){for(var o=t._reactName,i=[];n!==null&&n!==r;){var a=n,f=a.alternate,g=a.stateNode;if(f!==null&&f===r)break;a.tag===5&&g!==null&&(a=g,l?(f=dt(n,o),f!=null&&i.unshift(Al(n,f,a))):l||(f=dt(n,o),f!=null&&i.push(Al(n,f,a)))),n=n.return}i.length!==0&&e.push({event:t,listeners:i})}var Tf=/\r\n?/g,Nf=/\u0000|\uFFFD/g;function Uu(e){return(typeof e=="string"?e:""+e).replace(Tf,`
|
|
38
|
+
`).replace(Nf,"")}function No(e,t,n){if(t=Uu(t),Uu(e)!==t&&n)throw Error(c(425))}function _o(){}var Ai=null,Ui=null;function Bi(e,t){return e==="textarea"||e==="noscript"||typeof t.children=="string"||typeof t.children=="number"||typeof t.dangerouslySetInnerHTML=="object"&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}var Vi=typeof setTimeout=="function"?setTimeout:void 0,_f=typeof clearTimeout=="function"?clearTimeout:void 0,Bu=typeof Promise=="function"?Promise:void 0,Rf=typeof queueMicrotask=="function"?queueMicrotask:typeof Bu<"u"?function(e){return Bu.resolve(null).then(e).catch(Pf)}:Vi;function Pf(e){setTimeout(function(){throw e})}function Hi(e,t){var n=t,r=0;do{var l=n.nextSibling;if(e.removeChild(n),l&&l.nodeType===8)if(n=l.data,n==="/$"){if(r===0){e.removeChild(l),On(t);return}r--}else n!=="$"&&n!=="$?"&&n!=="$!"||r++;n=l}while(n);On(t)}function An(e){for(;e!=null;e=e.nextSibling){var t=e.nodeType;if(t===1||t===3)break;if(t===8){if(t=e.data,t==="$"||t==="$!"||t==="$?")break;if(t==="/$")return null}}return e}function Vu(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n==="$"||n==="$!"||n==="$?"){if(t===0)return e;t--}else n==="/$"&&t++}e=e.previousSibling}return null}var Zr=Math.random().toString(36).slice(2),en="__reactFiber$"+Zr,Ul="__reactProps$"+Zr,pn="__reactContainer$"+Zr,Wi="__reactEvents$"+Zr,Mf="__reactListeners$"+Zr,If="__reactHandles$"+Zr;function kr(e){var t=e[en];if(t)return t;for(var n=e.parentNode;n;){if(t=n[pn]||n[en]){if(n=t.alternate,t.child!==null||n!==null&&n.child!==null)for(e=Vu(e);e!==null;){if(n=e[en])return n;e=Vu(e)}return t}e=n,n=e.parentNode}return null}function Bl(e){return e=e[en]||e[pn],!e||e.tag!==5&&e.tag!==6&&e.tag!==13&&e.tag!==3?null:e}function Jr(e){if(e.tag===5||e.tag===6)return e.stateNode;throw Error(c(33))}function Ro(e){return e[Ul]||null}var Ki=[],qr=-1;function Un(e){return{current:e}}function ke(e){0>qr||(e.current=Ki[qr],Ki[qr]=null,qr--)}function Se(e,t){qr++,Ki[qr]=e.current,e.current=t}var Bn={},et=Un(Bn),mt=Un(!1),Er=Bn;function br(e,t){var n=e.type.contextTypes;if(!n)return Bn;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var l={},o;for(o in n)l[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=l),l}function ht(e){return e=e.childContextTypes,e!=null}function Po(){ke(mt),ke(et)}function Hu(e,t,n){if(et.current!==Bn)throw Error(c(168));Se(et,t),Se(mt,n)}function Wu(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var l in r)if(!(l in t))throw Error(c(108,de(e)||"Unknown",l));return F({},n,r)}function Mo(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Bn,Er=et.current,Se(et,e),Se(mt,mt.current),!0}function Ku(e,t,n){var r=e.stateNode;if(!r)throw Error(c(169));n?(e=Wu(e,t,Er),r.__reactInternalMemoizedMergedChildContext=e,ke(mt),ke(et),Se(et,e)):ke(mt),Se(mt,n)}var mn=null,Io=!1,Qi=!1;function Qu(e){mn===null?mn=[e]:mn.push(e)}function jf(e){Io=!0,Qu(e)}function Vn(){if(!Qi&&mn!==null){Qi=!0;var e=0,t=fe;try{var n=mn;for(fe=1;e<n.length;e++){var r=n[e];do r=r(!0);while(r!==null)}mn=null,Io=!1}catch(l){throw mn!==null&&(mn=mn.slice(e+1)),Zt(xl,Vn),l}finally{fe=t,Qi=!1}}return null}var el=[],tl=0,jo=null,Lo=0,It=[],jt=0,Cr=null,hn=1,vn="";function Tr(e,t){el[tl++]=Lo,el[tl++]=jo,jo=e,Lo=t}function Yu(e,t,n){It[jt++]=hn,It[jt++]=vn,It[jt++]=Cr,Cr=e;var r=hn;e=vn;var l=32-kt(r)-1;r&=~(1<<l),n+=1;var o=32-kt(t)+l;if(30<o){var i=l-l%5;o=(r&(1<<i)-1).toString(32),r>>=i,l-=i,hn=1<<32-kt(t)+l|n<<l|r,vn=o+e}else hn=1<<o|n<<l|r,vn=e}function Yi(e){e.return!==null&&(Tr(e,1),Yu(e,1,0))}function Gi(e){for(;e===jo;)jo=el[--tl],el[tl]=null,Lo=el[--tl],el[tl]=null;for(;e===Cr;)Cr=It[--jt],It[jt]=null,vn=It[--jt],It[jt]=null,hn=It[--jt],It[jt]=null}var Ct=null,Tt=null,Ne=!1,Ht=null;function Gu(e,t){var n=Ot(5,null,null,0);n.elementType="DELETED",n.stateNode=t,n.return=e,t=e.deletions,t===null?(e.deletions=[n],e.flags|=16):t.push(n)}function Xu(e,t){switch(e.tag){case 5:var n=e.type;return t=t.nodeType!==1||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t,t!==null?(e.stateNode=t,Ct=e,Tt=An(t.firstChild),!0):!1;case 6:return t=e.pendingProps===""||t.nodeType!==3?null:t,t!==null?(e.stateNode=t,Ct=e,Tt=null,!0):!1;case 13:return t=t.nodeType!==8?null:t,t!==null?(n=Cr!==null?{id:hn,overflow:vn}:null,e.memoizedState={dehydrated:t,treeContext:n,retryLane:1073741824},n=Ot(18,null,null,0),n.stateNode=t,n.return=e,e.child=n,Ct=e,Tt=null,!0):!1;default:return!1}}function Xi(e){return(e.mode&1)!==0&&(e.flags&128)===0}function Zi(e){if(Ne){var t=Tt;if(t){var n=t;if(!Xu(e,t)){if(Xi(e))throw Error(c(418));t=An(n.nextSibling);var r=Ct;t&&Xu(e,t)?Gu(r,n):(e.flags=e.flags&-4097|2,Ne=!1,Ct=e)}}else{if(Xi(e))throw Error(c(418));e.flags=e.flags&-4097|2,Ne=!1,Ct=e}}}function Zu(e){for(e=e.return;e!==null&&e.tag!==5&&e.tag!==3&&e.tag!==13;)e=e.return;Ct=e}function $o(e){if(e!==Ct)return!1;if(!Ne)return Zu(e),Ne=!0,!1;var t;if((t=e.tag!==3)&&!(t=e.tag!==5)&&(t=e.type,t=t!=="head"&&t!=="body"&&!Bi(e.type,e.memoizedProps)),t&&(t=Tt)){if(Xi(e))throw Ju(),Error(c(418));for(;t;)Gu(e,t),t=An(t.nextSibling)}if(Zu(e),e.tag===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(c(317));e:{for(e=e.nextSibling,t=0;e;){if(e.nodeType===8){var n=e.data;if(n==="/$"){if(t===0){Tt=An(e.nextSibling);break e}t--}else n!=="$"&&n!=="$!"&&n!=="$?"||t++}e=e.nextSibling}Tt=null}}else Tt=Ct?An(e.stateNode.nextSibling):null;return!0}function Ju(){for(var e=Tt;e;)e=An(e.nextSibling)}function nl(){Tt=Ct=null,Ne=!1}function Ji(e){Ht===null?Ht=[e]:Ht.push(e)}var Lf=_e.ReactCurrentBatchConfig;function Vl(e,t,n){if(e=n.ref,e!==null&&typeof e!="function"&&typeof e!="object"){if(n._owner){if(n=n._owner,n){if(n.tag!==1)throw Error(c(309));var r=n.stateNode}if(!r)throw Error(c(147,e));var l=r,o=""+e;return t!==null&&t.ref!==null&&typeof t.ref=="function"&&t.ref._stringRef===o?t.ref:(t=function(i){var a=l.refs;i===null?delete a[o]:a[o]=i},t._stringRef=o,t)}if(typeof e!="string")throw Error(c(284));if(!n._owner)throw Error(c(290,e))}return e}function zo(e,t){throw e=Object.prototype.toString.call(t),Error(c(31,e==="[object Object]"?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function qu(e){var t=e._init;return t(e._payload)}function bu(e){function t(h,d){if(e){var y=h.deletions;y===null?(h.deletions=[d],h.flags|=16):y.push(d)}}function n(h,d){if(!e)return null;for(;d!==null;)t(h,d),d=d.sibling;return null}function r(h,d){for(h=new Map;d!==null;)d.key!==null?h.set(d.key,d):h.set(d.index,d),d=d.sibling;return h}function l(h,d){return h=Zn(h,d),h.index=0,h.sibling=null,h}function o(h,d,y){return h.index=y,e?(y=h.alternate,y!==null?(y=y.index,y<d?(h.flags|=2,d):y):(h.flags|=2,d)):(h.flags|=1048576,d)}function i(h){return e&&h.alternate===null&&(h.flags|=2),h}function a(h,d,y,M){return d===null||d.tag!==6?(d=Vs(y,h.mode,M),d.return=h,d):(d=l(d,y),d.return=h,d)}function f(h,d,y,M){var Q=y.type;return Q===Fe?N(h,d,y.props.children,M,y.key):d!==null&&(d.elementType===Q||typeof Q=="object"&&Q!==null&&Q.$$typeof===me&&qu(Q)===d.type)?(M=l(d,y.props),M.ref=Vl(h,d,y),M.return=h,M):(M=oi(y.type,y.key,y.props,null,h.mode,M),M.ref=Vl(h,d,y),M.return=h,M)}function g(h,d,y,M){return d===null||d.tag!==4||d.stateNode.containerInfo!==y.containerInfo||d.stateNode.implementation!==y.implementation?(d=Hs(y,h.mode,M),d.return=h,d):(d=l(d,y.children||[]),d.return=h,d)}function N(h,d,y,M,Q){return d===null||d.tag!==7?(d=Lr(y,h.mode,M,Q),d.return=h,d):(d=l(d,y),d.return=h,d)}function R(h,d,y){if(typeof d=="string"&&d!==""||typeof d=="number")return d=Vs(""+d,h.mode,y),d.return=h,d;if(typeof d=="object"&&d!==null){switch(d.$$typeof){case Qe:return y=oi(d.type,d.key,d.props,null,h.mode,y),y.ref=Vl(h,null,d),y.return=h,y;case Ee:return d=Hs(d,h.mode,y),d.return=h,d;case me:var M=d._init;return R(h,M(d._payload),y)}if(nr(d)||P(d))return d=Lr(d,h.mode,y,null),d.return=h,d;zo(h,d)}return null}function T(h,d,y,M){var Q=d!==null?d.key:null;if(typeof y=="string"&&y!==""||typeof y=="number")return Q!==null?null:a(h,d,""+y,M);if(typeof y=="object"&&y!==null){switch(y.$$typeof){case Qe:return y.key===Q?f(h,d,y,M):null;case Ee:return y.key===Q?g(h,d,y,M):null;case me:return Q=y._init,T(h,d,Q(y._payload),M)}if(nr(y)||P(y))return Q!==null?null:N(h,d,y,M,null);zo(h,y)}return null}function U(h,d,y,M,Q){if(typeof M=="string"&&M!==""||typeof M=="number")return h=h.get(y)||null,a(d,h,""+M,Q);if(typeof M=="object"&&M!==null){switch(M.$$typeof){case Qe:return h=h.get(M.key===null?y:M.key)||null,f(d,h,M,Q);case Ee:return h=h.get(M.key===null?y:M.key)||null,g(d,h,M,Q);case me:var G=M._init;return U(h,d,y,G(M._payload),Q)}if(nr(M)||P(M))return h=h.get(y)||null,N(d,h,M,Q,null);zo(d,M)}return null}function W(h,d,y,M){for(var Q=null,G=null,X=d,q=d=0,We=null;X!==null&&q<y.length;q++){X.index>q?(We=X,X=null):We=X.sibling;var he=T(h,X,y[q],M);if(he===null){X===null&&(X=We);break}e&&X&&he.alternate===null&&t(h,X),d=o(he,d,q),G===null?Q=he:G.sibling=he,G=he,X=We}if(q===y.length)return n(h,X),Ne&&Tr(h,q),Q;if(X===null){for(;q<y.length;q++)X=R(h,y[q],M),X!==null&&(d=o(X,d,q),G===null?Q=X:G.sibling=X,G=X);return Ne&&Tr(h,q),Q}for(X=r(h,X);q<y.length;q++)We=U(X,h,q,y[q],M),We!==null&&(e&&We.alternate!==null&&X.delete(We.key===null?q:We.key),d=o(We,d,q),G===null?Q=We:G.sibling=We,G=We);return e&&X.forEach(function(Jn){return t(h,Jn)}),Ne&&Tr(h,q),Q}function K(h,d,y,M){var Q=P(y);if(typeof Q!="function")throw Error(c(150));if(y=Q.call(y),y==null)throw Error(c(151));for(var G=Q=null,X=d,q=d=0,We=null,he=y.next();X!==null&&!he.done;q++,he=y.next()){X.index>q?(We=X,X=null):We=X.sibling;var Jn=T(h,X,he.value,M);if(Jn===null){X===null&&(X=We);break}e&&X&&Jn.alternate===null&&t(h,X),d=o(Jn,d,q),G===null?Q=Jn:G.sibling=Jn,G=Jn,X=We}if(he.done)return n(h,X),Ne&&Tr(h,q),Q;if(X===null){for(;!he.done;q++,he=y.next())he=R(h,he.value,M),he!==null&&(d=o(he,d,q),G===null?Q=he:G.sibling=he,G=he);return Ne&&Tr(h,q),Q}for(X=r(h,X);!he.done;q++,he=y.next())he=U(X,h,q,he.value,M),he!==null&&(e&&he.alternate!==null&&X.delete(he.key===null?q:he.key),d=o(he,d,q),G===null?Q=he:G.sibling=he,G=he);return e&&X.forEach(function(dd){return t(h,dd)}),Ne&&Tr(h,q),Q}function $e(h,d,y,M){if(typeof y=="object"&&y!==null&&y.type===Fe&&y.key===null&&(y=y.props.children),typeof y=="object"&&y!==null){switch(y.$$typeof){case Qe:e:{for(var Q=y.key,G=d;G!==null;){if(G.key===Q){if(Q=y.type,Q===Fe){if(G.tag===7){n(h,G.sibling),d=l(G,y.props.children),d.return=h,h=d;break e}}else if(G.elementType===Q||typeof Q=="object"&&Q!==null&&Q.$$typeof===me&&qu(Q)===G.type){n(h,G.sibling),d=l(G,y.props),d.ref=Vl(h,G,y),d.return=h,h=d;break e}n(h,G);break}else t(h,G);G=G.sibling}y.type===Fe?(d=Lr(y.props.children,h.mode,M,y.key),d.return=h,h=d):(M=oi(y.type,y.key,y.props,null,h.mode,M),M.ref=Vl(h,d,y),M.return=h,h=M)}return i(h);case Ee:e:{for(G=y.key;d!==null;){if(d.key===G)if(d.tag===4&&d.stateNode.containerInfo===y.containerInfo&&d.stateNode.implementation===y.implementation){n(h,d.sibling),d=l(d,y.children||[]),d.return=h,h=d;break e}else{n(h,d);break}else t(h,d);d=d.sibling}d=Hs(y,h.mode,M),d.return=h,h=d}return i(h);case me:return G=y._init,$e(h,d,G(y._payload),M)}if(nr(y))return W(h,d,y,M);if(P(y))return K(h,d,y,M);zo(h,y)}return typeof y=="string"&&y!==""||typeof y=="number"?(y=""+y,d!==null&&d.tag===6?(n(h,d.sibling),d=l(d,y),d.return=h,h=d):(n(h,d),d=Vs(y,h.mode,M),d.return=h,h=d),i(h)):n(h,d)}return $e}var rl=bu(!0),ea=bu(!1),Oo=Un(null),Fo=null,ll=null,qi=null;function bi(){qi=ll=Fo=null}function es(e){var t=Oo.current;ke(Oo),e._currentValue=t}function ts(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,r!==null&&(r.childLanes|=t)):r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function ol(e,t){Fo=e,qi=ll=null,e=e.dependencies,e!==null&&e.firstContext!==null&&((e.lanes&t)!==0&&(vt=!0),e.firstContext=null)}function Lt(e){var t=e._currentValue;if(qi!==e)if(e={context:e,memoizedValue:t,next:null},ll===null){if(Fo===null)throw Error(c(308));ll=e,Fo.dependencies={lanes:0,firstContext:e}}else ll=ll.next=e;return t}var Nr=null;function ns(e){Nr===null?Nr=[e]:Nr.push(e)}function ta(e,t,n,r){var l=t.interleaved;return l===null?(n.next=n,ns(t)):(n.next=l.next,l.next=n),t.interleaved=n,yn(e,r)}function yn(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var Hn=!1;function rs(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function na(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function gn(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function Wn(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,(pe&2)!==0){var l=r.pending;return l===null?t.next=t:(t.next=l.next,l.next=t),r.pending=t,yn(e,n)}return l=r.interleaved,l===null?(t.next=t,ns(r)):(t.next=l.next,l.next=t),r.interleaved=t,yn(e,n)}function Do(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194240)!==0)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,_l(e,n)}}function ra(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var l=null,o=null;if(n=n.firstBaseUpdate,n!==null){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};o===null?l=o=i:o=o.next=i,n=n.next}while(n!==null);o===null?l=o=t:o=o.next=t}else l=o=t;n={baseState:r.baseState,firstBaseUpdate:l,lastBaseUpdate:o,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function Ao(e,t,n,r){var l=e.updateQueue;Hn=!1;var o=l.firstBaseUpdate,i=l.lastBaseUpdate,a=l.shared.pending;if(a!==null){l.shared.pending=null;var f=a,g=f.next;f.next=null,i===null?o=g:i.next=g,i=f;var N=e.alternate;N!==null&&(N=N.updateQueue,a=N.lastBaseUpdate,a!==i&&(a===null?N.firstBaseUpdate=g:a.next=g,N.lastBaseUpdate=f))}if(o!==null){var R=l.baseState;i=0,N=g=f=null,a=o;do{var T=a.lane,U=a.eventTime;if((r&T)===T){N!==null&&(N=N.next={eventTime:U,lane:0,tag:a.tag,payload:a.payload,callback:a.callback,next:null});e:{var W=e,K=a;switch(T=t,U=n,K.tag){case 1:if(W=K.payload,typeof W=="function"){R=W.call(U,R,T);break e}R=W;break e;case 3:W.flags=W.flags&-65537|128;case 0:if(W=K.payload,T=typeof W=="function"?W.call(U,R,T):W,T==null)break e;R=F({},R,T);break e;case 2:Hn=!0}}a.callback!==null&&a.lane!==0&&(e.flags|=64,T=l.effects,T===null?l.effects=[a]:T.push(a))}else U={eventTime:U,lane:T,tag:a.tag,payload:a.payload,callback:a.callback,next:null},N===null?(g=N=U,f=R):N=N.next=U,i|=T;if(a=a.next,a===null){if(a=l.shared.pending,a===null)break;T=a,a=T.next,T.next=null,l.lastBaseUpdate=T,l.shared.pending=null}}while(!0);if(N===null&&(f=R),l.baseState=f,l.firstBaseUpdate=g,l.lastBaseUpdate=N,t=l.shared.interleaved,t!==null){l=t;do i|=l.lane,l=l.next;while(l!==t)}else o===null&&(l.shared.lanes=0);Pr|=i,e.lanes=i,e.memoizedState=R}}function la(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;t<e.length;t++){var r=e[t],l=r.callback;if(l!==null){if(r.callback=null,r=n,typeof l!="function")throw Error(c(191,l));l.call(r)}}}var Hl={},tn=Un(Hl),Wl=Un(Hl),Kl=Un(Hl);function _r(e){if(e===Hl)throw Error(c(174));return e}function ls(e,t){switch(Se(Kl,t),Se(Wl,e),Se(tn,Hl),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:rr(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=rr(t,e)}ke(tn),Se(tn,t)}function il(){ke(tn),ke(Wl),ke(Kl)}function oa(e){_r(Kl.current);var t=_r(tn.current),n=rr(t,e.type);t!==n&&(Se(Wl,e),Se(tn,n))}function os(e){Wl.current===e&&(ke(tn),ke(Wl))}var Re=Un(0);function Uo(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var is=[];function ss(){for(var e=0;e<is.length;e++)is[e]._workInProgressVersionPrimary=null;is.length=0}var Bo=_e.ReactCurrentDispatcher,us=_e.ReactCurrentBatchConfig,Rr=0,Pe=null,Ae=null,Ve=null,Vo=!1,Ql=!1,Yl=0,$f=0;function tt(){throw Error(c(321))}function as(e,t){if(t===null)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!Vt(e[n],t[n]))return!1;return!0}function cs(e,t,n,r,l,o){if(Rr=o,Pe=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Bo.current=e===null||e.memoizedState===null?Df:Af,e=n(r,l),Ql){o=0;do{if(Ql=!1,Yl=0,25<=o)throw Error(c(301));o+=1,Ve=Ae=null,t.updateQueue=null,Bo.current=Uf,e=n(r,l)}while(Ql)}if(Bo.current=Ko,t=Ae!==null&&Ae.next!==null,Rr=0,Ve=Ae=Pe=null,Vo=!1,t)throw Error(c(300));return e}function fs(){var e=Yl!==0;return Yl=0,e}function nn(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Ve===null?Pe.memoizedState=Ve=e:Ve=Ve.next=e,Ve}function $t(){if(Ae===null){var e=Pe.alternate;e=e!==null?e.memoizedState:null}else e=Ae.next;var t=Ve===null?Pe.memoizedState:Ve.next;if(t!==null)Ve=t,Ae=e;else{if(e===null)throw Error(c(310));Ae=e,e={memoizedState:Ae.memoizedState,baseState:Ae.baseState,baseQueue:Ae.baseQueue,queue:Ae.queue,next:null},Ve===null?Pe.memoizedState=Ve=e:Ve=Ve.next=e}return Ve}function Gl(e,t){return typeof t=="function"?t(e):t}function ds(e){var t=$t(),n=t.queue;if(n===null)throw Error(c(311));n.lastRenderedReducer=e;var r=Ae,l=r.baseQueue,o=n.pending;if(o!==null){if(l!==null){var i=l.next;l.next=o.next,o.next=i}r.baseQueue=l=o,n.pending=null}if(l!==null){o=l.next,r=r.baseState;var a=i=null,f=null,g=o;do{var N=g.lane;if((Rr&N)===N)f!==null&&(f=f.next={lane:0,action:g.action,hasEagerState:g.hasEagerState,eagerState:g.eagerState,next:null}),r=g.hasEagerState?g.eagerState:e(r,g.action);else{var R={lane:N,action:g.action,hasEagerState:g.hasEagerState,eagerState:g.eagerState,next:null};f===null?(a=f=R,i=r):f=f.next=R,Pe.lanes|=N,Pr|=N}g=g.next}while(g!==null&&g!==o);f===null?i=r:f.next=a,Vt(r,t.memoizedState)||(vt=!0),t.memoizedState=r,t.baseState=i,t.baseQueue=f,n.lastRenderedState=r}if(e=n.interleaved,e!==null){l=e;do o=l.lane,Pe.lanes|=o,Pr|=o,l=l.next;while(l!==e)}else l===null&&(n.lanes=0);return[t.memoizedState,n.dispatch]}function ps(e){var t=$t(),n=t.queue;if(n===null)throw Error(c(311));n.lastRenderedReducer=e;var r=n.dispatch,l=n.pending,o=t.memoizedState;if(l!==null){n.pending=null;var i=l=l.next;do o=e(o,i.action),i=i.next;while(i!==l);Vt(o,t.memoizedState)||(vt=!0),t.memoizedState=o,t.baseQueue===null&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function ia(){}function sa(e,t){var n=Pe,r=$t(),l=t(),o=!Vt(r.memoizedState,l);if(o&&(r.memoizedState=l,vt=!0),r=r.queue,ms(ca.bind(null,n,r,e),[e]),r.getSnapshot!==t||o||Ve!==null&&Ve.memoizedState.tag&1){if(n.flags|=2048,Xl(9,aa.bind(null,n,r,l,t),void 0,null),He===null)throw Error(c(349));(Rr&30)!==0||ua(n,t,l)}return l}function ua(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},t=Pe.updateQueue,t===null?(t={lastEffect:null,stores:null},Pe.updateQueue=t,t.stores=[e]):(n=t.stores,n===null?t.stores=[e]:n.push(e))}function aa(e,t,n,r){t.value=n,t.getSnapshot=r,fa(t)&&da(e)}function ca(e,t,n){return n(function(){fa(t)&&da(e)})}function fa(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!Vt(e,n)}catch{return!0}}function da(e){var t=yn(e,1);t!==null&&Yt(t,e,1,-1)}function pa(e){var t=nn();return typeof e=="function"&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:Gl,lastRenderedState:e},t.queue=e,e=e.dispatch=Ff.bind(null,Pe,e),[t.memoizedState,e]}function Xl(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},t=Pe.updateQueue,t===null?(t={lastEffect:null,stores:null},Pe.updateQueue=t,t.lastEffect=e.next=e):(n=t.lastEffect,n===null?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e)),e}function ma(){return $t().memoizedState}function Ho(e,t,n,r){var l=nn();Pe.flags|=e,l.memoizedState=Xl(1|t,n,void 0,r===void 0?null:r)}function Wo(e,t,n,r){var l=$t();r=r===void 0?null:r;var o=void 0;if(Ae!==null){var i=Ae.memoizedState;if(o=i.destroy,r!==null&&as(r,i.deps)){l.memoizedState=Xl(t,n,o,r);return}}Pe.flags|=e,l.memoizedState=Xl(1|t,n,o,r)}function ha(e,t){return Ho(8390656,8,e,t)}function ms(e,t){return Wo(2048,8,e,t)}function va(e,t){return Wo(4,2,e,t)}function ya(e,t){return Wo(4,4,e,t)}function ga(e,t){if(typeof t=="function")return e=e(),t(e),function(){t(null)};if(t!=null)return e=e(),t.current=e,function(){t.current=null}}function wa(e,t,n){return n=n!=null?n.concat([e]):null,Wo(4,4,ga.bind(null,t,e),n)}function hs(){}function Sa(e,t){var n=$t();t=t===void 0?null:t;var r=n.memoizedState;return r!==null&&t!==null&&as(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function xa(e,t){var n=$t();t=t===void 0?null:t;var r=n.memoizedState;return r!==null&&t!==null&&as(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function ka(e,t,n){return(Rr&21)===0?(e.baseState&&(e.baseState=!1,vt=!0),e.memoizedState=n):(Vt(n,t)||(n=Tl(),Pe.lanes|=n,Pr|=n,e.baseState=!0),t)}function zf(e,t){var n=fe;fe=n!==0&&4>n?n:4,e(!0);var r=us.transition;us.transition={};try{e(!1),t()}finally{fe=n,us.transition=r}}function Ea(){return $t().memoizedState}function Of(e,t,n){var r=Gn(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Ca(e))Ta(t,n);else if(n=ta(e,t,n,r),n!==null){var l=at();Yt(n,e,r,l),Na(n,t,r)}}function Ff(e,t,n){var r=Gn(e),l={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Ca(e))Ta(t,l);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=t.lastRenderedReducer,o!==null))try{var i=t.lastRenderedState,a=o(i,n);if(l.hasEagerState=!0,l.eagerState=a,Vt(a,i)){var f=t.interleaved;f===null?(l.next=l,ns(t)):(l.next=f.next,f.next=l),t.interleaved=l;return}}catch{}finally{}n=ta(e,t,l,r),n!==null&&(l=at(),Yt(n,e,r,l),Na(n,t,r))}}function Ca(e){var t=e.alternate;return e===Pe||t!==null&&t===Pe}function Ta(e,t){Ql=Vo=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Na(e,t,n){if((n&4194240)!==0){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,_l(e,n)}}var Ko={readContext:Lt,useCallback:tt,useContext:tt,useEffect:tt,useImperativeHandle:tt,useInsertionEffect:tt,useLayoutEffect:tt,useMemo:tt,useReducer:tt,useRef:tt,useState:tt,useDebugValue:tt,useDeferredValue:tt,useTransition:tt,useMutableSource:tt,useSyncExternalStore:tt,useId:tt,unstable_isNewReconciler:!1},Df={readContext:Lt,useCallback:function(e,t){return nn().memoizedState=[e,t===void 0?null:t],e},useContext:Lt,useEffect:ha,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Ho(4194308,4,ga.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Ho(4194308,4,e,t)},useInsertionEffect:function(e,t){return Ho(4,2,e,t)},useMemo:function(e,t){var n=nn();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=nn();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=Of.bind(null,Pe,e),[r.memoizedState,e]},useRef:function(e){var t=nn();return e={current:e},t.memoizedState=e},useState:pa,useDebugValue:hs,useDeferredValue:function(e){return nn().memoizedState=e},useTransition:function(){var e=pa(!1),t=e[0];return e=zf.bind(null,e[1]),nn().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=Pe,l=nn();if(Ne){if(n===void 0)throw Error(c(407));n=n()}else{if(n=t(),He===null)throw Error(c(349));(Rr&30)!==0||ua(r,t,n)}l.memoizedState=n;var o={value:n,getSnapshot:t};return l.queue=o,ha(ca.bind(null,r,o,e),[e]),r.flags|=2048,Xl(9,aa.bind(null,r,o,n,t),void 0,null),n},useId:function(){var e=nn(),t=He.identifierPrefix;if(Ne){var n=vn,r=hn;n=(r&~(1<<32-kt(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Yl++,0<n&&(t+="H"+n.toString(32)),t+=":"}else n=$f++,t=":"+t+"r"+n.toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},Af={readContext:Lt,useCallback:Sa,useContext:Lt,useEffect:ms,useImperativeHandle:wa,useInsertionEffect:va,useLayoutEffect:ya,useMemo:xa,useReducer:ds,useRef:ma,useState:function(){return ds(Gl)},useDebugValue:hs,useDeferredValue:function(e){var t=$t();return ka(t,Ae.memoizedState,e)},useTransition:function(){var e=ds(Gl)[0],t=$t().memoizedState;return[e,t]},useMutableSource:ia,useSyncExternalStore:sa,useId:Ea,unstable_isNewReconciler:!1},Uf={readContext:Lt,useCallback:Sa,useContext:Lt,useEffect:ms,useImperativeHandle:wa,useInsertionEffect:va,useLayoutEffect:ya,useMemo:xa,useReducer:ps,useRef:ma,useState:function(){return ps(Gl)},useDebugValue:hs,useDeferredValue:function(e){var t=$t();return Ae===null?t.memoizedState=e:ka(t,Ae.memoizedState,e)},useTransition:function(){var e=ps(Gl)[0],t=$t().memoizedState;return[e,t]},useMutableSource:ia,useSyncExternalStore:sa,useId:Ea,unstable_isNewReconciler:!1};function Wt(e,t){if(e&&e.defaultProps){t=F({},t),e=e.defaultProps;for(var n in e)t[n]===void 0&&(t[n]=e[n]);return t}return t}function vs(e,t,n,r){t=e.memoizedState,n=n(r,t),n=n==null?t:F({},t,n),e.memoizedState=n,e.lanes===0&&(e.updateQueue.baseState=n)}var Qo={isMounted:function(e){return(e=e._reactInternals)?be(e)===e:!1},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=at(),l=Gn(e),o=gn(r,l);o.payload=t,n!=null&&(o.callback=n),t=Wn(e,o,l),t!==null&&(Yt(t,e,l,r),Do(t,e,l))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=at(),l=Gn(e),o=gn(r,l);o.tag=1,o.payload=t,n!=null&&(o.callback=n),t=Wn(e,o,l),t!==null&&(Yt(t,e,l,r),Do(t,e,l))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=at(),r=Gn(e),l=gn(n,r);l.tag=2,t!=null&&(l.callback=t),t=Wn(e,l,r),t!==null&&(Yt(t,e,r,n),Do(t,e,r))}};function _a(e,t,n,r,l,o,i){return e=e.stateNode,typeof e.shouldComponentUpdate=="function"?e.shouldComponentUpdate(r,o,i):t.prototype&&t.prototype.isPureReactComponent?!zl(n,r)||!zl(l,o):!0}function Ra(e,t,n){var r=!1,l=Bn,o=t.contextType;return typeof o=="object"&&o!==null?o=Lt(o):(l=ht(t)?Er:et.current,r=t.contextTypes,o=(r=r!=null)?br(e,l):Bn),t=new t(n,o),e.memoizedState=t.state!==null&&t.state!==void 0?t.state:null,t.updater=Qo,e.stateNode=t,t._reactInternals=e,r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=l,e.__reactInternalMemoizedMaskedChildContext=o),t}function Pa(e,t,n,r){e=t.state,typeof t.componentWillReceiveProps=="function"&&t.componentWillReceiveProps(n,r),typeof t.UNSAFE_componentWillReceiveProps=="function"&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&Qo.enqueueReplaceState(t,t.state,null)}function ys(e,t,n,r){var l=e.stateNode;l.props=n,l.state=e.memoizedState,l.refs={},rs(e);var o=t.contextType;typeof o=="object"&&o!==null?l.context=Lt(o):(o=ht(t)?Er:et.current,l.context=br(e,o)),l.state=e.memoizedState,o=t.getDerivedStateFromProps,typeof o=="function"&&(vs(e,t,o,n),l.state=e.memoizedState),typeof t.getDerivedStateFromProps=="function"||typeof l.getSnapshotBeforeUpdate=="function"||typeof l.UNSAFE_componentWillMount!="function"&&typeof l.componentWillMount!="function"||(t=l.state,typeof l.componentWillMount=="function"&&l.componentWillMount(),typeof l.UNSAFE_componentWillMount=="function"&&l.UNSAFE_componentWillMount(),t!==l.state&&Qo.enqueueReplaceState(l,l.state,null),Ao(e,n,l,r),l.state=e.memoizedState),typeof l.componentDidMount=="function"&&(e.flags|=4194308)}function sl(e,t){try{var n="",r=t;do n+=ie(r),r=r.return;while(r);var l=n}catch(o){l=`
|
|
39
|
+
Error generating stack: `+o.message+`
|
|
40
|
+
`+o.stack}return{value:e,source:t,stack:l,digest:null}}function gs(e,t,n){return{value:e,source:null,stack:n??null,digest:t??null}}function ws(e,t){try{console.error(t.value)}catch(n){setTimeout(function(){throw n})}}var Bf=typeof WeakMap=="function"?WeakMap:Map;function Ma(e,t,n){n=gn(-1,n),n.tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){bo||(bo=!0,$s=r),ws(e,t)},n}function Ia(e,t,n){n=gn(-1,n),n.tag=3;var r=e.type.getDerivedStateFromError;if(typeof r=="function"){var l=t.value;n.payload=function(){return r(l)},n.callback=function(){ws(e,t)}}var o=e.stateNode;return o!==null&&typeof o.componentDidCatch=="function"&&(n.callback=function(){ws(e,t),typeof r!="function"&&(Qn===null?Qn=new Set([this]):Qn.add(this));var i=t.stack;this.componentDidCatch(t.value,{componentStack:i!==null?i:""})}),n}function ja(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new Bf;var l=new Set;r.set(t,l)}else l=r.get(t),l===void 0&&(l=new Set,r.set(t,l));l.has(n)||(l.add(n),e=td.bind(null,e,t,n),t.then(e,e))}function La(e){do{var t;if((t=e.tag===13)&&(t=e.memoizedState,t=t!==null?t.dehydrated!==null:!0),t)return e;e=e.return}while(e!==null);return null}function $a(e,t,n,r,l){return(e.mode&1)===0?(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,n.tag===1&&(n.alternate===null?n.tag=17:(t=gn(-1,1),t.tag=2,Wn(n,t,1))),n.lanes|=1),e):(e.flags|=65536,e.lanes=l,e)}var Vf=_e.ReactCurrentOwner,vt=!1;function ut(e,t,n,r){t.child=e===null?ea(t,null,n,r):rl(t,e.child,n,r)}function za(e,t,n,r,l){n=n.render;var o=t.ref;return ol(t,l),r=cs(e,t,n,r,o,l),n=fs(),e!==null&&!vt?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~l,wn(e,t,l)):(Ne&&n&&Yi(t),t.flags|=1,ut(e,t,r,l),t.child)}function Oa(e,t,n,r,l){if(e===null){var o=n.type;return typeof o=="function"&&!Bs(o)&&o.defaultProps===void 0&&n.compare===null&&n.defaultProps===void 0?(t.tag=15,t.type=o,Fa(e,t,o,r,l)):(e=oi(n.type,null,r,t,t.mode,l),e.ref=t.ref,e.return=t,t.child=e)}if(o=e.child,(e.lanes&l)===0){var i=o.memoizedProps;if(n=n.compare,n=n!==null?n:zl,n(i,r)&&e.ref===t.ref)return wn(e,t,l)}return t.flags|=1,e=Zn(o,r),e.ref=t.ref,e.return=t,t.child=e}function Fa(e,t,n,r,l){if(e!==null){var o=e.memoizedProps;if(zl(o,r)&&e.ref===t.ref)if(vt=!1,t.pendingProps=r=o,(e.lanes&l)!==0)(e.flags&131072)!==0&&(vt=!0);else return t.lanes=e.lanes,wn(e,t,l)}return Ss(e,t,n,r,l)}function Da(e,t,n){var r=t.pendingProps,l=r.children,o=e!==null?e.memoizedState:null;if(r.mode==="hidden")if((t.mode&1)===0)t.memoizedState={baseLanes:0,cachePool:null,transitions:null},Se(al,Nt),Nt|=n;else{if((n&1073741824)===0)return e=o!==null?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,Se(al,Nt),Nt|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=o!==null?o.baseLanes:n,Se(al,Nt),Nt|=r}else o!==null?(r=o.baseLanes|n,t.memoizedState=null):r=n,Se(al,Nt),Nt|=r;return ut(e,t,l,n),t.child}function Aa(e,t){var n=t.ref;(e===null&&n!==null||e!==null&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Ss(e,t,n,r,l){var o=ht(n)?Er:et.current;return o=br(t,o),ol(t,l),n=cs(e,t,n,r,o,l),r=fs(),e!==null&&!vt?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~l,wn(e,t,l)):(Ne&&r&&Yi(t),t.flags|=1,ut(e,t,n,l),t.child)}function Ua(e,t,n,r,l){if(ht(n)){var o=!0;Mo(t)}else o=!1;if(ol(t,l),t.stateNode===null)Go(e,t),Ra(t,n,r),ys(t,n,r,l),r=!0;else if(e===null){var i=t.stateNode,a=t.memoizedProps;i.props=a;var f=i.context,g=n.contextType;typeof g=="object"&&g!==null?g=Lt(g):(g=ht(n)?Er:et.current,g=br(t,g));var N=n.getDerivedStateFromProps,R=typeof N=="function"||typeof i.getSnapshotBeforeUpdate=="function";R||typeof i.UNSAFE_componentWillReceiveProps!="function"&&typeof i.componentWillReceiveProps!="function"||(a!==r||f!==g)&&Pa(t,i,r,g),Hn=!1;var T=t.memoizedState;i.state=T,Ao(t,r,i,l),f=t.memoizedState,a!==r||T!==f||mt.current||Hn?(typeof N=="function"&&(vs(t,n,N,r),f=t.memoizedState),(a=Hn||_a(t,n,a,r,T,f,g))?(R||typeof i.UNSAFE_componentWillMount!="function"&&typeof i.componentWillMount!="function"||(typeof i.componentWillMount=="function"&&i.componentWillMount(),typeof i.UNSAFE_componentWillMount=="function"&&i.UNSAFE_componentWillMount()),typeof i.componentDidMount=="function"&&(t.flags|=4194308)):(typeof i.componentDidMount=="function"&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=f),i.props=r,i.state=f,i.context=g,r=a):(typeof i.componentDidMount=="function"&&(t.flags|=4194308),r=!1)}else{i=t.stateNode,na(e,t),a=t.memoizedProps,g=t.type===t.elementType?a:Wt(t.type,a),i.props=g,R=t.pendingProps,T=i.context,f=n.contextType,typeof f=="object"&&f!==null?f=Lt(f):(f=ht(n)?Er:et.current,f=br(t,f));var U=n.getDerivedStateFromProps;(N=typeof U=="function"||typeof i.getSnapshotBeforeUpdate=="function")||typeof i.UNSAFE_componentWillReceiveProps!="function"&&typeof i.componentWillReceiveProps!="function"||(a!==R||T!==f)&&Pa(t,i,r,f),Hn=!1,T=t.memoizedState,i.state=T,Ao(t,r,i,l);var W=t.memoizedState;a!==R||T!==W||mt.current||Hn?(typeof U=="function"&&(vs(t,n,U,r),W=t.memoizedState),(g=Hn||_a(t,n,g,r,T,W,f)||!1)?(N||typeof i.UNSAFE_componentWillUpdate!="function"&&typeof i.componentWillUpdate!="function"||(typeof i.componentWillUpdate=="function"&&i.componentWillUpdate(r,W,f),typeof i.UNSAFE_componentWillUpdate=="function"&&i.UNSAFE_componentWillUpdate(r,W,f)),typeof i.componentDidUpdate=="function"&&(t.flags|=4),typeof i.getSnapshotBeforeUpdate=="function"&&(t.flags|=1024)):(typeof i.componentDidUpdate!="function"||a===e.memoizedProps&&T===e.memoizedState||(t.flags|=4),typeof i.getSnapshotBeforeUpdate!="function"||a===e.memoizedProps&&T===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=W),i.props=r,i.state=W,i.context=f,r=g):(typeof i.componentDidUpdate!="function"||a===e.memoizedProps&&T===e.memoizedState||(t.flags|=4),typeof i.getSnapshotBeforeUpdate!="function"||a===e.memoizedProps&&T===e.memoizedState||(t.flags|=1024),r=!1)}return xs(e,t,n,r,o,l)}function xs(e,t,n,r,l,o){Aa(e,t);var i=(t.flags&128)!==0;if(!r&&!i)return l&&Ku(t,n,!1),wn(e,t,o);r=t.stateNode,Vf.current=t;var a=i&&typeof n.getDerivedStateFromError!="function"?null:r.render();return t.flags|=1,e!==null&&i?(t.child=rl(t,e.child,null,o),t.child=rl(t,null,a,o)):ut(e,t,a,o),t.memoizedState=r.state,l&&Ku(t,n,!0),t.child}function Ba(e){var t=e.stateNode;t.pendingContext?Hu(e,t.pendingContext,t.pendingContext!==t.context):t.context&&Hu(e,t.context,!1),ls(e,t.containerInfo)}function Va(e,t,n,r,l){return nl(),Ji(l),t.flags|=256,ut(e,t,n,r),t.child}var ks={dehydrated:null,treeContext:null,retryLane:0};function Es(e){return{baseLanes:e,cachePool:null,transitions:null}}function Ha(e,t,n){var r=t.pendingProps,l=Re.current,o=!1,i=(t.flags&128)!==0,a;if((a=i)||(a=e!==null&&e.memoizedState===null?!1:(l&2)!==0),a?(o=!0,t.flags&=-129):(e===null||e.memoizedState!==null)&&(l|=1),Se(Re,l&1),e===null)return Zi(t),e=t.memoizedState,e!==null&&(e=e.dehydrated,e!==null)?((t.mode&1)===0?t.lanes=1:e.data==="$!"?t.lanes=8:t.lanes=1073741824,null):(i=r.children,e=r.fallback,o?(r=t.mode,o=t.child,i={mode:"hidden",children:i},(r&1)===0&&o!==null?(o.childLanes=0,o.pendingProps=i):o=ii(i,r,0,null),e=Lr(e,r,n,null),o.return=t,e.return=t,o.sibling=e,t.child=o,t.child.memoizedState=Es(n),t.memoizedState=ks,e):Cs(t,i));if(l=e.memoizedState,l!==null&&(a=l.dehydrated,a!==null))return Hf(e,t,i,r,a,l,n);if(o){o=r.fallback,i=t.mode,l=e.child,a=l.sibling;var f={mode:"hidden",children:r.children};return(i&1)===0&&t.child!==l?(r=t.child,r.childLanes=0,r.pendingProps=f,t.deletions=null):(r=Zn(l,f),r.subtreeFlags=l.subtreeFlags&14680064),a!==null?o=Zn(a,o):(o=Lr(o,i,n,null),o.flags|=2),o.return=t,r.return=t,r.sibling=o,t.child=r,r=o,o=t.child,i=e.child.memoizedState,i=i===null?Es(n):{baseLanes:i.baseLanes|n,cachePool:null,transitions:i.transitions},o.memoizedState=i,o.childLanes=e.childLanes&~n,t.memoizedState=ks,r}return o=e.child,e=o.sibling,r=Zn(o,{mode:"visible",children:r.children}),(t.mode&1)===0&&(r.lanes=n),r.return=t,r.sibling=null,e!==null&&(n=t.deletions,n===null?(t.deletions=[e],t.flags|=16):n.push(e)),t.child=r,t.memoizedState=null,r}function Cs(e,t){return t=ii({mode:"visible",children:t},e.mode,0,null),t.return=e,e.child=t}function Yo(e,t,n,r){return r!==null&&Ji(r),rl(t,e.child,null,n),e=Cs(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function Hf(e,t,n,r,l,o,i){if(n)return t.flags&256?(t.flags&=-257,r=gs(Error(c(422))),Yo(e,t,i,r)):t.memoizedState!==null?(t.child=e.child,t.flags|=128,null):(o=r.fallback,l=t.mode,r=ii({mode:"visible",children:r.children},l,0,null),o=Lr(o,l,i,null),o.flags|=2,r.return=t,o.return=t,r.sibling=o,t.child=r,(t.mode&1)!==0&&rl(t,e.child,null,i),t.child.memoizedState=Es(i),t.memoizedState=ks,o);if((t.mode&1)===0)return Yo(e,t,i,null);if(l.data==="$!"){if(r=l.nextSibling&&l.nextSibling.dataset,r)var a=r.dgst;return r=a,o=Error(c(419)),r=gs(o,r,void 0),Yo(e,t,i,r)}if(a=(i&e.childLanes)!==0,vt||a){if(r=He,r!==null){switch(i&-i){case 4:l=2;break;case 16:l=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:l=32;break;case 536870912:l=268435456;break;default:l=0}l=(l&(r.suspendedLanes|i))!==0?0:l,l!==0&&l!==o.retryLane&&(o.retryLane=l,yn(e,l),Yt(r,e,l,-1))}return Us(),r=gs(Error(c(421))),Yo(e,t,i,r)}return l.data==="$?"?(t.flags|=128,t.child=e.child,t=nd.bind(null,e),l._reactRetry=t,null):(e=o.treeContext,Tt=An(l.nextSibling),Ct=t,Ne=!0,Ht=null,e!==null&&(It[jt++]=hn,It[jt++]=vn,It[jt++]=Cr,hn=e.id,vn=e.overflow,Cr=t),t=Cs(t,r.children),t.flags|=4096,t)}function Wa(e,t,n){e.lanes|=t;var r=e.alternate;r!==null&&(r.lanes|=t),ts(e.return,t,n)}function Ts(e,t,n,r,l){var o=e.memoizedState;o===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:l}:(o.isBackwards=t,o.rendering=null,o.renderingStartTime=0,o.last=r,o.tail=n,o.tailMode=l)}function Ka(e,t,n){var r=t.pendingProps,l=r.revealOrder,o=r.tail;if(ut(e,t,r.children,n),r=Re.current,(r&2)!==0)r=r&1|2,t.flags|=128;else{if(e!==null&&(e.flags&128)!==0)e:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&Wa(e,n,t);else if(e.tag===19)Wa(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;e.sibling===null;){if(e.return===null||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(Se(Re,r),(t.mode&1)===0)t.memoizedState=null;else switch(l){case"forwards":for(n=t.child,l=null;n!==null;)e=n.alternate,e!==null&&Uo(e)===null&&(l=n),n=n.sibling;n=l,n===null?(l=t.child,t.child=null):(l=n.sibling,n.sibling=null),Ts(t,!1,l,n,o);break;case"backwards":for(n=null,l=t.child,t.child=null;l!==null;){if(e=l.alternate,e!==null&&Uo(e)===null){t.child=l;break}e=l.sibling,l.sibling=n,n=l,l=e}Ts(t,!0,n,null,o);break;case"together":Ts(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Go(e,t){(t.mode&1)===0&&e!==null&&(e.alternate=null,t.alternate=null,t.flags|=2)}function wn(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),Pr|=t.lanes,(n&t.childLanes)===0)return null;if(e!==null&&t.child!==e.child)throw Error(c(153));if(t.child!==null){for(e=t.child,n=Zn(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=Zn(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function Wf(e,t,n){switch(t.tag){case 3:Ba(t),nl();break;case 5:oa(t);break;case 1:ht(t.type)&&Mo(t);break;case 4:ls(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,l=t.memoizedProps.value;Se(Oo,r._currentValue),r._currentValue=l;break;case 13:if(r=t.memoizedState,r!==null)return r.dehydrated!==null?(Se(Re,Re.current&1),t.flags|=128,null):(n&t.child.childLanes)!==0?Ha(e,t,n):(Se(Re,Re.current&1),e=wn(e,t,n),e!==null?e.sibling:null);Se(Re,Re.current&1);break;case 19:if(r=(n&t.childLanes)!==0,(e.flags&128)!==0){if(r)return Ka(e,t,n);t.flags|=128}if(l=t.memoizedState,l!==null&&(l.rendering=null,l.tail=null,l.lastEffect=null),Se(Re,Re.current),r)break;return null;case 22:case 23:return t.lanes=0,Da(e,t,n)}return wn(e,t,n)}var Qa,Ns,Ya,Ga;Qa=function(e,t){for(var n=t.child;n!==null;){if(n.tag===5||n.tag===6)e.appendChild(n.stateNode);else if(n.tag!==4&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===t)break;for(;n.sibling===null;){if(n.return===null||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ns=function(){},Ya=function(e,t,n,r){var l=e.memoizedProps;if(l!==r){e=t.stateNode,_r(tn.current);var o=null;switch(n){case"input":l=vl(e,l),r=vl(e,r),o=[];break;case"select":l=F({},l,{value:void 0}),r=F({},r,{value:void 0}),o=[];break;case"textarea":l=yl(e,l),r=yl(e,r),o=[];break;default:typeof l.onClick!="function"&&typeof r.onClick=="function"&&(e.onclick=_o)}Cn(n,r);var i;n=null;for(g in l)if(!r.hasOwnProperty(g)&&l.hasOwnProperty(g)&&l[g]!=null)if(g==="style"){var a=l[g];for(i in a)a.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else g!=="dangerouslySetInnerHTML"&&g!=="children"&&g!=="suppressContentEditableWarning"&&g!=="suppressHydrationWarning"&&g!=="autoFocus"&&(k.hasOwnProperty(g)?o||(o=[]):(o=o||[]).push(g,null));for(g in r){var f=r[g];if(a=l!=null?l[g]:void 0,r.hasOwnProperty(g)&&f!==a&&(f!=null||a!=null))if(g==="style")if(a){for(i in a)!a.hasOwnProperty(i)||f&&f.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in f)f.hasOwnProperty(i)&&a[i]!==f[i]&&(n||(n={}),n[i]=f[i])}else n||(o||(o=[]),o.push(g,n)),n=f;else g==="dangerouslySetInnerHTML"?(f=f?f.__html:void 0,a=a?a.__html:void 0,f!=null&&a!==f&&(o=o||[]).push(g,f)):g==="children"?typeof f!="string"&&typeof f!="number"||(o=o||[]).push(g,""+f):g!=="suppressContentEditableWarning"&&g!=="suppressHydrationWarning"&&(k.hasOwnProperty(g)?(f!=null&&g==="onScroll"&&xe("scroll",e),o||a===f||(o=[])):(o=o||[]).push(g,f))}n&&(o=o||[]).push("style",n);var g=o;(t.updateQueue=g)&&(t.flags|=4)}},Ga=function(e,t,n,r){n!==r&&(t.flags|=4)};function Zl(e,t){if(!Ne)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;t!==null;)t.alternate!==null&&(n=t),t=t.sibling;n===null?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;n!==null;)n.alternate!==null&&(r=n),n=n.sibling;r===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:r.sibling=null}}function nt(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,r=0;if(t)for(var l=e.child;l!==null;)n|=l.lanes|l.childLanes,r|=l.subtreeFlags&14680064,r|=l.flags&14680064,l.return=e,l=l.sibling;else for(l=e.child;l!==null;)n|=l.lanes|l.childLanes,r|=l.subtreeFlags,r|=l.flags,l.return=e,l=l.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function Kf(e,t,n){var r=t.pendingProps;switch(Gi(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return nt(t),null;case 1:return ht(t.type)&&Po(),nt(t),null;case 3:return r=t.stateNode,il(),ke(mt),ke(et),ss(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),(e===null||e.child===null)&&($o(t)?t.flags|=4:e===null||e.memoizedState.isDehydrated&&(t.flags&256)===0||(t.flags|=1024,Ht!==null&&(Fs(Ht),Ht=null))),Ns(e,t),nt(t),null;case 5:os(t);var l=_r(Kl.current);if(n=t.type,e!==null&&t.stateNode!=null)Ya(e,t,n,r,l),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(t.stateNode===null)throw Error(c(166));return nt(t),null}if(e=_r(tn.current),$o(t)){r=t.stateNode,n=t.type;var o=t.memoizedProps;switch(r[en]=t,r[Ul]=o,e=(t.mode&1)!==0,n){case"dialog":xe("cancel",r),xe("close",r);break;case"iframe":case"object":case"embed":xe("load",r);break;case"video":case"audio":for(l=0;l<Fl.length;l++)xe(Fl[l],r);break;case"source":xe("error",r);break;case"img":case"image":case"link":xe("error",r),xe("load",r);break;case"details":xe("toggle",r);break;case"input":er(r,o),xe("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!o.multiple},xe("invalid",r);break;case"textarea":Fr(r,o),xe("invalid",r)}Cn(n,o),l=null;for(var i in o)if(o.hasOwnProperty(i)){var a=o[i];i==="children"?typeof a=="string"?r.textContent!==a&&(o.suppressHydrationWarning!==!0&&No(r.textContent,a,e),l=["children",a]):typeof a=="number"&&r.textContent!==""+a&&(o.suppressHydrationWarning!==!0&&No(r.textContent,a,e),l=["children",""+a]):k.hasOwnProperty(i)&&a!=null&&i==="onScroll"&&xe("scroll",r)}switch(n){case"input":bn(r),so(r,o,!0);break;case"textarea":bn(r),ln(r);break;case"select":case"option":break;default:typeof o.onClick=="function"&&(r.onclick=_o)}r=l,t.updateQueue=r,r!==null&&(t.flags|=4)}else{i=l.nodeType===9?l:l.ownerDocument,e==="http://www.w3.org/1999/xhtml"&&(e=gl(n)),e==="http://www.w3.org/1999/xhtml"?n==="script"?(e=i.createElement("div"),e.innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=i.createElement(n,{is:r.is}):(e=i.createElement(n),n==="select"&&(i=e,r.multiple?i.multiple=!0:r.size&&(i.size=r.size))):e=i.createElementNS(e,n),e[en]=t,e[Ul]=r,Qa(e,t,!1,!1),t.stateNode=e;e:{switch(i=Tn(n,r),n){case"dialog":xe("cancel",e),xe("close",e),l=r;break;case"iframe":case"object":case"embed":xe("load",e),l=r;break;case"video":case"audio":for(l=0;l<Fl.length;l++)xe(Fl[l],e);l=r;break;case"source":xe("error",e),l=r;break;case"img":case"image":case"link":xe("error",e),xe("load",e),l=r;break;case"details":xe("toggle",e),l=r;break;case"input":er(e,r),l=vl(e,r),xe("invalid",e);break;case"option":l=r;break;case"select":e._wrapperState={wasMultiple:!!r.multiple},l=F({},r,{value:void 0}),xe("invalid",e);break;case"textarea":Fr(e,r),l=yl(e,r),xe("invalid",e);break;default:l=r}Cn(n,l),a=l;for(o in a)if(a.hasOwnProperty(o)){var f=a[o];o==="style"?or(e,f):o==="dangerouslySetInnerHTML"?(f=f?f.__html:void 0,f!=null&&Dr(e,f)):o==="children"?typeof f=="string"?(n!=="textarea"||f!=="")&&En(e,f):typeof f=="number"&&En(e,""+f):o!=="suppressContentEditableWarning"&&o!=="suppressHydrationWarning"&&o!=="autoFocus"&&(k.hasOwnProperty(o)?f!=null&&o==="onScroll"&&xe("scroll",e):f!=null&&Ke(e,o,f,i))}switch(n){case"input":bn(e),so(e,r,!1);break;case"textarea":bn(e),ln(e);break;case"option":r.value!=null&&e.setAttribute("value",""+ce(r.value));break;case"select":e.multiple=!!r.multiple,o=r.value,o!=null?Gt(e,!!r.multiple,o,!1):r.defaultValue!=null&&Gt(e,!!r.multiple,r.defaultValue,!0);break;default:typeof l.onClick=="function"&&(e.onclick=_o)}switch(n){case"button":case"input":case"select":case"textarea":r=!!r.autoFocus;break e;case"img":r=!0;break e;default:r=!1}}r&&(t.flags|=4)}t.ref!==null&&(t.flags|=512,t.flags|=2097152)}return nt(t),null;case 6:if(e&&t.stateNode!=null)Ga(e,t,e.memoizedProps,r);else{if(typeof r!="string"&&t.stateNode===null)throw Error(c(166));if(n=_r(Kl.current),_r(tn.current),$o(t)){if(r=t.stateNode,n=t.memoizedProps,r[en]=t,(o=r.nodeValue!==n)&&(e=Ct,e!==null))switch(e.tag){case 3:No(r.nodeValue,n,(e.mode&1)!==0);break;case 5:e.memoizedProps.suppressHydrationWarning!==!0&&No(r.nodeValue,n,(e.mode&1)!==0)}o&&(t.flags|=4)}else r=(n.nodeType===9?n:n.ownerDocument).createTextNode(r),r[en]=t,t.stateNode=r}return nt(t),null;case 13:if(ke(Re),r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(Ne&&Tt!==null&&(t.mode&1)!==0&&(t.flags&128)===0)Ju(),nl(),t.flags|=98560,o=!1;else if(o=$o(t),r!==null&&r.dehydrated!==null){if(e===null){if(!o)throw Error(c(318));if(o=t.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(c(317));o[en]=t}else nl(),(t.flags&128)===0&&(t.memoizedState=null),t.flags|=4;nt(t),o=!1}else Ht!==null&&(Fs(Ht),Ht=null),o=!0;if(!o)return t.flags&65536?t:null}return(t.flags&128)!==0?(t.lanes=n,t):(r=r!==null,r!==(e!==null&&e.memoizedState!==null)&&r&&(t.child.flags|=8192,(t.mode&1)!==0&&(e===null||(Re.current&1)!==0?Ue===0&&(Ue=3):Us())),t.updateQueue!==null&&(t.flags|=4),nt(t),null);case 4:return il(),Ns(e,t),e===null&&Dl(t.stateNode.containerInfo),nt(t),null;case 10:return es(t.type._context),nt(t),null;case 17:return ht(t.type)&&Po(),nt(t),null;case 19:if(ke(Re),o=t.memoizedState,o===null)return nt(t),null;if(r=(t.flags&128)!==0,i=o.rendering,i===null)if(r)Zl(o,!1);else{if(Ue!==0||e!==null&&(e.flags&128)!==0)for(e=t.child;e!==null;){if(i=Uo(e),i!==null){for(t.flags|=128,Zl(o,!1),r=i.updateQueue,r!==null&&(t.updateQueue=r,t.flags|=4),t.subtreeFlags=0,r=n,n=t.child;n!==null;)o=n,e=r,o.flags&=14680066,i=o.alternate,i===null?(o.childLanes=0,o.lanes=e,o.child=null,o.subtreeFlags=0,o.memoizedProps=null,o.memoizedState=null,o.updateQueue=null,o.dependencies=null,o.stateNode=null):(o.childLanes=i.childLanes,o.lanes=i.lanes,o.child=i.child,o.subtreeFlags=0,o.deletions=null,o.memoizedProps=i.memoizedProps,o.memoizedState=i.memoizedState,o.updateQueue=i.updateQueue,o.type=i.type,e=i.dependencies,o.dependencies=e===null?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return Se(Re,Re.current&1|2),t.child}e=e.sibling}o.tail!==null&&ge()>cl&&(t.flags|=128,r=!0,Zl(o,!1),t.lanes=4194304)}else{if(!r)if(e=Uo(i),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),Zl(o,!0),o.tail===null&&o.tailMode==="hidden"&&!i.alternate&&!Ne)return nt(t),null}else 2*ge()-o.renderingStartTime>cl&&n!==1073741824&&(t.flags|=128,r=!0,Zl(o,!1),t.lanes=4194304);o.isBackwards?(i.sibling=t.child,t.child=i):(n=o.last,n!==null?n.sibling=i:t.child=i,o.last=i)}return o.tail!==null?(t=o.tail,o.rendering=t,o.tail=t.sibling,o.renderingStartTime=ge(),t.sibling=null,n=Re.current,Se(Re,r?n&1|2:n&1),t):(nt(t),null);case 22:case 23:return As(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&(t.mode&1)!==0?(Nt&1073741824)!==0&&(nt(t),t.subtreeFlags&6&&(t.flags|=8192)):nt(t),null;case 24:return null;case 25:return null}throw Error(c(156,t.tag))}function Qf(e,t){switch(Gi(t),t.tag){case 1:return ht(t.type)&&Po(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return il(),ke(mt),ke(et),ss(),e=t.flags,(e&65536)!==0&&(e&128)===0?(t.flags=e&-65537|128,t):null;case 5:return os(t),null;case 13:if(ke(Re),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(c(340));nl()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return ke(Re),null;case 4:return il(),null;case 10:return es(t.type._context),null;case 22:case 23:return As(),null;case 24:return null;default:return null}}var Xo=!1,rt=!1,Yf=typeof WeakSet=="function"?WeakSet:Set,V=null;function ul(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){je(e,t,r)}else n.current=null}function _s(e,t,n){try{n()}catch(r){je(e,t,r)}}var Xa=!1;function Gf(e,t){if(Ai=xr,e=_u(),Ii(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var l=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break e}var i=0,a=-1,f=-1,g=0,N=0,R=e,T=null;t:for(;;){for(var U;R!==n||l!==0&&R.nodeType!==3||(a=i+l),R!==o||r!==0&&R.nodeType!==3||(f=i+r),R.nodeType===3&&(i+=R.nodeValue.length),(U=R.firstChild)!==null;)T=R,R=U;for(;;){if(R===e)break t;if(T===n&&++g===l&&(a=i),T===o&&++N===r&&(f=i),(U=R.nextSibling)!==null)break;R=T,T=R.parentNode}R=U}n=a===-1||f===-1?null:{start:a,end:f}}else n=null}n=n||{start:0,end:0}}else n=null;for(Ui={focusedElem:e,selectionRange:n},xr=!1,V=t;V!==null;)if(t=V,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,V=e;else for(;V!==null;){t=V;try{var W=t.alternate;if((t.flags&1024)!==0)switch(t.tag){case 0:case 11:case 15:break;case 1:if(W!==null){var K=W.memoizedProps,$e=W.memoizedState,h=t.stateNode,d=h.getSnapshotBeforeUpdate(t.elementType===t.type?K:Wt(t.type,K),$e);h.__reactInternalSnapshotBeforeUpdate=d}break;case 3:var y=t.stateNode.containerInfo;y.nodeType===1?y.textContent="":y.nodeType===9&&y.documentElement&&y.removeChild(y.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(c(163))}}catch(M){je(t,t.return,M)}if(e=t.sibling,e!==null){e.return=t.return,V=e;break}V=t.return}return W=Xa,Xa=!1,W}function Jl(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var l=r=r.next;do{if((l.tag&e)===e){var o=l.destroy;l.destroy=void 0,o!==void 0&&_s(t,n,o)}l=l.next}while(l!==r)}}function Zo(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Rs(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function Za(e){var t=e.alternate;t!==null&&(e.alternate=null,Za(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[en],delete t[Ul],delete t[Wi],delete t[Mf],delete t[If])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function Ja(e){return e.tag===5||e.tag===3||e.tag===4}function qa(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||Ja(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Ps(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=_o));else if(r!==4&&(e=e.child,e!==null))for(Ps(e,t,n),e=e.sibling;e!==null;)Ps(e,t,n),e=e.sibling}function Ms(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Ms(e,t,n),e=e.sibling;e!==null;)Ms(e,t,n),e=e.sibling}var Xe=null,Kt=!1;function Kn(e,t,n){for(n=n.child;n!==null;)ba(e,t,n),n=n.sibling}function ba(e,t,n){if(xt&&typeof xt.onCommitFiberUnmount=="function")try{xt.onCommitFiberUnmount(mr,n)}catch{}switch(n.tag){case 5:rt||ul(n,t);case 6:var r=Xe,l=Kt;Xe=null,Kn(e,t,n),Xe=r,Kt=l,Xe!==null&&(Kt?(e=Xe,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):Xe.removeChild(n.stateNode));break;case 18:Xe!==null&&(Kt?(e=Xe,n=n.stateNode,e.nodeType===8?Hi(e.parentNode,n):e.nodeType===1&&Hi(e,n),On(e)):Hi(Xe,n.stateNode));break;case 4:r=Xe,l=Kt,Xe=n.stateNode.containerInfo,Kt=!0,Kn(e,t,n),Xe=r,Kt=l;break;case 0:case 11:case 14:case 15:if(!rt&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){l=r=r.next;do{var o=l,i=o.destroy;o=o.tag,i!==void 0&&((o&2)!==0||(o&4)!==0)&&_s(n,t,i),l=l.next}while(l!==r)}Kn(e,t,n);break;case 1:if(!rt&&(ul(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(a){je(n,t,a)}Kn(e,t,n);break;case 21:Kn(e,t,n);break;case 22:n.mode&1?(rt=(r=rt)||n.memoizedState!==null,Kn(e,t,n),rt=r):Kn(e,t,n);break;default:Kn(e,t,n)}}function ec(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new Yf),t.forEach(function(r){var l=rd.bind(null,e,r);n.has(r)||(n.add(r),r.then(l,l))})}}function Qt(e,t){var n=t.deletions;if(n!==null)for(var r=0;r<n.length;r++){var l=n[r];try{var o=e,i=t,a=i;e:for(;a!==null;){switch(a.tag){case 5:Xe=a.stateNode,Kt=!1;break e;case 3:Xe=a.stateNode.containerInfo,Kt=!0;break e;case 4:Xe=a.stateNode.containerInfo,Kt=!0;break e}a=a.return}if(Xe===null)throw Error(c(160));ba(o,i,l),Xe=null,Kt=!1;var f=l.alternate;f!==null&&(f.return=null),l.return=null}catch(g){je(l,t,g)}}if(t.subtreeFlags&12854)for(t=t.child;t!==null;)tc(t,e),t=t.sibling}function tc(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(Qt(t,e),rn(e),r&4){try{Jl(3,e,e.return),Zo(3,e)}catch(K){je(e,e.return,K)}try{Jl(5,e,e.return)}catch(K){je(e,e.return,K)}}break;case 1:Qt(t,e),rn(e),r&512&&n!==null&&ul(n,n.return);break;case 5:if(Qt(t,e),rn(e),r&512&&n!==null&&ul(n,n.return),e.flags&32){var l=e.stateNode;try{En(l,"")}catch(K){je(e,e.return,K)}}if(r&4&&(l=e.stateNode,l!=null)){var o=e.memoizedProps,i=n!==null?n.memoizedProps:o,a=e.type,f=e.updateQueue;if(e.updateQueue=null,f!==null)try{a==="input"&&o.type==="radio"&&o.name!=null&&io(l,o),Tn(a,i);var g=Tn(a,o);for(i=0;i<f.length;i+=2){var N=f[i],R=f[i+1];N==="style"?or(l,R):N==="dangerouslySetInnerHTML"?Dr(l,R):N==="children"?En(l,R):Ke(l,N,R,g)}switch(a){case"input":tr(l,o);break;case"textarea":uo(l,o);break;case"select":var T=l._wrapperState.wasMultiple;l._wrapperState.wasMultiple=!!o.multiple;var U=o.value;U!=null?Gt(l,!!o.multiple,U,!1):T!==!!o.multiple&&(o.defaultValue!=null?Gt(l,!!o.multiple,o.defaultValue,!0):Gt(l,!!o.multiple,o.multiple?[]:"",!1))}l[Ul]=o}catch(K){je(e,e.return,K)}}break;case 6:if(Qt(t,e),rn(e),r&4){if(e.stateNode===null)throw Error(c(162));l=e.stateNode,o=e.memoizedProps;try{l.nodeValue=o}catch(K){je(e,e.return,K)}}break;case 3:if(Qt(t,e),rn(e),r&4&&n!==null&&n.memoizedState.isDehydrated)try{On(t.containerInfo)}catch(K){je(e,e.return,K)}break;case 4:Qt(t,e),rn(e);break;case 13:Qt(t,e),rn(e),l=e.child,l.flags&8192&&(o=l.memoizedState!==null,l.stateNode.isHidden=o,!o||l.alternate!==null&&l.alternate.memoizedState!==null||(Ls=ge())),r&4&&ec(e);break;case 22:if(N=n!==null&&n.memoizedState!==null,e.mode&1?(rt=(g=rt)||N,Qt(t,e),rt=g):Qt(t,e),rn(e),r&8192){if(g=e.memoizedState!==null,(e.stateNode.isHidden=g)&&!N&&(e.mode&1)!==0)for(V=e,N=e.child;N!==null;){for(R=V=N;V!==null;){switch(T=V,U=T.child,T.tag){case 0:case 11:case 14:case 15:Jl(4,T,T.return);break;case 1:ul(T,T.return);var W=T.stateNode;if(typeof W.componentWillUnmount=="function"){r=T,n=T.return;try{t=r,W.props=t.memoizedProps,W.state=t.memoizedState,W.componentWillUnmount()}catch(K){je(r,n,K)}}break;case 5:ul(T,T.return);break;case 22:if(T.memoizedState!==null){lc(R);continue}}U!==null?(U.return=T,V=U):lc(R)}N=N.sibling}e:for(N=null,R=e;;){if(R.tag===5){if(N===null){N=R;try{l=R.stateNode,g?(o=l.style,typeof o.setProperty=="function"?o.setProperty("display","none","important"):o.display="none"):(a=R.stateNode,f=R.memoizedProps.style,i=f!=null&&f.hasOwnProperty("display")?f.display:null,a.style.display=wl("display",i))}catch(K){je(e,e.return,K)}}}else if(R.tag===6){if(N===null)try{R.stateNode.nodeValue=g?"":R.memoizedProps}catch(K){je(e,e.return,K)}}else if((R.tag!==22&&R.tag!==23||R.memoizedState===null||R===e)&&R.child!==null){R.child.return=R,R=R.child;continue}if(R===e)break e;for(;R.sibling===null;){if(R.return===null||R.return===e)break e;N===R&&(N=null),R=R.return}N===R&&(N=null),R.sibling.return=R.return,R=R.sibling}}break;case 19:Qt(t,e),rn(e),r&4&&ec(e);break;case 21:break;default:Qt(t,e),rn(e)}}function rn(e){var t=e.flags;if(t&2){try{e:{for(var n=e.return;n!==null;){if(Ja(n)){var r=n;break e}n=n.return}throw Error(c(160))}switch(r.tag){case 5:var l=r.stateNode;r.flags&32&&(En(l,""),r.flags&=-33);var o=qa(e);Ms(e,o,l);break;case 3:case 4:var i=r.stateNode.containerInfo,a=qa(e);Ps(e,a,i);break;default:throw Error(c(161))}}catch(f){je(e,e.return,f)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function Xf(e,t,n){V=e,nc(e)}function nc(e,t,n){for(var r=(e.mode&1)!==0;V!==null;){var l=V,o=l.child;if(l.tag===22&&r){var i=l.memoizedState!==null||Xo;if(!i){var a=l.alternate,f=a!==null&&a.memoizedState!==null||rt;a=Xo;var g=rt;if(Xo=i,(rt=f)&&!g)for(V=l;V!==null;)i=V,f=i.child,i.tag===22&&i.memoizedState!==null?oc(l):f!==null?(f.return=i,V=f):oc(l);for(;o!==null;)V=o,nc(o),o=o.sibling;V=l,Xo=a,rt=g}rc(e)}else(l.subtreeFlags&8772)!==0&&o!==null?(o.return=l,V=o):rc(e)}}function rc(e){for(;V!==null;){var t=V;if((t.flags&8772)!==0){var n=t.alternate;try{if((t.flags&8772)!==0)switch(t.tag){case 0:case 11:case 15:rt||Zo(5,t);break;case 1:var r=t.stateNode;if(t.flags&4&&!rt)if(n===null)r.componentDidMount();else{var l=t.elementType===t.type?n.memoizedProps:Wt(t.type,n.memoizedProps);r.componentDidUpdate(l,n.memoizedState,r.__reactInternalSnapshotBeforeUpdate)}var o=t.updateQueue;o!==null&&la(t,o,r);break;case 3:var i=t.updateQueue;if(i!==null){if(n=null,t.child!==null)switch(t.child.tag){case 5:n=t.child.stateNode;break;case 1:n=t.child.stateNode}la(t,i,n)}break;case 5:var a=t.stateNode;if(n===null&&t.flags&4){n=a;var f=t.memoizedProps;switch(t.type){case"button":case"input":case"select":case"textarea":f.autoFocus&&n.focus();break;case"img":f.src&&(n.src=f.src)}}break;case 6:break;case 4:break;case 12:break;case 13:if(t.memoizedState===null){var g=t.alternate;if(g!==null){var N=g.memoizedState;if(N!==null){var R=N.dehydrated;R!==null&&On(R)}}}break;case 19:case 17:case 21:case 22:case 23:case 25:break;default:throw Error(c(163))}rt||t.flags&512&&Rs(t)}catch(T){je(t,t.return,T)}}if(t===e){V=null;break}if(n=t.sibling,n!==null){n.return=t.return,V=n;break}V=t.return}}function lc(e){for(;V!==null;){var t=V;if(t===e){V=null;break}var n=t.sibling;if(n!==null){n.return=t.return,V=n;break}V=t.return}}function oc(e){for(;V!==null;){var t=V;try{switch(t.tag){case 0:case 11:case 15:var n=t.return;try{Zo(4,t)}catch(f){je(t,n,f)}break;case 1:var r=t.stateNode;if(typeof r.componentDidMount=="function"){var l=t.return;try{r.componentDidMount()}catch(f){je(t,l,f)}}var o=t.return;try{Rs(t)}catch(f){je(t,o,f)}break;case 5:var i=t.return;try{Rs(t)}catch(f){je(t,i,f)}}}catch(f){je(t,t.return,f)}if(t===e){V=null;break}var a=t.sibling;if(a!==null){a.return=t.return,V=a;break}V=t.return}}var Zf=Math.ceil,Jo=_e.ReactCurrentDispatcher,Is=_e.ReactCurrentOwner,zt=_e.ReactCurrentBatchConfig,pe=0,He=null,Oe=null,Ze=0,Nt=0,al=Un(0),Ue=0,ql=null,Pr=0,qo=0,js=0,bl=null,yt=null,Ls=0,cl=1/0,Sn=null,bo=!1,$s=null,Qn=null,ei=!1,Yn=null,ti=0,eo=0,zs=null,ni=-1,ri=0;function at(){return(pe&6)!==0?ge():ni!==-1?ni:ni=ge()}function Gn(e){return(e.mode&1)===0?1:(pe&2)!==0&&Ze!==0?Ze&-Ze:Lf.transition!==null?(ri===0&&(ri=Tl()),ri):(e=fe,e!==0||(e=window.event,e=e===void 0?16:$(e.type)),e)}function Yt(e,t,n,r){if(50<eo)throw eo=0,zs=null,Error(c(185));jn(e,n,r),((pe&2)===0||e!==He)&&(e===He&&((pe&2)===0&&(qo|=n),Ue===4&&Xn(e,Ze)),gt(e,r),n===1&&pe===0&&(t.mode&1)===0&&(cl=ge()+500,Io&&Vn()))}function gt(e,t){var n=e.callbackNode;vo(e,t);var r=In(e,e===He?Ze:0);if(r===0)n!==null&&ze(n),e.callbackNode=null,e.callbackPriority=0;else if(t=r&-r,e.callbackPriority!==t){if(n!=null&&ze(n),t===1)e.tag===0?jf(sc.bind(null,e)):Qu(sc.bind(null,e)),Rf(function(){(pe&6)===0&&Vn()}),n=null;else{switch(Rl(r)){case 1:n=xl;break;case 4:n=dr;break;case 16:n=pr;break;case 536870912:n=kl;break;default:n=pr}n=hc(n,ic.bind(null,e))}e.callbackPriority=t,e.callbackNode=n}}function ic(e,t){if(ni=-1,ri=0,(pe&6)!==0)throw Error(c(327));var n=e.callbackNode;if(fl()&&e.callbackNode!==n)return null;var r=In(e,e===He?Ze:0);if(r===0)return null;if((r&30)!==0||(r&e.expiredLanes)!==0||t)t=li(e,r);else{t=r;var l=pe;pe|=2;var o=ac();(He!==e||Ze!==t)&&(Sn=null,cl=ge()+500,Ir(e,t));do try{bf();break}catch(a){uc(e,a)}while(!0);bi(),Jo.current=o,pe=l,Oe!==null?t=0:(He=null,Ze=0,t=Ue)}if(t!==0){if(t===2&&(l=Cl(e),l!==0&&(r=l,t=Os(e,l))),t===1)throw n=ql,Ir(e,0),Xn(e,r),gt(e,ge()),n;if(t===6)Xn(e,r);else{if(l=e.current.alternate,(r&30)===0&&!Jf(l)&&(t=li(e,r),t===2&&(o=Cl(e),o!==0&&(r=o,t=Os(e,o))),t===1))throw n=ql,Ir(e,0),Xn(e,r),gt(e,ge()),n;switch(e.finishedWork=l,e.finishedLanes=r,t){case 0:case 1:throw Error(c(345));case 2:jr(e,yt,Sn);break;case 3:if(Xn(e,r),(r&130023424)===r&&(t=Ls+500-ge(),10<t)){if(In(e,0)!==0)break;if(l=e.suspendedLanes,(l&r)!==r){at(),e.pingedLanes|=e.suspendedLanes&l;break}e.timeoutHandle=Vi(jr.bind(null,e,yt,Sn),t);break}jr(e,yt,Sn);break;case 4:if(Xn(e,r),(r&4194240)===r)break;for(t=e.eventTimes,l=-1;0<r;){var i=31-kt(r);o=1<<i,i=t[i],i>l&&(l=i),r&=~o}if(r=l,r=ge()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Zf(r/1960))-r,10<r){e.timeoutHandle=Vi(jr.bind(null,e,yt,Sn),r);break}jr(e,yt,Sn);break;case 5:jr(e,yt,Sn);break;default:throw Error(c(329))}}}return gt(e,ge()),e.callbackNode===n?ic.bind(null,e):null}function Os(e,t){var n=bl;return e.current.memoizedState.isDehydrated&&(Ir(e,t).flags|=256),e=li(e,t),e!==2&&(t=yt,yt=n,t!==null&&Fs(t)),e}function Fs(e){yt===null?yt=e:yt.push.apply(yt,e)}function Jf(e){for(var t=e;;){if(t.flags&16384){var n=t.updateQueue;if(n!==null&&(n=n.stores,n!==null))for(var r=0;r<n.length;r++){var l=n[r],o=l.getSnapshot;l=l.value;try{if(!Vt(o(),l))return!1}catch{return!1}}}if(n=t.child,t.subtreeFlags&16384&&n!==null)n.return=t,t=n;else{if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}function Xn(e,t){for(t&=~js,t&=~qo,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-kt(t),r=1<<n;e[n]=-1,t&=~r}}function sc(e){if((pe&6)!==0)throw Error(c(327));fl();var t=In(e,0);if((t&1)===0)return gt(e,ge()),null;var n=li(e,t);if(e.tag!==0&&n===2){var r=Cl(e);r!==0&&(t=r,n=Os(e,r))}if(n===1)throw n=ql,Ir(e,0),Xn(e,t),gt(e,ge()),n;if(n===6)throw Error(c(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,jr(e,yt,Sn),gt(e,ge()),null}function Ds(e,t){var n=pe;pe|=1;try{return e(t)}finally{pe=n,pe===0&&(cl=ge()+500,Io&&Vn())}}function Mr(e){Yn!==null&&Yn.tag===0&&(pe&6)===0&&fl();var t=pe;pe|=1;var n=zt.transition,r=fe;try{if(zt.transition=null,fe=1,e)return e()}finally{fe=r,zt.transition=n,pe=t,(pe&6)===0&&Vn()}}function As(){Nt=al.current,ke(al)}function Ir(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(n!==-1&&(e.timeoutHandle=-1,_f(n)),Oe!==null)for(n=Oe.return;n!==null;){var r=n;switch(Gi(r),r.tag){case 1:r=r.type.childContextTypes,r!=null&&Po();break;case 3:il(),ke(mt),ke(et),ss();break;case 5:os(r);break;case 4:il();break;case 13:ke(Re);break;case 19:ke(Re);break;case 10:es(r.type._context);break;case 22:case 23:As()}n=n.return}if(He=e,Oe=e=Zn(e.current,null),Ze=Nt=t,Ue=0,ql=null,js=qo=Pr=0,yt=bl=null,Nr!==null){for(t=0;t<Nr.length;t++)if(n=Nr[t],r=n.interleaved,r!==null){n.interleaved=null;var l=r.next,o=n.pending;if(o!==null){var i=o.next;o.next=l,r.next=i}n.pending=r}Nr=null}return e}function uc(e,t){do{var n=Oe;try{if(bi(),Bo.current=Ko,Vo){for(var r=Pe.memoizedState;r!==null;){var l=r.queue;l!==null&&(l.pending=null),r=r.next}Vo=!1}if(Rr=0,Ve=Ae=Pe=null,Ql=!1,Yl=0,Is.current=null,n===null||n.return===null){Ue=1,ql=t,Oe=null;break}e:{var o=e,i=n.return,a=n,f=t;if(t=Ze,a.flags|=32768,f!==null&&typeof f=="object"&&typeof f.then=="function"){var g=f,N=a,R=N.tag;if((N.mode&1)===0&&(R===0||R===11||R===15)){var T=N.alternate;T?(N.updateQueue=T.updateQueue,N.memoizedState=T.memoizedState,N.lanes=T.lanes):(N.updateQueue=null,N.memoizedState=null)}var U=La(i);if(U!==null){U.flags&=-257,$a(U,i,a,o,t),U.mode&1&&ja(o,g,t),t=U,f=g;var W=t.updateQueue;if(W===null){var K=new Set;K.add(f),t.updateQueue=K}else W.add(f);break e}else{if((t&1)===0){ja(o,g,t),Us();break e}f=Error(c(426))}}else if(Ne&&a.mode&1){var $e=La(i);if($e!==null){($e.flags&65536)===0&&($e.flags|=256),$a($e,i,a,o,t),Ji(sl(f,a));break e}}o=f=sl(f,a),Ue!==4&&(Ue=2),bl===null?bl=[o]:bl.push(o),o=i;do{switch(o.tag){case 3:o.flags|=65536,t&=-t,o.lanes|=t;var h=Ma(o,f,t);ra(o,h);break e;case 1:a=f;var d=o.type,y=o.stateNode;if((o.flags&128)===0&&(typeof d.getDerivedStateFromError=="function"||y!==null&&typeof y.componentDidCatch=="function"&&(Qn===null||!Qn.has(y)))){o.flags|=65536,t&=-t,o.lanes|=t;var M=Ia(o,a,t);ra(o,M);break e}}o=o.return}while(o!==null)}fc(n)}catch(Q){t=Q,Oe===n&&n!==null&&(Oe=n=n.return);continue}break}while(!0)}function ac(){var e=Jo.current;return Jo.current=Ko,e===null?Ko:e}function Us(){(Ue===0||Ue===3||Ue===2)&&(Ue=4),He===null||(Pr&268435455)===0&&(qo&268435455)===0||Xn(He,Ze)}function li(e,t){var n=pe;pe|=2;var r=ac();(He!==e||Ze!==t)&&(Sn=null,Ir(e,t));do try{qf();break}catch(l){uc(e,l)}while(!0);if(bi(),pe=n,Jo.current=r,Oe!==null)throw Error(c(261));return He=null,Ze=0,Ue}function qf(){for(;Oe!==null;)cc(Oe)}function bf(){for(;Oe!==null&&!cr();)cc(Oe)}function cc(e){var t=mc(e.alternate,e,Nt);e.memoizedProps=e.pendingProps,t===null?fc(e):Oe=t,Is.current=null}function fc(e){var t=e;do{var n=t.alternate;if(e=t.return,(t.flags&32768)===0){if(n=Kf(n,t,Nt),n!==null){Oe=n;return}}else{if(n=Qf(n,t),n!==null){n.flags&=32767,Oe=n;return}if(e!==null)e.flags|=32768,e.subtreeFlags=0,e.deletions=null;else{Ue=6,Oe=null;return}}if(t=t.sibling,t!==null){Oe=t;return}Oe=t=e}while(t!==null);Ue===0&&(Ue=5)}function jr(e,t,n){var r=fe,l=zt.transition;try{zt.transition=null,fe=1,ed(e,t,n,r)}finally{zt.transition=l,fe=r}return null}function ed(e,t,n,r){do fl();while(Yn!==null);if((pe&6)!==0)throw Error(c(327));n=e.finishedWork;var l=e.finishedLanes;if(n===null)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(c(177));e.callbackNode=null,e.callbackPriority=0;var o=n.lanes|n.childLanes;if(xi(e,o),e===He&&(Oe=He=null,Ze=0),(n.subtreeFlags&2064)===0&&(n.flags&2064)===0||ei||(ei=!0,hc(pr,function(){return fl(),null})),o=(n.flags&15990)!==0,(n.subtreeFlags&15990)!==0||o){o=zt.transition,zt.transition=null;var i=fe;fe=1;var a=pe;pe|=4,Is.current=null,Gf(e,n),tc(n,e),Sf(Ui),xr=!!Ai,Ui=Ai=null,e.current=n,Xf(n),fr(),pe=a,fe=i,zt.transition=o}else e.current=n;if(ei&&(ei=!1,Yn=e,ti=l),o=e.pendingLanes,o===0&&(Qn=null),po(n.stateNode),gt(e,ge()),t!==null)for(r=e.onRecoverableError,n=0;n<t.length;n++)l=t[n],r(l.value,{componentStack:l.stack,digest:l.digest});if(bo)throw bo=!1,e=$s,$s=null,e;return(ti&1)!==0&&e.tag!==0&&fl(),o=e.pendingLanes,(o&1)!==0?e===zs?eo++:(eo=0,zs=e):eo=0,Vn(),null}function fl(){if(Yn!==null){var e=Rl(ti),t=zt.transition,n=fe;try{if(zt.transition=null,fe=16>e?16:e,Yn===null)var r=!1;else{if(e=Yn,Yn=null,ti=0,(pe&6)!==0)throw Error(c(331));var l=pe;for(pe|=4,V=e.current;V!==null;){var o=V,i=o.child;if((V.flags&16)!==0){var a=o.deletions;if(a!==null){for(var f=0;f<a.length;f++){var g=a[f];for(V=g;V!==null;){var N=V;switch(N.tag){case 0:case 11:case 15:Jl(8,N,o)}var R=N.child;if(R!==null)R.return=N,V=R;else for(;V!==null;){N=V;var T=N.sibling,U=N.return;if(Za(N),N===g){V=null;break}if(T!==null){T.return=U,V=T;break}V=U}}}var W=o.alternate;if(W!==null){var K=W.child;if(K!==null){W.child=null;do{var $e=K.sibling;K.sibling=null,K=$e}while(K!==null)}}V=o}}if((o.subtreeFlags&2064)!==0&&i!==null)i.return=o,V=i;else e:for(;V!==null;){if(o=V,(o.flags&2048)!==0)switch(o.tag){case 0:case 11:case 15:Jl(9,o,o.return)}var h=o.sibling;if(h!==null){h.return=o.return,V=h;break e}V=o.return}}var d=e.current;for(V=d;V!==null;){i=V;var y=i.child;if((i.subtreeFlags&2064)!==0&&y!==null)y.return=i,V=y;else e:for(i=d;V!==null;){if(a=V,(a.flags&2048)!==0)try{switch(a.tag){case 0:case 11:case 15:Zo(9,a)}}catch(Q){je(a,a.return,Q)}if(a===i){V=null;break e}var M=a.sibling;if(M!==null){M.return=a.return,V=M;break e}V=a.return}}if(pe=l,Vn(),xt&&typeof xt.onPostCommitFiberRoot=="function")try{xt.onPostCommitFiberRoot(mr,e)}catch{}r=!0}return r}finally{fe=n,zt.transition=t}}return!1}function dc(e,t,n){t=sl(n,t),t=Ma(e,t,1),e=Wn(e,t,1),t=at(),e!==null&&(jn(e,1,t),gt(e,t))}function je(e,t,n){if(e.tag===3)dc(e,e,n);else for(;t!==null;){if(t.tag===3){dc(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError=="function"||typeof r.componentDidCatch=="function"&&(Qn===null||!Qn.has(r))){e=sl(n,e),e=Ia(t,e,1),t=Wn(t,e,1),e=at(),t!==null&&(jn(t,1,e),gt(t,e));break}}t=t.return}}function td(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),t=at(),e.pingedLanes|=e.suspendedLanes&n,He===e&&(Ze&n)===n&&(Ue===4||Ue===3&&(Ze&130023424)===Ze&&500>ge()-Ls?Ir(e,0):js|=n),gt(e,t)}function pc(e,t){t===0&&((e.mode&1)===0?t=1:(t=hr,hr<<=1,(hr&130023424)===0&&(hr=4194304)));var n=at();e=yn(e,t),e!==null&&(jn(e,t,n),gt(e,n))}function nd(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),pc(e,n)}function rd(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,l=e.memoizedState;l!==null&&(n=l.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(c(314))}r!==null&&r.delete(t),pc(e,n)}var mc;mc=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||mt.current)vt=!0;else{if((e.lanes&n)===0&&(t.flags&128)===0)return vt=!1,Wf(e,t,n);vt=(e.flags&131072)!==0}else vt=!1,Ne&&(t.flags&1048576)!==0&&Yu(t,Lo,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Go(e,t),e=t.pendingProps;var l=br(t,et.current);ol(t,n),l=cs(null,t,r,e,l,n);var o=fs();return t.flags|=1,typeof l=="object"&&l!==null&&typeof l.render=="function"&&l.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,ht(r)?(o=!0,Mo(t)):o=!1,t.memoizedState=l.state!==null&&l.state!==void 0?l.state:null,rs(t),l.updater=Qo,t.stateNode=l,l._reactInternals=t,ys(t,r,e,n),t=xs(null,t,r,!0,o,n)):(t.tag=0,Ne&&o&&Yi(t),ut(null,t,l,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Go(e,t),e=t.pendingProps,l=r._init,r=l(r._payload),t.type=r,l=t.tag=od(r),e=Wt(r,e),l){case 0:t=Ss(null,t,r,e,n);break e;case 1:t=Ua(null,t,r,e,n);break e;case 11:t=za(null,t,r,e,n);break e;case 14:t=Oa(null,t,r,Wt(r.type,e),n);break e}throw Error(c(306,r,""))}return t;case 0:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Wt(r,l),Ss(e,t,r,l,n);case 1:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Wt(r,l),Ua(e,t,r,l,n);case 3:e:{if(Ba(t),e===null)throw Error(c(387));r=t.pendingProps,o=t.memoizedState,l=o.element,na(e,t),Ao(t,r,null,n);var i=t.memoizedState;if(r=i.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:i.cache,pendingSuspenseBoundaries:i.pendingSuspenseBoundaries,transitions:i.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){l=sl(Error(c(423)),t),t=Va(e,t,r,n,l);break e}else if(r!==l){l=sl(Error(c(424)),t),t=Va(e,t,r,n,l);break e}else for(Tt=An(t.stateNode.containerInfo.firstChild),Ct=t,Ne=!0,Ht=null,n=ea(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(nl(),r===l){t=wn(e,t,n);break e}ut(e,t,r,n)}t=t.child}return t;case 5:return oa(t),e===null&&Zi(t),r=t.type,l=t.pendingProps,o=e!==null?e.memoizedProps:null,i=l.children,Bi(r,l)?i=null:o!==null&&Bi(r,o)&&(t.flags|=32),Aa(e,t),ut(e,t,i,n),t.child;case 6:return e===null&&Zi(t),null;case 13:return Ha(e,t,n);case 4:return ls(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=rl(t,null,r,n):ut(e,t,r,n),t.child;case 11:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Wt(r,l),za(e,t,r,l,n);case 7:return ut(e,t,t.pendingProps,n),t.child;case 8:return ut(e,t,t.pendingProps.children,n),t.child;case 12:return ut(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,l=t.pendingProps,o=t.memoizedProps,i=l.value,Se(Oo,r._currentValue),r._currentValue=i,o!==null)if(Vt(o.value,i)){if(o.children===l.children&&!mt.current){t=wn(e,t,n);break e}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var a=o.dependencies;if(a!==null){i=o.child;for(var f=a.firstContext;f!==null;){if(f.context===r){if(o.tag===1){f=gn(-1,n&-n),f.tag=2;var g=o.updateQueue;if(g!==null){g=g.shared;var N=g.pending;N===null?f.next=f:(f.next=N.next,N.next=f),g.pending=f}}o.lanes|=n,f=o.alternate,f!==null&&(f.lanes|=n),ts(o.return,n,t),a.lanes|=n;break}f=f.next}}else if(o.tag===10)i=o.type===t.type?null:o.child;else if(o.tag===18){if(i=o.return,i===null)throw Error(c(341));i.lanes|=n,a=i.alternate,a!==null&&(a.lanes|=n),ts(i,n,t),i=o.sibling}else i=o.child;if(i!==null)i.return=o;else for(i=o;i!==null;){if(i===t){i=null;break}if(o=i.sibling,o!==null){o.return=i.return,i=o;break}i=i.return}o=i}ut(e,t,l.children,n),t=t.child}return t;case 9:return l=t.type,r=t.pendingProps.children,ol(t,n),l=Lt(l),r=r(l),t.flags|=1,ut(e,t,r,n),t.child;case 14:return r=t.type,l=Wt(r,t.pendingProps),l=Wt(r.type,l),Oa(e,t,r,l,n);case 15:return Fa(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Wt(r,l),Go(e,t),t.tag=1,ht(r)?(e=!0,Mo(t)):e=!1,ol(t,n),Ra(t,r,l),ys(t,r,l,n),xs(null,t,r,!0,e,n);case 19:return Ka(e,t,n);case 22:return Da(e,t,n)}throw Error(c(156,t.tag))};function hc(e,t){return Zt(e,t)}function ld(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Ot(e,t,n,r){return new ld(e,t,n,r)}function Bs(e){return e=e.prototype,!(!e||!e.isReactComponent)}function od(e){if(typeof e=="function")return Bs(e)?1:0;if(e!=null){if(e=e.$$typeof,e===Ye)return 11;if(e===ft)return 14}return 2}function Zn(e,t){var n=e.alternate;return n===null?(n=Ot(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function oi(e,t,n,r,l,o){var i=2;if(r=e,typeof e=="function")Bs(e)&&(i=1);else if(typeof e=="string")i=5;else e:switch(e){case Fe:return Lr(n.children,l,o,t);case De:i=8,l|=8;break;case it:return e=Ot(12,n,t,l|2),e.elementType=it,e.lanes=o,e;case Ge:return e=Ot(13,n,t,l),e.elementType=Ge,e.lanes=o,e;case Ce:return e=Ot(19,n,t,l),e.elementType=Ce,e.lanes=o,e;case we:return ii(n,l,o,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case ct:i=10;break e;case Je:i=9;break e;case Ye:i=11;break e;case ft:i=14;break e;case me:i=16,r=null;break e}throw Error(c(130,e==null?e:typeof e,""))}return t=Ot(i,n,t,l),t.elementType=e,t.type=r,t.lanes=o,t}function Lr(e,t,n,r){return e=Ot(7,e,r,t),e.lanes=n,e}function ii(e,t,n,r){return e=Ot(22,e,r,t),e.elementType=we,e.lanes=n,e.stateNode={isHidden:!1},e}function Vs(e,t,n){return e=Ot(6,e,null,t),e.lanes=n,e}function Hs(e,t,n){return t=Ot(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function id(e,t,n,r,l){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Nl(0),this.expirationTimes=Nl(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Nl(0),this.identifierPrefix=r,this.onRecoverableError=l,this.mutableSourceEagerHydrationData=null}function Ws(e,t,n,r,l,o,i,a,f){return e=new id(e,t,n,a,f),t===1?(t=1,o===!0&&(t|=8)):t=0,o=Ot(3,null,null,t),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},rs(o),e}function sd(e,t,n){var r=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:Ee,key:r==null?null:""+r,children:e,containerInfo:t,implementation:n}}function vc(e){if(!e)return Bn;e=e._reactInternals;e:{if(be(e)!==e||e.tag!==1)throw Error(c(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(ht(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(t!==null);throw Error(c(171))}if(e.tag===1){var n=e.type;if(ht(n))return Wu(e,n,t)}return t}function yc(e,t,n,r,l,o,i,a,f){return e=Ws(n,r,!0,e,l,o,i,a,f),e.context=vc(null),n=e.current,r=at(),l=Gn(n),o=gn(r,l),o.callback=t??null,Wn(n,o,l),e.current.lanes=l,jn(e,l,r),gt(e,r),e}function si(e,t,n,r){var l=t.current,o=at(),i=Gn(l);return n=vc(n),t.context===null?t.context=n:t.pendingContext=n,t=gn(o,i),t.payload={element:e},r=r===void 0?null:r,r!==null&&(t.callback=r),e=Wn(l,t,i),e!==null&&(Yt(e,l,i,o),Do(e,l,i)),i}function ui(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:return e.child.stateNode;default:return e.child.stateNode}}function gc(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var n=e.retryLane;e.retryLane=n!==0&&n<t?n:t}}function Ks(e,t){gc(e,t),(e=e.alternate)&&gc(e,t)}function ud(){return null}var wc=typeof reportError=="function"?reportError:function(e){console.error(e)};function Qs(e){this._internalRoot=e}ai.prototype.render=Qs.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error(c(409));si(e,t,null,null)},ai.prototype.unmount=Qs.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;Mr(function(){si(null,e,null,null)}),t[pn]=null}};function ai(e){this._internalRoot=e}ai.prototype.unstable_scheduleHydration=function(e){if(e){var t=Ut();e={blockedOn:null,target:e,priority:t};for(var n=0;n<Bt.length&&t!==0&&t<Bt[n].priority;n++);Bt.splice(n,0,e),n===0&&go(e)}};function Ys(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function ci(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11&&(e.nodeType!==8||e.nodeValue!==" react-mount-point-unstable "))}function Sc(){}function ad(e,t,n,r,l){if(l){if(typeof r=="function"){var o=r;r=function(){var g=ui(i);o.call(g)}}var i=yc(t,r,e,0,null,!1,!1,"",Sc);return e._reactRootContainer=i,e[pn]=i.current,Dl(e.nodeType===8?e.parentNode:e),Mr(),i}for(;l=e.lastChild;)e.removeChild(l);if(typeof r=="function"){var a=r;r=function(){var g=ui(f);a.call(g)}}var f=Ws(e,0,!1,null,null,!1,!1,"",Sc);return e._reactRootContainer=f,e[pn]=f.current,Dl(e.nodeType===8?e.parentNode:e),Mr(function(){si(t,f,n,r)}),f}function fi(e,t,n,r,l){var o=n._reactRootContainer;if(o){var i=o;if(typeof l=="function"){var a=l;l=function(){var f=ui(i);a.call(f)}}si(t,i,e,l)}else i=ad(n,t,e,l,r);return ui(i)}Pt=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var n=vr(t.pendingLanes);n!==0&&(_l(t,n|1),gt(t,ge()),(pe&6)===0&&(cl=ge()+500,Vn()))}break;case 13:Mr(function(){var r=yn(e,1);if(r!==null){var l=at();Yt(r,e,1,l)}}),Ks(e,1)}},Ln=function(e){if(e.tag===13){var t=yn(e,134217728);if(t!==null){var n=at();Yt(t,e,134217728,n)}Ks(e,134217728)}},Be=function(e){if(e.tag===13){var t=Gn(e),n=yn(e,t);if(n!==null){var r=at();Yt(n,e,t,r)}Ks(e,t)}},Ut=function(){return fe},Pl=function(e,t){var n=fe;try{return fe=e,t()}finally{fe=n}},_n=function(e,t,n){switch(t){case"input":if(tr(e,n),t=n.name,n.type==="radio"&&t!=null){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var l=Ro(r);if(!l)throw Error(c(90));oo(r),tr(r,l)}}}break;case"textarea":uo(e,n);break;case"select":t=n.value,t!=null&&Gt(e,!!n.multiple,t,!1)}},Vr=Ds,un=Mr;var cd={usingClientEntryPoint:!1,Events:[Bl,Jr,Ro,Br,sr,Ds]},to={findFiberByHostInstance:kr,bundleType:0,version:"18.3.1",rendererPackageName:"react-dom"},fd={bundleType:to.bundleType,version:to.version,rendererPackageName:to.rendererPackageName,rendererConfig:to.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:_e.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return e=fo(e),e===null?null:e.stateNode},findFiberByHostInstance:to.findFiberByHostInstance||ud,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.3.1-next-f1338f8080-20240426"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var di=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!di.isDisabled&&di.supportsFiber)try{mr=di.inject(fd),xt=di}catch{}}return wt.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=cd,wt.createPortal=function(e,t){var n=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!Ys(t))throw Error(c(200));return sd(e,t,null,n)},wt.createRoot=function(e,t){if(!Ys(e))throw Error(c(299));var n=!1,r="",l=wc;return t!=null&&(t.unstable_strictMode===!0&&(n=!0),t.identifierPrefix!==void 0&&(r=t.identifierPrefix),t.onRecoverableError!==void 0&&(l=t.onRecoverableError)),t=Ws(e,1,!1,null,null,n,!1,r,l),e[pn]=t.current,Dl(e.nodeType===8?e.parentNode:e),new Qs(t)},wt.findDOMNode=function(e){if(e==null)return null;if(e.nodeType===1)return e;var t=e._reactInternals;if(t===void 0)throw typeof e.render=="function"?Error(c(188)):(e=Object.keys(e).join(","),Error(c(268,e)));return e=fo(t),e=e===null?null:e.stateNode,e},wt.flushSync=function(e){return Mr(e)},wt.hydrate=function(e,t,n){if(!ci(t))throw Error(c(200));return fi(null,e,t,!0,n)},wt.hydrateRoot=function(e,t,n){if(!Ys(e))throw Error(c(405));var r=n!=null&&n.hydratedSources||null,l=!1,o="",i=wc;if(n!=null&&(n.unstable_strictMode===!0&&(l=!0),n.identifierPrefix!==void 0&&(o=n.identifierPrefix),n.onRecoverableError!==void 0&&(i=n.onRecoverableError)),t=yc(t,null,e,1,n??null,l,!1,o,i),e[pn]=t.current,Dl(e),r)for(e=0;e<r.length;e++)n=r[e],l=n._getVersion,l=l(n._source),t.mutableSourceEagerHydrationData==null?t.mutableSourceEagerHydrationData=[n,l]:t.mutableSourceEagerHydrationData.push(n,l);return new ai(t)},wt.render=function(e,t,n){if(!ci(t))throw Error(c(200));return fi(null,e,t,!1,n)},wt.unmountComponentAtNode=function(e){if(!ci(e))throw Error(c(40));return e._reactRootContainer?(Mr(function(){fi(null,null,e,!1,function(){e._reactRootContainer=null,e[pn]=null})}),!0):!1},wt.unstable_batchedUpdates=Ds,wt.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!ci(n))throw Error(c(200));if(e==null||e._reactInternals===void 0)throw Error(c(38));return fi(e,t,n,!1,r)},wt.version="18.3.1-next-f1338f8080-20240426",wt}var Rc;function xd(){if(Rc)return Zs.exports;Rc=1;function u(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(u)}catch(p){console.error(p)}}return u(),Zs.exports=Sd(),Zs.exports}var Pc;function kd(){if(Pc)return pi;Pc=1;var u=xd();return pi.createRoot=u.createRoot,pi.hydrateRoot=u.hydrateRoot,pi}var Ed=kd();const Cd={claude:"/icons/claude.svg",codex:"/icons/openai.svg",cursor:"/icons/cursor.jpeg",opencode:"/icons/opencode.png",gemini:"/icons/gemini.svg",unknown:null};function Td(u){return u.replace(/[^a-z_]/g,"")}function lo(u){return Td(u)}function Mc(u){return`kind kind-${lo(u)}`}function Nd(u){return`event-card event-kind-${lo(u)}`}function _d(u){return Cd[u]??null}function Rd(u){const p=u.replace(/[\\/]+$/g,"");if(!p)return u;const c=p.split(/[\\/]/);return c[c.length-1]||p}function bs(u){return`trace-event-${u.replace(/[^a-zA-Z0-9_-]/g,"-")}`}function Pd(u){return vi(u.map(p=>({eventId:p.eventId,index:p.index,timestampMs:p.timestampMs,eventKind:p.eventKind,label:p.tocLabel||p.preview,colorKey:p.eventKind})),"first-latest")}function vi(u,p){const c=[...u].sort((O,k)=>(O.timestampMs??0)-(k.timestampMs??0)||O.index-k.index);return p==="latest-first"?c.reverse():c}function $r(u){return typeof u!="number"||!Number.isFinite(u)?"-":Math.abs(u)>=1e9?`${(u/1e9).toFixed(2)}B`:Math.abs(u)>=1e6?`${(u/1e6).toFixed(2)}M`:Math.abs(u)>=1e3?`${(u/1e3).toFixed(1)}K`:`${Math.round(u)}`}function Ic(u,p=1){return typeof u!="number"||!Number.isFinite(u)?"-":`${u.toFixed(p)}%`}function Md(u){return typeof u!="number"||!Number.isFinite(u)?"N/A":`$${u.toFixed(4)}`}const eu=12,hl=56,ml=18,yi=1.5,iu=18,lt=iu/2,Ft=lt-.6;async function Id(u){var c;if((c=navigator.clipboard)!=null&&c.writeText){await navigator.clipboard.writeText(u);return}const p=document.createElement("textarea");p.value=u,p.setAttribute("readonly","true"),p.style.position="fixed",p.style.opacity="0",p.style.pointerEvents="none",document.body.append(p),p.select(),typeof document.execCommand=="function"&&document.execCommand("copy"),p.remove()}function jd(u){return Math.max(0,Math.min(1,u))}function mi(u){return typeof u=="number"&&Number.isFinite(u)&&u>0?u:0}function zr(u,p){return`${u} ${p}${u===1?"":"s"}`}function Ld(u,p){if(typeof u!="number"||!Number.isFinite(u))return null;const c=Math.floor(Math.max(0,p-u)/1e3);if(c<10)return{short:"now",long:"Last event just now"};if(c<60)return{short:`${c}s`,long:`Last event ${zr(c,"second")} ago`};if(c<3600){const k=Math.floor(c/60);return{short:`${k}m`,long:`Last event ${zr(k,"minute")} ago`}}if(c<86400){const k=Math.floor(c/3600);return{short:`${k}h`,long:`Last event ${zr(k,"hour")} ago`}}if(c<604800){const k=Math.floor(c/86400);return{short:`${k}d`,long:`Last event ${zr(k,"day")} ago`}}if(c<2592e3){const k=Math.floor(c/604800);return{short:`${k}w`,long:`Last event ${zr(k,"week")} ago`}}if(c<31536e3){const k=Math.floor(c/2592e3);return{short:`${k}mo`,long:`Last event ${zr(k,"month")} ago`}}const O=Math.floor(c/31536e3);return{short:`${O}y`,long:`Last event ${zr(O,"year")} ago`}}function $d(u){const p=Array.isArray(u)?u.filter(c=>typeof c=="number"&&Number.isFinite(c)).map(c=>jd(c)):[];return p.length>eu?p.slice(-eu):p.length===0?Array.from({length:eu},()=>0):p}function zd(u){return Number.isInteger(u)?String(u):u.toFixed(1).replace(/\.0$/,"")}function Od(u){var re,Me;const p=$d(u.activityBins),c=u.activityBinsMode==="event_index"?"event_index":"time",O=typeof u.activityWindowMinutes=="number"&&Number.isFinite(u.activityWindowMinutes)&&u.activityWindowMinutes>0?u.activityWindowMinutes:void 0,k=typeof u.activityBinMinutes=="number"&&Number.isFinite(u.activityBinMinutes)&&u.activityBinMinutes>0?u.activityBinMinutes:O&&p.length>0?O/p.length:void 0,B=p.every(ye=>ye<=0),_=ml-yi,A=ml-yi*2,H=p.length>1?hl/(p.length-1):hl,Y=p.map((ye,te)=>{const oe=te*H,ot=_-ye*A;return{x:oe,y:ot}}),se=Y.map(ye=>`${ye.x.toFixed(2)},${ye.y.toFixed(2)}`).join(" "),ue=[`M ${((re=Y[0])==null?void 0:re.x.toFixed(2))??"0.00"},${_.toFixed(2)}`,...Y.map(ye=>`L ${ye.x.toFixed(2)},${ye.y.toFixed(2)}`),`L ${(((Me=Y[Y.length-1])==null?void 0:Me.x)??hl).toFixed(2)},${_.toFixed(2)}`,"Z"].join(" ");return{bins:p,isFlat:B,mode:c,windowMinutes:O,binMinutes:k,linePoints:se,areaPath:ue}}function Fd(u){const p=Math.round(Math.max(...u.bins)*100),c=Math.round((u.bins[u.bins.length-1]??0)*100);return u.mode==="event_index"?u.isFlat?"Activity trend: timestamp data unavailable; event-order density is flat.":`Activity trend: event-order density fallback, peak ${p}% and latest ${c}%.`:u.isFlat?"Activity trend: no timestamped activity across this session lifetime.":u.windowMinutes&&u.binMinutes?`Activity trend: peak ${p}% and latest ${c}% over this session lifetime (${Math.round(u.windowMinutes)} minutes) in ${zd(u.binMinutes)}-minute bins.`:`Activity trend: peak ${p}% and latest ${c}% over this session lifetime.`}function Dd(u,p,c,O){const k=Math.round((p.bins[c]??0)*100),B=Math.max(1,p.bins.length),_=u.firstEventTs??null,A=u.lastEventTs??null;if(p.mode==="time"&&typeof _=="number"&&Number.isFinite(_)&&typeof A=="number"&&Number.isFinite(A)&&A>_){const H=A-_,Y=Math.round(_+c/B*H),se=c>=B-1?A:Math.round(_+(c+1)/B*H);return`Activity ${k}%
|
|
41
|
+
${O(Y)} to ${O(se)}`}return typeof _=="number"&&Number.isFinite(_)&&typeof A=="number"&&Number.isFinite(A)&&A===_?`Activity ${k}%
|
|
42
|
+
${O(_)}`:`Activity ${k}%
|
|
43
|
+
Timestamp unavailable for this section`}function Ad(u,p,c){if(p.bins.length<=0)return[];const O=hl/p.bins.length;return p.bins.map((k,B)=>({key:`section-${B}`,x:B*O,width:O,tooltip:Dd(u,p,B,c)}))}function qn(u,p){return p<=0?0:Math.round(u/p*100)}function jc(u){return{x:lt+Ft*Math.cos(u),y:lt+Ft*Math.sin(u)}}function Ud(){const u=lt-Ft,p=lt+Ft;return[`M ${lt.toFixed(2)} ${lt.toFixed(2)}`,`L ${lt.toFixed(2)} ${u.toFixed(2)}`,`A ${Ft.toFixed(2)} ${Ft.toFixed(2)} 0 1 1 ${lt.toFixed(2)} ${p.toFixed(2)}`,`A ${Ft.toFixed(2)} ${Ft.toFixed(2)} 0 1 1 ${lt.toFixed(2)} ${u.toFixed(2)}`,"Z"].join(" ")}function Bd(u,p){const c=Math.max(0,p-u);if(c>=Math.PI*2-1e-6)return Ud();const O=jc(u),k=jc(p),B=c>Math.PI?1:0;return[`M ${lt.toFixed(2)} ${lt.toFixed(2)}`,`L ${O.x.toFixed(2)} ${O.y.toFixed(2)}`,`A ${Ft.toFixed(2)} ${Ft.toFixed(2)} 0 ${B} 1 ${k.x.toFixed(2)} ${k.y.toFixed(2)}`,"Z"].join(" ")}function Vd(u){const p=u.eventKindCounts,c=mi(p.assistant),O=mi(p.user),k=mi(p.tool_use),B=mi(p.tool_result),_=c+O+k+B;if(_<=0)return{assistantCount:c,userCount:O,toolUseCount:k,toolResultCount:B,total:0,isEmpty:!0,slices:[]};const A=[{key:"assistant",count:c},{key:"user",count:O},{key:"tool_use",count:k},{key:"tool_result",count:B}];let H=-Math.PI/2;const Y=[];for(const se of A){if(se.count<=0)continue;const ue=se.count/_,re=H+ue*Math.PI*2;Y.push({key:se.key,path:Bd(H,re)}),H=re}return{assistantCount:c,userCount:O,toolUseCount:k,toolResultCount:B,total:_,isEmpty:!1,slices:Y}}function Hd(u){if(u.isEmpty)return"Event mix: no user, assistant, tool use, or tool result events yet.";const p=qn(u.assistantCount,u.total),c=qn(u.userCount,u.total),O=qn(u.toolUseCount,u.total),k=qn(u.toolResultCount,u.total);return`Event mix: assistant ${p}%, user ${c}%, tool use ${O}%, tool result ${k}%.`}function Wd(u){if(u.isEmpty)return"No user, assistant, tool use, or tool result events yet.";const p=qn(u.assistantCount,u.total),c=qn(u.userCount,u.total),O=qn(u.toolUseCount,u.total),k=qn(u.toolResultCount,u.total);return[`Assistant: ${u.assistantCount} (${p}%)`,`User: ${u.userCount} (${c}%)`,`Tool use: ${u.toolUseCount} (${O}%)`,`Tool result: ${u.toolResultCount} (${k}%)`,`Total: ${u.total}`].join(`
|
|
44
|
+
`)}function Kd(u){const{trace:p,activityStatus:c,isActive:O,isPathExpanded:k,isEntering:B,isOpening:_,isStopping:A,isSendingInput:H,inputValue:Y,openError:se,stopError:ue,inputError:re,pulseSeq:Me,nowMs:ye,onSelect:te,onOpen:oe,onInputChange:ot,onInputSubmit:Le,onTogglePath:Ke,onStop:_e,rowRef:Qe,fmtTime:Ee}=u,Fe=_d(p.agent),De=p.sessionId||p.id,it=p.firstEventTs??null,ct=Math.max(p.lastEventTs??0,p.mtimeMs),Je=Ld(p.lastEventTs??null,ye),Ye=c==="waiting_input"?"status-waiting":c==="running"?"status-running":"status-idle",Ge=c==="waiting_input"?"Waiting":c==="running"?"Running":"Idle",Ce=Od(p),ft=Ad(p,Ce,Ee),me=Vd(p),we=Wd(me),L=S.useRef(null);return v.jsx("div",{className:`trace-row ${Ye} ${O?"active":""} ${B?"trace-row-enter":""}`,"data-trace-id":p.id,ref:Qe,onClick:()=>te(p.id),onKeyDown:P=>{P.target===P.currentTarget&&(P.key==="Enter"||P.key===" ")&&(P.preventDefault(),te(p.id))},role:"button",tabIndex:0,children:v.jsxs("div",{className:`trace-row-inner ${Me>0?"pulse":""}`,children:[v.jsxs("div",{className:"trace-topline",children:[v.jsx("span",{className:"trace-session-name mono",title:De,children:De}),v.jsxs("div",{className:"trace-topline-right",children:[c==="running"&&v.jsx("span",{className:"trace-running-indicator",role:"img","aria-label":"Session active",title:"Session active",children:v.jsxs("svg",{className:"trace-running-spinner",viewBox:"0 0 14 14","aria-hidden":"true",children:[v.jsx("circle",{className:"trace-running-spinner-track",cx:"7",cy:"7",r:"5.2"}),v.jsx("circle",{className:"trace-running-spinner-head",cx:"7",cy:"7",r:"5.2"})]})}),v.jsx("span",{className:`trace-status-chip mono ${Ye}`,children:Ge}),v.jsx("button",{type:"button",className:`trace-open-button mono ${_?"pending":""}`,onClick:P=>{P.stopPropagation(),oe(p.id)},"aria-label":_?"Opening terminal pane":"Open terminal pane",title:_?"Opening terminal pane…":"Open terminal pane",disabled:_,children:v.jsxs("svg",{className:"trace-open-icon",viewBox:"0 0 14 14","aria-hidden":"true",children:[v.jsx("path",{d:"M4 4.5h6M10 4.5v6M10 4.5L4.6 9.9",fill:"none",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"}),v.jsx("rect",{x:"2.2",y:"2.2",width:"9.6",height:"9.6",rx:"1.6",fill:"none",stroke:"currentColor",strokeWidth:"1.1"})]})}),v.jsx("button",{type:"button",className:`trace-stop-button mono ${A?"pending":""}`,onClick:P=>{P.stopPropagation(),_e(p.id)},"aria-label":A?"Stopping session process":"Stop session process",title:A?"Stopping session process…":"Stop session process",disabled:A,children:v.jsxs("svg",{className:"trace-stop-icon",viewBox:"0 0 14 14","aria-hidden":"true",children:[v.jsx("circle",{cx:"7",cy:"7",r:"5.2",fill:"none",stroke:"currentColor",strokeWidth:"1.2"}),v.jsx("rect",{x:"5.1",y:"5.1",width:"3.8",height:"3.8",rx:"0.5",fill:"currentColor"})]})}),v.jsx("span",{className:"trace-agent-chip mono",children:p.agent})]})]}),v.jsxs("div",{className:"trace-time-grid mono",children:[v.jsx("span",{className:"trace-time-label",children:"updated"}),v.jsx("span",{className:"trace-time-value",children:Ee(ct)}),v.jsx("span",{className:"trace-time-label",children:"start"}),v.jsx("span",{className:"trace-time-value",children:Ee(it)}),v.jsxs("span",{className:"trace-time-graph-wrap",children:[Je&&v.jsx("span",{className:`trace-last-event-chip mono ${Ye}`,title:Je.long,"aria-label":Je.long,children:Je.short}),v.jsxs("span",{className:"trace-composition-wrap",children:[v.jsxs("svg",{className:"trace-composition-pie",viewBox:`0 0 ${iu} ${iu}`,role:"img","aria-label":Hd(me),"data-total":me.total,"data-assistant-count":me.assistantCount,"data-user-count":me.userCount,"data-tool-use-count":me.toolUseCount,"data-tool-result-count":me.toolResultCount,children:[me.isEmpty?v.jsx("circle",{className:"trace-composition-empty",cx:lt,cy:lt,r:Ft}):me.slices.map(P=>v.jsx("path",{className:`trace-composition-slice ${P.key}`,d:P.path},P.key)),v.jsx("circle",{className:"trace-composition-outline",cx:lt,cy:lt,r:Ft})]}),v.jsx("span",{className:"trace-composition-tooltip mono","aria-hidden":"true",children:we})]}),v.jsxs("svg",{className:`trace-activity-sparkline ${Ye} ${Ce.isFlat?"is-flat":""}`,viewBox:`0 0 ${hl} ${ml}`,role:"img","aria-label":Fd(Ce),"data-flat":Ce.isFlat?"true":"false","data-point-count":Ce.bins.length,"data-mode":Ce.mode,children:[v.jsx("line",{className:"trace-activity-baseline",x1:0,y1:ml-yi,x2:hl,y2:ml-yi}),v.jsx("path",{className:"trace-activity-area",d:Ce.areaPath}),v.jsx("polyline",{className:"trace-activity-line",points:Ce.linePoints}),ft.map(P=>v.jsx("rect",{className:"trace-activity-hover-zone",x:P.x,y:0,width:P.width,height:ml,children:v.jsx("title",{children:P.tooltip})},P.key))]})]})]}),v.jsxs("div",{className:"trace-footer",children:[v.jsxs("div",{className:`trace-path-box ${k?"expanded":""}`,children:[v.jsx("button",{type:"button",className:"trace-path-toggle mono",onClick:P=>{P.stopPropagation(),Ke(p.id)},"aria-label":k?"Collapse full log path":"Expand full log path","aria-expanded":k,children:"path"}),v.jsx("span",{className:`trace-path-text mono ${k?"expanded":""}`,title:p.path,children:k?p.path:Rd(p.path)}),k&&v.jsx("button",{type:"button",className:"trace-path-copy",onClick:P=>{P.stopPropagation(),Id(p.path).catch(()=>{})},"aria-label":"Copy full log path",title:"Copy full log path",children:v.jsxs("svg",{viewBox:"0 0 14 14","aria-hidden":"true",children:[v.jsx("rect",{x:"4",y:"1.5",width:"8.5",height:"9.5",rx:"1.4",fill:"none",stroke:"currentColor"}),v.jsx("rect",{x:"1.5",y:"4",width:"8.5",height:"8.5",rx:"1.4",fill:"none",stroke:"currentColor"})]})})]}),v.jsx("span",{className:"trace-agent-icon-wrap",children:Fe?v.jsx("img",{className:"trace-agent-icon",src:Fe,alt:`${p.agent} icon`,loading:"lazy"}):v.jsx("span",{className:"trace-agent-fallback mono",role:"img","aria-label":"unknown agent",children:"?"})})]}),v.jsxs("div",{className:"trace-input-row",onClick:P=>{P.stopPropagation()},children:[v.jsx("input",{ref:L,type:"text",className:"trace-input-field mono",value:Y,placeholder:"Continue","aria-label":"Send input to session",title:"Send input to session",disabled:H,onChange:P=>ot(p.id,P.target.value),onClick:P=>P.stopPropagation(),onKeyDown:P=>{P.stopPropagation(),P.key==="Enter"&&(P.preventDefault(),Le(p.id,P.currentTarget.value))}}),v.jsx("button",{type:"button",className:`trace-input-send-button mono ${H?"pending":""}`,onClick:P=>{var F;P.stopPropagation(),Le(p.id,((F=L.current)==null?void 0:F.value)??Y)},"aria-label":H?"Sending session input":"Send session input",title:H?"Sending session input...":"Send session input",disabled:H,children:H?"...":"send"})]}),re&&v.jsx("div",{className:"trace-input-error mono",role:"status",children:re}),se&&v.jsx("div",{className:"trace-open-error mono",role:"status",children:se}),ue&&v.jsx("div",{className:"trace-stop-error mono",role:"status",children:ue})]},`pulse-${Me}`)})}const Qd="transform 380ms cubic-bezier(0.2, 0.9, 0.2, 1)";function Yd(){return typeof window<"u"&&typeof window.matchMedia=="function"&&window.matchMedia("(prefers-reduced-motion: reduce)").matches}function Lc(u,p={}){const c=S.useRef(new Map),O=S.useRef(new Map),k=p.reorderTransition??Qd;S.useEffect(()=>{O.current=new Map},[p.resetKey]),S.useEffect(()=>{const A=new Map;for(const H of u){const Y=c.current.get(H);Y&&A.set(H,Y.getBoundingClientRect().top)}if(Yd()){O.current=A;return}if(O.current.size>0)for(const H of u){const Y=c.current.get(H),se=A.get(H),ue=O.current.get(H);if(!Y||se===void 0||ue===void 0)continue;const re=ue-se;Math.abs(re)<.5||(Y.style.transition="none",Y.style.transform=`translateY(${re}px)`,Y.style.willChange="transform",Y.getBoundingClientRect(),requestAnimationFrame(()=>{Y.style.transition=k,Y.style.transform="translateY(0)",Y.addEventListener("transitionend",()=>{Y.style.transition="",Y.style.transform="",Y.style.willChange=""},{once:!0})}))}O.current=A},[u,k]);const B=S.useCallback(A=>H=>{if(!H){c.current.delete(A);return}c.current.set(A,H)},[]),_=S.useCallback(A=>{c.current.delete(A),O.current.delete(A)},[]);return{bindItemRef:B,removeItem:_}}const Gd="transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1)";function Xd(){return typeof window<"u"&&typeof window.matchMedia=="function"&&window.matchMedia("(prefers-reduced-motion: reduce)").matches}function Zd(u){const p=S.useRef(new Map),c=S.useRef(new Map);S.useEffect(()=>{const B=new Map;for(const _ of u){const A=p.current.get(_);A&&B.set(_,A.getBoundingClientRect().top)}if(Xd()){c.current=B;return}if(c.current.size>0)for(const _ of u){const A=p.current.get(_),H=B.get(_),Y=c.current.get(_);if(!A||H===void 0||Y===void 0)continue;const se=Y-H;Math.abs(se)<.5||(A.style.transition="none",A.style.transform=`translateY(${se}px)`,A.style.willChange="transform",A.getBoundingClientRect(),requestAnimationFrame(()=>{A.style.transition=Gd,A.style.transform="translateY(0)",A.addEventListener("transitionend",()=>{A.style.transition="",A.style.transform="",A.style.willChange=""},{once:!0})}))}c.current=B},[u]);const O=S.useCallback(B=>_=>{if(!_){p.current.delete(B);return}p.current.set(B,_)},[]),k=S.useCallback(B=>{p.current.delete(B),c.current.delete(B)},[]);return{bindTraceRowRef:O,removeTraceRow:k}}const Or="",Jd=560,qd=6,$c=36,bd=620,ep=12,zc=2400,tp=380,np=5e3,Oc=240,hi=240,rp=320,gi=500,lp=gi*2,pl=["system","assistant","user","tool_use","tool_result","reasoning","meta"],op={system:"system",assistant:"assistant",user:"user",tool_use:"tool use",tool_result:"tool result",reasoning:"reasoning",meta:"meta"},ip=pl.filter(u=>u!=="meta");function tu(u){return u?new Date(u).toLocaleString():"-"}function nu(u){return u?new Date(u).toLocaleTimeString():"-"}function Fc(u,p){if(!u)return"-";const c=Math.floor(Math.max(0,p-u)/1e3);return c<10?"now":c<60?`${c}s ago`:c<3600?`${Math.floor(c/60)}m ago`:c<86400?`${Math.floor(c/3600)}h ago`:`${Math.floor(c/86400)}d ago`}function sp(u){const p=[],c=_=>{_&&(p.includes(_)||p.push(_))},O=u.raw,k=typeof O.type=="string"?O.type:"",B=typeof O.model=="string"?O.model.trim():"";if(B&&c(`model:${B}`),k==="turn_context"){const _=O.payload,A=typeof(_==null?void 0:_.model)=="string"?_.model:"",H=typeof(_==null?void 0:_.approval_policy)=="string"?_.approval_policy:"";A&&c(`model:${A}`),H&&c(`approval:${H}`)}if(k==="progress"){const _=O.data,A=typeof(_==null?void 0:_.hookEvent)=="string"?_.hookEvent:"";A&&c(`hook:${A}`)}if(k==="system"){const _=typeof O.subtype=="string"?O.subtype:"";_&&c(`system:${_}`)}return p.slice(0,3)}function su(u){return[...u].sort((p,c)=>c.mtimeMs-p.mtimeMs||p.path.localeCompare(c.path))}function ru(u){return su(u).slice(0,gi)}function ro(u,p=6){return typeof u=="number"&&Number.isFinite(u)?u.toFixed(p):"na"}function Dc(u){const p=u.tokenTotals,c=p?[p.inputTokens,p.cachedReadTokens,p.cachedCreateTokens,p.outputTokens,p.reasoningOutputTokens,p.totalTokens].map(k=>ro(k,0)).join(","):"na",O=(u.modelTokenSharesTop??[]).map(k=>`${k.model}:${ro(k.tokens,0)}:${ro(k.percent)}`).join("|")||"na";return[u.eventCount,u.mtimeMs,u.lastEventTs??0,ro(u.costEstimateUsd),ro(u.contextWindowPct),c,O,u.modelTokenSharesEstimated?"estimated":"exact"].join(":")}function uu(u,p){return`${p?"meta":"default"}:${u}`}function up(u,p,c){for(u.has(p)&&u.delete(p),u.set(p,c);u.size>lp;){const O=u.keys().next().value;if(!O)break;u.delete(O)}}function ap(u,p){u.delete(uu(p,!1)),u.delete(uu(p,!0))}async function lu(u,p){const c=await fetch(u,{cache:"no-store",...p});if(!c.ok)throw new Error(`HTTP ${c.status}`);return await c.json()}function dl(u){for(const p of u.values())window.clearTimeout(p);u.clear()}function ou(u){return u.scrollWidth>u.clientWidth+1?{hasOverflow:!0,atLatest:u.scrollLeft+u.clientWidth>=u.scrollWidth-ep}:{hasOverflow:!1,atLatest:!0}}function Ac(){return new Set(ip)}function cp(){var Ml,wo,zn,On,dn,xr;const[u,p]=S.useState(null),[c,O]=S.useState([]),[k,B]=S.useState(""),[_,A]=S.useState(null),[H,Y]=S.useState("Loading..."),[se,ue]=S.useState(""),[re,Me]=S.useState(!1),[ye,te]=S.useState(null),[oe,ot]=S.useState(""),[Le,Ke]=S.useState(()=>Ac()),[_e,Qe]=S.useState(!1),[Ee,Fe]=S.useState(""),[De,it]=S.useState(""),[ct,Je]=S.useState(new Set),[Ye,Ge]=S.useState(new Set),[Ce,ft]=S.useState(!0),[me,we]=S.useState("latest-first"),[L,P]=S.useState(Oc),[F,m]=S.useState(0),[C,b]=S.useState(()=>Date.now()),[ne,ie]=S.useState(new Set),[ae,de]=S.useState(new Set),[ce,ve]=S.useState(new Set),[qe,bn]=S.useState({}),[oo,xn]=S.useState(new Set),[vl,er]=S.useState({}),[io,tr]=S.useState(new Set),[so,kn]=S.useState({}),[nr,Gt]=S.useState(new Set),[yl,Fr]=S.useState({}),[uo,ln]=S.useState({}),[gl,rr]=S.useState(!1),[lr,Dr]=S.useState(!0),[En,_t]=S.useState(0),ao=S.useRef(""),wl=S.useRef(null),or=S.useRef(null),Ar=S.useRef(!0),Cn=S.useRef(!1),Tn=S.useRef(!0),Nn=S.useRef(""),ir=S.useRef(""),_n=S.useRef(0),on=S.useRef(""),sn=S.useRef(!1),Ur=S.useRef(new Set),Br=S.useRef(""),sr=S.useRef(""),Vr=S.useRef(""),un=S.useRef(new Set),St=S.useRef([]),Dt=S.useRef(null),dt=S.useRef(new Map),Rt=S.useRef(new Map),At=S.useRef(null),ur=S.useRef(null),Xt=S.useRef({}),Rn=S.useRef(new Map),an=S.useRef(0),ar=S.useRef({selectedId:"",includeMeta:!1,liveTick:0}),Hr=S.useCallback(s=>{const E=Xt.current[s.id];return E?Math.max(s.lastEventTs??0,s.mtimeMs)>E?(delete Xt.current[s.id],s):s.activityStatus==="idle"&&s.activityReason==="manually_stopped"?s:{...s,activityStatus:"idle",activityReason:"manually_stopped"}:s},[]),Pn=S.useMemo(()=>{const s=oe.trim().toLowerCase(),E=su(c);return s?E.filter(x=>`${x.path}
|
|
45
|
+
${x.agent}
|
|
46
|
+
${x.sessionId}
|
|
47
|
+
${x.id}`.toLowerCase().includes(s)):E},[c,oe]),Mn=Le.has("meta"),be=S.useMemo(()=>pl.filter(s=>Le.has(s)).join(","),[Le]),st=S.useMemo(()=>_?_.events.filter(s=>Le.has(s.eventKind)):[],[_,Le]),Sl=S.useMemo(()=>new Set(st.map(s=>s.eventId)),[st]),co=Le.size,fo=co===pl.length?"event types all":`event types ${co}/${pl.length}`,cn=S.useMemo(()=>st.length===0||ce.size===0?[]:st.filter(s=>ce.has(s.eventId)),[st,ce]),Zt=S.useMemo(()=>{const s=vi(((_==null?void 0:_.toc)??[]).filter(x=>Sl.has(x.eventId)&&ce.has(x.eventId)),me),E=Ee.trim().toLowerCase();return E?s.filter(x=>`${x.index}
|
|
48
|
+
${x.eventKind}
|
|
49
|
+
${x.toolType}
|
|
50
|
+
${x.label}`.toLowerCase().includes(E)):s},[Sl,_,Ee,me,ce]),ze=S.useMemo(()=>vi(cn,me),[cn,me]),cr=S.useMemo(()=>{const s=Math.max(1,L);return ze.length<=s?ze:ze.slice(0,s)},[L,ze]),fr=S.useMemo(()=>{const s=Math.max(1,L);return Zt.length<=s?Zt:Zt.slice(0,s)},[L,Zt]),ge=S.useMemo(()=>Pd(cn),[cn]),wi=S.useMemo(()=>fr.map(s=>s.eventId),[fr]),xl=S.useMemo(()=>cr.map(s=>s.eventId),[cr]),dr=S.useMemo(()=>Pn.map(s=>s.id),[Pn]),pr=gl&&En>0&&!lr,Te=S.useMemo(()=>k?c.find(s=>s.id===k)??null:null,[k,c]),kl=Te?Dc(Te):"",mr=Te?qe[Te.id]??0:0,xt=(Te==null?void 0:Te.sessionId)||(Te==null?void 0:Te.id)||"",po=(Te==null?void 0:Te.eventCount)??0,kt=Te?Math.max(Te.lastEventTs??0,Te.mtimeMs):null,mo=Te?`${Te.agent} · ${po} ${po===1?"event":"events"} · updated ${Fc(kt,C)}`:"Pick a session to inspect.",ho=S.useMemo(()=>{const s={running:0,waiting_input:0,idle:0};for(const E of Pn){const x=E.activityStatus;x==="running"?s.running+=1:x==="waiting_input"?s.waiting_input+=1:s.idle+=1}return s},[Pn]),El=S.useMemo(()=>{if(st.length===0)return[];const s=new Set,E=new Map;for(const x of st){const j=x.toolType.trim();if(!j)continue;const I=x.toolCallId.trim(),$=I?`${j}:${I}`:x.eventId;s.has($)||(s.add($),E.set(j,(E.get(j)??0)+1))}return[...E.entries()].sort((x,j)=>j[1]-x[1]||x[0].localeCompare(j[0])).map(([x,j])=>({toolType:x,count:j}))},[st]),fn=El.slice(0,4),hr=Math.max(0,El.length-fn.length),vr=El.reduce((s,E)=>s+E.count,0),In=S.useMemo(()=>{let s=0;for(const E of c){const x=E.lastEventTs??0;x>s&&(s=x)}return s>0?s:null},[c]),Si=S.useMemo(()=>!H.startsWith("Live:")||!ye?H:In?`${H} · updated ${nu(ye)} · newest event ${nu(In)}`:`${H} · updated ${nu(ye)}`,[ye,In,H]),vo=se||Si,Cl=`hero-status mono${se?" flash-active":""}${re?" flash-fading":""}`,Tl=S.useMemo(()=>{const s=[];for(let E=0;E<fn.length;E+=2)s.push(fn.slice(E,E+2));return s},[fn]),{bindTraceRowRef:Nl,removeTraceRow:jn}=Zd(dr),{bindItemRef:xi}=Lc(wi,{resetKey:k}),{bindItemRef:_l}=Lc(xl,{resetKey:k}),fe=S.useCallback(()=>{P(s=>s>=ze.length?s:Math.min(s+hi,ze.length))},[ze.length]),Rl=S.useCallback(s=>{if(L>=ze.length)return;s.scrollHeight-(s.scrollTop+s.clientHeight)<=rp&&fe()},[fe,L,ze.length]);S.useEffect(()=>{P(Oc)},[k,me,Ee]);const Pt=S.useCallback((s,E=!0)=>{Cn.current!==s.hasOverflow&&(Cn.current=s.hasOverflow,rr(s.hasOverflow)),Ar.current=s.atLatest,Tn.current!==s.atLatest&&(Tn.current=s.atLatest,Dr(s.atLatest)),E&&(s.atLatest||!s.hasOverflow)&&_t(x=>x===0?x:0)},[]),Ln=S.useCallback(()=>{At.current!==null&&(window.clearTimeout(At.current),At.current=null),ur.current!==null&&(window.clearTimeout(ur.current),ur.current=null)},[]),Be=S.useCallback(s=>{const E=s.trim();E&&(Ln(),ue(E),Me(!1),At.current=window.setTimeout(()=>{Me(!0)},zc),ur.current=window.setTimeout(()=>{ue(""),Me(!1),At.current=null,ur.current=null},zc+tp))},[Ln]),Ut=S.useCallback(()=>{Dt.current!==null&&(window.clearTimeout(Dt.current),Dt.current=null),St.current=[]},[]),Pl=S.useCallback(s=>{const E=Rt.current.get(s);E!==void 0&&(window.clearTimeout(E),Rt.current.delete(s));const x=window.setTimeout(()=>{de(j=>{if(!j.has(s))return j;const I=new Set(j);return I.delete(s),I}),Rt.current.delete(s)},Jd);Rt.current.set(s,x)},[]),yr=S.useCallback(()=>{if(St.current.length===0){Dt.current=null;return}const s=St.current.splice(0,qd);if(s.length>0){ve(E=>{const x=new Set(E);for(const j of s)x.add(j);return x}),de(E=>{const x=new Set(E);for(const j of s)x.add(j);return x});for(const E of s)Pl(E)}if(St.current.length===0){Dt.current=null;return}Dt.current=window.setTimeout(()=>{yr()},$c)},[Pl]),gr=S.useCallback(s=>{if(s.length===0)return;const E=new Set(St.current);for(const x of s)E.has(x)||(E.add(x),St.current.push(x));Dt.current===null&&(Dt.current=window.setTimeout(()=>{yr()},$c))},[yr]),Jt=S.useCallback(()=>{const s=or.current;s&&Pt(ou(s))},[Pt]),qt=S.useCallback(s=>{Ke(E=>{const x=new Set(E);return x.has(s)?x.delete(s):x.add(s),x})},[]),bt=S.useCallback(()=>{Ke(new Set(pl))},[]),wr=S.useCallback(()=>{Ke(Ac())},[]);S.useEffect(()=>{ao.current=k},[k]),S.useEffect(()=>{if(!_e)return;const s=x=>{var I;const j=x.target;j instanceof Node&&((I=wl.current)!=null&&I.contains(j)||Qe(!1))},E=x=>{x.key==="Escape"&&Qe(!1)};return window.addEventListener("mousedown",s),window.addEventListener("keydown",E),()=>{window.removeEventListener("mousedown",s),window.removeEventListener("keydown",E)}},[_e]),S.useEffect(()=>{var E;if(k&&c.some(x=>x.id===k))return;const s=((E=c[0])==null?void 0:E.id)??"";s!==k&&B(s)},[k,c]),S.useEffect(()=>()=>{Ut(),Ln(),dl(dt.current),dl(Rt.current)},[Ut,Ln]),S.useEffect(()=>{const s=window.setInterval(()=>{typeof document<"u"&&document.visibilityState==="hidden"||b(Date.now())},np);return()=>{window.clearInterval(s)}},[]),S.useEffect(()=>{const s=()=>{const E=or.current;E&&Pt(ou(E))};return s(),window.addEventListener("resize",s),()=>{window.removeEventListener("resize",s)}},[Pt]),S.useEffect(()=>{const s=oe.trim().toLowerCase(),E=on.current!==s;on.current=s;const x=new Set(dr);if(E||!sn.current){sn.current=!0,Ur.current=x,ie(new Set),dl(dt.current);return}const j=dr.filter(I=>!Ur.current.has(I));Ur.current=x,j.length!==0&&(ie(I=>{const $=new Set(I);for(const w of j)$.add(w);return $}),j.forEach((I,$)=>{const w=dt.current.get(I);w!==void 0&&(window.clearTimeout(w),dt.current.delete(I));const D=window.setTimeout(()=>{ie(Z=>{if(!Z.has(I))return Z;const z=new Set(Z);return z.delete(I),z}),dt.current.delete(I)},bd+$*45);dt.current.set(I,D)}))},[dr,oe]),S.useEffect(()=>{const s=I=>{I&&bn($=>({...$,[I]:($[I]??0)+1}))};(async()=>{try{const[I,$]=await Promise.all([lu(`${Or}/api/overview`),lu(`${Or}/api/traces?limit=${gi}`)]),w=ru($.traces.map(Hr));p(I.overview),O(w),B(D=>{var Z;return D||((Z=w[0])==null?void 0:Z.id)||""}),Y(`Loaded ${w.length} traces`)}catch(I){Y(`Failed: ${String(I)}`)}})();const x=new EventSource(`${Or}/api/stream?limit=${gi}`);x.addEventListener("snapshot",I=>{var $,w;try{const D=JSON.parse(I.data),Z=ru(((($=D.payload)==null?void 0:$.traces)??[]).map(Hr));Z.length>0&&(O(Z),B(z=>{var J;return z||((J=Z[0])==null?void 0:J.id)||""})),(w=D.payload)!=null&&w.overview&&p(D.payload.overview),Y(`Live: ${Z.length} traces`),te(Date.now())}catch{Y("Live update parse error")}});const j=I=>{const $=Hr(I);O(w=>{const D=[...w],Z=D.findIndex(z=>z.id===$.id);return Z>=0?D[Z]=$:D.push($),ru(D)}),B(w=>w||$.id)};return x.addEventListener("trace_added",I=>{var w;const $=JSON.parse(I.data);(w=$.payload)!=null&&w.summary&&(j($.payload.summary),te(Date.now()),s($.payload.summary.id))}),x.addEventListener("trace_updated",I=>{var w;const $=JSON.parse(I.data);(w=$.payload)!=null&&w.summary&&(j($.payload.summary),te(Date.now()),s($.payload.summary.id))}),x.addEventListener("trace_removed",I=>{var Z;const w=(Z=JSON.parse(I.data).payload)==null?void 0:Z.id;if(!w)return;delete Xt.current[w],ap(Rn.current,w),O(z=>z.filter(J=>J.id!==w)),B(z=>z===w?"":z),jn(w),ie(z=>{if(!z.has(w))return z;const J=new Set(z);return J.delete(w),J});const D=dt.current.get(w);D!==void 0&&(window.clearTimeout(D),dt.current.delete(w)),bn(z=>{if(!(w in z))return z;const J={...z};return delete J[w],J}),tr(z=>{if(!z.has(w))return z;const J=new Set(z);return J.delete(w),J}),xn(z=>{if(!z.has(w))return z;const J=new Set(z);return J.delete(w),J}),Gt(z=>{if(!z.has(w))return z;const J=new Set(z);return J.delete(w),J}),kn(z=>{if(!(w in z))return z;const J={...z};return delete J[w],J}),er(z=>{if(!(w in z))return z;const J={...z};return delete J[w],J}),ln(z=>{if(!(w in z))return z;const J={...z};return delete J[w],J}),Fr(z=>{if(!(w in z))return z;const J={...z};return delete J[w],J}),te(Date.now())}),x.addEventListener("overview_updated",I=>{var w;const $=JSON.parse(I.data);(w=$.payload)!=null&&w.overview&&(p($.payload.overview),te(Date.now()))}),x.addEventListener("events_appended",I=>{var w;const $=JSON.parse(I.data);(w=$.payload)!=null&&w.id&&$.payload.id===ao.current&&(te(Date.now()),($.payload.appended??0)>0&&m(D=>D+1))}),x.onerror=()=>{Y("Live stream disconnected; retrying...")},()=>{x.close()}},[Hr,jn]),S.useEffect(()=>{if(!k){an.current+=1,ar.current={selectedId:"",includeMeta:Mn,liveTick:F},A(null),Je(new Set),de(new Set),ve(new Set),Cn.current=!1,Tn.current=!0,rr(ee=>ee&&!1),Dr(ee=>ee||!0),_t(ee=>ee===0?ee:0),Ar.current=!0,Nn.current="",_n.current=0,sr.current="",un.current=new Set,Ut(),dl(Rt.current),Br.current="";return}const s=Br.current!==k;Br.current=k;const E=ar.current,x=E.selectedId===k,j=E.includeMeta!==Mn,I=E.liveTick!==F;ar.current={selectedId:k,includeMeta:Mn,liveTick:F};const $=uu(k,Mn),w=kl,D=Rn.current.get($),Z=ee=>{const Mt=new Set(ee.events.map(pt=>pt.eventId));A(ee),Je(pt=>{if(s)return new Set;const Et=new Set;for(const Kr of pt)Mt.has(Kr)&&Et.add(Kr);return Et}),it(pt=>{var Et;return pt&&ee.events.some(Kr=>Kr.eventId===pt)?pt:((Et=vi(ee.events,me)[0])==null?void 0:Et.eventId)??""})};if(D&&Z(D.page),!(!D||!w||D.summaryStamp!==w||x&&(j||I)))return;an.current+=1;const J=an.current,Ie=new AbortController;return(async()=>{try{const ee=await lu(`${Or}/api/trace/${encodeURIComponent(k)}?limit=1200&include_meta=${Mn?"1":"0"}`,{signal:Ie.signal});if(Ie.signal.aborted||an.current!==J)return;up(Rn.current,$,{page:ee,summaryStamp:Dc(ee.summary)}),Z(ee)}catch(ee){if(Ie.signal.aborted||ee instanceof Error&&ee.name==="AbortError")return;Y(`Trace load failed: ${String(ee)}`)}})(),()=>{Ie.abort()}},[Ut,k,kl,Mn,F]),S.useEffect(()=>{if(!Ce||ge.length===0)return;const s=ge[ge.length-1];s&&it(s.eventId)},[Ce,ge]),S.useEffect(()=>{_&&it(s=>{var E;return ze.length===0?"":s&&ze.some(x=>x.eventId===s)?s:((E=ze[0])==null?void 0:E.eventId)??""})},[_,ze]),S.useEffect(()=>{const s=or.current,E=cn.length,x=Math.max(0,st.length-E);if(!k||!_||!s){Nn.current=k,ir.current=be,_n.current=E,Cn.current=!1,Tn.current=!0,rr(z=>z&&!1),Dr(z=>z||!0),_t(z=>z===0?z:0),Ar.current=!0;return}const j=ir.current!==be,I=Nn.current!==k||j,$=I?E:_n.current,w=I?0:Math.max(0,E-$),D=Ar.current,Z=ou(s);if(Nn.current=k,ir.current=be,_n.current=E,I){Pt(Z),_t(0);return}if(w===0){if(x>0||St.current.length>0)return;Pt(Z);return}if(D){typeof s.scrollTo=="function"?s.scrollTo({left:s.scrollWidth,behavior:"smooth"}):s.scrollLeft=s.scrollWidth,Pt({hasOverflow:s.scrollWidth>s.clientWidth+1,atLatest:!0},!0);return}Pt(Z,!1),Z.hasOverflow&&!Z.atLatest?_t(z=>z+w):_t(0)},[Pt,st.length,_,k,be,cn.length]),S.useEffect(()=>{if(!k||!_){sr.current="",Vr.current=be,un.current=new Set,Ut(),ve(new Set),de(new Set);return}const s=st.map(D=>D.eventId),E=new Set(s),x=Vr.current!==be,j=sr.current!==k;if(sr.current=k,Vr.current=be,j||x){un.current=E,Ut(),ve(E),de(new Set),dl(Rt.current);return}const I=un.current;let $=I.size>E.size;if(!$){for(const D of I)if(!E.has(D)){$=!0;break}}if($){un.current=E,Ut(),ve(E),de(new Set),dl(Rt.current);return}const w=s.filter(D=>!I.has(D));un.current=E,ve(D=>{let Z=!1;const z=new Set;for(const J of D){if(E.has(J)){z.add(J);continue}Z=!0}return!Z&&z.size===D.size?D:z}),St.current=St.current.filter(D=>E.has(D)),w.length>0&&gr(w)},[Ut,gr,st,_,k,be]);const $n=s=>{const E=s.closest(".events-scroll");if(!(E instanceof HTMLElement))return;const x=s.getBoundingClientRect(),j=E.getBoundingClientRect(),I=x.top-j.top,$=(E.clientHeight-x.height)/2,w=E.scrollTop+I-$;E.scrollTo({top:Math.max(0,w),behavior:"smooth"})},Bt=s=>{it(s);const E=document.getElementById(bs(s));if(E){$n(E);return}const x=ze.findIndex(j=>j.eventId===s);x<0||(P(j=>{const I=x+hi;return Math.min(Math.max(j,I),ze.length)}),window.setTimeout(()=>{const j=document.getElementById(bs(s));j&&$n(j)},0))},ki=s=>{Je(E=>{const x=new Set(E);return x.has(s)?x.delete(s):x.add(s),x})},yo=s=>{Ge(E=>{const x=new Set(E);return x.has(s)?x.delete(s):x.add(s),x})},Sr=S.useCallback(async s=>{var E,x,j,I;xn($=>{if($.has(s))return $;const w=new Set($);return w.add(s),w}),er($=>{if(!(s in $))return $;const w={...$};return delete w[s],w});try{const $=await fetch(`${Or}/api/trace/${encodeURIComponent(s)}/open`,{method:"POST",cache:"no-store"}),w=await $.json().catch(()=>({}));if(!$.ok||w.ok!==!0){const pt=(E=w.error)!=null&&E.trim()?w.error:`HTTP ${$.status}`;er(Et=>({...Et,[s]:pt})),Be(`Open failed: ${pt}`);return}const D=Date.now(),Z=((x=w.status)==null?void 0:x.trim())??"",z=((j=w.message)==null?void 0:j.trim())??"",J=w.target&&typeof w.target.tmuxSession=="string"&&typeof w.target.windowIndex=="number"&&typeof w.target.paneIndex=="number"?`${w.target.tmuxSession}:${w.target.windowIndex}.${w.target.paneIndex}`:"",Ie=typeof w.pid=="number"?` pid ${w.pid}`:"",Fn=(I=w.tty)!=null&&I.trim()?` tty ${w.tty.trim()}`:"",ee=[J,Ie.trim(),Fn.trim()].filter(Boolean).join(" · "),Mt=ee?` (${ee})`:"";Be(Z==="focused_pane"?`Open focused_pane: ${z||`session ${s}`}${Mt}`:Z==="ghostty_activated"?`Open ghostty_activated: ${z||`session ${s}`}${Mt}`:`Open ${Z||"unknown"}: ${z||`session ${s}`}${Mt}`),te(D)}catch($){const w=$ instanceof Error?$.message:String($);er(D=>({...D,[s]:w})),Be(`Open failed: ${w}`)}finally{xn($=>{if(!$.has(s))return $;const w=new Set($);return w.delete(s),w})}},[Be]),Ei=S.useCallback(async s=>{var E,x;tr(j=>{if(j.has(s))return j;const I=new Set(j);return I.add(s),I}),kn(j=>{if(!(s in j))return j;const I={...j};return delete I[s],I});try{const j=await fetch(`${Or}/api/trace/${encodeURIComponent(s)}/stop`,{method:"POST",cache:"no-store"}),I=await j.json().catch(()=>({}));if(!j.ok||I.ok!==!0){const D=(E=I.error)!=null&&E.trim()?I.error:`HTTP ${j.status}`;kn(Z=>({...Z,[s]:D})),Be(`Stop failed: ${D}`);return}const $=Date.now();Xt.current[s]=$,O(D=>{const Z=D.findIndex(Ie=>Ie.id===s);if(Z<0)return D;const z=D[Z];if(!z)return D;const J=[...D];return J[Z]={...z,activityStatus:"idle",activityReason:"manually_stopped"},su(J)});const w=(x=I.signal)!=null&&x.trim()?I.signal:"signal";Be(`Stop requested (${w}) for ${s}`),te($)}catch(j){const I=j instanceof Error?j.message:String(j);kn($=>({...$,[s]:I})),Be(`Stop failed: ${I}`)}finally{tr(j=>{if(!j.has(s))return j;const I=new Set(j);return I.delete(s),I})}},[Be]),go=S.useCallback((s,E)=>{Fr(x=>(x[s]??"")===E?x:{...x,[s]:E}),ln(x=>{if(!(s in x))return x;const j={...x};return delete j[s],j})},[]),Wr=S.useCallback(async(s,E)=>{var j,I,$;const x=E.replace(/\r\n/g,`
|
|
51
|
+
`).replace(/\r/g,`
|
|
52
|
+
`);if(!x.trim()){const w="input text is required";ln(D=>({...D,[s]:w})),Be(`Input failed: ${w}`);return}Gt(w=>{if(w.has(s))return w;const D=new Set(w);return D.add(s),D}),ln(w=>{if(!(s in w))return w;const D={...w};return delete D[s],D});try{const w=await fetch(`${Or}/api/trace/${encodeURIComponent(s)}/input`,{method:"POST",cache:"no-store",headers:{"content-type":"application/json"},body:JSON.stringify({text:x,submit:!0})}),D=await w.json().catch(()=>({}));if(!w.ok||D.ok!==!0){const Ie=(j=D.error)!=null&&j.trim()?D.error:`HTTP ${w.status}`;ln(Fn=>({...Fn,[s]:Ie})),Be(`Input failed: ${Ie}`);return}const Z=Date.now();Fr(Ie=>{if(!(s in Ie)||(Ie[s]??"")!==E)return Ie;const ee={...Ie};return delete ee[s],ee});const z=((I=D.status)==null?void 0:I.trim())??"sent",J=(($=D.message)==null?void 0:$.trim())??s;Be(`Input ${z}: ${J}`),te(Z)}catch(w){const D=w instanceof Error?w.message:String(w);ln(Z=>({...Z,[s]:D})),Be(`Input failed: ${D}`)}finally{Gt(w=>{if(!w.has(s))return w;const D=new Set(w);return D.delete(s),D})}},[Be]);return v.jsxs("main",{className:"shell",children:[v.jsxs("header",{className:"hero",children:[v.jsxs("div",{className:"hero-main",children:[v.jsxs("div",{className:"hero-title-line",children:[v.jsx("h1",{children:"🔍 AgentLens"}),v.jsx("div",{className:Cl,title:vo,children:vo})]}),v.jsx("p",{children:"Live observability for your Codex, Claude, Cursor, Gemini and OpenCode agent sessions."})]}),v.jsxs("div",{className:"hero-metrics",children:[v.jsx("span",{children:`sessions ${(u==null?void 0:u.sessionCount)??(u==null?void 0:u.traceCount)??0}`}),v.jsx("span",{children:`events ${(u==null?void 0:u.eventCount)??0}`}),v.jsx("span",{children:`errors ${(u==null?void 0:u.errorCount)??0}`}),v.jsx("span",{children:`tool io ${((u==null?void 0:u.toolUseCount)??0)+((u==null?void 0:u.toolResultCount)??0)}`}),v.jsxs("a",{className:"hero-github-tag mono",href:"https://github.com/RobertTLange/agentlens",title:"AgentLens on GitHub",children:[v.jsx("svg",{className:"hero-github-icon",viewBox:"0 0 16 16","aria-hidden":"true",focusable:"false",children:v.jsx("path",{fill:"currentColor",d:"M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49C4 14.09 3.48 13.22 3.32 12.77c-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82A7.7 7.7 0 0 1 8 4.84c.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8Z"})}),v.jsx("span",{children:"agentlens"})]})]})]}),v.jsx("section",{className:`timeline-strip-panel ${pr?"timeline-strip-has-right-glow":""}`,"aria-label":pr?`Session timeline summary, ${En} new events off-screen to the right`:"Session timeline summary",children:ge.length>0?v.jsx("div",{className:"timeline-strip-scroll",ref:or,onScroll:Jt,"data-at-latest":lr?"true":"false","data-has-overflow":gl?"true":"false",children:v.jsx("div",{className:"timeline-strip-track","aria-label":"Chronological timeline events",children:ge.map(s=>{const E=s.eventId===De,x=tu(s.timestampMs),j=s.label||s.eventKind;return v.jsx("button",{type:"button",className:`timeline-segment kind-${lo(s.colorKey)} ${E?"active":""} ${ae.has(s.eventId)?"timeline-segment-enter":""}`,onClick:()=>Bt(s.eventId),title:`${j} (${s.eventKind}) #${s.index} ${x}`,"aria-label":`Jump to event #${s.index} ${s.eventKind}: ${j}`},s.eventId)})})}):v.jsx("div",{className:"timeline-strip-empty",children:"No timeline events"})}),v.jsxs("div",{className:"grid",children:[v.jsxs("section",{className:"panel list-panel",children:[v.jsxs("div",{className:"panel-head",children:[v.jsxs("div",{className:"session-head-top",children:[v.jsx("h2",{children:"Sessions"}),v.jsxs("div",{className:"session-head-counters mono",children:[v.jsx("span",{className:"session-head-counter status-running",children:`running ${ho.running}`}),v.jsx("span",{className:"session-head-counter status-waiting",children:`waiting ${ho.waiting_input}`})]})]}),v.jsx("input",{className:"search",placeholder:"Search session/path",value:oe,onChange:s=>ot(s.target.value)})]}),v.jsxs("div",{className:"list-scroll",children:[Pn.map(s=>{const E=s.id===k,x=Ye.has(s.id),j=qe[s.id]??0,I=s.activityStatus;return v.jsx(Kd,{trace:s,activityStatus:I,isActive:E,isPathExpanded:x,isEntering:ne.has(s.id),isOpening:oo.has(s.id),isStopping:io.has(s.id),isSendingInput:nr.has(s.id),inputValue:yl[s.id]??"",openError:vl[s.id]??"",stopError:so[s.id]??"",inputError:uo[s.id]??"",pulseSeq:j,nowMs:C,onSelect:B,onOpen:Sr,onInputChange:go,onInputSubmit:Wr,onTogglePath:yo,onStop:Ei,rowRef:Nl(s.id),fmtTime:tu},s.id)}),Pn.length===0&&v.jsx("div",{className:"empty",children:"No sessions"})]})]}),v.jsxs("section",{className:"panel toc-panel",children:[v.jsxs("div",{className:"panel-head toc-head",children:[v.jsxs("div",{className:"toc-head-top",children:[v.jsx("h2",{children:"Timeline TOC"}),v.jsx("button",{type:"button",className:"sort-toggle mono",title:"Toggle timeline sort direction",onClick:()=>we(s=>s==="latest-first"?"first-latest":"latest-first"),children:me==="latest-first"?"latest->first":"first->latest"})]}),v.jsx("input",{className:"search",placeholder:"Filter by kind/text",value:Ee,onChange:s=>Fe(s.target.value)})]}),v.jsxs("div",{className:"toc-scroll",onScroll:s=>Rl(s.currentTarget),children:[fr.map(s=>{const E=s.eventId===De;return v.jsxs("button",{className:`toc-row ${E?"active":""} ${ae.has(s.eventId)?"toc-row-enter":""}`,onClick:()=>Bt(s.eventId),ref:xi(s.eventId),children:[v.jsx("span",{className:`toc-dot kind-${lo(s.colorKey)}`}),v.jsx("span",{className:"mono toc-index",children:`#${s.index}`}),v.jsx("span",{className:Mc(s.eventKind),children:s.eventKind}),s.toolType&&v.jsx("span",{className:"kind kind-tool-type",children:s.toolType}),v.jsx("span",{className:"mono toc-timestamp",children:Fc(s.timestampMs,C)})]},s.eventId)}),fr.length<Zt.length&&v.jsx("button",{type:"button",className:"load-more mono",onClick:fe,children:`Load ${Math.min(hi,Zt.length-fr.length)} more`}),Zt.length===0&&v.jsx("div",{className:"empty",children:"No timeline rows"})]})]}),v.jsxs("section",{className:"panel detail-panel",children:[v.jsxs("div",{className:"panel-head detail-head",children:[v.jsxs("div",{className:`detail-head-title-block ${mr>0?"pulse":""}`,children:[v.jsx("h2",{children:"Trace Inspector"}),v.jsx("div",{className:"detail-head-meta mono",title:xt||void 0,children:Te?`${xt} · ${mo}`:mo})]},`detail-head-pulse-${(Te==null?void 0:Te.id)??"none"}-${mr}`),v.jsxs("div",{className:"detail-controls",children:[v.jsxs("div",{className:"event-kind-filter",ref:wl,children:[v.jsx("button",{type:"button",className:"mono event-kind-filter-trigger","aria-haspopup":"menu","aria-expanded":_e,"aria-controls":"event-type-filter-menu",onClick:()=>Qe(s=>!s),children:fo}),_e&&v.jsxs("div",{id:"event-type-filter-menu",className:"event-kind-filter-menu",role:"menu",children:[v.jsxs("div",{className:"event-kind-filter-actions",children:[v.jsx("button",{type:"button",className:"mono event-kind-filter-action",onClick:bt,children:"show all"}),v.jsx("button",{type:"button",className:"mono event-kind-filter-action",onClick:wr,children:"default (hide meta)"})]}),v.jsx("div",{className:"event-kind-filter-options",children:pl.map(s=>v.jsxs("label",{className:"mono checkbox event-kind-option","data-event-kind":s,children:[v.jsx("input",{type:"checkbox",checked:Le.has(s),onChange:()=>qt(s)}),v.jsx("span",{className:`toc-dot kind-${lo(s)}`,"aria-hidden":"true"}),v.jsx("span",{children:op[s]})]},s))})]})]}),v.jsxs("label",{className:"mono checkbox",children:[v.jsx("input",{type:"checkbox",checked:Ce,onChange:s=>ft(s.target.checked)}),"auto follow"]})]})]}),_?v.jsxs(v.Fragment,{children:[v.jsxs("section",{className:"detail-summary-cards","aria-label":"trace inspector summary cards",children:[v.jsxs("article",{className:"detail-summary-card",children:[v.jsxs("div",{className:"detail-summary-head mono",children:[v.jsx("div",{className:"detail-summary-title",children:"tokens"}),v.jsx("div",{className:"detail-summary-value",children:$r(((Ml=_.summary.tokenTotals)==null?void 0:Ml.totalTokens)??null)})]}),v.jsx("div",{className:"detail-summary-sub mono",children:`in ${$r(((wo=_.summary.tokenTotals)==null?void 0:wo.inputTokens)??null)} · out ${$r(((zn=_.summary.tokenTotals)==null?void 0:zn.outputTokens)??null)}`}),v.jsx("div",{className:"detail-summary-sub mono",children:`cr ${$r(((On=_.summary.tokenTotals)==null?void 0:On.cachedReadTokens)??null)} · cc ${$r(((dn=_.summary.tokenTotals)==null?void 0:dn.cachedCreateTokens)??null)}`}),v.jsx("div",{className:"detail-summary-sub mono",children:`ctx ${Ic(_.summary.contextWindowPct??null)} · cost ${Md(_.summary.costEstimateUsd??null)}`})]}),v.jsxs("article",{className:"detail-summary-card",children:[v.jsxs("div",{className:"detail-summary-head mono",children:[v.jsx("div",{className:"detail-summary-title",children:"models"}),v.jsx("div",{className:"detail-summary-value",children:`${((xr=_.summary.modelTokenSharesTop)==null?void 0:xr.length)??0} shown`})]}),(_.summary.modelTokenSharesTop??[]).slice(0,3).map(s=>v.jsx("div",{className:"detail-summary-sub mono",title:s.model,children:`${s.model} ${Ic(s.percent,1)}`},`${s.model}-${s.tokens}`)),_.summary.modelTokenSharesEstimated&&v.jsx("div",{className:"detail-summary-note mono",children:"estimated"})]}),v.jsxs("article",{className:"detail-summary-card",children:[v.jsxs("div",{className:"detail-summary-head mono",children:[v.jsx("div",{className:"detail-summary-title",children:"tool calls"}),v.jsx("div",{className:"detail-summary-value",children:$r(vr)})]}),Tl.length>0?Tl.map((s,E)=>v.jsx("div",{className:"detail-summary-sub mono",title:s.map(x=>x.toolType).join(", "),children:s.map(x=>`${x.toolType} ${$r(x.count)}`).join(" · ")},`tool-count-row-${E}`)):v.jsx("div",{className:"detail-summary-sub mono",children:"types -"}),hr>0&&v.jsx("div",{className:"detail-summary-note mono",children:`+${hr} more types`})]})]}),v.jsxs("div",{className:"events-scroll",onScroll:s=>Rl(s.currentTarget),children:[cr.map(s=>{const E=sp(s);return v.jsxs("article",{id:bs(s.eventId),className:`${Nd(s.eventKind)} ${De===s.eventId?"selected":""} ${ae.has(s.eventId)?"event-card-enter":""}`,ref:_l(s.eventId),children:[v.jsx("button",{className:"expand-btn mono",onClick:()=>ki(s.eventId),children:ct.has(s.eventId)?"collapse":"expand"}),v.jsxs("div",{className:"event-top mono",children:[v.jsx("span",{children:`#${s.index}`}),v.jsx("span",{className:Mc(s.eventKind),children:s.eventKind}),s.toolType&&v.jsx("span",{className:"kind kind-tool-type",children:s.toolType}),v.jsx("span",{children:tu(s.timestampMs)})]}),v.jsx("h3",{children:s.preview}),(s.toolName||s.functionName)&&v.jsx("div",{className:"mono subtle",children:`tool ${s.toolName||s.functionName}${s.toolCallId?` (${s.toolCallId})`:""}`}),E.length>0&&v.jsx("div",{className:"event-agent-badges mono",children:E.map(x=>v.jsx("span",{className:"event-agent-badge",children:x},`${s.eventId}-${x}`))}),ct.has(s.eventId)&&v.jsx("pre",{className:"event-raw-json",children:JSON.stringify(s.raw,null,2)})]},s.eventId)}),cr.length<ze.length&&v.jsx("button",{type:"button",className:"load-more mono",onClick:fe,children:`Load ${Math.min(hi,ze.length-cr.length)} more`})]})]}):v.jsx("div",{className:"empty",children:"Pick a session to inspect."})]})]})]})}Ed.createRoot(document.getElementById("root")).render(v.jsx(yd.StrictMode,{children:v.jsx(cp,{})}));
|