@sideband/secure-relay 0.2.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -5
- package/dist/.tsbuildinfo +1 -1
- package/dist/frame.d.ts +9 -3
- package/dist/frame.d.ts.map +1 -1
- package/dist/frame.js +17 -10
- package/dist/frame.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +3 -2
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
- package/src/frame.test.ts +54 -37
- package/src/frame.ts +19 -10
- package/src/types.ts +4 -3
- /package/{dist/LICENSE → LICENSE} +0 -0
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Low-level E2EE primitives for the Sideband Relay Protocol (SBRP).
|
|
4
4
|
|
|
5
|
-
Implements authenticated handshake, key derivation,
|
|
5
|
+
Implements authenticated handshake, key derivation, message encryption, and binary wire framing for secure browser ↔ daemon communication via untrusted relay servers. Most applications should use `@sideband/peer` instead of this package directly.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
@@ -11,6 +11,7 @@ Implements authenticated handshake, key derivation, and message encryption for s
|
|
|
11
11
|
- **ChaCha20-Poly1305** — Authenticated encryption for all messages
|
|
12
12
|
- **TOFU identity pinning** — Trust-on-first-use with key change detection
|
|
13
13
|
- **Replay protection** — Bitmap-based sequence window
|
|
14
|
+
- **Binary wire framing** — Encode/decode SBRP frames; streaming `FrameDecoder`
|
|
14
15
|
|
|
15
16
|
## Non-goals
|
|
16
17
|
|
|
@@ -56,8 +57,8 @@ import {
|
|
|
56
57
|
createDaemonSession,
|
|
57
58
|
encryptClientToDaemon,
|
|
58
59
|
decryptClientToDaemon,
|
|
59
|
-
|
|
60
|
-
|
|
60
|
+
clearClientSession,
|
|
61
|
+
clearDaemonSession,
|
|
61
62
|
asDaemonId,
|
|
62
63
|
asClientId,
|
|
63
64
|
} from "@sideband/secure-relay";
|
|
@@ -76,6 +77,7 @@ const { message: accept, sessionKeys } = processHandshakeInit(
|
|
|
76
77
|
daemonId,
|
|
77
78
|
identity,
|
|
78
79
|
);
|
|
80
|
+
// clientSession holds daemon-side crypto state for this client
|
|
79
81
|
const clientSession = createClientSession(
|
|
80
82
|
asClientId("client-123"),
|
|
81
83
|
sessionKeys,
|
|
@@ -88,11 +90,16 @@ const clientKeys = processHandshakeAccept(
|
|
|
88
90
|
pinnedIdentityKey, // from local storage
|
|
89
91
|
ephemeralKeyPair,
|
|
90
92
|
);
|
|
93
|
+
// daemonSession holds client-side crypto state for communicating with daemon
|
|
91
94
|
const daemonSession = createDaemonSession(clientKeys);
|
|
92
95
|
|
|
93
96
|
// Encrypt/decrypt messages (sessions are stateful — do not clone)
|
|
94
97
|
const encrypted = encryptClientToDaemon(daemonSession, plaintext);
|
|
95
98
|
const decrypted = decryptClientToDaemon(clientSession, encrypted);
|
|
99
|
+
|
|
100
|
+
// Zeroize keys when done
|
|
101
|
+
clearDaemonSession(daemonSession);
|
|
102
|
+
clearClientSession(clientSession);
|
|
96
103
|
```
|
|
97
104
|
|
|
98
105
|
## TOFU security
|
|
@@ -143,7 +150,9 @@ if (!pinnedKey) {
|
|
|
143
150
|
|
|
144
151
|
## Error handling
|
|
145
152
|
|
|
146
|
-
All errors throw `SbrpError` with a specific `code
|
|
153
|
+
All errors throw `SbrpError` with a specific `code`. Codes fall into two categories:
|
|
154
|
+
|
|
155
|
+
**Endpoint-only** (never on wire — thrown locally):
|
|
147
156
|
|
|
148
157
|
| Code | Meaning | Recovery |
|
|
149
158
|
| ---------------------- | ----------------------------------------- | ------------------------- |
|
|
@@ -153,7 +162,30 @@ All errors throw `SbrpError` with a specific `code`:
|
|
|
153
162
|
| `decrypt_failed` | Message authentication failed | Close session |
|
|
154
163
|
| `sequence_error` | Replay detected or sequence out of window | Close session |
|
|
155
164
|
|
|
156
|
-
|
|
165
|
+
**Wire codes** (received in Control frames from relay):
|
|
166
|
+
|
|
167
|
+
| Code | Terminal | Meaning |
|
|
168
|
+
| -------------------- | -------- | -------------------------------- |
|
|
169
|
+
| `unauthorized` | yes | Missing or invalid auth token |
|
|
170
|
+
| `forbidden` | yes | Token valid but access denied |
|
|
171
|
+
| `daemon_not_found` | yes | No daemon registered for this ID |
|
|
172
|
+
| `daemon_offline` | yes | Daemon disconnected |
|
|
173
|
+
| `session_not_found` | yes | Session ID unknown to relay |
|
|
174
|
+
| `session_expired` | yes | Session token expired |
|
|
175
|
+
| `malformed_frame` | yes | Wire format violation |
|
|
176
|
+
| `payload_too_large` | yes | Frame payload exceeds limit |
|
|
177
|
+
| `invalid_frame_type` | yes | Unknown frame type byte |
|
|
178
|
+
| `invalid_session_id` | yes | SessionId zero for session frame |
|
|
179
|
+
| `disallowed_sender` | yes | Frame sent by wrong party |
|
|
180
|
+
| `internal_error` | yes | Relay internal error |
|
|
181
|
+
| `rate_limited` | no | Request rate exceeded, back off |
|
|
182
|
+
| `backpressure` | yes | Relay buffer full, reconnect |
|
|
183
|
+
| `session_paused` | no | Session flow control paused |
|
|
184
|
+
| `session_resumed` | no | Session flow control resumed |
|
|
185
|
+
| `session_ended` | no | Daemon ended this session |
|
|
186
|
+
| `session_pending` | no | Daemon not yet ready |
|
|
187
|
+
|
|
188
|
+
Terminal codes mean the relay closes the WebSocket after sending. Non-terminal codes are informational — the connection stays open.
|
|
157
189
|
|
|
158
190
|
## Specification
|
|
159
191
|
|
package/dist/.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/constants.ts","../../../node_modules/.bun/@noble+ciphers@2.1.1/node_modules/@noble/ciphers/utils.d.ts","../../../node_modules/.bun/@noble+ciphers@2.1.1/node_modules/@noble/ciphers/_arx.d.ts","../../../node_modules/.bun/@noble+ciphers@2.1.1/node_modules/@noble/ciphers/chacha.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/utils.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/utils.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/modular.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/curve.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/edwards.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/hash-to-curve.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/montgomery.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/oprf.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/ed25519.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/hkdf.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/_md.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/sha2.d.ts","../src/types.ts","../src/crypto.ts","../src/frame.ts","../src/handshake.ts","../src/replay.ts","../src/session.ts","../src/index.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/utility.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/header.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/readable.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/console.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/events.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/http.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/https.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/module.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/net.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/os.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/path.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/path/posix.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/path/win32.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/process.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/quic.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/test.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/test/reporters.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/url.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/util.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/util/types.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/index.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/fetch.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/formdata.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/connector.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/client.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/errors.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/handlers.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/api.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/util.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/cookies.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/patch.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/websocket.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/content-type.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/cache.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/index.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/globals.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/s3.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/fetch.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/jsx.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bun.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/extensions.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/devserver.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/ffi.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/html-rewriter.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/jsc.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/sqlite.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/index.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/test.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/wasm.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/overrides.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/deprecated.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/redis.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/shell.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/serve.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/sql.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/security.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bundle.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bun.ns.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/index.d.ts","../../../node_modules/.bun/@types+bun@1.3.9/node_modules/@types/bun/index.d.ts"],"fileIdsList":[[82,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[82,83,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[86,87,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[86,87,88,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[88,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[86,88,90,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[87,88,89,90,91,92,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[85,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[85,95,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250,253],[109,127,128,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,129,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,131,136,138,141,142,145,147,148,149,151,161,166,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,131,132,138,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,133,138,142,145,147,148,149,161,179,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,134,135,138,142,145,147,148,149,152,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,161,166,175,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,136,138,141,142,145,147,148,149,151,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,129,130,137,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,139,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,140,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,129,130,138,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,143,145,147,148,149,161,166,178,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,141,142,143,145,147,148,149,161,166,169,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,141,142,144,145,147,148,149,151,161,166,178,225,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,144,145,147,148,149,151,161,166,175,178,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,144,145,146,147,148,149,161,166,175,178,226,227,228,230,232,243,244,245,246,247,248,249,250],[107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,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,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,150,161,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,151,161,166,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,152,161,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,153,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,156,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,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,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,158,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,159,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,151,161,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,162,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,163,179,182,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,166,168,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,167,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,179,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,170,226,227,228,230,232,243,245,246,247,248,249,250],[109,127,130,138,142,145,147,148,149,161,166,172,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,171,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,173,174,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,173,174,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,151,161,166,175,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,176,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,151,161,177,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,144,145,147,148,149,159,161,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,179,180,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,161,180,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,181,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,150,161,182,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,183,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,133,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,179,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,225,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,184,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,156,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,174,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,143,145,147,148,149,156,161,166,169,178,181,182,184,225,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,185,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,144,145,147,148,149,161,175,179,184,225,226,227,228,229,232,233,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,225,226,227,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,156,161,166,169,175,179,184,225,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,186,226,227,228,230,231,232,233,234,235,236,242,243,244,245,246,247,248,249,250,251,252],[109,130,133,135,138,142,143,145,147,148,149,152,161,169,175,178,185,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,236,243,245,246,247,248,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,241,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,238,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,238,239,240,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,239,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,190,193,196,197,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,178,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,193,197,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,187,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,191,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,189,190,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,151,161,175,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,186,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,186,187,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,151,161,178,189,193,226,227,228,230,232,243,245,246,247,248,249,250],[104,105,106,109,130,138,141,142,145,147,148,149,161,166,178,188,192,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,202,210,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,191,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,219,220,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,169,178,186,188,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,189,193,226,227,228,230,232,243,245,246,247,248,249,250],[104,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,187,188,189,191,192,193,194,195,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,220,221,222,223,224,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,212,215,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,202,203,204,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,191,193,203,205,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,192,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,187,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,197,203,205,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,197,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,191,193,196,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,189,193,202,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,212,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,205,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,184,186,187,193,219,226,227,228,230,232,243,245,246,247,248,249,250],[81,84,85,93,94,96,97,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[81,97,98,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[97,98,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[81,97,98,99,100,101,102,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[81,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[97,98,101,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2536226e4151919ee5c8303b09b08f565f7e5dd1d5da2771efa5ad568c33b168","signature":"ad30d6683360dbb1fc79e4e392134d2ae2448a872bf671a575a0bc6ad06a9387"},{"version":"08816fd68670b0818422d25ffcba5e8a3843e081d69cc9de60fcb91c19f873e0","impliedFormat":99},{"version":"de2a2473321dddc7e6300ff15c0329e6feac12e0b6854da7798888cb8ea335ce","impliedFormat":99},{"version":"4d936f5a6cd18605189570e6c111941009a6111a0279254ad0c646554bcf21e4","impliedFormat":99},{"version":"79766c737b0a94c9d47424412054f0193d78dbfd3b71cfe2ec4f5efce419c081","impliedFormat":99},{"version":"c249b95e5d5907f5dfe1e5d2703484dc3acafc5bdb4132a23c1a5b32852c7232","impliedFormat":99},{"version":"bdb7b1fa2cabe27c8d9a97e16cf965f91f4328e11ae6271f5b4a1b61c805e312","impliedFormat":99},{"version":"a8f145f7327ccb58aca55eb7a1d6fe837ac03f1a16c7c4ba4987ce76e6e76ad5","impliedFormat":99},{"version":"8809b66099132204e286eb3f633bd068b64d6a84e16c2eb0e422d9a38abe5744","impliedFormat":99},{"version":"23c629ef8b88ae0b9ace6f904848adf85412c715a5db4022c3755b88d735b3ae","impliedFormat":99},{"version":"2b2ab16b17c20b37eeecb5739489093323f12338f835e0e433a842a28d3ea351","impliedFormat":99},{"version":"837ae55c67a792ea5fad4324b0562b344f0edf06abcefc9acb3e8c6c668ba1a5","impliedFormat":99},{"version":"9ee9463d2d72a650e30a4f9553004997fa47612ac720e5edc4b1307d36bc0692","impliedFormat":99},{"version":"332cf99045e23a2dfe4d34d46eed5c10ef32ac905ebf52e7783374581fd85819","impliedFormat":99},{"version":"c207c3e805c2fca690f1a0628623766aba3e21cde58fab152cdb10beea1a178e","impliedFormat":99},{"version":"3918416335105bf8ad5e12d03f896348439f837088a6fe91536fab5e1753b18c","impliedFormat":99},{"version":"2cbdbe29dac0322db610c7f25d78c39731fb12ed18e4f2815a7a9c04d4104dc7","signature":"d3b48215a1ceed82bba945d7fc6559412362cbcf3e5986d8200f60fd836a5de3"},{"version":"f024c7eb82dbe4e728579c4c3a0a03a8c5429360b58e1ae5dd5423ab38f1f4a6","signature":"21b2d0b1326ddadd6721b43006e2495095843da03c89a590b07d1150c70581e6"},{"version":"ab53a2d9c612eba06c5b3bcc59d2085503e45f916ab4e41f962a300b10c20ec5","signature":"523f996fbf900148d41069496e5a28457fcdb7d013c2246c435b9b137f8799ae"},{"version":"770e8dc68897c8f94ce0d9794375f564da33f5d8c7ebfd7b18786d15bda1d5bd","signature":"3a731789271a5117c43a9ae1087e963d05fb1567df9e67f45988d16ba303b0f2"},{"version":"68a77a95965636a635b2549a83ed9c33ce0c872b87c4a0f803c382e8062ecd3b","signature":"8c916ca89b50d25502b94f421a8680625b411552328d109e61dc7e1992d31c08"},{"version":"de5715e95a1b5f15e3d4dcdee1dbe60575474524383358ba3f86f292d15a1041","signature":"619b3bdd9cf2b8d64c95a9aadb73acaae4f6559967ad006c37f8cd375898688e"},{"version":"4ff3ba78932a230f7c1591a8b5129a9c1b259e3c5d831f65d5b914c235bd3248","signature":"3b33d49f5d6132ff8d3d64a833ef603754fd916b9dafd9da73e17ffc7a15fb30"},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"237ba5ac2a95702a114a309e39c53a5bddff5f6333b325db9764df9b34f3502b","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"f83fb2b1338afbb3f9d733c7d6e8b135826c41b0518867df0c0ace18ae1aa270","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"9451a46a89ed209e2e08329e6cac59f89356eae79a7230f916d8cc38725407c7","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"f7ba0e839daa0702e3ff1a1a871c0d8ea2d586ce684dd8a72c786c36a680b1d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f64deb26664af64dc274637343bde8d82f930c77af05a412c7d310b77207a448","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"bce309f4d9b67c18d4eeff5bba6cf3e67b2b0aead9f03f75d6060c553974d7ba","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"c3877fef8a43cd434f9728f25a97575b0eb73d92f38b5c87c840daccc3e21d97","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"1dbd83860e7634f9c236647f45dbc5d3c4f9eba8827d87209d6e9826fdf4dbd5","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"dbecf494aac7d3ee1b23cdaafae0d0bfea8590567fc153db58fe00ed9fa66c24","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"314607151cc203975193d5f44765f38597be3b0a43f466d3c1bfb17176dd3bd3","impliedFormat":1},{"version":"e155d961d69d5a5a5d1492a0a69d2a8f3b40a7197989484ba8c62e26e4ecd213","impliedFormat":1},{"version":"f40aad6c91017f20fc542f5701ec41e0f6aeba63c61bbf7aa13266ec29a50a3b","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"998da6b85ebace9ebea67040dd1a640f0156064e3d28dbe9bd9c0229b6f72347","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1}],"root":[81,[97,103]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"jsx":4,"module":200,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[83,1],[84,2],[82,3],[88,4],[89,5],[90,5],[87,3],[91,6],[92,7],[93,8],[86,9],[95,9],[94,9],[96,10],[85,3],[254,11],[127,12],[128,12],[129,13],[109,14],[130,15],[131,16],[132,17],[107,3],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,23],[140,24],[141,25],[142,26],[143,27],[110,3],[108,3],[144,28],[145,29],[146,30],[186,31],[147,32],[148,33],[149,32],[150,34],[151,35],[152,36],[153,37],[154,37],[155,37],[156,38],[157,39],[158,40],[159,41],[160,42],[161,43],[162,43],[163,44],[164,3],[165,3],[166,45],[167,46],[168,45],[169,47],[170,48],[171,49],[172,50],[173,51],[174,52],[175,53],[176,54],[177,55],[178,56],[179,57],[180,58],[181,59],[182,60],[183,61],[111,32],[112,3],[113,62],[114,63],[115,3],[116,64],[117,3],[118,65],[119,66],[120,67],[121,67],[122,68],[123,3],[124,69],[125,70],[126,66],[184,71],[185,72],[230,73],[252,3],[251,3],[245,74],[232,75],[231,3],[228,76],[233,3],[226,77],[234,3],[253,78],[235,3],[229,3],[244,79],[246,80],[227,81],[250,82],[248,83],[247,84],[249,85],[236,3],[242,86],[239,87],[241,88],[240,89],[238,90],[237,3],[243,91],[79,3],[80,3],[14,3],[13,3],[2,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[3,3],[23,3],[24,3],[4,3],[25,3],[29,3],[26,3],[27,3],[28,3],[30,3],[31,3],[32,3],[5,3],[33,3],[34,3],[35,3],[36,3],[6,3],[40,3],[37,3],[38,3],[39,3],[41,3],[7,3],[42,3],[47,3],[48,3],[43,3],[44,3],[45,3],[46,3],[8,3],[52,3],[49,3],[50,3],[51,3],[53,3],[9,3],[54,3],[55,3],[56,3],[58,3],[57,3],[59,3],[60,3],[10,3],[61,3],[62,3],[63,3],[11,3],[64,3],[65,3],[66,3],[67,3],[68,3],[1,3],[69,3],[70,3],[12,3],[74,3],[72,3],[77,3],[76,3],[71,3],[75,3],[73,3],[78,3],[202,92],[214,93],[199,94],[215,95],[224,96],[190,97],[191,98],[189,99],[223,100],[218,101],[222,102],[193,103],[211,104],[192,105],[221,106],[187,107],[188,101],[194,108],[195,3],[201,109],[198,108],[105,110],[225,111],[216,112],[205,113],[204,108],[206,114],[209,115],[203,116],[207,117],[219,100],[196,118],[197,119],[210,120],[106,95],[213,121],[212,108],[200,119],[208,122],[217,3],[104,3],[220,123],[81,3],[98,124],[99,125],[100,126],[103,127],[101,128],[102,129],[97,3]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/constants.ts","../../../node_modules/.bun/@noble+ciphers@2.1.1/node_modules/@noble/ciphers/utils.d.ts","../../../node_modules/.bun/@noble+ciphers@2.1.1/node_modules/@noble/ciphers/_arx.d.ts","../../../node_modules/.bun/@noble+ciphers@2.1.1/node_modules/@noble/ciphers/chacha.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/utils.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/utils.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/modular.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/curve.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/edwards.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/hash-to-curve.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/montgomery.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/abstract/oprf.d.ts","../../../node_modules/.bun/@noble+curves@2.0.1/node_modules/@noble/curves/ed25519.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/hkdf.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/_md.d.ts","../../../node_modules/.bun/@noble+hashes@2.0.1/node_modules/@noble/hashes/sha2.d.ts","../src/types.ts","../src/crypto.ts","../src/frame.ts","../src/handshake.ts","../src/replay.ts","../src/session.ts","../src/index.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/utility.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/header.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/readable.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/console.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/events.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/http.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/https.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/module.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/net.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/os.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/path.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/path/posix.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/path/win32.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/process.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/quic.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/test.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/test/reporters.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/url.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/util.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/util/types.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.bun/@types+node@25.3.0/node_modules/@types/node/index.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/fetch.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/formdata.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/connector.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/client.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/errors.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/handlers.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/api.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/util.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/cookies.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/patch.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/websocket.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/content-type.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/cache.d.ts","../../../node_modules/.bun/undici-types@7.18.2/node_modules/undici-types/index.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/globals.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/s3.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/fetch.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/jsx.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bun.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/extensions.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/devserver.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/ffi.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/html-rewriter.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/jsc.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/sqlite.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/vendor/expect-type/index.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/test.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/wasm.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/overrides.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/deprecated.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/redis.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/shell.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/serve.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/sql.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/security.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bundle.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/bun.ns.d.ts","../../../node_modules/.bun/bun-types@1.3.9/node_modules/bun-types/index.d.ts","../../../node_modules/.bun/@types+bun@1.3.9/node_modules/@types/bun/index.d.ts"],"fileIdsList":[[82,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[82,83,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[86,87,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[86,87,88,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[88,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[86,88,90,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[87,88,89,90,91,92,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[85,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[85,95,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250,253],[109,127,128,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,129,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,131,136,138,141,142,145,147,148,149,151,161,166,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,131,132,138,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,133,138,142,145,147,148,149,161,179,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,134,135,138,142,145,147,148,149,152,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,161,166,175,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,136,138,141,142,145,147,148,149,151,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,129,130,137,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,139,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,140,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,129,130,138,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,143,145,147,148,149,161,166,178,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,141,142,143,145,147,148,149,161,166,169,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,141,142,144,145,147,148,149,151,161,166,178,225,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,144,145,147,148,149,151,161,166,175,178,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,144,145,146,147,148,149,161,166,175,178,226,227,228,230,232,243,244,245,246,247,248,249,250],[107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,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,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,150,161,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,151,161,166,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,152,161,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,153,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,156,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,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,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,158,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,159,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,151,161,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,162,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,163,179,182,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,166,168,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,167,169,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,179,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,170,226,227,228,230,232,243,245,246,247,248,249,250],[109,127,130,138,142,145,147,148,149,161,166,172,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,171,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,145,147,148,149,161,173,174,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,173,174,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,151,161,166,175,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,176,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,151,161,177,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,144,145,147,148,149,159,161,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,179,180,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,161,180,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,181,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,150,161,182,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,183,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,133,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,179,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,225,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,184,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,156,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,174,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,141,142,143,145,147,148,149,156,161,166,169,178,181,182,184,225,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,185,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,144,145,147,148,149,161,175,179,184,225,226,227,228,229,232,233,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,225,226,227,230,232,243,245,246,247,248,249,250],[109,130,135,138,142,145,147,148,149,156,161,166,169,175,179,184,225,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,186,226,227,228,230,231,232,233,234,235,236,242,243,244,245,246,247,248,249,250,251,252],[109,130,133,135,138,142,143,145,147,148,149,152,161,169,175,178,185,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,236,243,245,246,247,248,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,241,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,238,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,238,239,240,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,239,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,237,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,226,227,228,230,232,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,190,193,196,197,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,178,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,193,197,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,166,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,187,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,191,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,189,190,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,151,161,175,226,227,228,230,232,243,244,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,186,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,186,187,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,151,161,178,189,193,226,227,228,230,232,243,245,246,247,248,249,250],[104,105,106,109,130,138,141,142,145,147,148,149,161,166,178,188,192,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,202,210,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,191,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,219,220,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,169,178,186,188,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,189,193,226,227,228,230,232,243,245,246,247,248,249,250],[104,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,187,188,189,191,192,193,194,195,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,220,221,222,223,224,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,212,215,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,202,203,204,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,191,193,203,205,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,192,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,187,193,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,197,203,205,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,197,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,178,191,193,196,226,227,228,230,232,243,245,246,247,248,249,250],[105,109,130,138,142,145,147,148,149,161,189,193,202,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,193,212,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,205,226,227,228,230,232,243,245,246,247,248,249,250],[109,130,138,142,145,147,148,149,161,169,184,186,187,193,219,226,227,228,230,232,243,245,246,247,248,249,250],[81,84,85,93,94,96,97,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[81,97,98,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[97,98,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[81,97,98,99,100,101,102,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[81,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250],[97,98,101,109,130,138,142,145,147,148,149,161,226,227,228,230,232,243,245,246,247,248,249,250]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2536226e4151919ee5c8303b09b08f565f7e5dd1d5da2771efa5ad568c33b168","signature":"ad30d6683360dbb1fc79e4e392134d2ae2448a872bf671a575a0bc6ad06a9387"},{"version":"08816fd68670b0818422d25ffcba5e8a3843e081d69cc9de60fcb91c19f873e0","impliedFormat":99},{"version":"de2a2473321dddc7e6300ff15c0329e6feac12e0b6854da7798888cb8ea335ce","impliedFormat":99},{"version":"4d936f5a6cd18605189570e6c111941009a6111a0279254ad0c646554bcf21e4","impliedFormat":99},{"version":"79766c737b0a94c9d47424412054f0193d78dbfd3b71cfe2ec4f5efce419c081","impliedFormat":99},{"version":"c249b95e5d5907f5dfe1e5d2703484dc3acafc5bdb4132a23c1a5b32852c7232","impliedFormat":99},{"version":"bdb7b1fa2cabe27c8d9a97e16cf965f91f4328e11ae6271f5b4a1b61c805e312","impliedFormat":99},{"version":"a8f145f7327ccb58aca55eb7a1d6fe837ac03f1a16c7c4ba4987ce76e6e76ad5","impliedFormat":99},{"version":"8809b66099132204e286eb3f633bd068b64d6a84e16c2eb0e422d9a38abe5744","impliedFormat":99},{"version":"23c629ef8b88ae0b9ace6f904848adf85412c715a5db4022c3755b88d735b3ae","impliedFormat":99},{"version":"2b2ab16b17c20b37eeecb5739489093323f12338f835e0e433a842a28d3ea351","impliedFormat":99},{"version":"837ae55c67a792ea5fad4324b0562b344f0edf06abcefc9acb3e8c6c668ba1a5","impliedFormat":99},{"version":"9ee9463d2d72a650e30a4f9553004997fa47612ac720e5edc4b1307d36bc0692","impliedFormat":99},{"version":"332cf99045e23a2dfe4d34d46eed5c10ef32ac905ebf52e7783374581fd85819","impliedFormat":99},{"version":"c207c3e805c2fca690f1a0628623766aba3e21cde58fab152cdb10beea1a178e","impliedFormat":99},{"version":"3918416335105bf8ad5e12d03f896348439f837088a6fe91536fab5e1753b18c","impliedFormat":99},{"version":"16fec3762cfa83d87e65338c7192495bbf2e7ed30c80a4bfd276b8905e088225","signature":"d74d0e0be0e10ca94ad2b1cc32d133a6b18e272a53315e28e1dadb4bccb118af"},{"version":"f024c7eb82dbe4e728579c4c3a0a03a8c5429360b58e1ae5dd5423ab38f1f4a6","signature":"21b2d0b1326ddadd6721b43006e2495095843da03c89a590b07d1150c70581e6"},{"version":"ef50a816f7e2b8746dcddf35fd16f184fb6f4893aa01cc3577967c6c80ce740e","signature":"f73abfaacb0fedda357ea3f1dc8d071120d95f405aa8cede4844bcb7e9d88553"},{"version":"770e8dc68897c8f94ce0d9794375f564da33f5d8c7ebfd7b18786d15bda1d5bd","signature":"3a731789271a5117c43a9ae1087e963d05fb1567df9e67f45988d16ba303b0f2"},{"version":"68a77a95965636a635b2549a83ed9c33ce0c872b87c4a0f803c382e8062ecd3b","signature":"8c916ca89b50d25502b94f421a8680625b411552328d109e61dc7e1992d31c08"},{"version":"de5715e95a1b5f15e3d4dcdee1dbe60575474524383358ba3f86f292d15a1041","signature":"619b3bdd9cf2b8d64c95a9aadb73acaae4f6559967ad006c37f8cd375898688e"},{"version":"4ff3ba78932a230f7c1591a8b5129a9c1b259e3c5d831f65d5b914c235bd3248","signature":"3b33d49f5d6132ff8d3d64a833ef603754fd916b9dafd9da73e17ffc7a15fb30"},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"237ba5ac2a95702a114a309e39c53a5bddff5f6333b325db9764df9b34f3502b","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"f83fb2b1338afbb3f9d733c7d6e8b135826c41b0518867df0c0ace18ae1aa270","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"9451a46a89ed209e2e08329e6cac59f89356eae79a7230f916d8cc38725407c7","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"f7ba0e839daa0702e3ff1a1a871c0d8ea2d586ce684dd8a72c786c36a680b1d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f64deb26664af64dc274637343bde8d82f930c77af05a412c7d310b77207a448","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"bce309f4d9b67c18d4eeff5bba6cf3e67b2b0aead9f03f75d6060c553974d7ba","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"c3877fef8a43cd434f9728f25a97575b0eb73d92f38b5c87c840daccc3e21d97","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"1dbd83860e7634f9c236647f45dbc5d3c4f9eba8827d87209d6e9826fdf4dbd5","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"dbecf494aac7d3ee1b23cdaafae0d0bfea8590567fc153db58fe00ed9fa66c24","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"314607151cc203975193d5f44765f38597be3b0a43f466d3c1bfb17176dd3bd3","impliedFormat":1},{"version":"e155d961d69d5a5a5d1492a0a69d2a8f3b40a7197989484ba8c62e26e4ecd213","impliedFormat":1},{"version":"f40aad6c91017f20fc542f5701ec41e0f6aeba63c61bbf7aa13266ec29a50a3b","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"998da6b85ebace9ebea67040dd1a640f0156064e3d28dbe9bd9c0229b6f72347","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1}],"root":[81,[97,103]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"jsx":4,"module":200,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[83,1],[84,2],[82,3],[88,4],[89,5],[90,5],[87,3],[91,6],[92,7],[93,8],[86,9],[95,9],[94,9],[96,10],[85,3],[254,11],[127,12],[128,12],[129,13],[109,14],[130,15],[131,16],[132,17],[107,3],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,23],[140,24],[141,25],[142,26],[143,27],[110,3],[108,3],[144,28],[145,29],[146,30],[186,31],[147,32],[148,33],[149,32],[150,34],[151,35],[152,36],[153,37],[154,37],[155,37],[156,38],[157,39],[158,40],[159,41],[160,42],[161,43],[162,43],[163,44],[164,3],[165,3],[166,45],[167,46],[168,45],[169,47],[170,48],[171,49],[172,50],[173,51],[174,52],[175,53],[176,54],[177,55],[178,56],[179,57],[180,58],[181,59],[182,60],[183,61],[111,32],[112,3],[113,62],[114,63],[115,3],[116,64],[117,3],[118,65],[119,66],[120,67],[121,67],[122,68],[123,3],[124,69],[125,70],[126,66],[184,71],[185,72],[230,73],[252,3],[251,3],[245,74],[232,75],[231,3],[228,76],[233,3],[226,77],[234,3],[253,78],[235,3],[229,3],[244,79],[246,80],[227,81],[250,82],[248,83],[247,84],[249,85],[236,3],[242,86],[239,87],[241,88],[240,89],[238,90],[237,3],[243,91],[79,3],[80,3],[14,3],[13,3],[2,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[3,3],[23,3],[24,3],[4,3],[25,3],[29,3],[26,3],[27,3],[28,3],[30,3],[31,3],[32,3],[5,3],[33,3],[34,3],[35,3],[36,3],[6,3],[40,3],[37,3],[38,3],[39,3],[41,3],[7,3],[42,3],[47,3],[48,3],[43,3],[44,3],[45,3],[46,3],[8,3],[52,3],[49,3],[50,3],[51,3],[53,3],[9,3],[54,3],[55,3],[56,3],[58,3],[57,3],[59,3],[60,3],[10,3],[61,3],[62,3],[63,3],[11,3],[64,3],[65,3],[66,3],[67,3],[68,3],[1,3],[69,3],[70,3],[12,3],[74,3],[72,3],[77,3],[76,3],[71,3],[75,3],[73,3],[78,3],[202,92],[214,93],[199,94],[215,95],[224,96],[190,97],[191,98],[189,99],[223,100],[218,101],[222,102],[193,103],[211,104],[192,105],[221,106],[187,107],[188,101],[194,108],[195,3],[201,109],[198,108],[105,110],[225,111],[216,112],[205,113],[204,108],[206,114],[209,115],[203,116],[207,117],[219,100],[196,118],[197,119],[210,120],[106,95],[213,121],[212,108],[200,119],[208,122],[217,3],[104,3],[220,123],[81,3],[98,124],[99,125],[100,126],[103,127],[101,128],[102,129],[97,3]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/dist/frame.d.ts
CHANGED
|
@@ -24,10 +24,10 @@ export type FrameType = (typeof FrameType)[keyof typeof FrameType];
|
|
|
24
24
|
*
|
|
25
25
|
* Codes use ranges for categorization:
|
|
26
26
|
* - 0x01xx: Authentication (terminal)
|
|
27
|
-
* - 0x02xx: Routing (
|
|
27
|
+
* - 0x02xx: Routing (terminal)
|
|
28
28
|
* - 0x03xx: Session (terminal)
|
|
29
29
|
* - 0x04xx: Wire format (terminal)
|
|
30
|
-
* - 0x09xx:
|
|
30
|
+
* - 0x09xx: Throttling (varies: rate_limited=N, backpressure=T)
|
|
31
31
|
* - 0x10xx: Session state (non-terminal)
|
|
32
32
|
*/
|
|
33
33
|
export declare const WireControlCode: {
|
|
@@ -44,13 +44,19 @@ export declare const WireControlCode: {
|
|
|
44
44
|
readonly DisallowedSender: 1029;
|
|
45
45
|
readonly InternalError: 1537;
|
|
46
46
|
readonly RateLimited: 2305;
|
|
47
|
+
readonly Backpressure: 2306;
|
|
47
48
|
readonly SessionPaused: 4097;
|
|
48
49
|
readonly SessionResumed: 4098;
|
|
49
50
|
readonly SessionEnded: 4099;
|
|
50
51
|
readonly SessionPending: 4100;
|
|
51
52
|
};
|
|
52
53
|
export type WireControlCode = (typeof WireControlCode)[keyof typeof WireControlCode];
|
|
53
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* Check if a control code is terminal (relay closes WebSocket after sending).
|
|
56
|
+
*
|
|
57
|
+
* Fail-safe pattern: only enumerate non-terminal exceptions; unknown/new codes
|
|
58
|
+
* default to terminal so they never silently keep a session alive.
|
|
59
|
+
*/
|
|
54
60
|
export declare function isTerminalCode(code: WireControlCode): boolean;
|
|
55
61
|
/** Decoded frame header */
|
|
56
62
|
export interface FrameHeader {
|
package/dist/frame.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"frame.d.ts","sourceRoot":"","sources":["../src/frame.ts"],"names":[],"mappings":"AA6BA,OAAO,KAAK,EACV,gBAAgB,EAChB,eAAe,EACf,aAAa,EACb,SAAS,EACV,MAAM,YAAY,CAAC;AACpB,OAAO,EAAa,aAAa,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAKhF;;;;;;;;GAQG;AACH,eAAO,MAAM,SAAS;;;;;;;;CAeZ,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEnE;;;;;;;;;;GAUG;AACH,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"frame.d.ts","sourceRoot":"","sources":["../src/frame.ts"],"names":[],"mappings":"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"}
|
package/dist/frame.js
CHANGED
|
@@ -43,19 +43,19 @@ export const FrameType = {
|
|
|
43
43
|
*
|
|
44
44
|
* Codes use ranges for categorization:
|
|
45
45
|
* - 0x01xx: Authentication (terminal)
|
|
46
|
-
* - 0x02xx: Routing (
|
|
46
|
+
* - 0x02xx: Routing (terminal)
|
|
47
47
|
* - 0x03xx: Session (terminal)
|
|
48
48
|
* - 0x04xx: Wire format (terminal)
|
|
49
|
-
* - 0x09xx:
|
|
49
|
+
* - 0x09xx: Throttling (varies: rate_limited=N, backpressure=T)
|
|
50
50
|
* - 0x10xx: Session state (non-terminal)
|
|
51
51
|
*/
|
|
52
52
|
export const WireControlCode = {
|
|
53
53
|
// Authentication (0x01xx) - Terminal
|
|
54
54
|
Unauthorized: 0x0101,
|
|
55
55
|
Forbidden: 0x0102,
|
|
56
|
-
// Routing (0x02xx) -
|
|
56
|
+
// Routing (0x02xx) - Terminal
|
|
57
57
|
DaemonNotFound: 0x0201,
|
|
58
|
-
DaemonOffline: 0x0202, //
|
|
58
|
+
DaemonOffline: 0x0202, // Terminal
|
|
59
59
|
// Session (0x03xx) - Terminal
|
|
60
60
|
SessionNotFound: 0x0301,
|
|
61
61
|
SessionExpired: 0x0302,
|
|
@@ -67,18 +67,23 @@ export const WireControlCode = {
|
|
|
67
67
|
DisallowedSender: 0x0405,
|
|
68
68
|
// Internal (0x06xx) - Terminal
|
|
69
69
|
InternalError: 0x0601,
|
|
70
|
-
//
|
|
70
|
+
// Throttling (0x09xx) - Varies (RateLimited=N, Backpressure=T)
|
|
71
71
|
RateLimited: 0x0901,
|
|
72
|
+
Backpressure: 0x0902,
|
|
72
73
|
// Session State (0x10xx) - Non-terminal
|
|
73
74
|
SessionPaused: 0x1001,
|
|
74
75
|
SessionResumed: 0x1002,
|
|
75
76
|
SessionEnded: 0x1003,
|
|
76
77
|
SessionPending: 0x1004,
|
|
77
78
|
};
|
|
78
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* Check if a control code is terminal (relay closes WebSocket after sending).
|
|
81
|
+
*
|
|
82
|
+
* Fail-safe pattern: only enumerate non-terminal exceptions; unknown/new codes
|
|
83
|
+
* default to terminal so they never silently keep a session alive.
|
|
84
|
+
*/
|
|
79
85
|
export function isTerminalCode(code) {
|
|
80
86
|
switch (code) {
|
|
81
|
-
case WireControlCode.DaemonOffline:
|
|
82
87
|
case WireControlCode.RateLimited:
|
|
83
88
|
case WireControlCode.SessionPaused:
|
|
84
89
|
case WireControlCode.SessionResumed:
|
|
@@ -110,8 +115,9 @@ const sbrpToWire = {
|
|
|
110
115
|
[SbrpErrorCode.DisallowedSender]: WireControlCode.DisallowedSender,
|
|
111
116
|
// Internal
|
|
112
117
|
[SbrpErrorCode.InternalError]: WireControlCode.InternalError,
|
|
113
|
-
// Rate Limiting
|
|
118
|
+
// Rate Limiting / Backpressure
|
|
114
119
|
[SbrpErrorCode.RateLimited]: WireControlCode.RateLimited,
|
|
120
|
+
[SbrpErrorCode.Backpressure]: WireControlCode.Backpressure,
|
|
115
121
|
// Session State
|
|
116
122
|
[SbrpErrorCode.SessionPaused]: WireControlCode.SessionPaused,
|
|
117
123
|
[SbrpErrorCode.SessionResumed]: WireControlCode.SessionResumed,
|
|
@@ -136,8 +142,9 @@ const wireToSbrp = {
|
|
|
136
142
|
[WireControlCode.DisallowedSender]: SbrpErrorCode.DisallowedSender,
|
|
137
143
|
// Internal
|
|
138
144
|
[WireControlCode.InternalError]: SbrpErrorCode.InternalError,
|
|
139
|
-
// Rate Limiting
|
|
145
|
+
// Rate Limiting / Backpressure
|
|
140
146
|
[WireControlCode.RateLimited]: SbrpErrorCode.RateLimited,
|
|
147
|
+
[WireControlCode.Backpressure]: SbrpErrorCode.Backpressure,
|
|
141
148
|
// Session State
|
|
142
149
|
[WireControlCode.SessionPaused]: SbrpErrorCode.SessionPaused,
|
|
143
150
|
[WireControlCode.SessionResumed]: SbrpErrorCode.SessionResumed,
|
|
@@ -156,7 +163,7 @@ export function toWireControlCode(code) {
|
|
|
156
163
|
export function fromWireControlCode(code) {
|
|
157
164
|
const sbrp = wireToSbrp[code];
|
|
158
165
|
if (sbrp === undefined) {
|
|
159
|
-
throw new Error(`Unknown WireControlCode: 0x${code.toString(16)}`);
|
|
166
|
+
throw new Error(`Unknown WireControlCode: 0x${code.toString(16).padStart(4, "0")}`);
|
|
160
167
|
}
|
|
161
168
|
return sbrp;
|
|
162
169
|
}
|
package/dist/frame.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"frame.js","sourceRoot":"","sources":["../src/frame.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"frame.js","sourceRoot":"","sources":["../src/frame.ts"],"names":[],"mappings":"AAAA,sCAAsC;AAEtC;;;;;;;;;;;GAWG;AAEH,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,iBAAiB,EACjB,6BAA6B,EAC7B,2BAA2B,EAC3B,gBAAgB,EAChB,qBAAqB,EACrB,wBAAwB,EACxB,0BAA0B,EAC1B,mBAAmB,EACnB,wBAAwB,GACzB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAO9C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAEhF,MAAM,WAAW,GAAG,IAAI,WAAW,EAAE,CAAC;AACtC,MAAM,WAAW,GAAG,IAAI,WAAW,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,CAAC;AAE/D;;;;;;;;GAQG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,oCAAoC;IACpC,aAAa,EAAE,IAAI;IACnB,eAAe,EAAE,IAAI;IACrB,IAAI,EAAE,IAAI,EAAE,qCAAqC;IAEjD,gCAAgC;IAChC,MAAM,EAAE,IAAI;IAEZ,wDAAwD;IACxD,IAAI,EAAE,IAAI;IACV,IAAI,EAAE,IAAI;IAEV,mCAAmC;IACnC,OAAO,EAAE,IAAI;CACL,CAAC;AAIX;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,qCAAqC;IACrC,YAAY,EAAE,MAAM;IACpB,SAAS,EAAE,MAAM;IAEjB,8BAA8B;IAC9B,cAAc,EAAE,MAAM;IACtB,aAAa,EAAE,MAAM,EAAE,WAAW;IAElC,8BAA8B;IAC9B,eAAe,EAAE,MAAM;IACvB,cAAc,EAAE,MAAM;IAEtB,kCAAkC;IAClC,cAAc,EAAE,MAAM;IACtB,eAAe,EAAE,MAAM;IACvB,gBAAgB,EAAE,MAAM;IACxB,gBAAgB,EAAE,MAAM;IACxB,gBAAgB,EAAE,MAAM;IAExB,+BAA+B;IAC/B,aAAa,EAAE,MAAM;IAErB,+DAA+D;IAC/D,WAAW,EAAE,MAAM;IACnB,YAAY,EAAE,MAAM;IAEpB,wCAAwC;IACxC,aAAa,EAAE,MAAM;IACrB,cAAc,EAAE,MAAM;IACtB,YAAY,EAAE,MAAM;IACpB,cAAc,EAAE,MAAM;CACd,CAAC;AAKX;;;;;GAKG;AACH,MAAM,UAAU,cAAc,CAAC,IAAqB;IAClD,QAAQ,IAAI,EAAE,CAAC;QACb,KAAK,eAAe,CAAC,WAAW,CAAC;QACjC,KAAK,eAAe,CAAC,aAAa,CAAC;QACnC,KAAK,eAAe,CAAC,cAAc,CAAC;QACpC,KAAK,eAAe,CAAC,YAAY,CAAC;QAClC,KAAK,eAAe,CAAC,cAAc;YACjC,OAAO,KAAK,CAAC;QACf;YACE,OAAO,IAAI,CAAC;IAChB,CAAC;AACH,CAAC;AA0BD,+EAA+E;AAC/E,uBAAuB;AACvB,+EAA+E;AAE/E,MAAM,UAAU,GAAoC;IAClD,iBAAiB;IACjB,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE,eAAe,CAAC,YAAY;IAC1D,CAAC,aAAa,CAAC,SAAS,CAAC,EAAE,eAAe,CAAC,SAAS;IAEpD,UAAU;IACV,CAAC,aAAa,CAAC,cAAc,CAAC,EAAE,eAAe,CAAC,cAAc;IAC9D,CAAC,aAAa,CAAC,aAAa,CAAC,EAAE,eAAe,CAAC,aAAa;IAE5D,UAAU;IACV,CAAC,aAAa,CAAC,eAAe,CAAC,EAAE,eAAe,CAAC,eAAe;IAChE,CAAC,aAAa,CAAC,cAAc,CAAC,EAAE,eAAe,CAAC,cAAc;IAE9D,cAAc;IACd,CAAC,aAAa,CAAC,cAAc,CAAC,EAAE,eAAe,CAAC,cAAc;IAC9D,CAAC,aAAa,CAAC,eAAe,CAAC,EAAE,eAAe,CAAC,eAAe;IAChE,CAAC,aAAa,CAAC,gBAAgB,CAAC,EAAE,eAAe,CAAC,gBAAgB;IAClE,CAAC,aAAa,CAAC,gBAAgB,CAAC,EAAE,eAAe,CAAC,gBAAgB;IAClE,CAAC,aAAa,CAAC,gBAAgB,CAAC,EAAE,eAAe,CAAC,gBAAgB;IAElE,WAAW;IACX,CAAC,aAAa,CAAC,aAAa,CAAC,EAAE,eAAe,CAAC,aAAa;IAE5D,+BAA+B;IAC/B,CAAC,aAAa,CAAC,WAAW,CAAC,EAAE,eAAe,CAAC,WAAW;IACxD,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE,eAAe,CAAC,YAAY;IAE1D,gBAAgB;IAChB,CAAC,aAAa,CAAC,aAAa,CAAC,EAAE,eAAe,CAAC,aAAa;IAC5D,CAAC,aAAa,CAAC,cAAc,CAAC,EAAE,eAAe,CAAC,cAAc;IAC9D,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE,eAAe,CAAC,YAAY;IAC1D,CAAC,aAAa,CAAC,cAAc,CAAC,EAAE,eAAe,CAAC,cAAc;CAC/D,CAAC;AAEF,MAAM,UAAU,GAAkC;IAChD,iBAAiB;IACjB,CAAC,eAAe,CAAC,YAAY,CAAC,EAAE,aAAa,CAAC,YAAY;IAC1D,CAAC,eAAe,CAAC,SAAS,CAAC,EAAE,aAAa,CAAC,SAAS;IAEpD,UAAU;IACV,CAAC,eAAe,CAAC,cAAc,CAAC,EAAE,aAAa,CAAC,cAAc;IAC9D,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE,aAAa,CAAC,aAAa;IAE5D,UAAU;IACV,CAAC,eAAe,CAAC,eAAe,CAAC,EAAE,aAAa,CAAC,eAAe;IAChE,CAAC,eAAe,CAAC,cAAc,CAAC,EAAE,aAAa,CAAC,cAAc;IAE9D,cAAc;IACd,CAAC,eAAe,CAAC,cAAc,CAAC,EAAE,aAAa,CAAC,cAAc;IAC9D,CAAC,eAAe,CAAC,eAAe,CAAC,EAAE,aAAa,CAAC,eAAe;IAChE,CAAC,eAAe,CAAC,gBAAgB,CAAC,EAAE,aAAa,CAAC,gBAAgB;IAClE,CAAC,eAAe,CAAC,gBAAgB,CAAC,EAAE,aAAa,CAAC,gBAAgB;IAClE,CAAC,eAAe,CAAC,gBAAgB,CAAC,EAAE,aAAa,CAAC,gBAAgB;IAElE,WAAW;IACX,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE,aAAa,CAAC,aAAa;IAE5D,+BAA+B;IAC/B,CAAC,eAAe,CAAC,WAAW,CAAC,EAAE,aAAa,CAAC,WAAW;IACxD,CAAC,eAAe,CAAC,YAAY,CAAC,EAAE,aAAa,CAAC,YAAY;IAE1D,gBAAgB;IAChB,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE,aAAa,CAAC,aAAa;IAC5D,CAAC,eAAe,CAAC,cAAc,CAAC,EAAE,aAAa,CAAC,cAAc;IAC9D,CAAC,eAAe,CAAC,YAAY,CAAC,EAAE,aAAa,CAAC,YAAY;IAC1D,CAAC,eAAe,CAAC,cAAc,CAAC,EAAE,aAAa,CAAC,cAAc;CAC/D,CAAC;AAEF,gFAAgF;AAChF,MAAM,UAAU,iBAAiB,CAAC,IAAmB;IACnD,MAAM,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;IAC9B,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;QACvB,MAAM,IAAI,KAAK,CAAC,sCAAsC,IAAI,EAAE,CAAC,CAAC;IAChE,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,iDAAiD;AACjD,MAAM,UAAU,mBAAmB,CAAC,IAAqB;IACvD,MAAM,IAAI,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;IAC9B,IAAI,IAAI,KAAK,SAAS,EAAE,CAAC;QACvB,MAAM,IAAI,KAAK,CACb,8BAA8B,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CACnE,CAAC;IACJ,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,+EAA+E;AAC/E,qBAAqB;AACrB,+EAA+E;AAE/E,MAAM,UAAU,GAAG,mBAAsB,CAAC;AAE1C;;;;;;GAMG;AACH,SAAS,cAAc,CAAC,IAAe;IACrC,OAAO,CACL,IAAI,KAAK,SAAS,CAAC,aAAa;QAChC,IAAI,KAAK,SAAS,CAAC,eAAe;QAClC,IAAI,KAAK,SAAS,CAAC,IAAI;QACvB,IAAI,KAAK,SAAS,CAAC,MAAM,CAC1B,CAAC;AACJ,CAAC;AAED,qEAAqE;AACrE,SAAS,kBAAkB,CAAC,IAAe;IACzC,OAAO,IAAI,KAAK,SAAS,CAAC,IAAI,IAAI,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC;AAC5D,CAAC;AAED,SAAS,iBAAiB,CAAC,SAAoB,EAAE,IAAe;IAC9D,IAAI,SAAS,GAAG,EAAE,IAAI,SAAS,GAAG,UAAU,EAAE,CAAC;QAC7C,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,kCAAkC,SAAS,EAAE,CAC9C,CAAC;IACJ,CAAC;IACD,IAAI,cAAc,CAAC,IAAI,CAAC,IAAI,SAAS,KAAK,EAAE,EAAE,CAAC;QAC7C,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,8BAA8B,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,8BAA8B,CAC/F,CAAC;IACJ,CAAC;IACD,IAAI,kBAAkB,CAAC,IAAI,CAAC,IAAI,SAAS,KAAK,EAAE,EAAE,CAAC;QACjD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,kCAAkC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,yBAAyB,CAC9F,CAAC;IACJ,CAAC;AACH,CAAC;AAED,+EAA+E;AAC/E,oCAAoC;AACpC,+EAA+E;AAE/E;;;;GAIG;AACH,MAAM,UAAU,WAAW,CACzB,IAAe,EACf,SAAoB,EACpB,OAAmB;IAEnB,iBAAiB,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;IAEnC,IAAI,OAAO,CAAC,MAAM,GAAG,gBAAgB,EAAE,CAAC;QACtC,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,eAAe,EAC7B,gBAAgB,OAAO,CAAC,MAAM,oBAAoB,gBAAgB,EAAE,CACrE,CAAC;IACJ,CAAC;IAED,MAAM,KAAK,GAAG,IAAI,UAAU,CAAC,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IACjE,MAAM,IAAI,GAAG,IAAI,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAExC,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;IAChB,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IACzC,IAAI,CAAC,YAAY,CAAC,CAAC,EAAE,SAAS,EAAE,KAAK,CAAC,CAAC;IACvC,KAAK,CAAC,GAAG,CAAC,OAAO,EAAE,iBAAiB,CAAC,CAAC;IAEtC,OAAO,KAAK,CAAC;AACf,CAAC;AAED;;;;;;;;GAQG;AACH,MAAM,UAAU,eAAe,CAAC,IAAgB;IAC9C,IAAI,IAAI,CAAC,MAAM,GAAG,iBAAiB,EAAE,CAAC;QACpC,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,oBAAoB,IAAI,CAAC,MAAM,MAAM,iBAAiB,EAAE,CACzD,CAAC;IACJ,CAAC;IAED,MAAM,IAAI,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;IACzE,MAAM,IAAI,GAAG,IAAI,CAAC,CAAC,CAAc,CAAC;IAElC,QAAQ,IAAI,EAAE,CAAC;QACb,KAAK,SAAS,CAAC,aAAa,CAAC;QAC7B,KAAK,SAAS,CAAC,eAAe,CAAC;QAC/B,KAAK,SAAS,CAAC,IAAI,CAAC;QACpB,KAAK,SAAS,CAAC,MAAM,CAAC;QACtB,KAAK,SAAS,CAAC,IAAI,CAAC;QACpB,KAAK,SAAS,CAAC,IAAI,CAAC;QACpB,KAAK,SAAS,CAAC,OAAO;YACpB,MAAM;QACR;YACE,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,gBAAgB,EAC9B,yBAA0B,IAAe,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAC1E,CAAC;IACN,CAAC;IAED,MAAM,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;IACxC,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;IAE9C,IAAI,MAAM,GAAG,gBAAgB,EAAE,CAAC;QAC9B,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,eAAe,EAC7B,kBAAkB,MAAM,oBAAoB,gBAAgB,EAAE,CAC/D,CAAC;IACJ,CAAC;IAED,0EAA0E;IAC1E,IAAI,cAAc,CAAC,IAAI,CAAC,IAAI,SAAS,KAAK,EAAE,EAAE,CAAC;QAC7C,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,8BAA8B,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,8BAA8B,CAC/F,CAAC;IACJ,CAAC;IAED,yEAAyE;IACzE,IAAI,kBAAkB,CAAC,IAAI,CAAC,IAAI,SAAS,KAAK,EAAE,EAAE,CAAC;QACjD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,kCAAkC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,yBAAyB,CAC9F,CAAC;IACJ,CAAC;IAED,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC;AACrC,CAAC;AAED;;;;;;;GAOG;AACH,MAAM,UAAU,WAAW,CAAC,IAAgB;IAC1C,MAAM,MAAM,GAAG,eAAe,CAAC,IAAI,CAAC,CAAC;IACrC,MAAM,YAAY,GAAG,iBAAiB,GAAG,MAAM,CAAC,MAAM,CAAC;IAEvD,IAAI,IAAI,CAAC,MAAM,GAAG,YAAY,EAAE,CAAC;QAC/B,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,wBAAwB,IAAI,CAAC,MAAM,cAAc,YAAY,EAAE,CAChE,CAAC;IACJ,CAAC;IAED,IAAI,IAAI,CAAC,MAAM,GAAG,YAAY,EAAE,CAAC;QAC/B,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,aAAa,IAAI,CAAC,MAAM,GAAG,YAAY,iBAAiB,CACzD,CAAC;IACJ,CAAC;IAED,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,iBAAiB,EAAE,YAAY,CAAC,CAAC;IAC/D,OAAO,EAAE,GAAG,MAAM,EAAE,OAAO,EAAE,CAAC;AAChC,CAAC;AAED,+EAA+E;AAC/E,qDAAqD;AACrD,+EAA+E;AAE/E;;;;GAIG;AACH,MAAM,UAAU,mBAAmB,CACjC,SAAoB,EACpB,IAAmB;IAEnB,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,KAAK,2BAA2B,EAAE,CAAC;QAC9D,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,yBAAyB,2BAA2B,eAAe,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAC/F,CAAC;IACJ,CAAC;IACD,OAAO,WAAW,CAAC,SAAS,CAAC,aAAa,EAAE,SAAS,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;AAC7E,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,qBAAqB,CACnC,SAAoB,EACpB,MAAuB;IAEvB,IAAI,MAAM,CAAC,iBAAiB,CAAC,MAAM,KAAK,yBAAyB,EAAE,CAAC;QAClE,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,6BAA6B,yBAAyB,eAAe,MAAM,CAAC,iBAAiB,CAAC,MAAM,EAAE,CACvG,CAAC;IACJ,CAAC;IACD,IAAI,MAAM,CAAC,eAAe,CAAC,MAAM,KAAK,wBAAwB,EAAE,CAAC;QAC/D,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,2BAA2B,wBAAwB,eAAe,MAAM,CAAC,eAAe,CAAC,MAAM,EAAE,CAClG,CAAC;IACJ,CAAC;IACD,IAAI,MAAM,CAAC,SAAS,CAAC,MAAM,KAAK,wBAAwB,EAAE,CAAC;QACzD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,qBAAqB,wBAAwB,eAAe,MAAM,CAAC,SAAS,CAAC,MAAM,EAAE,CACtF,CAAC;IACJ,CAAC;IACD,MAAM,OAAO,GAAG,IAAI,UAAU,CAAC,6BAA6B,CAAC,CAAC;IAC9D,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,iBAAiB,EAAE,CAAC,CAAC,CAAC;IACzC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,eAAe,EAAE,yBAAyB,CAAC,CAAC;IAC/D,OAAO,CAAC,GAAG,CACT,MAAM,CAAC,SAAS,EAChB,yBAAyB,GAAG,wBAAwB,CACrD,CAAC;IACF,OAAO,WAAW,CAAC,SAAS,CAAC,eAAe,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;AACpE,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,UAAU,CACxB,SAAoB,EACpB,OAAyB;IAEzB,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,GAAG,0BAA0B,EAAE,CAAC;QACrD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,iCAAiC,0BAA0B,eAAe,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,CAChG,CAAC;IACJ,CAAC;IACD,OAAO,WAAW,CAAC,SAAS,CAAC,IAAI,EAAE,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;AAC9D,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,YAAY,CAC1B,SAAoB,EACpB,MAAkB,EAClB,SAAuB,YAAY,CAAC,IAAI;IAExC,MAAM,OAAO,GAAG,IAAI,UAAU,CAAC,mBAAmB,CAAC,CAAC;IACpD,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC;IACpB,OAAO,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC;IACpB,OAAO,WAAW,CAAC,SAAS,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;AAC3D,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,UAAU,CACxB,UAAsB,IAAI,UAAU,CAAC,CAAC,CAAC;IAEvC,IAAI,OAAO,CAAC,MAAM,GAAG,qBAAqB,EAAE,CAAC;QAC3C,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,eAAe,EAC7B,0BAA0B,qBAAqB,eAAe,OAAO,CAAC,MAAM,EAAE,CAC/E,CAAC;IACJ,CAAC;IACD,OAAO,WAAW,CAAC,SAAS,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;AAClD,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,UAAU,CACxB,UAAsB,IAAI,UAAU,CAAC,CAAC,CAAC;IAEvC,IAAI,OAAO,CAAC,MAAM,GAAG,qBAAqB,EAAE,CAAC;QAC3C,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,eAAe,EAC7B,0BAA0B,qBAAqB,eAAe,OAAO,CAAC,MAAM,EAAE,CAC/E,CAAC;IACJ,CAAC;IACD,OAAO,WAAW,CAAC,SAAS,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;AAClD,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,aAAa,CAC3B,SAAoB,EACpB,IAAqB,EACrB,OAAgB;IAEhB,MAAM,QAAQ,GAAG,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;IAC9D,MAAM,OAAO,GAAG,IAAI,UAAU,CAAC,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,IAAI,CAAC,CAAC,CAAC,CAAC;IAC5D,IAAI,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;IACvD,IAAI,QAAQ;QAAE,OAAO,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;IACvC,OAAO,WAAW,CAAC,SAAS,CAAC,OAAO,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;AAC5D,CAAC;AAED,+EAA+E;AAC/E,oDAAoD;AACpD,+EAA+E;AAE/E;;;;GAIG;AACH,MAAM,UAAU,mBAAmB,CAAC,KAAY;IAC9C,IAAI,KAAK,CAAC,IAAI,KAAK,SAAS,CAAC,aAAa,EAAE,CAAC;QAC3C,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,gBAAgB,EAC9B,wCAAwC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CACnF,CAAC;IACJ,CAAC;IACD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,KAAK,2BAA2B,EAAE,CAAC;QACzD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,iCAAiC,2BAA2B,eAAe,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,CAClG,CAAC;IACJ,CAAC;IACD,OAAO;QACL,IAAI,EAAE,gBAAgB;QACtB,aAAa,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE;KACrC,CAAC;AACJ,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,qBAAqB,CAAC,KAAY;IAChD,IAAI,KAAK,CAAC,IAAI,KAAK,SAAS,CAAC,eAAe,EAAE,CAAC;QAC7C,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,gBAAgB,EAC9B,0CAA0C,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CACrF,CAAC;IACJ,CAAC;IACD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,KAAK,6BAA6B,EAAE,CAAC;QAC3D,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,mCAAmC,6BAA6B,eAAe,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,CACtG,CAAC;IACJ,CAAC;IACD,MAAM,MAAM,GAAG,yBAAyB,GAAG,wBAAwB,CAAC;IACpE,OAAO;QACL,IAAI,EAAE,kBAAkB;QACxB,iBAAiB,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,yBAAyB,CAAC;QACpE,eAAe,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,EAAE,MAAM,CAAC;QACvE,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,EAAE,MAAM,GAAG,wBAAwB,CAAC;KAC1E,CAAC;AACJ,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,UAAU,CAAC,KAAY;IACrC,IAAI,KAAK,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,EAAE,CAAC;QAClC,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,gBAAgB,EAC9B,+BAA+B,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAC1E,CAAC;IACJ,CAAC;IACD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,0BAA0B,EAAE,CAAC;QACtD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,iCAAiC,0BAA0B,eAAe,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,CACjG,CAAC;IACJ,CAAC;IACD,MAAM,GAAG,GAAG,eAAe,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAC3C,OAAO;QACL,IAAI,EAAE,WAAW;QACjB,GAAG;QACH,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE;KAC5B,CAAC;AACJ,CAAC;AAED;;;;GAIG;AACH,MAAM,UAAU,YAAY,CAAC,KAAY;IACvC,IAAI,KAAK,CAAC,IAAI,KAAK,SAAS,CAAC,MAAM,EAAE,CAAC;QACpC,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,gBAAgB,EAC9B,iCAAiC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAC5E,CAAC;IACJ,CAAC;IACD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,KAAK,mBAAmB,EAAE,CAAC;QACjD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,0BAA0B,mBAAmB,eAAe,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,CACnF,CAAC;IACJ,CAAC;IACD,iEAAiE;IACjE,MAAM,MAAM,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC,CAAE,CAAC;IACjC,MAAM,MAAM,GAAG,KAAK,CAAC,OAAO,CAAC,CAAC,CAAE,CAAC;IACjC,IAAI,MAAM,KAAK,UAAU,CAAC,KAAK,IAAI,MAAM,KAAK,UAAU,CAAC,KAAK,EAAE,CAAC;QAC/D,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,0BAA0B,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CACjE,CAAC;IACJ,CAAC;IACD,QAAQ,MAAM,EAAE,CAAC;QACf,KAAK,YAAY,CAAC,IAAI,CAAC;QACvB,KAAK,YAAY,CAAC,SAAS,CAAC;QAC5B,KAAK,YAAY,CAAC,QAAQ,CAAC;QAC3B,KAAK,YAAY,CAAC,MAAM,CAAC;QACzB,KAAK,YAAY,CAAC,KAAK;YACrB,MAAM;QACR;YACE,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,4BAA4B,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CACnE,CAAC;IACN,CAAC;IACD,OAAO,EAAE,MAAM,EAAE,MAAoB,EAAE,MAAM,EAAE,MAAsB,EAAE,CAAC;AAC1E,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,aAAa,CAAC,KAAY;IACxC,IAAI,KAAK,CAAC,IAAI,KAAK,SAAS,CAAC,OAAO,EAAE,CAAC;QACrC,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,gBAAgB,EAC9B,kCAAkC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAC7E,CAAC;IACJ,CAAC;IACD,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,wBAAwB,EAAE,CAAC;QACpD,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,oCAAoC,wBAAwB,eAAe,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,CAClG,CAAC;IACJ,CAAC;IACD,MAAM,IAAI,GAAG,IAAI,QAAQ,CACvB,KAAK,CAAC,OAAO,CAAC,MAAM,EACpB,KAAK,CAAC,OAAO,CAAC,UAAU,EACxB,KAAK,CAAC,OAAO,CAAC,UAAU,CACzB,CAAC;IACF,MAAM,OAAO,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC;IACzC,IAAI,UAAU,CAAC,OAAO,CAAC,KAAK,SAAS,EAAE,CAAC;QACtC,MAAM,IAAI,SAAS,CACjB,aAAa,CAAC,cAAc,EAC5B,2BAA2B,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CACnE,CAAC;IACJ,CAAC;IACD,MAAM,IAAI,GAAG,OAA0B,CAAC;IACxC,kEAAkE;IAClE,MAAM,OAAO,GAAG,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;IAC9D,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;AAC3B,CAAC;AAED,+EAA+E;AAC/E,0BAA0B;AAC1B,+EAA+E;AAE/E;;;;;;;;;;;;;;;GAeG;AACH,MAAM,OAAO,YAAY;IACf,MAAM,GAAe,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC;IAE/C;;OAEG;IACH,CAAC,IAAI,CAAC,IAAgB;QACpB,mBAAmB;QACnB,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC7B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACrB,CAAC;aAAM,CAAC;YACN,MAAM,QAAQ,GAAG,IAAI,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;YAClE,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;YAC7B,QAAQ,CAAC,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YACvC,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC;QACzB,CAAC;QAED,wBAAwB;QACxB,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,iBAAiB,EAAE,CAAC;YAC/C,MAAM,MAAM,GAAG,eAAe,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YAC5C,MAAM,SAAS,GAAG,iBAAiB,GAAG,MAAM,CAAC,MAAM,CAAC;YAEpD,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,EAAE,CAAC;gBACnC,MAAM,CAAC,uCAAuC;YAChD,CAAC;YAED,MAAM,OAAO,GAAG,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,iBAAiB,EAAE,SAAS,CAAC,CAAC;YACnE,MAAM,EAAE,GAAG,MAAM,EAAE,OAAO,EAAE,CAAC;YAC7B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QAChD,CAAC;IACH,CAAC;IAED,wDAAwD;IACxD,KAAK;QACH,IAAI,CAAC,MAAM,GAAG,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC;IAClC,CAAC;IAED,yCAAyC;IACzC,IAAI,aAAa;QACf,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;IAC5B,CAAC;CACF"}
|
package/dist/types.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export type ClientId = string & {
|
|
|
11
11
|
};
|
|
12
12
|
/**
|
|
13
13
|
* Session identifier (uint64).
|
|
14
|
-
* Assigned by control plane,
|
|
14
|
+
* Assigned by control plane, encoded in JWT `sid` claim as base64url(uint64).
|
|
15
15
|
* Used in frame headers for routing.
|
|
16
16
|
*/
|
|
17
17
|
export type SessionId = bigint;
|
|
@@ -76,6 +76,7 @@ export declare const SbrpErrorCode: {
|
|
|
76
76
|
readonly DisallowedSender: "disallowed_sender";
|
|
77
77
|
readonly InternalError: "internal_error";
|
|
78
78
|
readonly RateLimited: "rate_limited";
|
|
79
|
+
readonly Backpressure: "backpressure";
|
|
79
80
|
readonly SessionPaused: "session_paused";
|
|
80
81
|
readonly SessionResumed: "session_resumed";
|
|
81
82
|
readonly SessionEnded: "session_ended";
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAEA;;GAEG;AAEH,0CAA0C;AAC1C,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG;IAAE,QAAQ,CAAC,OAAO,EAAE,UAAU,CAAA;CAAE,CAAC;AAEjE,mEAAmE;AACnE,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG;IAAE,QAAQ,CAAC,OAAO,EAAE,UAAU,CAAA;CAAE,CAAC;AAEjE;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC;AAE/B,yDAAyD;AACzD,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,UAAU,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC;CACxB;AAED,gDAAgD;AAChD,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,UAAU,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC;CACxB;AAED,uEAAuE;AACvE,MAAM,WAAW,WAAW;IAC1B,gDAAgD;IAChD,cAAc,EAAE,UAAU,CAAC;IAC3B,gDAAgD;IAChD,cAAc,EAAE,UAAU,CAAC;CAC5B;AAED,+CAA+C;AAC/C,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,gBAAgB,CAAC;IACvB,aAAa,EAAE,UAAU,CAAC;CAC3B;AAED,iDAAiD;AACjD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,kBAAkB,CAAC;IACzB,iBAAiB,EAAE,UAAU,CAAC;IAC9B,eAAe,EAAE,UAAU,CAAC;IAC5B,SAAS,EAAE,UAAU,CAAC;CACvB;AAED,iCAAiC;AACjC,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,WAAW,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,UAAU,CAAC;CAClB;AAED,6DAA6D;AAC7D,eAAO,MAAM,SAAS;;;CAGZ,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEnE;;;;;GAKG;AACH,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAEA;;GAEG;AAEH,0CAA0C;AAC1C,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG;IAAE,QAAQ,CAAC,OAAO,EAAE,UAAU,CAAA;CAAE,CAAC;AAEjE,mEAAmE;AACnE,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG;IAAE,QAAQ,CAAC,OAAO,EAAE,UAAU,CAAA;CAAE,CAAC;AAEjE;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC;AAE/B,yDAAyD;AACzD,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,UAAU,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC;CACxB;AAED,gDAAgD;AAChD,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,UAAU,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC;CACxB;AAED,uEAAuE;AACvE,MAAM,WAAW,WAAW;IAC1B,gDAAgD;IAChD,cAAc,EAAE,UAAU,CAAC;IAC3B,gDAAgD;IAChD,cAAc,EAAE,UAAU,CAAC;CAC5B;AAED,+CAA+C;AAC/C,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,gBAAgB,CAAC;IACvB,aAAa,EAAE,UAAU,CAAC;CAC3B;AAED,iDAAiD;AACjD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,kBAAkB,CAAC;IACzB,iBAAiB,EAAE,UAAU,CAAC;IAC9B,eAAe,EAAE,UAAU,CAAC;IAC5B,SAAS,EAAE,UAAU,CAAC;CACvB;AAED,iCAAiC;AACjC,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,WAAW,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,UAAU,CAAC;CAClB;AAED,6DAA6D;AAC7D,eAAO,MAAM,SAAS;;;CAGZ,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;AAEnE;;;;;GAKG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;CAuChB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC;AAE/E,2CAA2C;AAC3C,eAAO,MAAM,UAAU;;;CAGb,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,CAAC,OAAO,UAAU,CAAC,CAAC,MAAM,OAAO,UAAU,CAAC,CAAC;AAEtE,6CAA6C;AAC7C,eAAO,MAAM,YAAY;IACvB,oDAAoD;;IAEpD,sCAAsC;;IAEtC,+BAA+B;;IAE/B,6BAA6B;;IAE7B,4BAA4B;;CAEpB,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAE5E,0BAA0B;AAC1B,qBAAa,SAAU,SAAQ,KAAK;aAEhB,IAAI,EAAE,aAAa;gBAAnB,IAAI,EAAE,aAAa,EACnC,OAAO,EAAE,MAAM;CAKlB;AAED,iDAAiD;AACjD,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,QAAQ,CAElD;AAED,iDAAiD;AACjD,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,QAAQ,CAElD"}
|
package/dist/types.js
CHANGED
|
@@ -14,7 +14,7 @@ export const SbrpErrorCode = {
|
|
|
14
14
|
// Authentication (0x01xx) - Terminal
|
|
15
15
|
Unauthorized: "unauthorized",
|
|
16
16
|
Forbidden: "forbidden",
|
|
17
|
-
// Routing (0x02xx) -
|
|
17
|
+
// Routing (0x02xx) - Terminal
|
|
18
18
|
DaemonNotFound: "daemon_not_found",
|
|
19
19
|
DaemonOffline: "daemon_offline",
|
|
20
20
|
// Session (0x03xx) - Terminal
|
|
@@ -28,8 +28,9 @@ export const SbrpErrorCode = {
|
|
|
28
28
|
DisallowedSender: "disallowed_sender",
|
|
29
29
|
// Internal (0x06xx) - Terminal
|
|
30
30
|
InternalError: "internal_error",
|
|
31
|
-
//
|
|
31
|
+
// Throttling (0x09xx) - Varies (rate_limited=N, backpressure=T)
|
|
32
32
|
RateLimited: "rate_limited",
|
|
33
|
+
Backpressure: "backpressure",
|
|
33
34
|
// Session State (0x10xx) - Non-terminal
|
|
34
35
|
SessionPaused: "session_paused",
|
|
35
36
|
SessionResumed: "session_resumed",
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,sCAAsC;AA4DtC,6DAA6D;AAC7D,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,cAAc,EAAE,CAAC;IACjB,cAAc,EAAE,CAAC;CACT,CAAC;AAIX;;;;;GAKG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,qCAAqC;IACrC,YAAY,EAAE,cAAc;IAC5B,SAAS,EAAE,WAAW;IAEtB,
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,sCAAsC;AA4DtC,6DAA6D;AAC7D,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,cAAc,EAAE,CAAC;IACjB,cAAc,EAAE,CAAC;CACT,CAAC;AAIX;;;;;GAKG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,qCAAqC;IACrC,YAAY,EAAE,cAAc;IAC5B,SAAS,EAAE,WAAW;IAEtB,8BAA8B;IAC9B,cAAc,EAAE,kBAAkB;IAClC,aAAa,EAAE,gBAAgB;IAE/B,8BAA8B;IAC9B,eAAe,EAAE,mBAAmB;IACpC,cAAc,EAAE,iBAAiB;IAEjC,kCAAkC;IAClC,cAAc,EAAE,iBAAiB;IACjC,eAAe,EAAE,mBAAmB;IACpC,gBAAgB,EAAE,oBAAoB;IACtC,gBAAgB,EAAE,oBAAoB;IACtC,gBAAgB,EAAE,mBAAmB;IAErC,+BAA+B;IAC/B,aAAa,EAAE,gBAAgB;IAE/B,gEAAgE;IAChE,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,cAAc;IAE5B,wCAAwC;IACxC,aAAa,EAAE,gBAAgB;IAC/B,cAAc,EAAE,iBAAiB;IACjC,YAAY,EAAE,eAAe;IAC7B,cAAc,EAAE,iBAAiB;IAEjC,yCAAyC;IACzC,kBAAkB,EAAE,sBAAsB;IAC1C,eAAe,EAAE,kBAAkB;IACnC,gBAAgB,EAAE,mBAAmB;IACrC,aAAa,EAAE,gBAAgB;IAC/B,aAAa,EAAE,gBAAgB;CACvB,CAAC;AAIX,2CAA2C;AAC3C,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI;CACH,CAAC;AAIX,6CAA6C;AAC7C,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,oDAAoD;IACpD,IAAI,EAAE,IAAI;IACV,sCAAsC;IACtC,SAAS,EAAE,IAAI;IACf,+BAA+B;IAC/B,QAAQ,EAAE,IAAI;IACd,6BAA6B;IAC7B,MAAM,EAAE,IAAI;IACZ,4BAA4B;IAC5B,KAAK,EAAE,IAAI;CACH,CAAC;AAIX,0BAA0B;AAC1B,MAAM,OAAO,SAAU,SAAQ,KAAK;IAEhB;IADlB,YACkB,IAAmB,EACnC,OAAe;QAEf,KAAK,CAAC,OAAO,CAAC,CAAC;QAHC,SAAI,GAAJ,IAAI,CAAe;QAInC,IAAI,CAAC,IAAI,GAAG,WAAW,CAAC;IAC1B,CAAC;CACF;AAED,iDAAiD;AACjD,MAAM,UAAU,UAAU,CAAC,KAAa;IACtC,OAAO,KAAiB,CAAC;AAC3B,CAAC;AAED,iDAAiD;AACjD,MAAM,UAAU,UAAU,CAAC,KAAa;IACtC,OAAO,KAAiB,CAAC;AAC3B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sideband/secure-relay",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Secure Relay Protocol (SBRP): E2EE handshake, session encryption, and TOFU identity pinning for relay-mediated communication.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
package/src/frame.test.ts
CHANGED
|
@@ -556,6 +556,17 @@ describe("frame codec", () => {
|
|
|
556
556
|
expect(control.code).toBe(WireControlCode.SessionPaused);
|
|
557
557
|
});
|
|
558
558
|
|
|
559
|
+
it("encodes and decodes backpressure (0x0902, terminal, SID=0)", () => {
|
|
560
|
+
const encoded = encodeControl(0n, WireControlCode.Backpressure);
|
|
561
|
+
const frame = decodeFrame(encoded);
|
|
562
|
+
expect(frame.sessionId).toBe(0n);
|
|
563
|
+
|
|
564
|
+
const control = decodeControl(frame);
|
|
565
|
+
expect(control.code).toBe(WireControlCode.Backpressure);
|
|
566
|
+
expect(control.code).toBe(0x0902);
|
|
567
|
+
expect(isTerminalCode(control.code)).toBe(true);
|
|
568
|
+
});
|
|
569
|
+
|
|
559
570
|
it("handles invalid UTF-8 by replacing", () => {
|
|
560
571
|
// Create control frame with invalid UTF-8 in message
|
|
561
572
|
const payload = new Uint8Array([0x01, 0x01, 0xff, 0xfe]); // code 0x0101 + invalid UTF-8
|
|
@@ -584,26 +595,37 @@ describe("frame codec", () => {
|
|
|
584
595
|
|
|
585
596
|
describe("isTerminalCode", () => {
|
|
586
597
|
it("returns true for terminal codes", () => {
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
+
const terminalCodes: WireControlCode[] = [
|
|
599
|
+
WireControlCode.Unauthorized,
|
|
600
|
+
WireControlCode.Forbidden,
|
|
601
|
+
WireControlCode.DaemonNotFound,
|
|
602
|
+
WireControlCode.DaemonOffline,
|
|
603
|
+
WireControlCode.SessionNotFound,
|
|
604
|
+
WireControlCode.SessionExpired,
|
|
605
|
+
WireControlCode.MalformedFrame,
|
|
606
|
+
WireControlCode.PayloadTooLarge,
|
|
607
|
+
WireControlCode.InvalidFrameType,
|
|
608
|
+
WireControlCode.InvalidSessionId,
|
|
609
|
+
WireControlCode.DisallowedSender,
|
|
610
|
+
WireControlCode.InternalError,
|
|
611
|
+
WireControlCode.Backpressure,
|
|
612
|
+
];
|
|
613
|
+
for (const code of terminalCodes) {
|
|
614
|
+
expect(isTerminalCode(code)).toBe(true);
|
|
615
|
+
}
|
|
598
616
|
});
|
|
599
617
|
|
|
600
618
|
it("returns false for non-terminal codes", () => {
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
619
|
+
const nonTerminalCodes: WireControlCode[] = [
|
|
620
|
+
WireControlCode.RateLimited,
|
|
621
|
+
WireControlCode.SessionPaused,
|
|
622
|
+
WireControlCode.SessionResumed,
|
|
623
|
+
WireControlCode.SessionEnded,
|
|
624
|
+
WireControlCode.SessionPending,
|
|
625
|
+
];
|
|
626
|
+
for (const code of nonTerminalCodes) {
|
|
627
|
+
expect(isTerminalCode(code)).toBe(false);
|
|
628
|
+
}
|
|
607
629
|
});
|
|
608
630
|
});
|
|
609
631
|
|
|
@@ -631,8 +653,9 @@ describe("frame codec", () => {
|
|
|
631
653
|
// Internal (0x06xx)
|
|
632
654
|
expect(WireControlCode.InternalError).toBe(0x0601);
|
|
633
655
|
|
|
634
|
-
// Rate Limiting (0x09xx)
|
|
656
|
+
// Rate Limiting / Backpressure (0x09xx)
|
|
635
657
|
expect(WireControlCode.RateLimited).toBe(0x0901);
|
|
658
|
+
expect(WireControlCode.Backpressure).toBe(0x0902);
|
|
636
659
|
|
|
637
660
|
// Session State (0x10xx)
|
|
638
661
|
expect(WireControlCode.SessionPaused).toBe(0x1001);
|
|
@@ -754,24 +777,6 @@ describe("frame codec", () => {
|
|
|
754
777
|
);
|
|
755
778
|
});
|
|
756
779
|
|
|
757
|
-
it("converts all WireControlCode to SbrpErrorCode", () => {
|
|
758
|
-
expect(fromWireControlCode(WireControlCode.Unauthorized)).toBe(
|
|
759
|
-
SbrpErrorCode.Unauthorized,
|
|
760
|
-
);
|
|
761
|
-
expect(fromWireControlCode(WireControlCode.MalformedFrame)).toBe(
|
|
762
|
-
SbrpErrorCode.MalformedFrame,
|
|
763
|
-
);
|
|
764
|
-
expect(fromWireControlCode(WireControlCode.InvalidSessionId)).toBe(
|
|
765
|
-
SbrpErrorCode.InvalidSessionId,
|
|
766
|
-
);
|
|
767
|
-
expect(fromWireControlCode(WireControlCode.InternalError)).toBe(
|
|
768
|
-
SbrpErrorCode.InternalError,
|
|
769
|
-
);
|
|
770
|
-
expect(fromWireControlCode(WireControlCode.SessionPaused)).toBe(
|
|
771
|
-
SbrpErrorCode.SessionPaused,
|
|
772
|
-
);
|
|
773
|
-
});
|
|
774
|
-
|
|
775
780
|
it("throws on endpoint-only codes (never transmitted on wire)", () => {
|
|
776
781
|
expect(() =>
|
|
777
782
|
toWireControlCode(SbrpErrorCode.IdentityKeyChanged),
|
|
@@ -782,8 +787,20 @@ describe("frame codec", () => {
|
|
|
782
787
|
expect(() => toWireControlCode(SbrpErrorCode.SequenceError)).toThrow();
|
|
783
788
|
});
|
|
784
789
|
|
|
790
|
+
it("covers all WireControlCode entries bidirectionally", () => {
|
|
791
|
+
// Exhaustive check: every wire code must round-trip through both mappings.
|
|
792
|
+
// This catches missing entries (e.g., 0x0902 backpressure) that a spot-check would miss.
|
|
793
|
+
const allCodes = Object.values(WireControlCode) as WireControlCode[];
|
|
794
|
+
for (const wireCode of allCodes) {
|
|
795
|
+
const sbrpCode = fromWireControlCode(wireCode);
|
|
796
|
+
expect(toWireControlCode(sbrpCode)).toBe(wireCode);
|
|
797
|
+
}
|
|
798
|
+
});
|
|
799
|
+
|
|
785
800
|
it("throws on unknown wire codes", () => {
|
|
786
|
-
expect(() => fromWireControlCode(0x9999 as WireControlCode)).toThrow(
|
|
801
|
+
expect(() => fromWireControlCode(0x9999 as WireControlCode)).toThrow(
|
|
802
|
+
/0x9999/,
|
|
803
|
+
);
|
|
787
804
|
});
|
|
788
805
|
});
|
|
789
806
|
|
package/src/frame.ts
CHANGED
|
@@ -71,10 +71,10 @@ export type FrameType = (typeof FrameType)[keyof typeof FrameType];
|
|
|
71
71
|
*
|
|
72
72
|
* Codes use ranges for categorization:
|
|
73
73
|
* - 0x01xx: Authentication (terminal)
|
|
74
|
-
* - 0x02xx: Routing (
|
|
74
|
+
* - 0x02xx: Routing (terminal)
|
|
75
75
|
* - 0x03xx: Session (terminal)
|
|
76
76
|
* - 0x04xx: Wire format (terminal)
|
|
77
|
-
* - 0x09xx:
|
|
77
|
+
* - 0x09xx: Throttling (varies: rate_limited=N, backpressure=T)
|
|
78
78
|
* - 0x10xx: Session state (non-terminal)
|
|
79
79
|
*/
|
|
80
80
|
export const WireControlCode = {
|
|
@@ -82,9 +82,9 @@ export const WireControlCode = {
|
|
|
82
82
|
Unauthorized: 0x0101,
|
|
83
83
|
Forbidden: 0x0102,
|
|
84
84
|
|
|
85
|
-
// Routing (0x02xx) -
|
|
85
|
+
// Routing (0x02xx) - Terminal
|
|
86
86
|
DaemonNotFound: 0x0201,
|
|
87
|
-
DaemonOffline: 0x0202, //
|
|
87
|
+
DaemonOffline: 0x0202, // Terminal
|
|
88
88
|
|
|
89
89
|
// Session (0x03xx) - Terminal
|
|
90
90
|
SessionNotFound: 0x0301,
|
|
@@ -100,8 +100,9 @@ export const WireControlCode = {
|
|
|
100
100
|
// Internal (0x06xx) - Terminal
|
|
101
101
|
InternalError: 0x0601,
|
|
102
102
|
|
|
103
|
-
//
|
|
103
|
+
// Throttling (0x09xx) - Varies (RateLimited=N, Backpressure=T)
|
|
104
104
|
RateLimited: 0x0901,
|
|
105
|
+
Backpressure: 0x0902,
|
|
105
106
|
|
|
106
107
|
// Session State (0x10xx) - Non-terminal
|
|
107
108
|
SessionPaused: 0x1001,
|
|
@@ -113,10 +114,14 @@ export const WireControlCode = {
|
|
|
113
114
|
export type WireControlCode =
|
|
114
115
|
(typeof WireControlCode)[keyof typeof WireControlCode];
|
|
115
116
|
|
|
116
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* Check if a control code is terminal (relay closes WebSocket after sending).
|
|
119
|
+
*
|
|
120
|
+
* Fail-safe pattern: only enumerate non-terminal exceptions; unknown/new codes
|
|
121
|
+
* default to terminal so they never silently keep a session alive.
|
|
122
|
+
*/
|
|
117
123
|
export function isTerminalCode(code: WireControlCode): boolean {
|
|
118
124
|
switch (code) {
|
|
119
|
-
case WireControlCode.DaemonOffline:
|
|
120
125
|
case WireControlCode.RateLimited:
|
|
121
126
|
case WireControlCode.SessionPaused:
|
|
122
127
|
case WireControlCode.SessionResumed:
|
|
@@ -179,8 +184,9 @@ const sbrpToWire: Record<string, WireControlCode> = {
|
|
|
179
184
|
// Internal
|
|
180
185
|
[SbrpErrorCode.InternalError]: WireControlCode.InternalError,
|
|
181
186
|
|
|
182
|
-
// Rate Limiting
|
|
187
|
+
// Rate Limiting / Backpressure
|
|
183
188
|
[SbrpErrorCode.RateLimited]: WireControlCode.RateLimited,
|
|
189
|
+
[SbrpErrorCode.Backpressure]: WireControlCode.Backpressure,
|
|
184
190
|
|
|
185
191
|
// Session State
|
|
186
192
|
[SbrpErrorCode.SessionPaused]: WireControlCode.SessionPaused,
|
|
@@ -212,8 +218,9 @@ const wireToSbrp: Record<number, SbrpErrorCode> = {
|
|
|
212
218
|
// Internal
|
|
213
219
|
[WireControlCode.InternalError]: SbrpErrorCode.InternalError,
|
|
214
220
|
|
|
215
|
-
// Rate Limiting
|
|
221
|
+
// Rate Limiting / Backpressure
|
|
216
222
|
[WireControlCode.RateLimited]: SbrpErrorCode.RateLimited,
|
|
223
|
+
[WireControlCode.Backpressure]: SbrpErrorCode.Backpressure,
|
|
217
224
|
|
|
218
225
|
// Session State
|
|
219
226
|
[WireControlCode.SessionPaused]: SbrpErrorCode.SessionPaused,
|
|
@@ -235,7 +242,9 @@ export function toWireControlCode(code: SbrpErrorCode): WireControlCode {
|
|
|
235
242
|
export function fromWireControlCode(code: WireControlCode): SbrpErrorCode {
|
|
236
243
|
const sbrp = wireToSbrp[code];
|
|
237
244
|
if (sbrp === undefined) {
|
|
238
|
-
throw new Error(
|
|
245
|
+
throw new Error(
|
|
246
|
+
`Unknown WireControlCode: 0x${code.toString(16).padStart(4, "0")}`,
|
|
247
|
+
);
|
|
239
248
|
}
|
|
240
249
|
return sbrp;
|
|
241
250
|
}
|
package/src/types.ts
CHANGED
|
@@ -12,7 +12,7 @@ export type ClientId = string & { readonly __brand: "ClientId" };
|
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Session identifier (uint64).
|
|
15
|
-
* Assigned by control plane,
|
|
15
|
+
* Assigned by control plane, encoded in JWT `sid` claim as base64url(uint64).
|
|
16
16
|
* Used in frame headers for routing.
|
|
17
17
|
*/
|
|
18
18
|
export type SessionId = bigint;
|
|
@@ -77,7 +77,7 @@ export const SbrpErrorCode = {
|
|
|
77
77
|
Unauthorized: "unauthorized",
|
|
78
78
|
Forbidden: "forbidden",
|
|
79
79
|
|
|
80
|
-
// Routing (0x02xx) -
|
|
80
|
+
// Routing (0x02xx) - Terminal
|
|
81
81
|
DaemonNotFound: "daemon_not_found",
|
|
82
82
|
DaemonOffline: "daemon_offline",
|
|
83
83
|
|
|
@@ -95,8 +95,9 @@ export const SbrpErrorCode = {
|
|
|
95
95
|
// Internal (0x06xx) - Terminal
|
|
96
96
|
InternalError: "internal_error",
|
|
97
97
|
|
|
98
|
-
//
|
|
98
|
+
// Throttling (0x09xx) - Varies (rate_limited=N, backpressure=T)
|
|
99
99
|
RateLimited: "rate_limited",
|
|
100
|
+
Backpressure: "backpressure",
|
|
100
101
|
|
|
101
102
|
// Session State (0x10xx) - Non-terminal
|
|
102
103
|
SessionPaused: "session_paused",
|
|
File without changes
|