@stigmer/react 3.12.9 → 3.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stigmer/react",
3
- "version": "3.12.9",
3
+ "version": "3.13.0",
4
4
  "description": "React provider and client hook for the Stigmer platform SDK",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -37,7 +37,7 @@
37
37
  "dependencies": {
38
38
  "@bufbuild/protovalidate": "^1.1.1",
39
39
  "@dagrejs/dagre": "^1.1.4",
40
- "@stigmer/theme": "3.12.9",
40
+ "@stigmer/theme": "3.13.0",
41
41
  "diff": "^8.0.3",
42
42
  "fflate": "^0.8.2",
43
43
  "hast-util-to-jsx-runtime": "^2.3.6",
@@ -60,8 +60,8 @@
60
60
  "@codemirror/state": "^6.0.0",
61
61
  "@codemirror/view": "^6.0.0",
62
62
  "@lezer/highlight": "^1.0.0",
63
- "@stigmer/protos": "3.12.9",
64
- "@stigmer/sdk": "3.12.9",
63
+ "@stigmer/protos": "3.13.0",
64
+ "@stigmer/sdk": "3.13.0",
65
65
  "@tanstack/react-table": "^8.20.0",
66
66
  "@xyflow/react": "^12.0.0",
67
67
  "elkjs": "^0.9.0",
@@ -19,7 +19,7 @@ export interface UseProviderStandingReturn {
19
19
  *
20
20
  * Platform-operator surface: the caller needs
21
21
  * `can_view_provider_standing` on `platform:stigmer`. Cloud-only — the
22
- * OSS Go server does not implement the controller.
22
+ * OSS server does not implement the controller.
23
23
  *
24
24
  * Pass `enabled: false` to skip fetching (stable no-op).
25
25
  *
@@ -8,7 +8,7 @@ import { useFetch } from "../internal/useFetch.js";
8
8
  *
9
9
  * Platform-operator surface: the caller needs
10
10
  * `can_view_provider_standing` on `platform:stigmer`. Cloud-only — the
11
- * OSS Go server does not implement the controller.
11
+ * OSS server does not implement the controller.
12
12
  *
13
13
  * Pass `enabled: false` to skip fetching (stable no-op).
14
14
  *
@@ -25,7 +25,7 @@ export interface UseProviderStandingReturn {
25
25
  *
26
26
  * Platform-operator surface: the caller needs
27
27
  * `can_view_provider_standing` on `platform:stigmer`. Cloud-only — the
28
- * OSS Go server does not implement the controller.
28
+ * OSS server does not implement the controller.
29
29
  *
30
30
  * Pass `enabled: false` to skip fetching (stable no-op).
31
31
  *
@@ -383,19 +383,21 @@ describe("WorkflowExecutionViewer (center-column Thread|Graph toggle, S9)", () =
383
383
  it("a thread card offers no selection or drill-down gesture — the card IS the surface (T06)", () => {
384
384
  renderViewer();
385
385
 
386
- // build-report has kind 0 (unspecified summary disclosure): its header
387
- // is the expand gesture, never a selection.
388
- const header = screen.getByRole("button", { name: /^build-report/ });
389
- expect(header.getAttribute("aria-expanded")).toBe("false");
390
- expect(header.getAttribute("aria-pressed")).toBeNull();
386
+ // build-report renders from the snapshot fallback (no events): kind 0
387
+ // (unspecified summary disclosure) with nothing beyond what its
388
+ // header row already carries so it is a PLAIN row (stigmer#886): no
389
+ // expand chevron, no selection, no Inspect drill-down. (Expansion
390
+ // being card-local for content-bearing summary cards is pinned in
391
+ // WorkflowTaskThread.test.tsx.)
392
+ expect(
393
+ screen.queryByRole("button", { name: /^build-report/ }),
394
+ ).toBeNull();
391
395
  expect(
392
396
  screen.queryByRole("button", { name: "Inspect build-report" }),
393
397
  ).toBeNull();
394
398
 
395
- fireEvent.click(header);
396
-
397
- // Expansion is card-local; the panel never opens on a card gesture.
398
- expect(header.getAttribute("aria-expanded")).toBe("true");
399
+ // Clicking the row is inert: the panel never opens on a card gesture.
400
+ fireEvent.click(screen.getByText("build-report"));
399
401
  expect(screen.queryByRole("radio", { name: "Inspect" })).toBeNull();
400
402
  });
401
403
 
@@ -451,6 +451,48 @@ describe("WorkflowTaskThread", () => {
451
451
  expect(screen.getByText(/at dial tcp 10\.0\.0\.1:443/)).toBeTruthy();
452
452
  });
453
453
 
454
+ it("a summary-kind card with a body-less detail renders no expand gesture (stigmer#886)", () => {
455
+ // A settled wait card with nothing the header cannot carry — no retry,
456
+ // no usage, no error, no I/O. Since R6-6 moved Status/Duration onto
457
+ // the header, its detail body would be empty, so the header is a plain
458
+ // row: offering a chevron that reveals nothing is worse than none.
459
+ render(
460
+ <WorkflowTaskThread
461
+ taskStates={statesOf(
462
+ taskState({ taskName: "blocking_wait", taskKind: WorkflowTaskKind.wait }),
463
+ )}
464
+ totalTasks={1}
465
+ isRunning={false}
466
+ />,
467
+ );
468
+
469
+ expect(screen.getByText("blocking_wait")).toBeTruthy();
470
+ expect(screen.queryByRole("button", { name: /^blocking_wait/ })).toBeNull();
471
+ });
472
+
473
+ it("the expand gesture returns the moment the detail body has content (stigmer#886)", () => {
474
+ // The same wait card with a retry behind it: the Attempt row gives the
475
+ // body content, so the header is the expand gesture again.
476
+ render(
477
+ <WorkflowTaskThread
478
+ taskStates={statesOf(
479
+ taskState({
480
+ taskName: "blocking_wait",
481
+ taskKind: WorkflowTaskKind.wait,
482
+ attemptNumber: 2,
483
+ }),
484
+ )}
485
+ totalTasks={1}
486
+ isRunning={false}
487
+ />,
488
+ );
489
+
490
+ const header = screen.getByRole("button", { name: /^blocking_wait/ });
491
+ fireEvent.click(header);
492
+ expect(screen.getByText("Attempt")).toBeTruthy();
493
+ expect(screen.getByText("2")).toBeTruthy();
494
+ });
495
+
454
496
  it("shows the full error in a summary-kind card's expanded body", () => {
455
497
  render(
456
498
  <WorkflowTaskThread
@@ -471,9 +513,15 @@ describe("WorkflowTaskThread", () => {
471
513
  });
472
514
 
473
515
  it("keeps a card's expanded state across streaming updates (no remount)", () => {
516
+ // The wait card carries input so its detail body has content — a
517
+ // body-less summary card has no expand gesture at all (stigmer#886).
474
518
  const running = () =>
475
519
  statesOf(
476
- taskState({ taskName: "settled", taskKind: WorkflowTaskKind.wait }),
520
+ taskState({
521
+ taskName: "settled",
522
+ taskKind: WorkflowTaskKind.wait,
523
+ inputSummary: { duration: "10s" },
524
+ }),
477
525
  taskState({ taskName: "live", status: "running", messagesCount: 1 }),
478
526
  );
479
527
  const { rerender } = render(
@@ -495,7 +543,11 @@ describe("WorkflowTaskThread", () => {
495
543
  rerender(
496
544
  <WorkflowTaskThread
497
545
  taskStates={statesOf(
498
- taskState({ taskName: "settled", taskKind: WorkflowTaskKind.wait }),
546
+ taskState({
547
+ taskName: "settled",
548
+ taskKind: WorkflowTaskKind.wait,
549
+ inputSummary: { duration: "10s" },
550
+ }),
499
551
  taskState({ taskName: "live", status: "running", messagesCount: 2 }),
500
552
  )}
501
553
  totalTasks={2}
@@ -288,7 +288,12 @@ function ThreadEmptyState({ isRunning }: { readonly isRunning: boolean }) {
288
288
  * card chevron — `BoundedContent` owns its own in-place reveal, so the
289
289
  * old "expand, then Show more" double control never comes back).
290
290
  * - `"summary"` kinds expand from the header — the session card's own
291
- * gesture, the chevron appended by the shell (T06).
291
+ * gesture, the chevron appended by the shell (T06) — but ONLY when the
292
+ * detail body would carry content (stigmer#886): since R6-6 moved
293
+ * Status/Duration onto the header, a settled wait card often has
294
+ * nothing left to reveal, and a chevron that opens an empty body is
295
+ * worse than no chevron. The gate is the summary twin of
296
+ * `showPreviewBody` below.
292
297
  * - AGENT_CALL cards with a spawned child render the child's inline
293
298
  * transcript as the body (T07) — keyed on the VARIANT, not the
294
299
  * disclosure, so a platform builder's presenter override can never route
@@ -362,6 +367,17 @@ const ThreadTaskCard = memo(function ThreadTaskCard({
362
367
  !showTranscript &&
363
368
  isPreview &&
364
369
  (outputIO !== null || !!item.error || showApprovalSummary);
370
+ // The summary twin of that gate (stigmer#886): the expand gesture exists
371
+ // only when `ThreadTaskDetail` would render something. Short-circuits
372
+ // before the row build for preview/transcript cards, which never render
373
+ // the detail body.
374
+ const summaryHasDetail =
375
+ !isPreview &&
376
+ !showTranscript &&
377
+ (taskDetailRows(item).length > 0 ||
378
+ !!item.error ||
379
+ inputIO !== null ||
380
+ outputIO !== null);
365
381
 
366
382
  const meta = formatMetaChips({
367
383
  durationMs: item.durationMs,
@@ -378,19 +394,19 @@ const ThreadTaskCard = memo(function ThreadTaskCard({
378
394
  accent={item.status === "waiting_approval" ? "warning" : null}
379
395
  cursorTarget="workflow-task-row"
380
396
  >
381
- {/* The session card's gestures exactly (T06): summary rows expand
382
- from the header (chevron appended by the shell); preview and
383
- transcript rows' bodies are always visible, so the header is a
384
- plain layout row. */}
397
+ {/* The session card's gestures exactly (T06): summary rows with a
398
+ content-bearing detail expand from the header (chevron appended
399
+ by the shell); preview, transcript, and body-less summary rows
400
+ are plain layout rows. */}
385
401
  <ThreadCardHeader
386
402
  gesture={
387
- isPreview || showTranscript
388
- ? { kind: "none" }
389
- : {
403
+ summaryHasDetail
404
+ ? {
390
405
  kind: "expand",
391
406
  expanded,
392
407
  onToggle: () => setExpanded((v) => !v),
393
408
  }
409
+ : { kind: "none" }
394
410
  }
395
411
  >
396
412
  <StatusGlyph status={item.status} />
@@ -486,7 +502,7 @@ const ThreadTaskCard = memo(function ThreadTaskCard({
486
502
  </ThreadCardBody>
487
503
  )}
488
504
 
489
- {!isPreview && !showTranscript && expanded && (
505
+ {summaryHasDetail && expanded && (
490
506
  <ThreadCardBody>
491
507
  <ThreadTaskDetail item={item} inputIO={inputIO} outputIO={outputIO} />
492
508
  </ThreadCardBody>
@@ -630,19 +646,15 @@ function ThreadTaskPreviewBody({
630
646
  );
631
647
  }
632
648
 
633
- function ThreadTaskDetail({
634
- item,
635
- inputIO,
636
- outputIO,
637
- }: {
638
- readonly item: WorkflowThreadItem;
639
- readonly inputIO: TaskDetailIO | null;
640
- readonly outputIO: TaskDetailIO | null;
641
- }) {
642
- // No Status/Duration rows (R6-6): the card header is the single source
643
- // for both — the status glyph and the duration meta chip. The detail
644
- // body carries only what the header cannot: attempt count, usage, the
645
- // agent slug.
649
+ /**
650
+ * The detail body's label/value rows. No Status/Duration rows (R6-6): the
651
+ * card header is the single source for both — the status glyph and the
652
+ * duration meta chip. The detail carries only what the header cannot:
653
+ * attempt count, usage, the agent slug. Shared with the card's
654
+ * `summaryHasDetail` gate so "would the body render anything?" can never
655
+ * drift from what the body actually renders (stigmer#886).
656
+ */
657
+ function taskDetailRows(item: WorkflowThreadItem): Array<[string, string]> {
646
658
  const rows: Array<[string, string]> = [];
647
659
  if (item.attemptNumber > 1) rows.push(["Attempt", String(item.attemptNumber)]);
648
660
  const costChip = formatMetaChips({
@@ -653,6 +665,19 @@ function ThreadTaskDetail({
653
665
  if (item.variant === "agent-call" && item.agentSlug) {
654
666
  rows.push(["Agent", item.agentSlug]);
655
667
  }
668
+ return rows;
669
+ }
670
+
671
+ function ThreadTaskDetail({
672
+ item,
673
+ inputIO,
674
+ outputIO,
675
+ }: {
676
+ readonly item: WorkflowThreadItem;
677
+ readonly inputIO: TaskDetailIO | null;
678
+ readonly outputIO: TaskDetailIO | null;
679
+ }) {
680
+ const rows = taskDetailRows(item);
656
681
 
657
682
  return (
658
683
  <div className="stg:flex stg:flex-col stg:gap-2">
@@ -121,7 +121,12 @@ function ThreadEmptyState({ isRunning }) {
121
121
  * card chevron — `BoundedContent` owns its own in-place reveal, so the
122
122
  * old "expand, then Show more" double control never comes back).
123
123
  * - `"summary"` kinds expand from the header — the session card's own
124
- * gesture, the chevron appended by the shell (T06).
124
+ * gesture, the chevron appended by the shell (T06) — but ONLY when the
125
+ * detail body would carry content (stigmer#886): since R6-6 moved
126
+ * Status/Duration onto the header, a settled wait card often has
127
+ * nothing left to reveal, and a chevron that opens an empty body is
128
+ * worse than no chevron. The gate is the summary twin of
129
+ * `showPreviewBody` below.
125
130
  * - AGENT_CALL cards with a spawned child render the child's inline
126
131
  * transcript as the body (T07) — keyed on the VARIANT, not the
127
132
  * disclosure, so a platform builder's presenter override can never route
@@ -164,6 +169,16 @@ const ThreadTaskCard = memo(function ThreadTaskCard({ item, onNavigateToAgentExe
164
169
  const showPreviewBody = !showTranscript &&
165
170
  isPreview &&
166
171
  (outputIO !== null || !!item.error || showApprovalSummary);
172
+ // The summary twin of that gate (stigmer#886): the expand gesture exists
173
+ // only when `ThreadTaskDetail` would render something. Short-circuits
174
+ // before the row build for preview/transcript cards, which never render
175
+ // the detail body.
176
+ const summaryHasDetail = !isPreview &&
177
+ !showTranscript &&
178
+ (taskDetailRows(item).length > 0 ||
179
+ !!item.error ||
180
+ inputIO !== null ||
181
+ outputIO !== null);
167
182
  const meta = formatMetaChips({
168
183
  durationMs: item.durationMs,
169
184
  costMicros: item.costMicros,
@@ -173,18 +188,18 @@ const ThreadTaskCard = memo(function ThreadTaskCard({ item, onNavigateToAgentExe
173
188
  // (T04) — a primitive on the item so this memoized card bails during
174
189
  // streaming. The empty string means "nothing kind-specific to say".
175
190
  const preview = item.previewLine || null;
176
- return (_jsxs(ThreadCardShell, { accent: item.status === "waiting_approval" ? "warning" : null, cursorTarget: "workflow-task-row", children: [_jsxs(ThreadCardHeader, { gesture: isPreview || showTranscript
177
- ? { kind: "none" }
178
- : {
191
+ return (_jsxs(ThreadCardShell, { accent: item.status === "waiting_approval" ? "warning" : null, cursorTarget: "workflow-task-row", children: [_jsxs(ThreadCardHeader, { gesture: summaryHasDetail
192
+ ? {
179
193
  kind: "expand",
180
194
  expanded,
181
195
  onToggle: () => setExpanded((v) => !v),
182
- }, children: [_jsx(StatusGlyph, { status: item.status }), _jsxs("span", { className: "stg:min-w-0 stg:flex-1 stg:flex stg:items-baseline stg:gap-1.5 stg:overflow-hidden", children: [_jsx("span", { className: "stg:shrink-0 stg:font-medium stg:text-foreground", children: item.taskName }), item.kindLabel && (_jsx("span", { className: "stg:shrink-0 stg:rounded stg:border stg:border-border stg:px-1 stg:py-px stg:text-[10px] stg:uppercase stg:tracking-wide stg:text-muted-foreground", children: item.kindLabel })), item.attemptNumber > 1 && (_jsxs("span", { className: "stg:shrink-0 stg:text-muted-foreground", children: ["attempt ", item.attemptNumber] })), preview && (_jsx("span", { className: "stg:min-w-0 stg:truncate stg:text-muted-foreground", children: preview }))] }), meta && (_jsx("span", { className: "stg:shrink-0 stg:tabular-nums stg:text-muted-foreground", children: meta }))] }), showHitl && hitl && (_jsx(ThreadCardBody, { children: _jsx(ThreadTaskCardHitl, { item: item, hitl: hitl, approvalRequestView: approvalRequestView }) })), showTranscript && (_jsx(ThreadCardBody, { cursorTarget: "task-transcript", children: _jsxs("div", { className: "stg:flex stg:flex-col stg:gap-2", children: [item.error && (_jsx(BoundedContent, { children: _jsx("pre", { className: "stg:whitespace-pre-wrap stg:break-words stg:text-xs stg:text-destructive", children: item.error }) })), _jsx(WorkflowAgentCallTranscript, { childExecutionId: item.childExecutionId, agentSlug: item.agentSlug || undefined, hitl: hitl, onNavigateToAgentExecution: onNavigateToAgentExecution })] }) })), showPreviewBody && (_jsx(ThreadCardBody, { cursorTarget: "task-preview", children: _jsx(ThreadTaskPreviewBody, { item: item, outputIO: outputIO, approvalSummary: showApprovalSummary && approvalRequestView
196
+ }
197
+ : { kind: "none" }, children: [_jsx(StatusGlyph, { status: item.status }), _jsxs("span", { className: "stg:min-w-0 stg:flex-1 stg:flex stg:items-baseline stg:gap-1.5 stg:overflow-hidden", children: [_jsx("span", { className: "stg:shrink-0 stg:font-medium stg:text-foreground", children: item.taskName }), item.kindLabel && (_jsx("span", { className: "stg:shrink-0 stg:rounded stg:border stg:border-border stg:px-1 stg:py-px stg:text-[10px] stg:uppercase stg:tracking-wide stg:text-muted-foreground", children: item.kindLabel })), item.attemptNumber > 1 && (_jsxs("span", { className: "stg:shrink-0 stg:text-muted-foreground", children: ["attempt ", item.attemptNumber] })), preview && (_jsx("span", { className: "stg:min-w-0 stg:truncate stg:text-muted-foreground", children: preview }))] }), meta && (_jsx("span", { className: "stg:shrink-0 stg:tabular-nums stg:text-muted-foreground", children: meta }))] }), showHitl && hitl && (_jsx(ThreadCardBody, { children: _jsx(ThreadTaskCardHitl, { item: item, hitl: hitl, approvalRequestView: approvalRequestView }) })), showTranscript && (_jsx(ThreadCardBody, { cursorTarget: "task-transcript", children: _jsxs("div", { className: "stg:flex stg:flex-col stg:gap-2", children: [item.error && (_jsx(BoundedContent, { children: _jsx("pre", { className: "stg:whitespace-pre-wrap stg:break-words stg:text-xs stg:text-destructive", children: item.error }) })), _jsx(WorkflowAgentCallTranscript, { childExecutionId: item.childExecutionId, agentSlug: item.agentSlug || undefined, hitl: hitl, onNavigateToAgentExecution: onNavigateToAgentExecution })] }) })), showPreviewBody && (_jsx(ThreadCardBody, { cursorTarget: "task-preview", children: _jsx(ThreadTaskPreviewBody, { item: item, outputIO: outputIO, approvalSummary: showApprovalSummary && approvalRequestView
183
198
  ? {
184
199
  request: approvalRequestView,
185
200
  decision: approvalDecision,
186
201
  }
187
- : undefined }) })), !isPreview && !showTranscript && expanded && (_jsx(ThreadCardBody, { children: _jsx(ThreadTaskDetail, { item: item, inputIO: inputIO, outputIO: outputIO }) }))] }));
202
+ : undefined }) })), summaryHasDetail && expanded && (_jsx(ThreadCardBody, { children: _jsx(ThreadTaskDetail, { item: item, inputIO: inputIO, outputIO: outputIO }) }))] }));
188
203
  });
189
204
  // ---------------------------------------------------------------------------
190
205
  // In-thread HITL section (S10)
@@ -237,11 +252,15 @@ function ThreadTaskIOSection({ label, io, }) {
237
252
  function ThreadTaskPreviewBody({ item, outputIO, approvalSummary, }) {
238
253
  return (_jsxs("div", { className: "stg:flex stg:flex-col stg:gap-2", children: [item.error && (_jsx(BoundedContent, { children: _jsx("pre", { className: "stg:whitespace-pre-wrap stg:break-words stg:text-xs stg:text-destructive", children: item.error }) })), approvalSummary ? (_jsx(WorkflowTaskApprovalSummary, { taskName: item.taskName, prompt: approvalSummary.request.prompt, outcomes: approvalSummary.request.outcomes, decision: approvalSummary.decision })) : (outputIO && _jsx(ThreadTaskIOSection, { label: "Output", io: outputIO }))] }));
239
254
  }
240
- function ThreadTaskDetail({ item, inputIO, outputIO, }) {
241
- // No Status/Duration rows (R6-6): the card header is the single source
242
- // for both — the status glyph and the duration meta chip. The detail
243
- // body carries only what the header cannot: attempt count, usage, the
244
- // agent slug.
255
+ /**
256
+ * The detail body's label/value rows. No Status/Duration rows (R6-6): the
257
+ * card header is the single source for both — the status glyph and the
258
+ * duration meta chip. The detail carries only what the header cannot:
259
+ * attempt count, usage, the agent slug. Shared with the card's
260
+ * `summaryHasDetail` gate so "would the body render anything?" can never
261
+ * drift from what the body actually renders (stigmer#886).
262
+ */
263
+ function taskDetailRows(item) {
245
264
  const rows = [];
246
265
  if (item.attemptNumber > 1)
247
266
  rows.push(["Attempt", String(item.attemptNumber)]);
@@ -254,6 +273,10 @@ function ThreadTaskDetail({ item, inputIO, outputIO, }) {
254
273
  if (item.variant === "agent-call" && item.agentSlug) {
255
274
  rows.push(["Agent", item.agentSlug]);
256
275
  }
276
+ return rows;
277
+ }
278
+ function ThreadTaskDetail({ item, inputIO, outputIO, }) {
279
+ const rows = taskDetailRows(item);
257
280
  return (_jsxs("div", { className: "stg:flex stg:flex-col stg:gap-2", children: [rows.length > 0 && (_jsx("dl", { className: "stg:grid stg:grid-cols-[auto_1fr] stg:gap-x-4 stg:gap-y-1 stg:text-xs", children: rows.map(([label, value]) => (_jsxs("div", { className: "stg:contents", children: [_jsx("dt", { className: "stg:text-muted-foreground", children: label }), _jsx("dd", { className: "stg:text-foreground", children: value })] }, label))) })), item.error && (_jsx(BoundedContent, { children: _jsx("pre", { className: "stg:whitespace-pre-wrap stg:break-words stg:text-xs stg:text-destructive", children: item.error }) })), inputIO && _jsx(ThreadTaskIOSection, { label: "Input", io: inputIO }), outputIO && _jsx(ThreadTaskIOSection, { label: "Output", io: outputIO })] }));
258
281
  }
259
282
  // ---------------------------------------------------------------------------
@@ -1 +1 @@
1
- {"version":3,"file":"WorkflowTaskThread.js","sourceRoot":"","sources":["../../../src/workflow/thread/WorkflowTaskThread.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"WorkflowTaskThread.js","sourceRoot":"","sources":["../../../src/workflow/thread/WorkflowTaskThread.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAChD,OAAO,EAAE,EAAE,EAAE,MAAM,gBAAgB,CAAC;AAGpC,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAC;AAC1E,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAClE,OAAO,EACL,eAAe,EACf,gBAAgB,EAChB,cAAc,EACd,WAAW,EACX,SAAS,EACT,eAAe,EACf,WAAW,EACX,OAAO,EACP,eAAe,GAChB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAErD,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAChF,OAAO,EAAE,OAAO,EAAqB,MAAM,kCAAkC,CAAC;AAC9E,OAAO,EACL,yBAAyB,EACzB,0BAA0B,GAG3B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EAAE,oBAAoB,EAAE,MAAM,wCAAwC,CAAC;AAC9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AA8ErE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,IAAI,CAAC,SAAS,kBAAkB,CAAC,EACjE,UAAU,EACV,UAAU,EACV,SAAS,EACT,0BAA0B,EAC1B,IAAI,EACJ,mBAAmB,EACnB,YAAY,GAAG,IAAI,EACnB,SAAS,GACe;IACxB,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,GAAG,sBAAsB,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;IAC3E,MAAM,EAAE,SAAS,EAAE,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,YAAY,EAAE,GACrE,aAAa,EAAE,CAAC;IAElB,qEAAqE;IACrE,yEAAyE;IACzE,yEAAyE;IACzE,oEAAoE;IACpE,sEAAsE;IACtE,0EAA0E;IAC1E,MAAM,UAAU,GAAG,OAAO,CAAiC,GAAG,EAAE;QAC9D,IAAI,CAAC,IAAI,IAAI,CAAC,YAAY;YAAE,OAAO,IAAI,CAAC;QACxC,OAAO;YACL,GAAG,IAAI;YACP,cAAc,EAAE,CAAC,GAAG,IAAsD,EAAE,EAAE;gBAC5E,YAAY,EAAE,CAAC;gBACf,OAAO,IAAI,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC;YACtC,CAAC;YACD,kBAAkB,EAAE,CAAC,GAAG,IAA0D,EAAE,EAAE;gBACpF,YAAY,EAAE,CAAC;gBACf,OAAO,IAAI,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC;YAC1C,CAAC;YACD,kBAAkB,EAAE,CAAC,GAAG,IAA0D,EAAE,EAAE;gBACpF,YAAY,EAAE,CAAC;gBACf,OAAO,IAAI,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC;YAC1C,CAAC;SACF,CAAC;IACJ,CAAC,EAAE,CAAC,IAAI,EAAE,YAAY,EAAE,YAAY,CAAC,CAAC,CAAC;IAEvC,OAAO,CACL,eAAK,SAAS,EAAE,EAAE,CAAC,2DAA2D,EAAE,SAAS,CAAC,aACxF,KAAC,oBAAoB,IAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,GAAI,EAElE,cAAK,GAAG,EAAE,SAAS,EAAE,SAAS,EAAC,4CAA4C,YACzE,eACE,GAAG,EAAE,UAAU,EACf,SAAS,EAAC,wFAAwF,aAEjG,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CACpB,KAAC,gBAAgB,IAAC,SAAS,EAAE,SAAS,GAAI,CAC3C,CAAC,CAAC,CAAC,CACF,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAClB,KAAC,cAAc,IAEb,IAAI,EAAE,IAAI,EACV,0BAA0B,EAAE,0BAA0B;4BACtD,4DAA4D;4BAC5D,2DAA2D;4BAC3D,4DAA4D;4BAC5D,4DAA4D;4BAC5D,4DAA4D;4BAC5D,yBAAyB;4BACzB,IAAI,EAAE,IAAI,CAAC,MAAM,KAAK,kBAAkB,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,EACjE,QAAQ,EAAE,mBAAmB,EAAE,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,IAV5C,IAAI,CAAC,QAAQ,CAWlB,CACH,CAAC,CACH,EACD,cAAK,GAAG,EAAE,WAAW,iBAAc,MAAM,GAAG,IACxC,GACF,EAEN,KAAC,kBAAkB,IAAC,OAAO,EAAE,CAAC,WAAW,EAAE,OAAO,EAAE,YAAY,GAAI,IAChE,CACP,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,8EAA8E;AAC9E,kBAAkB;AAClB,8EAA8E;AAE9E,SAAS,oBAAoB,CAAC,EAC5B,QAAQ,EACR,SAAS,GAIV;IACC,MAAM,EAAE,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,GAAG,QAAQ,CAAC;IAC3D,MAAM,OAAO,GACX,UAAU,GAAG,CAAC;QACZ,CAAC,CAAC,GAAG,YAAY,OAAO,UAAU,QAAQ;QAC1C,CAAC,CAAC,GAAG,YAAY,IAAI,YAAY,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IAEjE,OAAO,CACL,eAAK,SAAS,EAAC,8HAA8H,aAC3I,yBAAO,OAAO,GAAQ,EACrB,WAAW,GAAG,CAAC,IAAI,CAClB,gBAAM,SAAS,EAAC,uCAAuC,aACrD,8BACc,MAAM,EAClB,SAAS,EAAE,EAAE,CACX,8CAA8C,EAC9C,SAAS,IAAI,mBAAmB,CACjC,GACD,EACD,WAAW,eACP,CACR,IACG,CACP,CAAC;AACJ,CAAC;AAED,8EAA8E;AAC9E,cAAc;AACd,8EAA8E;AAE9E,SAAS,gBAAgB,CAAC,EAAE,SAAS,EAAmC;IACtE,OAAO,CACL,cAAK,IAAI,EAAC,QAAQ,EAAC,SAAS,EAAC,0EAA0E,YACpG,SAAS;YACR,CAAC,CAAC,sCAAsC;YACxC,CAAC,CAAC,mDAAmD,GACnD,CACP,CAAC;AACJ,CAAC;AAED,8EAA8E;AAC9E,YAAY;AACZ,8EAA8E;AAE9E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAM,cAAc,GAAG,IAAI,CAAC,SAAS,cAAc,CAAC,EAClD,IAAI,EACJ,0BAA0B,EAC1B,IAAI,EACJ,QAAQ,GAMT;IACC,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAEhD,yEAAyE;IACzE,8DAA8D;IAC9D,MAAM,QAAQ,GAAG,OAAO,CACtB,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,aAAa,EAAE,QAAQ,EAAE,WAAW,IAAI,EAAE,CAAC,EAChF,CAAC,QAAQ,EAAE,IAAI,CAAC,aAAa,CAAC,CAC/B,CAAC;IACF,MAAM,OAAO,GAAG,OAAO,CACrB,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,CAAC,YAAY,EAAE,EAAE,CAAC,EACrD,CAAC,QAAQ,EAAE,IAAI,CAAC,YAAY,CAAC,CAC9B,CAAC;IAEF,uEAAuE;IACvE,yEAAyE;IACzE,yEAAyE;IACzE,uEAAuE;IACvE,MAAM,mBAAmB,GAAG,OAAO,CACjC,GAAG,EAAE,CACH,IAAI,CAAC,eAAe;QAClB,CAAC,CAAC,yBAAyB,CAAC,IAAI,CAAC,eAAe,CAAC;QACjD,CAAC,CAAC,IAAI,EACV,CAAC,IAAI,CAAC,eAAe,CAAC,CACvB,CAAC;IACF,MAAM,gBAAgB,GAAG,OAAO,CAC9B,GAAG,EAAE,CACH,IAAI,CAAC,eAAe;QAClB,CAAC,CAAC,0BAA0B,CAAC,IAAI,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC;QACvE,CAAC,CAAC,IAAI,EACV,CAAC,IAAI,CAAC,eAAe,EAAE,IAAI,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAC1D,CAAC;IAEF,MAAM,SAAS,GAAG,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC;IAChD,0EAA0E;IAC1E,yEAAyE;IACzE,yEAAyE;IACzE,yEAAyE;IACzE,2CAA2C;IAC3C,MAAM,cAAc,GAClB,IAAI,CAAC,OAAO,KAAK,YAAY,IAAI,IAAI,CAAC,gBAAgB,KAAK,EAAE,CAAC;IAChE,MAAM,QAAQ,GACZ,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,kBAAkB,IAAI,CAAC,cAAc,CAAC;IAClE,uEAAuE;IACvE,wEAAwE;IACxE,oCAAoC;IACpC,MAAM,mBAAmB,GACvB,CAAC,QAAQ,IAAI,mBAAmB,KAAK,IAAI,IAAI,gBAAgB,KAAK,IAAI,CAAC;IACzE,yEAAyE;IACzE,iEAAiE;IACjE,qEAAqE;IACrE,4DAA4D;IAC5D,MAAM,eAAe,GACnB,CAAC,cAAc;QACf,SAAS;QACT,CAAC,QAAQ,KAAK,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,KAAK,IAAI,mBAAmB,CAAC,CAAC;IAC7D,yEAAyE;IACzE,sEAAsE;IACtE,wEAAwE;IACxE,mBAAmB;IACnB,MAAM,gBAAgB,GACpB,CAAC,SAAS;QACV,CAAC,cAAc;QACf,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,MAAM,GAAG,CAAC;YAC9B,CAAC,CAAC,IAAI,CAAC,KAAK;YACZ,OAAO,KAAK,IAAI;YAChB,QAAQ,KAAK,IAAI,CAAC,CAAC;IAEvB,MAAM,IAAI,GAAG,eAAe,CAAC;QAC3B,UAAU,EAAE,IAAI,CAAC,UAAU;QAC3B,UAAU,EAAE,IAAI,CAAC,UAAU;QAC3B,MAAM,EAAE,IAAI,CAAC,UAAU;KACxB,CAAC,CAAC;IACH,0EAA0E;IAC1E,qEAAqE;IACrE,oEAAoE;IACpE,MAAM,OAAO,GAAG,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC;IAEzC,OAAO,CACL,MAAC,eAAe,IACd,MAAM,EAAE,IAAI,CAAC,MAAM,KAAK,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,EAC7D,YAAY,EAAC,mBAAmB,aAMhC,MAAC,gBAAgB,IACf,OAAO,EACL,gBAAgB;oBACd,CAAC,CAAC;wBACE,IAAI,EAAE,QAAQ;wBACd,QAAQ;wBACR,QAAQ,EAAE,GAAG,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;qBACvC;oBACH,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,aAGtB,KAAC,WAAW,IAAC,MAAM,EAAE,IAAI,CAAC,MAAM,GAAI,EACpC,gBAAM,SAAS,EAAC,oFAAoF,aAClG,eAAM,SAAS,EAAC,kDAAkD,YAC/D,IAAI,CAAC,QAAQ,GACT,EACN,IAAI,CAAC,SAAS,IAAI,CACjB,eAAM,SAAS,EAAC,oJAAoJ,YACjK,IAAI,CAAC,SAAS,GACV,CACR,EACA,IAAI,CAAC,aAAa,GAAG,CAAC,IAAI,CACzB,gBAAM,SAAS,EAAC,wCAAwC,yBAC7C,IAAI,CAAC,aAAa,IACtB,CACR,EACA,OAAO,IAAI,CACV,eAAM,SAAS,EAAC,oDAAoD,YACjE,OAAO,GACH,CACR,IACI,EAEN,IAAI,IAAI,CACP,eAAM,SAAS,EAAC,yDAAyD,YACtE,IAAI,GACA,CACR,IACgB,EAOlB,QAAQ,IAAI,IAAI,IAAI,CACnB,KAAC,cAAc,cACb,KAAC,kBAAkB,IACjB,IAAI,EAAE,IAAI,EACV,IAAI,EAAE,IAAI,EACV,mBAAmB,EAAE,mBAAmB,GACxC,GACa,CAClB,EAMA,cAAc,IAAI,CACjB,KAAC,cAAc,IAAC,YAAY,EAAC,iBAAiB,YAC5C,eAAK,SAAS,EAAC,iCAAiC,aAC7C,IAAI,CAAC,KAAK,IAAI,CACb,KAAC,cAAc,cACb,cAAK,SAAS,EAAC,0EAA0E,YACtF,IAAI,CAAC,KAAK,GACP,GACS,CAClB,EAKD,KAAC,2BAA2B,IAC1B,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,EACvC,SAAS,EAAE,IAAI,CAAC,SAAS,IAAI,SAAS,EACtC,IAAI,EAAE,IAAI,EACV,0BAA0B,EAAE,0BAA0B,GACtD,IACE,GACS,CAClB,EAMA,eAAe,IAAI,CAClB,KAAC,cAAc,IAAC,YAAY,EAAC,cAAc,YACzC,KAAC,qBAAqB,IACpB,IAAI,EAAE,IAAI,EACV,QAAQ,EAAE,QAAQ,EAClB,eAAe,EACb,mBAAmB,IAAI,mBAAmB;wBACxC,CAAC,CAAC;4BACE,OAAO,EAAE,mBAAmB;4BAC5B,QAAQ,EAAE,gBAAgB;yBAC3B;wBACH,CAAC,CAAC,SAAS,GAEf,GACa,CAClB,EAEA,gBAAgB,IAAI,QAAQ,IAAI,CAC/B,KAAC,cAAc,cACb,KAAC,gBAAgB,IAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,GAAI,GACvD,CAClB,IACe,CACnB,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,8EAA8E;AAC9E,+BAA+B;AAC/B,8EAA8E;AAE9E;;;;;;;;;;;;GAYG;AACH,SAAS,kBAAkB,CAAC,EAC1B,IAAI,EACJ,IAAI,EACJ,mBAAmB,GAKpB;IACC,IAAI,mBAAmB,EAAE,CAAC;QACxB,OAAO,CACL,KAAC,sBAAsB,IACrB,QAAQ,EAAE,IAAI,CAAC,QAAQ,EACvB,MAAM,EAAE,mBAAmB,CAAC,MAAM,EAClC,QAAQ,EAAE,mBAAmB,CAAC,QAAQ,EACtC,UAAU,EAAE,mBAAmB,CAAC,UAAU,IAAI,SAAS,EACvD,OAAO,EAAE,mBAAmB,CAAC,OAAO,EACpC,MAAM,EAAE,mBAAmB,CAAC,MAAM,EAClC,iBAAiB,EAAE,mBAAmB,CAAC,iBAAiB,EACxD,QAAQ,EAAE,IAAI,CAAC,kBAAkB,EACjC,YAAY,EAAE,IAAI,CAAC,+BAA+B,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,EACrE,KAAK,EAAE,IAAI,CAAC,4BAA4B,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,GACnE,CACH,CAAC;IACJ,CAAC;IAED,qEAAqE;IACrE,gEAAgE;IAChE,OAAO,CACL,YAAG,SAAS,EAAC,uCAAuC,sDAEhD,CACL,CAAC;AACJ,CAAC;AAED,8EAA8E;AAC9E,oBAAoB;AACpB,8EAA8E;AAE9E;;;;;;GAMG;AACH,SAAS,mBAAmB,CAAC,EAC3B,KAAK,EACL,EAAE,GAIH;IACC,OAAO,CACL,eAAK,SAAS,EAAC,iCAAiC,aAC9C,eAAM,SAAS,EAAC,2FAA2F,YACxG,KAAK,GACD,EACN,EAAE,CAAC,MAAM,KAAK,eAAe,IAAI,CAChC,YAAG,SAAS,EAAC,2CAA2C,sHAGpD,CACL,EACD,KAAC,cAAc,cACb,KAAC,oBAAoB,IAAC,IAAI,EAAE,EAAE,CAAC,IAAI,GAAI,GACxB,IACb,CACP,CAAC;AACJ,CAAC;AAED;;;;;;;;;;GAUG;AACH,SAAS,qBAAqB,CAAC,EAC7B,IAAI,EACJ,QAAQ,EACR,eAAe,GAQhB;IACC,OAAO,CACL,eAAK,SAAS,EAAC,iCAAiC,aAC7C,IAAI,CAAC,KAAK,IAAI,CACb,KAAC,cAAc,cACb,cAAK,SAAS,EAAC,0EAA0E,YACtF,IAAI,CAAC,KAAK,GACP,GACS,CAClB,EAEA,eAAe,CAAC,CAAC,CAAC,CACjB,KAAC,2BAA2B,IAC1B,QAAQ,EAAE,IAAI,CAAC,QAAQ,EACvB,MAAM,EAAE,eAAe,CAAC,OAAO,CAAC,MAAM,EACtC,QAAQ,EAAE,eAAe,CAAC,OAAO,CAAC,QAAQ,EAC1C,QAAQ,EAAE,eAAe,CAAC,QAAQ,GAClC,CACH,CAAC,CAAC,CAAC,CACF,QAAQ,IAAI,KAAC,mBAAmB,IAAC,KAAK,EAAC,QAAQ,EAAC,EAAE,EAAE,QAAQ,GAAI,CACjE,IACG,CACP,CAAC;AACJ,CAAC;AAED;;;;;;;GAOG;AACH,SAAS,cAAc,CAAC,IAAwB;IAC9C,MAAM,IAAI,GAA4B,EAAE,CAAC;IACzC,IAAI,IAAI,CAAC,aAAa,GAAG,CAAC;QAAE,IAAI,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;IAC/E,MAAM,QAAQ,GAAG,eAAe,CAAC;QAC/B,UAAU,EAAE,IAAI,CAAC,UAAU;QAC3B,MAAM,EAAE,IAAI,CAAC,UAAU;KACxB,CAAC,CAAC;IACH,IAAI,QAAQ;QAAE,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAC;IAC7C,IAAI,IAAI,CAAC,OAAO,KAAK,YAAY,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;QACpD,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;IACvC,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC;AAED,SAAS,gBAAgB,CAAC,EACxB,IAAI,EACJ,OAAO,EACP,QAAQ,GAKT;IACC,MAAM,IAAI,GAAG,cAAc,CAAC,IAAI,CAAC,CAAC;IAElC,OAAO,CACL,eAAK,SAAS,EAAC,iCAAiC,aAC7C,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAClB,aAAI,SAAS,EAAC,uEAAuE,YAClF,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,CAC5B,eAAiB,SAAS,EAAC,cAAc,aACvC,aAAI,SAAS,EAAC,2BAA2B,YAAE,KAAK,GAAM,EACtD,aAAI,SAAS,EAAC,qBAAqB,YAAE,KAAK,GAAM,KAFxC,KAAK,CAGT,CACP,CAAC,GACC,CACN,EAEA,IAAI,CAAC,KAAK,IAAI,CACb,KAAC,cAAc,cACb,cAAK,SAAS,EAAC,0EAA0E,YACtF,IAAI,CAAC,KAAK,GACP,GACS,CAClB,EAIA,OAAO,IAAI,KAAC,mBAAmB,IAAC,KAAK,EAAC,OAAO,EAAC,EAAE,EAAE,OAAO,GAAI,EAC7D,QAAQ,IAAI,KAAC,mBAAmB,IAAC,KAAK,EAAC,QAAQ,EAAC,EAAE,EAAE,QAAQ,GAAI,IAC7D,CACP,CAAC;AACJ,CAAC;AAED,8EAA8E;AAC9E,2EAA2E;AAC3E,8EAA8E;AAE9E;;;;;GAKG;AACH,MAAM,YAAY,GAGd;IACF,OAAO,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,qBAAqB,EAAE;IAC5D,QAAQ,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,kBAAkB,EAAE;IAC1D,gBAAgB,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,kBAAkB,EAAE;IAChE,SAAS,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,kBAAkB,EAAE;IAC/D,MAAM,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,KAAK,EAAE,sBAAsB,EAAE;IAC5D,OAAO,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,2BAA2B,EAAE;IACtE,OAAO,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,2BAA2B,EAAE;CAC/D,CAAC;AAEF,SAAS,WAAW,CAAC,EAAE,MAAM,EAAqD;IAChF,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC;IAC7C,OAAO,CACL,eAAM,SAAS,EAAE,EAAE,CAAC,cAAc,EAAE,KAAK,CAAC,iBAAc,MAAM,YAC5D,KAAC,IAAI,KAAG,GACH,CACR,CAAC;AACJ,CAAC"}