@rayadesu/dsh-billing 0.1.0-rc.8

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.
Files changed (116) hide show
  1. package/AGENTS.md +54 -0
  2. package/LICENSE +21 -0
  3. package/README.i18n.yaml +6 -0
  4. package/README.md +118 -0
  5. package/README.zh.md +114 -0
  6. package/cordis.patch.yml +20 -0
  7. package/package.json +33 -0
  8. package/packages/llm-billing/README.i18n.yaml +6 -0
  9. package/packages/llm-billing/README.md +44 -0
  10. package/packages/llm-billing/README.zh.md +44 -0
  11. package/packages/llm-billing/lib/index.js +562 -0
  12. package/packages/llm-billing/lib/invariant.js +23 -0
  13. package/packages/llm-billing/lib/tsconfig.tsbuildinfo +1 -0
  14. package/packages/llm-billing/lib/typert.host.d.ts +3 -0
  15. package/packages/llm-billing/lib/typert.host.js +114 -0
  16. package/packages/llm-billing/lib/typert.remote-client.d.ts +27 -0
  17. package/packages/llm-billing/lib/typert.remote-client.d.ts.map +1 -0
  18. package/packages/llm-billing/lib/typert.remote-client.js +108 -0
  19. package/packages/llm-billing/lib/types/balance.d.ts +71 -0
  20. package/packages/llm-billing/lib/types/balance.d.ts.map +1 -0
  21. package/packages/llm-billing/lib/types/balance.js +187 -0
  22. package/packages/llm-billing/lib/types/balance.js.map +1 -0
  23. package/packages/llm-billing/lib/types/billing.d.ts +106 -0
  24. package/packages/llm-billing/lib/types/billing.d.ts.map +1 -0
  25. package/packages/llm-billing/lib/types/billing.js +163 -0
  26. package/packages/llm-billing/lib/types/billing.js.map +1 -0
  27. package/packages/llm-billing/lib/types/index.d.ts +49 -0
  28. package/packages/llm-billing/lib/types/index.d.ts.map +1 -0
  29. package/packages/llm-billing/lib/types/index.js +155 -0
  30. package/packages/llm-billing/lib/types/index.js.map +1 -0
  31. package/packages/llm-billing/lib/types/invariant.d.ts +16 -0
  32. package/packages/llm-billing/lib/types/invariant.d.ts.map +1 -0
  33. package/packages/llm-billing/lib/types/invariant.js +22 -0
  34. package/packages/llm-billing/lib/types/invariant.js.map +1 -0
  35. package/packages/llm-billing/lib/types/types/balance.d.ts +71 -0
  36. package/packages/llm-billing/lib/types/types/balance.d.ts.map +1 -0
  37. package/packages/llm-billing/lib/types/types/balance.js +187 -0
  38. package/packages/llm-billing/lib/types/types/balance.js.map +1 -0
  39. package/packages/llm-billing/lib/types/types/billing.d.ts +106 -0
  40. package/packages/llm-billing/lib/types/types/billing.d.ts.map +1 -0
  41. package/packages/llm-billing/lib/types/types/billing.js +170 -0
  42. package/packages/llm-billing/lib/types/types/billing.js.map +1 -0
  43. package/packages/llm-billing/lib/types/types/index.d.ts +49 -0
  44. package/packages/llm-billing/lib/types/types/index.d.ts.map +1 -0
  45. package/packages/llm-billing/lib/types/types/index.js +156 -0
  46. package/packages/llm-billing/lib/types/types/index.js.map +1 -0
  47. package/packages/llm-billing/lib/types/types/invariant.d.ts +16 -0
  48. package/packages/llm-billing/lib/types/types/invariant.d.ts.map +1 -0
  49. package/packages/llm-billing/lib/types/types/invariant.js +22 -0
  50. package/packages/llm-billing/lib/types/types/invariant.js.map +1 -0
  51. package/packages/llm-billing/lib/types/types/types.d.ts +63 -0
  52. package/packages/llm-billing/lib/types/types/types.d.ts.map +1 -0
  53. package/packages/llm-billing/lib/types/types/types.js +7 -0
  54. package/packages/llm-billing/lib/types/types/types.js.map +1 -0
  55. package/packages/llm-billing/lib/types/types.d.ts +63 -0
  56. package/packages/llm-billing/lib/types/types.d.ts.map +1 -0
  57. package/packages/llm-billing/lib/types/types.js +7 -0
  58. package/packages/llm-billing/lib/types/types.js.map +1 -0
  59. package/packages/llm-billing/node_modules/.bin/cordis +43 -0
  60. package/packages/llm-billing/node_modules/.bin/cordis.CMD +12 -0
  61. package/packages/llm-billing/node_modules/.bin/cordis.ps1 +41 -0
  62. package/packages/llm-billing/package.json +75 -0
  63. package/packages/llm-billing/src/balance.ts +164 -0
  64. package/packages/llm-billing/src/billing.ts +251 -0
  65. package/packages/llm-billing/src/index.ts +219 -0
  66. package/packages/llm-billing/src/invariant.ts +30 -0
  67. package/packages/llm-billing/src/types.ts +67 -0
  68. package/packages/llm-billing/tests/balance.spec.ts +254 -0
  69. package/packages/llm-billing/tests/billing.spec.ts +216 -0
  70. package/packages/llm-billing/tsconfig.json +42 -0
  71. package/packages/ui-billing/README.i18n.yaml +6 -0
  72. package/packages/ui-billing/README.md +30 -0
  73. package/packages/ui-billing/README.zh.md +30 -0
  74. package/packages/ui-billing/lib/client.js +4466 -0
  75. package/packages/ui-billing/lib/client.js.map +1 -0
  76. package/packages/ui-billing/lib/index.js +11 -0
  77. package/packages/ui-billing/lib/invariant.js +25 -0
  78. package/packages/ui-billing/lib/tsconfig.tsbuildinfo +1 -0
  79. package/packages/ui-billing/lib/types/client/BalanceBadge.d.ts +33 -0
  80. package/packages/ui-billing/lib/types/client/BalanceBadge.d.ts.map +1 -0
  81. package/packages/ui-billing/lib/types/client/BalanceBadge.js +166 -0
  82. package/packages/ui-billing/lib/types/client/BalanceBadge.js.map +1 -0
  83. package/packages/ui-billing/lib/types/client/index.d.ts +20 -0
  84. package/packages/ui-billing/lib/types/client/index.d.ts.map +1 -0
  85. package/packages/ui-billing/lib/types/client/index.js +55 -0
  86. package/packages/ui-billing/lib/types/client/index.js.map +1 -0
  87. package/packages/ui-billing/lib/types/client/locales.d.ts +26 -0
  88. package/packages/ui-billing/lib/types/client/locales.d.ts.map +1 -0
  89. package/packages/ui-billing/lib/types/client/locales.js +40 -0
  90. package/packages/ui-billing/lib/types/client/locales.js.map +1 -0
  91. package/packages/ui-billing/lib/types/index.d.ts +9 -0
  92. package/packages/ui-billing/lib/types/index.d.ts.map +1 -0
  93. package/packages/ui-billing/lib/types/index.js +9 -0
  94. package/packages/ui-billing/lib/types/index.js.map +1 -0
  95. package/packages/ui-billing/lib/types/invariant.d.ts +16 -0
  96. package/packages/ui-billing/lib/types/invariant.d.ts.map +1 -0
  97. package/packages/ui-billing/lib/types/invariant.js +24 -0
  98. package/packages/ui-billing/lib/types/invariant.js.map +1 -0
  99. package/packages/ui-billing/node_modules/.bin/cordis +43 -0
  100. package/packages/ui-billing/node_modules/.bin/cordis.CMD +12 -0
  101. package/packages/ui-billing/node_modules/.bin/cordis.ps1 +41 -0
  102. package/packages/ui-billing/node_modules/.bin/vite +43 -0
  103. package/packages/ui-billing/node_modules/.bin/vite.CMD +12 -0
  104. package/packages/ui-billing/node_modules/.bin/vite.ps1 +41 -0
  105. package/packages/ui-billing/package.json +76 -0
  106. package/packages/ui-billing/src/client/BalanceBadge.module.css +184 -0
  107. package/packages/ui-billing/src/client/BalanceBadge.tsx +266 -0
  108. package/packages/ui-billing/src/client/index.ts +80 -0
  109. package/packages/ui-billing/src/client/locales.ts +45 -0
  110. package/packages/ui-billing/src/css-modules.d.ts +6 -0
  111. package/packages/ui-billing/src/index.ts +9 -0
  112. package/packages/ui-billing/src/invariant.ts +32 -0
  113. package/packages/ui-billing/tests/balance-badge.client.spec.tsx +267 -0
  114. package/packages/ui-billing/tests/browser-plugin.client.spec.ts +205 -0
  115. package/packages/ui-billing/tsconfig.json +36 -0
  116. package/packages/ui-billing/tsdown.config.ts +3 -0
@@ -0,0 +1,11 @@
1
+ //#region lib/types/index.js
2
+ /**
3
+ * Account-balance badge plugin, node half. Pure UI plugin: the empty apply
4
+ * exists so the plugin appears in the host cordis.yml / Loader; the browser
5
+ * half ships via exports["./client"], discovered through the package.json
6
+ * dshClient declaration.
7
+ */
8
+ /** Host plugin body — no host-side behavior for this source plugin. */
9
+ function apply() {}
10
+ //#endregion
11
+ export { apply };
@@ -0,0 +1,25 @@
1
+ //#region lib/types/invariant.js
2
+ /**
3
+ * Package-owned invariant companion for `@rayadesu/dsh-client-ui-billing`.
4
+ * @module @rayadesu/dsh-client-ui-billing/invariant
5
+ */
6
+ const PACKAGE_NAME = "@rayadesu/dsh-client-ui-billing";
7
+ /** Cordis companion plugin name. */
8
+ const name = "client-ui-billing-invariant";
9
+ /** Service required before the companion can reserve package ownership. */
10
+ const inject = ["invariants"];
11
+ /**
12
+ * No runtime invariant: this package is a read-only projection of one Remote
13
+ * snapshot onto one header slot entry. It emits no cordis events, owns no
14
+ * cross-plugin mutable state, and its single slot registration proves disposal
15
+ * through the HMR-safety spec.
16
+ */
17
+ const install = () => {};
18
+ /**
19
+ * Register this package's invariant companion.
20
+ * @param ctx - Cordis context carrying the invariant service.
21
+ * @returns the installed registration's disposer after setup succeeds.
22
+ */
23
+ const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
24
+ //#endregion
25
+ export { apply, inject, name };
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/css-modules.d.ts","../../../../node_modules/.pnpm/@types+react@18.3.31/node_modules/@types/react/global.d.ts","../../../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../../../node_modules/.pnpm/@types+prop-types@15.7.15/node_modules/@types/prop-types/index.d.ts","../../../../node_modules/.pnpm/@types+react@18.3.31/node_modules/@types/react/index.d.ts","../../../../node_modules/.pnpm/@types+react@18.3.31/node_modules/@types/react/jsx-runtime.d.ts","../src/index.ts","../../../../vendor/cosmokit/lib/types/array.d.ts","../../../../vendor/cosmokit/lib/types/types.d.ts","../../../../vendor/cosmokit/lib/types/misc.d.ts","../../../../vendor/cosmokit/lib/types/string.d.ts","../../../../vendor/cosmokit/lib/types/time.d.ts","../../../../vendor/cosmokit/lib/types/index.d.ts","../../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../../vendor/cordis/lib/types/utils.d.ts","../../../../vendor/cordis/lib/types/registry.d.ts","../../../../vendor/cordis/lib/types/reflect.d.ts","../../../../vendor/cordis/lib/types/fiber.d.ts","../../../../vendor/cordis/lib/types/events.d.ts","../../../../vendor/cordis/lib/types/logger.d.ts","../../../../vendor/cordis/lib/types/context.d.ts","../../../../vendor/cordis/lib/types/service.d.ts","../../../../vendor/cordis/lib/types/index.d.ts","../../../../vendor/schemastery/lib/types/index.d.ts","../../../runtime-diagnostics/invariants/lib/types/index.d.ts","../src/invariant.ts","../../../llm/llm-billing/lib/types/types.d.ts","../../../typert/protocol/lib/types/types.d.ts","../../../typert/protocol/lib/types/index.d.ts","../../../util/brand/lib/types/index.d.ts","../../../host/plugin-inventory/lib/types/types.d.ts","../../../attachment/attachment/lib/types/brand.d.ts","../../../attachment/attachment/lib/types/types.d.ts","../../../interaction/commands/lib/types/brand.d.ts","../../../interaction/commands/lib/types/types.d.ts","../../../attachment/attachment/lib/types/error.d.ts","../../../attachment/attachment/lib/types/admission.d.ts","../../../attachment/attachment/lib/types/index.d.ts","../../../llm/llm/lib/types/brand.d.ts","../../../llm/llm/lib/types/message.d.ts","../../../llm/llm/lib/types/types.d.ts","../../../llm/llm/lib/types/retry-policy.d.ts","../../../llm/llm/lib/types/call-config.d.ts","../../../llm/llm/lib/types/error.d.ts","../../../llm/llm/lib/types/attribution.d.ts","../../../llm/llm/lib/types/never.d.ts","../../../llm/llm/lib/types/api-key.d.ts","../../../llm/llm/lib/types/content.d.ts","../../../llm/llm/lib/types/assembler.d.ts","../../../llm/llm/lib/types/index.d.ts","../../../core/session/lib/types/json.d.ts","../../../core/session/lib/types/types.d.ts","../../../interaction/commands/lib/typert.remote-client.d.ts","../../../context/file-reference/lib/types/types.d.ts","../../../context/file-reference/lib/typert.remote-client.d.ts","../../../goal/goal/lib/types/types.d.ts","../../../goal/goal/lib/types/client.d.ts","../../../goal/goal/lib/typert.remote-client.d.ts","../../../host/plugin-inventory/lib/typert.remote-client.d.ts","../../../feedback/message-feedback/lib/types/types.d.ts","../../../feedback/message-feedback/lib/typert.remote-client.d.ts","../../../context/session-reference/lib/types/types.d.ts","../../../context/session-reference/lib/typert.remote-client.d.ts","../../../api/remotes/lib/types/remote-events.d.ts","../../../api/remotes/lib/types/types.d.ts","../../../extensions/cordis-host-runner/lib/types/types.d.ts","../../../credentials/credentials/lib/types/types.d.ts","../../../preset/agent-presets/lib/types/types.d.ts","../../../settings/settings/lib/types/types.d.ts","../../../session/session-projection/lib/types/types.d.ts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/json-schema.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/standard-schema.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/registries.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/to-json-schema.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/util.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/versions.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/schemas.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/checks.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/errors.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/core.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/parse.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/regexes.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ar.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/az.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/be.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/bg.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ca.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/cs.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/da.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/de.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/el.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/en.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/eo.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/es.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fa.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fi.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fr.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/fr-ca.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/he.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/hr.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/hu.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/hy.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/id.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/is.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/it.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ja.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ka.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/kh.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/km.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ko.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/lt.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/mk.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ms.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/nl.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/no.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ota.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ps.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/pl.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/pt.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ro.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ru.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/sl.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/sv.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ta.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/th.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/tr.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ua.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/uk.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/ur.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/uz.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/vi.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/zh-cn.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/zh-tw.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/yo.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/locales/index.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/doc.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/api.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/json-schema-processors.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/json-schema-generator.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/core/index.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/errors.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/parse.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/schemas.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/checks.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/compat.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/from-json-schema.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/iso.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/coerce.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/external.d.cts","../../../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/index.d.cts","../../../host/apiproxy/lib/types/api/rpc.d.ts","../../../interaction/user-questions/lib/types/types.d.ts","../../../interaction/user-approval/lib/types/types.d.ts","../../../core/tools/lib/types/presentation.d.ts","../../../jobs/jobs/lib/types/brand.d.ts","../../../host/apiproxy/lib/types/api/jobs.d.ts","../../../host/apiproxy/lib/types/api/workspace.d.ts","../../../host/apiproxy/lib/types/api/events.d.ts","../../../host/apiproxy/lib/types/api/sessions.d.ts","../../../host/apiproxy/lib/types/api/host.d.ts","../../../host/apiproxy/lib/types/api/agent-presets.d.ts","../../../host/apiproxy/lib/types/api/skills.d.ts","../../../host/apiproxy/lib/types/api/subagents.d.ts","../../../host/apiproxy/lib/types/api/goals.d.ts","../../../host/apiproxy/lib/types/api/settings.d.ts","../../../host/apiproxy/lib/types/api/credentials.d.ts","../../../host/apiproxy/lib/types/api/llm.d.ts","../../../host/apiproxy/lib/types/api/downloads.d.ts","../../../host/apiproxy/lib/types/api/approvals.d.ts","../../../host/apiproxy/lib/types/api/questions.d.ts","../../../host/apiproxy/lib/types/api/rpc.schema.d.ts","../../../host/apiproxy/lib/types/api/session-search.d.ts","../../../host/apiproxy/lib/types/api/rpc-map.d.ts","../../../host/apiproxy/lib/types/api/index.d.ts","../../../host/apiproxy/lib/types/fetch/client.d.ts","../../connection/lib/types/client/api.d.ts","../../connection/lib/types/client/connection.d.ts","../../connection/lib/types/rpc.d.ts","../../connection/lib/types/client/index.d.ts","../../../api/gateway/lib/types/client/index.d.ts","../../../extensions/cordis-host-runner/lib/typert.remote-client.d.ts","../../../api/remotes/lib/types/client/index.d.ts","../../ui-slots/lib/types/renderer.d.ts","../../ui-slots/lib/types/store.d.ts","../../ui-slots/lib/types/index.d.ts","../../runtime/lib/types/client/contract/store.d.ts","../../../llm/llm-retry/lib/types/brand.d.ts","../../../llm/llm-retry/lib/types/types.d.ts","../../runtime/lib/types/client/sessions/pending.d.ts","../../runtime/lib/types/client/sessions/context-provenance.d.ts","../../runtime/lib/types/client/contract/conversation.d.ts","../../runtime/lib/types/client/sessions/conversation.d.ts","../../runtime/lib/types/client/contract/session.d.ts","../../runtime/lib/types/client/agents/scope.d.ts","../../runtime/lib/types/client/sessions/conversation-assembler.d.ts","../../runtime/lib/types/client/sessions/lineage.d.ts","../../runtime/lib/types/client/sessions/remotes.d.ts","../../runtime/lib/types/client/sessions/projection-store.d.ts","../../runtime/lib/types/client/sessions/session.d.ts","../../runtime/lib/types/client/sessions/manager.d.ts","../../runtime/lib/types/client/contract/sessions.d.ts","../../runtime/lib/types/client/sessions/service.d.ts","../../../core/session/lib/types/surface.d.ts","../../runtime/lib/types/client/slots.d.ts","../../runtime/lib/types/client/conversation/definition-registry.d.ts","../../runtime/lib/types/client/conversation/event-registry.d.ts","../../runtime/lib/types/client/conversation/view-registry.d.ts","../../runtime/lib/types/client/sessions/conversation-location-index.d.ts","../../runtime/lib/types/client/sessions/subagent-lineage.d.ts","../../runtime/lib/types/client/sessions/provide.d.ts","../../runtime/lib/types/client/contract/sessions-port.d.ts","../../runtime/lib/types/client/contract/workspaces.d.ts","../../runtime/lib/types/client/workspaces/workspace.d.ts","../../runtime/lib/types/client/workspaces/manager.d.ts","../../runtime/lib/types/client/workspaces/service.d.ts","../../runtime/lib/types/client/workspaces/path.d.ts","../../runtime/lib/types/client/contract/settings-scope.d.ts","../../runtime/lib/types/client/sessions/partial.d.ts","../../runtime/lib/types/client/sessions/assistant-timing.d.ts","../../runtime/lib/types/client/sessions/failure-display.d.ts","../../runtime/lib/types/client/sessions/request-inspection.d.ts","../../runtime/lib/types/client/sessions/conversation-context.d.ts","../../runtime/lib/types/client/index.d.ts","../../ui-primitives/lib/types/statedot.d.ts","../../ui-primitives/lib/types/disclosurerow.d.ts","../../ui-primitives/lib/types/button.d.ts","../../ui-primitives/lib/types/pill.d.ts","../../ui-primitives/lib/types/input.d.ts","../../ui-primitives/lib/types/menu.d.ts","../../ui-primitives/lib/types/useanchoredmaxheight.d.ts","../../ui-primitives/lib/types/useanchoredposition.d.ts","../../ui-primitives/lib/types/usedismissonoutsidepointer.d.ts","../../ui-primitives/lib/types/hovercard.d.ts","../../ui-primitives/lib/types/modal.d.ts","../../ui-primitives/lib/types/onboardingsurface.d.ts","../../ui-primitives/lib/types/riskconfirmation.d.ts","../../ui-primitives/lib/types/connectionbanner.d.ts","../../ui-primitives/lib/types/icons/props.d.ts","../../ui-primitives/lib/types/fishlogo.d.ts","../../ui-primitives/lib/types/brandwordmark.d.ts","../../ui-primitives/lib/types/tooltip.d.ts","../../ui-primitives/lib/types/toast.d.ts","../../ui-primitives/lib/types/clipboard.d.ts","../../ui-primitives/lib/types/jsontree.d.ts","../../ui-primitives/lib/types/terminalblock.d.ts","../../ui-primitives/lib/types/readblock.d.ts","../../ui-primitives/lib/types/diffblock.d.ts","../../ui-primitives/lib/types/searchblock.d.ts","../../ui-primitives/lib/types/webblock.d.ts","../../ui-primitives/lib/types/markdown/codeblock.d.ts","../../ui-primitives/lib/types/markdown/jsonblock.d.ts","../../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../ui-primitives/lib/types/markdown/incremental.d.ts","../../ui-primitives/lib/types/markdown/render.d.ts","../../ui-primitives/lib/types/markdown/markdowntext.d.ts","../../ui-primitives/lib/types/markdown/messagetext.d.ts","../../ui-primitives/lib/types/markdown/plain-text.d.ts","../../ui-primitives/lib/types/icons/index.d.ts","../../ui-primitives/lib/types/index.d.ts","../../ui-conversation/lib/types/client/contract/chat-nodes.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/assistant.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/command.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/compaction.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/fallback.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/message.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/retry.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/tool.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/turn-error.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/turn-max-tokens.d.ts","../../ui-conversation/lib/types/client/conversation-nodes/turn-tail.d.ts","../../ui-conversation/lib/types/client/locales.d.ts","../../ui-conversation/lib/types/client/apply.d.ts","../../ui-input-trigger/lib/types/client/locales.d.ts","../../ui-input-trigger/lib/types/types.d.ts","../../ui-input-trigger/lib/types/core/contract.d.ts","../../ui-input-trigger/lib/types/client/controller.d.ts","../../ui-input-trigger/lib/types/client/contract.d.ts","../../ui-input-trigger/lib/types/client/service.d.ts","../../ui-input-trigger/lib/types/client/slots.d.ts","../../ui-input-trigger/lib/types/client/menuview.d.ts","../../ui-input-trigger/lib/types/client/index.d.ts","../../ui-conversation/lib/types/client/input/blocks.d.ts","../../ui-conversation/lib/types/client/contract/queue.d.ts","../../ui-conversation/lib/types/submission-settings.d.ts","../../ui-conversation/lib/types/client/contract/composer-submission.d.ts","../../ui-conversation/lib/types/client/input/contract.d.ts","../../ui-conversation/lib/types/client/contract/views.d.ts","../../ui-conversation/lib/types/client/stores.d.ts","../../ui-conversation/lib/types/client/contract/slots.d.ts","../../ui-conversation/lib/types/client/service.d.ts","../../ui-conversation/lib/types/client/index.d.ts","../src/client/locales.ts","../src/client/balancebadge.tsx","../../../llm/llm-billing/lib/typert.remote-client.d.ts","../../locale/lib/types/locale-settings.d.ts","../../locale/lib/types/locales/zh.d.ts","../../locale/lib/types/locales/en.d.ts","../../locale/lib/types/locales/index.d.ts","../../locale/lib/types/locales/settings.d.ts","../../locale/lib/types/client/settings-store.d.ts","../../locale/lib/types/client/languagerow.d.ts","../../locale/lib/types/client/index.d.ts","../src/client/index.ts","../../../../scripts/types/client-build-environment/index.d.ts"],"fileIdsList":[[323],[73,74,75],[76],[220],[211],[211,214],[146,206,209,211,212,213,214,215,216,217,218,219],[142,144,214],[211,212],[143,211,213],[144,146,148,149,150,151],[146,148,150,151],[146,148,150],[143,146,148,149,151],[142,144,145,146,147,148,149,150,151,152,153,206,207,208,209,210],[142,144,145,148],[144,145,148],[148,151],[142,143,145,146,147,149,150,151],[142,143,144,148,211],[148,149,150,151],[150],[154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205],[94,96,99,100,106,109,112,121,124,126,129,130,132,134,136,137,138,139,140,251,252,253,294,346,353,361,363,366,374],[94,96,99,100,102,106,109,112,121,123,124,125,126,129,130,132,133,134,136,137,138,139,140,250,251,252,253,259,294,346,353,361,363,366,374],[100,124,126,129,130,132,134,135,252,294,366],[104,109],[101],[94,96,99,103,104,106,107,108,109,112,121,137,138,139,140,251,253,294,346,353,361,363,374],[103],[106,110,112,123,225,245,246,259],[247],[94,96,99,106,109,112,121,137,138,139,140,247,248,249,251,253,294,346,353,361,363,374],[245],[94,96,99,106,109,112,121,137,138,139,140,251,253,256,275,294,333,342,344,346,351,353,361,363,367,370,371,372,373,374,375],[76,256,275,294,344,351,353,361,372,374,375],[294,333,342],[95],[368,369],[106,123,253,259],[100,109,124,126,129,130,132,134,136,252,253,257,263,294,366],[253,257],[94,96,99,106,109,112,121,137,138,139,140,251,253,256,257,264,265,271,273,275,294,344,346,351,353,361,363,374,375],[256,275,294,344,351,353,361,374,375],[253,257,286],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,262,276,294,346,353,361,363,374],[94,96,99,100,106,109,112,121,124,126,129,130,132,134,136,137,138,139,140,250,251,252,253,256,257,260,261,262,263,264,265,266,269,270,271,272,273,274,275,277,278,279,280,281,283,285,286,287,288,289,290,291,292,293,294,344,346,351,353,361,363,366,374,375],[106,111,123,259,263],[262],[263,292],[106,123,259,262],[105,106,109,110,112,123,253,259,260,261,262],[127,141,230,253,260],[253,266,267,268,270],[112,263],[253],[127,141,230,257],[256,273,275,294,344,351,353,361,374,375],[94,96,99,106,109,112,121,127,137,138,139,140,141,230,251,253,256,257,260,264,265,266,268,271,272,275,294,344,346,351,353,361,363,374,375],[94,96,99,100,106,109,112,121,124,126,129,130,132,134,136,137,138,139,140,251,252,253,263,264,266,268,269,294,346,353,361,363,366,374],[253,273],[94,96,99,106,109,112,121,137,138,139,140,251,253,256,275,294,344,346,351,353,361,363,374,375],[253,284],[94,96,99,106,109,112,121,137,138,139,140,251,253,257,282,283,285,294,346,353,361,363,374],[72,76,77,98,256,275,294,331,333,334,335,336,337,338,339,340,341,342,344,351,353,361,363,364,374,375],[77,100,124,126,129,130,132,134,136,252,256,275,294,333,334,335,336,337,338,339,340,341,342,344,351,353,361,363,364,365,366,374],[77],[77,94,96,99,106,109,112,121,137,138,139,140,251,253,294,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,256,275,294,343,346,351,353,361,363,374,375],[356],[76,94,96,99,106,109,112,121,137,138,139,140,250,251,253,256,275,294,331,332,333,342,344,346,351,353,354,357,358,359,360,361,363,374,375],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,332,333,334,335,336,337,338,339,340,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,332,333,335,336,337,338,339,340,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,334,336,337,338,339,340,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,334,335,337,338,339,340,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,334,335,336,338,339,340,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,332,333,334,335,336,337,339,340,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,332,333,334,335,336,337,338,340,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,334,335,336,337,338,339,341,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,334,335,336,337,338,339,340,342,346,353,361,363,374],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,332,333,334,335,336,337,338,339,340,341,342,343,344,346,353,358,359,361,362,374],[101,294,333,342,353,355,357],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,342,346,353,354,355,357,358,361,363,374],[294,333,342,359],[294,333,342,346,348],[294,333,342,346,347],[94,96,99,106,109,112,121,137,138,139,140,251,253,256,275,294,333,342,344,345,346,347,348,349,350,351,352,361,363,374,375],[76,256,275,294,344,351,353,361,374,375],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,342,346,348,349,353,361,363,374],[256,275,294,333,342,344,347,353,361,374,375],[346],[94,96,99,106,109,112,121,137,138,139,140,251,253,294,333,342,353,361,363,374],[76,309],[295,296,297,298,299,300,301,302,303,304,305,306,307,308,310,311,312,313,314,315,316,317,318,319,320,321,322,327,328,329,330],[324],[72,76,326],[76,324,325],[76,254,255],[100,106,123,124,125,126,129,130,132,134,136,252,259,294,366],[100,106,123,124,126,129,130,132,133,134,136,252,259,294,366],[106,111,112,121,123,230,259],[106,121,123,133,230,259],[101,121,122,133,230],[121,133,230],[94,96,99,101,106,109,112,121,137,139,140,251,253,294,346,353,361,363,374],[100,106,123,124,126,129,130,132,134,136,137,252,259,294,366],[94,96,99,101,106,109,112,121,123,138,139,140,251,253,259,294,346,353,361,363,374],[100,124,126,129,130,131,132,134,136,252,294,366],[101,106,110,123,259],[100,106,123,124,126,128,129,130,132,134,136,252,259,294,366],[127],[101,141,230],[106,123,222,259],[106,123,224,259],[222],[106,123,259],[106,110,112,123,222,223,224,225,227,228,259],[101,106,123,222,259],[222,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244],[226],[222,230],[106,123,223,259],[222,228,230,231,232,233,234,235,236,237,238],[101,106,110,123,221,259],[221,222],[106,109,110,112,121,123,127,133,141,222,228,229,230,259],[106,110,112,123,222,230,259],[221,222,244,245],[100,102,124,126,129,130,132,134,136,252,294,366],[100,104,106,123,124,126,129,130,132,134,136,252,259,294,366],[94,96,99,105,109,112,121,123,137,138,139,140,251,253,259,294,346,353,361,363,374],[98,100,106,123,124,126,129,130,132,134,136,252,259,294,366],[106,112,123,258],[111,112],[110,112],[94,96,99,106,109,110,111,112,113,114,115,116,117,118,119,120,121,137,138,139,140,251,253,294,346,353,361,363,374],[94,96,99,101,106,109,110,111,121,137,138,139,140,251,253,294,346,353,361,363,374],[94,96,99,106,109,112,121,123,137,138,140,251,253,259,294,346,353,361,363,374],[94,95,96,99,106,109,112,121,137,138,139,140,251,253,294,346,353,361,363,374],[94,96,99,101,106,109,112,121,137,138,139,251,253,294,346,353,361,363,374],[84,86,87,88,89,90,91],[84,87,88,89,90,91,92],[84,85,86,87,88,89,90,91,92],[86,87,88,89,90,91,92,93],[86,87,88,89,90,91,92],[79,80,81,82,83],[84,85]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},"e28410d74a0d763364c04fa690c2ca2202ad3019c74f8f5205e8dc6cba69c02f",{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"09ddcfcfbe77a8232d155ca1030005106b1328f6210df43629d0be750da07c16","affectsGlobalScope":true,"impliedFormat":1},{"version":"b838d4c72740eb0afd284bf7575b74c624b105eff2e8c7b4aeead57e7ac320ff","impliedFormat":1},{"version":"ef069cb6b44cf10c19ee840b400c33fce9aec60c5f5e7e96d3c3f9af1e7230ef","signature":"b2cc4093374d659a762537e6560813131edd14fcb76d106033cf197794df971a"},"fb6f2007d60e8b519a2ef0c5a27026ddfe06418ae6261c4eb0cb670cca5e1bc2","a48f1b69ec0b94b16c7ece2cf6d6003cc8d0c329538117c1c364d8525a100850","cd5713ac354e4869fdf837e12d24d3ae14fd9d94a5bb2d340df63b899b74e6ca","56210599298d6eca6285eab99c7e9333d7e275c3a73a7f401b3055e8d55c67e8","2845576622e416da9871e1f3c788ba41dc4f24eb764362b10eceeb0dbaa67208","f0421e04e2a5238754cf444bf2a56fe7e7a94a08c14c1f9d063ff51c85825823",{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},"967b227fad024ba8a7c32127534089bce5adc800840b0288f44d41c4c849278e","ffd229492af3cb444c01e8e51a78dfdbed670940bac40dde083675d57d6984fc","57cdef8252cb041b4b646cc9e80dcb27d2180bb78fcf95761136d99be4079cb3","eb5fd8d19b0330da4dccb6cab3eae0304f056ac8fbd5bd9589ce48f0920bff78","db565a086622cbe616a950186dc90e82a74060864b9cd1d0f25285860daea9b4","71087395cc862f52662ab2629a0f3838f8f2aaf84eb40c97f4f4004f2fcbbed6","1e2e6cfcab26ae01d7f2dd1f78a1d25ddb7f3b2e27f50c9eb3b54ee206a87884","489ec23ef8dc0e869cf3d8d77a39ba83ab24e5e71362320f5662491b3dc5bd04","c93dd79fae382105510c69cc8eef95a96c8c43e50b47e16efa98a3f9e76f304b",{"version":"bb2f86815e0ffd28aff945931828a38ab6e6b1eb33b93cbb108315c2e94f8b2b","affectsGlobalScope":true},"16532f168a74771848f13897c0da2edb6d037bb3b4f99c1fbb6f49ce9e488e0d",{"version":"4a3a3a9bc725bd4d3b262e5463e100bba5857b6d54aace5ea5624f11b2f4a90d","signature":"e9fbc1b11c17492fd7d500fbf19d56c245d704b169bb7b47767cc2c82bb4998c"},"d811f5ee9ad2ccfaf2980a7d1e7b4f9797b80a032f24dd521a89d30078e1a154","d6585a9181ac7c311a9f9556e2531ed225178847fe73ad1e2e3250945d59dc81","15f86048d9df1bcec1317443cd304c41dc8906fa484b05b2062293f96390f114","2f01fb0f2718fff91e8d85b616785a6b32169fa6ec8c8a38be17f7050dcf1118","d28499e3f9ade07ebf8816126c1ed4ac026d605246e5a3b1b6ad5d6fab7596d2","c21e95ccf334161a3a22b83d43332473de75ac557f8f23cbdbbc3026b8a1e715","d4bfc90aa9f92aaafd65b1bf95997223036c7c128fa9f4205242e6950d0a8d05","2e49324640497b6e1a7f9dff270bbdbc917eda0c16172f7adc058b603df761b1","415a9fba68f75dacc39e48e12c95423560e735d50de7b60308fe40f528df05e7","0ff65f6b0fc449f120ceecb6b3d119eaf9b6ff9723ff05484ca9e247a74387a2","dcf7208b6ff2b4f1fb5a516a3f35ef00ebb9df79d24f7608adcb17de9bda4280","ae890648c1a3a5c3ba59db97314b77438c2eb9195e807a1e124dd802bbc4ab7b","38c927af36520cdc6d008ba1ede949eec511372e499465dca3ac29d26986fc38","0b2a45c74d516225149eeb609519f1bee55b1222b70209c21920f6d0e8d38628","a57c2af38d7fdc3a49e91e54fdda0edbdb085b9541aa7e0e6813bff50e0db05b","8fcd1d7a60d4f123f9c9242e565a8df5fe7eb2562edf176ec1c7575f729a0b2b","e86c0ffc120fdeac875b3c5a9105a55c1c7a27aa4051e7c74441dc36024101dd","4abfc87dc2dccc299f7cb0aa039632aad2374013bca5bc424bd858316c81b132","c3c6223f2d64f73b6a0a145b968764301335856a66292c3f31f9d488ba429c9c","9ea550e4aad089cff5f5785fbfade62fcdb5c56be7edf27b37dc54073406d772","36fe909bb584c7be20fb9d2b60dbb0f0460b27938bcd7b922446dd7480c0fd31","73afa306a156043e41af2ee7faf44d620534bc403e472d5573750cd03c36be0d","aeb7c18a61c3976a09f59bc8b1bf9e0f8574eb281630d33a8cd198af8a1c962a","fe29237b3634314eb571bf62f57fcc05b0cb6d0415a3ba0ef930e7d76dfa124f","004a30329807ba668c3cae1f8ebf3ed287e570d12a9741488813d0006cf09b10","9fa49df1a34faec711be3cdac162e7f339e438ea10ec94ba1e17fbf426bba751","29263f68e2bcb12e3c5c62d8036dd20b048e4d305fc572dd4aeebe800a7f32dd","ca4ac68593714b54fb594f9d7b6c1a5240aa3fc629f485402493dfb8002ec952","75e6665dd7b19a105f51ac17b1a51afa2d95cd1c1007e2041bc8f61b2dd216cd","0cc3460f7aa9d34e1299688fc80c71f25b24669666169aa5bc5ebb9bdd320d7e","0c7b8d2857313aeb4afca7348005ddd7b67ef4169382e426f411cd10546cd0f5","b2e293741feefca6e13756b720d2d519d6e307bdb9ecb772f9fc1a373754886c","c520e420d9b6b86b8e6151ec71f70b4c84ea9584a16e4f92cb5427a28d61fc3e","33ec9916b3a5aa0f6af0673bb7992a0f89ae550e3f90b7ffc955cc2f85f7e381","25fce7dbb2f836edbf416ebb057a36a21fa0fcb6847a2f37044746d9c2390f48","5c79fed5493247365c071a5e30ac29a07b4886e1a9ce70235f5477e07b8628d6","78e1065c0e2fea434389be0fa01726b4e021f679d92aff289e8cb5e760bc5e75","6a8db86d11f60671e3bd5f76cc1069b26be83b59910c97264a9442218799527f","a02b701b7e408556683d7cbcf2569538aff8d3a363e5c1ca2ccb1ba47321f503","1a41ee2c14aa6ddb3a212c758b8dd4f2c69c246506aa9d18010d0076477541da","d68c09dee779abc72ab89a8657aaa38d9837ab7d187b616a0432b29dc702ce84","c3393fcc82db59c794f6a5a3d465c208c4984583b75ed11149c110e7f3ab52b9","91fc910e46d425a5803c9bf89112c63b59b89113a1f307d8ee82f6290958318e","7f08232aefb82994af1cb317a8a7ea59dd962068b80dad3d0be245c54821565e",{"version":"c1a2e05eb6d7ca8d7e4a7f4c93ccf0c2857e842a64c98eaee4d85841ee9855e6","impliedFormat":1},{"version":"835fb2909ce458740fb4a49fc61709896c6864f5ce3db7f0a88f06c720d74d02","impliedFormat":1},{"version":"6e5857f38aa297a859cab4ec891408659218a5a2610cd317b6dcbef9979459cc","impliedFormat":1},{"version":"ead8e39c2e11891f286b06ae2aa71f208b1802661fcdb2425cffa4f494a68854","impliedFormat":1},{"version":"40ba6c32eb732a09e4446ade5cb6ad0c147f186f9c9dc6878b90b4418ad9f6ea","impliedFormat":1},{"version":"fdd814741843f85c98281522c58f5a646590ba9019fad2efaa95987655e0611b","impliedFormat":1},{"version":"c78aff4fb58b28b8f642d5095fc7eeb79f00e652a67caa19693af1adabb833c9","impliedFormat":1},{"version":"f80a08ced8818dc99359c0acd5b3f12762e1ce53758007759b0d4e503cbf4a5e","impliedFormat":1},{"version":"37935fa7564bcc6e0bc845b766a24391098d26f7c8245d6e8ab37bc016816e94","impliedFormat":1},{"version":"68add36d9632bc096d7245d24d6b0b8ad5f125183016102a3dad4c9c2438ccb0","impliedFormat":1},{"version":"3a819c2928ee06bbcc84e2797fd3558ae2ebb7e0ed8d87f71732fb2e2acc87b4","impliedFormat":1},{"version":"0f8a263f4c8595c8a07de52e3f3927640c44386c1aa2984de9eae50d75e613b2","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"e0bfe601a9fdf6defe94ed62dc60ac71597566001a1f86e705c95e431a9c816d","impliedFormat":1},{"version":"346fffde7c32da87c2196eb7494422449dc2ca82d3b4e6bf55be1d1a33ffc2b0","impliedFormat":1},{"version":"add0ce7b77ba5b308492fa68f77f24d1ed1d9148534bdf05ac17c30763fc1a79","impliedFormat":1},{"version":"8b5875e4958528042103fdd775e106a7f76bafc29709f0690df9a7d2241d52a7","impliedFormat":1},{"version":"2f67911e4bf4e0717dc2ded248ce2d5e4398d945ee13889a6852c1233ea41508","impliedFormat":1},{"version":"d8430c275b0f59417ea8e173cfb888a4477b430ec35b595bf734f3ec7a7d729f","impliedFormat":1},{"version":"69364df1c776372d7df1fb46a6cb3a6bf7f55e700f533a104e3f9d70a32bec18","impliedFormat":1},{"version":"6042774c61ece4ba77b3bf375f15942eb054675b7957882a00c22c0e4fe5865c","impliedFormat":1},{"version":"5a3bd57ed7a9d9afef74c75f77fce79ba3c786401af9810cdf45907c4e93f30e","impliedFormat":1},{"version":"aef26cf95593c8ace1c62c4724f9afac77bdfa756fb8a00613cd152117cb2f43","impliedFormat":1},{"version":"30db853bb2e60170ba11e39ab48bacecb32d06d4def89eedf17e58ebab762a65","impliedFormat":1},{"version":"e27451b24234dfed45f6cf22112a04955183a99c42a2691fb4936d63cfe42761","impliedFormat":1},{"version":"2316301dd223d31962d917999acf8e543e0119c5d24ec984c9f22cb23247160c","impliedFormat":1},{"version":"58d65a2803c3b6629b0e18c8bf1bc883a686fcf0333230dd0151ab6e85b74307","impliedFormat":1},{"version":"e818471014c77c103330aee11f00a7a00b37b35500b53ea6f337aefacd6174c9","impliedFormat":1},{"version":"268fd6d9f2e807a39a6c5aa654b00f949feb63d3faa7dd0f9bba7dde9172159c","impliedFormat":1},{"version":"29f823cbe0166e10e7176a94afe609a24b9e5af3858628c541ff8ce1727023cd","impliedFormat":1},"683fe67d7a13d12dc62decf783e0dc8bc99e213e358037d97390808f77e5692a","07c4b8769a51227f1a005af06f1a6fbb8d7eb4309d6857374c8001eb9fd7973e","389cc6cd2ccd9c0484f35777a4e6c54d0d27269752a19db913775e1d9006287d","bd37789e4e28a495dfd85f2f02c42d47a8e62d485a29cf3ef88635c9ee3c989d","1cb4e9764ff3996b3a1da4566fc29089428d7b1867af7302ae3445fe567bb240","6ffc9543cf17e458c19e2f82505424ec3df266a3f10afdc0b9420f4f2a74b08f","6c4e8c00b731daadf0ee8fb3bdce2e0abbd0111b54ee8048e85a68862637ebe3","b736df03a9997e2797e24ca816adee8e17dd0c9a72dc861c2f077b3fab2eeade","61d9f7feaedb47ab26e339ee2abb7c0f5c8bb13de8a9def0122ce68e8a284a37","072246dfd81a36b65ddf31d8708fd86bc9172322e4698d7ca7c983b8959deaeb","1c3a7b85fb08cab0c21b3edf878d31b9afc73f7a1f248d4eb968ae681cdb85a8","075056013c976ebece56d95d831c47f74fd24fe6f80c8a8a6f7c32d294203bd3","fbd5d2599bb86ffd2809e598058d66b4fa795e6f0114d09d17bf6a1ecf3bc159","70ba094e83e1e3f59d12ff19700641b8ac088c282d8c408efe69818cc9c83393","ab91c0dd5258cacf41e91c085c7d8c573aa6e191fc0f93fefc6a5fa8bbda19f5","44ee4eb14dd0c3fa8bd77f03878470dee9db775a530a55b84fbb51fb22a05d09","baaac7325e230684ef6e732308e203b637fdd6ea8a7bfc631ecdc72522fc26c3","dba0047ddcf9964eb29e78a8f0e2013dd3c674b1a45e221e3737c09d568394e4","7f3cfe6adda3d82d0c10ed9810d4ff644a1b8771d4bdfc06dd68de9f574a50e5","c4ff95027b4c71f37236e1ae2dcbf0e152efdc91a9025cd037f5c6b0ce274e4d","9f2d50dc3f15ce15385bbb676e0e741e0bd6a6a0940aaeb44611a4aaa77c4c4b","a9d0b68c36af25bfc1bdb7219680f4c36c3d5925c5bd3e81f684ec2904a5c3bd","92d9efdc4b059cfb03ded6ab8b1a28b0b68141f77be8abdd9be8c57d4ba75b9c","f6acd59e43c2bcfb4883bd6c097d1efa19030fcecf3a5818e84ad7e27ea90108","86d2db3c5e4914049d41a95245348309681d28dd3a73413b5232cccdad4b0d9b","edbbd1f8326969f85f810e8c3a5d1f255fbc4b0849b43d8d2996c5465c5e43df","fc6fba87914180f04af456d6aa84841bc5604223cfd569948428549673ce729b","c7419af7b50a1be3a7dc274bb4661d1d03e64c88b4369f21c0aa87370ae66871","4636a975b8bf49ff0440e31b847a4d7be078f865c5aebdff775d1b856cbfc791","a3b7f7ed016f1a0fad1a382ada5c745827079ada4d573a0a6ed480840dcd242f","51204511ffdf9af277cf2a4723be07bcd907e4dd46b8656623585e94222a0a20","28a55a692d9305fa02f8dc9fd622fffbba60ef801e435a5887cf811c47263c0a","8f7a8096d0df919d4b86f5a2ef4e10e7b7c3ac95275dfa2a82ffc24652e761ba","4ac218dd895c2ad163ca1b7a39118d7fcf94511f8d73af2d03b5803576b63919","6d701c5f986ef54234cb38fae8a2913102dd3003f34240a3a52e742a2c6a755e","dd859ddcd4f6d019509c48e37f0ea793f6f17a4fffb9aec76af54a21ce0f2fae","067b9ac82a9e950c705758489e2a9544cc4f2de6bf81b2194bd5b4e08481bdba","4315b61e8b39d284afdc0077fb0120e2b95d7b6a514dffcb7aeff8f35c962889","a854e6a2ebb843c74b632bff2f91f022e65997d497df06010bf715f087e6252e","fa157a6feb6519ad7be6fa4d952e0386a22a646b413b11f3e7f15c7d1fe5ee7e","4d388927aa9d4afc8ca74883f94adda2eef3108279719b33837200b55ae8c489","93c5d25a4cc9929f06c50a482cba7fcbb20a2bb90f2ccec42e4a0975ca13794a","1f16b6e51a49464c16510eed674c0e3f14def29b623021b95c266267e5786f06","948713cb7dd3418cea3d5762b410c89656c911b0784144487d9fd58a7a1d7db1","0a142cb45510972e65f36902ec1f445a4073eed8db256557926550af1618877e","0b17e74d5d65e04a0eea23372f59d9547043f454b44fda1f8cb03db9df820b0e","0ec8de99b58bdd72364b4014161116aeac9fce688cd0594e7a3cf19f997f1db0","a07d555d8a252671881958409665a0800e1d79b59b08591031f1520b91f64cb9","b3e2ce9b583f1ab0a0687036eca9c50086c608616a245bc381eb7af400e4eddd","970401f852f23897f7298caafd510c8b82d83576652e14036230da9f0eebe2ad","00c164546fe14981d6bac55a97cfb85919d8485c856264248752e1445bce9774","9e82b16b22f6b7383c8bcd2df0a96b9c079b02f1e369f40be1db9fda11eeabed","31ac0c85146b19a6c37897806b20896676349a2368f1931f2ba8e3fb9bd92fb9","9c4900e7f908b7e17467a9e37c520949dc00907991ae230409bbd7dfff4cafe1","803c006349ba7c7e364e1bd56e69425a20763dff810e55a44fc738524adc20ae","960669d6c35b584993aa1d0ede3c3b75c5072eef85be735ac71610c7ba7912aa","5c6f3c2ef4a95cef9a7f3108524ede35f9cbb04a2a6e2d58e19a6cd29784696c","255899d04531574c16f947b7c7cdabd512abf661e09b79d916f5847581a6bcb0","af03bfa67db7600a8d09ab433d98ee265135226d729696a416d6ba915d3559a9","aaa8db48bd7ad80ca702f5d3733348ca58330633878f84dd0b99c4f55b6308c7","cba3fcb78890bbc3a3bdc37a2f2108e14d8f93e7014b70d12071b248d59d6e74","84b5f49aef652268906289259d1069c63e5148a837f48d7c8bf4601f6d0e380a","06973270ee0e2a490475b0dfc9b238d3f4748bd84e06b878103452793bcf88c8","9449804f077c5a98576397b26dbd1df00b50b2db07f23ef22107308c569c210e","930506c258303704291c4a2f8d191efb5b0a88a9c83886f4c3ae714e78ca931a","661e3f34ef2d027eac53bba529511f5fdad566e27e57409d6df5d3777e455b6d","5b2de54b00ff294c9a55ccd0fa257cd26febeefb9096e103040c1e9f5b7bf288","472da16ae201ae7963b133ab0624916281d863deaba42413c4977a57edda44b6","9880fbdfd17a07ae817ac399022fcda49923fe96351461eb71ef33e783595293","79ea7853d4c68168530e8eac6b65406a187a1862b2de42b91b448a4420ed128d","07df1e8415831b56fb1b56a6523d8fa846c43dca3ead42b245373f957569cddf","79e631e0709d98007c6ec8f12aa12e8b399c14c468c854597e04d5e2ac73e456","c60b975dd17d5f2ef9d659d48c4c5e4bb57480b97f99197a23fbcf5bfc85dd2c","3395b006cac5ac5e77a0ab123a4aa34ba5c41b3f5016ac403ed9c02d96f89979","c92068db8ac3f454e4ac9ba393027b9d6b923c0aed4394f52a88b93bc15d0cd3","d686c0d8cafe4dd81687c0d5c99f08a56806260914bc6b746d359502a912cfb8","8b72aca2ef042ebef3079fb2874d0fa269299bc20195934c796c137f0c9c80fd","86f2dcfac18e179d8a815ef1d2268b42062c3ec7f0f08ed64f3cff415b7c6c20","e71ebd1ce257cff2e7f8db62ab2dc3d2435811f775d5107e689399f16779cfa1","2cb3f9af221663f6bd6232dd240b34423f2d584794de5b054766b6b5486ec28e","6bbf181e67cd22616dbaa9fc96ac336071deb987035f66286083cc2ca852b12e","65a7e854d323132562050b4768ef01f91b07fbf5e4e2348631fbef23110d7b50","9f1413e09826a3f8599accbc6b0080393b2e7bf0827ca65b9b76cd0ac3ab36c5","5f1cdbef906c04fec725c5639b8d2ce159a53c9733014913e8446c21a93813b9","9b7663a255bc2e465b647214aa0d0e8aa2936d19209b56fc4db7af8b05c74959","789a2685414769949ea4a42ffe08f4d4df3401b5cfc0b07df4386ee11e5e3514","082857939d90314a4b6a0706080fa36b318461b2b646cbbe7a30c7a6731bd9ed","744111a17db3762d7ab7ac09a5812003cea166dabf202050679da419ef2feb42","17e7b286414b71d321c34d96dada187425bb1261190cd474cf9f165def7c6caa","64c950a799a080974e7932cde06044a5abfe61c2820758fe31ec625411672e9d","f5d2ea8f60cbd8f95a1532d5bc64609aee931f4252a3f21d152ec120449d5ba9","3032b935fafce514d515a46279e7d44c2de7fb96c8e7d08fa0bb7c611f51fa2c","48d8766a3e5ec1e8f6c77938af208b3b27639b2b610011636f8e277c0eb19c5d","86a7e115582e01dd1ed1e442de66260a4d79483a66988c1d858e624c20affb90","a348488b662138a32cee8f5b33394ffc6ba79a029f7ab3411b9f92a6c1562653","9ff081058496407166ea061b3caba5fe4925840a33dfa500a319705dbea174c4","95bc2cbf77cf8475ce0a347ea6e6ebc016009c17b4c445530043bec71da45a75","c4912da8e2e63e47193eeb6ac35b918666c8d776cd3ed04258eec500a60eda95","b43e09b48a476b39b0c755f4163193c0fe2cc7880f0e00de25bed922f5c06a24","4b878e28b5b515fa9e2c5f1b048b872874da3c922327ba349ddebc5a1383e8e4","ed6e4490c2d38a9055f406101e92041de67687e38e15e81e1f7dd143d64b97ee",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},"14fb3a52ea54aef7597b1583663000bcec0ecaa9366ee5cdcd0876fa5edb851d","3f08bab7385bbc6ec3c5b907f6d436b4be56debf0cfb535b9cdc19e393ee858c","5999044c92ea2f7bede0f6dfd604fc051eb901fbebb4421050fb529b8537da59","2a59100678729b6653454b9a92584bd3b9fca823a8e90a3d6a417b1167921176","7d8859c517f45c0345d60af9fb8dc944be4637bd7b1ae25df156e715c65d7429","6a1bb73734bed9dafb7026afceea815c91cf5e0481429e6f51d36a0608732d00","33752b58c5d083df16e79b7be4d14eeb1493892136d17bcf6c668e7d5a89641b","3c5a949228d077bc45f93a6d45870460d7fdf6863be70c8cb6717c81b0130689","8bd1a8c225d908a7bb613e7cc91ef72bb98fbb84e7335a57bda2940adc5abd94","7b1c3db8f203ec569ebdcefe2ddd1130ec8a9262e60cef1049242dd9d7b23085","92858946ca3f9bf1a649fe29543c090960de1d32022f73e188748582c667d8bb","db26e19eff5fae681f303ae3cd8abb3778542d30721934c964b1bd8dec6e6ad5","cfc13ebce9d20f0cb48e97aa9ab7cbc2a1792090b493d413db661413feb03b8c","d1fda39a9a3ad2d44889546424e00a7cf3fc1621fbe2cd6e2bce0ae1a97bdabd","4644bf790198c88abee5c335856f4e81a790e3d05a8852afa1382390cb227459","43bdb9945fb6e732b47ce0cf39879bd109843f7b97a1984090fc575c899ccbf4","102360865ef8ede2eaadf34484cf99a93600da598fd7c9717d6b8d48b215efbe","5e35dc69b910012d3dd50de0069c3414ee8aaf6ea77d3b559b1f3a9c515e0235","d3d214fb44b2d6e536409d8df3f4ab2f752b0b55256caf278f8e4c30a8ca6535","d33a01edbcdfb140a0fd3b2936c008033fa4e63df9ff397ef8456c322932d333","d0e72c7ba2c0722d88a5e3b6764284aa7be31dc681d900297b3a48c6e60b94c3","53d0ea7024b644c273d941aa252d3270379f9b0abb227e0a0375e07cf8a7bf87","2ad39a75d9bbd5f1f9f6f5ae4b4a2bec258a603640084a0a2f6efe7c8b3eb23f","0e2343b9da95c559e3b245fad60fd9e5b5bc5297445b0f654807a11645cd85f1","b0aa9fe2157ccaea55f26f988276c3c6997f1f6fd523d80b325c509ffdb43697","1835bed8817d525703ad8085ebd0159f059b6509010246a116731a15d2f44345","3c2107859529b391be0c3f4691d1bdfbed940ac38a9ae1b3395853004206ce70","90bba3aed98f3545552d14572ea82716e1b663e19ed43ded477e1a9439d47ba3","25576267b56a70ce72a65b8948ba827585f416699250cb381da171828162ead2","84bf1ad2a0c6f312ffb22e7b75c17fd90b2019c041d2bb98048642a2adb571d6","d8396598932ac7c21ef936476ad759060659a501f400a840a028c1dc5b10f6c0","519d1370162161273dac80d822a2d48ce3458c59d406a43c15d43b22300f5f1f","7b76c491218b735a1426a6c67eb5091b99ba64925735872d1f874fe1ac710065","c8de4f1c5694d871569e7c5ef7e964449cc37df633f30b3ea93c881a85d260b5","4e539bb1923c17ef122612f3ba1712951511ea3c59b5c3a3718701e9b3bf268b","c284beeb3c32be694ad844cd1058723c55b6a6e0b01cb1118a7aaac91bf4d79a","c7bb10b6b3e46fb98c0916212a72f6ffd5f68285ba83509b4dbee0520091550f","c4a701827795a342107aebfed7473298b5eba2b7f931a0fdd1d2664f78b55b38","712f4c50e3394a3aab53f548375da74dfdd10fcc631855948e811ab95e7dbb9e",{"version":"3c8dfd9ff66f4844938d97a41e25805a470aff9cc6b0fba96c5e08546dd05284","signature":"6efe38e1d88f61ecd23d71dafb5e0d7c331a059d4445e8ba7967f38a6e26b9b7"},{"version":"e4322376d62b079191f277be82e57332dc57889cd2f479b4a86303b65843d541","signature":"417163c3f891a0e8c9acd8fa8b05fbd30e6c28fd0a801b354b5a8393698bc30f"},"f3bd07e585080fce5e79a3f2324d18dbb8d6e3e9204d74dac96c457fb748cf3b","8eaf9eb3070c15668a7c3d4d5b14c85b26526c4ebce68bfbf8deefac989a08e5","925cf5d0dd03cbcec5e7c70a66db407374d17b8485273db949a1093e80cc9b0f","a9ab6e2437526408b420edb6dd20c3bbf357e03a6096b1e3e7ae76f58a79f913","894aa6129f19d964f014717c5067112ba3c650a3a2d5ad54c0651ea7909e2093","b057a1dfc5866cad834e45bbd04005a8a0e9067d41de84112753b2f737aca577","a1ba74c2ce6c3cb7084027278897e7933df92fe58af1361a16c5aaa8c7ec1d3e","03ab97879b73d5903a09a59458e44730eaef50b063024de911cc5a28f7c63b54","29e550356109e75a11cdca1f66fd8e44d854156b2caebb73ded31e5a29ca4c44",{"version":"1460d55f8c185f6a67704d0f08181eeed3c08f16b0f5d3ea5b400e1bee72dda4","signature":"6434a177ac3eb829e3ff024e895e63fd8b30b7bfc364a875893f1c34e7c179c7"},{"version":"840ee80b5a2fcdba8a1fcb281c6e1d09ac4882bece77321a8348fabddc30e361","affectsGlobalScope":true}],"root":[72,78,97,364,365,375],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rewriteRelativeImportExtensions":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":11,"verbatimModuleSyntax":false},"referencedMap":[[324,1],[76,2],[77,3],[221,4],[215,5],[219,6],[216,6],[212,5],[220,7],[217,8],[218,6],[213,9],[214,10],[208,11],[149,12],[151,13],[150,14],[211,15],[210,16],[209,17],[152,12],[144,18],[148,19],[145,20],[146,21],[154,22],[155,22],[156,22],[157,22],[158,22],[159,22],[160,22],[161,22],[162,22],[163,22],[164,22],[165,22],[166,22],[167,22],[169,22],[168,22],[170,22],[171,22],[172,22],[173,22],[174,22],[206,23],[175,22],[176,22],[177,22],[178,22],[179,22],[180,22],[181,22],[182,22],[183,22],[184,22],[185,22],[186,22],[187,22],[189,22],[188,22],[190,22],[191,22],[192,22],[193,22],[194,22],[195,22],[196,22],[197,22],[198,22],[199,22],[200,22],[201,22],[202,22],[205,22],[203,22],[204,22],[251,24],[253,25],[136,26],[108,27],[103,28],[109,29],[104,30],[247,31],[248,32],[250,33],[249,34],[374,35],[373,36],[372,37],[367,38],[370,39],[265,24],[262,40],[264,41],[282,42],[272,43],[257,44],[283,45],[276,46],[277,47],[278,47],[294,48],[290,49],[266,50],[293,51],[279,52],[263,53],[267,54],[271,55],[289,56],[260,57],[269,58],[281,59],[268,46],[292,56],[273,60],[270,61],[280,62],[275,63],[285,64],[286,65],[284,42],[365,66],[375,67],[364,68],[78,68],[97,69],[344,70],[332,37],[357,71],[355,37],[361,72],[333,73],[334,74],[335,75],[336,76],[337,77],[338,78],[339,79],[340,80],[341,81],[342,73],[363,82],[354,37],[358,83],[362,84],[360,85],[356,38],[349,86],[348,87],[353,88],[352,89],[350,90],[351,91],[347,92],[346,93],[311,94],[297,3],[308,3],[318,3],[296,3],[310,94],[304,3],[330,94],[331,95],[299,3],[315,3],[321,3],[325,96],[322,3],[327,97],[328,3],[326,98],[300,3],[305,3],[306,3],[298,3],[317,3],[307,3],[319,3],[295,3],[316,3],[313,3],[312,3],[301,3],[302,3],[303,3],[320,3],[256,99],[254,89],[126,100],[134,101],[133,102],[274,103],[123,104],[225,105],[138,106],[252,107],[137,108],[132,109],[131,110],[129,111],[128,112],[127,113],[232,114],[240,115],[237,116],[239,117],[229,118],[235,119],[231,116],[245,120],[227,121],[238,122],[241,123],[244,124],[222,125],[242,126],[230,127],[236,116],[233,114],[234,128],[228,119],[246,129],[130,130],[102,28],[124,131],[105,28],[106,132],[224,28],[226,28],[366,133],[258,28],[259,134],[120,135],[110,28],[114,136],[119,135],[121,137],[111,136],[113,38],[112,138],[139,139],[96,140],[140,141],[100,46],[99,46],[92,142],[90,143],[89,144],[94,145],[91,146],[88,143],[87,144],[93,146],[86,46],[84,147],[95,148]],"latestChangedDtsFile":"./types/client/index.d.ts","version":"6.0.3"}
@@ -0,0 +1,33 @@
1
+ /** Session-header billing badge: balance plus the current conversation's billed spend. */
2
+ import type { DeepSeekBalance, DeepSeekSessionSpend, DeepSeekTodaySpend } from '@rayadesu/dsh-llm-billing/types';
3
+ import type { SessionId } from '@deepseek-ai/dsh-client-runtime/client';
4
+ import type { InjectFace, PropsLocale, PropsRuntime } from '@deepseek-ai/dsh-client-ui-slots';
5
+ import { NS } from './locales.ts';
6
+ /** Registration-side Remote face used by the header badge. */
7
+ export interface BalanceBadgeInjected {
8
+ /** Read the account balance; rejects with the Remote error message. */
9
+ getBalance: () => Promise<DeepSeekBalance>;
10
+ /** Read one session's billed spend; rejects with the Remote error message. */
11
+ getSessionSpend: (sessionId: SessionId) => Promise<DeepSeekSessionSpend>;
12
+ /** Read today's billed spend across every session; rejects with the Remote error message. */
13
+ getTodaySpend: () => Promise<DeepSeekTodaySpend>;
14
+ }
15
+ /** Full props assembled by the header utilities slot renderer. */
16
+ export type BalanceBadgeProps = PropsRuntime<'conversation.session.header.utilities'> & InjectFace<BalanceBadgeInjected> & PropsLocale<typeof NS>;
17
+ /**
18
+ * Render the billing badge in the session-header utilities row. The trigger
19
+ * shows the remaining balance and this conversation's billed spend and opens
20
+ * a label box with the amount, this session's spend with its cache-hit /
21
+ * cache-miss-input / output cost breakdown per model, today's spend across
22
+ * every session, a refresh action, and a spend disclaimer. Refreshing keeps
23
+ * the last values visible rather than blanking them.
24
+ *
25
+ * The spend follows the conversation: a new message in the current session
26
+ * recomputes only the (local, network-free) session spend and today's spend
27
+ * through `getSessionSpend` / `getTodaySpend`; the balance stays a
28
+ * manual-refresh snapshot and is never refetched on its own.
29
+ * @param props - Remote face, locale, and the standard session-header runtime share.
30
+ * @returns the badge, or null until the first balance fetch settles.
31
+ */
32
+ export declare function BalanceBadge({ getBalance, getSessionSpend, getTodaySpend, sessionId, useSession, t }: BalanceBadgeProps): import("react").JSX.Element | null;
33
+ //# sourceMappingURL=BalanceBadge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BalanceBadge.d.ts","sourceRoot":"","sources":["../../../src/client/BalanceBadge.tsx"],"names":[],"mappings":"AAAA,0FAA0F;AAG1F,OAAO,KAAK,EAAE,eAAe,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAA;AACnH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAA;AAEvE,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAA;AAE7F,OAAO,EAAE,EAAE,EAAE,MAAM,cAAc,CAAA;AAGjC,8DAA8D;AAC9D,MAAM,WAAW,oBAAoB;IACnC,uEAAuE;IACvE,UAAU,EAAE,MAAM,OAAO,CAAC,eAAe,CAAC,CAAA;IAC1C,8EAA8E;IAC9E,eAAe,EAAE,CAAC,SAAS,EAAE,SAAS,KAAK,OAAO,CAAC,oBAAoB,CAAC,CAAA;IACxE,6FAA6F;IAC7F,aAAa,EAAE,MAAM,OAAO,CAAC,kBAAkB,CAAC,CAAA;CACjD;AAED,kEAAkE;AAClE,MAAM,MAAM,iBAAiB,GAC3B,YAAY,CAAC,uCAAuC,CAAC,GACnD,UAAU,CAAC,oBAAoB,CAAC,GAChC,WAAW,CAAC,OAAO,EAAE,CAAC,CAAA;AAqB1B;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,YAAY,CAAC,EAAE,UAAU,EAAE,eAAe,EAAE,aAAa,EAAE,SAAS,EAAE,UAAU,EAAE,CAAC,EAAE,EAAE,iBAAiB,sCA4MvH"}
@@ -0,0 +1,166 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /** Session-header billing badge: balance plus the current conversation's billed spend. */
3
+ import { Fragment, useEffect, useRef, useState } from 'react';
4
+ import { IconChevronDownOutline14, IconQuestionOutline14, IconRefreshOutline14, Tooltip } from '@deepseek-ai/dsh-client-ui-primitives';
5
+ import css from './BalanceBadge.module.css';
6
+ /** Currency prefix for one balance line; unknown codes render as a literal prefix. */
7
+ function currencySymbol(currency) {
8
+ if (currency === 'CNY')
9
+ return '¥';
10
+ if (currency === 'USD')
11
+ return '$';
12
+ return `${currency} `;
13
+ }
14
+ /** The primary balance line, or undefined when the provider reports none. */
15
+ function primaryLine(balance) {
16
+ const line = balance.lines[0];
17
+ if (line === undefined)
18
+ return undefined;
19
+ return { symbol: currencySymbol(line.currency), total: line.total };
20
+ }
21
+ /** CNY amount, up to four decimals with trailing zeros trimmed. */
22
+ function formatSpend(amount) {
23
+ return `¥${amount.toFixed(4).replace(/\.?0+$/, '')}`;
24
+ }
25
+ /**
26
+ * Render the billing badge in the session-header utilities row. The trigger
27
+ * shows the remaining balance and this conversation's billed spend and opens
28
+ * a label box with the amount, this session's spend with its cache-hit /
29
+ * cache-miss-input / output cost breakdown per model, today's spend across
30
+ * every session, a refresh action, and a spend disclaimer. Refreshing keeps
31
+ * the last values visible rather than blanking them.
32
+ *
33
+ * The spend follows the conversation: a new message in the current session
34
+ * recomputes only the (local, network-free) session spend and today's spend
35
+ * through `getSessionSpend` / `getTodaySpend`; the balance stays a
36
+ * manual-refresh snapshot and is never refetched on its own.
37
+ * @param props - Remote face, locale, and the standard session-header runtime share.
38
+ * @returns the badge, or null until the first balance fetch settles.
39
+ */
40
+ export function BalanceBadge({ getBalance, getSessionSpend, getTodaySpend, sessionId, useSession, t }) {
41
+ const [balance, setBalance] = useState(null);
42
+ const [spend, setSpend] = useState(null);
43
+ const [todaySpend, setTodaySpend] = useState(null);
44
+ const [error, setError] = useState(null);
45
+ const [refreshing, setRefreshing] = useState(false);
46
+ const [open, setOpen] = useState(false);
47
+ const [request, setRequest] = useState(0);
48
+ const rootRef = useRef(null);
49
+ // The in-window message count is the "new message" signal: it changes when a
50
+ // message lands in the current session, letting the spend-only effect below
51
+ // react without touching the account balance.
52
+ const messageCount = useSession(snapshot => snapshot.chat.order.length);
53
+ // The last message count this component already priced, so the spend-only
54
+ // effect skips the initial mount (the mount effect already fetched).
55
+ const pricedMessageCountRef = useRef(messageCount);
56
+ useEffect(() => {
57
+ let current = true;
58
+ // A refresh (values already present) keeps the previous values on screen;
59
+ // the first load has nothing to keep, so it stays on the loading render.
60
+ setRefreshing(balance !== null);
61
+ void Promise.resolve().then(() => {
62
+ // Each line settles on its own: the badge renders from the balance and
63
+ // the panel rows from their own spend, so a slow aggregate (today's
64
+ // spend scans every session) delays neither the balance nor the session
65
+ // spend.
66
+ const balanceRequest = Promise.resolve().then(getBalance).then((value) => {
67
+ if (!current)
68
+ return;
69
+ setBalance(value);
70
+ setError(null);
71
+ }, (reason) => {
72
+ if (!current)
73
+ return;
74
+ // A refresh failure keeps the last good value instead of blanking it.
75
+ if (balance === null)
76
+ setError(reason instanceof Error ? reason.message : String(reason));
77
+ });
78
+ const sessionSpendRequest = Promise.resolve().then(() => getSessionSpend(sessionId)).then((value) => {
79
+ if (!current)
80
+ return;
81
+ setSpend(value);
82
+ }, () => {
83
+ // A failed refetch keeps the last good value instead of blanking it.
84
+ });
85
+ const todaySpendRequest = Promise.resolve().then(getTodaySpend).then((value) => {
86
+ if (!current)
87
+ return;
88
+ setTodaySpend(value);
89
+ }, () => {
90
+ // A failed refetch keeps the last good value instead of blanking it.
91
+ });
92
+ // The refresh spinner covers the whole refresh, whatever settles last.
93
+ void Promise.allSettled([balanceRequest, sessionSpendRequest, todaySpendRequest]).then(() => {
94
+ if (current)
95
+ setRefreshing(false);
96
+ });
97
+ });
98
+ return () => { current = false; };
99
+ }, [getBalance, getSessionSpend, getTodaySpend, sessionId, request]);
100
+ // A new message lands: recompute this session's spend and today's spend
101
+ // across every session. The balance is account-level and stays a manual
102
+ // snapshot — never refetched here.
103
+ useEffect(() => {
104
+ if (messageCount === pricedMessageCountRef.current)
105
+ return;
106
+ pricedMessageCountRef.current = messageCount;
107
+ let current = true;
108
+ void Promise.resolve().then(() => {
109
+ // Each spend line updates on its own: the slow all-session aggregate
110
+ // does not delay the session line.
111
+ void Promise.resolve().then(() => getSessionSpend(sessionId)).then((value) => {
112
+ if (!current)
113
+ return;
114
+ setSpend(value);
115
+ }, () => {
116
+ // A failed recompute keeps the last good value.
117
+ });
118
+ void Promise.resolve().then(getTodaySpend).then((value) => {
119
+ if (!current)
120
+ return;
121
+ setTodaySpend(value);
122
+ }, () => {
123
+ // A failed recompute keeps the last good value.
124
+ });
125
+ });
126
+ return () => { current = false; };
127
+ }, [getSessionSpend, getTodaySpend, sessionId, messageCount]);
128
+ // A pointer press outside the label box closes it.
129
+ useEffect(() => {
130
+ if (!open)
131
+ return;
132
+ const closeOutside = (event) => {
133
+ if (event.target instanceof Node && !rootRef.current?.contains(event.target))
134
+ setOpen(false);
135
+ };
136
+ document.addEventListener('pointerdown', closeOutside);
137
+ return () => { document.removeEventListener('pointerdown', closeOutside); };
138
+ }, [open]);
139
+ if (balance === null) {
140
+ if (error === null)
141
+ return null;
142
+ return (_jsx(Tooltip, { label: error, delayMs: 500, children: _jsxs("button", { type: "button", className: css.trigger, onClick: () => { setRequest(value => value + 1); }, "aria-label": t('action.refresh'), children: [_jsx("span", { className: css.unavailable, children: t('state.unavailable') }), _jsx(IconRefreshOutline14, { className: css.inlineIcon })] }) }));
143
+ }
144
+ const refresh = () => { setRequest(value => value + 1); };
145
+ const line = primaryLine(balance);
146
+ const amount = line === undefined ? '—' : `${line.symbol}${line.total}`;
147
+ const spendLine = spend !== null && spend.models.length > 0
148
+ ? t('trigger.conversationSpend', { amount: formatSpend(spend.total) })
149
+ : undefined;
150
+ return (_jsxs("div", { ref: rootRef, className: css.root, children: [_jsxs("button", { type: "button", className: css.trigger, "aria-expanded": open, "aria-label": t('badge.aria', { amount }), onClick: () => { setOpen(value => !value); }, children: [_jsxs("span", { className: css.triggerLines, children: [_jsx("span", { className: css.linePrimary, children: t('trigger.balance', { amount }) }), spendLine !== undefined && _jsx("span", { className: css.lineSecondary, children: spendLine })] }), _jsx(IconChevronDownOutline14, { className: open ? css.chevronOpen : undefined })] }), open
151
+ ? (_jsxs("div", { className: css.panel, role: "dialog", "aria-label": t('panel.aria'), children: [_jsxs("div", { className: css.amountRow, children: [_jsx("span", { className: css.amountLabel, children: t('label.amount', { amount }) }), _jsxs("span", { className: css.amountActions, children: [_jsx(Tooltip, { label: t('info.hint'), delayMs: 200, maxWidth: 340, children: _jsx("button", { type: "button", className: css.infoButton, "aria-label": t('info.aria'), children: _jsx(IconQuestionOutline14, { className: css.inlineIcon }) }) }), _jsx("button", { type: "button", className: css.refreshButton, onClick: refresh, "aria-label": t('action.refresh'), "data-refreshing": refreshing || undefined, children: _jsx(IconRefreshOutline14, { className: refreshing ? css.spinning : css.inlineIcon }) })] })] }), _jsxs("div", { className: css.spendRow, children: [_jsx("span", { className: css.amountLabel, children: t('label.sessionSpend', {
152
+ amount: spend === null
153
+ ? '—'
154
+ : spend.models.length === 0
155
+ ? t('stat.none')
156
+ : formatSpend(spend.total),
157
+ }) }), _jsx("span", { className: css.amountLabel, children: t('label.todaySpend', {
158
+ amount: todaySpend === null
159
+ ? '—'
160
+ : todaySpend.models.length === 0
161
+ ? t('stat.none')
162
+ : formatSpend(todaySpend.total),
163
+ }) })] }), spend?.models.map(model => (_jsxs(Fragment, { children: [_jsxs("div", { className: css.modelRow, children: [_jsx("span", { className: css.modelName, children: model.displayName }), _jsx("span", { className: css.tasks, children: formatSpend(model.cost) })] }), _jsx("div", { className: css.costRow, children: _jsxs("span", { className: css.costBreakdown, children: [t('label.cost.hit', { amount: formatSpend(model.cacheHitInputCost) }), ' · ', t('label.cost.input', { amount: formatSpend(model.cacheMissInputCost) }), ' · ', t('label.cost.output', { amount: formatSpend(model.outputCost) })] }) })] }, model.model)))] }))
164
+ : null] }));
165
+ }
166
+ //# sourceMappingURL=BalanceBadge.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BalanceBadge.js","sourceRoot":"","sources":["../../../src/client/BalanceBadge.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ /** DeepSeek account-balance badge, browser half: one session-header utility entry. */
2
+ import type { ClientContext } from '@deepseek-ai/dsh-client-runtime/client';
3
+ import { type BillingKey } from './locales.ts';
4
+ export type { BalanceBadgeInjected, BalanceBadgeProps } from './BalanceBadge.tsx';
5
+ export type { BillingKey } from './locales.ts';
6
+ declare module '@deepseek-ai/dsh-client-ui-slots' {
7
+ interface LocaleNamespaceMap {
8
+ /** DeepSeek account-balance copy. */
9
+ 'billing': BillingKey;
10
+ }
11
+ }
12
+ /** Services required for locale registration, the Remote face, and the header slot. */
13
+ export declare const inject: string[];
14
+ /**
15
+ * Client plugin body: mount the `billing` Remote, register the dictionaries,
16
+ * and contribute the header utility badge.
17
+ * @param ctx - client root context.
18
+ */
19
+ export declare function apply(ctx: ClientContext): Promise<void>;
20
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/client/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAEtF,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAA;AAO3E,OAAO,EAAc,KAAK,UAAU,EAAE,MAAM,cAAc,CAAA;AAE1D,YAAY,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AACjF,YAAY,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAE9C,OAAO,QAAQ,kCAAkC,CAAC;IAChD,UAAU,kBAAkB;QAC1B,qCAAqC;QACrC,SAAS,EAAE,UAAU,CAAA;KACtB;CACF;AAED,uFAAuF;AACvF,eAAO,MAAM,MAAM,UAAgC,CAAA;AAKnD;;;;GAIG;AACH,wBAAsB,KAAK,CAAC,GAAG,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CA+C7D"}
@@ -0,0 +1,55 @@
1
+ /** DeepSeek account-balance badge, browser half: one session-header utility entry. */
2
+ import billingRemote from '@rayadesu/dsh-llm-billing/remote';
3
+ import { BalanceBadge } from "./BalanceBadge.js";
4
+ import { en, NS, zh } from "./locales.js";
5
+ /** Services required for locale registration, the Remote face, and the header slot. */
6
+ export const inject = ['slots', 'locale', 'remote'];
7
+ /**
8
+ * Client plugin body: mount the `billing` Remote, register the dictionaries,
9
+ * and contribute the header utility badge.
10
+ * @param ctx - client root context.
11
+ */
12
+ export async function apply(ctx) {
13
+ // Mount the Remote owned by this plugin; the host half is `dsh-llm-billing`.
14
+ await ctx.remote.$mount(billingRemote);
15
+ // The mounted namespace is read through the explicit service lookup. The
16
+ // property access `ctx.remote.billing` would require `remote.billing` in this
17
+ // fiber's inject list, which deadlocks: this apply mounts that namespace, so
18
+ // it cannot also wait for it before running.
19
+ const billing = ctx.get('remote.billing');
20
+ if (billing === undefined) {
21
+ throw new Error('ui-billing: billing Remote namespace did not mount');
22
+ }
23
+ ctx.effect(() => ctx.locale.register(NS, { zh, en }), 'ui-billing: dictionaries');
24
+ const injected = () => ({
25
+ getBalance: async () => {
26
+ const result = await billing.getBalance();
27
+ if (!result.ok) {
28
+ throw new Error(`billing.getBalance failed: ${result.error.code}: ${result.error.message}`);
29
+ }
30
+ return result.value;
31
+ },
32
+ getSessionSpend: async (sessionId) => {
33
+ const result = await billing.getSessionSpend(sessionId);
34
+ if (!result.ok) {
35
+ throw new Error(`billing.getSessionSpend failed: ${result.error.code}: ${result.error.message}`);
36
+ }
37
+ return result.value;
38
+ },
39
+ getTodaySpend: async () => {
40
+ const result = await billing.getTodaySpend();
41
+ if (!result.ok) {
42
+ throw new Error(`billing.getTodaySpend failed: ${result.error.code}: ${result.error.message}`);
43
+ }
44
+ return result.value;
45
+ },
46
+ });
47
+ ctx.slots.inject('conversation.session.header.utilities', () => ctx.slots.register({
48
+ name: 'conversation.session.header.utilities',
49
+ id: 'billing-balance',
50
+ order: 30,
51
+ locale: NS,
52
+ inject: injected,
53
+ }, BalanceBadge));
54
+ }
55
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/client/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;AAGtF,OAAO,aAAa,MAAM,qCAAqC,CAAA;AAK/D,OAAO,EAAE,YAAY,EAA6B,MAAM,mBAAoB,CAAA;AAC5E,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAmB,MAAM,cAAc,CAAA;AAY1D,uFAAuF;AACvF,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAA;AAKnD;;;;GAIG;AACH,MAAM,CAAC,KAAK,UAAU,KAAK,CAAC,GAAkB;IAC5C,6EAA6E;IAC7E,MAAM,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,CAAA;IACtC,yEAAyE;IACzE,8EAA8E;IAC9E,6EAA6E;IAC7E,6CAA6C;IAC7C,MAAM,OAAO,GAAG,GAAG,CAAC,GAAG,CAAC,gBAAgB,CAAiC,CAAA;IACzE,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;QAC1B,MAAM,IAAI,KAAK,CAAC,oDAAoD,CAAC,CAAA;IACvE,CAAC;IACD,GAAG,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,0BAA0B,CAAC,CAAA;IAEjF,MAAM,QAAQ,GAAG,GAAyB,EAAE,CAAC,CAAC;QAC5C,UAAU,EAAE,KAAK,IAAI,EAAE;YACrB,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC,UAAU,EAAE,CAAA;YACzC,IAAI,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;gBACf,MAAM,IAAI,KAAK,CAAC,8BAA8B,MAAM,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAA;YAC7F,CAAC;YACD,OAAO,MAAM,CAAC,KAAK,CAAA;QACrB,CAAC;QACD,eAAe,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE;YACnC,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,SAAS,CAAC,CAAA;YACvD,IAAI,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;gBACf,MAAM,IAAI,KAAK,CAAC,mCAAmC,MAAM,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAA;YAClG,CAAC;YACD,OAAO,MAAM,CAAC,KAAK,CAAA;QACrB,CAAC;QACD,aAAa,EAAE,KAAK,IAAI,EAAE;YACxB,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC,aAAa,EAAE,CAAA;YAC5C,IAAI,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC;gBACf,MAAM,IAAI,KAAK,CAAC,iCAAiC,MAAM,CAAC,KAAK,CAAC,IAAI,KAAK,MAAM,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC,CAAA;YAChG,CAAC;YACD,OAAO,MAAM,CAAC,KAAK,CAAA;QACrB,CAAC;KACF,CAAC,CAAA;IAEF,GAAG,CAAC,KAAK,CAAC,MAAM,CACd,uCAAuC,EACvC,GAAG,EAAE,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC;QACvB,IAAI,EAAE,uCAAuC;QAC7C,EAAE,EAAE,iBAAiB;QACrB,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,MAAM,EAAE,QAAQ;KACjB,EAAE,YAAY,CAAC,CACjB,CAAA;AACH,CAAC"}
@@ -0,0 +1,26 @@
1
+ /** `billing` namespace dictionaries. */
2
+ /** Dictionary namespace owned by this plugin. */
3
+ export declare const NS = "billing";
4
+ /** Simplified Chinese dictionary (the key-set source of truth). */
5
+ export declare const zh: {
6
+ readonly 'trigger.balance': "剩余额度:{amount}";
7
+ readonly 'trigger.conversationSpend': "本轮对话花费:{amount}";
8
+ readonly 'label.amount': "API 剩余金额:{amount}";
9
+ readonly 'label.sessionSpend': "本会话花费:{amount}";
10
+ readonly 'label.todaySpend': "今日共花费:{amount}";
11
+ readonly 'label.cost.hit': "缓存命中 {amount}";
12
+ readonly 'label.cost.input': "未命中输入 {amount}";
13
+ readonly 'label.cost.output': "输出 {amount}";
14
+ readonly 'stat.none': "暂无消耗记录";
15
+ readonly 'state.unavailable': "额度不可用";
16
+ readonly 'action.refresh': "刷新";
17
+ readonly 'info.aria': "花费说明";
18
+ readonly 'info.hint': "仅能预估 DeepSeek 相关模型。本会话花费按每条消息的发生时刻(北京时间)所在峰谷时段单价计费:缓存命中输入、未命中输入(含缓存写入)、输出(含推理)分别计价。费用按 8 月 17 日实行的标准。";
19
+ readonly 'badge.aria': "DeepSeek 额度:{amount}";
20
+ readonly 'panel.aria': "DeepSeek 额度详情";
21
+ };
22
+ /** English dictionary, key-identical to the Chinese source of truth. */
23
+ export declare const en: Record<BillingKey, string>;
24
+ /** Key domain of the `billing` namespace (zh is the source of truth). */
25
+ export type BillingKey = keyof typeof zh;
26
+ //# sourceMappingURL=locales.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../../../src/client/locales.ts"],"names":[],"mappings":"AAAA,wCAAwC;AAExC,iDAAiD;AACjD,eAAO,MAAM,EAAE,YAAY,CAAA;AAE3B,mEAAmE;AACnE,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;CAgBL,CAAA;AAEV,wEAAwE;AACxE,eAAO,MAAM,EAAE,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,CAgBzC,CAAA;AAED,yEAAyE;AACzE,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,EAAE,CAAA"}