@roarpeng/graphflow 0.6.6 → 0.6.15
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/CHANGELOG.md +106 -0
- package/README.md +166 -303
- package/dist/config/defaults.d.ts +6 -0
- package/dist/config/defaults.d.ts.map +1 -1
- package/dist/config/defaults.js +20 -7
- package/dist/config/defaults.js.map +1 -1
- package/dist/config/loader.d.ts +8 -0
- package/dist/config/loader.d.ts.map +1 -1
- package/dist/config/loader.js +42 -9
- package/dist/config/loader.js.map +1 -1
- package/dist/config/paths.d.ts.map +1 -1
- package/dist/config/paths.js +6 -5
- package/dist/config/paths.js.map +1 -1
- package/dist/config/resolve.d.ts +3 -0
- package/dist/config/resolve.d.ts.map +1 -1
- package/dist/config/resolve.js +58 -24
- package/dist/config/resolve.js.map +1 -1
- package/dist/config/secrets.d.ts +6 -1
- package/dist/config/secrets.d.ts.map +1 -1
- package/dist/config/secrets.js +9 -1
- package/dist/config/secrets.js.map +1 -1
- package/dist/core/dag-engine.d.ts.map +1 -1
- package/dist/core/dag-engine.js +9 -3
- package/dist/core/dag-engine.js.map +1 -1
- package/dist/core/errors.d.ts +28 -1
- package/dist/core/errors.d.ts.map +1 -1
- package/dist/core/errors.js +55 -2
- package/dist/core/errors.js.map +1 -1
- package/dist/core/orchestrator.d.ts.map +1 -1
- package/dist/core/orchestrator.js +16 -0
- package/dist/core/orchestrator.js.map +1 -1
- package/dist/graph/file-indexer.d.ts +2 -0
- package/dist/graph/file-indexer.d.ts.map +1 -1
- package/dist/graph/file-indexer.js +65 -36
- package/dist/graph/file-indexer.js.map +1 -1
- package/dist/graph/graph-utils.d.ts +4 -0
- package/dist/graph/graph-utils.d.ts.map +1 -0
- package/dist/graph/graph-utils.js +29 -0
- package/dist/graph/graph-utils.js.map +1 -0
- package/dist/graph/graphify-client.d.ts +2 -1
- package/dist/graph/graphify-client.d.ts.map +1 -1
- package/dist/graph/graphify-client.js +6 -17
- package/dist/graph/graphify-client.js.map +1 -1
- package/dist/graph/graphify-file-client.js +3 -3
- package/dist/graph/graphify-file-client.js.map +1 -1
- package/dist/graph/snapshot-view.d.ts +26 -0
- package/dist/graph/snapshot-view.d.ts.map +1 -0
- package/dist/graph/snapshot-view.js +228 -0
- package/dist/graph/snapshot-view.js.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/integrations/agent-mcp-installer.d.ts +3 -0
- package/dist/integrations/agent-mcp-installer.d.ts.map +1 -1
- package/dist/integrations/agent-mcp-installer.js +7 -5
- package/dist/integrations/agent-mcp-installer.js.map +1 -1
- package/dist/learning/episodic-memory.d.ts.map +1 -1
- package/dist/learning/episodic-memory.js +2 -8
- package/dist/learning/episodic-memory.js.map +1 -1
- package/dist/learning/reflector.d.ts.map +1 -1
- package/dist/learning/reflector.js +2 -8
- package/dist/learning/reflector.js.map +1 -1
- package/dist/learning/skill-evolution.d.ts +16 -0
- package/dist/learning/skill-evolution.d.ts.map +1 -0
- package/dist/learning/skill-evolution.js +154 -0
- package/dist/learning/skill-evolution.js.map +1 -0
- package/dist/learning/skill-flywheel.d.ts +4 -47
- package/dist/learning/skill-flywheel.d.ts.map +1 -1
- package/dist/learning/skill-flywheel.js +44 -337
- package/dist/learning/skill-flywheel.js.map +1 -1
- package/dist/learning/skill-store.d.ts +20 -0
- package/dist/learning/skill-store.d.ts.map +1 -0
- package/dist/learning/skill-store.js +170 -0
- package/dist/learning/skill-store.js.map +1 -0
- package/dist/learning/skill-types.d.ts +43 -0
- package/dist/learning/skill-types.d.ts.map +1 -0
- package/dist/learning/skill-types.js +6 -0
- package/dist/learning/skill-types.js.map +1 -0
- package/dist/learning/vector-store.d.ts +2 -0
- package/dist/learning/vector-store.d.ts.map +1 -1
- package/dist/learning/vector-store.js +4 -0
- package/dist/learning/vector-store.js.map +1 -1
- package/dist/routing/provider-executor.d.ts.map +1 -1
- package/dist/routing/provider-executor.js +5 -4
- package/dist/routing/provider-executor.js.map +1 -1
- package/dist/surfaces/cli/init.d.ts.map +1 -1
- package/dist/surfaces/cli/init.js +25 -39
- package/dist/surfaces/cli/init.js.map +1 -1
- package/dist/surfaces/cli/runtime/env.d.ts +8 -0
- package/dist/surfaces/cli/runtime/env.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/env.js +134 -0
- package/dist/surfaces/cli/runtime/env.js.map +1 -0
- package/dist/surfaces/cli/runtime/facade.d.ts +45 -0
- package/dist/surfaces/cli/runtime/facade.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/facade.js +34 -0
- package/dist/surfaces/cli/runtime/facade.js.map +1 -0
- package/dist/surfaces/cli/runtime/graph.d.ts +25 -0
- package/dist/surfaces/cli/runtime/graph.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/graph.js +416 -0
- package/dist/surfaces/cli/runtime/graph.js.map +1 -0
- package/dist/surfaces/cli/runtime/helpers.d.ts +30 -0
- package/dist/surfaces/cli/runtime/helpers.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/helpers.js +159 -0
- package/dist/surfaces/cli/runtime/helpers.js.map +1 -0
- package/dist/surfaces/cli/runtime/panel.d.ts +5 -0
- package/dist/surfaces/cli/runtime/panel.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/panel.js +91 -0
- package/dist/surfaces/cli/runtime/panel.js.map +1 -0
- package/dist/surfaces/cli/runtime/routing.d.ts +11 -0
- package/dist/surfaces/cli/runtime/routing.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/routing.js +233 -0
- package/dist/surfaces/cli/runtime/routing.js.map +1 -0
- package/dist/surfaces/cli/runtime/settings.d.ts +6 -0
- package/dist/surfaces/cli/runtime/settings.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/settings.js +334 -0
- package/dist/surfaces/cli/runtime/settings.js.map +1 -0
- package/dist/surfaces/cli/runtime/types.d.ts +218 -0
- package/dist/surfaces/cli/runtime/types.d.ts.map +1 -0
- package/dist/surfaces/cli/runtime/types.js +3 -0
- package/dist/surfaces/cli/runtime/types.js.map +1 -0
- package/dist/surfaces/cli/runtime.d.ts +8 -257
- package/dist/surfaces/cli/runtime.d.ts.map +1 -1
- package/dist/surfaces/cli/runtime.js +52 -1264
- package/dist/surfaces/cli/runtime.js.map +1 -1
- package/dist/surfaces/mcp/server.js +18 -0
- package/dist/surfaces/mcp/server.js.map +1 -1
- package/dist/utils/hash.d.ts +11 -0
- package/dist/utils/hash.d.ts.map +1 -0
- package/dist/utils/hash.js +27 -0
- package/dist/utils/hash.js.map +1 -0
- package/package.json +3 -1
- package/scripts/safe-postinstall.cjs +6 -0
|
@@ -1,261 +1,12 @@
|
|
|
1
|
-
import type { GraphEdge, GraphNode } from "../../core/types";
|
|
2
|
-
import type { GraphFlowConfig } from "../../config/schema";
|
|
3
|
-
import type { TaskStatus } from "../../core/types";
|
|
4
1
|
export { getDefaultConfig } from "../../config/defaults";
|
|
5
2
|
export { ensureGlobalGraphFlowConfig, ensureWorkspaceGraphFlowConfig, resolveGlobalConfigPath, type ConfigScaffoldResult, } from "../../config/scaffold";
|
|
6
|
-
export { resolveConfig, resolveConfigPath } from "../../config/resolve";
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
anchorCount: number;
|
|
15
|
-
tokenEstimate: number;
|
|
16
|
-
truncated: boolean;
|
|
17
|
-
anchorsByLayer: {
|
|
18
|
-
l1: number;
|
|
19
|
-
l2: number;
|
|
20
|
-
l3: number;
|
|
21
|
-
};
|
|
22
|
-
refillPreview: string[];
|
|
23
|
-
summary: string[];
|
|
24
|
-
anchors: Array<{
|
|
25
|
-
id: string;
|
|
26
|
-
type: GraphNode["type"];
|
|
27
|
-
layer: "L1" | "L2" | "L3";
|
|
28
|
-
}>;
|
|
29
|
-
tokenBudget: {
|
|
30
|
-
maxContextTokens: number;
|
|
31
|
-
estimatedRawTokens: number;
|
|
32
|
-
compressedTokens: number;
|
|
33
|
-
estimatedSavingsPercent: number;
|
|
34
|
-
budgetUsedPercent: number;
|
|
35
|
-
};
|
|
36
|
-
}
|
|
37
|
-
export interface GraphFlowSettings {
|
|
38
|
-
configPath: string;
|
|
39
|
-
provider: string;
|
|
40
|
-
smartModel: string;
|
|
41
|
-
economyModel: string;
|
|
42
|
-
apiKeyEnvVar?: string;
|
|
43
|
-
baseUrl?: string;
|
|
44
|
-
maxContextTokens: number;
|
|
45
|
-
layerQuota: {
|
|
46
|
-
l1: number;
|
|
47
|
-
l2: number;
|
|
48
|
-
l3: number;
|
|
49
|
-
};
|
|
50
|
-
enableNearLosslessMode: boolean;
|
|
51
|
-
autoIndexOnPreview: boolean;
|
|
52
|
-
autoIndexOnRun: boolean;
|
|
53
|
-
autoIndexOnSave: boolean;
|
|
54
|
-
transport: GraphFlowConfig["graphPolicy"]["transport"];
|
|
55
|
-
graphStorePath: string;
|
|
56
|
-
enrichmentBackend: "network" | "local" | "inherit";
|
|
57
|
-
enrichmentProvider: string;
|
|
58
|
-
enrichmentModel: string;
|
|
59
|
-
enrichmentApiKey?: string;
|
|
60
|
-
enrichmentBaseUrl?: string;
|
|
61
|
-
openbmbMode: "embedded" | "ollama" | "openai-compat";
|
|
62
|
-
openbmbEngine: "command" | "node-llama-cpp";
|
|
63
|
-
openbmbModel: string;
|
|
64
|
-
openbmbBaseUrl?: string;
|
|
65
|
-
openbmbModelPath?: string;
|
|
66
|
-
openbmbCommandPath?: string;
|
|
67
|
-
openbmbAutoDownload: boolean;
|
|
68
|
-
openbmbModelUrl?: string;
|
|
69
|
-
openbmbModelSha256?: string;
|
|
70
|
-
}
|
|
71
|
-
export type GraphFlowSettingsInput = Omit<GraphFlowSettings, "configPath">;
|
|
72
|
-
export declare function getGraphFlowSettings(configPath?: string): GraphFlowSettings;
|
|
73
|
-
export declare function saveGraphFlowSettings(settings: GraphFlowSettingsInput, configPath?: string): GraphFlowSettings;
|
|
74
|
-
export declare function previewContext(query: string, configPath?: string): Promise<ContextPreviewResult>;
|
|
75
|
-
export interface GraphIndexResult {
|
|
76
|
-
indexedFiles: number;
|
|
77
|
-
indexedSymbols: number;
|
|
78
|
-
indexedReferences: number;
|
|
79
|
-
}
|
|
80
|
-
export interface GraphRebuildResult extends GraphIndexResult {
|
|
81
|
-
cleared: boolean;
|
|
82
|
-
storePath: string;
|
|
83
|
-
}
|
|
84
|
-
export interface GraphSnapshotResult {
|
|
85
|
-
transport: GraphFlowConfig["graphPolicy"]["transport"];
|
|
86
|
-
storePath?: string;
|
|
87
|
-
nodeCount: number;
|
|
88
|
-
edgeCount: number;
|
|
89
|
-
nodeTypeCount: Record<GraphNode["type"], number>;
|
|
90
|
-
topRelations: Array<{
|
|
91
|
-
relation: GraphEdge["relation"];
|
|
92
|
-
count: number;
|
|
93
|
-
}>;
|
|
94
|
-
sampleNodes: Array<{
|
|
95
|
-
id: string;
|
|
96
|
-
type: GraphNode["type"];
|
|
97
|
-
contentPreview: string;
|
|
98
|
-
}>;
|
|
99
|
-
sampleEdges: Array<{
|
|
100
|
-
from: string;
|
|
101
|
-
relation: GraphEdge["relation"];
|
|
102
|
-
to: string;
|
|
103
|
-
}>;
|
|
104
|
-
}
|
|
105
|
-
export interface SkillInsightItem {
|
|
106
|
-
id: string;
|
|
107
|
-
name: string;
|
|
108
|
-
score: number;
|
|
109
|
-
uses: number;
|
|
110
|
-
lastOutcome: "pass" | "fail";
|
|
111
|
-
updatedAt: number;
|
|
112
|
-
}
|
|
113
|
-
export interface SkillInsightsResult {
|
|
114
|
-
source: "graph-store" | "unavailable";
|
|
115
|
-
transport: GraphFlowConfig["graphPolicy"]["transport"];
|
|
116
|
-
storePath?: string;
|
|
117
|
-
skills: SkillInsightItem[];
|
|
118
|
-
}
|
|
119
|
-
export interface RunTaskSummary {
|
|
120
|
-
status: TaskStatus;
|
|
121
|
-
attempts: number;
|
|
122
|
-
feedback: string;
|
|
123
|
-
}
|
|
124
|
-
export interface RoutingDiagnosisResult {
|
|
125
|
-
dynamicRouting: boolean;
|
|
126
|
-
health: Record<"openai" | "anthropic" | "bailian" | "doubao" | "openbmb", boolean>;
|
|
127
|
-
priority: string[];
|
|
128
|
-
planner: {
|
|
129
|
-
provider: string;
|
|
130
|
-
model: string;
|
|
131
|
-
fallbackApplied: boolean;
|
|
132
|
-
};
|
|
133
|
-
worker: {
|
|
134
|
-
provider: string;
|
|
135
|
-
model: string;
|
|
136
|
-
fallbackApplied: boolean;
|
|
137
|
-
};
|
|
138
|
-
validator: {
|
|
139
|
-
provider: string;
|
|
140
|
-
model: string;
|
|
141
|
-
fallbackApplied: boolean;
|
|
142
|
-
};
|
|
143
|
-
}
|
|
144
|
-
export interface LearningNightlyResult {
|
|
145
|
-
events: number;
|
|
146
|
-
passRate: number;
|
|
147
|
-
avgTokens: number;
|
|
148
|
-
canary: "allow" | "block";
|
|
149
|
-
reason: string;
|
|
150
|
-
dataset: string;
|
|
151
|
-
}
|
|
152
|
-
export interface ModelDownloadResult {
|
|
153
|
-
model: string;
|
|
154
|
-
targetPath: string;
|
|
155
|
-
bytes: number;
|
|
156
|
-
skipped: boolean;
|
|
157
|
-
verified: boolean;
|
|
158
|
-
resumed?: boolean;
|
|
159
|
-
}
|
|
160
|
-
export interface ModelDownloadProgress {
|
|
161
|
-
model: string;
|
|
162
|
-
targetPath: string;
|
|
163
|
-
downloadedBytes: number;
|
|
164
|
-
totalBytes?: number;
|
|
165
|
-
resumed: boolean;
|
|
166
|
-
percent?: number;
|
|
167
|
-
stage: "starting" | "downloading" | "verifying" | "completed" | "skipped";
|
|
168
|
-
}
|
|
169
|
-
export declare function indexGraph(rootDir?: string, configPath?: string): Promise<GraphIndexResult>;
|
|
170
|
-
export declare function rebuildGraph(rootDir?: string, configPath?: string): Promise<GraphRebuildResult>;
|
|
171
|
-
export declare function enrichSemanticsSilent(configPath?: string, options?: {
|
|
172
|
-
batchSize?: number;
|
|
173
|
-
sleepMs?: number;
|
|
174
|
-
timeoutMs?: number;
|
|
175
|
-
}): Promise<{
|
|
176
|
-
enrichedCount: number;
|
|
177
|
-
}>;
|
|
178
|
-
export declare function downloadOpenBmbModel(configPath?: string, options?: {
|
|
179
|
-
model?: string;
|
|
180
|
-
url?: string;
|
|
181
|
-
sha256?: string;
|
|
182
|
-
targetPath?: string;
|
|
183
|
-
force?: boolean;
|
|
184
|
-
onProgress?: (progress: ModelDownloadProgress) => void;
|
|
185
|
-
}): Promise<ModelDownloadResult>;
|
|
186
|
-
export declare function inspectGraph(configPath?: string, options?: {
|
|
187
|
-
nodeLimit?: number;
|
|
188
|
-
edgeLimit?: number;
|
|
189
|
-
}): Promise<GraphSnapshotResult>;
|
|
190
|
-
export declare function getSkillInsights(configPath?: string, limit?: number): Promise<SkillInsightsResult>;
|
|
191
|
-
export declare function runTaskResult(task: string, configPath?: string): Promise<RunTaskSummary>;
|
|
192
|
-
export declare function runTask(task: string, configPath?: string): Promise<string>;
|
|
193
|
-
export declare function diagnoseRoutingResult(configPath?: string): RoutingDiagnosisResult;
|
|
194
|
-
export declare function diagnoseRouting(configPath?: string): string;
|
|
195
|
-
export interface SettingsValidationIssue {
|
|
196
|
-
field: string;
|
|
197
|
-
message: string;
|
|
198
|
-
}
|
|
199
|
-
export interface RoutingConnectivityProbe {
|
|
200
|
-
role: "planner" | "worker";
|
|
201
|
-
provider: string;
|
|
202
|
-
model: string;
|
|
203
|
-
ok: boolean;
|
|
204
|
-
latencyMs?: number;
|
|
205
|
-
error?: string;
|
|
206
|
-
sample?: string;
|
|
207
|
-
}
|
|
208
|
-
export interface RoutingConnectivityResult {
|
|
209
|
-
ok: boolean;
|
|
210
|
-
validationIssues: SettingsValidationIssue[];
|
|
211
|
-
diagnosis: RoutingDiagnosisResult;
|
|
212
|
-
probes: RoutingConnectivityProbe[];
|
|
213
|
-
graphIndex?: {
|
|
214
|
-
indexedFiles: number;
|
|
215
|
-
indexedSymbols: number;
|
|
216
|
-
};
|
|
217
|
-
graphSnapshot?: {
|
|
218
|
-
nodeCount: number;
|
|
219
|
-
edgeCount: number;
|
|
220
|
-
};
|
|
221
|
-
}
|
|
222
|
-
export declare function validateSettingsForGraphIndex(settings: GraphFlowSettingsInput): SettingsValidationIssue[];
|
|
223
|
-
export interface GraphIndexFromSettingsResult {
|
|
224
|
-
ok: boolean;
|
|
225
|
-
validationIssues: SettingsValidationIssue[];
|
|
226
|
-
graphIndex?: {
|
|
227
|
-
indexedFiles: number;
|
|
228
|
-
indexedSymbols: number;
|
|
229
|
-
};
|
|
230
|
-
graphSnapshot?: {
|
|
231
|
-
nodeCount: number;
|
|
232
|
-
edgeCount: number;
|
|
233
|
-
};
|
|
234
|
-
}
|
|
235
|
-
export declare function indexGraphFromSettings(settings: GraphFlowSettingsInput, workspaceRoot?: string, configPath?: string): Promise<GraphIndexFromSettingsResult>;
|
|
236
|
-
export declare function validateSettingsForRouting(settings: GraphFlowSettingsInput): SettingsValidationIssue[];
|
|
237
|
-
export declare function testRoutingAndIndexGraph(settings: GraphFlowSettingsInput, workspaceRoot?: string, configPath?: string): Promise<RoutingConnectivityResult>;
|
|
238
|
-
export interface SettingsPanelStatusData {
|
|
239
|
-
graphNodeCount: number;
|
|
240
|
-
graphEdgeCount: number;
|
|
241
|
-
graphLastModified: string | null;
|
|
242
|
-
diagnoseSummary: string;
|
|
243
|
-
overlayKeys: string[];
|
|
244
|
-
baseConfigPath: string;
|
|
245
|
-
}
|
|
246
|
-
export declare function getSettingsPanelStatus(configPath?: string): Promise<SettingsPanelStatusData>;
|
|
247
|
-
export declare function runLearningNightlyResult(configPath?: string): LearningNightlyResult;
|
|
248
|
-
export declare function runLearningNightly(configPath?: string): string;
|
|
249
|
-
export interface PlanPreviewResult {
|
|
250
|
-
mode: "simple" | "complex";
|
|
251
|
-
ideas: string[];
|
|
252
|
-
nodes: Array<{
|
|
253
|
-
id: string;
|
|
254
|
-
description: string;
|
|
255
|
-
dependencies: string[];
|
|
256
|
-
}>;
|
|
257
|
-
}
|
|
258
|
-
export declare function planAndBrainstormResult(task: string): PlanPreviewResult;
|
|
259
|
-
export declare function planAndBrainstorm(task: string): string;
|
|
3
|
+
export { resolveConfig, resolveConfigPath, resolveWritableConfigPath } from "../../config/resolve";
|
|
4
|
+
export * from "./runtime/types.js";
|
|
5
|
+
export { prepareSemanticEnrichmentRuntime, applyEnrichmentProviderEnv, applyOpenBmbRuntimeEnv, } from "./runtime/env.js";
|
|
6
|
+
export { getGraphFlowSettings, saveGraphFlowSettings, validateSettingsForGraphIndex, validateSettingsForRouting, } from "./runtime/settings.js";
|
|
7
|
+
export { previewContext, indexGraph, rebuildGraph, enrichSemanticsSilent, downloadOpenBmbModel, inspectGraph, getSkillInsights, } from "./runtime/graph.js";
|
|
8
|
+
export { runTask, runTaskResult, diagnoseRouting, diagnoseRoutingResult, runLearningNightly, runLearningNightlyResult, planAndBrainstorm, planAndBrainstormResult, } from "./runtime/routing.js";
|
|
9
|
+
export { getSettingsPanelStatus, indexGraphFromSettings, testRoutingAndIndexGraph, } from "./runtime/panel.js";
|
|
10
|
+
export { assertGraphFlowRuntime, type GraphFlowRuntime, type GraphFlowRuntimeModule } from "./runtime/facade.js";
|
|
260
11
|
export { buildMcpServerNode, detectInstalledAgents, formatModelConfigGuide, installMcpToDetectedAgents, type DetectedAgent, type McpInstallOptions, type McpInstallResult, type McpInstallStrategy, } from "../../integrations/agent-mcp-installer";
|
|
261
12
|
//# sourceMappingURL=runtime.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../../src/surfaces/cli/runtime.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../../src/surfaces/cli/runtime.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EACL,2BAA2B,EAC3B,8BAA8B,EAC9B,uBAAuB,EACvB,KAAK,oBAAoB,GAC1B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC;AACnG,cAAc,oBAAoB,CAAC;AACnC,OAAO,EACL,gCAAgC,EAChC,0BAA0B,EAC1B,sBAAsB,GACvB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,oBAAoB,EACpB,qBAAqB,EACrB,6BAA6B,EAC7B,0BAA0B,GAC3B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,cAAc,EACd,UAAU,EACV,YAAY,EACZ,qBAAqB,EACrB,oBAAoB,EACpB,YAAY,EACZ,gBAAgB,GACjB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,OAAO,EACP,aAAa,EACb,eAAe,EACf,qBAAqB,EACrB,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EACjB,uBAAuB,GACxB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,sBAAsB,EACtB,sBAAsB,EACtB,wBAAwB,GACzB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,sBAAsB,EAAE,KAAK,gBAAgB,EAAE,KAAK,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AACjH,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,sBAAsB,EACtB,0BAA0B,EAC1B,KAAK,aAAa,EAClB,KAAK,iBAAiB,EACtB,KAAK,gBAAgB,EACrB,KAAK,kBAAkB,GACxB,MAAM,wCAAwC,CAAC"}
|