llm-party-cli 0.11.1 → 0.12.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/dist/index.js CHANGED
@@ -37522,6 +37522,19 @@ function formatTranscript(messages, agentName, humanName) {
37522
37522
 
37523
37523
  `);
37524
37524
  }
37525
+ function extractShortPath(raw) {
37526
+ if (typeof raw !== "string" || raw.length === 0)
37527
+ return;
37528
+ const parts = raw.replace(/\\/g, "/").split("/").filter(Boolean);
37529
+ if (parts.length <= 2)
37530
+ return parts.join("/");
37531
+ return parts.slice(-2).join("/");
37532
+ }
37533
+ function truncate(str, maxLen) {
37534
+ if (str.length <= maxLen)
37535
+ return str;
37536
+ return str.slice(0, maxLen - 1) + "\u2026";
37537
+ }
37525
37538
 
37526
37539
  // src/adapters/claude-base.ts
37527
37540
  class ClaudeBaseAdapter {
@@ -37592,14 +37605,18 @@ class ClaudeBaseAdapter {
37592
37605
  for (const block of blocks) {
37593
37606
  if (block.type === "tool_use" && block.name) {
37594
37607
  const toolName = String(block.name).toLowerCase();
37608
+ const input = block.input;
37609
+ const shortPath = extractShortPath(input?.file_path ?? input?.path ?? input?.pattern);
37595
37610
  if (toolName === "read" || toolName === "glob") {
37596
- yield { type: "activity", activity: "reading", detail: block.name };
37611
+ yield { type: "activity", activity: "reading", detail: shortPath ? `Read: ${shortPath}` : block.name };
37597
37612
  } else if (toolName === "write" || toolName === "edit") {
37598
- yield { type: "activity", activity: "writing", detail: block.name };
37613
+ yield { type: "activity", activity: "writing", detail: shortPath ? `Edit: ${shortPath}` : block.name };
37599
37614
  } else if (toolName === "bash") {
37600
- yield { type: "activity", activity: "running", detail: "shell" };
37615
+ const cmd = typeof input?.command === "string" ? truncate(input.command, 40) : "shell";
37616
+ yield { type: "activity", activity: "running", detail: `Bash: ${cmd}` };
37601
37617
  } else if (toolName === "grep" || toolName === "search" || toolName === "websearch") {
37602
- yield { type: "activity", activity: "searching", detail: block.name };
37618
+ const query2 = typeof input?.pattern === "string" ? truncate(input.pattern, 30) : block.name;
37619
+ yield { type: "activity", activity: "searching", detail: `Search: ${query2}` };
37603
37620
  } else {
37604
37621
  yield { type: "activity", activity: "thinking", detail: block.name };
37605
37622
  }
@@ -38140,13 +38157,16 @@ class CodexAdapter {
38140
38157
  if (event.type === "item.started" || event.type === "item.updated") {
38141
38158
  const item = event.item;
38142
38159
  if (item.type === "command_execution") {
38143
- yield { type: "activity", activity: "running", detail: item.command };
38160
+ const cmd = typeof item.command === "string" ? truncate(item.command, 40) : "shell";
38161
+ yield { type: "activity", activity: "running", detail: `Bash: ${cmd}` };
38144
38162
  } else if (item.type === "file_change") {
38145
- yield { type: "activity", activity: "writing", detail: "file changes" };
38163
+ const filePath = extractShortPath(item.filename ?? item.path);
38164
+ yield { type: "activity", activity: "writing", detail: filePath ? `Edit: ${filePath}` : "file changes" };
38146
38165
  } else if (item.type === "reasoning") {
38147
38166
  yield { type: "activity", activity: "thinking", detail: "reasoning" };
38148
38167
  } else if (item.type === "web_search") {
38149
- yield { type: "activity", activity: "searching", detail: item.query };
38168
+ const q2 = typeof item.query === "string" ? truncate(item.query, 30) : "web";
38169
+ yield { type: "activity", activity: "searching", detail: `Search: ${q2}` };
38150
38170
  } else if (item.type === "mcp_tool_call") {
38151
38171
  yield { type: "activity", activity: "running", detail: `${item.server}:${item.tool}` };
38152
38172
  }
@@ -39414,14 +39434,18 @@ class CopilotAdapter {
39414
39434
  }
39415
39435
  if (event.type === "tool.execution_start") {
39416
39436
  const toolName = String(event.data?.toolName ?? "").toLowerCase();
39437
+ const args = event.data?.args;
39438
+ const shortPath = extractShortPath(args?.path ?? args?.file_path ?? args?.pattern);
39417
39439
  if (toolName === "view" || toolName === "read" || toolName === "report_intent") {
39418
- push({ type: "activity", activity: "reading", detail: event.data?.toolName });
39440
+ push({ type: "activity", activity: "reading", detail: shortPath ? `Read: ${shortPath}` : event.data?.toolName });
39419
39441
  } else if (toolName === "create" || toolName === "edit" || toolName === "write") {
39420
- push({ type: "activity", activity: "writing", detail: event.data?.toolName });
39442
+ push({ type: "activity", activity: "writing", detail: shortPath ? `Edit: ${shortPath}` : event.data?.toolName });
39421
39443
  } else if (toolName === "run" || toolName === "bash" || toolName === "shell") {
39422
- push({ type: "activity", activity: "running", detail: event.data?.toolName });
39444
+ const cmd = typeof args?.command === "string" ? truncate(args.command, 40) : "shell";
39445
+ push({ type: "activity", activity: "running", detail: `Bash: ${cmd}` });
39423
39446
  } else if (toolName === "search" || toolName === "grep" || toolName === "find") {
39424
- push({ type: "activity", activity: "searching", detail: event.data?.toolName });
39447
+ const query2 = typeof args?.query === "string" ? truncate(args.query, 30) : event.data?.toolName;
39448
+ push({ type: "activity", activity: "searching", detail: `Search: ${query2}` });
39425
39449
  } else {
39426
39450
  push({ type: "activity", activity: "thinking", detail: event.data?.toolName });
39427
39451
  }
@@ -39761,9 +39785,9 @@ async function initLlmPartyHome(appRoot) {
39761
39785
  await mkdir3(path8.join(LLM_PARTY_HOME, "network"), { recursive: true });
39762
39786
  await mkdir3(path8.join(LLM_PARTY_HOME, "agents"), { recursive: true });
39763
39787
  await mkdir3(path8.join(LLM_PARTY_HOME, "skills"), { recursive: true });
39788
+ await mkdir3(path8.join(LLM_PARTY_HOME, "network", "mind-map"), { recursive: true });
39764
39789
  await ensureFile(path8.join(LLM_PARTY_HOME, "network", "projects.yml"), `projects: []
39765
39790
  `);
39766
- await mkdir3(path8.join(LLM_PARTY_HOME, "network", "mind-map"), { recursive: true });
39767
39791
  await ensureFile(path8.join(LLM_PARTY_HOME, "network", "mind-map", "INDEX.md"), MIND_MAP_INDEX);
39768
39792
  }
39769
39793
  async function configExists() {
@@ -40341,6 +40365,7 @@ import { spawn as spawn4 } from "child_process";
40341
40365
 
40342
40366
  // src/ui/useOrchestrator.ts
40343
40367
  import { execFile } from "child_process";
40368
+ var ACTIVITY_LOG_MAX = 30;
40344
40369
  var systemIdCounter = 0;
40345
40370
  function nextSystemId() {
40346
40371
  systemIdCounter -= 1;
@@ -40349,6 +40374,8 @@ function nextSystemId() {
40349
40374
  function useOrchestrator(orchestrator) {
40350
40375
  const [messages, setMessages] = createSignal([]);
40351
40376
  const [agentStates, setAgentStates] = createSignal(new Map(orchestrator.listAgents().map((a) => [a.name, "idle"])));
40377
+ const [agentDetails, setAgentDetails] = createSignal(new Map(orchestrator.listAgents().map((a) => [a.name, undefined])));
40378
+ const [agentActivityLog, setAgentActivityLog] = createSignal(new Map(orchestrator.listAgents().map((a) => [a.name, []])));
40352
40379
  const [stickyTarget, setStickyTargetSignal] = createSignal(orchestrator.getStickyTarget());
40353
40380
  const setStickyTarget = (targets) => {
40354
40381
  setStickyTargetSignal(targets);
@@ -40383,13 +40410,43 @@ function useOrchestrator(orchestrator) {
40383
40410
  });
40384
40411
  setDispatching(orchestrator.dispatching);
40385
40412
  updateQueueCounts();
40386
- }, (agentName, activity) => {
40413
+ }, (agentName, activity, detail) => {
40387
40414
  const originalName = nameMap.get(agentName.toUpperCase()) ?? agentName;
40415
+ const prevState = agentStates().get(originalName);
40388
40416
  setAgentStates((prev) => {
40389
40417
  const next = new Map(prev);
40390
40418
  next.set(originalName, activity);
40391
40419
  return next;
40392
40420
  });
40421
+ if (activity === "thinking" && (prevState === "idle" || prevState === "error" || prevState === "queued" || prevState === undefined)) {
40422
+ setAgentActivityLog((prev) => {
40423
+ const next = new Map(prev);
40424
+ next.set(originalName, []);
40425
+ return next;
40426
+ });
40427
+ setAgentDetails((prev) => {
40428
+ const next = new Map(prev);
40429
+ next.set(originalName, undefined);
40430
+ return next;
40431
+ });
40432
+ }
40433
+ if (detail !== undefined && detail !== "") {
40434
+ setAgentDetails((prev) => {
40435
+ const next = new Map(prev);
40436
+ next.set(originalName, detail);
40437
+ return next;
40438
+ });
40439
+ }
40440
+ const shouldLog = detail !== undefined && detail !== "" || activity !== "idle" && activity !== "queued" && activity !== "thinking";
40441
+ if (shouldLog) {
40442
+ const ts = new Date().toLocaleTimeString("en-US", { hour12: false, hour: "2-digit", minute: "2-digit", second: "2-digit" });
40443
+ setAgentActivityLog((prev) => {
40444
+ const next = new Map(prev);
40445
+ const entries = [...next.get(originalName) ?? [], { ts, activity, detail }];
40446
+ next.set(originalName, entries.length > ACTIVITY_LOG_MAX ? entries.slice(-ACTIVITY_LOG_MAX) : entries);
40447
+ return next;
40448
+ });
40449
+ }
40393
40450
  setDispatching(orchestrator.dispatching);
40394
40451
  updateQueueCounts();
40395
40452
  }, (text) => {
@@ -40444,7 +40501,7 @@ function useOrchestrator(orchestrator) {
40444
40501
  const refreshStickyTarget = () => {
40445
40502
  setStickyTargetSignal(orchestrator.getStickyTarget());
40446
40503
  };
40447
- return { messages, agentStates, queueCounts, stickyTarget, dispatching, dispatch, addSystemMessage, addDisplayMessage, clearMessages, refreshStickyTarget };
40504
+ return { messages, agentStates, agentDetails, agentActivityLog, queueCounts, stickyTarget, dispatching, dispatch, addSystemMessage, addDisplayMessage, clearMessages, refreshStickyTarget };
40448
40505
  }
40449
40506
  function getChangedFiles() {
40450
40507
  return new Promise((resolve4) => {
@@ -40557,21 +40614,25 @@ var ACTIVITY_SPINNERS = {
40557
40614
  searching: "\u25D0\u25D3\u25D1\u25D2".split("")
40558
40615
  };
40559
40616
  var SUPERSCRIPT_DIGITS = ["\u2070", "\xB9", "\xB2", "\xB3", "\u2074", "\u2075", "\u2076", "\u2077", "\u2078", "\u2079"];
40560
-
40561
- // src/ui/StatusBar.tsx
40562
- var PULSE_COLORS = ["#005F87", "#0087AF", "#00AFD7", "#00D7FF", "#5FF", "#00D7FF", "#0087AF"];
40563
40617
  var [globalTick, setGlobalTick] = createSignal(0);
40564
40618
  setInterval(() => setGlobalTick((t2) => t2 + 1), 80);
40619
+ function toSuperscript(n) {
40620
+ if (n <= 0)
40621
+ return "";
40622
+ return String(n).split("").map((d2) => SUPERSCRIPT_DIGITS[parseInt(d2, 10)] ?? d2).join("");
40623
+ }
40624
+ var PULSE_COLORS = ["#005F87", "#0087AF", "#00AFD7", "#00D7FF", "#5FF", "#00D7FF", "#0087AF"];
40625
+
40626
+ // src/ui/StatusBar.tsx
40565
40627
  function StatusBar(props) {
40566
40628
  const targetNames = () => props.stickyTarget ?? props.agents.map((a) => a.name);
40567
40629
  const isTargeted = (name) => targetNames().includes(name);
40568
40630
  return (() => {
40569
- var _el$ = createElement("box"), _el$2 = createElement("box"), _el$3 = createElement("box"), _el$4 = createElement("text"), _el$6 = createElement("box");
40631
+ var _el$ = createElement("box"), _el$2 = createElement("box"), _el$3 = createElement("box"), _el$4 = createElement("text");
40570
40632
  insertNode(_el$, _el$2);
40571
40633
  setProp(_el$, "paddingX", 1);
40572
40634
  setProp(_el$, "flexShrink", 0);
40573
40635
  insertNode(_el$2, _el$3);
40574
- insertNode(_el$2, _el$6);
40575
40636
  setProp(_el$2, "flexDirection", "row");
40576
40637
  setProp(_el$2, "justifyContent", "space-between");
40577
40638
  setProp(_el$2, "width", "100%");
@@ -40608,33 +40669,37 @@ function StatusBar(props) {
40608
40669
  })()
40609
40670
  }), _el$4);
40610
40671
  insertNode(_el$4, createTextNode(`| /info`));
40611
- setProp(_el$6, "flexDirection", "row");
40612
- insert(_el$6, createComponent2(For, {
40613
- get each() {
40614
- return props.agents;
40672
+ insert(_el$2, createComponent2(Show, {
40673
+ get when() {
40674
+ return !props.sidebarVisible;
40615
40675
  },
40616
- children: (a, i) => [createComponent2(AgentChip, {
40617
- get name() {
40618
- return a.name;
40619
- },
40620
- getState: () => props.agentStates.get(a.name) ?? "idle",
40621
- getQueued: () => props.queueCounts?.get(a.name) ?? 0
40622
- }), memo2(() => memo2(() => i() < props.agents.length - 1)() ? (() => {
40623
- var _el$12 = createElement("text");
40624
- insertNode(_el$12, createTextNode(` \u2502 `));
40625
- effect((_$p) => setProp(_el$12, "fg", COLORS.textDim, _$p));
40626
- return _el$12;
40627
- })() : null)]
40628
- }));
40676
+ get children() {
40677
+ var _el$6 = createElement("box");
40678
+ setProp(_el$6, "flexDirection", "row");
40679
+ insert(_el$6, createComponent2(For, {
40680
+ get each() {
40681
+ return props.agents;
40682
+ },
40683
+ children: (a, i) => [createComponent2(AgentChip, {
40684
+ get name() {
40685
+ return a.name;
40686
+ },
40687
+ getState: () => props.agentStates.get(a.name) ?? "idle",
40688
+ getQueued: () => props.queueCounts?.get(a.name) ?? 0
40689
+ }), memo2(() => memo2(() => i() < props.agents.length - 1)() ? (() => {
40690
+ var _el$12 = createElement("text");
40691
+ insertNode(_el$12, createTextNode(` \u2502 `));
40692
+ effect((_$p) => setProp(_el$12, "fg", COLORS.textDim, _$p));
40693
+ return _el$12;
40694
+ })() : null)]
40695
+ }));
40696
+ return _el$6;
40697
+ }
40698
+ }), null);
40629
40699
  effect((_$p) => setProp(_el$4, "fg", COLORS.textDim, _$p));
40630
40700
  return _el$;
40631
40701
  })();
40632
40702
  }
40633
- function toSuperscript(n) {
40634
- if (n <= 0)
40635
- return "";
40636
- return String(n).split("").map((d2) => SUPERSCRIPT_DIGITS[parseInt(d2, 10)] ?? d2).join("");
40637
- }
40638
40703
  function AgentChip(props) {
40639
40704
  const isActive = () => {
40640
40705
  const s = props.getState();
@@ -40664,6 +40729,180 @@ function AgentChip(props) {
40664
40729
  })();
40665
40730
  }
40666
40731
 
40732
+ // src/ui/AgentSidebar.tsx
40733
+ function truncateRight(s, max) {
40734
+ if (max <= 0)
40735
+ return "";
40736
+ if (s.length <= max)
40737
+ return s;
40738
+ if (max <= 1)
40739
+ return "\u2026";
40740
+ return s.slice(0, max - 1) + "\u2026";
40741
+ }
40742
+ function AgentSidebar(props) {
40743
+ const [expanded, setExpanded] = createSignal(new Map);
40744
+ const getState = (name) => props.agentStates.get(name) ?? "idle";
40745
+ const isActive = (s) => s !== "idle" && s !== "error" && s !== "queued";
40746
+ const getExpanded = (name) => {
40747
+ const v2 = expanded().get(name);
40748
+ if (v2 !== undefined)
40749
+ return v2;
40750
+ return isActive(getState(name));
40751
+ };
40752
+ const toggle = (name) => {
40753
+ setExpanded((prev) => {
40754
+ const next = new Map(prev);
40755
+ next.set(name, !getExpanded(name));
40756
+ return next;
40757
+ });
40758
+ };
40759
+ const stateColor = (s) => {
40760
+ if (s === "error")
40761
+ return COLORS.error;
40762
+ if (isActive(s))
40763
+ return COLORS.success;
40764
+ return COLORS.textMuted;
40765
+ };
40766
+ const spinner = (s) => {
40767
+ const t2 = globalTick();
40768
+ if (!isActive(s))
40769
+ return " ";
40770
+ const frames = ACTIVITY_SPINNERS[s] ?? SPINNER_FRAMES;
40771
+ return frames[t2 % frames.length] ?? " ";
40772
+ };
40773
+ const detailText = (name) => props.agentDetails?.get(name) ?? "";
40774
+ const logEntries = (name) => props.agentActivityLog?.get(name) ?? [];
40775
+ return (() => {
40776
+ var _el$ = createElement("box"), _el$2 = createElement("box"), _el$3 = createElement("text"), _el$4 = createElement("strong"), _el$6 = createElement("text"), _el$8 = createElement("text"), _el$1 = createElement("scrollbox");
40777
+ insertNode(_el$, _el$2);
40778
+ insertNode(_el$, _el$8);
40779
+ insertNode(_el$, _el$1);
40780
+ setProp(_el$, "height", "100%");
40781
+ setProp(_el$, "flexShrink", 0);
40782
+ setProp(_el$, "flexGrow", 0);
40783
+ setProp(_el$, "flexDirection", "column");
40784
+ setProp(_el$, "border", true);
40785
+ setProp(_el$, "borderStyle", "rounded");
40786
+ setProp(_el$, "paddingX", 1);
40787
+ insertNode(_el$2, _el$3);
40788
+ insertNode(_el$2, _el$6);
40789
+ setProp(_el$2, "flexDirection", "row");
40790
+ setProp(_el$2, "justifyContent", "space-between");
40791
+ setProp(_el$2, "width", "100%");
40792
+ insertNode(_el$3, _el$4);
40793
+ insertNode(_el$4, createTextNode(`Agents`));
40794
+ insertNode(_el$6, createTextNode(`Ctrl+B`));
40795
+ insert(_el$8, () => "\u2500".repeat(Math.max(0, props.width - 4)));
40796
+ insert(_el$, createComponent2(Show, {
40797
+ get when() {
40798
+ return props.agents.length === 0;
40799
+ },
40800
+ get children() {
40801
+ var _el$9 = createElement("text");
40802
+ insertNode(_el$9, createTextNode(`No agents configured.`));
40803
+ setProp(_el$9, "selectable", false);
40804
+ effect((_$p) => setProp(_el$9, "fg", COLORS.textFaint, _$p));
40805
+ return _el$9;
40806
+ }
40807
+ }), _el$1);
40808
+ setProp(_el$1, "width", "100%");
40809
+ setProp(_el$1, "flexGrow", 1);
40810
+ setProp(_el$1, "flexBasis", 0);
40811
+ setProp(_el$1, "flexShrink", 1);
40812
+ insert(_el$1, createComponent2(For, {
40813
+ get each() {
40814
+ return props.agents;
40815
+ },
40816
+ children: (a, i) => {
40817
+ const s = () => getState(a.name);
40818
+ const isOpen = () => getExpanded(a.name);
40819
+ const q2 = () => props.queueCounts?.get(a.name) ?? 0;
40820
+ const qSup = () => toSuperscript(q2());
40821
+ const title = () => {
40822
+ const arrow = isOpen() ? "\u25BC" : "\u25B6";
40823
+ const state = s();
40824
+ return `${arrow} ${qSup()}${a.name} (${state}) ${spinner(state)}`;
40825
+ };
40826
+ return (() => {
40827
+ var _el$10 = createElement("box"), _el$11 = createElement("box"), _el$12 = createElement("text");
40828
+ insertNode(_el$10, _el$11);
40829
+ setProp(_el$10, "width", "100%");
40830
+ setProp(_el$10, "flexDirection", "column");
40831
+ insertNode(_el$11, _el$12);
40832
+ setProp(_el$11, "width", "100%");
40833
+ setProp(_el$11, "onMouseUp", () => toggle(a.name));
40834
+ setProp(_el$12, "selectable", false);
40835
+ insert(_el$12, title);
40836
+ insert(_el$10, createComponent2(Show, {
40837
+ get when() {
40838
+ return isOpen();
40839
+ },
40840
+ get children() {
40841
+ var _el$13 = createElement("box");
40842
+ setProp(_el$13, "flexDirection", "column");
40843
+ setProp(_el$13, "paddingLeft", 2);
40844
+ insert(_el$13, createComponent2(For, {
40845
+ get each() {
40846
+ return logEntries(a.name).slice(-8);
40847
+ },
40848
+ children: (e) => (() => {
40849
+ var _el$16 = createElement("text");
40850
+ setProp(_el$16, "selectable", false);
40851
+ insert(_el$16, (() => {
40852
+ var _c$ = memo2(() => !!e.detail);
40853
+ return () => _c$() ? truncateRight(e.detail, Math.max(0, props.width - 6)) : e.activity;
40854
+ })());
40855
+ effect((_$p) => setProp(_el$16, "fg", COLORS.textDim, _$p));
40856
+ return _el$16;
40857
+ })()
40858
+ }), null);
40859
+ insert(_el$13, createComponent2(Show, {
40860
+ get when() {
40861
+ return logEntries(a.name).length === 0;
40862
+ },
40863
+ get children() {
40864
+ var _el$14 = createElement("text");
40865
+ insertNode(_el$14, createTextNode(`No activity details yet.`));
40866
+ setProp(_el$14, "selectable", false);
40867
+ effect((_$p) => setProp(_el$14, "fg", COLORS.textFaint, _$p));
40868
+ return _el$14;
40869
+ }
40870
+ }), null);
40871
+ return _el$13;
40872
+ }
40873
+ }), null);
40874
+ effect((_p$) => {
40875
+ var _v$6 = i() === 0 ? 0 : 1, _v$7 = stateColor(s());
40876
+ _v$6 !== _p$.e && (_p$.e = setProp(_el$10, "marginTop", _v$6, _p$.e));
40877
+ _v$7 !== _p$.t && (_p$.t = setProp(_el$12, "fg", _v$7, _p$.t));
40878
+ return _p$;
40879
+ }, {
40880
+ e: undefined,
40881
+ t: undefined
40882
+ });
40883
+ return _el$10;
40884
+ })();
40885
+ }
40886
+ }));
40887
+ effect((_p$) => {
40888
+ var _v$ = props.width, _v$2 = COLORS.borderStrong, _v$3 = COLORS.primary, _v$4 = COLORS.textFaint, _v$5 = COLORS.borderStrong;
40889
+ _v$ !== _p$.e && (_p$.e = setProp(_el$, "width", _v$, _p$.e));
40890
+ _v$2 !== _p$.t && (_p$.t = setProp(_el$, "borderColor", _v$2, _p$.t));
40891
+ _v$3 !== _p$.a && (_p$.a = setProp(_el$3, "fg", _v$3, _p$.a));
40892
+ _v$4 !== _p$.o && (_p$.o = setProp(_el$6, "fg", _v$4, _p$.o));
40893
+ _v$5 !== _p$.i && (_p$.i = setProp(_el$8, "fg", _v$5, _p$.i));
40894
+ return _p$;
40895
+ }, {
40896
+ e: undefined,
40897
+ t: undefined,
40898
+ a: undefined,
40899
+ o: undefined,
40900
+ i: undefined
40901
+ });
40902
+ return _el$;
40903
+ })();
40904
+ }
40905
+
40667
40906
  // src/ui/InputLine.tsx
40668
40907
  var FUNCTION_KEYS = new Set(["f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", "f11", "f12"]);
40669
40908
  function InputLine(props) {
@@ -40821,7 +41060,7 @@ function InputLine(props) {
40821
41060
  };
40822
41061
  const borderColor = () => props.disabled ? COLORS.borderDim : COLORS.borderActive;
40823
41062
  const label = () => `${props.humanName} > `;
40824
- const separator = () => "\u2500".repeat(Math.max(0, dims().width - 2));
41063
+ const separator = () => "\u2500".repeat(Math.max(0, props.availableWidth != null ? props.availableWidth : dims().width - 2));
40825
41064
  return (() => {
40826
41065
  var _el$ = createElement("box"), _el$2 = createElement("text");
40827
41066
  insertNode(_el$, _el$2);
@@ -42576,8 +42815,8 @@ function InfoPanel(props) {
42576
42815
  const totalW = 50;
42577
42816
  const pad = (str, width) => str + " ".repeat(Math.max(0, width - str.length));
42578
42817
  const cmdW = 16;
42579
- const commands = [["/agents", "Agent panel (Ctrl+P)"], ["/config", "Config wizard"], ["/info", "This panel"], ["/session", "Session details"], ["/save <path>", "Export as JSON"], ["/changes", "Git modified files"], ["/clear", "Clear chat (Ctrl+L)"], ["/exit", "Quit"]];
42580
- const shortcuts = [["Ctrl+P", "Toggle agents panel"], ["Ctrl+L", "Clear chat"], ["Ctrl+C", "Copy or exit"], ["Ctrl+A", "Jump to start of line"], ["Ctrl+E", "Jump to end of line"], ["Ctrl+U", "Clear entire line"], ["Ctrl+W", "Delete word backward"], ["Shift+Enter", "New line"], ["Up/Down", "Input history"], ["PageUp/Down", "Scroll chat"]];
42818
+ const commands = [["/agents", "Agent panel (Ctrl+P)"], ["/config", "Config wizard"], ["/info", "This panel"], ["/save <path>", "Export as JSON"], ["/changes", "Git modified files"], ["/clear", "Clear chat (Ctrl+L)"], ["/exit", "Quit"]];
42819
+ const shortcuts = [["Ctrl+P", "Toggle agents panel"], ["Ctrl+B", "Toggle sidebar"], ["Ctrl+L", "Clear chat"], ["Ctrl+A", "Jump to start of line"], ["Ctrl+E", "Jump to end of line"], ["Ctrl+U", "Clear entire line"], ["Ctrl+W", "Delete word backward"], ["Shift/Alt+Enter", "New line"], ["Up/Down", "Input history"], ["PageUp/Down", "Scroll chat"]];
42581
42820
  return (() => {
42582
42821
  var _el$ = createElement("box"), _el$2 = createElement("box"), _el$3 = createElement("box"), _el$4 = createElement("text"), _el$5 = createElement("strong"), _el$7 = createElement("text"), _el$8 = createElement("span"), _el$0 = createElement("span"), _el$1 = createElement("text"), _el$10 = createElement("strong"), _el$12 = createElement("text"), _el$14 = createElement("text"), _el$15 = createElement("strong"), _el$17 = createElement("text"), _el$19 = createElement("text"), _el$21 = createElement("text"), _el$22 = createElement("span"), _el$24 = createElement("span");
42583
42822
  insertNode(_el$, _el$2);
@@ -42888,6 +43127,412 @@ function CancelPanel(props) {
42888
43127
  })();
42889
43128
  }
42890
43129
 
43130
+ // src/ui/splash-frames-octo.ts
43131
+ var SPLASH_FRAMES = [
43132
+ [
43133
+ " ",
43134
+ " ",
43135
+ " \u2591\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2591 ",
43136
+ " \u2591\u2588\u2588\u2588\u2588\u2588 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43137
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2588\u2588\u2588\u2588\u2588\u2592 ",
43138
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 ",
43139
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2593\u2593\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2593 ",
43140
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43141
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43142
+ " \u2592\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2592 ",
43143
+ " \u2591\u2592\u2593\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2593\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2591 ",
43144
+ " \u2591\u2588\u2588\u2588\u2588 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 ",
43145
+ " \u2592\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2591\u2591\u2592\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43146
+ " \u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43147
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2593\u2592\u2592\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43148
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43149
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2593\u2593\u2592\u2591 ",
43150
+ " \u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591 ",
43151
+ " \u2591\u2593\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2588\u2588\u2588\u2592\u2591 ",
43152
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43153
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2593\u2588\u2593\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2593\u2588\u2588\u2592\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43154
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43155
+ " \u2592\u2588\u2588\u2588\u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43156
+ " \u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43157
+ " \u2591\u2588\u2588\u2588\u2588\u2588 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43158
+ " \u2593\u2588\u2588\u2588\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2592 ",
43159
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2592\u2592\u2591 ",
43160
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2593\u2588\u2588\u2588\u2588 ",
43161
+ " ",
43162
+ " "
43163
+ ],
43164
+ [
43165
+ " ",
43166
+ " \u2591\u2588\u2588\u2588\u2592 ",
43167
+ " \u2593\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2591 ",
43168
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43169
+ " \u2593\u2588\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2592 ",
43170
+ " \u2593\u2588\u2588\u2588\u2588\u2588 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 ",
43171
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2593\u2593\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 ",
43172
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43173
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43174
+ " \u2591\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2592 ",
43175
+ " \u2591\u2593\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2593\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2591 ",
43176
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 ",
43177
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2592\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43178
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2591\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43179
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43180
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43181
+ " \u2591\u2591\u2592\u2593\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2593\u2592\u2591 ",
43182
+ " \u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591 ",
43183
+ " \u2591\u2592\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2588\u2588\u2588\u2592\u2591 ",
43184
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43185
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2593\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2588\u2588\u2592\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43186
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2592\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43187
+ " \u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43188
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43189
+ " \u2593\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2593 \u2588\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43190
+ " \u2592\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 ",
43191
+ " \u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593 \u2588\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2592\u2592\u2591 ",
43192
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588 ",
43193
+ " \u2592\u2588\u2588\u2592 \u2591 ",
43194
+ " "
43195
+ ],
43196
+ [
43197
+ " ",
43198
+ " \u2591\u2588\u2588\u2588\u2593 ",
43199
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2593\u2591 ",
43200
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2593 ",
43201
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43202
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 ",
43203
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2593\u2593\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43204
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43205
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43206
+ " \u2591\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2593 ",
43207
+ " \u2591\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2593\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2592\u2591 \u2593\u2588\u2588\u2588\u2591 ",
43208
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2592 ",
43209
+ " \u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2592\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43210
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43211
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43212
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43213
+ " \u2591\u2591\u2592\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2592\u2591\u2591 ",
43214
+ " \u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591 ",
43215
+ " \u2591\u2593\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2588\u2588\u2588\u2593\u2591 ",
43216
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43217
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2592\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2588\u2588\u2588\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43218
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43219
+ " \u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43220
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43221
+ " \u2593\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588 \u2592\u2588\u2588\u2588\u2588\u2588\u2593 ",
43222
+ " \u2592\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2591 ",
43223
+ " \u2591\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2592\u2591 ",
43224
+ " \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2588 ",
43225
+ " \u2592\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591 ",
43226
+ " "
43227
+ ],
43228
+ [
43229
+ " ",
43230
+ " \u2592\u2593\u2592 ",
43231
+ " \u2591\u2588\u2588\u2588\u2588\u2588 \u2591\u2588\u2588\u2593\u2591 ",
43232
+ " \u2593\u2588\u2588\u2588\u2588\u2592 \u2588\u2588\u2588\u2588\u2588 ",
43233
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 ",
43234
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 ",
43235
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2593\u2593\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 ",
43236
+ " \u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43237
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43238
+ " \u2592\u2588\u2588\u2592 \u2593\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2593\u2591 ",
43239
+ " \u2591\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2593\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2593\u2591 \u2593\u2588\u2588\u2588\u2591 ",
43240
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2592 ",
43241
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2591\u2592\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43242
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43243
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43244
+ " \u2592\u2593\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 ",
43245
+ " \u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2592\u2591\u2591 ",
43246
+ " \u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591 ",
43247
+ " \u2591\u2592\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2588\u2588\u2588\u2593\u2591 ",
43248
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43249
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2592\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2593\u2588\u2588\u2588\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43250
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43251
+ " \u2593\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588 \u2593\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43252
+ " \u2591\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43253
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2593 ",
43254
+ " \u2592\u2588\u2588\u2592\u2591 \u2593\u2588\u2588\u2588\u2588\u2588 \u2588\u2588\u2588\u2588\u2588\u2588 \u2591\u2588\u2588\u2588\u2588\u2593 ",
43255
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591 ",
43256
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 ",
43257
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2592\u2591 ",
43258
+ " "
43259
+ ],
43260
+ [
43261
+ " ",
43262
+ " ",
43263
+ " \u2591\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2593\u2591 ",
43264
+ " \u2593\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2593 ",
43265
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43266
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 ",
43267
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43268
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43269
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43270
+ " \u2591\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2591\u2592\u2588\u2588\u2588\u2588\u2593 ",
43271
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2593\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2593\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2592\u2591 \u2592\u2588\u2588\u2588\u2591 ",
43272
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 ",
43273
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2592\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 ",
43274
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2593\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43275
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43276
+ " \u2591\u2592\u2592\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43277
+ " \u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2592\u2591 ",
43278
+ " \u2591\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591 ",
43279
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2588\u2588\u2588\u2588\u2591 ",
43280
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43281
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2593\u2593\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2593\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43282
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43283
+ " \u2592\u2588\u2588\u2588\u2588\u2588 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43284
+ " \u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43285
+ " \u2593\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2588\u2588\u2588\u2588\u2588\u2588 \u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43286
+ " \u2591\u2592\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2592 ",
43287
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591 ",
43288
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 ",
43289
+ " \u2592\u2588\u2588\u2593\u2591 \u2591\u2592\u2591 ",
43290
+ " "
43291
+ ],
43292
+ [
43293
+ " ",
43294
+ " ",
43295
+ " \u2591\u2591 \u2591\u2588\u2588\u2588\u2592 ",
43296
+ " \u2591\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43297
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2593 ",
43298
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2592\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2591\u2591\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2593 ",
43299
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43300
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2592 ",
43301
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2591 ",
43302
+ " \u2591\u2593\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2593\u2593\u2593\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2593\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2593\u2593\u2591\u2592\u2588\u2588\u2588\u2588\u2592 ",
43303
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2591 \u2591\u2588\u2592 \u2591 \u2591\u2588\u2588\u2588\u2592\u2592\u2588\u2592 \u2591\u2593\u2588\u2593\u2591 ",
43304
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2592\u2591\u2588\u2588\u2588\u2591 \u2591\u2593\u2592 \u2592 \u2592\u2593 \u2591\u2588\u2588\u2588\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588 ",
43305
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2591\u2592\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2593\u2588\u2592 \u2591 \u2593\u2588\u2588\u2593\u2593\u2588\u2591 \u2588\u2588\u2588\u2593\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 ",
43306
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2591 \u2593 \u2591\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43307
+ " \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2592 \u2591\u2591 \u2591\u2588\u2588\u2588\u2591 \u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43308
+ " \u2591\u2592\u2593\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43309
+ " \u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591 ",
43310
+ " \u2591\u2592\u2588\u2592\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591 ",
43311
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2592 ",
43312
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43313
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2592\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43314
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 ",
43315
+ " \u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2593 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43316
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588 \u2593\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43317
+ " \u2591\u2593\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43318
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2593\u2588\u2588\u2588\u2593 ",
43319
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591 ",
43320
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 ",
43321
+ " \u2591\u2591\u2591 \u2591\u2591\u2592\u2591 ",
43322
+ " "
43323
+ ],
43324
+ [
43325
+ " ",
43326
+ " ",
43327
+ " \u2591\u2588\u2588\u2588\u2593 ",
43328
+ " \u2593\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2592 ",
43329
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588 ",
43330
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43331
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2591 ",
43332
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2593\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43333
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2593\u2593\u2593\u2593\u2593\u2592\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593 ",
43334
+ " \u2592\u2592\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2591 \u2591\u2592\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43335
+ " \u2591\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2591 \u2591\u2588\u2592 \u2591\u2588\u2588\u2588\u2591\u2593\u2588\u2592 \u2591\u2593\u2588\u2593\u2591 ",
43336
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2592\u2588\u2588\u2588\u2591 \u2592\u2593\u2591 \u2592 \u2592\u2593 \u2591\u2588\u2588\u2588\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588 ",
43337
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2593\u2588\u2591 \u2591 \u2591\u2588\u2588\u2588\u2593\u2593\u2588 \u2588\u2588\u2588\u2592\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 ",
43338
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2592\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588 \u2593 \u2592\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43339
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2592 \u2591\u2591 \u2591\u2588\u2588\u2588\u2591 \u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43340
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43341
+ " \u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591 ",
43342
+ " \u2591\u2592\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591 ",
43343
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2588\u2588\u2588\u2588\u2592 ",
43344
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43345
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2593\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43346
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43347
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43348
+ " \u2592\u2588\u2588\u2588\u2588 \u2593\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43349
+ " \u2591\u2592\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588 \u2592\u2588\u2588\u2588\u2588\u2588\u2593 ",
43350
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2592 ",
43351
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591 ",
43352
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 ",
43353
+ " \u2591 \u2591\u2591 ",
43354
+ " "
43355
+ ],
43356
+ [
43357
+ " ",
43358
+ " ",
43359
+ " \u2592\u2588\u2588\u2588\u2592 ",
43360
+ " \u2593\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2588\u2588\u2588\u2588\u2588 ",
43361
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 ",
43362
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2591 ",
43363
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588 ",
43364
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2593\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43365
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43366
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2591 \u2591\u2592\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43367
+ " \u2592\u2593\u2593\u2591 \u2592\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2591 \u2591\u2588\u2592 \u2591\u2588\u2588\u2588\u2591\u2593\u2588\u2592 \u2592\u2588\u2588\u2588\u2591 ",
43368
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2592\u2593\u2588\u2588\u2591 \u2592\u2593 \u2592 \u2591\u2593\u2591 \u2591\u2588\u2588\u2588\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 ",
43369
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2593\u2593\u2588 \u2591 \u2591\u2588\u2588\u2588\u2593\u2593\u2592 \u2588\u2588\u2588\u2592\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 ",
43370
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2591\u2591\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2592 \u2593 \u2591\u2593\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2592\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43371
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2592 \u2591\u2591 \u2591\u2588\u2588\u2588\u2591 \u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43372
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43373
+ " \u2591\u2592\u2593\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2592\u2591\u2591\u2591 ",
43374
+ " \u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2591\u2591 ",
43375
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2592\u2588\u2588\u2588\u2588\u2591 ",
43376
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2592\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43377
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2592\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43378
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2588\u2588\u2588\u2588\u2588\u2591 \u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43379
+ " \u2593\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43380
+ " \u2592\u2588\u2588\u2588\u2588 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43381
+ " \u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2593 ",
43382
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588 ",
43383
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591 ",
43384
+ " \u2591\u2588\u2588\u2592\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43385
+ " \u2591\u2591 ",
43386
+ " "
43387
+ ],
43388
+ [
43389
+ " ",
43390
+ " ",
43391
+ " \u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2592 ",
43392
+ " \u2591\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588 ",
43393
+ " \u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2588\u2588\u2588\u2588\u2588\u2592 ",
43394
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593 ",
43395
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2593 ",
43396
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2593\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2593 ",
43397
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43398
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2593\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2591 \u2591\u2592\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43399
+ " \u2592\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2591 \u2591\u2588\u2592 \u2591\u2588\u2588\u2588\u2591\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2591 ",
43400
+ " \u2591\u2588\u2588\u2588\u2593 \u2591\u2591\u2592\u2593\u2588\u2588\u2591 \u2592\u2592 \u2592 \u2591\u2593\u2591 \u2591\u2588\u2588\u2588\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2592 ",
43401
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2593\u2593\u2593 \u2591 \u2591\u2588\u2588\u2588\u2593\u2588\u2591 \u2588\u2588\u2588\u2592\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43402
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2588\u2588\u2588\u2593 \u2593\u2588\u2588\u2588\u2588\u2592 \u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2592\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43403
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2588\u2588\u2588\u2588\u2592 \u2591\u2591 \u2591\u2588\u2588\u2588\u2591 \u2591 \u2592\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43404
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 ",
43405
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2592\u2592\u2591\u2591 ",
43406
+ " \u2591\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2591\u2591 ",
43407
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2588\u2593\u2591 ",
43408
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43409
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43410
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591 \u2591\u2588\u2588\u2588\u2588\u2588 \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43411
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43412
+ " \u2592\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43413
+ " \u2592\u2593\u2592\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43414
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2593 ",
43415
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591 ",
43416
+ " \u2591\u2592\u2592\u2591 \u2592\u2588\u2588\u2588\u2588\u2592 ",
43417
+ " \u2591 ",
43418
+ " "
43419
+ ],
43420
+ [
43421
+ " ",
43422
+ " ",
43423
+ " \u2591\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2593 ",
43424
+ " \u2593\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2591 ",
43425
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 ",
43426
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 ",
43427
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43428
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43429
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2593 ",
43430
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2593\u2593\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2593\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2591\u2591\u2592\u2593\u2593\u2592\u2591\u2593\u2588\u2588\u2588\u2588\u2591 ",
43431
+ " \u2592\u2588\u2588\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2591 ",
43432
+ " \u2591\u2593\u2588\u2588\u2592 \u2591\u2591\u2591\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 ",
43433
+ " \u2592\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43434
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2588\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2593\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43435
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43436
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43437
+ " \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2592\u2592\u2591 ",
43438
+ " \u2591\u2591\u2592\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2591\u2591 ",
43439
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2588\u2593\u2591 ",
43440
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43441
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2592\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43442
+ " \u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43443
+ " \u2593\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2592 \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43444
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43445
+ " \u2593\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43446
+ " \u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2591 ",
43447
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588 \u2591\u2591\u2591\u2591 ",
43448
+ " \u2591\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2593 ",
43449
+ " ",
43450
+ " "
43451
+ ],
43452
+ [
43453
+ " ",
43454
+ " ",
43455
+ " \u2591\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2591 ",
43456
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2593\u2591 ",
43457
+ " \u2593\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 ",
43458
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 ",
43459
+ " \u2588\u2588\u2588\u2588\u2588\u2588 \u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 ",
43460
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592 ",
43461
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43462
+ " \u2593\u2588\u2588\u2588\u2588\u2591\u2592\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2588\u2588\u2592 ",
43463
+ " \u2591\u2593\u2588\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2593\u2592\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2591 ",
43464
+ " \u2591\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2593\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 ",
43465
+ " \u2592\u2588\u2588\u2588\u2588\u2593 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43466
+ " \u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2591\u2591\u2588\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2592\u2591\u2591\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2592\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43467
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2591\u2591\u2588\u2588\u2588\u2588\u2592\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2593\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 ",
43468
+ " \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2592\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43469
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2593\u2592\u2591 ",
43470
+ " \u2591\u2591\u2591\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2592\u2591\u2591 ",
43471
+ " \u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2593\u2588\u2588\u2588\u2592\u2591 ",
43472
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2592\u2591\u2591\u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43473
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2591\u2593\u2588\u2588\u2588\u2593\u2591\u2591\u2591\u2592\u2588\u2588\u2588\u2588\u2592\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43474
+ " \u2593\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2593 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2593 ",
43475
+ " \u2592\u2588\u2588\u2588\u2588\u2588 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2593\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 ",
43476
+ " \u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2592 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2593\u2591 ",
43477
+ " \u2591\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2593 \u2591\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2593\u2588\u2588\u2588\u2588\u2588\u2591 ",
43478
+ " \u2592\u2588\u2588\u2588\u2591 \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2588\u2592 \u2592\u2588\u2588\u2588\u2588\u2592 ",
43479
+ " \u2592\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591 \u2591\u2588\u2588\u2588\u2588\u2588\u2588 \u2591\u2592\u2592\u2591 ",
43480
+ " \u2591\u2588\u2588\u2588\u2588\u2593\u2591 \u2591\u2593\u2588\u2588\u2588\u2588 ",
43481
+ " ",
43482
+ " "
43483
+ ]
43484
+ ];
43485
+
43486
+ // src/ui/SplashScreen.tsx
43487
+ var FRAME_INTERVAL = 120;
43488
+ function SplashScreen() {
43489
+ const dims = useTerminalDimensions();
43490
+ const [frameIndex, setFrameIndex] = createSignal(0);
43491
+ const timer = setInterval(() => {
43492
+ setFrameIndex((i) => (i + 1) % SPLASH_FRAMES.length);
43493
+ }, FRAME_INTERVAL);
43494
+ onCleanup(() => clearInterval(timer));
43495
+ const frame = () => SPLASH_FRAMES[frameIndex()] ?? [];
43496
+ const artHeight = () => frame().length + 3;
43497
+ const topPad = () => Math.max(0, Math.floor((dims().height - artHeight() - 4) / 2));
43498
+ return (() => {
43499
+ var _el$ = createElement("box"), _el$2 = createElement("text"), _el$4 = createElement("text"), _el$6 = createElement("text");
43500
+ insertNode(_el$, _el$2);
43501
+ insertNode(_el$, _el$4);
43502
+ insertNode(_el$, _el$6);
43503
+ setProp(_el$, "flexDirection", "column");
43504
+ setProp(_el$, "width", "100%");
43505
+ setProp(_el$, "alignItems", "center");
43506
+ insert(_el$, createComponent2(For, {
43507
+ get each() {
43508
+ return frame();
43509
+ },
43510
+ children: (line) => (() => {
43511
+ var _el$8 = createElement("text");
43512
+ setProp(_el$8, "selectable", false);
43513
+ insert(_el$8, line);
43514
+ effect((_$p) => setProp(_el$8, "fg", COLORS.primary, _$p));
43515
+ return _el$8;
43516
+ })()
43517
+ }), _el$2);
43518
+ insertNode(_el$2, createTextNode(` `));
43519
+ insertNode(_el$4, createTextNode(`llm-party`));
43520
+ insertNode(_el$6, createTextNode(`multi-agent terminal`));
43521
+ effect((_p$) => {
43522
+ var _v$ = topPad(), _v$2 = COLORS.primary, _v$3 = COLORS.textDim;
43523
+ _v$ !== _p$.e && (_p$.e = setProp(_el$, "paddingTop", _v$, _p$.e));
43524
+ _v$2 !== _p$.t && (_p$.t = setProp(_el$4, "fg", _v$2, _p$.t));
43525
+ _v$3 !== _p$.a && (_p$.a = setProp(_el$6, "fg", _v$3, _p$.a));
43526
+ return _p$;
43527
+ }, {
43528
+ e: undefined,
43529
+ t: undefined,
43530
+ a: undefined
43531
+ });
43532
+ return _el$;
43533
+ })();
43534
+ }
43535
+
42891
43536
  // src/ui/App.tsx
42892
43537
  function copyToClipboard(text) {
42893
43538
  const proc = spawn4("pbcopy", [], {
@@ -42912,6 +43557,8 @@ function App(props) {
42912
43557
  const {
42913
43558
  messages,
42914
43559
  agentStates,
43560
+ agentDetails,
43561
+ agentActivityLog,
42915
43562
  queueCounts,
42916
43563
  stickyTarget,
42917
43564
  dispatching,
@@ -42929,6 +43576,23 @@ function App(props) {
42929
43576
  const [showAgents, setShowAgents] = createSignal(false);
42930
43577
  const [showInfo, setShowInfo] = createSignal(false);
42931
43578
  const [showCancel, setShowCancel] = createSignal(false);
43579
+ const dims = useTerminalDimensions();
43580
+ const [sidebarEnabled, setSidebarEnabled] = createSignal(true);
43581
+ const cwd = () => {
43582
+ const full = process.cwd();
43583
+ const home = process.env.HOME ?? process.env.USERPROFILE ?? "";
43584
+ return home && full.startsWith(home) ? "~" + full.slice(home.length) : full;
43585
+ };
43586
+ const MIN_WIDTH_FOR_SIDEBAR = 100;
43587
+ const sidebarWidth = () => {
43588
+ const w2 = dims().width;
43589
+ return Math.max(24, Math.min(40, Math.floor(w2 * 0.32)));
43590
+ };
43591
+ const sidebarVisible = () => sidebarEnabled() && dims().width >= MIN_WIDTH_FOR_SIDEBAR;
43592
+ const leftPaneWidth = () => {
43593
+ const w2 = dims().width;
43594
+ return sidebarVisible() ? Math.max(0, w2 - (sidebarWidth() + 1)) : w2;
43595
+ };
42932
43596
  const resumeSession = async (sessionId) => {
42933
43597
  try {
42934
43598
  const restored = await props.orchestrator.loadTranscript(sessionId);
@@ -42977,6 +43641,10 @@ function App(props) {
42977
43641
  setShowAgents((v2) => !v2);
42978
43642
  return;
42979
43643
  }
43644
+ if (key.ctrl && key.name === "b") {
43645
+ setSidebarEnabled((v2) => !v2);
43646
+ return;
43647
+ }
42980
43648
  if (showAgents() || showCancel() || showInfo())
42981
43649
  return;
42982
43650
  if (key.name === "escape") {
@@ -43021,11 +43689,6 @@ function App(props) {
43021
43689
  setShowAgents(true);
43022
43690
  return;
43023
43691
  }
43024
- if (line === "/session") {
43025
- addSystemMessage(`Session: ${props.orchestrator.getSessionId()}
43026
- Transcript: ${props.orchestrator.getTranscriptPath()}`);
43027
- return;
43028
- }
43029
43692
  if (line.startsWith("/save ")) {
43030
43693
  const filePath = line.replace("/save ", "").trim();
43031
43694
  if (!filePath) {
@@ -43089,7 +43752,6 @@ ${lines.join(`
43089
43752
  }
43090
43753
  await dispatch(line);
43091
43754
  };
43092
- const tagsLine = agents.map((a) => `@${a.tag}`).join(", ");
43093
43755
  return createComponent2(Show, {
43094
43756
  get when() {
43095
43757
  return screen() !== "config";
@@ -43108,28 +43770,48 @@ ${lines.join(`
43108
43770
  });
43109
43771
  },
43110
43772
  get children() {
43111
- var _el$ = createElement("box"), _el$2 = createElement("scrollbox"), _el$3 = createElement("text"), _el$4 = createTextNode(`llm-party | `), _el$5 = createTextNode(` | /agents /config /session /save /changes /clear /exit`);
43773
+ var _el$ = createElement("box"), _el$2 = createElement("box"), _el$3 = createElement("box"), _el$4 = createElement("scrollbox"), _el$6 = createElement("box"), _el$7 = createElement("text");
43112
43774
  insertNode(_el$, _el$2);
43775
+ insertNode(_el$, _el$6);
43113
43776
  setProp(_el$, "flexDirection", "column");
43114
43777
  setProp(_el$, "width", "100%");
43115
43778
  setProp(_el$, "height", "100%");
43116
43779
  setProp(_el$, "onMouseUp", () => copySelection(renderer));
43117
43780
  insertNode(_el$2, _el$3);
43118
- use((el) => scrollRef = el, _el$2);
43119
- setProp(_el$2, "stickyScroll", true);
43120
- setProp(_el$2, "stickyStart", "bottom");
43781
+ setProp(_el$2, "flexDirection", "row");
43782
+ setProp(_el$2, "width", "100%");
43121
43783
  setProp(_el$2, "flexGrow", 1);
43122
43784
  setProp(_el$2, "flexBasis", 0);
43123
- setProp(_el$2, "flexShrink", 1);
43785
+ setProp(_el$2, "alignItems", "stretch");
43124
43786
  insertNode(_el$3, _el$4);
43125
- insertNode(_el$3, _el$5);
43126
- setProp(_el$3, "selectable", true);
43127
- insert(_el$3, tagsLine, _el$5);
43128
- insert(_el$2, () => messages().map((msg) => createComponent2(MessageBubble, {
43129
- message: msg,
43130
- humanName
43131
- })), null);
43132
- insert(_el$, createComponent2(StatusBar, {
43787
+ setProp(_el$3, "flexDirection", "column");
43788
+ setProp(_el$3, "flexGrow", 1);
43789
+ setProp(_el$3, "flexBasis", 0);
43790
+ setProp(_el$3, "flexShrink", 1);
43791
+ use((el) => scrollRef = el, _el$4);
43792
+ setProp(_el$4, "stickyScroll", true);
43793
+ setProp(_el$4, "stickyStart", "bottom");
43794
+ setProp(_el$4, "flexGrow", 1);
43795
+ setProp(_el$4, "flexBasis", 0);
43796
+ setProp(_el$4, "flexShrink", 1);
43797
+ insert(_el$4, createComponent2(Show, {
43798
+ get when() {
43799
+ return messages().length === 0;
43800
+ },
43801
+ get children() {
43802
+ return createComponent2(SplashScreen, {});
43803
+ }
43804
+ }), null);
43805
+ insert(_el$4, createComponent2(For, {
43806
+ get each() {
43807
+ return messages();
43808
+ },
43809
+ children: (msg) => createComponent2(MessageBubble, {
43810
+ message: msg,
43811
+ humanName
43812
+ })
43813
+ }), null);
43814
+ insert(_el$3, createComponent2(StatusBar, {
43133
43815
  agents,
43134
43816
  get agentStates() {
43135
43817
  return agentStates();
@@ -43139,18 +43821,59 @@ ${lines.join(`
43139
43821
  },
43140
43822
  get queueCounts() {
43141
43823
  return queueCounts();
43824
+ },
43825
+ get sidebarVisible() {
43826
+ return sidebarVisible();
43142
43827
  }
43143
43828
  }), null);
43144
- insert(_el$, createComponent2(InputLine, {
43829
+ insert(_el$3, createComponent2(InputLine, {
43145
43830
  humanName,
43146
43831
  onSubmit: handleSubmit,
43147
43832
  get disabled() {
43148
43833
  return showAgents() || showInfo() || showCancel();
43149
43834
  },
43150
43835
  get disabledMessage() {
43151
- return showAgents() || showCancel() ? "" : undefined;
43836
+ return memo2(() => !!(showAgents() || showCancel()))() ? "" : showInfo() ? "info panel opened" : undefined;
43837
+ },
43838
+ get availableWidth() {
43839
+ return memo2(() => !!sidebarVisible())() ? Math.max(0, leftPaneWidth() - 2) : undefined;
43840
+ }
43841
+ }), null);
43842
+ insert(_el$2, createComponent2(Show, {
43843
+ get when() {
43844
+ return sidebarVisible();
43845
+ },
43846
+ get children() {
43847
+ var _el$5 = createElement("box");
43848
+ setProp(_el$5, "paddingLeft", 1);
43849
+ setProp(_el$5, "paddingY", 0);
43850
+ setProp(_el$5, "flexDirection", "column");
43851
+ setProp(_el$5, "height", "100%");
43852
+ insert(_el$5, createComponent2(AgentSidebar, {
43853
+ agents,
43854
+ get agentStates() {
43855
+ return agentStates();
43856
+ },
43857
+ get agentDetails() {
43858
+ return agentDetails();
43859
+ },
43860
+ get agentActivityLog() {
43861
+ return agentActivityLog();
43862
+ },
43863
+ get queueCounts() {
43864
+ return queueCounts();
43865
+ },
43866
+ get width() {
43867
+ return sidebarWidth();
43868
+ }
43869
+ }));
43870
+ return _el$5;
43152
43871
  }
43153
43872
  }), null);
43873
+ insertNode(_el$6, _el$7);
43874
+ setProp(_el$6, "flexShrink", 0);
43875
+ setProp(_el$6, "paddingX", 1);
43876
+ insert(_el$7, cwd);
43154
43877
  insert(_el$, (() => {
43155
43878
  var _c$ = memo2(() => !!showAgents());
43156
43879
  return () => _c$() && createComponent2(AgentsPanel, {
@@ -43189,7 +43912,7 @@ ${lines.join(`
43189
43912
  onClose: () => setShowCancel(false)
43190
43913
  });
43191
43914
  })(), null);
43192
- effect((_$p) => setProp(_el$3, "fg", COLORS.primary, _$p));
43915
+ effect((_$p) => setProp(_el$7, "fg", COLORS.textDim, _$p));
43193
43916
  return _el$;
43194
43917
  }
43195
43918
  });