@auto-engineer/frontend-implementer 0.1.1
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/.turbo/turbo-build.log +5 -0
- package/.turbo/turbo-format.log +15 -0
- package/.turbo/turbo-lint.log +5 -0
- package/.turbo/turbo-test.log +12 -0
- package/.turbo/turbo-type-check.log +4 -0
- package/CHANGELOG.md +157 -0
- package/DEBUG.md +184 -0
- package/LICENSE +10 -0
- package/README.md +358 -0
- package/dist/agent-cli.d.ts +3 -0
- package/dist/agent-cli.d.ts.map +1 -0
- package/dist/agent-cli.js +12 -0
- package/dist/agent-cli.js.map +1 -0
- package/dist/agent.d.ts +2 -0
- package/dist/agent.d.ts.map +1 -0
- package/dist/agent.js +737 -0
- package/dist/agent.js.map +1 -0
- package/dist/cli-manifest.d.ts +3 -0
- package/dist/cli-manifest.d.ts.map +1 -0
- package/dist/cli-manifest.js +8 -0
- package/dist/cli-manifest.js.map +1 -0
- package/dist/commands/implement-client.d.ts +56 -0
- package/dist/commands/implement-client.d.ts.map +1 -0
- package/dist/commands/implement-client.js +62 -0
- package/dist/commands/implement-client.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +265 -0
- package/dist/index.js.map +1 -0
- package/package.json +44 -0
- package/src/agent-cli.ts +14 -0
- package/src/agent.ts +863 -0
- package/src/cli-manifest.ts +9 -0
- package/src/commands/implement-client.ts +100 -0
- package/src/index.ts +321 -0
- package/src/website-mock.html +40 -0
- package/tsconfig.json +11 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { CliManifest } from '@auto-engineer/cli/manifest-types';
|
|
2
|
+
import { implementClientManifest } from './commands/implement-client';
|
|
3
|
+
|
|
4
|
+
export const CLI_MANIFEST: CliManifest = {
|
|
5
|
+
category: '@auto-engineer/frontend-implementer',
|
|
6
|
+
commands: {
|
|
7
|
+
'implement:client': implementClientManifest,
|
|
8
|
+
},
|
|
9
|
+
};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { type CommandHandler, type Command, type Event } from '@auto-engineer/message-bus';
|
|
2
|
+
import { runAIAgent } from '../agent';
|
|
3
|
+
import createDebug from 'debug';
|
|
4
|
+
|
|
5
|
+
const debug = createDebug('frontend-implementer:implement-client');
|
|
6
|
+
|
|
7
|
+
export const implementClientManifest = {
|
|
8
|
+
handler: () => Promise.resolve({ default: implementClientCommandHandler }),
|
|
9
|
+
description: 'AI implements client',
|
|
10
|
+
usage: 'implement:client <client> <context> <principles> <design>',
|
|
11
|
+
examples: ['$ auto implement:client ./client ./.context ./design-principles.md ./design-system.md'],
|
|
12
|
+
args: [
|
|
13
|
+
{ name: 'client', description: 'Client directory path', required: true },
|
|
14
|
+
{ name: 'context', description: 'Context directory path', required: true },
|
|
15
|
+
{ name: 'principles', description: 'Design principles file', required: true },
|
|
16
|
+
{ name: 'design', description: 'Design system file', required: true },
|
|
17
|
+
],
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export type ImplementClientCommand = Command<
|
|
21
|
+
'ImplementClient',
|
|
22
|
+
{
|
|
23
|
+
projectDir: string;
|
|
24
|
+
iaSchemeDir: string;
|
|
25
|
+
designSystemPath: string;
|
|
26
|
+
}
|
|
27
|
+
>;
|
|
28
|
+
|
|
29
|
+
export type ClientImplementedEvent = Event<
|
|
30
|
+
'ClientImplemented',
|
|
31
|
+
{
|
|
32
|
+
projectDir: string;
|
|
33
|
+
}
|
|
34
|
+
>;
|
|
35
|
+
|
|
36
|
+
export type ClientImplementationFailedEvent = Event<
|
|
37
|
+
'ClientImplementationFailed',
|
|
38
|
+
{
|
|
39
|
+
error: string;
|
|
40
|
+
projectDir: string;
|
|
41
|
+
}
|
|
42
|
+
>;
|
|
43
|
+
|
|
44
|
+
async function handleImplementClientCommandInternal(
|
|
45
|
+
command: ImplementClientCommand,
|
|
46
|
+
): Promise<ClientImplementedEvent | ClientImplementationFailedEvent> {
|
|
47
|
+
const { projectDir, iaSchemeDir, designSystemPath } = command.data;
|
|
48
|
+
|
|
49
|
+
try {
|
|
50
|
+
// Run the AI agent with absolute paths
|
|
51
|
+
await runAIAgent(projectDir, iaSchemeDir, designSystemPath);
|
|
52
|
+
|
|
53
|
+
debug('AI project implementation complete!');
|
|
54
|
+
|
|
55
|
+
return {
|
|
56
|
+
type: 'ClientImplemented',
|
|
57
|
+
data: {
|
|
58
|
+
projectDir,
|
|
59
|
+
},
|
|
60
|
+
timestamp: new Date(),
|
|
61
|
+
requestId: command.requestId,
|
|
62
|
+
correlationId: command.correlationId,
|
|
63
|
+
};
|
|
64
|
+
} catch (error) {
|
|
65
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
66
|
+
debug('Failed to implement client: %O', error);
|
|
67
|
+
|
|
68
|
+
return {
|
|
69
|
+
type: 'ClientImplementationFailed',
|
|
70
|
+
data: {
|
|
71
|
+
error: errorMessage,
|
|
72
|
+
projectDir,
|
|
73
|
+
},
|
|
74
|
+
timestamp: new Date(),
|
|
75
|
+
requestId: command.requestId,
|
|
76
|
+
correlationId: command.correlationId,
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export const implementClientCommandHandler: CommandHandler<
|
|
82
|
+
ImplementClientCommand,
|
|
83
|
+
ClientImplementedEvent | ClientImplementationFailedEvent
|
|
84
|
+
> = {
|
|
85
|
+
name: 'ImplementClient',
|
|
86
|
+
handle: async (
|
|
87
|
+
command: ImplementClientCommand,
|
|
88
|
+
): Promise<ClientImplementedEvent | ClientImplementationFailedEvent> => {
|
|
89
|
+
const result = await handleImplementClientCommandInternal(command);
|
|
90
|
+
if (result.type === 'ClientImplemented') {
|
|
91
|
+
debug('Client implemented successfully');
|
|
92
|
+
} else {
|
|
93
|
+
debug('Failed: %s', result.data.error);
|
|
94
|
+
}
|
|
95
|
+
return result;
|
|
96
|
+
},
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
// Default export is the command handler
|
|
100
|
+
export default implementClientCommandHandler;
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
2
|
+
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
import * as fs from 'fs/promises';
|
|
5
|
+
import * as path from 'path';
|
|
6
|
+
import createDebug from 'debug';
|
|
7
|
+
|
|
8
|
+
const debug = createDebug('frontend-impl:mcp');
|
|
9
|
+
const debugTools = createDebug('frontend-impl:mcp:tools');
|
|
10
|
+
const debugServer = createDebug('frontend-impl:mcp:server');
|
|
11
|
+
const debugLifecycle = createDebug('frontend-impl:mcp:lifecycle');
|
|
12
|
+
|
|
13
|
+
interface Component {
|
|
14
|
+
type: string;
|
|
15
|
+
items?: Record<string, unknown>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
interface Scheme {
|
|
19
|
+
generatedComponents?: Component[];
|
|
20
|
+
atoms?: {
|
|
21
|
+
description?: string;
|
|
22
|
+
items?: Record<string, unknown>;
|
|
23
|
+
};
|
|
24
|
+
molecules?: {
|
|
25
|
+
description?: string;
|
|
26
|
+
items?: Record<string, unknown>;
|
|
27
|
+
};
|
|
28
|
+
organisms?: {
|
|
29
|
+
description?: string;
|
|
30
|
+
items?: Record<string, unknown>;
|
|
31
|
+
};
|
|
32
|
+
pages?: {
|
|
33
|
+
description?: string;
|
|
34
|
+
items?: Record<string, unknown>;
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Helper to recursively list files
|
|
39
|
+
async function listFiles(dir: string, base = dir): Promise<string[]> {
|
|
40
|
+
const entries = await fs.readdir(dir, { withFileTypes: true });
|
|
41
|
+
const files = await Promise.all(
|
|
42
|
+
entries.map(async (entry) => {
|
|
43
|
+
const res = path.resolve(dir, entry.name);
|
|
44
|
+
if (entry.isDirectory()) {
|
|
45
|
+
return listFiles(res, base);
|
|
46
|
+
} else {
|
|
47
|
+
return [path.relative(base, res)];
|
|
48
|
+
}
|
|
49
|
+
}),
|
|
50
|
+
);
|
|
51
|
+
return files.flat();
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// Helper to read auto-ia-scheme.json
|
|
55
|
+
async function readAutoIAScheme(directory: string): Promise<Scheme> {
|
|
56
|
+
const filePath = path.join(directory, 'auto-ia-scheme.json');
|
|
57
|
+
const content = await fs.readFile(filePath, 'utf-8');
|
|
58
|
+
return JSON.parse(content) as Scheme;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
function buildEntities(scheme: Scheme) {
|
|
62
|
+
const entities = [];
|
|
63
|
+
if (scheme.atoms) entities.push({ type: 'atoms', items: Object.keys(scheme.atoms.items ?? {}) });
|
|
64
|
+
if (scheme.molecules) entities.push({ type: 'molecules', items: Object.keys(scheme.molecules.items ?? {}) });
|
|
65
|
+
if (scheme.organisms) entities.push({ type: 'organisms', items: Object.keys(scheme.organisms.items ?? {}) });
|
|
66
|
+
if (scheme.pages) entities.push({ type: 'pages', items: Object.keys(scheme.pages.items ?? {}) });
|
|
67
|
+
return entities;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
debugServer('Initializing MCP server with name: frontend-implementer, version: 0.1.0');
|
|
71
|
+
const server = new McpServer({
|
|
72
|
+
name: 'frontend-implementer',
|
|
73
|
+
version: '0.1.0',
|
|
74
|
+
});
|
|
75
|
+
debugServer('MCP server instance created');
|
|
76
|
+
|
|
77
|
+
// Tool: List all files in the project
|
|
78
|
+
debugTools('Registering tool: listFiles');
|
|
79
|
+
server.registerTool(
|
|
80
|
+
'listFiles',
|
|
81
|
+
{
|
|
82
|
+
title: 'List Project Files',
|
|
83
|
+
description: 'List all files in the given project directory.',
|
|
84
|
+
inputSchema: {
|
|
85
|
+
directory: z.string().min(1, 'Directory is required'),
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
async ({ directory }: { directory: string }) => {
|
|
89
|
+
debugTools('listFiles called with directory: %s', directory);
|
|
90
|
+
try {
|
|
91
|
+
const files = await listFiles(directory);
|
|
92
|
+
debugTools('Found %d files in directory', files.length);
|
|
93
|
+
return {
|
|
94
|
+
content: [
|
|
95
|
+
{
|
|
96
|
+
type: 'text',
|
|
97
|
+
text: JSON.stringify(files, null, 2),
|
|
98
|
+
},
|
|
99
|
+
],
|
|
100
|
+
};
|
|
101
|
+
} catch (error) {
|
|
102
|
+
debugTools('Error listing files: %O', error);
|
|
103
|
+
return {
|
|
104
|
+
isError: true,
|
|
105
|
+
content: [
|
|
106
|
+
{
|
|
107
|
+
type: 'text',
|
|
108
|
+
text: `Error listing files: ${error instanceof Error ? error.message : String(error)}`,
|
|
109
|
+
},
|
|
110
|
+
],
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
// Tool: Read a file
|
|
117
|
+
debugTools('Registering tool: readFile');
|
|
118
|
+
server.registerTool(
|
|
119
|
+
'readFile',
|
|
120
|
+
{
|
|
121
|
+
title: 'Read File',
|
|
122
|
+
description: 'Read the contents of a file in the project.',
|
|
123
|
+
inputSchema: {
|
|
124
|
+
directory: z.string().min(1, 'Directory is required'),
|
|
125
|
+
relativePath: z.string().min(1, 'Relative file path is required'),
|
|
126
|
+
},
|
|
127
|
+
},
|
|
128
|
+
async ({ directory, relativePath }: { directory: string; relativePath: string }) => {
|
|
129
|
+
debugTools('readFile called - directory: %s, relativePath: %s', directory, relativePath);
|
|
130
|
+
try {
|
|
131
|
+
const filePath = path.join(directory, relativePath);
|
|
132
|
+
debugTools('Reading file from: %s', filePath);
|
|
133
|
+
const content = await fs.readFile(filePath, 'utf-8');
|
|
134
|
+
debugTools('File read successfully, size: %d bytes', content.length);
|
|
135
|
+
return {
|
|
136
|
+
content: [
|
|
137
|
+
{
|
|
138
|
+
type: 'text',
|
|
139
|
+
text: content,
|
|
140
|
+
},
|
|
141
|
+
],
|
|
142
|
+
};
|
|
143
|
+
} catch (error) {
|
|
144
|
+
debugTools('Error reading file: %O', error);
|
|
145
|
+
return {
|
|
146
|
+
isError: true,
|
|
147
|
+
content: [
|
|
148
|
+
{
|
|
149
|
+
type: 'text',
|
|
150
|
+
text: `Error reading file: ${error instanceof Error ? error.message : String(error)}`,
|
|
151
|
+
},
|
|
152
|
+
],
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
);
|
|
157
|
+
|
|
158
|
+
// Tool: Create or update a file
|
|
159
|
+
debugTools('Registering tool: createOrUpdateFile');
|
|
160
|
+
server.registerTool(
|
|
161
|
+
'createOrUpdateFile',
|
|
162
|
+
{
|
|
163
|
+
title: 'Create or Update File',
|
|
164
|
+
description: 'Create or overwrite a file in the given React project directory.',
|
|
165
|
+
inputSchema: {
|
|
166
|
+
directory: z.string().min(1, 'Directory is required'),
|
|
167
|
+
relativePath: z.string().min(1, 'Relative file path is required'),
|
|
168
|
+
content: z.string().min(1, 'File content is required'),
|
|
169
|
+
},
|
|
170
|
+
},
|
|
171
|
+
async ({ directory, relativePath, content }: { directory: string; relativePath: string; content: string }) => {
|
|
172
|
+
debugTools(
|
|
173
|
+
'createOrUpdateFile called - directory: %s, relativePath: %s, content size: %d',
|
|
174
|
+
directory,
|
|
175
|
+
relativePath,
|
|
176
|
+
content.length,
|
|
177
|
+
);
|
|
178
|
+
try {
|
|
179
|
+
const filePath = path.join(directory, relativePath);
|
|
180
|
+
debugTools('Writing file to: %s', filePath);
|
|
181
|
+
await fs.mkdir(path.dirname(filePath), { recursive: true });
|
|
182
|
+
await fs.writeFile(filePath, content, 'utf-8');
|
|
183
|
+
debugTools('File written successfully');
|
|
184
|
+
return {
|
|
185
|
+
content: [
|
|
186
|
+
{
|
|
187
|
+
type: 'text',
|
|
188
|
+
text: `File created/updated: ${filePath}`,
|
|
189
|
+
},
|
|
190
|
+
],
|
|
191
|
+
};
|
|
192
|
+
} catch (error) {
|
|
193
|
+
debugTools('Error creating/updating file: %O', error);
|
|
194
|
+
return {
|
|
195
|
+
isError: true,
|
|
196
|
+
content: [
|
|
197
|
+
{
|
|
198
|
+
type: 'text',
|
|
199
|
+
text: `Error creating/updating file: ${error instanceof Error ? error.message : String(error)}`,
|
|
200
|
+
},
|
|
201
|
+
],
|
|
202
|
+
};
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
);
|
|
206
|
+
|
|
207
|
+
// Tool: Read auto-ia-scheme.json
|
|
208
|
+
debugTools('Registering tool: readAutoIAScheme');
|
|
209
|
+
server.registerTool(
|
|
210
|
+
'readAutoIAScheme',
|
|
211
|
+
{
|
|
212
|
+
title: 'Read auto-ia-scheme.json',
|
|
213
|
+
description: 'Read and return the parsed auto-ia-scheme.json from the project root.',
|
|
214
|
+
inputSchema: {
|
|
215
|
+
directory: z.string().min(1, 'Directory is required'),
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
async ({ directory }: { directory: string }) => {
|
|
219
|
+
debugTools('readAutoIAScheme called with directory: %s', directory);
|
|
220
|
+
try {
|
|
221
|
+
const scheme = await readAutoIAScheme(directory);
|
|
222
|
+
debugTools('IA scheme loaded successfully');
|
|
223
|
+
return {
|
|
224
|
+
content: [
|
|
225
|
+
{
|
|
226
|
+
type: 'text',
|
|
227
|
+
text: JSON.stringify(scheme, null, 2),
|
|
228
|
+
},
|
|
229
|
+
],
|
|
230
|
+
};
|
|
231
|
+
} catch (error) {
|
|
232
|
+
debugTools('Error reading auto-ia-scheme.json: %O', error);
|
|
233
|
+
return {
|
|
234
|
+
isError: true,
|
|
235
|
+
content: [
|
|
236
|
+
{
|
|
237
|
+
type: 'text',
|
|
238
|
+
text: `Error reading auto-ia-scheme.json: ${error instanceof Error ? error.message : String(error)}`,
|
|
239
|
+
},
|
|
240
|
+
],
|
|
241
|
+
};
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
);
|
|
245
|
+
|
|
246
|
+
// Tool: List entities from auto-ia-scheme.json
|
|
247
|
+
debugTools('Registering tool: listAutoIASchemeEntities');
|
|
248
|
+
server.registerTool(
|
|
249
|
+
'listAutoIASchemeEntities',
|
|
250
|
+
{
|
|
251
|
+
title: 'List Entities from auto-ia-scheme.json',
|
|
252
|
+
description: 'List all atoms, molecules, organisms, and pages defined in auto-ia-scheme.json.',
|
|
253
|
+
inputSchema: {
|
|
254
|
+
directory: z.string().min(1, 'Directory is required'),
|
|
255
|
+
},
|
|
256
|
+
},
|
|
257
|
+
async ({ directory }: { directory: string }) => {
|
|
258
|
+
try {
|
|
259
|
+
const scheme = await readAutoIAScheme(directory);
|
|
260
|
+
const entities = buildEntities(scheme);
|
|
261
|
+
return {
|
|
262
|
+
content: [
|
|
263
|
+
{
|
|
264
|
+
type: 'text',
|
|
265
|
+
text: JSON.stringify(entities, null, 2),
|
|
266
|
+
},
|
|
267
|
+
],
|
|
268
|
+
};
|
|
269
|
+
} catch (error) {
|
|
270
|
+
return {
|
|
271
|
+
isError: true,
|
|
272
|
+
content: [
|
|
273
|
+
{
|
|
274
|
+
type: 'text',
|
|
275
|
+
text: `Error listing entities: ${error instanceof Error ? error.message : String(error)}`,
|
|
276
|
+
},
|
|
277
|
+
],
|
|
278
|
+
};
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
);
|
|
282
|
+
|
|
283
|
+
const transport = new StdioServerTransport();
|
|
284
|
+
|
|
285
|
+
async function cleanup() {
|
|
286
|
+
debug('Cleanup initiated');
|
|
287
|
+
console.log('Cleaning up...');
|
|
288
|
+
await transport.close();
|
|
289
|
+
debug('Transport closed, exiting process');
|
|
290
|
+
process.exit(0);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
process.on('SIGTERM', () => {
|
|
294
|
+
void cleanup();
|
|
295
|
+
});
|
|
296
|
+
process.on('SIGINT', () => {
|
|
297
|
+
void cleanup();
|
|
298
|
+
});
|
|
299
|
+
|
|
300
|
+
async function startServer() {
|
|
301
|
+
debugLifecycle('Starting MCP server');
|
|
302
|
+
debugServer('Connecting server to transport');
|
|
303
|
+
await server.connect(transport);
|
|
304
|
+
console.error('Frontend Implementation MCP Server running on stdio');
|
|
305
|
+
debugLifecycle('MCP server connected and running');
|
|
306
|
+
debugServer('Server ready to handle requests');
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
// Only start the server if this file is run directly
|
|
310
|
+
if (process.argv[1] && import.meta.url === `file://${process.argv[1]}`) {
|
|
311
|
+
debugLifecycle('Running as main module, starting server');
|
|
312
|
+
startServer().catch((error) => {
|
|
313
|
+
debugLifecycle('Fatal error starting server: %O', error);
|
|
314
|
+
console.error(error);
|
|
315
|
+
});
|
|
316
|
+
} else {
|
|
317
|
+
debugLifecycle('Module imported, not starting MCP server');
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export * from './commands/implement-client';
|
|
321
|
+
export { CLI_MANIFEST } from './cli-manifest';
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Mock Tailwind Page</title>
|
|
7
|
+
<script src="https://cdn.tailwindcss.com"></script>
|
|
8
|
+
</head>
|
|
9
|
+
<body class="bg-gray-100 text-gray-900 font-sans">
|
|
10
|
+
|
|
11
|
+
<!-- Header -->
|
|
12
|
+
<header class="bg-white shadow">
|
|
13
|
+
<div class="max-w-7xl mx-auto px-4 py-6 flex justify-between items-center">
|
|
14
|
+
<h1 class="text-2xl font-bold">My Website</h1>
|
|
15
|
+
<nav class="space-x-4">
|
|
16
|
+
<a href="#" class="text-gray-600 hover:text-blue-500">Home</a>
|
|
17
|
+
<a href="#" class="text-gray-600 hover:text-blue-500">About</a>
|
|
18
|
+
<a href="#" class="text-gray-600 hover:text-blue-500">Contact</a>
|
|
19
|
+
</nav>
|
|
20
|
+
</div>
|
|
21
|
+
</header>
|
|
22
|
+
|
|
23
|
+
<!-- Main Content -->
|
|
24
|
+
<main class="max-w-7xl mx-auto px-4 py-10">
|
|
25
|
+
<h2 class="text-3xl font-semibold mb-4">Welcome to the Mock Page</h2>
|
|
26
|
+
<p class="text-lg text-gray-700 mb-6">
|
|
27
|
+
This is a simple example of a web page styled with Tailwind CSS. You can start building your layout here.
|
|
28
|
+
</p>
|
|
29
|
+
<button class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600 transition">Click Me</button>
|
|
30
|
+
</main>
|
|
31
|
+
|
|
32
|
+
<!-- Footer -->
|
|
33
|
+
<footer class="bg-white shadow mt-10">
|
|
34
|
+
<div class="max-w-7xl mx-auto px-4 py-6 text-center text-sm text-gray-500">
|
|
35
|
+
© 2025 My Website. All rights reserved.
|
|
36
|
+
</div>
|
|
37
|
+
</footer>
|
|
38
|
+
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../tsconfig.base.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"composite": true,
|
|
5
|
+
"outDir": "./dist",
|
|
6
|
+
"rootDir": "./src"
|
|
7
|
+
},
|
|
8
|
+
"include": ["src/**/*"],
|
|
9
|
+
"exclude": ["node_modules", "dist"],
|
|
10
|
+
"references": [{ "path": "../ai-gateway" }, { "path": "../message-bus" }]
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/typealiases.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/index.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/zoderror.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/locales/en.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/errors.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseutil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/enumutil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorutil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/partialutil.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/standard-schema.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/external.d.cts","../../node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.d.cts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uritemplate.d.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts","../ai-gateway/dist/mcp-server.d.ts","../ai-gateway/dist/index.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/typescript.d.ts","../../node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms/index.d.ts","../../node_modules/.pnpm/@types+debug@4.1.12/node_modules/@types/debug/index.d.ts","./src/agent.ts","./src/agent-cli.ts","../cli/dist/src/manifest-types.d.ts","../message-bus/dist/types.d.ts","../message-bus/dist/message-bus.d.ts","../message-bus/dist/index.d.ts","./src/commands/implement-client.ts","./src/cli-manifest.ts","../../node_modules/.pnpm/@modelcontextprotocol+sdk@1.17.4/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts","./src/index.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.11/node_modules/@types/node/index.d.ts"],"fileIdsList":[[87,130],[59,61,63,87,130],[59,61,62,63,64,65,87,130],[61,62,87,130,161],[59,60,61,62,87,130],[61,87,130],[59,60,87,130],[70,87,130],[87,127,130],[87,129,130],[130],[87,130,135,164],[87,130,131,136,142,150,161,172],[87,130,131,132,142,150],[82,83,84,87,130],[87,130,133,173],[87,130,134,135,143,151],[87,130,135,161,169],[87,130,136,138,142,150],[87,129,130,137],[87,130,138,139],[87,130,140,142],[87,129,130,142],[87,130,142,143,144,161,172],[87,130,142,143,144,157,161,164],[87,125,130],[87,130,138,142,145,150,161,172],[87,130,142,143,145,146,150,161,169,172],[87,130,145,147,161,169,172],[85,86,87,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178],[87,130,142,148],[87,130,149,172,177],[87,130,138,142,150,161],[87,130,151],[87,130,152],[87,129,130,153],[87,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178],[87,130,155],[87,130,156],[87,130,142,157,158],[87,130,157,159,173,175],[87,130,142,161,162,164],[87,130,163,164],[87,130,161,162],[87,130,164],[87,130,165],[87,127,130,161,166],[87,130,142,167,168],[87,130,167,168],[87,130,135,150,161,169],[87,130,170],[87,130,150,171],[87,130,145,156,172],[87,130,135,173],[87,130,161,174],[87,130,149,175],[87,130,176],[87,130,142,144,153,161,164,172,175,177],[87,130,161,178],[87,97,101,130,172],[87,97,130,161,172],[87,92,130],[87,94,97,130,169,172],[87,130,150,169],[87,130,179],[87,92,130,179],[87,94,97,130,150,172],[87,89,90,93,96,130,142,161,172],[87,97,104,130],[87,89,95,130],[87,97,118,119,130],[87,93,97,130,164,172,179],[87,118,130,179],[87,91,92,130,179],[87,97,130],[87,91,92,93,94,95,96,97,98,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,119,120,121,122,123,124,130],[87,97,112,130],[87,97,104,105,130],[87,95,97,105,106,130],[87,96,130],[87,89,92,97,130],[87,97,101,105,106,130],[87,101,130],[87,95,97,100,130,172],[87,89,94,97,104,130],[87,130,161],[87,92,97,118,130,177,179],[58,87,130],[49,50,87,130],[46,47,49,51,52,57,87,130],[47,49,87,130],[57,87,130],[49,87,130],[46,47,49,52,53,54,55,56,87,130],[46,47,48,87,130],[59,67,87,130],[59,66,87,130],[72,87,130],[68,69,71,87,130,144,152],[74,78,87,130],[71,72,77,87,130],[59,66,71,78,79,80,87,130,144,152],[75,76,87,130],[75,87,130]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","impliedFormat":1},{"version":"833e92c058d033cde3f29a6c7603f517001d1ddd8020bc94d2067a3bc69b2a8e","impliedFormat":1},{"version":"08b2fae7b0f553ad9f79faec864b179fc58bc172e295a70943e8585dd85f600c","impliedFormat":1},{"version":"f12edf1672a94c578eca32216839604f1e1c16b40a1896198deabf99c882b340","impliedFormat":1},{"version":"e3498cf5e428e6c6b9e97bd88736f26d6cf147dedbfa5a8ad3ed8e05e059af8a","impliedFormat":1},{"version":"dba3f34531fd9b1b6e072928b6f885aa4d28dd6789cbd0e93563d43f4b62da53","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","impliedFormat":1},{"version":"2329d90062487e1eaca87b5e06abcbbeeecf80a82f65f949fd332cfcf824b87b","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"4fdb529707247a1a917a4626bfb6a293d52cd8ee57ccf03830ec91d39d606d6d","impliedFormat":1},{"version":"a9ebb67d6bbead6044b43714b50dcb77b8f7541ffe803046fdec1714c1eba206","impliedFormat":1},{"version":"5780b706cece027f0d4444fbb4e1af62dc51e19da7c3d3719f67b22b033859b9","impliedFormat":1},{"version":"4749a5d10b6e3b0bd6c8d90f9ba68a91a97aa0c2c9a340dd83306b2f349d6d34","impliedFormat":99},{"version":"dd1729e568bbd92727b6703f2340096d07476d29085b3ee2f49e78e6f2029d20","impliedFormat":99},{"version":"efdb6c1c0e195ea378a0b7cd0e808f65176bea14396dc8bdccda80551e66d73f","impliedFormat":99},{"version":"de328e8fd327cf362e090965057fbbf14f2085c78b70eb31b61ceeca8d6da01c","impliedFormat":99},{"version":"7747f4b6daf0968301794ba95e1242f5d195fb176592d1f43fc5a3926f0f7de8","impliedFormat":99},{"version":"d691e546590145171d00d78b341bd3ca4844c96eb34f870be84058a1cab585c3","impliedFormat":99},{"version":"605cafb12f4bbed8d56d27c00483f6ea0b1bc9b68e5b2fe869036e0e562b6e51","impliedFormat":99},"1410ca2f64bc0705df76b5404ac2a188a983fbf7809f676d99d5b59a95f09185","7ca1f7e905aafb44a73b9bedfce0ae3d156affd0459052bc74c3ceea7954fe8d",{"version":"c302df1d6f371c6064cb5f4d0b41165425b682b287a3b8625527b2752eb433ee","impliedFormat":1},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"3eb11dbf3489064a47a2e1cf9d261b1f100ef0b3b50ffca6c44dd99d6dd81ac1","impliedFormat":1},{"version":"f2d34a3e5e3fe3d9682e34838a5c1b03051051fd454b3f4d7706d6233470342e","signature":"85b94a1ca6fdb16f09dc347af2ff14f178c8b1cede5b2c0d193fe4c98a16a980"},{"version":"579c4bd6ea281dddce2fd12cb08a00836b542fefe57d7f615977fa2017d4bc29","signature":"19bace581b8c93217151085b7a3caf92ec94cf007c675d03f71b32866ed749fb"},"8c41a110bac3c915b8dacdc070d88fe909816e3f0c7eed6d8ba59cb39b54cecf","2c33a32456ce212d0722f8a015b5cdea69bf2abc6e1045c1cf83bb75eace84a0","db4af24504d864a260494193a86b98ff4d140179a41fac11f9fc8a8dd06f141b","0049beb632aa48dd202a8fbedbd05ccef5c8eb51614ee73d7bb9bdcecb5076d7",{"version":"bf79827ef356616bbac22beedd0d378d918b7152cd4a97e32c1b33e0940e9193","signature":"8cf14c09514e48446136669c59bded6f90169a89d1320d4389ccad7c3013fdec"},{"version":"ce377299594a0eeb7659ed6c4f4fb1d67b18a112e5c4fd5eb0f753d22443f046","signature":"ead646df0cb890e21a93a65c0939c0bd23aa79738a85af1505c811f85dad7fed"},{"version":"c9409ea389b2733ad153decd98696090ad2b37e610c9a23b360eb4330cd7c72f","impliedFormat":99},{"version":"0b6fe9b9de3ee84fb77069dd99fd2c82434b84db2ecffe8e3160b6fc8bad7340","signature":"b44570183976d56bff60becfd03305d734544a9e1efcb750898f258566aa63b0"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"823f9c08700a30e2920a063891df4e357c64333fdba6889522acc5b7ae13fc08","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1}],"root":[72,73,78,79,81],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"inlineSources":false,"module":99,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":7},"referencedMap":[[60,1],[64,2],[66,3],[80,4],[63,5],[62,6],[65,1],[61,7],[71,8],[70,1],[127,9],[128,9],[129,10],[87,11],[130,12],[131,13],[132,14],[82,1],[85,15],[83,1],[84,1],[133,16],[134,17],[135,18],[136,19],[137,20],[138,21],[139,21],[141,1],[140,22],[142,23],[143,24],[144,25],[126,26],[86,1],[145,27],[146,28],[147,29],[179,30],[148,31],[149,32],[150,33],[151,34],[152,35],[153,36],[154,37],[155,38],[156,39],[157,40],[158,40],[159,41],[160,1],[161,42],[163,43],[162,44],[164,45],[165,46],[166,47],[167,48],[168,49],[169,50],[170,51],[171,52],[172,53],[173,54],[174,55],[175,56],[176,57],[177,58],[178,59],[88,1],[44,1],[45,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[18,1],[19,1],[4,1],[20,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[1,1],[69,1],[104,60],[114,61],[103,60],[124,62],[95,63],[94,64],[123,65],[117,66],[122,67],[97,68],[111,69],[96,70],[120,71],[92,72],[91,65],[121,73],[93,74],[98,75],[99,1],[102,75],[89,1],[125,76],[115,77],[106,78],[107,79],[109,80],[105,81],[108,82],[118,65],[100,83],[101,84],[110,85],[90,86],[113,77],[112,75],[116,1],[119,87],[59,88],[51,89],[58,90],[53,1],[54,1],[52,91],[55,92],[46,1],[47,1],[48,88],[50,93],[56,1],[57,94],[49,95],[68,96],[67,97],[74,1],[73,98],[72,99],[79,100],[78,101],[81,102],[77,103],[76,104],[75,1]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.8.3"}
|