toiljs 0.0.113 → 0.0.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/build/backend/.tsbuildinfo +1 -1
  3. package/build/cli/.tsbuildinfo +1 -1
  4. package/build/cli/index.js +198 -41
  5. package/build/client/.tsbuildinfo +1 -1
  6. package/build/compiler/.tsbuildinfo +1 -1
  7. package/build/compiler/index.js +1 -1
  8. package/build/compiler/pages.js +1 -13
  9. package/build/compiler/prerender.d.ts +1 -0
  10. package/build/compiler/prerender.js +39 -2
  11. package/build/compiler/toil-docs.generated.js +3 -3
  12. package/build/devserver/.tsbuildinfo +1 -1
  13. package/build/devserver/daemon/host.d.ts +2 -1
  14. package/build/devserver/daemon/host.js +12 -12
  15. package/build/devserver/daemon/index.js +3 -3
  16. package/build/io/.tsbuildinfo +1 -1
  17. package/build/logger/.tsbuildinfo +1 -1
  18. package/build/shared/.tsbuildinfo +1 -1
  19. package/docs/background/daemons.md +49 -3
  20. package/docs/cli/README.md +4 -2
  21. package/docs/getting-started/installation.md +18 -0
  22. package/package.json +15 -15
  23. package/src/cli/create.ts +171 -25
  24. package/src/cli/diagnostics.ts +74 -0
  25. package/src/cli/doctor.ts +105 -27
  26. package/src/cli/features.ts +7 -3
  27. package/src/cli/index.ts +2 -2
  28. package/src/cli/update.ts +30 -3
  29. package/src/cli/updates.ts +23 -0
  30. package/src/compiler/index.ts +11 -2
  31. package/src/compiler/pages.ts +1 -22
  32. package/src/compiler/prerender.ts +57 -3
  33. package/src/compiler/toil-docs.generated.ts +3 -3
  34. package/src/devserver/daemon/host.ts +29 -19
  35. package/src/devserver/daemon/index.ts +12 -5
  36. package/test/daemon-emulation.test.ts +44 -2
  37. package/test/doctor.test.ts +28 -0
  38. package/test/fixtures/daemon-app.ts +9 -4
  39. package/test/prerender.test.ts +64 -2
  40. package/test/update.test.ts +15 -1
  41. package/tsconfig.base.json +0 -1
@@ -1497,8 +1497,8 @@ var PKG_VERSION = {
1497
1497
  sass: "^1.83.0",
1498
1498
  less: "^4.2.1",
1499
1499
  stylus: "^0.64.0",
1500
- tailwindcss: "^4.0.0",
1501
- "@tailwindcss/vite": "^4.0.0"
1500
+ tailwindcss: "^4.3.0",
1501
+ "@tailwindcss/vite": "^4.3.0"
1502
1502
  };
1503
1503
  var TAILWIND_ENTRY = "styles/tailwind.css";
1504
1504
  var TAILWIND_CSS = `@import 'tailwindcss';
@@ -2060,6 +2060,7 @@ function scaffold(name, template, features, aiTools, images) {
2060
2060
  private: true,
2061
2061
  type: "module",
2062
2062
  scripts: {
2063
+ start: "toiljs start",
2063
2064
  dev: "toiljs dev",
2064
2065
  build: "toiljs build",
2065
2066
  "build:server": "toiljs build --server",
@@ -2190,6 +2191,9 @@ export default defineConfig({
2190
2191
  if (template === "minimal") {
2191
2192
  Object.assign(files, minimalClient(name, features));
2192
2193
  Object.assign(files, minimalServer());
2194
+ } else if (template === "agent") {
2195
+ Object.assign(files, agentClient(name, features));
2196
+ Object.assign(files, agentServer());
2193
2197
  }
2194
2198
  Object.assign(files, aiHelperFiles(aiTools));
2195
2199
  for (const [docName, content] of Object.entries(TOIL_DOCS)) {
@@ -2233,15 +2237,26 @@ declare namespace TwoFactor { const DEFAULT_TTL_SECS: u64; const DEFAULT_DIGITS:
2233
2237
  declare namespace AuthService { const SESSION_COOKIE: string; const USER_COOKIE: string; const LOGIN_CONTEXT: string; const PUBLIC_KEY_LEN: i32; const SIGNATURE_LEN: i32; const DEFAULT_SESSION_TTL_SECS: u64; function setSecret(secret: Uint8Array): void; function hasSession(): bool; function getSessionBytes(): Uint8Array | null; function getUser(): __ToilAuthUser | null; function mintSession(userData: Uint8Array, ttlSecs?: u64): Cookie; function clearSession(): Cookie; function userCookie(userData: Uint8Array, ttlSecs?: u64): Cookie; function clearUserCookie(): Cookie; function buildLoginMessage(sub: string, aud: string, cid: Uint8Array, nonce: Uint8Array, iat: u64, exp: u64): Uint8Array; function verifyLogin(publicKey: Uint8Array, message: Uint8Array, signature: Uint8Array): bool; }
2234
2238
  interface __ToilAuthUser {}
2235
2239
  `;
2240
+ var SERVER_README = "# server/\n\nYour ToilScript backend, compiled to a single WebAssembly module. One folder per concern:\n\n| Folder | What lives here |\n| --- | --- |\n| `main.ts` | The entry point: wires the handler and imports the surface modules. |\n| `core/` | The request handler and shared app logic (state, helpers). |\n| `models/` | `@data` classes, the typed wire model shared by HTTP and RPC. One type per file. |\n| `migrations/` | ToilDB schema migrations: a `<Type>.migration.ts` per evolving `@data` value type, holding the old shapes + the `@migrate` transform. |\n| `routes/` | `@rest` controllers (HTTP). One controller per file, named after its class. |\n| `services/` | `@service` classes and free `@remote` functions (typed RPC). |\n| `scheduled/` | Reserved for scheduled tasks (not shipped yet). |\n\nNew decorated files are picked up automatically by `toiljs build`/`dev`; also add an import\nin `main.ts` so a direct `toilscript` run builds the same server.\n";
2236
2241
  function minimalServer() {
2237
2242
  return {
2238
2243
  "server/toil-server-env.d.ts": TOIL_SERVER_ENV_DTS,
2239
2244
  "server/core/AppHandler.ts": "import { ToilHandler, Request, Response, Method } from 'toiljs/server/runtime';\n\n/** Every request enters here. Add `@rest` controllers under routes/ as you grow. */\nexport class AppHandler extends ToilHandler {\n public handle(req: Request): Response {\n if (req.method != Method.GET && req.method != Method.HEAD) {\n return Response.empty(405).setHeader('allow', 'GET, HEAD');\n }\n if (req.path == '/api/hello') {\n return Response.text('hello from toiljs\\n');\n }\n if (req.path == '/api/hash') {\n // `crypto` is a global (no import), synchronous Web Crypto.\n return Response.text(crypto.toHex(crypto.sha256Text(req.path)) + '\\n');\n }\n // Yield page routes and assets to the client: under `toiljs dev`\n // this falls through to Vite so the app renders at /.\n return Response.unhandled();\n }\n}\n",
2240
2245
  "server/main.ts": "import { Server } from 'toiljs/server/runtime';\nimport { revertOnError } from 'toiljs/server/runtime/abort/abort';\n\nimport { AppHandler } from './core/AppHandler';\n\n// As you add surface modules (@rest routes, @service/@remote RPC), import them here\n// so a direct `toilscript` run builds the same server `toiljs build` does, e.g.:\n// import './routes/Players';\n\n// Wire your handler here.\nServer.handler = () => new AppHandler();\n\n// Required: re-export the WASM entry points and the abort hook.\nexport * from 'toiljs/server/runtime/exports';\nexport function abort(message: string, fileName: string, line: u32, column: u32): void {\n revertOnError(message, fileName, line, column);\n}\n",
2241
- "server/README.md": "# server/\n\nYour ToilScript backend, compiled to a single WebAssembly module. One folder per concern:\n\n| Folder | What lives here |\n| --- | --- |\n| `main.ts` | The entry point: wires the handler and imports the surface modules. |\n| `core/` | The request handler and shared app logic (state, helpers). |\n| `models/` | `@data` classes, the typed wire model shared by HTTP and RPC. One type per file. |\n| `migrations/` | ToilDB schema migrations: a `<Type>.migration.ts` per evolving `@data` value type, holding the old shapes + the `@migrate` transform. |\n| `routes/` | `@rest` controllers (HTTP). One controller per file, named after its class. |\n| `services/` | `@service` classes and free `@remote` functions (typed RPC). |\n| `scheduled/` | Reserved for scheduled tasks (not shipped yet). |\n\nNew decorated files are picked up automatically by `toiljs build`/`dev`; also add an import\nin `main.ts` so a direct `toilscript` run builds the same server.\n"
2246
+ "server/README.md": SERVER_README
2242
2247
  };
2243
2248
  }
2244
- function minimalClient(name, features) {
2249
+ function agentServer() {
2250
+ return {
2251
+ "server/toil-server-env.d.ts": TOIL_SERVER_ENV_DTS,
2252
+ "server/models/Greeting.ts": "/** The response body for `GET /greeting`. `@data` classes cross the wire as JSON and\n * land on the client as this exact typed class. One `@data` type per file. */\n@data\nexport class Greeting {\n message: string = '';\n}\n",
2253
+ "server/routes/Greet.ts": "import { Greeting } from '../models/Greeting';\n\n/**\n * The greeting endpoint, mounted at `/greeting`. `@rest` / `@get` are ambient compiler\n * decorators (no import). On the client this is one typed fetch:\n * await Server.REST.greeting.hello()\n */\n@rest('greeting')\nclass Greet {\n /** `GET /greeting` - returns a `Greeting`, serialized to JSON for the client. */\n @get('/')\n public hello(): Greeting {\n const g = new Greeting();\n g.message = 'Hello from the toiljs backend';\n return g;\n }\n}\n",
2254
+ "server/core/AppHandler.ts": "import { Request, Response, Rest, ToilHandler } from 'toiljs/server/runtime';\n\n/**\n * Every request enters here. The `@rest` controllers under routes/ are tried first via\n * `Rest.dispatch`; anything they do not claim yields to the client (page routes, assets).\n */\nexport class AppHandler extends ToilHandler {\n public handle(req: Request): Response {\n // Rest.dispatch returns the first matching route's Response, or null when nothing\n // matched. REST composes; it never takes over handle().\n const hit = Rest.dispatch(req);\n if (hit != null) {\n return hit;\n }\n // Nothing matched: yield to the client. Under `toiljs dev` this falls through to\n // Vite so the app renders at /.\n return Response.unhandled();\n }\n}\n",
2255
+ "server/main.ts": "import { Server } from 'toiljs/server/runtime';\nimport { revertOnError } from 'toiljs/server/runtime/abort/abort';\n\nimport { AppHandler } from './core/AppHandler';\n\n// Surface modules: import every @rest route (and @service/@remote RPC) here so a direct\n// `toilscript` run builds the same server `toiljs build` does.\nimport './routes/Greet';\n\n// Wire your handler here.\nServer.handler = () => new AppHandler();\n\n// Required: re-export the WASM entry points and the abort hook.\nexport * from 'toiljs/server/runtime/exports';\nexport function abort(message: string, fileName: string, line: u32, column: u32): void {\n revertOnError(message, fileName, line, column);\n}\n",
2256
+ "server/README.md": SERVER_README
2257
+ };
2258
+ }
2259
+ function clientShell(name, features) {
2245
2260
  const files = {
2246
2261
  "client/public/index.html": `<!doctype html>
2247
2262
  <html lang="en">
@@ -2277,8 +2292,14 @@ function minimalClient(name, features) {
2277
2292
  "client/public/images/.gitkeep": "# Place images and other static assets here; served at /images/*.\n",
2278
2293
  "client/toil.tsx": "import { routes, layout, notFound, globalError, slots } from 'toiljs/routes';\n\n" + styleImportLines(features).join("\n") + "\n\nToil.mount(routes, layout, notFound, globalError, slots);\n",
2279
2294
  [`client/${styleEntry(features.preprocessor)}`]: DEFAULT_STYLE_CONTENT,
2280
- "client/components/.gitkeep": "# Place shared React components here.\n",
2281
- "client/layout.tsx": `import { type ReactNode } from 'react';
2295
+ "client/components/.gitkeep": "# Place shared React components here.\n"
2296
+ };
2297
+ if (features.tailwind) files[`client/${TAILWIND_ENTRY}`] = TAILWIND_CSS;
2298
+ return files;
2299
+ }
2300
+ function layoutTsx(name, nav) {
2301
+ const links = nav.map((l2) => ` <Toil.Link href="${l2.href}">${l2.label}</Toil.Link>`).join("\n");
2302
+ return `import { type ReactNode } from 'react';
2282
2303
 
2283
2304
  export default function Layout({ children }: { children?: ReactNode }) {
2284
2305
  return (
@@ -2294,18 +2315,32 @@ export default function Layout({ children }: { children?: ReactNode }) {
2294
2315
  }}>
2295
2316
  <strong style={{ color: '#2563FF', fontSize: '1.1rem' }}>${path4.basename(name)}</strong>
2296
2317
  <nav style={{ display: 'flex', gap: '1rem' }}>
2297
- <Toil.Link href="/">home</Toil.Link>
2318
+ ${links}
2298
2319
  </nav>
2299
2320
  </header>
2300
2321
  {children}
2301
2322
  </div>
2302
2323
  );
2303
2324
  }
2304
- `,
2325
+ `;
2326
+ }
2327
+ function minimalClient(name, features) {
2328
+ return {
2329
+ ...clientShell(name, features),
2330
+ "client/layout.tsx": layoutTsx(name, [{ href: "/", label: "home" }]),
2305
2331
  "client/routes/index.tsx": "export default function Home() {\n return (\n <main>\n <h1>Welcome to toiljs</h1>\n <p>File-based routing, bundled by Vite, zero config.</p>\n </main>\n );\n}\n"
2306
2332
  };
2307
- if (features.tailwind) files[`client/${TAILWIND_ENTRY}`] = TAILWIND_CSS;
2308
- return files;
2333
+ }
2334
+ function agentClient(name, features) {
2335
+ return {
2336
+ ...clientShell(name, features),
2337
+ "client/layout.tsx": layoutTsx(name, [
2338
+ { href: "/", label: "home" },
2339
+ { href: "/about", label: "about" }
2340
+ ]),
2341
+ "client/routes/index.tsx": "import { useEffect, useState } from 'react';\n\n// The home page calls the backend. `Server.REST.greeting.hello()` is a real, typed\n// fetch generated from the @rest controller in server/routes/Greet.ts (see the\n// gitignored shared/server.ts, emitted by the server build). It needs the server running.\nexport default function Home() {\n const [message, setMessage] = useState('loading\u2026');\n\n useEffect(() => {\n Server.REST.greeting\n .hello()\n .then((g) => setMessage(g.message))\n .catch((err) => setMessage(parseError(err)));\n }, []);\n\n return (\n <main>\n <h1>Welcome to toiljs</h1>\n <p>File-based routing on the client, a ToilScript backend behind one typed fetch.</p>\n <p>\n <code>GET /greeting</code> says: <strong>{message}</strong>\n </p>\n </main>\n );\n}\n",
2342
+ "client/routes/about.tsx": "export default function About() {\n return (\n <main>\n <h1>About</h1>\n <p>\n A second page, routed by its file name. Add more under <code>client/routes/</code>.\n </p>\n </main>\n );\n}\n"
2343
+ };
2309
2344
  }
2310
2345
  function appClientDir() {
2311
2346
  return path4.resolve(
@@ -2404,7 +2439,12 @@ async function runCreate(opts) {
2404
2439
  label: "App",
2405
2440
  hint: "the full ToilJS starter, landing page, layout, styles, demo routes"
2406
2441
  },
2407
- { value: "minimal", label: "Minimal", hint: "just a layout and a home route" }
2442
+ { value: "minimal", label: "Minimal", hint: "just a layout and a home route" },
2443
+ {
2444
+ value: "agent",
2445
+ label: "Agent",
2446
+ hint: "minimal, plus one @rest endpoint the home page calls, a base to build on"
2447
+ }
2408
2448
  ];
2409
2449
  const choice = await select({
2410
2450
  message: "Which template?",
@@ -2412,7 +2452,7 @@ async function runCreate(opts) {
2412
2452
  initialValue: "app"
2413
2453
  });
2414
2454
  bail2(choice);
2415
- template = choice === "minimal" ? "minimal" : "app";
2455
+ template = choice === "minimal" || choice === "agent" ? choice : "app";
2416
2456
  }
2417
2457
  let preprocessor = opts.preprocessor ?? "css";
2418
2458
  let tailwind = opts.tailwind ?? false;
@@ -2723,6 +2763,49 @@ function checkPeer(name, installed, range) {
2723
2763
  fix: ok ? void 0 : `Update ${name} to ${range}.`
2724
2764
  };
2725
2765
  }
2766
+ var TYPESCRIPT_SUPPORTED = ">=6.0.0 <7.0.0";
2767
+ var TYPESCRIPT_FIX_RANGE = "^6.0.3";
2768
+ var TYPESCRIPT_NATIVE_MAJOR = 7;
2769
+ function rangeMajor(range) {
2770
+ const m2 = /(\d+)/.exec(range.replace(/^[\s^~>=<v]*/, ""));
2771
+ return m2 ? Number(m2[1]) : null;
2772
+ }
2773
+ function checkTypeScript(installed, declared) {
2774
+ const id = "peer:typescript";
2775
+ const label = "typescript";
2776
+ const unsupported = (version2, detail) => ({
2777
+ id,
2778
+ label,
2779
+ status: "fail",
2780
+ detail,
2781
+ fix: `TypeScript ${version2} removed the JavaScript compiler API (it moved to 'typescript/unstable/*'), which toiljs's route-metadata extractor, the eslint preset, and typedoc all load. Pin typescript to "${TYPESCRIPT_FIX_RANGE}" and reinstall (\`toiljs doctor --fix\` does this).`
2782
+ });
2783
+ if (installed === null) {
2784
+ return {
2785
+ id,
2786
+ label,
2787
+ status: "fail",
2788
+ detail: `not installed (requires ${TYPESCRIPT_SUPPORTED})`,
2789
+ fix: `Install typescript@"${TYPESCRIPT_FIX_RANGE}".`
2790
+ };
2791
+ }
2792
+ const installedMajor = rangeMajor(installed);
2793
+ if (installedMajor !== null && installedMajor >= TYPESCRIPT_NATIVE_MAJOR) {
2794
+ return unsupported(String(installedMajor), `${installed} installed, unsupported`);
2795
+ }
2796
+ const declaredMajor = declared === null ? null : rangeMajor(declared);
2797
+ if (declaredMajor !== null && declaredMajor >= TYPESCRIPT_NATIVE_MAJOR) {
2798
+ return unsupported(String(declaredMajor), `package.json declares ${declared ?? ""}`);
2799
+ }
2800
+ const ok = satisfiesMin(installed, TYPESCRIPT_SUPPORTED);
2801
+ return {
2802
+ id,
2803
+ label,
2804
+ status: ok ? "pass" : "warn",
2805
+ detail: `${installed} (requires ${TYPESCRIPT_SUPPORTED})`,
2806
+ fix: ok ? void 0 : `Update typescript to ${TYPESCRIPT_SUPPORTED}.`
2807
+ };
2808
+ }
2726
2809
  function checkPackageManager(lockfiles) {
2727
2810
  if (lockfiles.length === 0) {
2728
2811
  return {
@@ -3100,6 +3183,52 @@ function isPackageInstalled(root, name) {
3100
3183
  dir = parent;
3101
3184
  }
3102
3185
  }
3186
+ function installedVersion(root, name) {
3187
+ const require2 = createRequire(path6.join(root, "package.json"));
3188
+ let pkgPath = null;
3189
+ try {
3190
+ pkgPath = require2.resolve(`${name}/package.json`);
3191
+ } catch {
3192
+ for (let dir = root; pkgPath === null; ) {
3193
+ const candidate = path6.join(dir, "node_modules", name, "package.json");
3194
+ if (fs5.existsSync(candidate)) pkgPath = candidate;
3195
+ const parent = path6.dirname(dir);
3196
+ if (parent === dir) break;
3197
+ dir = parent;
3198
+ }
3199
+ }
3200
+ if (pkgPath === null) return null;
3201
+ const pkg = readJsonObject(pkgPath);
3202
+ return pkg && typeof pkg.version === "string" ? pkg.version : null;
3203
+ }
3204
+ function applyTypeScriptFix(root) {
3205
+ const changed = [];
3206
+ const skipped = [];
3207
+ const pkgPath = path6.join(root, "package.json");
3208
+ const pkg = readJsonObject(pkgPath);
3209
+ if (pkg === null) return { changed, skipped };
3210
+ const field = ["devDependencies", "dependencies"].find((f) => {
3211
+ const deps2 = asRecord(pkg[f]);
3212
+ return deps2 !== null && typeof deps2.typescript === "string";
3213
+ });
3214
+ if (field === void 0) {
3215
+ if (installedVersion(root, "typescript") !== null) {
3216
+ skipped.push("typescript (installed but not declared in package.json; pin it by hand)");
3217
+ }
3218
+ return { changed, skipped };
3219
+ }
3220
+ const deps = asRecord(pkg[field]);
3221
+ if (deps === null) return { changed, skipped };
3222
+ const declared = deps.typescript;
3223
+ const declaredMajor = rangeMajor(declared);
3224
+ const installedMajor = rangeMajor(installedVersion(root, "typescript") ?? "");
3225
+ const unsupported = declaredMajor !== null && declaredMajor >= 7 || installedMajor !== null && installedMajor >= 7;
3226
+ if (!unsupported) return { changed, skipped };
3227
+ deps.typescript = TYPESCRIPT_FIX_RANGE;
3228
+ writeFile(pkgPath, JSON.stringify(pkg, null, 4) + "\n");
3229
+ changed.push(`package.json (typescript ${declared} -> ${TYPESCRIPT_FIX_RANGE})`);
3230
+ return { changed, skipped };
3231
+ }
3103
3232
  function asRecord(value) {
3104
3233
  return typeof value === "object" && value !== null && !Array.isArray(value) ? value : null;
3105
3234
  }
@@ -3580,7 +3709,21 @@ async function runDoctor(opts) {
3580
3709
  }
3581
3710
  }
3582
3711
  const peerName = (n3) => checkPeer(n3, deps[n3] ?? null, meta.peers[n3] ?? "*");
3583
- const peerChecks = Object.keys(meta.peers).map(peerName);
3712
+ const peerChecks = Object.keys(meta.peers).filter((n3) => n3 !== "typescript").map(peerName);
3713
+ const typeScriptFix = opts.fix ? applyTypeScriptFix(root) : null;
3714
+ const declaredTypeScript = (() => {
3715
+ const pkg = readJsonObject(path6.join(root, "package.json"));
3716
+ if (pkg === null) return deps.typescript ?? null;
3717
+ for (const field of ["devDependencies", "dependencies"]) {
3718
+ const range = asRecord(pkg[field])?.typescript;
3719
+ if (typeof range === "string") return range;
3720
+ }
3721
+ return null;
3722
+ })();
3723
+ const typeScriptCheck = checkTypeScript(
3724
+ installedVersion(root, "typescript"),
3725
+ declaredTypeScript
3726
+ );
3584
3727
  const rpcFix = serverPresent && opts.fix ? applyRpcFix(root) : null;
3585
3728
  const prettierFix = serverPresent && opts.fix ? applyPrettierFix(root, projectPkg) : null;
3586
3729
  const editorFix = serverPresent && opts.fix ? applyServerEditorFix(root, toilconfig) : null;
@@ -3594,17 +3737,12 @@ async function runDoctor(opts) {
3594
3737
  const serverTsPath = serverPresent ? serverTsconfigPath(root, toilconfig) : null;
3595
3738
  const serverTsParsed = serverTsPath ? readJsonObject(serverTsPath) : null;
3596
3739
  const serverTsPluginPresent = serverTsPath === null || serverTsParsed === null ? true : tsconfigHasToilPlugin(serverTsParsed);
3597
- const serverFix = rpcFix || prettierFix || editorFix ? {
3598
- changed: [
3599
- ...rpcFix?.changed ?? [],
3600
- ...prettierFix?.changed ?? [],
3601
- ...editorFix?.changed ?? []
3602
- ],
3603
- skipped: [
3604
- ...rpcFix?.skipped ?? [],
3605
- ...prettierFix?.skipped ?? [],
3606
- ...editorFix?.skipped ?? []
3607
- ]
3740
+ const applied = [typeScriptFix, rpcFix, prettierFix, editorFix].filter(
3741
+ (fix) => fix !== null
3742
+ );
3743
+ const serverFix = applied.length > 0 ? {
3744
+ changed: applied.flatMap((fix) => fix.changed),
3745
+ skipped: applied.flatMap((fix) => fix.skipped)
3608
3746
  } : null;
3609
3747
  const groups = [
3610
3748
  {
@@ -3613,6 +3751,7 @@ async function runDoctor(opts) {
3613
3751
  checkNode(process.versions.node, meta.node),
3614
3752
  checkToiljsInstalled("toiljs" in deps ? version() : null),
3615
3753
  ...peerChecks,
3754
+ typeScriptCheck,
3616
3755
  checkPackageManager(LOCKFILES.filter((f) => fs5.existsSync(path6.join(root, f))))
3617
3756
  ]
3618
3757
  },
@@ -3677,26 +3816,19 @@ async function runDoctor(opts) {
3677
3816
  } else {
3678
3817
  process.stdout.write("\n" + accent(" Doctor") + dim(` ${root}`) + "\n\n");
3679
3818
  renderHuman(groups);
3680
- if (serverFix) renderRpcFix(serverFix);
3681
- else if (opts.fix && !serverPresent) {
3682
- process.stdout.write(
3683
- " " + dim("--fix: no server (toilconfig.json) found, nothing to wire.") + "\n\n"
3684
- );
3685
- }
3819
+ if (serverFix) renderFix(serverFix);
3686
3820
  }
3687
3821
  if (hasFailures(summary)) process.exitCode = 1;
3688
3822
  }
3689
- function renderRpcFix(result) {
3823
+ function renderFix(result) {
3690
3824
  const out2 = [];
3691
3825
  if (result.changed.length > 0) {
3692
- out2.push(" " + success("fixed server wiring") + dim(` ${result.changed.join(", ")}`));
3693
- if (result.changed.includes("package.json")) {
3694
- out2.push(
3695
- " " + dim("run your installer (npm/pnpm/yarn) if the toilscript version changed.")
3696
- );
3826
+ out2.push(" " + success("fixed") + dim(` ${result.changed.join(", ")}`));
3827
+ if (result.changed.some((entry) => entry.startsWith("package.json"))) {
3828
+ out2.push(" " + dim("run your installer (npm/pnpm/yarn) to apply the version changes."));
3697
3829
  }
3698
3830
  } else {
3699
- out2.push(" " + dim("server wiring already in place, nothing to fix."));
3831
+ out2.push(" " + dim("nothing to fix."));
3700
3832
  }
3701
3833
  for (const item of result.skipped) out2.push(" " + warn("skipped") + dim(` ${item}`));
3702
3834
  process.stdout.write(out2.join("\n") + "\n\n");
@@ -3740,6 +3872,13 @@ function parseNcuJson(stdout2) {
3740
3872
  return {};
3741
3873
  }
3742
3874
  }
3875
+ var UNSUPPORTED_MAJOR = { typescript: 7 };
3876
+ function withheldUpgrades(upgraded) {
3877
+ return Object.entries(upgraded).filter(([name, to]) => {
3878
+ const ceiling = UNSUPPORTED_MAJOR[name];
3879
+ return ceiling !== void 0 && parseVersion2(to)[0] >= ceiling;
3880
+ }).map(([name]) => name).sort();
3881
+ }
3743
3882
  var SEVERITY = { major: 0, minor: 1, patch: 2, other: 3 };
3744
3883
  function buildRows(upgraded, currentDeps) {
3745
3884
  return Object.entries(upgraded).map(([name, to]) => {
@@ -3803,6 +3942,14 @@ function bumpColor(bump, text2) {
3803
3942
  function rowLine(row) {
3804
3943
  return `${row.name} ${dim(row.from)} ${dim("->")} ${bumpColor(row.bump, row.to)}`;
3805
3944
  }
3945
+ function noteWithheld(names) {
3946
+ note(
3947
+ names.map((n3) => `${dim("-")} ${n3}`).join("\n") + "\n\n" + dim(
3948
+ "Held back: this major is not supported by toiljs yet. TypeScript 7 is the native\nport and ships no JavaScript compiler API, so route metadata would stop being\nbaked into the built HTML and typescript-eslint would not load."
3949
+ ),
3950
+ warn("Not upgraded")
3951
+ );
3952
+ }
3806
3953
  var TARGETS = /* @__PURE__ */ new Set(["latest", "minor", "patch", "newest", "greatest"]);
3807
3954
  async function runUpdate(opts) {
3808
3955
  const root = path7.resolve(opts.root ?? opts.cwd);
@@ -3839,13 +3986,18 @@ async function runUpdate(opts) {
3839
3986
  process.exitCode = 1;
3840
3987
  return;
3841
3988
  }
3842
- const rows = buildRows(parseNcuJson(res.stdout), currentDeps);
3989
+ const upgraded = parseNcuJson(res.stdout);
3990
+ const withheld = withheldUpgrades(upgraded);
3991
+ for (const name of withheld) delete upgraded[name];
3992
+ const rows = buildRows(upgraded, currentDeps);
3843
3993
  if (rows.length === 0) {
3844
3994
  s.stop("Everything is up to date");
3995
+ if (withheld.length > 0) noteWithheld(withheld);
3845
3996
  outro(success("Nothing to update."));
3846
3997
  return;
3847
3998
  }
3848
3999
  s.stop(`${String(rows.length)} update${rows.length === 1 ? "" : "s"} available`);
4000
+ if (withheld.length > 0) noteWithheld(withheld);
3849
4001
  const counts = { major: 0, minor: 0, patch: 0, other: 0 };
3850
4002
  for (const r2 of rows) counts[r2.bump]++;
3851
4003
  note(
@@ -3878,7 +4030,12 @@ async function runUpdate(opts) {
3878
4030
  }
3879
4031
  s.start("Updating package.json");
3880
4032
  const applyAll = selected.length === rows.length;
3881
- await run("npx", ncuArgs(applyAll ? ["-u"] : ["-u", "--filter", selected.join(" ")]), root);
4033
+ const reject = withheld.length > 0 ? ["--reject", withheld.join(" ")] : [];
4034
+ await run(
4035
+ "npx",
4036
+ ncuArgs(applyAll ? ["-u", ...reject] : ["-u", "--filter", selected.join(" "), ...reject]),
4037
+ root
4038
+ );
3882
4039
  s.stop("package.json updated");
3883
4040
  note(dim(`Running ${pm.name} install\u2026`), "Install");
3884
4041
  try {
@@ -4084,7 +4241,7 @@ function parseArgs(argv) {
4084
4241
  case "--template":
4085
4242
  case "-t": {
4086
4243
  const t2 = argv[++i2];
4087
- if (t2 === "app" || t2 === "minimal") flags.template = t2;
4244
+ if (t2 === "app" || t2 === "minimal" || t2 === "agent") flags.template = t2;
4088
4245
  break;
4089
4246
  }
4090
4247
  case "--pm":
@@ -4169,7 +4326,7 @@ function printHelp() {
4169
4326
  cmd("--port <n>", "dev/start: listen port (or PORT env / client.port; default 3000)"),
4170
4327
  cmd("--host <h>", "dev/start: bind host, e.g. 0.0.0.0 (or HOST env / client.host; default 127.0.0.1)"),
4171
4328
  cmd("--threads <n>", "start: production HTTP worker count"),
4172
- cmd("-t, --template", "create: app | minimal"),
4329
+ cmd("-t, --template", "create: app | minimal | agent"),
4173
4330
  cmd("--style <name>", "create/configure: css | sass | less | stylus"),
4174
4331
  cmd("--tailwind", "create/configure: enable Tailwind (--no-tailwind to remove)"),
4175
4332
  cmd("--no-ai", "create: skip AI assistant files (CLAUDE.md, etc.)"),
@@ -1 +1 @@
1
- {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.es2025.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/hash-wasm/dist/lib/util.d.ts","../../node_modules/hash-wasm/dist/lib/WASMInterface.d.ts","../../node_modules/hash-wasm/dist/lib/adler32.d.ts","../../node_modules/hash-wasm/dist/lib/argon2.d.ts","../../node_modules/hash-wasm/dist/lib/blake2b.d.ts","../../node_modules/hash-wasm/dist/lib/blake2s.d.ts","../../node_modules/hash-wasm/dist/lib/blake3.d.ts","../../node_modules/hash-wasm/dist/lib/crc32.d.ts","../../node_modules/hash-wasm/dist/lib/crc64.d.ts","../../node_modules/hash-wasm/dist/lib/md4.d.ts","../../node_modules/hash-wasm/dist/lib/md5.d.ts","../../node_modules/hash-wasm/dist/lib/sha1.d.ts","../../node_modules/hash-wasm/dist/lib/sha3.d.ts","../../node_modules/hash-wasm/dist/lib/keccak.d.ts","../../node_modules/hash-wasm/dist/lib/sha224.d.ts","../../node_modules/hash-wasm/dist/lib/sha256.d.ts","../../node_modules/hash-wasm/dist/lib/sha384.d.ts","../../node_modules/hash-wasm/dist/lib/sha512.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash32.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash64.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash3.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash128.d.ts","../../node_modules/hash-wasm/dist/lib/ripemd160.d.ts","../../node_modules/hash-wasm/dist/lib/hmac.d.ts","../../node_modules/hash-wasm/dist/lib/pbkdf2.d.ts","../../node_modules/hash-wasm/dist/lib/scrypt.d.ts","../../node_modules/hash-wasm/dist/lib/bcrypt.d.ts","../../node_modules/hash-wasm/dist/lib/whirlpool.d.ts","../../node_modules/hash-wasm/dist/lib/sm3.d.ts","../../node_modules/hash-wasm/dist/lib/index.d.ts","../../node_modules/@noble/hashes/utils.d.ts","../../node_modules/@dacely/noble-post-quantum/utils.d.ts","../../node_modules/@dacely/noble-post-quantum/ml-dsa.d.ts","../../node_modules/@dacely/noble-post-quantum/ml-kem.d.ts","../../node_modules/@noble/curves/utils.d.ts","../../node_modules/@noble/curves/abstract/modular.d.ts","../../node_modules/@noble/curves/abstract/curve.d.ts","../../node_modules/@noble/curves/abstract/edwards.d.ts","../../node_modules/@noble/curves/abstract/hash-to-curve.d.ts","../../node_modules/@noble/curves/abstract/frost.d.ts","../../node_modules/@noble/curves/abstract/montgomery.d.ts","../../node_modules/@noble/curves/abstract/oprf.d.ts","../../node_modules/@noble/curves/ed25519.d.ts","../io/FastMap.d.ts","../io/FastSet.d.ts","../io/codec.d.ts","../io/types.d.ts","../io/index.d.ts","../../src/client/auth.ts","../../src/client/errors.ts","../../node_modules/@types/react-dom/client.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../src/client/navigation/scroll.ts","../../src/client/types.ts","../../src/client/navigation/navigation.ts","../../src/client/ssr/markers.tsx","../../src/client/head/head.ts","../../src/client/routing/match.ts","../../src/client/head/metadata.ts","../../src/client/routing/loader.ts","../../src/client/navigation/prefetch.ts","../../src/client/routing/error-boundary.tsx","../../src/client/routing/params-context.ts","../../src/client/routing/hooks.ts","../../src/client/routing/lazy.ts","../../src/client/routing/slot-context.ts","../../src/client/routing/Router.tsx","../../src/client/dev/error-overlay.tsx","../../src/client/search/search.ts","../../src/client/dev/devtools.tsx","../../src/client/routing/mount.tsx","../../src/client/navigation/Link.tsx","../../src/client/navigation/NavLink.tsx","../../src/client/routing/action.ts","../../src/client/channel/channel.ts","../../src/client/stream/client.ts","../../src/client/search/use-page-search.ts","../../src/client/components/Image.tsx","../../src/client/components/Script.tsx","../../src/client/components/Form.tsx","../../src/client/components/Slot.tsx","../../src/client/rpc.ts","../../src/client/index.ts"],"fileIdsList":[[137],[137,138,139,140],[125],[124],[128,129],[128,129,130],[128,129,130,132],[128],[128,130],[128,130,132],[128,129,130,131,132,133,134,135],[92],[90,91],[94],[94,95],[94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122],[93,123,126,127,136,141],[92,93],[92,93,167],[92,93,159],[92,93,147,148,151,153,161,162],[93],[92,93,149],[93,150,151],[93,142,143,147,148,149,150,151,152,153,154,157,160,162,164,165,166,167,168,169,170,171,172,173,174,175],[92,93,147,148,154],[92,93,157,165],[92,93,145,146,147],[93,147,151,153],[92,93,146,147,148,150,151,153,155,156,157,158,159],[92,93,147,148,153],[92,93,147],[92,93,147,148,151,153,154,156],[92,93,147,148,150,151,152],[93,144,147,148,154,160,161,163],[92,93,151],[93,152],[92,93,147,148,162]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","impliedFormat":1},{"version":"b838d4c72740eb0afd284bf7575b74c624b105eff2e8c7b4aeead57e7ac320ff","impliedFormat":1},{"version":"a957a1395986cd6863bae5a42c58d66886df90f1931c911fbe406f8321335e6f","impliedFormat":1},{"version":"a2bc59da4f44ff533bd0b7ea20946f8c52eae8895531746dee71603e3b7d5578","impliedFormat":1},{"version":"9828342b073c3d2a51680d84be6e8693c15209142d4c3c49f9af9ad3e8a9dacc","impliedFormat":1},{"version":"7cabf9ff89f3a1de0524b3a50265ba1294a88e495e114dcae8da0cbc50fc92f2","impliedFormat":1},{"version":"9d7a70722e17134d5eab42d3dd710eacbe42fd1210d80287f6639c29ee2a7c10","impliedFormat":1},{"version":"165409ea4281fef67eea472050347967441004e84d22a8977a94e1976823d5be","impliedFormat":1},{"version":"505abecc03fe091b97b747dc320fff4679344de28c922564193151c0cefb3180","impliedFormat":1},{"version":"0f90009e6c417c9336b260496ea53729a9c70933895e2ce545fff272b9301bb2","impliedFormat":1},{"version":"c0a488e0b571aec7a957ecad80792af284c357b48ba6d2d8b4444aa2be6c5a2f","impliedFormat":1},{"version":"ff2ce6f20d8c9346ab61a3444f5bca603f327d26352eb0ab6f40cb1f48e84c84","impliedFormat":1},{"version":"7c9fc8fbe28c6fe364d78be412d8467619b87dc828f2cf5ef525db7d7837c9f7","impliedFormat":1},{"version":"c824d703f55424408de202f826ff50eced9ad4c07edf12ff99fef7a7ca820f5b","impliedFormat":1},{"version":"6efbf9b08c3e5a48b93858e7b96eb61f9ca6d5c5d27709dc16f806e0ba1067cc","impliedFormat":1},{"version":"1b6d8a8926e323af55c6777a6f6561191ea3da6beabe8e7d91c152df3c693bac","impliedFormat":1},{"version":"587173d12395c6996972afd696425044d322eb0174e76d7d5888caf35d88831d","impliedFormat":1},{"version":"de5ba33082f9ac12bd6a9e44c530a5dd708d145fff6cc2dd7cb30321a8882a6b","impliedFormat":1},{"version":"a50a03f03f65f3cc4e012c86464f310755462c7059f1581a9c666b5457d102e1","impliedFormat":1},{"version":"89b954bd9c00a77ce3d889e1cc78b034779e2593fe0adfa14b6e56baafeb5de2","impliedFormat":1},{"version":"9935b6341ac96a5027526efc1ec75114ccf2009b6ed602f65bc82e75ac2089b1","impliedFormat":1},{"version":"f8776dc3e57237b3de45b8ab5f224adc00dd90fe217f1a34ed6442606807c122","impliedFormat":1},{"version":"b0c8c7af35a444fd4054c12d971eabcd7ec4be2e840fc60f8897b5732cb3a20b","impliedFormat":1},{"version":"4f9bd8f00fe9f0ae8b5d2fffed8d47915b61b428e33b2ee9aa3ef159e98e305c","impliedFormat":1},{"version":"bbe6c08cefd08a23dc36eca9dae8aeb30895debf15387ab6904b591e3b6b3217","impliedFormat":1},{"version":"0c3880ad1eee5252b7f02c6ff10bd2666cb9a59ae698d552ec5b0a4a7b9611d8","impliedFormat":1},{"version":"d5d71ded265f144dec6604983fbfaf201844d7cd8614aadab8ad5227e99545d3","impliedFormat":1},{"version":"907d2ea3b3fed567fe2dff6747f7642f57aa8b3c288becf4843113ac98331ee3","impliedFormat":1},{"version":"33da6d63dbab160960cdd6e1dba0716bbc2f60af4aeb229ea9b318303c2015e1","impliedFormat":1},{"version":"6dc0148fe65a487db8bd552670f0fe87498c0a8e644c38092a185a05030282bf","impliedFormat":1},{"version":"6bd476fd8a150f5211488cc1d58d412dabec0da0977295ea1f06957b1d28ed13","impliedFormat":1},{"version":"5e134f083c46ea016764a484ac86f664564303f87bc3ca7cfd4b74ccbacad282","impliedFormat":1},{"version":"5d01f288556ba56b803dfbd9b207502aaaa831afddd9e71b2b5ce250dc395152","impliedFormat":99},{"version":"7b9d4f3cc667e8896241f6c95d2824ced607ce7f2858cedf04058ddd23287602","impliedFormat":99},{"version":"371e624178bb67607b2c63e1f8ec3e5d9585455b39bac8f0816eba540072383f","impliedFormat":99},{"version":"c468447508a5ca66c0a2523ed935cf5cb1d768d890c991e20397df618db741d1","impliedFormat":99},{"version":"b8c741cb7cd15e89b24af6c25b6d95a581b2d79f7c0d959552220743f7269c7f","impliedFormat":99},{"version":"1b65eaf896a59cf1904bae76e68bc64941671555a3b1ee4190bcd6d3b16d5b61","impliedFormat":99},{"version":"2cea0605228c4357d9f57b6d13fd607752579a0a70995ccf70179110b098435b","impliedFormat":99},{"version":"edc4a14bf998e6512257766b4f291c940b5e88fe8bea8aec0c499e2e41da1d34","impliedFormat":99},{"version":"74853f56c2d22c7794408839dc106c4c412818fbd2e855b1d7dc4a70447f8387","impliedFormat":99},{"version":"61d04e1fb8987919928a5c4982fe4b32ec4147bd39491b4da9720bb518fd77ce","impliedFormat":99},{"version":"c1d730d8774ef9d198a2f8ecedd6806b1efd9e00a502ba7e28969f5a2c550ae1","impliedFormat":99},{"version":"9155fc738cfdd9a8dbeb7a9657998407101fc278c1649d8bb24b24b4fc7e5ad4","impliedFormat":99},{"version":"aa9a3b2c5d46f501a49ebde65cbdd59a7c05122f4f15785467bc30b6d8956751","impliedFormat":99},"6a4c287c863003342a42d8bf876c7df4c2e82e95f556af5ade71f05255845200","272e7bc3a3734cc9e7419625f04cff7095131e315e51a83fa992a5134763df49","b9f2341c8b486561706db362b6f89ee6b149ef08fb4fa6aaea1041bce04fe1c5","3952955b5e83c1164fc78d7d54377fd4d09d2c11b79763cba53a7ff4b27a0601","48d0d0bebe2ccfd875953713d746fe4adae81b1e3a91ffafae29ead23fd5c39b",{"version":"4e59b852c9cf3b337f45359bdbdf0dc54169cbe794decb2acdcd898275d105d8","signature":"0e87910e0f1fc3f1c9c98cfafb38525dde686b573db2fa02f58bb1cf638ef3e6"},{"version":"cbc4073fb15a767ab8787ce067b3266807ea2ef8456aa85e3a55ff5a62c33bdd","signature":"7cf224e300294bcb276cf440125703dd0da90e1b5aa8070a3f7ca043475979c1"},{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"dbafe5664a764167d089a3ecce720259c6f4837696f2cf5e0adb199de6a9150c","signature":"2b2db01796f774852b44cacad054f31b9e63a3c4ed787d12c1dd75c75e602bef"},{"version":"43c268c58c28f2f6f80bc2a42104a2e8ce3891d1c8a2b8767e2a52606e61952b","signature":"d86aae3a61fb2a3734379428044eefd6b048996f3a1a1cd7e57bb94d3d36b02b"},{"version":"31946b8cd45a08d2f4d3be4e8b31b5896e5f0fb24840cc53e6d9a45d71e24506","signature":"50c12b83406070a98041a222f49db12395234ac00db0f16d18d01d8fccfe9d9d"},{"version":"2a0b3b70eae3ac89e80870431490787f00d5b450b6c9767df4daf6aee7eb0978","signature":"dd11f115ef46b611836fe84d45fb6f7889711397a69aad6cc147739cbe5a4072"},{"version":"1f97d3daade701681d6c89a1904123b009db72bdf95ec5fd563076769da2339c","signature":"c12ee6242f6e1108c7cfac4089b422a742417d50a70cbb03d0d24b7217271376"},{"version":"f6eaf207ae99ba6778460fa1d857e80c870be1533e9b1668060f0f53e6aa6b41","signature":"b9f112f8e9a593f362dd5f434f8f997385dd62f15e2d2fb6d316e5d0d9942a51"},{"version":"6647f68fcaa6a2a028711abf7288cd95d8625d0efff1315b5ad3536bf2de9e2b","signature":"919e52d8be47dbe1be9f86aff4b897c9801b8d6d0bf49f68fc321a4dc9251ad4"},{"version":"ef23db21116b6651538dbcb7df065b8340d6b2514bce598087309f5f435a2bcb","signature":"ba8cda0a8ef4aaa88a574d7e25ea6eaac5e6b9a25c862afdd948d8b6780014b6"},{"version":"26a4fb1b862a479d7a5d90aa1745f070d44bc351e79c6e4f8a6481b206a1655b","signature":"ad70244d75add3a5819000694ceb8f6ffca2fff2bd49acbd6786e1457c9d1d82","affectsGlobalScope":true},{"version":"abdc0918e0afd85d5495c618d95ea69c667d1cd095452cc73617168c784904a4","signature":"9382f138465c4775c54940f2a3d4334a083a6fc9a622a7c926c5f8233228cbae"},{"version":"336f74bb2ca217a8b08f3c146c41295de7597a86d52ca333fac5634561261846","signature":"c8525f0be940a19f3d03f06b6e43d4bea21ba910db62fb5024ecc671bcc23932"},{"version":"eb5c9b96b9b90a2c7abd1dd62be278b51ef4fcc1a7181fb7294ae1554b5d2409","signature":"90b4955becdfa8d37df7a1fdd1c93d847cdbea6bb3a113bd3baa6134291531a2"},{"version":"bdf04d4dd9ed94c85da1be565643ef5fad4212b7a545da8f4792deb4cf426665","signature":"c6384012cac726d5b05237d2bd2c9c9da0893feaf54ab1dd0042fe141b9e5bd8"},{"version":"1ac886967a62c940d61ab89f3411f64893d779d69e1435f15215547ba50fa03b","signature":"994bfb8326dca5c985462ba74b5c64146aef0e3ea7bbbbf265ad426d884fbc9e"},{"version":"314ad9d994327a7e9cc1367c1c56fb3f28737fc85716317e01f7649a02e6303b","signature":"00dd4ce0458ebf64e2e0617d4bc04f3a9a569bc388f3a20c1c4416d465e99245"},{"version":"b7a6fa2ad0bbeb531d9fc2a4003d5cc4a6e8142c18914fb2d034ca8b32b760fc","signature":"61814a0254524d3e14d405795a649b8b838386ff0f82caf50a0b7d4c72008c3d"},{"version":"3fcfd875b042c0855e76061aae81b0d8333c1990c1e4ca4d1f3141652b988b06","signature":"b43c263b28c6f20a6d7066e22f6906fe51605b6a4b7709a3c47d7cf6c0ccf93e"},{"version":"1e54ebe6806cac6a9b2ce78a54863cd75732cc68901256507042e3d8cd399224","signature":"58d2bb278ba2b594a3b664571b357e10388c6a1eef2c27e2946d3ee447fb4e16"},{"version":"f40083b8ea073895257a2f5ef2bfc9b8cf031d471744fe76185ecc259847d49b","signature":"e5f0e0e21621bb3e87958857cc9695abf011fb257bd249abd42ae97b3b61e1d0"},{"version":"91df3defe1f0907af6b80d1b7849615c72b36340404efb0bbf6f9fb1f99727fc","signature":"5cf43ceac60fba7927af9ce9b27fb6031854fc923263b78c353fb986857218b9"},{"version":"64837fd5187d6a3c2abc6a265251be66c4a9961c369e5cf647ac87511d328d90","signature":"0caa217adbbdb001facd9aeb363fa2a446eabbeb4e5af2c1f2c3d1ef4bbffc6e"},{"version":"40896dfcdeafc76e4d85bfd4acca390f542032e613c6f5b7c5c8e1e99bb3b63d","signature":"63bfd9f3fbbcb2dc649dd7303b9fdcf5680c25e217228a5abe005674bfc8bed5"},{"version":"f79040aab08b6460794739412f2f175f902517183e6a5196e4aec528d4634347","signature":"bbaa85a96900ee24d770ce38f7807d2d3cc2ca203e223cd4080447680910992e"},{"version":"d8d719cbe4f408a189f1b35d8183e10e8972d238f7df4eeb0c8cb48a365518b6","signature":"497761089898de53e02d017b84843a99061b782b9b0c6d987b1595a31b0260f7"},{"version":"69a362101efd9d9fe1a4d2d246ae3ac1d76ffc26e222817d13146f7a07bfe5cd","signature":"ea9768ee8ae2400a4352956f0937ff7ce12640c4de3c69d6e71e8a2f954ad58a"},{"version":"6ba703e0059aab893149bff3e9d4ab11e61342ca6914bad738f9e79eacb9fe3b","signature":"fe072e91b615ffa8bccb04dcc43149d4095fc5f6e56677346250901a692f4568"},{"version":"5e36c20b72b953b78f812d6d5c5b74f5789a8139870654e38a8fa065aea4575a","signature":"d9ce1372a43589027af010d0293b17099bf27089071c6d12ce30eb94b70191af"},{"version":"f9d363bd3045f41be125a5653330811c52b4849321a4fd6f580ed0d7344d72bf","signature":"dbb3eab27a108491f80873c1031ddc0b1a16c47f4c32e2ec2e70b83e9cee161b"},{"version":"574db92fbafc03af54f69b1a10735093ec1c047ac3480a7bba3cf427ff48d3be","signature":"8aec088c8b901c6fe9e7fe22785892138849af77a640d12b7015ec52a95aa27c"},{"version":"3717d410e1140d12aff0a8459792feda0fc49a0bbdd485bbb359ed7ac8aae3cc","signature":"d358bf9f604d2d3ac588fc908565f9c8a60bcb8e6993461b20ef5ca60e9a8f57"},{"version":"f88e2e65d3ecb90e0b76e93a6279e6d961ff9b4dd1596ef3aeb75fbfbbc2654e","signature":"d6d4a7e55d1ac32334084bd7154661b3a433a9fbe3673873564adde93041bc89"}],"root":[142,143,[146,176]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noImplicitAny":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"../../src/client","skipLibCheck":true,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"suppressImplicitAnyIndexErrors":false,"target":99,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[138,1],[141,2],[126,3],[127,3],[125,4],[130,5],[131,6],[133,7],[132,6],[129,8],[134,9],[135,10],[136,11],[128,4],[144,12],[145,12],[92,13],[93,12],[95,14],[96,15],[97,14],[120,14],[98,15],[99,15],[100,15],[101,15],[102,15],[117,15],[123,16],[107,15],[103,15],[104,15],[118,15],[116,15],[119,14],[105,15],[108,15],[109,15],[106,15],[110,15],[111,15],[122,15],[121,15],[115,15],[114,15],[112,15],[113,15],[142,17],[168,18],[173,19],[171,18],[172,18],[174,20],[163,21],[161,18],[143,22],[150,23],[152,24],[176,25],[165,26],[166,27],[148,28],[154,29],[146,22],[160,30],[167,31],[155,32],[157,33],[158,32],[153,34],[151,22],[164,35],[156,36],[159,18],[175,22],[162,37],[170,38],[149,18],[169,22],[147,18]],"version":"6.0.3"}
1
+ {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.es2025.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/hash-wasm/dist/lib/util.d.ts","../../node_modules/hash-wasm/dist/lib/WASMInterface.d.ts","../../node_modules/hash-wasm/dist/lib/adler32.d.ts","../../node_modules/hash-wasm/dist/lib/argon2.d.ts","../../node_modules/hash-wasm/dist/lib/blake2b.d.ts","../../node_modules/hash-wasm/dist/lib/blake2s.d.ts","../../node_modules/hash-wasm/dist/lib/blake3.d.ts","../../node_modules/hash-wasm/dist/lib/crc32.d.ts","../../node_modules/hash-wasm/dist/lib/crc64.d.ts","../../node_modules/hash-wasm/dist/lib/md4.d.ts","../../node_modules/hash-wasm/dist/lib/md5.d.ts","../../node_modules/hash-wasm/dist/lib/sha1.d.ts","../../node_modules/hash-wasm/dist/lib/sha3.d.ts","../../node_modules/hash-wasm/dist/lib/keccak.d.ts","../../node_modules/hash-wasm/dist/lib/sha224.d.ts","../../node_modules/hash-wasm/dist/lib/sha256.d.ts","../../node_modules/hash-wasm/dist/lib/sha384.d.ts","../../node_modules/hash-wasm/dist/lib/sha512.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash32.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash64.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash3.d.ts","../../node_modules/hash-wasm/dist/lib/xxhash128.d.ts","../../node_modules/hash-wasm/dist/lib/ripemd160.d.ts","../../node_modules/hash-wasm/dist/lib/hmac.d.ts","../../node_modules/hash-wasm/dist/lib/pbkdf2.d.ts","../../node_modules/hash-wasm/dist/lib/scrypt.d.ts","../../node_modules/hash-wasm/dist/lib/bcrypt.d.ts","../../node_modules/hash-wasm/dist/lib/whirlpool.d.ts","../../node_modules/hash-wasm/dist/lib/sm3.d.ts","../../node_modules/hash-wasm/dist/lib/index.d.ts","../../node_modules/@noble/hashes/utils.d.ts","../../node_modules/@dacely/noble-post-quantum/utils.d.ts","../../node_modules/@dacely/noble-post-quantum/ml-dsa.d.ts","../../node_modules/@dacely/noble-post-quantum/ml-kem.d.ts","../../node_modules/@noble/curves/utils.d.ts","../../node_modules/@noble/curves/abstract/modular.d.ts","../../node_modules/@noble/curves/abstract/curve.d.ts","../../node_modules/@noble/curves/abstract/edwards.d.ts","../../node_modules/@noble/curves/abstract/hash-to-curve.d.ts","../../node_modules/@noble/curves/abstract/frost.d.ts","../../node_modules/@noble/curves/abstract/montgomery.d.ts","../../node_modules/@noble/curves/abstract/oprf.d.ts","../../node_modules/@noble/curves/ed25519.d.ts","../io/FastMap.d.ts","../io/FastSet.d.ts","../io/codec.d.ts","../io/types.d.ts","../io/index.d.ts","../../src/client/auth.ts","../../src/client/errors.ts","../../node_modules/@types/react-dom/client.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../src/client/navigation/scroll.ts","../../src/client/types.ts","../../src/client/navigation/navigation.ts","../../src/client/ssr/markers.tsx","../../src/client/head/head.ts","../../src/client/routing/match.ts","../../src/client/head/metadata.ts","../../src/client/routing/loader.ts","../../src/client/navigation/prefetch.ts","../../src/client/routing/error-boundary.tsx","../../src/client/routing/params-context.ts","../../src/client/routing/hooks.ts","../../src/client/routing/lazy.ts","../../src/client/routing/slot-context.ts","../../src/client/routing/Router.tsx","../../src/client/dev/error-overlay.tsx","../../src/client/search/search.ts","../../src/client/dev/devtools.tsx","../../src/client/routing/mount.tsx","../../src/client/navigation/Link.tsx","../../src/client/navigation/NavLink.tsx","../../src/client/routing/action.ts","../../src/client/channel/channel.ts","../../src/client/stream/client.ts","../../src/client/search/use-page-search.ts","../../src/client/components/Image.tsx","../../src/client/components/Script.tsx","../../src/client/components/Form.tsx","../../src/client/components/Slot.tsx","../../src/client/rpc.ts","../../src/client/index.ts"],"fileIdsList":[[137],[137,138,139,140],[125],[124],[128,129],[128,129,130],[128,129,130,132],[128],[128,130],[128,130,132],[128,129,130,131,132,133,134,135],[92],[90,91],[94],[94,95],[94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122],[93,123,126,127,136,141],[92,93],[92,93,167],[92,93,159],[92,93,147,148,151,153,161,162],[93],[92,93,149],[93,150,151],[93,142,143,147,148,149,150,151,152,153,154,157,160,162,164,165,166,167,168,169,170,171,172,173,174,175],[92,93,147,148,154],[92,93,157,165],[92,93,145,146,147],[93,147,151,153],[92,93,146,147,148,150,151,153,155,156,157,158,159],[92,93,147,148,153],[92,93,147],[92,93,147,148,151,153,154,156],[92,93,147,148,150,151,152],[93,144,147,148,154,160,161,163],[92,93,151],[93,152],[92,93,147,148,162]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","impliedFormat":1},{"version":"b838d4c72740eb0afd284bf7575b74c624b105eff2e8c7b4aeead57e7ac320ff","impliedFormat":1},{"version":"a957a1395986cd6863bae5a42c58d66886df90f1931c911fbe406f8321335e6f","impliedFormat":1},{"version":"a2bc59da4f44ff533bd0b7ea20946f8c52eae8895531746dee71603e3b7d5578","impliedFormat":1},{"version":"9828342b073c3d2a51680d84be6e8693c15209142d4c3c49f9af9ad3e8a9dacc","impliedFormat":1},{"version":"7cabf9ff89f3a1de0524b3a50265ba1294a88e495e114dcae8da0cbc50fc92f2","impliedFormat":1},{"version":"9d7a70722e17134d5eab42d3dd710eacbe42fd1210d80287f6639c29ee2a7c10","impliedFormat":1},{"version":"165409ea4281fef67eea472050347967441004e84d22a8977a94e1976823d5be","impliedFormat":1},{"version":"505abecc03fe091b97b747dc320fff4679344de28c922564193151c0cefb3180","impliedFormat":1},{"version":"0f90009e6c417c9336b260496ea53729a9c70933895e2ce545fff272b9301bb2","impliedFormat":1},{"version":"c0a488e0b571aec7a957ecad80792af284c357b48ba6d2d8b4444aa2be6c5a2f","impliedFormat":1},{"version":"ff2ce6f20d8c9346ab61a3444f5bca603f327d26352eb0ab6f40cb1f48e84c84","impliedFormat":1},{"version":"7c9fc8fbe28c6fe364d78be412d8467619b87dc828f2cf5ef525db7d7837c9f7","impliedFormat":1},{"version":"c824d703f55424408de202f826ff50eced9ad4c07edf12ff99fef7a7ca820f5b","impliedFormat":1},{"version":"6efbf9b08c3e5a48b93858e7b96eb61f9ca6d5c5d27709dc16f806e0ba1067cc","impliedFormat":1},{"version":"1b6d8a8926e323af55c6777a6f6561191ea3da6beabe8e7d91c152df3c693bac","impliedFormat":1},{"version":"587173d12395c6996972afd696425044d322eb0174e76d7d5888caf35d88831d","impliedFormat":1},{"version":"de5ba33082f9ac12bd6a9e44c530a5dd708d145fff6cc2dd7cb30321a8882a6b","impliedFormat":1},{"version":"a50a03f03f65f3cc4e012c86464f310755462c7059f1581a9c666b5457d102e1","impliedFormat":1},{"version":"89b954bd9c00a77ce3d889e1cc78b034779e2593fe0adfa14b6e56baafeb5de2","impliedFormat":1},{"version":"9935b6341ac96a5027526efc1ec75114ccf2009b6ed602f65bc82e75ac2089b1","impliedFormat":1},{"version":"f8776dc3e57237b3de45b8ab5f224adc00dd90fe217f1a34ed6442606807c122","impliedFormat":1},{"version":"b0c8c7af35a444fd4054c12d971eabcd7ec4be2e840fc60f8897b5732cb3a20b","impliedFormat":1},{"version":"4f9bd8f00fe9f0ae8b5d2fffed8d47915b61b428e33b2ee9aa3ef159e98e305c","impliedFormat":1},{"version":"bbe6c08cefd08a23dc36eca9dae8aeb30895debf15387ab6904b591e3b6b3217","impliedFormat":1},{"version":"0c3880ad1eee5252b7f02c6ff10bd2666cb9a59ae698d552ec5b0a4a7b9611d8","impliedFormat":1},{"version":"d5d71ded265f144dec6604983fbfaf201844d7cd8614aadab8ad5227e99545d3","impliedFormat":1},{"version":"907d2ea3b3fed567fe2dff6747f7642f57aa8b3c288becf4843113ac98331ee3","impliedFormat":1},{"version":"33da6d63dbab160960cdd6e1dba0716bbc2f60af4aeb229ea9b318303c2015e1","impliedFormat":1},{"version":"6dc0148fe65a487db8bd552670f0fe87498c0a8e644c38092a185a05030282bf","impliedFormat":1},{"version":"6bd476fd8a150f5211488cc1d58d412dabec0da0977295ea1f06957b1d28ed13","impliedFormat":1},{"version":"5e134f083c46ea016764a484ac86f664564303f87bc3ca7cfd4b74ccbacad282","impliedFormat":1},{"version":"5d01f288556ba56b803dfbd9b207502aaaa831afddd9e71b2b5ce250dc395152","impliedFormat":99},{"version":"7b9d4f3cc667e8896241f6c95d2824ced607ce7f2858cedf04058ddd23287602","impliedFormat":99},{"version":"371e624178bb67607b2c63e1f8ec3e5d9585455b39bac8f0816eba540072383f","impliedFormat":99},{"version":"c468447508a5ca66c0a2523ed935cf5cb1d768d890c991e20397df618db741d1","impliedFormat":99},{"version":"b8c741cb7cd15e89b24af6c25b6d95a581b2d79f7c0d959552220743f7269c7f","impliedFormat":99},{"version":"1b65eaf896a59cf1904bae76e68bc64941671555a3b1ee4190bcd6d3b16d5b61","impliedFormat":99},{"version":"2cea0605228c4357d9f57b6d13fd607752579a0a70995ccf70179110b098435b","impliedFormat":99},{"version":"edc4a14bf998e6512257766b4f291c940b5e88fe8bea8aec0c499e2e41da1d34","impliedFormat":99},{"version":"74853f56c2d22c7794408839dc106c4c412818fbd2e855b1d7dc4a70447f8387","impliedFormat":99},{"version":"61d04e1fb8987919928a5c4982fe4b32ec4147bd39491b4da9720bb518fd77ce","impliedFormat":99},{"version":"c1d730d8774ef9d198a2f8ecedd6806b1efd9e00a502ba7e28969f5a2c550ae1","impliedFormat":99},{"version":"9155fc738cfdd9a8dbeb7a9657998407101fc278c1649d8bb24b24b4fc7e5ad4","impliedFormat":99},{"version":"aa9a3b2c5d46f501a49ebde65cbdd59a7c05122f4f15785467bc30b6d8956751","impliedFormat":99},"6a4c287c863003342a42d8bf876c7df4c2e82e95f556af5ade71f05255845200","272e7bc3a3734cc9e7419625f04cff7095131e315e51a83fa992a5134763df49","b9f2341c8b486561706db362b6f89ee6b149ef08fb4fa6aaea1041bce04fe1c5","3952955b5e83c1164fc78d7d54377fd4d09d2c11b79763cba53a7ff4b27a0601","48d0d0bebe2ccfd875953713d746fe4adae81b1e3a91ffafae29ead23fd5c39b",{"version":"4e59b852c9cf3b337f45359bdbdf0dc54169cbe794decb2acdcd898275d105d8","signature":"0e87910e0f1fc3f1c9c98cfafb38525dde686b573db2fa02f58bb1cf638ef3e6"},{"version":"cbc4073fb15a767ab8787ce067b3266807ea2ef8456aa85e3a55ff5a62c33bdd","signature":"7cf224e300294bcb276cf440125703dd0da90e1b5aa8070a3f7ca043475979c1"},{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"dbafe5664a764167d089a3ecce720259c6f4837696f2cf5e0adb199de6a9150c","signature":"2b2db01796f774852b44cacad054f31b9e63a3c4ed787d12c1dd75c75e602bef"},{"version":"43c268c58c28f2f6f80bc2a42104a2e8ce3891d1c8a2b8767e2a52606e61952b","signature":"d86aae3a61fb2a3734379428044eefd6b048996f3a1a1cd7e57bb94d3d36b02b"},{"version":"31946b8cd45a08d2f4d3be4e8b31b5896e5f0fb24840cc53e6d9a45d71e24506","signature":"50c12b83406070a98041a222f49db12395234ac00db0f16d18d01d8fccfe9d9d"},{"version":"2a0b3b70eae3ac89e80870431490787f00d5b450b6c9767df4daf6aee7eb0978","signature":"dd11f115ef46b611836fe84d45fb6f7889711397a69aad6cc147739cbe5a4072"},{"version":"1f97d3daade701681d6c89a1904123b009db72bdf95ec5fd563076769da2339c","signature":"c12ee6242f6e1108c7cfac4089b422a742417d50a70cbb03d0d24b7217271376"},{"version":"f6eaf207ae99ba6778460fa1d857e80c870be1533e9b1668060f0f53e6aa6b41","signature":"b9f112f8e9a593f362dd5f434f8f997385dd62f15e2d2fb6d316e5d0d9942a51"},{"version":"6647f68fcaa6a2a028711abf7288cd95d8625d0efff1315b5ad3536bf2de9e2b","signature":"919e52d8be47dbe1be9f86aff4b897c9801b8d6d0bf49f68fc321a4dc9251ad4"},{"version":"ef23db21116b6651538dbcb7df065b8340d6b2514bce598087309f5f435a2bcb","signature":"ba8cda0a8ef4aaa88a574d7e25ea6eaac5e6b9a25c862afdd948d8b6780014b6"},{"version":"26a4fb1b862a479d7a5d90aa1745f070d44bc351e79c6e4f8a6481b206a1655b","signature":"ad70244d75add3a5819000694ceb8f6ffca2fff2bd49acbd6786e1457c9d1d82","affectsGlobalScope":true},{"version":"abdc0918e0afd85d5495c618d95ea69c667d1cd095452cc73617168c784904a4","signature":"9382f138465c4775c54940f2a3d4334a083a6fc9a622a7c926c5f8233228cbae"},{"version":"336f74bb2ca217a8b08f3c146c41295de7597a86d52ca333fac5634561261846","signature":"c8525f0be940a19f3d03f06b6e43d4bea21ba910db62fb5024ecc671bcc23932"},{"version":"eb5c9b96b9b90a2c7abd1dd62be278b51ef4fcc1a7181fb7294ae1554b5d2409","signature":"90b4955becdfa8d37df7a1fdd1c93d847cdbea6bb3a113bd3baa6134291531a2"},{"version":"bdf04d4dd9ed94c85da1be565643ef5fad4212b7a545da8f4792deb4cf426665","signature":"c6384012cac726d5b05237d2bd2c9c9da0893feaf54ab1dd0042fe141b9e5bd8"},{"version":"1ac886967a62c940d61ab89f3411f64893d779d69e1435f15215547ba50fa03b","signature":"994bfb8326dca5c985462ba74b5c64146aef0e3ea7bbbbf265ad426d884fbc9e"},{"version":"314ad9d994327a7e9cc1367c1c56fb3f28737fc85716317e01f7649a02e6303b","signature":"00dd4ce0458ebf64e2e0617d4bc04f3a9a569bc388f3a20c1c4416d465e99245"},{"version":"b7a6fa2ad0bbeb531d9fc2a4003d5cc4a6e8142c18914fb2d034ca8b32b760fc","signature":"61814a0254524d3e14d405795a649b8b838386ff0f82caf50a0b7d4c72008c3d"},{"version":"3fcfd875b042c0855e76061aae81b0d8333c1990c1e4ca4d1f3141652b988b06","signature":"b43c263b28c6f20a6d7066e22f6906fe51605b6a4b7709a3c47d7cf6c0ccf93e"},{"version":"1e54ebe6806cac6a9b2ce78a54863cd75732cc68901256507042e3d8cd399224","signature":"58d2bb278ba2b594a3b664571b357e10388c6a1eef2c27e2946d3ee447fb4e16"},{"version":"f40083b8ea073895257a2f5ef2bfc9b8cf031d471744fe76185ecc259847d49b","signature":"e5f0e0e21621bb3e87958857cc9695abf011fb257bd249abd42ae97b3b61e1d0"},{"version":"91df3defe1f0907af6b80d1b7849615c72b36340404efb0bbf6f9fb1f99727fc","signature":"5cf43ceac60fba7927af9ce9b27fb6031854fc923263b78c353fb986857218b9"},{"version":"64837fd5187d6a3c2abc6a265251be66c4a9961c369e5cf647ac87511d328d90","signature":"0caa217adbbdb001facd9aeb363fa2a446eabbeb4e5af2c1f2c3d1ef4bbffc6e"},{"version":"40896dfcdeafc76e4d85bfd4acca390f542032e613c6f5b7c5c8e1e99bb3b63d","signature":"63bfd9f3fbbcb2dc649dd7303b9fdcf5680c25e217228a5abe005674bfc8bed5"},{"version":"f79040aab08b6460794739412f2f175f902517183e6a5196e4aec528d4634347","signature":"bbaa85a96900ee24d770ce38f7807d2d3cc2ca203e223cd4080447680910992e"},{"version":"d8d719cbe4f408a189f1b35d8183e10e8972d238f7df4eeb0c8cb48a365518b6","signature":"497761089898de53e02d017b84843a99061b782b9b0c6d987b1595a31b0260f7"},{"version":"69a362101efd9d9fe1a4d2d246ae3ac1d76ffc26e222817d13146f7a07bfe5cd","signature":"ea9768ee8ae2400a4352956f0937ff7ce12640c4de3c69d6e71e8a2f954ad58a"},{"version":"6ba703e0059aab893149bff3e9d4ab11e61342ca6914bad738f9e79eacb9fe3b","signature":"fe072e91b615ffa8bccb04dcc43149d4095fc5f6e56677346250901a692f4568"},{"version":"5e36c20b72b953b78f812d6d5c5b74f5789a8139870654e38a8fa065aea4575a","signature":"d9ce1372a43589027af010d0293b17099bf27089071c6d12ce30eb94b70191af"},{"version":"f9d363bd3045f41be125a5653330811c52b4849321a4fd6f580ed0d7344d72bf","signature":"dbb3eab27a108491f80873c1031ddc0b1a16c47f4c32e2ec2e70b83e9cee161b"},{"version":"574db92fbafc03af54f69b1a10735093ec1c047ac3480a7bba3cf427ff48d3be","signature":"8aec088c8b901c6fe9e7fe22785892138849af77a640d12b7015ec52a95aa27c"},{"version":"3717d410e1140d12aff0a8459792feda0fc49a0bbdd485bbb359ed7ac8aae3cc","signature":"d358bf9f604d2d3ac588fc908565f9c8a60bcb8e6993461b20ef5ca60e9a8f57"},{"version":"f88e2e65d3ecb90e0b76e93a6279e6d961ff9b4dd1596ef3aeb75fbfbbc2654e","signature":"d6d4a7e55d1ac32334084bd7154661b3a433a9fbe3673873564adde93041bc89"}],"root":[142,143,[146,176]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noImplicitAny":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"../../src/client","skipLibCheck":true,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":99,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[138,1],[141,2],[126,3],[127,3],[125,4],[130,5],[131,6],[133,7],[132,6],[129,8],[134,9],[135,10],[136,11],[128,4],[144,12],[145,12],[92,13],[93,12],[95,14],[96,15],[97,14],[120,14],[98,15],[99,15],[100,15],[101,15],[102,15],[117,15],[123,16],[107,15],[103,15],[104,15],[118,15],[116,15],[119,14],[105,15],[108,15],[109,15],[106,15],[110,15],[111,15],[122,15],[121,15],[115,15],[114,15],[112,15],[113,15],[142,17],[168,18],[173,19],[171,18],[172,18],[174,20],[163,21],[161,18],[143,22],[150,23],[152,24],[176,25],[165,26],[166,27],[148,28],[154,29],[146,22],[160,30],[167,31],[155,32],[157,33],[158,32],[153,34],[151,22],[164,35],[156,36],[159,18],[175,22],[162,37],[170,38],[149,18],[169,22],[147,18]],"version":"6.0.3"}