@forgeax/engine-codec 0.0.0-dev.8d955ade1c79

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/LICENSE +202 -0
  2. package/README.md +261 -0
  3. package/dist/.tsbuildinfo +1 -0
  4. package/dist/__tests__/basis-encode-fast-preset.unit.test.d.ts +2 -0
  5. package/dist/__tests__/basis-encode-fast-preset.unit.test.d.ts.map +1 -0
  6. package/dist/__tests__/basis-encode-lifecycle.unit.test.d.ts +2 -0
  7. package/dist/__tests__/basis-encode-lifecycle.unit.test.d.ts.map +1 -0
  8. package/dist/__tests__/basis-transcoder.unit.test.d.ts +2 -0
  9. package/dist/__tests__/basis-transcoder.unit.test.d.ts.map +1 -0
  10. package/dist/__tests__/block-format.unit.test.d.ts +2 -0
  11. package/dist/__tests__/block-format.unit.test.d.ts.map +1 -0
  12. package/dist/__tests__/byte-identical-falsification.test.d.ts +2 -0
  13. package/dist/__tests__/byte-identical-falsification.test.d.ts.map +1 -0
  14. package/dist/__tests__/codec-errors.test-d.d.ts +2 -0
  15. package/dist/__tests__/codec-errors.test-d.d.ts.map +1 -0
  16. package/dist/__tests__/codec-errors.unit.test.d.ts +2 -0
  17. package/dist/__tests__/codec-errors.unit.test.d.ts.map +1 -0
  18. package/dist/__tests__/compression-field.unit.test.d.ts +19 -0
  19. package/dist/__tests__/compression-field.unit.test.d.ts.map +1 -0
  20. package/dist/__tests__/encode-pixel-limit.unit.test.d.ts +2 -0
  21. package/dist/__tests__/encode-pixel-limit.unit.test.d.ts.map +1 -0
  22. package/dist/__tests__/encode-roundtrip.unit.test.d.ts +2 -0
  23. package/dist/__tests__/encode-roundtrip.unit.test.d.ts.map +1 -0
  24. package/dist/__tests__/ktx2-basis-capability-matrix.unit.test.d.ts +2 -0
  25. package/dist/__tests__/ktx2-basis-capability-matrix.unit.test.d.ts.map +1 -0
  26. package/dist/__tests__/ktx2-errors.test.d.ts +2 -0
  27. package/dist/__tests__/ktx2-errors.test.d.ts.map +1 -0
  28. package/dist/__tests__/ktx2-parse-scheme0.test.d.ts +2 -0
  29. package/dist/__tests__/ktx2-parse-scheme0.test.d.ts.map +1 -0
  30. package/dist/__tests__/ktx2-parse-scheme2.test.d.ts +2 -0
  31. package/dist/__tests__/ktx2-parse-scheme2.test.d.ts.map +1 -0
  32. package/dist/__tests__/ktx2-scheme1-and-transcode-errors.unit.test.d.ts +2 -0
  33. package/dist/__tests__/ktx2-scheme1-and-transcode-errors.unit.test.d.ts.map +1 -0
  34. package/dist/__tests__/ktx2-to-texture.integration.test.d.ts +2 -0
  35. package/dist/__tests__/ktx2-to-texture.integration.test.d.ts.map +1 -0
  36. package/dist/__tests__/transcode-select-target.unit.test.d.ts +2 -0
  37. package/dist/__tests__/transcode-select-target.unit.test.d.ts.map +1 -0
  38. package/dist/__tests__/wasm-init-smoke.test.d.ts +2 -0
  39. package/dist/__tests__/wasm-init-smoke.test.d.ts.map +1 -0
  40. package/dist/__tests__/zstd-deterministic.unit.test.d.ts +2 -0
  41. package/dist/__tests__/zstd-deterministic.unit.test.d.ts.map +1 -0
  42. package/dist/__tests__/zstd-encode-singleton.unit.test.d.ts +2 -0
  43. package/dist/__tests__/zstd-encode-singleton.unit.test.d.ts.map +1 -0
  44. package/dist/__tests__/zstd-roundtrip.unit.test.d.ts +2 -0
  45. package/dist/__tests__/zstd-roundtrip.unit.test.d.ts.map +1 -0
  46. package/dist/__tests__/zstd-singleton.unit.test.d.ts +2 -0
  47. package/dist/__tests__/zstd-singleton.unit.test.d.ts.map +1 -0
  48. package/dist/basis-transcoder.d.ts +86 -0
  49. package/dist/basis-transcoder.d.ts.map +1 -0
  50. package/dist/block-format.d.ts +41 -0
  51. package/dist/block-format.d.ts.map +1 -0
  52. package/dist/encode/basis-encode.d.ts +68 -0
  53. package/dist/encode/basis-encode.d.ts.map +1 -0
  54. package/dist/encode/index.d.ts +10 -0
  55. package/dist/encode/index.d.ts.map +1 -0
  56. package/dist/encode/index.mjs +207 -0
  57. package/dist/encode/index.mjs.map +1 -0
  58. package/dist/encode-impl.d.ts +30 -0
  59. package/dist/encode-impl.d.ts.map +1 -0
  60. package/dist/errors.d.ts +61 -0
  61. package/dist/errors.d.ts.map +1 -0
  62. package/dist/index.d.ts +17 -0
  63. package/dist/index.d.ts.map +1 -0
  64. package/dist/index.mjs +610 -0
  65. package/dist/index.mjs.map +1 -0
  66. package/dist/ktx2.d.ts +111 -0
  67. package/dist/ktx2.d.ts.map +1 -0
  68. package/dist/transcode.d.ts +55 -0
  69. package/dist/transcode.d.ts.map +1 -0
  70. package/dist/wasm/basis-types.d.ts +179 -0
  71. package/dist/wasm/basis-types.d.ts.map +1 -0
  72. package/dist/zstd.d.ts +28 -0
  73. package/dist/zstd.d.ts.map +1 -0
  74. package/package.json +71 -0
  75. package/pkg/basis_transcoder.mjs +2 -0
  76. package/pkg/basis_transcoder.wasm +0 -0
  77. package/pkg/encode/basis_encoder.mjs +2 -0
  78. package/pkg/encode/basis_encoder.wasm +0 -0
  79. package/scripts/build-wasm.mjs +370 -0
  80. package/scripts/content-key.mjs +85 -0
  81. package/scripts/ensure-wasm.mjs +38 -0
  82. package/scripts/fetch-basis.mjs +150 -0
  83. package/scripts/fetch-wasm.mjs +97 -0
  84. package/src/__tests__/basis-encode-fast-preset.unit.test.ts +204 -0
  85. package/src/__tests__/basis-encode-lifecycle.unit.test.ts +249 -0
  86. package/src/__tests__/basis-transcoder.unit.test.ts +151 -0
  87. package/src/__tests__/block-format.unit.test.ts +215 -0
  88. package/src/__tests__/byte-identical-falsification.test.ts +164 -0
  89. package/src/__tests__/codec-errors.test-d.ts +67 -0
  90. package/src/__tests__/codec-errors.unit.test.ts +128 -0
  91. package/src/__tests__/compression-field.unit.test.ts +245 -0
  92. package/src/__tests__/encode-pixel-limit.unit.test.ts +117 -0
  93. package/src/__tests__/encode-roundtrip.unit.test.ts +239 -0
  94. package/src/__tests__/ktx2-basis-capability-matrix.unit.test.ts +241 -0
  95. package/src/__tests__/ktx2-errors.test.ts +239 -0
  96. package/src/__tests__/ktx2-parse-scheme0.test.ts +263 -0
  97. package/src/__tests__/ktx2-parse-scheme2.test.ts +220 -0
  98. package/src/__tests__/ktx2-scheme1-and-transcode-errors.unit.test.ts +178 -0
  99. package/src/__tests__/ktx2-to-texture.integration.test.ts +384 -0
  100. package/src/__tests__/transcode-select-target.unit.test.ts +167 -0
  101. package/src/__tests__/wasm-init-smoke.test.ts +102 -0
  102. package/src/__tests__/zstd-deterministic.unit.test.ts +49 -0
  103. package/src/__tests__/zstd-encode-singleton.unit.test.ts +63 -0
  104. package/src/__tests__/zstd-roundtrip.unit.test.ts +87 -0
  105. package/src/__tests__/zstd-singleton.unit.test.ts +105 -0
  106. package/src/basis-transcoder.ts +315 -0
  107. package/src/block-format.ts +128 -0
  108. package/src/encode/basis-encode.ts +264 -0
  109. package/src/encode/index.ts +19 -0
  110. package/src/encode-impl.ts +103 -0
  111. package/src/errors.ts +79 -0
  112. package/src/index.ts +38 -0
  113. package/src/ktx2.ts +469 -0
  114. package/src/transcode.ts +99 -0
  115. package/src/wasm/basis-types.ts +220 -0
  116. package/src/zstd.ts +85 -0
package/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,261 @@
1
+ # @forgeax/engine-codec
2
+
3
+ > `@forgeax/engine-codec` provides zstd decode/encode, KTX2 container parse,
4
+ > Basis transcode, block-format lookup, and build-time Basis encode --
5
+ > a single package covering the full runtime codec surface for the forgeax
6
+ > asset pipeline.
7
+
8
+ > [!IMPORTANT]
9
+ > This package uses **subpath-level encode/decode separation** (D-1). The main entry
10
+ (`@forgeax/engine-codec`) exports runtime-safe decode + transcode + block-format
11
+ functions. The `/encode` subpath (`@forgeax/engine-codec/encode`) exports
12
+ build-time encode (zstd + Basis). Runtime code must never import from `/encode` --
13
+ this is enforced by `check-image-pipeline-isolation.mjs` path d (AC-09).
14
+
15
+ ## WASM provisioning
16
+
17
+ > [!IMPORTANT]
18
+ > `pkg/` is an Emscripten build artifact and is **not committed to git**. It
19
+ > contains the runtime transcoder and build-time encoder bundles, so a fresh
20
+ > checkout must hydrate it before using Basis KTX2 paths.
21
+
22
+ | Path | Command | Use |
23
+ |:--|:--|:--|
24
+ | Pre-built release | `pnpm -F @forgeax/engine-codec fetch-wasm` | Fast setup without Emscripten |
25
+ | Local build | `pnpm -F @forgeax/engine-codec build:wasm` | Rebuild with the Emscripten toolchain |
26
+ | Opt out | `FORGEAX_SKIP_CODEC_WASM_FETCH=1 pnpm install` | Toolchain owners provisioning separately |
27
+
28
+ <details>
29
+ <summary>Release selection, fallback, and recovery</summary>
30
+
31
+ The pre-built bundle is published under the `wasm-artifacts` GitHub Release tag
32
+ as `basis-wasm-pkg-{sha8}.tar.gz`. The content key is the first eight characters
33
+ of `SHA256(fetch-basis.mjs + build-wasm.mjs)`, shared by the consumer and the CI
34
+ publisher. The tarball contains the whole `pkg/` tree:
35
+
36
+ - `basis_transcoder.mjs` + `basis_transcoder.wasm` for runtime transcode;
37
+ - `encode/basis_encoder.mjs` + `encode/basis_encoder.wasm` for build-time encode.
38
+
39
+ The shared downloader tries Node `fetch` first, then authenticated `gh` and
40
+ platform-native `curl` (`curl.exe` on Windows) when the Node TLS/network
41
+ handshake fails. All paths remain pinned to the current repository, the
42
+ `wasm-artifacts` tag, and the exact content-keyed asset. Authentication uses
43
+ `GITHUB_TOKEN`/`GH_TOKEN` or `gh auth login`.
44
+
45
+ `postinstall` uses the same fetch path on a best-effort basis: an unavailable
46
+ release does not fail a bare install, while a later build or typecheck reports
47
+ that `pkg/` still needs provisioning. Use `build:wasm` when no matching release
48
+ exists; it runs `fetch-basis.mjs` and `build-wasm.mjs` and requires `emcc`.
49
+
50
+ </details>
51
+
52
+ ## API
53
+
54
+ ### Runtime-safe decode (main entry)
55
+
56
+ | Export | Signature | Description |
57
+ |:--|:--|:--|
58
+ | `decompressZstd` | `(bytes: Uint8Array) => Promise<CodecResult<Uint8Array>>` | Decompress a zstd-compressed byte buffer. Lazy-init singleton (fzstd pure JS, zero WASM); concurrent first calls share the same init promise (AC-12). Returns `CodecOk<Uint8Array>` on success, `CodecError` on failure. |
59
+ | `parseKtx2` | `(bytes: Uint8Array) => Promise<CodecResult<Ktx2Parsed>>` | Parse a KTX2 2.0 container (12B magic validation). Returns header, index, level index, DFD, KV metadata, and SGD descriptor -- all five parts per AC-03. Does **not** interpret block-compressed payload content (OOS-6, Loop 2). Async -- `await` the result. |
60
+ | `ktx2LevelsToRGBA` | `(parsed: Ktx2Parsed, level?: number) => Promise<CodecResult<Uint8Array>>` | Extract RGBA bytes from a parsed KTX2 container. Handles scheme=0 (uncompressed, pass-through) and scheme=2 (zstd supercompression, reuses `decompressZstd` per AC-04). The optional `level` parameter selects a mip level (default: 0). Returns the level's RGBA bytes as a flat `Uint8Array`. |
61
+ | `selectTranscodeTarget` | `(dfdModel: number, srgb: boolean, channels: number, caps: TranscodeCaps) => GPUTextureFormat \| null` | Pure-function priority chain (node-safe, zero DOM): given a DFD color model, srgb flag, channel count, and device caps, returns the best native block format. The chain is LDR RGBA: `ASTC4x4 -> BC7 -> ETC2 -> RGBA8` (with srgb variants); single-channel R: `BC4 -> EAC-R11 -> R8`; two-channel RG: `BC5 -> EAC-RG11 -> RG8`; HDR: `BC6H -> rgba16float`. BC-first rule: when BC and ETC2/ASTC coexist, the chain selects BC (D-4 Mesa guard). Input `TranscodeCaps { bc, etc2, astc }` is a local struct -- codec never imports from rhi. Returns non-null (no-cap fallback to rgba8unorm/rgba16float). |
62
+ | `initBasisTranscoder` | `() => Promise<BasisTranscoderModule>` | Lazy-init singleton (main-thread, D-10). First call dynamic-imports + initializes the basis_transcoder WASM; subsequent calls return the cached instance. |
63
+ | `transcodeKtx2` | `(parsed: Ktx2Parsed, targetFormat: GPUTextureFormat) => Promise<CodecResult<TranscodedMips>>` | Transcode a scheme=1 (BasisLZ) KTX2 payload to a native block format. Iterates every mip level through the transcoder, returning `TranscodedMips { format, mips: { data, width, height }[] }`. Calls init on first use. |
64
+ | `bytesPerRow` | `(width: number, format: GPUTextureFormat) => number` | Block-aligned bytes-per-row: `ceil(width / blockW) * bytesPerBlock`. Returns `width * 4` for non-compressed formats. SSOT with `blockFormatInfo`. |
65
+ | `rowsPerImage` | `(height: number, format: GPUTextureFormat) => number` | Block-aligned rows-per-image: `ceil(height / blockH)`. Returns `height` for non-compressed formats. |
66
+ | `blockFormatInfo` | `(format: GPUTextureFormat) => { blockW: number, blockH: number, bytesPerBlock: number } \| undefined` | Block dimension lookup table covering BC1-BC7, ETC2, ASTC4x4, EAC, BC6H. Returns undefined for non-compressed formats. |
67
+ | `isCompressedFormat` | `(format: GPUTextureFormat) => boolean` | Type guard returning true for all block-compressed formats in `blockFormatInfo`. |
68
+
69
+ **Priority chain rules** (D-4 BC-first, D-8 local TranscodeCaps):
70
+
71
+ | Source (channels, color, srgb) | BC cap | ETC2 cap | ASTC cap | Target format |
72
+ |:--|:--|:--|:--|:--|
73
+ | RGBA, LDR, srgb | yes | yes | yes | `bc7-rgba-unorm-srgb` |
74
+ | RGBA, LDR, srgb | no | yes | -- | `etc2-rgba8unorm-srgb` |
75
+ | RGBA, LDR, srgb | no | no | yes | `astc-4x4-unorm-srgb` |
76
+ | RGBA, LDR, srgb | no | no | no | `rgba8unorm-srgb` |
77
+ | R, LDR | yes | -- | -- | `bc4-r-unorm` |
78
+ | R, LDR | no | yes | -- | `eac-r11unorm` |
79
+ | R, LDR | no | no | -- | `r8unorm` |
80
+ | RG, LDR | yes | -- | -- | `bc5-rg-unorm` |
81
+ | RG, LDR | no | yes | -- | `eac-rg11unorm` |
82
+ | RG, LDR | no | no | -- | `rg8unorm` |
83
+ | HDR | yes | -- | -- | `bc6h-rgb-ufloat` |
84
+ | HDR | no | -- | -- | `rgba16float` |
85
+
86
+ **Scheme support** (extended in Loop 2):
87
+
88
+ | Scheme | Name | Supported | Path |
89
+ |:--|:--|:--|:--|
90
+ | 0 | None (uncompressed) | yes | `ktx2LevelsToRGBA` pass-through |
91
+ | 1 | BasisLZ | yes | `parseKtx2` -> `transcodeKtx2` |
92
+ | 2 | Zstandard | yes | `ktx2LevelsToRGBA` + `decompressZstd` |
93
+ | 3 | ZLIB / DEFLATE | no | returns `ktx2-unsupported-scheme` |
94
+
95
+ Usage example:
96
+
97
+ ```ts
98
+ import { decompressZstd, parseKtx2, ktx2LevelsToRGBA, codecError }
99
+ from '@forgeax/engine-codec';
100
+
101
+ // Decompress zstd bytes
102
+ const res = await decompressZstd(compressedBytes);
103
+ if (res.ok) {
104
+ const original = res.value; // Uint8Array
105
+ } else {
106
+ switch (res.error.code) {
107
+ case 'decompression-failed': // res.error.detail: { reason }
108
+ case 'codec-init-failed': // res.error.detail: { stage }
109
+ case 'ktx2-parse-failed': // res.error.detail: { reason }
110
+ case 'ktx2-unsupported-scheme': // res.error.detail: { scheme }
111
+ }
112
+ }
113
+
114
+ // Parse KTX2 container and extract RGBA
115
+ const k = await parseKtx2(ktx2Bytes);
116
+ if (k.ok) {
117
+ const rgba = await ktx2LevelsToRGBA(k.value, 0);
118
+ }
119
+ ```
120
+
121
+ ### Build-time encode (`/encode` subpath)
122
+
123
+ | Export | Signature | Description |
124
+ |:--|:--|:--|
125
+ | `compressZstd` | `(bytes: Uint8Array) => Promise<CodecResult<Uint8Array>>` | Compress bytes with zstd (pinned WASM, fixed level, no dictionary, no timestamp -- deterministic per AC-07). Build-time only; gated from runtime import by `check-image-pipeline-isolation.mjs` path d. |
126
+
127
+ Import path:
128
+
129
+ ```ts
130
+ import { compressZstd } from '@forgeax/engine-codec/encode';
131
+ // ^^^^^^^^^^^^^^^
132
+ // build-time only, blocked from runtime
133
+ ```
134
+
135
+ ### Type exports
136
+
137
+ | Export | Description |
138
+ |:--|:--|
139
+ | `CodecErrorCode` | Closed union: `'decompression-failed' \| 'codec-init-failed' \| 'ktx2-parse-failed' \| 'ktx2-unsupported-scheme' \| 'transcode-failed' \| 'ktx2-encode-failed'` (order-locked, add-only-minor) |
140
+ | `CodecError` | Structured error: `{ ok: false, error: { code, expected, hint, detail } }` with per-code narrowed `detail` |
141
+ | `CodecOk<T>` | Success branch: `{ ok: true, value: T }` |
142
+ | `CodecResult<T>` | Discriminated union: `CodecOk<T> \| CodecError` |
143
+ | `Ktx2Header` | Parsed KTX2 header (9 u32 fields + supercompressionScheme) |
144
+ | `Ktx2Index` | Parsed KTX2 index (dfd/kvd/sgd byte offsets and lengths) |
145
+ | `Ktx2LevelEntry` | Per-level byte offset, byte length, uncompressed byte length |
146
+ | `Ktx2Dfd` / `Ktx2DfdSample` | Parsed DFD (data format descriptor) block |
147
+ | `Ktx2KvEntry` | Key-value metadata entry (key string + raw value bytes) |
148
+ | `Ktx2Parsed` | Fully parsed KTX2 container: `{ header, index, levelIndex, dfd, kvEntries, sgd }` |
149
+
150
+ ## Error codes
151
+
152
+ All codec errors use the `CodecErrorCode` closed union. Consume with exhaustive
153
+ `switch (err.code)` -- no `default` branch, TypeScript guards completeness.
154
+
155
+ | Code | Trigger condition | `.hint` (executable recovery) | `.detail` payload |
156
+ |:--|:--|:--|:--|
157
+ | `decompression-failed` | Corrupted/malformed zstd input, or encode failure surfaced as decompression error | "Check catalog row compression field and asset binary consistency; re-run asset import." | `{ reason: string }` -- failure cause |
158
+ | `codec-init-failed` | Dynamic import of fzstd decode module failed (network / bundling) | "Uncompressed assets are still loadable. Verify the codec module is installed correctly." | `{ stage: string }` -- failed initialization stage |
159
+ | `ktx2-parse-failed` | KTX2 magic mismatch, header truncation, level index out of bounds (E5) | "Check that the KTX2 file is valid and not truncated. Re-import the texture asset." | `{ reason: string }` -- parse failure location |
160
+ | `ktx2-unsupported-scheme` | KTX2 supercompression scheme is ZLIB (=3) or other unsupported scheme. Scheme 1 (BasisLZ) and 2 (Zstd) are accepted. | "This supercompression scheme requires a future codec upgrade. Check the codec README Loop 2 extension points." | `{ scheme: number }` -- the unsupported scheme value |
161
+ | `transcode-failed` | Basis transcoder returned 0 bytes or threw an error during transcode. The payload may be corrupt or the target format incompatible with the DFD model. | "Verify the KTX2/Basis asset payload is valid. Check that selectTranscodeTarget returned a compatible format." | `{ sourceFormat: GPUTextureFormat, targetFormat: GPUTextureFormat }` -- the source + requested target |
162
+ | `ktx2-encode-failed` | Basis encoder returned 0 bytes or threw. May indicate invalid dimensions, incompatible pixel format, or encoder-side memory exhaustion. | "Check input texture dimensions and pixel format. Verify the Basis encoder WASM was built correctly (pnpm --filter @forgeax/engine-codec build:wasm)." | `{ mode: string, reason: string }` -- the encode mode + failure reason |
163
+
164
+ ### Error propagation
165
+
166
+ Codec errors are consumed in two contexts:
167
+
168
+ 1. **Direct consumption** -- AI users calling `decompressZstd` / `parseKtx2` directly
169
+ get the full `CodecError` with per-code narrowed `detail`.
170
+
171
+ 2. **Runtime transparent pass-through** -- in the runtime's `fetchBinary` gate,
172
+ codec errors are nested in the existing `asset-fetch-failed` error's `.detail`
173
+ field. The types-shared `ErrorCode` union is NOT extended (D-8). AI users
174
+ doing `loadByGuid` never see `CodecErrorCode` directly; they see the standard
175
+ asset error surface.
176
+
177
+ ## Loop 2 extension points
178
+
179
+ > [!NOTE]
180
+ > This section documents the 3 frozen contract seams that Loop 2
181
+ > ("texture block-compression") consumes without re-designing (AC-13).
182
+ > Do not delete or rearrange these sections -- they are the hand-off interface.
183
+
184
+ ### Contract seam 1: `compression` sidecar field
185
+
186
+ The `AssetCompression` union (`packages/types/src/index.ts`) currently has:
187
+
188
+ ```ts
189
+ type AssetCompression = 'none' | 'zstd';
190
+ ```
191
+
192
+ **Loop 2 extension**: May add combination literal members such as `'zstd+bc7'`,
193
+ `'zstd+astc'`, or `'basis-uastc'` to represent block-compressed payloads wrapped
194
+ in zstd supercompression. The field is consumed in `PackIndexEntry.compression?`,
195
+ `ImageMetadata.compression?`, `LoaderEntry.compression?`, `listCatalog()` return
196
+ rows, and `importSettings`. Loop 2 adds members here; runtime `fetchBinary`
197
+ gate branches on the string value.
198
+
199
+ ### Contract seam 2: runtime single decompression gate
200
+
201
+ The runtime decompression happens in exactly one place:
202
+ `fetchBinary(url, { compression })` in `asset-registry.ts`. The gate currently
203
+ branches on `compression === 'zstd'` to call `decompressZstd`. Raw bytes are
204
+ returned to loaders unchanged in all other cases.
205
+
206
+ **Loop 2 extension**: After zstd decompression returns raw bytes, Loop 2 adds a
207
+ second gate for block-compressed payloads: `basis_transcoder.wasm` transcode from
208
+ the universal intermediate format to the platform's native block format.
209
+ The transcoder hangs **after** the zstd gate -- same `fetchBinary` entry point,
210
+ no second decompression point (contract seam 2 constraint).
211
+
212
+ ### Contract seam 3: KTX2 container parser
213
+
214
+ `parseKtx2(bytes)` returns `Ktx2Parsed` with `header.supercompressionScheme`,
215
+ `levelIndex` (per-level `byteOffset` / `byteLength` / `uncompressedByteLength`),
216
+ `dfd.colorModel`, and `sgd`. `ktx2LevelsToRGBA` handles scheme=0 (uncompressed)
217
+ and scheme=2 (zstd) only.
218
+
219
+ **Loop 2 extension**: For scheme=1 (BasisLZ), `parseKtx2` already provides:
220
+ - `levelIndex[].byteOffset` and `levelIndex[].byteLength` -- the block payload
221
+ bytes to feed into `basis_transcoder.wasm`
222
+ - `dfd.colorModel` and `dfd.colorPrimaries` -- color space metadata for upload
223
+ - `sgd` (supercompression global data) -- the BasisLZ codebook
224
+
225
+ Loop 2 adds a third arm to `ktx2LevelsToRGBA` for scheme=1 that calls the
226
+ transcoder instead of `decompressZstd`. The container parser itself does NOT
227
+ change -- Loop 2 reuses the same `parseKtx2` export (contract seam 3 constraint).
228
+
229
+ ### Compression ratio baseline (AC-05)
230
+
231
+ zstd compression on representative mesh `.bin` data achieves approximately 30-60%
232
+ size reduction (f32 vertex data). The AC-05 assertion floor is `>= 30%` on the
233
+ compression ratio (compressed / original <= 0.70). Loop 2 may establish separate
234
+ ratios for block-compressed textures.
235
+
236
+ ## Package metrics (AC-11)
237
+
238
+ The codec package declares all 5 `MetricKind` entries in
239
+ `package.json#forgeax.metrics`:
240
+
241
+ | Metric | Status | Reason |
242
+ |:--|:--|:--|
243
+ | `bundle-size` | enabled | Measures decode entry dist bundle (`dist/index.mjs` gzip). fzstd is pure JS (no WASM), so this captures the full decode cost. |
244
+ | `fps` | disabled | Pure-function library, no render-loop impact |
245
+ | `bench` | disabled | No performance-sensitive hot paths to benchmark in isolation |
246
+ | `gate` | disabled | No codec-specific gates beyond metric declaration itself |
247
+ | `spike-report` | disabled | No spiking concerns for a deterministic pure-function library |
248
+
249
+ ## Build-time encode subpath
250
+
251
+ The `/encode` subpath (`@forgeax/engine-codec/encode`) exports `compressZstd`
252
+ for build-time use only. It is consumed by `vite-plugin-pack`'s
253
+ `compress-artifact.ts` SSOT function. Runtime code must never import from this
254
+ subpath -- enforced by `check-image-pipeline-isolation.mjs` path d (AC-09).
255
+
256
+ ## Related documentation
257
+
258
+ - `packages/runtime/README.md` -- `fetchBinary` automatic decompression gate
259
+ - `packages/pack/README.md` -- `compression` field in pack-index row schema
260
+ - `skills/forgeax-engine-assets/SKILL.md` -- AI user-facing asset pipeline
261
+ - `docs/superpowers/specs/2026-07-06-asset-compression-pipeline-roadmap-design.md` -- two-loop roadmap
@@ -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.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.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/errors.ts","../../../node_modules/.pnpm/fzstd@0.1.1/node_modules/fzstd/lib/index.d.ts","../src/zstd.ts","../src/ktx2.ts","../src/wasm/basis-types.ts","../src/basis-transcoder.ts","../src/block-format.ts","../src/encode-impl.ts","../src/transcode.ts","../src/index.ts","../src/encode/basis-encode.ts","../src/encode/index.ts","../../../node_modules/.pnpm/@vitest+pretty-format@4.1.5/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/display.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/timers.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../node_modules/.pnpm/@vitest+utils@4.1.5/node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/tasks.d-Bh0IjN67.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/traces.d.D2T_R8rx.d.ts","../../../node_modules/.pnpm/vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7/node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../node_modules/.pnpm/vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7/node_modules/vite/types/customEvent.d.ts","../../../node_modules/.pnpm/vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/environment.d-DOJxxZV9.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/rawSnapshot.d-D_X3-62x.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@4.1.5/node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/config.d.A1h_Y6Jt.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/rpc.d.B_8sPU0w.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/worker.d.ZpHpO4yb.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/browser.d.BcoexmFG.d.ts","../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/optional-types.d.ts","../../../node_modules/.pnpm/@vitest+spy@4.1.5/node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/.pnpm/tinyrainbow@3.1.0/node_modules/tinyrainbow/dist/index.d.ts","../../../node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec/dist/index.d.ts","../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@vitest+expect@4.1.5/node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@4.1.5/node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/global.d.DVsSRdQ5.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/optional-runtime-types.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7_/node_modules/@vitest/mocker/dist/types.d-BjI5eAwu.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7_/node_modules/@vitest/mocker/dist/index.d-B41z0AuW.d.ts","../../../node_modules/.pnpm/@vitest+mocker@4.1.5_vite@8.0.10_@types+node@20.19.40_esbuild@0.27.7_jiti@1.21.7_/node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/suite.d.udJtyAgw.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/chunks/evaluatedModules.d.BxJ5omdx.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/runners.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../node_modules/.pnpm/vitest@4.1.5_@types+node@20.19.40_@vitest+browser-playwright@4.1.5_@vitest+coverage-v8@_93fb3f30d132ee2e785bbc9f718b2231/node_modules/vitest/dist/index.d.ts","../src/__tests__/basis-encode-fast-preset.unit.test.ts","../src/__tests__/basis-encode-lifecycle.unit.test.ts","../src/__tests__/basis-transcoder.unit.test.ts","../src/__tests__/block-format.unit.test.ts","../src/__tests__/byte-identical-falsification.test.ts","../src/__tests__/codec-errors.test-d.ts","../src/__tests__/codec-errors.unit.test.ts","../src/__tests__/compression-field.unit.test.ts","../src/__tests__/encode-pixel-limit.unit.test.ts","../src/__tests__/encode-roundtrip.unit.test.ts","../src/__tests__/ktx2-basis-capability-matrix.unit.test.ts","../src/__tests__/ktx2-errors.test.ts","../src/__tests__/ktx2-parse-scheme0.test.ts","../src/__tests__/ktx2-parse-scheme2.test.ts","../src/__tests__/ktx2-scheme1-and-transcode-errors.unit.test.ts","../src/__tests__/ktx2-to-texture.integration.test.ts","../src/__tests__/transcode-select-target.unit.test.ts","../src/__tests__/wasm-init-smoke.test.ts","../src/__tests__/zstd-deterministic.unit.test.ts","../src/__tests__/zstd-encode-singleton.unit.test.ts","../src/__tests__/zstd-roundtrip.unit.test.ts","../src/__tests__/zstd-singleton.unit.test.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.40/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@webgpu+types@0.1.71/node_modules/@webgpu/types/dist/index.d.ts"],"fileIdsList":[[148,194],[100,101,148,194],[148,191,194],[148,193,194],[194],[148,194,199,227],[148,194,195,200,205,213,224,235],[148,194,195,196,205,213],[143,144,145,148,194],[148,194,197,236],[148,194,198,199,206,214],[148,194,199,224,232],[148,194,200,202,205,213],[148,193,194,201],[148,194,202,203],[148,194,204,205],[148,193,194,205],[148,194,205,206,207,224,235],[148,194,205,206,207,220,224,227],[148,194,202,205,208,213,224,235],[148,194,205,206,208,209,213,224,232,235],[148,194,208,210,224,232,235],[146,147,148,149,150,151,152,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[148,194,205,211],[148,194,212,235,240],[148,194,202,205,213,224],[148,194,214],[148,194,215],[148,193,194,216],[148,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[148,194,218],[148,194,219],[148,194,205,220,221],[148,194,220,222,236,238],[148,194,205,224,225,227],[148,194,226,227],[148,194,224,225],[148,194,227],[148,194,228],[148,191,194,224,229],[148,194,205,230,231],[148,194,230,231],[148,194,199,213,224,232],[148,194,233],[148,194,213,234],[148,194,208,219,235],[148,194,199,236],[148,194,224,237],[148,194,212,238],[148,194,239],[148,189,194],[148,189,194,205,207,216,224,227,235,238,240],[148,194,224,241],[73,79,97,98,99,102,148,194],[109,148,194],[109,110,148,194],[77,79,80,148,194],[77,79,148,194],[77,148,194],[72,77,88,89,148,194],[72,77,88,148,194],[96,148,194],[72,78,148,194],[72,148,194],[74,148,194],[72,73,74,75,76,148,194],[115,116,148,194],[115,116,117,118,148,194],[115,117,148,194],[115,148,194],[148,161,165,194,235],[148,161,194,224,235],[148,156,194],[148,158,161,194,232,235],[148,194,213,232],[148,194,242],[148,156,194,242],[148,158,161,194,213,235],[148,153,154,157,160,194,205,224,235],[148,161,168,194],[148,153,159,194],[148,161,182,183,194],[148,157,161,194,227,235,242],[148,182,194,242],[148,155,156,194,242],[148,161,194],[148,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,183,184,185,186,187,188,194],[148,161,176,194],[148,161,168,169,194],[148,159,161,169,170,194],[148,160,194],[148,153,156,161,194],[148,161,165,169,170,194],[148,165,194],[148,159,161,164,194,235],[148,153,158,161,168,194],[148,194,224],[148,156,161,182,194,240,242],[83,148,194],[83,84,85,86,148,194],[85,148,194],[81,104,105,107,148,194],[81,82,94,107,148,194],[72,79,81,82,90,107,148,194],[87,148,194],[72,81,82,90,103,106,107,148,194],[81,82,87,90,107,148,194],[81,104,105,106,107,148,194],[81,87,91,92,93,107,148,194],[72,77,79,81,82,87,90,91,92,93,94,95,97,103,104,105,106,107,108,111,112,113,114,119,148,194],[72,79,81,82,90,91,104,105,106,107,112,148,194],[69,70,71,120,148,194,206,235],[71,120,148,194],[63,64,65,120,148,194,206,235],[69,120,148,194],[69,71,120,148,194],[120,148,194],[64,69,120,148,194,206,235],[63,64,69,71,120,148,194,206,235],[64,120,148,194,206,235],[61,62,71,120,148,194],[60,63,64,148,194],[60,148,194,212],[60,64,68,148,194],[67,70,148,194],[60,62,63,65,66,68,148,194],[60,62,148,194],[60,61,148,194]],"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":"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":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"5cd04196cd0918c5d44d432e6fd721ce39872dd5bc1a2be066409571c59a1fcc","signature":"550ea97801362e6dbbfcdc476d492de6cfd05d5f8e0cea68cc74319806c3867c"},{"version":"1c760da0ee927ecfdaf9dcf4427e1670fbed2368a1b39e2f749770a19db3dcb3","impliedFormat":1},{"version":"18a37b201e7b98fb3d1b9fbb24a7af2107d2894c7daad2ade093dc1377bd7abe","signature":"700c4b2bd16c8be27cef72e42695c2c814899ad1373803f90d29dcaf4aa8feba"},{"version":"fcca0be422672388b32a95202056a40c0618770ace0b5d0d8b1e06e65e39e548","signature":"d942f139517261e120d633ad4f741dd5c15acdf00d435a5283141c82406c2682"},{"version":"6cbee48d3f5a899da29ad43237d2fcbb8b42b742e6063b442bb71ccc09deca0b","signature":"032d03fa6b84dc200691e1325575adfc16bf4411f674779fc78032366ef6a076"},{"version":"a422c91a9ae193d22148d66fdf46a870de6567895f8b528062eb893ed5cec589","signature":"205340e36cf69f920f64fcc0ca1010af904ecfc3b54c4e0a22946c83fcd05927"},{"version":"9b84180e61f0268091113a7f018b996389f188dfe4b21bbecf1e2b100ab7e54b","signature":"d007ceb6824f3907da1573a39f87b6a3207b3b8621d1fd808484eb8655a47ed9"},{"version":"156786b82c8305a5c61a446c176feec9733d1c2c5be2bb83d770913509464dcf","signature":"7943a1670148d0e777b119ea86f97a8bb9a26241f308293fd3e1a11c0fd0c675"},{"version":"ad4d068641ee4a596450cae9469038052e53f9659a4b583238837d2f9071cc91","signature":"a9d6b362152964561bf7e735fb513a1ee0a06c8d6e7805efdc6d5dd820c41e8f"},{"version":"62b9f43d74a34bae6e47c20ccc92af6f4a59e7583aea342d516cf93e72784939","signature":"8e1e0a24d69cc41e82e3d1c3faf5f6ec9508eda81a9f4bbe68320b031c627554"},{"version":"0e71dacc4ba9ab67751826845498a0d9511c4380044a1cf74aa294b79f2c838a","signature":"6ad8ad56ddb39466e76670c67c5b52c79de2a55ee0254786f83433a09a748d24"},{"version":"71ef35aa9e062656a41f848ad65af649c8178caeda2feaffad185cb802614729","signature":"93e89094028d3792bfbb7a4baabd39ff61aa7f88f4e1055db62d6427b4194242"},{"version":"3a582c6e8906f5b094ccf0de6cc6f4f8a54b05a34f52517aba5c9c7f704f6b28","impliedFormat":99},{"version":"0528f6d21f7a02d4092895090d2dd86104bd5a3e79eced96d5a1a7dd90943d17","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"72ce5b734c05da85c85a6f6dc05823b051d6aa41acaedeeb1d17c72f3b4efa72","impliedFormat":99},{"version":"b0857bb28fd5236ace84280f79a25093f919fd0eff13e47cc26ea03de60a7294","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"3b0a56d056d81a011e484b9c05d5e430711aaecd561a788bad1d0498aad782c7","impliedFormat":99},{"version":"9443967db823b66d1682be7fc66392be7c7924e10c3e54900f456341e94591a6","impliedFormat":99},{"version":"424f71d1fae96ac2e878af92345bb87bea1d29f757228fbc190133b305643f2c","impliedFormat":99},{"version":"61bb64660ee150f3ab618340e15cca0a81664801bede7c966ca0eca3a952fe63","impliedFormat":99},{"version":"3b89216a7e38a454985ad17bb2ff85792837dc812f2a89fa5f60ad0a2e216fa7","impliedFormat":99},{"version":"16fe60bb544cfedfd2b5bb2f7d0b3957be7978706d57d9f06edc9c0c8dbdba23","impliedFormat":99},{"version":"82179358c2d9d7347f1602dc9300039a2250e483137b38ebf31d4d2e5519c181","impliedFormat":99},{"version":"4e003c868b0d8f8ad200b96cbc653e18e513fa23e1c19c4fe3cc25d4394efc47","impliedFormat":99},{"version":"605450898939e8abce51e8085a41b60640278337a969c33cd6b169e7c4f9c3f2","impliedFormat":99},{"version":"42a12f2faa483c9b48195ed794d22698162274e755f6e07219c2351c4f08d732","impliedFormat":99},{"version":"ec0c42bb0f465e4993f2bc68a6ce9df9a2dcbc7b83e21748f82f1b69561938e3","impliedFormat":99},{"version":"f50ff37a9cbbe74475f426474d9827083c7c2c138a954d28f1690df338f69291","impliedFormat":99},{"version":"61fd6c17235d530c40f543dd7c40afab091d91c1ef890baeed30db6d82b04b28","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"091767bc841f937654ed597d49e023ed59850355e746ae1a6f20ab31076ee1fb","impliedFormat":99},{"version":"19c6d6135af59693698d384050b45a8a049493500add442f58e4bd7c8a255ab6","impliedFormat":99},{"version":"6a0dba12d55314638a8c51108b20fe2f68f1364a619d098918bda91c22dec154","impliedFormat":99},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"4ead13a482c539b77394b2a97e3b877b809eac596390371cea490286f53b996a","impliedFormat":99},{"version":"06db2f8ba1d1dfacf04529cb731081ab23f133f29c7608ebdfbcab356996827c","impliedFormat":99},{"version":"bdd14f07b4eca0b4b5203b85b8dbc4d084c749fa590bee5ea613e1641dcd3b29","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"5c935b7fc4ddc1410ea1cd7cd4e35ed106a6e4920dd27a9480a40fd224359dc3","affectsGlobalScope":true,"impliedFormat":99},{"version":"ed9bb55ddcbebd5cb3eee991f57ff21438546ee40ee1c310281bd12a6c7cf65b","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"4ffba3c5848b4fe62ee59b754fd5f256ad9656a0db6d37b9a2a8cb40dfc7ac21","impliedFormat":99},{"version":"c76c02846ba7d40b9b3488f0e8d75d02cbdee2f0bc5fcd55dd3bd2e1457646ea","impliedFormat":99},{"version":"5e2ba3d18d78aebbde1f34bde356e41e9c76eeaeaeee56a37036596a9eff4211","impliedFormat":99},{"version":"8280ae8ccc0493b32d1742d585357ab9f0a508ea050af25a5a20d64010d0a5cf","impliedFormat":99},{"version":"7adfd9f9056ecd4ae6c65fde2a98654960c662714c73f048478959d04c09e144","impliedFormat":99},{"version":"32b35cf0dc3a1b1a7118b61c34ce2ad1a29695851679f9ec34e0776f2ece2a69","impliedFormat":99},{"version":"b413fbc6658fe2774f8bf9a15cf4c53e586fc38a2d5256b3b9647da242c14389","impliedFormat":99},{"version":"59e5e964b84fdb2378e9455e4e59405030e4ed2b4c6f891ce395f17796af3cbb","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"90ba95a763101bb61b8a799731a2ed60b5016b8135c1a2d5186862d4b534d4a1","impliedFormat":99},{"version":"434a046c04f542713b3bb0f2b00f7ef7bc18d764bf0fb4991cfc13f50b003b8f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8c9dee10e5fce36ddc113ee54ff9ffc9c33dbf4db84270cdf61c5d5bf7063231","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2d7723bb0bf5cc47e521d6bd6ffe270f9b187c7bca2fd157874ff31f47308349","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"00e7a91279b0cb060e0e58e0e7b5f4bcdee7466c2c946742273b6db49ab94bca","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ab5c6e68c2f6a6f8f7bd1f5ec0d00f4c162beaac72e9afba3cad5a8288d6a806","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c0c62a5ccdb7978436b5be9f8207f1fe66e112a6fadc4a720f0d9af1697cba56","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f583d98493af1c8b535480b5f9c062b465b9d494c3c291ba2b2f15b1f6641860","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3855fd5b12035470f99c999380a30feb8e4ec3c0612590ee78fa9f25161f3cb2","signature":"4432d51f0a8d89a71637c10f0f3afbe816e57b58c4a3a602680f8432ef44d99b"},{"version":"642c838c4e39d79d71f7f6b21dea9ad1ff062c665c4588c14c77c6168ff62038","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"bdbceb07531bd08744cb01e8089e9ce7b07be2a6010090e764c8e174ab2f759b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"05629a0438119ee9af940c3e17fd52e9e8709a70ab3e05646da9cd75d683334b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c098a50d181abd6a8c99982b6362ec12845e0eef517a87b55210b25ffbecd5f8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"36e125286d23e894dd8c22983fc49739fd00a2a10ceaa103ac538156bcf21610","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"80d1d474f3f1f7df7da91415a10e0fbdcf8554470a311eb56b0ae8dcc7c5925a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"a4fbccc82673704a016a7ea4eb9c306887956862ae44be9795ed179372526026","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"fbcb985822c6682f114bf36b3c7d7745be85d60904af507a828e992046791a78","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"19381beefbcbf53f08f2fbdba1d2924558bd6c94120f29f05a00ff30a427f2df","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"a5ad90abbf4682eab43f16aa3f715ada70455ee2caa23330d6d35b3813b5bd3c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ce3073a7aa00a5798c645c6cb08d6ef496d11ee946a7077560dfd9845776cbe2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"23dd96c042e97d1d75289a7c561be9e722f7eeb8739cc2d4f8fd9c776993b3d1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3ee1463321fe9f456dea99e229dfaf7ef0699e01646bc9ba41e1c2aaa4439561","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"42d952cade25ef3fcdcb66e97f363d593db1137dcca8d4b2a792216bb2855698","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"092c1137e31de289f3cc6a57fdccb3cca298d8a680d1e367d206d3318f1394a1","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"d2e5cfb2397ec8cacfd30de0e6f7992eb7db7b02cc83b7c43ef58bcd5aa88bc3","affectsGlobalScope":true,"impliedFormat":1}],"root":[60,[62,71],[121,142]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"exactOptionalPropertyTypes":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo","useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[99,1],[102,2],[100,1],[191,3],[192,3],[193,4],[148,5],[194,6],[195,7],[196,8],[143,1],[146,9],[144,1],[145,1],[197,10],[198,11],[199,12],[200,13],[201,14],[202,15],[203,15],[204,16],[205,17],[206,18],[207,19],[149,1],[147,1],[208,20],[209,21],[210,22],[242,23],[211,24],[212,25],[213,26],[214,27],[215,28],[216,29],[217,30],[218,31],[219,32],[220,33],[221,33],[222,34],[223,1],[224,35],[226,36],[225,37],[227,38],[228,39],[229,40],[230,41],[231,42],[232,43],[233,44],[234,45],[235,46],[236,47],[237,48],[238,49],[239,50],[150,1],[151,1],[152,1],[190,51],[240,52],[241,53],[103,54],[110,55],[111,56],[109,1],[72,1],[81,57],[80,58],[104,57],[88,59],[90,60],[89,61],[97,62],[96,1],[79,63],[73,64],[75,65],[77,66],[76,1],[78,64],[74,1],[243,1],[101,1],[117,67],[119,68],[118,69],[116,70],[115,1],[61,1],[105,1],[98,1],[58,1],[59,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[1,1],[168,71],[178,72],[167,71],[188,73],[159,74],[158,75],[187,76],[181,77],[186,78],[161,79],[175,80],[160,81],[184,82],[156,83],[155,76],[185,84],[157,85],[162,86],[163,1],[166,86],[153,1],[189,87],[179,88],[170,89],[171,90],[173,91],[169,92],[172,93],[182,76],[164,94],[165,95],[174,96],[154,97],[177,88],[176,86],[180,1],[183,98],[84,99],[87,100],[85,99],[83,1],[86,101],[106,102],[95,103],[91,104],[92,59],[113,105],[107,106],[93,107],[112,108],[82,1],[94,109],[120,110],[114,111],[108,1],[121,112],[122,113],[123,114],[124,115],[125,116],[126,115],[127,115],[128,117],[129,118],[130,118],[131,119],[132,115],[133,115],[134,116],[135,115],[136,116],[137,115],[138,120],[139,113],[140,113],[141,116],[142,121],[65,122],[66,1],[67,123],[70,124],[71,125],[60,1],[69,126],[63,127],[68,1],[64,1],[62,128]],"latestChangedDtsFile":"./__tests__/zstd-singleton.unit.test.d.ts","version":"6.0.3"}