@lexwdex-org/opencode-dcp 3.5.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.en.md CHANGED
@@ -4,39 +4,41 @@
4
4
 
5
5
  **English** | [中文](./README.md)
6
6
 
7
- DCP supplies a semantic-pruning policy and proactive triggers to OpenCode's native compaction lifecycle. It does not own message markers, message IDs, compression blocks, anchors, or placeholders.
7
+ DCP manages OpenCode session context with **Dynamic Tiered Compression (DTC)**: folding happens inside every model request, before message serialization, and **never touches the session state machine** — no `session.summarize` calls, no compaction turns, no session writes. Compression is fully transparent to continuous autonomous work: an agent can run for days while the engine absorbs context pressure per request.
8
8
 
9
9
  ## How it works
10
10
 
11
- OpenCode owns one rolling checkpoint. After compaction, the model sees only:
11
+ The host fires `experimental.chat.messages.transform` before every model request. DCP folds the **request-scoped message copy** inside that hook (the host rebuilds the array from the database on every loop iteration, so all mutations are inherently request-scoped):
12
12
 
13
13
  ```text
14
- latest pruned checkpoint + uncompacted recent tail
14
+ ┌──────────────┬──────────────┬──────────────┬────────────────┐
15
+ │ D distant │ M middle │ C current │ T protected │
16
+ │ heavy fold │ medium fold │ light fold │ last 4 turns │
17
+ │ digest lines │ first lines │ truncate big │ never touched │
18
+ └──────────────┴──────────────┴──────────────┴────────────────┘
19
+ ◄── escalation deepens from the far end under budget pressure ──►
15
20
  ```
16
21
 
17
- During `experimental.session.compacting`, DCP asks the summarizer to organize the checkpoint into a fixed three-tier structure:
22
+ - **T tail zone**: the last `dtc.tailTurns` (default 4) conversation turns are **never folded**.
23
+ - **C current-task zone**: turns since the latest topic boundary (lexical drift detection); only oversized tool outputs are head+tail truncated, task details survive.
24
+ - **M middle zone**: long texts keep their first line; tool outputs get the host's native fold marker (rendered by the host as its own `[Old tool result content cleared]`); reasoning is emptied.
25
+ - **D distant zone**: whole turns collapse into one mechanical digest line (intent / actions / files touched / outcome / error count) and tool inputs are cleared — hard facts live on in the digest.
18
26
 
19
- - `## 系统上下文` (System context) — system-level rules such as AGENTS.md, carried forward verbatim from the previous checkpoint;
20
- - `## 历史概要` (History digest) — early and middle history heavily compressed: one-line outcomes only, no process;
21
- - Recent tasks — lightly compressed: completed tasks summarized in one line each; in-progress tasks keep full detail (goal, finished steps, file paths, key decisions, blockers, next actions). Details related to the current task are preserved first so work can continue from the checkpoint alone.
27
+ **Dynamic budget**: below `lowWatermarkRatio` of the context window (default 50%) **nothing is folded at all** short sessions pay zero cost. Above it, folding escalates D→M→C from the far end until the estimate fits `targetRatio` (default 70%). The window size is learned per session from the `chat.params` hook; until it is known the engine fails open (no folding).
22
28
 
23
- Unrelated chat, other-project context, tool retries, and repeated edits are folded away as before.
29
+ **Three structural laws** (the constructive exclusion of the old versions' "lost markers" failure):
24
30
 
25
- ## Trigger compaction
31
+ 1. Messages and parts are never added, removed, or reordered; IDs never change — tool-call/tool-result pairing cannot break;
32
+ 2. Only string payloads are rewritten (text/output/reasoning), and tool-output folding uses the host's native `time.compacted` marker instead of a custom placeholder protocol;
33
+ 3. Every mutation lives in the request-scoped copy only — session history in the database stays byte-identical.
26
34
 
27
- - **OpenCode automatic compaction** uses the policy automatically.
28
- - **The `dcp_prune` model tool** — DCP registers an LLM-invokable tool whose description carries heuristic guidance: call it immediately when the topic clearly changes, when a task wraps up, or when the context has grown noticeably.
29
- - **Heuristic auto-prune** (`autoPrune`) — observes incoming user messages and triggers native compaction at turn boundaries (`session.idle`) on:
30
- - topic drift: lexical similarity between the newest message and recent history drops sharply (CJK bigrams + Jaccard);
31
- - message volume since the last prune crossing a threshold;
32
- - resuming after a long idle gap.
33
- Auto-triggers respect a cooldown; native `/compact` or host compaction also resets the counters.
34
- - OpenCode's native `/compact` command uses the same path.
35
- - `/dcp summarize` calls native `session.summarize()` manually.
35
+ ## Trigger surfaces
36
36
 
37
- All entries share one coordinator: concurrent requests for the same session share a single native call. A failed call is fail-open and keeps the original context; retries are cooled down for 30 seconds by default.
38
-
39
- Pruned prefixes stop being sent to the model, but the original session history is not physically deleted from OpenCode's database. A later compaction replaces the previous checkpoint with one merged checkpoint instead of nesting summaries or building a compression-block graph.
37
+ - **Automatic**: there is nothing to trigger every request decides its own fold depth from the budget. No signals, no boundaries, no queue.
38
+ - **The `dcp_prune` model tool**: returns instantly. Marks a topic boundary (the current-task zone restarts at the next turn) and raises this session's minimum fold level to M — old-task content folds from the next request onward. Never interrupts the running turn.
39
+ - **`/dcp fold`**: manual variant; raises the minimum fold level to the deepest tier.
40
+ - **`/dcp status`**: shows turns, token estimate, context window, and the manual fold level for the session.
41
+ - **The host's own compaction** (`/compact`, context-overflow fallback): unaffected by DTC and still fully functional. DCP continues to supply the high-quality semantic checkpoint prompt (rolling merge of the previous checkpoint, tiered compression depth, fixed four-section structure) and raises the host's tail protection defaults to 4 turns / 32000 tokens (`compaction.tail_turns` / `preserve_recent_tokens`; explicit user config always wins). When the compaction input passes through the transform hook, DTC skips it via a one-shot flag so the summarizer sees full-fidelity content.
40
42
 
41
43
  ## Install
42
44
 
@@ -46,7 +48,11 @@ opencode plugin @lexwdex-org/opencode-dcp@latest --global
46
48
 
47
49
  ## Configuration
48
50
 
49
- DCP loads global, custom-config-directory, then project configuration:
51
+ DCP reads these layers in order; later layers override earlier ones:
52
+
53
+ 1. `~/.config/opencode/dcp.jsonc` or `dcp.json`
54
+ 2. `$OPENCODE_CONFIG_DIR/dcp.jsonc` or `dcp.json`
55
+ 3. Project `.opencode/dcp.jsonc` or `dcp.json`
50
56
 
51
57
  ```jsonc
52
58
  {
@@ -54,40 +60,59 @@ DCP loads global, custom-config-directory, then project configuration:
54
60
  "enabled": true,
55
61
  "autoUpdate": true,
56
62
  "debug": false,
57
- "language": "zh",
58
- "commands": { "enabled": true },
59
- "experimental": { "customPrompts": false },
60
- "summarize": { "failureCooldownMs": 30000 },
61
- "tool": { "enabled": true },
62
- "autoPrune": {
63
+ "language": "en",
64
+ "commands": {
65
+ "enabled": true,
66
+ },
67
+ "experimental": {
68
+ "customPrompts": false,
69
+ },
70
+ "dtc": {
63
71
  "enabled": true,
64
- "minMessages": 8,
65
- "volumeThreshold": 30,
72
+ "tailTurns": 4,
73
+ "lowWatermarkRatio": 0.5,
74
+ "targetRatio": 0.7,
66
75
  "driftThreshold": 0.18,
67
- "idleGapMs": 1800000,
68
- "cooldownMs": 300000,
76
+ "toolOutputKeepChars": 4000,
77
+ },
78
+ "tool": {
79
+ "enabled": true,
69
80
  },
70
81
  }
71
82
  ```
72
83
 
73
- | Key | Meaning |
74
- | --------------------------- | --------------------------------------------------------------------------------------------- |
75
- | `language` | Language of the bundled compaction prompt: `zh` (default) / `en`; custom overrides always win |
76
- | `tool.enabled` | Register the model-invokable `dcp_prune` tool with heuristic usage guidance |
77
- | `autoPrune.enabled` | Enable plugin-side heuristic auto-compaction |
78
- | `autoPrune.minMessages` | Minimum user messages before any auto-prune signal is considered |
79
- | `autoPrune.volumeThreshold` | User messages since the last prune that trigger compaction by volume |
80
- | `autoPrune.driftThreshold` | Jaccard similarity below which consecutive messages count as a topic change (0–1) |
81
- | `autoPrune.idleGapMs` | Gap between user messages that counts as resuming after a long break |
82
- | `autoPrune.cooldownMs` | Minimum interval between two automatic prunes of the same session |
84
+ | Key | Description |
85
+ | ------------------------- | ---------------------------------------------------------------------------------------------------------- |
86
+ | `language` | Bundled compaction prompt language: `zh` (default) / `en`; custom overrides always win |
87
+ | `dtc.enabled` | Master switch for dynamic tiered request-time compression |
88
+ | `dtc.tailTurns` | Turns at the end that are never folded (default 4) |
89
+ | `dtc.lowWatermarkRatio` | No folding below window × ratio (default 0.5) |
90
+ | `dtc.targetRatio` | Escalate folding until the estimate fits window × ratio (default 0.7) |
91
+ | `dtc.driftThreshold` | Jaccard similarity below which consecutive user messages start a new current-task zone (0–1, default 0.18) |
92
+ | `dtc.toolOutputKeepChars` | Head+tail characters kept for oversized current-zone tool outputs (default 4000) |
93
+ | `tool.enabled` | Register the model-invokable `dcp_prune` tool (instant boundary mark, never interrupts) |
94
+
95
+ With `experimental.customPrompts` enabled, copy the generated
96
+ `~/.config/opencode/dcp-prompts/defaults/compaction.md` to any override location:
97
+
98
+ - Project: `.opencode/dcp-prompts/overrides/compaction.md`
99
+ - Custom config dir: `$OPENCODE_CONFIG_DIR/dcp-prompts/overrides/compaction.md`
100
+ - Global: `~/.config/opencode/dcp-prompts/overrides/compaction.md`
83
101
 
84
- When `experimental.customPrompts` is enabled, copy the generated
85
- `~/.config/opencode/dcp-prompts/defaults/compaction.md` to a project, custom-config, or global `dcp-prompts/overrides/compaction.md` path.
102
+ ## Migrating from 3.x
86
103
 
87
- ## Migrating from the legacy 3.x pipeline
104
+ The 3.x `summarize` and `autoPrune` config blocks are gone (DCP no longer calls native summarize and has no heuristic triggers); such keys produce a migration warning and are ignored. `autoPrune.driftThreshold` migrates automatically to `dtc.driftThreshold`. Older `compress`, `manualMode`, `strategies`, `turnProtection` keys remain removed.
88
105
 
89
- Legacy `compress`, `manualMode`, `strategies`, `turnProtection`, notification, protected-file, and command-protection settings are removed. DCP reports them as deprecated and ignores them.
106
+ Behavior change: compression no longer produces a visible "checkpoint turn" and needs no at-rest boundaries or continuation machinery — context folds automatically inside each request, invisible to the session and its state machine. Semantic checkpoints are still produced by the host's own compaction (manual `/compact` or the overflow fallback), for which DCP continues to provide the prompt and tail-protection defaults.
90
107
 
91
- The old model tools, range/message compression, `/dcp compress`, decompression/recompression/sweep commands, message markers, and plugin compression persistence are gone. Existing legacy DCP state files are neither read nor modified; remove them manually only after deciding that you will not roll back.
108
+ ## Development
109
+
110
+ ```bash
111
+ npm test
112
+ npm run typecheck
113
+ npm run build
114
+ npm run format:check
115
+ npm run check:package
116
+ ```
92
117
 
93
118
  License: AGPL-3.0-or-later.
package/README.md CHANGED
@@ -4,37 +4,41 @@
4
4
 
5
5
  [**English**](./README.en.md) | **中文**
6
6
 
7
- DCP OpenCode 原生 compaction 提供语义剪枝策略与主动触发机制。它不维护消息标记、消息 ID、压缩块、锚点或占位符。
7
+ DCP 以**动态分级请求期压缩(DTC)**管理 OpenCode 会话上下文:折叠发生在每次模型请求的消息序列化之前,**永不触碰会话状态机**——不调用 `session.summarize`、不产生压缩回合、不写会话存储。压缩对连续自动工作完全透明:agent 可以不间断运行数日,上下文压力由引擎在请求期自动消化。
8
8
 
9
9
  ## 工作原理
10
10
 
11
- OpenCode 原生 compaction 负责生成和保存一个滚动检查点,并在后续模型请求中只发送:
11
+ 宿主在每次模型请求前触发 `experimental.chat.messages.transform`,DCP 在钩子内对**请求期消息副本**做分级折叠(宿主每轮循环从数据库重建该数组,因此所有修改天然只作用于本次请求):
12
12
 
13
13
  ```text
14
- 最新剪枝检查点 + 尚未压缩的近期尾部
14
+ ┌────────────┬────────────┬────────────┬──────────────┐
15
+ │ D 远距离区 │ M 中距离区 │ C 当前任务 │ T 尾部保护区 │
16
+ │ 重度折叠 │ 中度折叠 │ 轻度折叠 │ 最后 4 轮 │
17
+ │ 结构化摘要 │ 首行+标记 │ 截长输出 │ 一个字节不动 │
18
+ └────────────┴────────────┴────────────┴──────────────┘
19
+ ◄── 预算不足时从最远端逐级加深 ──►
15
20
  ```
16
21
 
17
- DCP `experimental.session.compacting` 阶段提供专用提示词,把检查点组织为固定三段结构:
22
+ - **T 尾部保护区**:最后 `dtc.tailTurns`(默认 4)轮对话**完全不折叠**。
23
+ - **C 当前任务区**:自最近话题边界(词面漂移检测)以来的轮次,只把超长 tool 输出做首尾截断,任务细节不丢。
24
+ - **M 中距离区**:长文本保留首行;tool 输出打宿主原生折叠标记(渲染为宿主自己的 `[Old tool result content cleared]`);推理内容清空。
25
+ - **D 远距离区**:整轮塌缩为一行机械摘要(意图 / 动作 / 涉及文件 / 结果 / 错误数),tool 参数一并清空——硬事实保留在摘要里。
18
26
 
19
- - `## 系统上下文` AGENTS.md、项目规则等系统级内容,从上一份检查点原样保留合并;
20
- - `## 历史概要` — 早期历史和中部历史高度压缩:每项主题只留一句结论,不含过程;
21
- - 最近任务 — 轻度压缩:已完成任务一句话概括;进行中任务保留完整详情(目标、已完成步骤、文件路径、关键决策、阻塞、下一步)。与当前任务相关的近期细节优先保留,保证凭检查点即可直接继续工作。
27
+ **动态预算**:估算低于上下文窗口的 `lowWatermarkRatio`(默认 50%)时**完全不折叠**,短会话零开销;超出则按 D→M→C 从远到近逐级加深,直到估算落回 `targetRatio`(默认 70%)以内。窗口大小由 `chat.params` 钩子按会话自动学习,未知时 fail-open 不折叠。
22
28
 
23
- ## 触发压缩
29
+ **三条结构铁律**(老版本"丢失标记号"问题的构造性排除):
24
30
 
25
- - **OpenCode 自动 compaction**:达到宿主阈值时自动运行。
26
- - **模型调用 `dcp_prune` 工具**:插件注册的 LLM 工具,描述内置启发式规则——仅在话题明显变更或用户明确要求时调用;压缩排队到下一个确认的静息边界执行。
27
- - **插件启发式自动触发**(`autoPrune`):监听用户消息流,在**确认的静息边界**(idle 观察后 2 秒静默窗口 + 宿主实时状态探针双重确认,宿主自动化接力会在窗口内取消边界)触发原生压缩。默认只启用话题变更信号:
28
- - 话题变更(默认启用):新消息与近期消息的词面相似度骤降(CJK 二元组 + Jaccard);
29
- - 消息量达到阈值(默认关闭,`autoPrune.signals.volume` 开启);
30
- - 长时间中断后恢复(默认关闭,`autoPrune.signals.idleGap` 开启)。
31
- 自动触发带冷却期;OpenCode 原生 `/compact` 或宿主压缩也会重置计数。
32
- - **OpenCode 原生 `/compact`**:手动触发同一条 compaction 路径。
33
- - **`/dcp summarize`**:手动调用原生 `session.summarize()`。
31
+ 1. 永不增删、重排消息或 part;永不改 ID——tool-call tool-result 的配对不可能断裂;
32
+ 2. 只重写字符串载荷(text/output/reasoning),折叠 tool 输出用宿主原生 `time.compacted` 标记,不自造占位符协议;
33
+ 3. 一切修改仅存在于请求期副本,数据库中的会话历史逐字节不变。
34
34
 
35
- 所有入口都经过同一协调器:同一会话的并发请求合并为一次原生调用;失败不会提交半成品检查点,原始上下文保持可用,默认 30 秒内不重试失败的请求。
35
+ ## 触发面
36
36
 
37
- 压缩后的旧前缀不会再发送给模型,但 OpenCode 数据库中的原始会话历史不会被物理删除。下一次压缩会把旧检查点和新增尾部合并为一个新检查点,不会形成嵌套摘要。
37
+ - **自动**:无触发概念——每次请求按预算自动决定折叠深度,无需任何信号或边界。
38
+ - **模型调用 `dcp_prune` 工具**:瞬时返回。标记话题边界(当前任务区从下一轮重算)并把本会话折叠下限提到 M 级——旧任务内容从下一次请求起被折叠。绝不打断当前工作。
39
+ - **`/dcp fold`**:手动版本,直接把折叠下限提到最深档。
40
+ - **`/dcp status`**:查看当前会话的轮数、token 估算、窗口与降级档位。
41
+ - **宿主自身的 compaction**(`/compact`、上下文溢出兜底):不受 DTC 影响照常工作;DCP 仍为其提供高质量语义检查点提示词(滚动合并上一份检查点、三层压缩深度、四段固定结构),并把宿主尾部保护默认提升到 4 轮 / 32000 tokens(`compaction.tail_turns` / `preserve_recent_tokens`,用户显式配置优先)。压缩输入经过 transform 钩子时 DTC 自动跳过,保证摘要器看到全保真内容。
38
42
 
39
43
  ## 安装
40
44
 
@@ -63,41 +67,30 @@ DCP 依次读取以下配置,后面的层覆盖前面的层:
63
67
  "experimental": {
64
68
  "customPrompts": false,
65
69
  },
66
- "summarize": {
67
- "failureCooldownMs": 30000,
68
- },
69
- "tool": {
70
+ "dtc": {
70
71
  "enabled": true,
72
+ "tailTurns": 4,
73
+ "lowWatermarkRatio": 0.5,
74
+ "targetRatio": 0.7,
75
+ "driftThreshold": 0.18,
76
+ "toolOutputKeepChars": 4000,
71
77
  },
72
- "autoPrune": {
78
+ "tool": {
73
79
  "enabled": true,
74
- "signals": {
75
- "topicDrift": true,
76
- "volume": false,
77
- "idleGap": false,
78
- },
79
- "minMessages": 8,
80
- "volumeThreshold": 30,
81
- "driftThreshold": 0.18,
82
- "idleGapMs": 1800000,
83
- "cooldownMs": 300000,
84
80
  },
85
81
  }
86
82
  ```
87
83
 
88
- | 键 | 说明 |
89
- | ------------------------------ | --------------------------------------------------------------------------- |
90
- | `language` | 内置压缩提示词语言:`zh`(默认)/ `en`;自定义覆盖文件优先于该配置 |
91
- | `tool.enabled` | 注册模型可调用的 `dcp_prune` 工具(描述仅授权话题变更或用户明确要求时调用) |
92
- | `autoPrune.enabled` | 启用插件侧启发式自动压缩 |
93
- | `autoPrune.signals.topicDrift` | 话题变更信号开关(默认 `true`,唯一默认启用的信号) |
94
- | `autoPrune.signals.volume` | 消息量信号开关(默认 `false`;旧版本默认开启,升级后需显式重新开启) |
95
- | `autoPrune.signals.idleGap` | 长时间中断信号开关(默认 `false`;旧版本默认开启,升级后需显式重新开启) |
96
- | `autoPrune.minMessages` | 会话用户消息数达到该值前不做任何自动判定 |
97
- | `autoPrune.volumeThreshold` | 距上次压缩的用户消息量阈值 |
98
- | `autoPrune.driftThreshold` | Jaccard 相似度低于该值视为话题变更(0–1) |
99
- | `autoPrune.idleGapMs` | 用户消息间隔超过该值视为长时间中断后恢复 |
100
- | `autoPrune.cooldownMs` | 同一会话两次自动压缩的最小间隔 |
84
+ | 键 | 说明 |
85
+ | ------------------------- | ------------------------------------------------------------------------ |
86
+ | `language` | 内置压缩提示词语言:`zh`(默认)/ `en`;自定义覆盖文件优先于该配置 |
87
+ | `dtc.enabled` | 动态分级请求期压缩总开关 |
88
+ | `dtc.tailTurns` | 尾部保护轮数:最后 N 轮完全不折叠(默认 4) |
89
+ | `dtc.lowWatermarkRatio` | 估算低于窗口 × 该比例时完全不折叠(默认 0.5) |
90
+ | `dtc.targetRatio` | 逐级加深折叠直到估算 ≤ 窗口 × 该比例(默认 0.7) |
91
+ | `dtc.driftThreshold` | Jaccard 相似度低于该值视为话题变更,开启新的当前任务区(0–1,默认 0.18) |
92
+ | `dtc.toolOutputKeepChars` | 当前任务区超长 tool 输出的首尾截断保留字符数(默认 4000) |
93
+ | `tool.enabled` | 注册模型可调用的 `dcp_prune` 工具(瞬时标记话题边界,绝不打断工作) |
101
94
 
102
95
  启用 `experimental.customPrompts` 后,可将生成的
103
96
  `~/.config/opencode/dcp-prompts/defaults/compaction.md` 复制到以下任一覆盖位置:
@@ -106,13 +99,11 @@ DCP 依次读取以下配置,后面的层覆盖前面的层:
106
99
  - 自定义配置目录:`$OPENCODE_CONFIG_DIR/dcp-prompts/overrides/compaction.md`
107
100
  - 全局:`~/.config/opencode/dcp-prompts/overrides/compaction.md`
108
101
 
109
- ## 从 3.x 旧压缩管线迁移
102
+ ## 从 3.x 迁移
110
103
 
111
- 旧配置 `compress`、`manualMode`、`strategies`、`turnProtection`、
112
- `pruneNotification`、`protectedFilePatterns` 及旧命令保护字段均已删除。DCP 会显示迁移警告并忽略这些字段,不会静默继续旧行为。
104
+ 3.x `summarize`、`autoPrune` 配置块已删除(DCP 不再调用原生 summarize,也不再有启发式触发器);这些键会显示迁移警告并被忽略。`autoPrune.driftThreshold` 自动迁移为 `dtc.driftThreshold`。更早的 `compress`、`manualMode`、`strategies`、`turnProtection` 等键维持删除状态。
113
105
 
114
- 以下功能已删除:`compress` / `compress_range` 模型工具、`/dcp compress`、
115
- `/dcp decompress`、`/dcp recompress`、`/dcp sweep`、消息标记和插件压缩状态持久化。磁盘上已有的旧 DCP 会话状态文件不会被读取、改写或删除,可在确认不再回退旧版本后自行清理。
106
+ 行为变化:压缩不再产生可见的"检查点回合",也不再需要任何静息边界或续跑机制——上下文折叠在每次请求内自动完成,会话与状态机零感知。语义检查点仍由宿主自身的 compaction(手动 `/compact` 或溢出兜底)产生,DCP 继续为其提供提示词与尾部保护默认值。
116
107
 
117
108
  ## 开发验证
118
109
 
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAiBjD,QAAA,MAAM,MAAM,EAAE,MAmEK,CAAA;AAEnB,eAAe,MAAM,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAgBjD,QAAA,MAAM,MAAM,EAAE,MA0DK,CAAA;AAEnB,eAAe,MAAM,CAAA"}