@aws-amplify/data-schema 1.10.0 → 1.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ai/ConversationSchemaTypes.js +7 -5
- package/dist/cjs/ai/ConversationSchemaTypes.js.map +1 -1
- package/dist/esm/CustomOperation.d.ts +2 -2
- package/dist/esm/Handler.d.ts +1 -1
- package/dist/esm/ai/ConversationSchemaTypes.mjs +7 -5
- package/dist/esm/ai/ConversationSchemaTypes.mjs.map +1 -1
- package/dist/esm/ai/ConversationType.d.ts +8 -3
- package/dist/esm/ai/ModelType.d.ts +1 -3
- package/dist/meta/cjs.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/CustomOperation.ts +2 -2
- package/src/Handler.ts +1 -1
- package/src/ai/ConversationSchemaTypes.ts +8 -6
- package/src/ai/ConversationType.ts +13 -3
- package/src/ai/ModelType.ts +2 -4
|
@@ -18,19 +18,21 @@ const createConversationField = (typeDef, typeName) => {
|
|
|
18
18
|
// It doesn't affect non multi-line string inputs for system prompts
|
|
19
19
|
systemPrompt: systemPrompt.replace(/\r?\n/g, '\\n'),
|
|
20
20
|
};
|
|
21
|
+
const argsString = Object.entries(args)
|
|
22
|
+
.map(([key, value]) => `${key}: "${value}"`)
|
|
23
|
+
.join(', ');
|
|
21
24
|
const functionHandler = {};
|
|
25
|
+
let handlerString = '';
|
|
22
26
|
if (handler) {
|
|
23
27
|
const functionName = `Fn${(0, utils_1.capitalize)(typeName)}`;
|
|
24
|
-
|
|
28
|
+
const eventVersion = handler.eventVersion;
|
|
29
|
+
handlerString = `, handler: { functionName: "${functionName}", eventVersion: "${eventVersion}" }`;
|
|
25
30
|
functionHandler[functionName] = handler;
|
|
26
31
|
}
|
|
27
|
-
const argsString = Object.entries(args)
|
|
28
|
-
.map(([key, value]) => `${key}: "${value}"`)
|
|
29
|
-
.join(', ');
|
|
30
32
|
const toolsString = tools?.length
|
|
31
33
|
? `, tools: [${getConversationToolsString(tools)}]`
|
|
32
34
|
: '';
|
|
33
|
-
const conversationDirective = `@conversation(${argsString}${toolsString})`;
|
|
35
|
+
const conversationDirective = `@conversation(${argsString}${handlerString}${toolsString})`;
|
|
34
36
|
const field = `${typeName}(conversationId: ID!, content: [ContentBlockInput], aiContext: AWSJSON, toolConfiguration: ToolConfigurationInput): ConversationMessage ${conversationDirective} @aws_cognito_user_pools`;
|
|
35
37
|
return { field, functionHandler };
|
|
36
38
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConversationSchemaTypes.js","sources":["../../../src/ai/ConversationSchemaTypes.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.conversationTypes = exports.createConversationField = void 0;\nconst utils_1 = require(\"../runtime/utils\");\nconst createConversationField = (typeDef, typeName) => {\n const { aiModel, systemPrompt, handler, tools } = typeDef;\n const args = {\n aiModel: aiModel.resourcePath,\n // This is done to escape newlines in potentially multi-line system prompts\n // e.g.\n // realtorChat: a.conversation({\n // aiModel: a.ai.model('Claude 3 Haiku'),\n // systemPrompt: `You are a helpful real estate assistant\n // Respond in the poetic form of haiku.`,\n // }),\n //\n // It doesn't affect non multi-line string inputs for system prompts\n systemPrompt: systemPrompt.replace(/\\r?\\n/g, '\\\\n'),\n };\n const functionHandler = {};\n if (handler) {\n const functionName = `Fn${(0, utils_1.capitalize)(typeName)}`;\n args['functionName'] = functionName;\n functionHandler[functionName] = handler;\n }\n const argsString = Object.entries(args)\n .map(([key, value]) => `${key}: \"${value}\"`)\n .join(', ');\n const toolsString = tools?.length\n ? `, tools: [${getConversationToolsString(tools)}]`\n : '';\n const conversationDirective = `@conversation(${argsString}${toolsString})`;\n const field = `${typeName}(conversationId: ID!, content: [ContentBlockInput], aiContext: AWSJSON, toolConfiguration: ToolConfigurationInput): ConversationMessage ${conversationDirective} @aws_cognito_user_pools`;\n return { field, functionHandler };\n};\nexports.createConversationField = createConversationField;\nconst isRef = (query) => query?.data?.type === 'ref';\nconst getConversationToolsString = (tools) => tools\n .map((tool) => {\n const { query, description } = tool;\n if (!isRef(query)) {\n throw new Error(`Unexpected query was found in tool ${tool}.`);\n }\n // TODO: add validation for query / auth (cup) / etc\n const queryName = query.data.link;\n return `{ name: \"${queryName}\", description: \"${description}\" }`;\n})\n .join(', ');\nconst ConversationParticipantRole = `enum ConversationParticipantRole {\n user\n assistant\n}`;\nconst ConversationMessage = `interface ConversationMessage {\n id: ID!\n conversationId: ID!\n role: ConversationParticipantRole\n content: [ContentBlock]\n aiContext: AWSJSON\n toolConfiguration: ToolConfiguration\n createdAt: AWSDateTime\n updatedAt: AWSDateTime\n owner: String\n}`;\nconst DocumentBlockSourceInput = `input DocumentBlockSourceInput {\n bytes: String\n}`;\nconst DocumentBlockInput = `input DocumentBlockInput {\n format: String!\n name: String!\n source: DocumentBlockSourceInput!\n}`;\nconst ImageBlockSourceInput = `input ImageBlockSourceInput {\n bytes: String\n}`;\nconst ImageBlockInput = `input ImageBlockInput {\n format: String!\n source: ImageBlockSourceInput!\n}`;\nconst ToolResultContentBlockInput = `input ToolResultContentBlockInput {\n document: DocumentBlockInput\n image: ImageBlockInput\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlockInput = `input ToolResultBlockInput {\n content: [ToolResultContentBlockInput!]!\n toolUseId: String!\n status: String\n}`;\nconst DocumentBlockSource = `type DocumentBlockSource {\n bytes: String\n}\n`;\nconst DocumentBlock = `type DocumentBlock {\n format: String!\n name: String!\n source: DocumentBlockSource!\n}`;\nconst ImageBlock = `type ImageBlock {\n format: String!\n source: ImageBlockSource!\n}`;\nconst ImageBlockSource = `type ImageBlockSource {\n bytes: String\n}`;\nconst ToolUseBlockInput = `input ToolUseBlockInput {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolUseBlock = `type ToolUseBlock {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolResultContentBlock = `type ToolResultContentBlock {\n document: DocumentBlock\n image: ImageBlock\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlock = `type ToolResultBlock {\n content: [ToolResultContentBlock!]!\n toolUseId: String!\n status: String\n}`;\nconst ContentBlockText = `type ContentBlockText {\n text: String\n}`;\nconst ContentBlockImage = `type ContentBlockImage {\n image: ImageBlock\n}`;\nconst ContentBlockDocument = `type ContentBlockDocument {\n document: DocumentBlock\n}`;\nconst ContentBlockToolUse = `type ContentBlockToolUse {\n toolUse: ToolUseBlock\n}`;\nconst ContentBlockToolResult = `type ContentBlockToolResult {\n toolResult: ToolResultBlock\n}`;\nconst ContentBlockInput = `input ContentBlockInput {\n text: String\n document: DocumentBlockInput\n image: ImageBlockInput\n toolResult: ToolResultBlockInput\n toolUse: ToolUseBlockInput\n}`;\nconst ContentBlock = `type ContentBlock {\n text: String\n document: DocumentBlock\n image: ImageBlock\n toolResult: ToolResultBlock\n toolUse: ToolUseBlock\n}`;\nconst ToolConfigurationInput = `input ToolConfigurationInput {\n tools: [ToolInput]\n}`;\nconst ToolInput = `input ToolInput {\n toolSpec: ToolSpecificationInput\n}`;\nconst ToolSpecificationInput = `input ToolSpecificationInput {\n name: String!\n description: String\n inputSchema: ToolInputSchemaInput!\n}`;\nconst ToolInputSchemaInput = `input ToolInputSchemaInput {\n json: AWSJSON\n}`;\nconst ToolConfiguration = `type ToolConfiguration {\n tools: [Tool]\n}`;\nconst Tool = `type Tool {\n toolSpec: ToolSpecification\n}`;\nconst ToolSpecification = `type ToolSpecification {\n name: String!\n description: String\n inputSchema: ToolInputSchema!\n}`;\nconst ToolInputSchema = `type ToolInputSchema {\n json: AWSJSON\n}`;\nexports.conversationTypes = [\n ConversationParticipantRole,\n ConversationMessage,\n DocumentBlockSourceInput,\n DocumentBlockInput,\n ImageBlockSourceInput,\n ImageBlockInput,\n ToolUseBlockInput,\n ToolResultContentBlockInput,\n ToolResultBlockInput,\n DocumentBlockSource,\n DocumentBlock,\n ImageBlock,\n ImageBlockSource,\n ToolUseBlock,\n ToolResultContentBlock,\n ToolResultBlock,\n ContentBlockText,\n ContentBlockImage,\n ContentBlockDocument,\n ContentBlockToolUse,\n ContentBlockToolResult,\n ContentBlockInput,\n ContentBlock,\n ToolConfigurationInput,\n ToolInput,\n ToolSpecificationInput,\n ToolInputSchemaInput,\n ToolConfiguration,\n Tool,\n ToolSpecification,\n ToolInputSchema,\n];\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ConversationSchemaTypes.js","sources":["../../../src/ai/ConversationSchemaTypes.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.conversationTypes = exports.createConversationField = void 0;\nconst utils_1 = require(\"../runtime/utils\");\nconst createConversationField = (typeDef, typeName) => {\n const { aiModel, systemPrompt, handler, tools } = typeDef;\n const args = {\n aiModel: aiModel.resourcePath,\n // This is done to escape newlines in potentially multi-line system prompts\n // e.g.\n // realtorChat: a.conversation({\n // aiModel: a.ai.model('Claude 3 Haiku'),\n // systemPrompt: `You are a helpful real estate assistant\n // Respond in the poetic form of haiku.`,\n // }),\n //\n // It doesn't affect non multi-line string inputs for system prompts\n systemPrompt: systemPrompt.replace(/\\r?\\n/g, '\\\\n'),\n };\n const argsString = Object.entries(args)\n .map(([key, value]) => `${key}: \"${value}\"`)\n .join(', ');\n const functionHandler = {};\n let handlerString = '';\n if (handler) {\n const functionName = `Fn${(0, utils_1.capitalize)(typeName)}`;\n const eventVersion = handler.eventVersion;\n handlerString = `, handler: { functionName: \"${functionName}\", eventVersion: \"${eventVersion}\" }`;\n functionHandler[functionName] = handler;\n }\n const toolsString = tools?.length\n ? `, tools: [${getConversationToolsString(tools)}]`\n : '';\n const conversationDirective = `@conversation(${argsString}${handlerString}${toolsString})`;\n const field = `${typeName}(conversationId: ID!, content: [ContentBlockInput], aiContext: AWSJSON, toolConfiguration: ToolConfigurationInput): ConversationMessage ${conversationDirective} @aws_cognito_user_pools`;\n return { field, functionHandler };\n};\nexports.createConversationField = createConversationField;\nconst isRef = (query) => query?.data?.type === 'ref';\nconst getConversationToolsString = (tools) => tools\n .map((tool) => {\n const { query, description } = tool;\n if (!isRef(query)) {\n throw new Error(`Unexpected query was found in tool ${tool}.`);\n }\n // TODO: add validation for query / auth (cup) / etc\n const queryName = query.data.link;\n return `{ name: \"${queryName}\", description: \"${description}\" }`;\n})\n .join(', ');\nconst ConversationParticipantRole = `enum ConversationParticipantRole {\n user\n assistant\n}`;\nconst ConversationMessage = `interface ConversationMessage {\n id: ID!\n conversationId: ID!\n role: ConversationParticipantRole\n content: [ContentBlock]\n aiContext: AWSJSON\n toolConfiguration: ToolConfiguration\n createdAt: AWSDateTime\n updatedAt: AWSDateTime\n owner: String\n}`;\nconst DocumentBlockSourceInput = `input DocumentBlockSourceInput {\n bytes: String\n}`;\nconst DocumentBlockInput = `input DocumentBlockInput {\n format: String!\n name: String!\n source: DocumentBlockSourceInput!\n}`;\nconst ImageBlockSourceInput = `input ImageBlockSourceInput {\n bytes: String\n}`;\nconst ImageBlockInput = `input ImageBlockInput {\n format: String!\n source: ImageBlockSourceInput!\n}`;\nconst ToolResultContentBlockInput = `input ToolResultContentBlockInput {\n document: DocumentBlockInput\n image: ImageBlockInput\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlockInput = `input ToolResultBlockInput {\n content: [ToolResultContentBlockInput!]!\n toolUseId: String!\n status: String\n}`;\nconst DocumentBlockSource = `type DocumentBlockSource {\n bytes: String\n}\n`;\nconst DocumentBlock = `type DocumentBlock {\n format: String!\n name: String!\n source: DocumentBlockSource!\n}`;\nconst ImageBlock = `type ImageBlock {\n format: String!\n source: ImageBlockSource!\n}`;\nconst ImageBlockSource = `type ImageBlockSource {\n bytes: String\n}`;\nconst ToolUseBlockInput = `input ToolUseBlockInput {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolUseBlock = `type ToolUseBlock {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolResultContentBlock = `type ToolResultContentBlock {\n document: DocumentBlock\n image: ImageBlock\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlock = `type ToolResultBlock {\n content: [ToolResultContentBlock!]!\n toolUseId: String!\n status: String\n}`;\nconst ContentBlockText = `type ContentBlockText {\n text: String\n}`;\nconst ContentBlockImage = `type ContentBlockImage {\n image: ImageBlock\n}`;\nconst ContentBlockDocument = `type ContentBlockDocument {\n document: DocumentBlock\n}`;\nconst ContentBlockToolUse = `type ContentBlockToolUse {\n toolUse: ToolUseBlock\n}`;\nconst ContentBlockToolResult = `type ContentBlockToolResult {\n toolResult: ToolResultBlock\n}`;\nconst ContentBlockInput = `input ContentBlockInput {\n text: String\n document: DocumentBlockInput\n image: ImageBlockInput\n toolResult: ToolResultBlockInput\n toolUse: ToolUseBlockInput\n}`;\nconst ContentBlock = `type ContentBlock {\n text: String\n document: DocumentBlock\n image: ImageBlock\n toolResult: ToolResultBlock\n toolUse: ToolUseBlock\n}`;\nconst ToolConfigurationInput = `input ToolConfigurationInput {\n tools: [ToolInput]\n}`;\nconst ToolInput = `input ToolInput {\n toolSpec: ToolSpecificationInput\n}`;\nconst ToolSpecificationInput = `input ToolSpecificationInput {\n name: String!\n description: String\n inputSchema: ToolInputSchemaInput!\n}`;\nconst ToolInputSchemaInput = `input ToolInputSchemaInput {\n json: AWSJSON\n}`;\nconst ToolConfiguration = `type ToolConfiguration {\n tools: [Tool]\n}`;\nconst Tool = `type Tool {\n toolSpec: ToolSpecification\n}`;\nconst ToolSpecification = `type ToolSpecification {\n name: String!\n description: String\n inputSchema: ToolInputSchema!\n}`;\nconst ToolInputSchema = `type ToolInputSchema {\n json: AWSJSON\n}`;\nexports.conversationTypes = [\n ConversationParticipantRole,\n ConversationMessage,\n DocumentBlockSourceInput,\n DocumentBlockInput,\n ImageBlockSourceInput,\n ImageBlockInput,\n ToolUseBlockInput,\n ToolResultContentBlockInput,\n ToolResultBlockInput,\n DocumentBlockSource,\n DocumentBlock,\n ImageBlock,\n ImageBlockSource,\n ToolUseBlock,\n ToolResultContentBlock,\n ToolResultBlock,\n ContentBlockText,\n ContentBlockImage,\n ContentBlockDocument,\n ContentBlockToolUse,\n ContentBlockToolResult,\n ContentBlockInput,\n ContentBlock,\n ToolConfigurationInput,\n ToolInput,\n ToolSpecificationInput,\n ToolInputSchemaInput,\n ToolConfiguration,\n Tool,\n ToolSpecification,\n ToolInputSchema,\n];\n"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SetTypeSubArg } from '@aws-amplify/data-schema-types';
|
|
1
|
+
import { AiModel, SetTypeSubArg } from '@aws-amplify/data-schema-types';
|
|
2
2
|
import { Brand } from './util';
|
|
3
3
|
import { InternalField, ModelField, type BaseModelField } from './ModelField';
|
|
4
4
|
import { AllowModifierForCustomOperation, Authorization } from './Authorization';
|
|
@@ -6,7 +6,7 @@ import { RefType, InternalRef } from './RefType';
|
|
|
6
6
|
import { EnumType } from './EnumType';
|
|
7
7
|
import { CustomType } from './CustomType';
|
|
8
8
|
import type { AsyncFunctionHandler, CustomHandler, FunctionHandler, HandlerType as Handler } from './Handler';
|
|
9
|
-
import {
|
|
9
|
+
import { InferenceConfiguration } from './ai/ModelType';
|
|
10
10
|
declare const queryBrand = "queryCustomOperation";
|
|
11
11
|
declare const mutationBrand = "mutationCustomOperation";
|
|
12
12
|
declare const subscriptionBrand = "subscriptionCustomOperation";
|
package/dist/esm/Handler.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export type FunctionHandler = {
|
|
|
111
111
|
* // 3. set the function has the handler
|
|
112
112
|
* .handler(a.handler.function(echoHandler).async())
|
|
113
113
|
*
|
|
114
|
-
* @see {@link https://docs.amplify.aws/react/build-a-backend/data/
|
|
114
|
+
* @see {@link https://docs.amplify.aws/react/build-a-backend/data/custom-business-logic/#async-function-handlers}
|
|
115
115
|
* @returns A function handler for query / mutation that is asynchronously invoked.
|
|
116
116
|
*/
|
|
117
117
|
async(): AsyncFunctionHandler;
|
|
@@ -15,19 +15,21 @@ const createConversationField = (typeDef, typeName) => {
|
|
|
15
15
|
// It doesn't affect non multi-line string inputs for system prompts
|
|
16
16
|
systemPrompt: systemPrompt.replace(/\r?\n/g, '\\n'),
|
|
17
17
|
};
|
|
18
|
+
const argsString = Object.entries(args)
|
|
19
|
+
.map(([key, value]) => `${key}: "${value}"`)
|
|
20
|
+
.join(', ');
|
|
18
21
|
const functionHandler = {};
|
|
22
|
+
let handlerString = '';
|
|
19
23
|
if (handler) {
|
|
20
24
|
const functionName = `Fn${capitalize(typeName)}`;
|
|
21
|
-
|
|
25
|
+
const eventVersion = handler.eventVersion;
|
|
26
|
+
handlerString = `, handler: { functionName: "${functionName}", eventVersion: "${eventVersion}" }`;
|
|
22
27
|
functionHandler[functionName] = handler;
|
|
23
28
|
}
|
|
24
|
-
const argsString = Object.entries(args)
|
|
25
|
-
.map(([key, value]) => `${key}: "${value}"`)
|
|
26
|
-
.join(', ');
|
|
27
29
|
const toolsString = tools?.length
|
|
28
30
|
? `, tools: [${getConversationToolsString(tools)}]`
|
|
29
31
|
: '';
|
|
30
|
-
const conversationDirective = `@conversation(${argsString}${toolsString})`;
|
|
32
|
+
const conversationDirective = `@conversation(${argsString}${handlerString}${toolsString})`;
|
|
31
33
|
const field = `${typeName}(conversationId: ID!, content: [ContentBlockInput], aiContext: AWSJSON, toolConfiguration: ToolConfigurationInput): ConversationMessage ${conversationDirective} @aws_cognito_user_pools`;
|
|
32
34
|
return { field, functionHandler };
|
|
33
35
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConversationSchemaTypes.mjs","sources":["../../../src/ai/ConversationSchemaTypes.ts"],"sourcesContent":["import { capitalize } from '../runtime/utils';\nexport const createConversationField = (typeDef, typeName) => {\n const { aiModel, systemPrompt, handler, tools } = typeDef;\n const args = {\n aiModel: aiModel.resourcePath,\n // This is done to escape newlines in potentially multi-line system prompts\n // e.g.\n // realtorChat: a.conversation({\n // aiModel: a.ai.model('Claude 3 Haiku'),\n // systemPrompt: `You are a helpful real estate assistant\n // Respond in the poetic form of haiku.`,\n // }),\n //\n // It doesn't affect non multi-line string inputs for system prompts\n systemPrompt: systemPrompt.replace(/\\r?\\n/g, '\\\\n'),\n };\n const functionHandler = {};\n if (handler) {\n const functionName = `Fn${capitalize(typeName)}`;\n args['functionName'] = functionName;\n functionHandler[functionName] = handler;\n }\n const argsString = Object.entries(args)\n .map(([key, value]) => `${key}: \"${value}\"`)\n .join(', ');\n const toolsString = tools?.length\n ? `, tools: [${getConversationToolsString(tools)}]`\n : '';\n const conversationDirective = `@conversation(${argsString}${toolsString})`;\n const field = `${typeName}(conversationId: ID!, content: [ContentBlockInput], aiContext: AWSJSON, toolConfiguration: ToolConfigurationInput): ConversationMessage ${conversationDirective} @aws_cognito_user_pools`;\n return { field, functionHandler };\n};\nconst isRef = (query) => query?.data?.type === 'ref';\nconst getConversationToolsString = (tools) => tools\n .map((tool) => {\n const { query, description } = tool;\n if (!isRef(query)) {\n throw new Error(`Unexpected query was found in tool ${tool}.`);\n }\n // TODO: add validation for query / auth (cup) / etc\n const queryName = query.data.link;\n return `{ name: \"${queryName}\", description: \"${description}\" }`;\n})\n .join(', ');\nconst ConversationParticipantRole = `enum ConversationParticipantRole {\n user\n assistant\n}`;\nconst ConversationMessage = `interface ConversationMessage {\n id: ID!\n conversationId: ID!\n role: ConversationParticipantRole\n content: [ContentBlock]\n aiContext: AWSJSON\n toolConfiguration: ToolConfiguration\n createdAt: AWSDateTime\n updatedAt: AWSDateTime\n owner: String\n}`;\nconst DocumentBlockSourceInput = `input DocumentBlockSourceInput {\n bytes: String\n}`;\nconst DocumentBlockInput = `input DocumentBlockInput {\n format: String!\n name: String!\n source: DocumentBlockSourceInput!\n}`;\nconst ImageBlockSourceInput = `input ImageBlockSourceInput {\n bytes: String\n}`;\nconst ImageBlockInput = `input ImageBlockInput {\n format: String!\n source: ImageBlockSourceInput!\n}`;\nconst ToolResultContentBlockInput = `input ToolResultContentBlockInput {\n document: DocumentBlockInput\n image: ImageBlockInput\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlockInput = `input ToolResultBlockInput {\n content: [ToolResultContentBlockInput!]!\n toolUseId: String!\n status: String\n}`;\nconst DocumentBlockSource = `type DocumentBlockSource {\n bytes: String\n}\n`;\nconst DocumentBlock = `type DocumentBlock {\n format: String!\n name: String!\n source: DocumentBlockSource!\n}`;\nconst ImageBlock = `type ImageBlock {\n format: String!\n source: ImageBlockSource!\n}`;\nconst ImageBlockSource = `type ImageBlockSource {\n bytes: String\n}`;\nconst ToolUseBlockInput = `input ToolUseBlockInput {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolUseBlock = `type ToolUseBlock {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolResultContentBlock = `type ToolResultContentBlock {\n document: DocumentBlock\n image: ImageBlock\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlock = `type ToolResultBlock {\n content: [ToolResultContentBlock!]!\n toolUseId: String!\n status: String\n}`;\nconst ContentBlockText = `type ContentBlockText {\n text: String\n}`;\nconst ContentBlockImage = `type ContentBlockImage {\n image: ImageBlock\n}`;\nconst ContentBlockDocument = `type ContentBlockDocument {\n document: DocumentBlock\n}`;\nconst ContentBlockToolUse = `type ContentBlockToolUse {\n toolUse: ToolUseBlock\n}`;\nconst ContentBlockToolResult = `type ContentBlockToolResult {\n toolResult: ToolResultBlock\n}`;\nconst ContentBlockInput = `input ContentBlockInput {\n text: String\n document: DocumentBlockInput\n image: ImageBlockInput\n toolResult: ToolResultBlockInput\n toolUse: ToolUseBlockInput\n}`;\nconst ContentBlock = `type ContentBlock {\n text: String\n document: DocumentBlock\n image: ImageBlock\n toolResult: ToolResultBlock\n toolUse: ToolUseBlock\n}`;\nconst ToolConfigurationInput = `input ToolConfigurationInput {\n tools: [ToolInput]\n}`;\nconst ToolInput = `input ToolInput {\n toolSpec: ToolSpecificationInput\n}`;\nconst ToolSpecificationInput = `input ToolSpecificationInput {\n name: String!\n description: String\n inputSchema: ToolInputSchemaInput!\n}`;\nconst ToolInputSchemaInput = `input ToolInputSchemaInput {\n json: AWSJSON\n}`;\nconst ToolConfiguration = `type ToolConfiguration {\n tools: [Tool]\n}`;\nconst Tool = `type Tool {\n toolSpec: ToolSpecification\n}`;\nconst ToolSpecification = `type ToolSpecification {\n name: String!\n description: String\n inputSchema: ToolInputSchema!\n}`;\nconst ToolInputSchema = `type ToolInputSchema {\n json: AWSJSON\n}`;\nexport const conversationTypes = [\n ConversationParticipantRole,\n ConversationMessage,\n DocumentBlockSourceInput,\n DocumentBlockInput,\n ImageBlockSourceInput,\n ImageBlockInput,\n ToolUseBlockInput,\n ToolResultContentBlockInput,\n ToolResultBlockInput,\n DocumentBlockSource,\n DocumentBlock,\n ImageBlock,\n ImageBlockSource,\n ToolUseBlock,\n ToolResultContentBlock,\n ToolResultBlock,\n ContentBlockText,\n ContentBlockImage,\n ContentBlockDocument,\n ContentBlockToolUse,\n ContentBlockToolResult,\n ContentBlockInput,\n ContentBlock,\n ToolConfigurationInput,\n ToolInput,\n ToolSpecificationInput,\n ToolInputSchemaInput,\n ToolConfiguration,\n Tool,\n ToolSpecification,\n ToolInputSchema,\n];\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ConversationSchemaTypes.mjs","sources":["../../../src/ai/ConversationSchemaTypes.ts"],"sourcesContent":["import { capitalize } from '../runtime/utils';\nexport const createConversationField = (typeDef, typeName) => {\n const { aiModel, systemPrompt, handler, tools } = typeDef;\n const args = {\n aiModel: aiModel.resourcePath,\n // This is done to escape newlines in potentially multi-line system prompts\n // e.g.\n // realtorChat: a.conversation({\n // aiModel: a.ai.model('Claude 3 Haiku'),\n // systemPrompt: `You are a helpful real estate assistant\n // Respond in the poetic form of haiku.`,\n // }),\n //\n // It doesn't affect non multi-line string inputs for system prompts\n systemPrompt: systemPrompt.replace(/\\r?\\n/g, '\\\\n'),\n };\n const argsString = Object.entries(args)\n .map(([key, value]) => `${key}: \"${value}\"`)\n .join(', ');\n const functionHandler = {};\n let handlerString = '';\n if (handler) {\n const functionName = `Fn${capitalize(typeName)}`;\n const eventVersion = handler.eventVersion;\n handlerString = `, handler: { functionName: \"${functionName}\", eventVersion: \"${eventVersion}\" }`;\n functionHandler[functionName] = handler;\n }\n const toolsString = tools?.length\n ? `, tools: [${getConversationToolsString(tools)}]`\n : '';\n const conversationDirective = `@conversation(${argsString}${handlerString}${toolsString})`;\n const field = `${typeName}(conversationId: ID!, content: [ContentBlockInput], aiContext: AWSJSON, toolConfiguration: ToolConfigurationInput): ConversationMessage ${conversationDirective} @aws_cognito_user_pools`;\n return { field, functionHandler };\n};\nconst isRef = (query) => query?.data?.type === 'ref';\nconst getConversationToolsString = (tools) => tools\n .map((tool) => {\n const { query, description } = tool;\n if (!isRef(query)) {\n throw new Error(`Unexpected query was found in tool ${tool}.`);\n }\n // TODO: add validation for query / auth (cup) / etc\n const queryName = query.data.link;\n return `{ name: \"${queryName}\", description: \"${description}\" }`;\n})\n .join(', ');\nconst ConversationParticipantRole = `enum ConversationParticipantRole {\n user\n assistant\n}`;\nconst ConversationMessage = `interface ConversationMessage {\n id: ID!\n conversationId: ID!\n role: ConversationParticipantRole\n content: [ContentBlock]\n aiContext: AWSJSON\n toolConfiguration: ToolConfiguration\n createdAt: AWSDateTime\n updatedAt: AWSDateTime\n owner: String\n}`;\nconst DocumentBlockSourceInput = `input DocumentBlockSourceInput {\n bytes: String\n}`;\nconst DocumentBlockInput = `input DocumentBlockInput {\n format: String!\n name: String!\n source: DocumentBlockSourceInput!\n}`;\nconst ImageBlockSourceInput = `input ImageBlockSourceInput {\n bytes: String\n}`;\nconst ImageBlockInput = `input ImageBlockInput {\n format: String!\n source: ImageBlockSourceInput!\n}`;\nconst ToolResultContentBlockInput = `input ToolResultContentBlockInput {\n document: DocumentBlockInput\n image: ImageBlockInput\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlockInput = `input ToolResultBlockInput {\n content: [ToolResultContentBlockInput!]!\n toolUseId: String!\n status: String\n}`;\nconst DocumentBlockSource = `type DocumentBlockSource {\n bytes: String\n}\n`;\nconst DocumentBlock = `type DocumentBlock {\n format: String!\n name: String!\n source: DocumentBlockSource!\n}`;\nconst ImageBlock = `type ImageBlock {\n format: String!\n source: ImageBlockSource!\n}`;\nconst ImageBlockSource = `type ImageBlockSource {\n bytes: String\n}`;\nconst ToolUseBlockInput = `input ToolUseBlockInput {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolUseBlock = `type ToolUseBlock {\n toolUseId: String!\n name: String!\n input: AWSJSON!\n}`;\nconst ToolResultContentBlock = `type ToolResultContentBlock {\n document: DocumentBlock\n image: ImageBlock\n json: AWSJSON\n text: String\n}`;\nconst ToolResultBlock = `type ToolResultBlock {\n content: [ToolResultContentBlock!]!\n toolUseId: String!\n status: String\n}`;\nconst ContentBlockText = `type ContentBlockText {\n text: String\n}`;\nconst ContentBlockImage = `type ContentBlockImage {\n image: ImageBlock\n}`;\nconst ContentBlockDocument = `type ContentBlockDocument {\n document: DocumentBlock\n}`;\nconst ContentBlockToolUse = `type ContentBlockToolUse {\n toolUse: ToolUseBlock\n}`;\nconst ContentBlockToolResult = `type ContentBlockToolResult {\n toolResult: ToolResultBlock\n}`;\nconst ContentBlockInput = `input ContentBlockInput {\n text: String\n document: DocumentBlockInput\n image: ImageBlockInput\n toolResult: ToolResultBlockInput\n toolUse: ToolUseBlockInput\n}`;\nconst ContentBlock = `type ContentBlock {\n text: String\n document: DocumentBlock\n image: ImageBlock\n toolResult: ToolResultBlock\n toolUse: ToolUseBlock\n}`;\nconst ToolConfigurationInput = `input ToolConfigurationInput {\n tools: [ToolInput]\n}`;\nconst ToolInput = `input ToolInput {\n toolSpec: ToolSpecificationInput\n}`;\nconst ToolSpecificationInput = `input ToolSpecificationInput {\n name: String!\n description: String\n inputSchema: ToolInputSchemaInput!\n}`;\nconst ToolInputSchemaInput = `input ToolInputSchemaInput {\n json: AWSJSON\n}`;\nconst ToolConfiguration = `type ToolConfiguration {\n tools: [Tool]\n}`;\nconst Tool = `type Tool {\n toolSpec: ToolSpecification\n}`;\nconst ToolSpecification = `type ToolSpecification {\n name: String!\n description: String\n inputSchema: ToolInputSchema!\n}`;\nconst ToolInputSchema = `type ToolInputSchema {\n json: AWSJSON\n}`;\nexport const conversationTypes = [\n ConversationParticipantRole,\n ConversationMessage,\n DocumentBlockSourceInput,\n DocumentBlockInput,\n ImageBlockSourceInput,\n ImageBlockInput,\n ToolUseBlockInput,\n ToolResultContentBlockInput,\n ToolResultBlockInput,\n DocumentBlockSource,\n DocumentBlock,\n ImageBlock,\n ImageBlockSource,\n ToolUseBlock,\n ToolResultContentBlock,\n ToolResultBlock,\n ContentBlockText,\n ContentBlockImage,\n ContentBlockDocument,\n ContentBlockToolUse,\n ContentBlockToolResult,\n ContentBlockInput,\n ContentBlock,\n ToolConfigurationInput,\n ToolInput,\n ToolSpecificationInput,\n ToolInputSchemaInput,\n ToolConfiguration,\n Tool,\n ToolSpecification,\n ToolInputSchema,\n];\n"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { Subscription } from 'rxjs';
|
|
2
|
-
import type { DefineFunction } from '@aws-amplify/data-schema-types';
|
|
3
2
|
import type { ListReturnValue, SingularReturnValue } from '../runtime/client';
|
|
4
3
|
import { type Brand } from '../util';
|
|
5
4
|
import type { RefType } from '../RefType';
|
|
6
|
-
import {
|
|
5
|
+
import { InferenceConfiguration } from './ModelType';
|
|
7
6
|
import { ConversationMessageContent, ConversationSendMessageInputContent } from './types/ConversationMessageContent';
|
|
8
7
|
import { ToolConfiguration } from './types/ToolConfiguration';
|
|
8
|
+
import { AiModel } from '@aws-amplify/data-schema-types';
|
|
9
9
|
export declare const brandName = "conversationCustomOperation";
|
|
10
10
|
export interface ConversationMessage {
|
|
11
11
|
content: ConversationMessageContent[];
|
|
@@ -90,12 +90,17 @@ export interface ToolDefinition {
|
|
|
90
90
|
query: RefType<any>;
|
|
91
91
|
description: string;
|
|
92
92
|
}
|
|
93
|
+
export type DefineConversationHandlerFunction = {
|
|
94
|
+
readonly eventVersion: `1.${number}`;
|
|
95
|
+
readonly provides?: string | undefined;
|
|
96
|
+
getInstance: (props: any) => any;
|
|
97
|
+
};
|
|
93
98
|
export interface ConversationInput {
|
|
94
99
|
aiModel: AiModel;
|
|
95
100
|
systemPrompt: string;
|
|
96
101
|
inferenceConfiguration?: InferenceConfiguration;
|
|
97
102
|
tools?: ToolDefinition[];
|
|
98
|
-
handler?:
|
|
103
|
+
handler?: DefineConversationHandlerFunction;
|
|
99
104
|
}
|
|
100
105
|
export interface InternalConversationType extends ConversationType, ConversationInput {
|
|
101
106
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AiModel } from '@aws-amplify/data-schema-types';
|
|
1
2
|
declare const supportedModelsLookup: {
|
|
2
3
|
readonly 'Claude 3 Haiku': "anthropic.claude-3-haiku-20240307-v1:0";
|
|
3
4
|
readonly 'Claude 3 Opus': "anthropic.claude-3-opus-20240229-v1:0";
|
|
@@ -12,9 +13,6 @@ declare const supportedModelsLookup: {
|
|
|
12
13
|
readonly 'Mistral Large 2': "mistral.mistral-large-2407-v1:0";
|
|
13
14
|
readonly 'Mistral Small': "mistral.mistral-small-2402-v1:0";
|
|
14
15
|
};
|
|
15
|
-
export interface AiModel {
|
|
16
|
-
resourcePath: string;
|
|
17
|
-
}
|
|
18
16
|
export interface InferenceConfiguration {
|
|
19
17
|
topP?: number;
|
|
20
18
|
temperature?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../node_modules/tslib/modules/index.d.ts","../../../data-schema-types/dist/esm/builder/types.d.ts","../../../data-schema-types/dist/esm/builder/index.d.ts","../../../data-schema-types/dist/esm/util.d.ts","../../../data-schema-types/dist/esm/client/symbol.d.ts","../../../../node_modules/rxjs/dist/types/internal/Subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/Subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/Operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/Observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catchError.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/Subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/Notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refCount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toArray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts","../../../../node_modules/rxjs/dist/types/internal/Scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts","../../../../node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwError.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../data-schema-types/dist/esm/client/index.d.ts","../../../data-schema-types/dist/esm/index.d.ts","../../src/Authorization.ts","../../src/util/Brand.ts","../../src/util/IndexLimit.ts","../../src/util/KindaPretty.ts","../../src/util/ObjectFromEntries.ts","../../src/util/SpreadTuple.ts","../../src/util/Select.ts","../../src/util/Filters.ts","../../src/util/IndexShapes.ts","../../src/util/Rename.ts","../../src/util/index.ts","../../src/util/usedMethods.ts","../../src/ModelField.ts","../../src/ModelRelationshipField.ts","../../src/RefType.ts","../../src/EnumType.ts","../../src/CustomType.ts","../../src/ModelIndex.ts","../../src/MappedTypes/MapIndexes.ts","../../src/ModelType.ts","../../src/Handler.ts","../../src/ai/ModelType.ts","../../src/CustomOperation.ts","../../src/MappedTypes/ResolveSchema.ts","../../src/MappedTypes/ImplicitFieldInjector.ts","../../src/runtime/internals/ai/getCustomUserAgentDetails.ts","../../src/runtime/bridge-types.ts","../../src/runtime/utils/resolvePKFields.ts","../../src/runtime/utils/findIndexByFields.ts","../../src/runtime/utils/resolveOwnerFields.ts","../../src/runtime/utils/stringTransformation.ts","../../src/runtime/utils/selfAwareAsync.ts","../../src/runtime/utils/index.ts","../../src/runtime/internals/cancellation.ts","../../src/runtime/internals/operations/utils.ts","../../src/runtime/internals/operations/indexQuery.ts","../../src/runtime/internals/APIClient.ts","../../src/runtime/internals/operations/custom.ts","../../src/runtime/internals/generateCustomOperationsProperty.ts","../../src/runtime/internals/operations/get.ts","../../src/runtime/internals/operations/list.ts","../../../../node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts","../../../../node_modules/@smithy/util-base64/dist-types/toBase64.d.ts","../../../../node_modules/@smithy/util-base64/dist-types/index.d.ts","../../src/ai/types/ToolResultContent.ts","../../src/ai/types/contentBlocks.ts","../../src/ai/types/ConversationMessageContent.ts","../../src/runtime/internals/ai/conversationMessageDeserializers.ts","../../src/runtime/internals/ai/convertItemToConversationMessage.ts","../../src/runtime/internals/ai/createListMessagesFunction.ts","../../src/runtime/internals/ai/createOnMessageFunction.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../src/ai/types/ToolConfiguration.ts","../../src/runtime/internals/ai/conversationMessageSerializers.ts","../../src/runtime/internals/ai/createSendMessageFunction.ts","../../src/runtime/internals/ai/convertItemToConversation.ts","../../src/runtime/internals/ai/createCreateConversationFunction.ts","../../src/runtime/internals/ai/createGetConversationFunction.ts","../../src/runtime/internals/ai/createListConversationsFunction.ts","../../src/runtime/internals/ai/createDeleteConversationFunction.ts","../../src/runtime/internals/utils/clientProperties/generateConversationsProperty.ts","../../src/runtime/internals/utils/clientProperties/generateGenerationsProperty.ts","../../src/runtime/internals/utils/clientProperties/generateEnumsProperty.ts","../../src/runtime/internals/operations/subscription.ts","../../src/runtime/internals/operations/observeQuery.ts","../../src/runtime/internals/clientUtils.ts","../../src/runtime/internals/utils/clientProperties/generateModelsProperty.ts","../../src/runtime/internals/utils/runtimeTypeGuards/isGraphQLResponseWithErrors.ts","../../src/runtime/internals/utils/runtimeTypeGuards/isApiGraphQLProviderConfig.ts","../../src/runtime/internals/utils/runtimeTypeGuards/isConfigureEventWithResourceConfig.ts","../../src/runtime/internals/index.ts","../../src/runtime/addSchemaToClient.ts","../../src/runtime/internals/server/generateModelsProperty.ts","../../src/runtime/internals/server/index.ts","../../src/runtime/addSchemaToClientWithInstance.ts","../../src/runtime/index.ts","../../src/MappedTypes/ModelMetadata.ts","../../src/MappedTypes/ExtractNonModelTypes.ts","../../src/MappedTypes/ResolveFieldProperties.ts","../../../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../../../node_modules/@types/aws-lambda/handler.d.ts","../../../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudwatch-alarm.d.ts","../../../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codecommit.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../../../node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts","../../../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../../../node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts","../../../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../../../node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts","../../../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../../../node_modules/@types/aws-lambda/index.d.ts","../../src/ClientSchema/utilities/ResolveRef.ts","../../src/ClientSchema/Core/ClientSchemaProperty.ts","../../src/ClientSchema/Core/ClientCustomOperations.ts","../../src/ClientSchema/Core/ClientEnum.ts","../../src/ClientSchema/utilities/ResolveField.ts","../../src/ClientSchema/Core/ClientCustomType.ts","../../src/ClientSchema/utilities/ExtractNestedTypes.ts","../../src/ClientSchema/utilities/SchemaMetadata.ts","../../src/ClientSchema/utilities/index.ts","../../src/ClientSchema/Core/ClientModel.ts","../../src/ClientSchema/Core/index.ts","../../src/ClientSchema/ai/ClientConversation.ts","../../src/ClientSchema/index.ts","../../src/runtime/client/index.ts","../../src/ai/ConversationType.ts","../../src/ai/ConversationSchemaTypes.ts","../../src/SchemaProcessor.ts","../../src/ModelSchema.ts","../../src/CombineSchema.ts","../../src/a.ts","../../src/index.ts","../../src/internals/index.ts","../../src/runtime/client/index.v3.ts","../../src/runtime/index.v3.ts","../../../../node_modules/@types/argparse/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../../node_modules/@jest/schemas/build/index.d.ts","../../../../node_modules/pretty-format/build/index.d.ts","../../../../node_modules/jest-diff/build/index.d.ts","../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../node_modules/expect/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/parse5/dist/common/html.d.ts","../../../../node_modules/parse5/dist/common/token.d.ts","../../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../../node_modules/parse5/dist/parser/index.d.ts","../../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../../node_modules/parse5/dist/serializer/index.d.ts","../../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../../node_modules/parse5/dist/index.d.ts","../../../../node_modules/@types/tough-cookie/index.d.ts","../../../../node_modules/@types/jsdom/base.d.ts","../../../../node_modules/@types/jsdom/index.d.ts","../../../../node_modules/@types/json5/index.d.ts","../../../../node_modules/@types/minimist/index.d.ts","../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/prettier/doc.d.ts","../../../../node_modules/prettier/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts","../../../../node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/@types/uuid/index.d.ts","../../../../node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/@types/yargs/index.d.ts","../../../../node_modules/parse5/dist/cjs/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","31973b272be35eab5ecf20a38ea54bec84cdc0317117590cb813c72fe0ef75b3","603c6254e314cf8c392495021dc0b57dbfbe45eb8ac8cab9eb11e8d1ee763176","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","69cf55f548cd651cb445100b09198523fb5147f5b6008843a820db747ec5c9cb","93a2031dc8fbccea8b43fe9b55f62c7dc2a917cf16f0355f747286d13fcade5a","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","62aa16838ecfc60edadea0fa88699db5ae09fd8f7212e73fdaa95295a49f726e","e94f611a734ee17c3bcb85719af71eda0d96f1c4643c258dab264b6588331e0d",{"version":"0b53491bd938b0a987cb883412504fb013a17352e708180ee28ef2dc318180a2","signature":"7dbe229547f104c09c261bfe99ab95b3cd56eec8fbc40ba2f59b8f751482b4dc"},{"version":"c521c7d794c01e15da7dc8b9c35dfe41964baeab58b4b51fda74585e963190df","signature":"77ef8dfcc23520ded7f9e6e56363a145ca1d2b04d75db324245a936ad5771e1b"},{"version":"d8a0cf0f5191371ec6ed9374e708af2144cb78580ee3b11220b58b240796b098","signature":"b114308f5fae20f2692911785261f930bc01c86688a1a53127691ed96f79f5e4"},{"version":"b1d2011a28b5d9ccef790e75772f22b7bfbc0f69eae65e8638586babf13e6257","signature":"9a3dfd675e2e1a44c2506c3a27310b2ae7aa0d92fbd0c1c9d148715921f564eb"},{"version":"9a54496184bf54df3dd5a9fd8ae1f26ead31c964fca8bc8686492106f491c2ed","signature":"16537327e875af561284d17cec381371213b8cdd203b8a845d710db14a246bb1"},{"version":"d86ebf691a8d5f94eef2568a24e0e6ddae92bc83405b8da4bd67e153f0a5ddc9","signature":"edbad069bed79f29340ab8ea6c6acbc78bd6834d20ebd024e858026508193ed9"},{"version":"f30f1a7cf94d7df1e6e73268354643681c2a77029bd2a9904f738077061e8741","signature":"788b1424f25b51d11c3a2b391f149f176eb785c6ac01b9ad20453fceef98d79d"},{"version":"f2e00cb1db30a0a3b2290fc46c0f8b2a516a64bf667a9a157b71e1713f27b430","signature":"2540612ec964ef74af399cc73068b09f3b66917dd083ce066ae46de3fc4bd5df"},{"version":"2d97ab03b6d2fcf6b6354c702574d62b7276520d3fe6bcc8cb8a32d204387292","signature":"af9e2d585e005f37c808df8c4300da611de00d30fc4f0a36b20bcd3002e344d2"},{"version":"e6879ddd3a3ca42201092d66bdfdea59597365a96ee2beae397be9b063bffe47","signature":"2f3668d53d4a13d5007131b82911584b90cc3300861555bf677979c99422d69b"},"d3ab48a80622e0b2016b392d0da4c8ad2871bea39fd428b84434815aa6a7b8e3",{"version":"7603f29b760420ce677778cd849284fd04a9cc24c2d6bd87beaf2656836dd969","signature":"f60e6868b219b46e097701e55f1308a062eea13711460edf972353dfcb7c2398"},{"version":"a6ee943f16067d45e5cc9fca8142ea5f13d82accdae6efd25d7b074d164a6516","signature":"b0fa112cfa82c42ce4e36118afa9c1e81ed4f4678d4f8343ddf9d28265ca38c3"},{"version":"d8a55b60c544a8a7d97323faadd4056a52283a3e6cd1aba4ec749b08a36fafe7","signature":"5c0450e41a3c8eb573ba2dcfda9fee8d40efc7bad2999bcc958e33076d88e356"},{"version":"9af7dc55eb285a0f47d5fa9e685725d67263b4ed71c19d78b9faff0ef1d92754","signature":"c650e4f7b6fac09929ed26b2055f7e60f8aff8aa55d394825436b58efbc7362d"},{"version":"5510c812a153aaf2a53e5b02f748bdbcd73e7f66f8728a9d970f3306ccb08c3e","signature":"8103a7f63782466bda54fdf80af5ebbeb2bd5ba90db7ecb3ff0c623457aaaf4c"},{"version":"17c3cbc4f86f7f7f151ffcd75271197bde4c27558cd33be166ca2996dfede3f4","signature":"c4f6a7b22af4e416d0207d5cd0041b6983d9cec2f9e798aa78dcd8903025f4f1"},{"version":"2cd1eb1921345adc2d35496621f28484d0360c7d85eb930327685af2ee92d51c","signature":"f049a46afbbbeda0e1ac53ab4111419edd19169aa0f37d428aba3740bc36938b"},{"version":"f36e79736bd23aa5d2779cab92cf8c0ffa14b1d672e0d73f68862b18edfbc91e","signature":"da9ab6b040cdb40a318a1146bd5d0411f47218c87ffee7b74050e89fedb5e046"},{"version":"56354c44b26b304c2b4fc23eed3e459a52269de04aa529a736fbc723c5a1f6fc","signature":"c6c8700777473b70dfc5c81186f64d86eb5de9b48a909c206eef16423e9f4889"},{"version":"44b4975be1bedb0dfae19dd4757f633f3092d13259b458939cf4cce6c41e3e1a","signature":"5f489dcced15f3955221dbbf70cfc6c1b24ea72c6817f532fc626fc026e617bb"},{"version":"b6023def5d14779a7c0dd83e35445d47191609f1c041ef410cda1671b4339742","signature":"4e9e0514c4d9982684df80e989e8ac53ebc533fb828f2d6519450b121522951c"},{"version":"eca3bdfe1123db7688e4e4f2d86c64b507b5580383299810eccdb6884def6257","signature":"f4c634d7e3aa42822aa15c182f1bf63aebdd75e7a2f6469523b39656f79699e8"},{"version":"7e0a7a4d24df652257464320f52cedc67c34fda434304089af209c2b1891e8e3","signature":"a6187b3f8c76c40e06de83dbca2602e0e93af95b4a34528ac9febad9beab8cd3"},{"version":"551878d50d69548a6eed165ab6a4aac7e6eff179d67b441f3d1c172b1e23e71c","signature":"1db69091113e639e148f7a8d93baa8960bdd63f97f56fe4e4f2c0a7f5384eeb2"},{"version":"0e9e82e77526617ea75e056e84da3cd90b36ae340506dba3fbcca50bad3f6ff1","signature":"75a07a7011b50fa72c4729dac1cd8fe5feac27e74bf0b0aae296b00180e0bee5"},{"version":"da574122f80326bed70e4e7c4114ef471caf692d40d5b1630a5854b4cc583975","signature":"c1727287414c429616faa26f44ae6b656da6d689314ee4c5fb0efc894bfd8e1e"},{"version":"ea3841a73747cfe318819b40f8e28726926abc8be52d79060b59940a46302aa9","signature":"12032167891373825044e19a19bc802061be19ed4a08f7bb9b567ce68563d2c4"},{"version":"386d8963e6b3a605efdc64d362580521815916fc2bcfea098a34912043481549","signature":"4c090b42a136757776aa871d9d7a36d3e11909f9e328874afc9bb5aaf983a90a"},{"version":"197a6ef9933ca11ad377c8f62ded7c96593915b31c8fe7608ec4c10ad1e830cd","signature":"c5b321e5db3d846f13a0257e1f1cc9697094729c80c6842aa1b353aade25498f"},{"version":"78deb773c8337e7d4d1fe7897054b4ce387bde8c0ab6dd9fcc1c76eeda3c417d","signature":"a193d5c2e4e6a2d562b0aa23df25f8b918edef0915433518e15df601a974d37b"},{"version":"9d28314aae1cad38cb6b8907361413d809674668404a97037467edb1946a69d5","signature":"9d0a23618d1f94a40721f2413a2a123f8db1ed8e54c0a18f89a2c40b702e5a75"},{"version":"04acfd98f9505f49e8a1f1723a0338332477f6e709ac5fec1dfa9c41483a032d","signature":"ea5fade0a34a91390d456e8e1878132227f9806053c671506aeb5975c0ba488e"},{"version":"e7d292cdc70dc66431848d0be2cb76b7346adc902f8b0990b7023c5bbdf4cc8d","signature":"c865ebe46e005f5646098e5cd8992bd72e83d8f4c5484c4e4be18944a5851f8f"},{"version":"6c74b09c289f932343c3c3d63c8616e81bd9f29a366edac85c9e6fdf80eb5b71","signature":"066cd166a62e76b7e7baf7ee4a5c19ea1cbb9b4e356fe2a76b6adf009ddbbd2f"},{"version":"72e9e0889730a1db3625437912b3aece2fb5bd475508d8106cf545d9e213eefc","signature":"43705009fe25d283024d0f392e29baaea0364f2298241e4b805e54bfcb22b781"},{"version":"425c93fb43ac2da0d429b47bd90e488d2b74378fc9af586117c65c96b4dd461c","signature":"1a8b4694524ead16c54871b6528cd9a4278587ff0b3131159d2d2573c6426ff6"},{"version":"5f4ecbc228d4f9761164fb8ed086873145ac71c543dd3af32eb1c890e87b0c26","signature":"b2e21a6cc121e497ae8bb9fe920e6240bbe00a9b7d68a21ea0bdfd11a4c83b2b"},{"version":"67760fa96e0c7a63fa6fcb4d65b3a258c5c6e7c6ca3a2d723e1e7a4c8a5a727f","signature":"e6a5a0b0f2380fdcb3e3def499eea9f219f09bd9432ce8bfac84ce40e8b9e22d"},{"version":"dac38da87875a9da46b71a9fb65fbf883d5ef9de2553cdee9c6d0c2d4ac4dab9","signature":"a9fbd92e9a4b15394252a764aed959d8a42416ac97b99f8b6f9f027289365fd6"},{"version":"446f19bbac83ecfdf680aacbced2d0fb4550a3f3a6b9f5d59ef27fa22f7d6cfe","signature":"a8daa4f8e47fc38ccf2e6956ee63bd06ee7cd6e35cc791df1dda55d16503dd7e"},"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d",{"version":"873499658a5c6330c4de35054888bb23f6f539b0b677e5aa1ba653246ab59954","signature":"7a495d719202aaaf00563ecb16e134016e744b72dd8a597db9676577bc7ad276"},{"version":"ef32e4fcd4e789e11708c15258f67c2db31a53e27a8dc995c23c197e16741d5b","signature":"7f02bec382e751691fcb43d17d137a7c05e4469bc2bd5265998f5a901262afc2"},{"version":"b48068aac0edf03dbbc3aad30ec1dedaab8c1cc556328c0e5d9b40cffd64c598","signature":"10aeb5320b8e9da64570afb310b60654d7e29e67b1a082da9c3f0ec7a4b802ed"},{"version":"b4ad9020f11ada489b6e22e8270a6925de08be15dc92ae6460f5b7596a42bfa1","signature":"c90fa12f4b8d12ee07ffffbb12db3cebaca3c1c710084254a30eb14144cfd67e"},{"version":"a8aa3e50256aa2729aecd632e64a0ae6935cec6db3ae70d4a314d50b4f7874f2","signature":"e21d236940ccbf6441efb49db767d319861bcb80407d32ccb3b0aae699bb4064"},{"version":"96111405c8c67eccdae7912966902a74678b8c390ce6e5b877858cd6cddee103","signature":"958776deb2a1bf56dc7175d5c4133974de942734fa2f516bf6a9ed472fd76c4a"},{"version":"b848b535bbe4a2d3dd79bb14ceeaccc90d5da105d900600183f70671d3461306","signature":"6deb3a1ac7dcb839228782e9a84ba8921735bc61d7b88eed0dd87baad7c11b33"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1",{"version":"78e906dc2607bb4b69b7c18f0e7e1e7284a082660ca6a7638a3c4f2cbeea7ae7","signature":"f9a151e1241f20249b780d0ac2d0bfd841a4b04ecb53332eafc8df7f730a0385"},{"version":"3b64c04d6f7484395d39f1f52bee792dd6eb9ce7b7307937b035efcb039c330a","signature":"cc7d0a2b07d32292af3fa524e6a2fdfc138898cfc76103dfc9830524b047091a"},{"version":"82a561fc3c2aea503d7e02b24f04c09f9e4c411b4e1572fa9715b116e2142319","signature":"94b48dfa6ccb1cef1eaad5c920f6908c1d8fc1aa5537d51cff6466be7c0a40ca"},{"version":"4b85b8ebef706e378b7a22967546bbe26c7358fb8201caf9da897fa275174fe4","signature":"0def07826cc47e4df2e56a0f1a780664e0cdfb216cc1d4162f35965a9799cd48"},{"version":"60a2db9db43c7f862a9c3eeb463c639af239b76ad77eaeee241991ac2b07d66f","signature":"16253c96da9a643f89c04e2821d49a9b9c3aa0909e44a2724a58ae88d82b34c2"},{"version":"4ee46cc21f6756d8a223e5c74c68f9ad36ced0f8b9b7dd496beddbe56f332ab7","signature":"eb22a112af43cfd128529de7afdee7cc2fe50ac81027ae0c5714e670d0d6d594"},{"version":"81dd0f659ea4ef6c870e2cb86a8c2280bcf72a584b06abc72e640333fc5cb12f","signature":"8d492ddbaa338fb9ab85df00a7e50a70ca6c249855bf210bab71849c40a7ada8"},{"version":"4b70a94a01f898aa66fb8cc650a895f8fe78a20dd97e19880ff04529da49d82f","signature":"f8167643f786a0d82bfaaabbbfb9897de98b4ac79d979872ed5baef5902dee21"},{"version":"54f563f0939efd80be37eaaef57c3e673746c41f3e2c0403199fc3ad569a6e37","signature":"1da6a2a6a409371673ae0abed41cf39fc5c5b1f3fc91cf6e7f638af2771956f1"},{"version":"5b5e66da936201f4549e36311210e771ca73a31f78d7cd3756515986f6271c84","signature":"e59e6653e1c69629404cd149e8ba0f25ce4595e068e20bf1c66c8b32c7f9290c"},{"version":"f994a63cc461609b7ed072f7e256fce9bbf5e55ae65581adbe1000a3a98c1674","signature":"7d0e19b2b9e1cf5eeae0da11e6ecfc5165d466da9e5e3b6ec450723f56fe6cdb"},{"version":"01a75b3030c190d748f3196261df22ee8763f46b94d17c0ba95d7ab5288ae3d2","signature":"189955b5eae491427e16f84a9a94d7141860c273806a2e366b9dc5240124e4ba"},{"version":"a0e28e3628b04b755a38bfaee1d1bfdb54b5050fa8aa1584dc3c585872e47505","signature":"cbd5f45747b457c76a6ab7f1bd0565626fa2e61800b7d5873e040c8e0663a28c"},{"version":"5ec6a4a4a994ac1f5c64670159c081d9c3e04063deb6079f548ba26e8a2c7211","signature":"36bc53ecebc46f64f59c2460d44af1ad71b92a8332fdd2d00b4f458a9e743be9"},{"version":"dfbc83e7bf4c91cec4b5814ae42ab4a725f97b3e6eaabc3dc1762fe47a39e863","signature":"79325082ebc3a29df9cd28ee124d08b3365c02cd39b18304aa874381eeb5635a"},{"version":"ea7c51db5bf17d891ab0570f0fa2ae80811ab65dd0b64eef8053a8e1716f6b0a","signature":"5b71ee337f5a2615eeb280046d0428662bfa4a6c357b813163bb2ba90eda20a0"},{"version":"a087d92fb6ec29deb5b8983da96a323efe406f5e846d9244be2fc306872194b6","signature":"28878ea906ac366799f88e785de75f3a642a4b4ea0d5ab095f30af414db67197"},{"version":"b79f4011078863da2cc33a8b1aec242fc3c0d6866f2edee21475d9691cb43426","signature":"de0ecd4c040bc4a0f2c1aa7ce991e3b838f58223cc6a84418b23904fb551f58a"},{"version":"5c33d86857a49be6f01e9e7481c1bb43ac3bec75b79edfb324378a797638cf55","signature":"e5d8c9114927e2380e4fba3efd3cad8217345d5c638ca3a08fc8a2ff3806f2c9"},{"version":"b1bbc9029462ba053e2576a4a4e9e9ccd9abdefd7604d07cc2e61dda0d13739b","signature":"a6f1292532942b14e80a4af706943c0a44f573a5381b6958c705676a988c2b08"},{"version":"afefc730a33e0b2295f5dd40d50a93288461d9e86da59424ce32356a64bbf4f5","signature":"396c3a317818feddcb832e10691ad78c88d23fc4fb34b112861b6c6f02d741d7"},{"version":"5c5ca9e3241d6ca770120bd993fad2142fefa1a082fe302f2709116bbb35b19c","signature":"92cc87ec79d7ffe7867b4a662f84985422aeae938a6ef24de719a8495d3e7c14"},{"version":"09ef1d5f5c8a4b816b4385cae976e17dc947e1d14a944eb4dabf4093ce72f24b","signature":"3a6a228e17743f63cd572997a9d4f0c14c9a0ba1f700455381f3a4d94765e1eb"},{"version":"ac76e93f7da4c4b939dc470c41e58c5faa7cc0a285e0059865fe190707c9f260","signature":"7b484d72e61ffd37956f976f21c6d1eb602c54c2388432d0647de246a6c7bdf2"},{"version":"08565e14cba75ac76753fb32c502a842c9d855fbcc0f751e344c31c2222d13f8","signature":"4ef805c7c1969f34cedd231f3137ade8b62b44196dc4aaa2cf87e2807e2a069a"},{"version":"6de3fbda5b0a21fe95945f454caa7e0f7bc9425217f3efd78919b1ad529d1a71","signature":"a8193b385c6b59abb9b95f5c38bb9aa5b842fd5e03b24625e3af9dd20043576c"},{"version":"2dcff61b1b0c23169712ee8bd504f548265b46aa6184cd0289e04e4723f23862","signature":"2c29308799eaf95c363024ca5532f345615f11e354bec61c2aa607ba3bf82079"},"78ef0198c323d0f7b16f993ada3459f0e7e20567e7f56fe0c5ee78f31cb0840c","01dea450d742aa55ce9b8ab8877bbda8eb73bf88609e440cc34f6f59f35080db","5ec614ed82e045de15417a47e2568be5310d43d4764ee43d295ea38caafbfd17","b788ef070e70003842cbd03c3e04f87d46b67a47b71e9e7d8713fd8c58c5f5ec","583d365dc19f813f1e2767771e844c7c4ea9ab1a01e85e0119f2e083488379c2","16ab5b20dbc2b0860c3c59941570e616f8a6fc31a689fdc8c1b984b96dcd11af","0dfbdeb122565d1b0ecf42a04648c7c370a880ea27b74b8c2a87cc9b9f73398d","58c7f7820dc027a539b0437be7e1f8bdf663f91fbc9e861d80bb9368a38d4a94","f8e6a8fa14ad7cfab128f9922505b57fb4fbd82828047c46d7137c066c9bff21","57ab70cf1fcc245d66577501f0846fae49a953c92f004e7927e5ea7bb57c6a68","bbc49fd9dc6ee162ba3d270c834398e0c1d44e657ac4edfa55ac837902b7e0da","6993f360de4984b6743764fad3b88246d5dc6cfa45567783fc23833ad4e50c13","f11eb1fb4e569b293a7cae9e7cdae57e13efc12b0e4510e927868c93ec055e82","715682cddbefe50e27e5e7896acf4af0ffc48f9e18f64b0a0c2f8041e3ea869b","6d2f5a67bfe2034aa77b38f10977a57e762fd64e53c14372bcc5f1d3175ca322","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","33859aa36b264dd91bef77c279a5a0d259c6b63684d0c6ad538e515c69a489ec","33fa69f400b34c83e541dd5f4474f1c6fb2788614a1790c6c7b346b5c7eaa7dd","be213d7cbc3e5982b22df412cf223c2ac9d841c75014eae4c263761cd9d5e4c0","66451f9540fdf68a5fd93898257ccd7428cf7e49029f2e71b8ce70c8d927b87a","8a051690018330af516fd9ea42b460d603f0839f44d3946ebb4b551fe3bc7703","301fb04ef91ae1340bec1ebc3acdd223861c887a4a1127303d8eef7638b2d893","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","fc26991e51514bfc82e0f20c25132268b1d41e8928552dbaed7cc6f3d08fc3ac","5d82bb58dec5014c02aaeb3da465d34f4b7d5c724afea07559e3dfca6d8da5bc","44448f58f4d731dc28a02b5987ab6f20b9f77ad407dcf57b68c853fe52195cd7","b2818e8d05d6e6ad0f1899abf90a70309240a15153ea4b8d5e0c151e117b7338","1c708c15bb96473ce8ec2a946bd024ecded341169a0b84846931f979172244ba","ba1b8e276abe5519e0ba134fd0afba6668ba26d8d5a1fb359d88aff6357457c2","dc187f457333356ddc1ab8ec7833cd836f85e0bbcade61290dc55116244867cb","25525e173de74143042e824eaa786fa18c6b19e9dafb64da71a5faacc5bd2a5c","7a3d649f2de01db4b316cf4a0ce5d96832ee83641f1dc84d3e9981accf29c3a1","26e4260ee185d4af23484d8c11ef422807fb8f51d33aa68d83fab72eb568f228","c4d52d78e3fb4f66735d81663e351cf56037270ed7d00a9b787e35c1fc7183ce","864a5505d0e9db2e1837dce8d8aae8b7eeaa5450754d8a1967bf2843124cc262","2d045f00292ac7a14ead30d1f83269f1f0ad3e75d1f8e5a245ab87159523cf98","54bcb32ab0c7c72b61becd622499a0ae1c309af381801a30878667e21cba85bb","20666518864143f162a9a43249db66ca1d142e445e2d363d5650a524a399b992","28439c9ebd31185ae3353dd8524115eaf595375cd94ca157eefcf1280920436a","84344d56f84577d4ac1d0d59749bb2fde14c0fb460d0bfb04e57c023748c48a6","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","35a0eac48984d20f6da39947cf81cd71e0818feefc03dcb28b4ac7b87a636cfd","f6c226d8222108b3485eb0745e8b0ee48b0b901952660db20e983741e8852654","93c3b758c4dc64ea499c9416b1ed0e69725133644b299b86c5435e375d823c75","4e85f443714cff4858fdaffed31052492fdd03ff7883b22ed938fc0e34b48093","0146912d3cad82e53f779a0b7663f181824bba60e32715adb0e9bd02c560b8c6","b515457bebb2ad795d748d1c30d9d093a1364946379baf1fbb6f83fd17523ed5","220783c7ca903c6ce296b210fae5d7e5c5cc1942c5a469b23d537f0fbd37eb18","0974c67cf3e2d539d0046c84a5e816e235b81c8516b242ece2ed1bdbb5dbd3d6","b4186237e7787a397b6c5ae64e155e70ac2a43fdd13ff24dfb6c1e3d2f930570","2647784fffa95a08af418c179b7b75cf1d20c3d32ed71418f0a13259bf505c54","0480102d1a385b96c05316b10de45c3958512bb9e834dbecbbde9cc9c0b22db3","eea44cfed69c9b38cc6366bd149a5cfa186776ca2a9fb87a3746e33b7e4f5e74","7f375e5ef1deb2c2357cba319b51a8872063d093cab750675ac2eb1cef77bee9","b7f06aec971823244f909996a30ef2bbeae69a31c40b0b208d0dfd86a8c16d4f","0421510c9570dfae34b3911e1691f606811818df00354df7abd028cee454979f","c61d8cc814035424b5d55348b6aede37074151c408de931ac3f63c7b6f761efb","d604d4dffd0b0f734e9d3a8413261d88af13cdddb329f2d708a851b495ab4614",{"version":"4036bf0e419d9615b67c4d9d317e441b51467fcc68f71c015a6da22fc4903fb1","signature":"170f115d24d30c7664516fa1dfa17251261f80bf014bf58bc1c2ee15c464f6ad"},{"version":"d5921ba2d2ed0314c33ec5d9acd91d1877fb625d0617750971ceb6cdf042277c","signature":"b5bfd698b1238027630940c9529a4fbe6a04a9dfc1b38bdef6f794bdc7d72b98"},{"version":"88f32ab74a9b3bff0d97fbd440bd7c39bf3b14a97a1f1488cd96c13e98bb3e8d","signature":"67024006018d74406bd928d8885899632b5405d576086222b8e6a97eb6f5c2ae"},{"version":"a986373783dfcf56e02e140b45ecfb25178b38da26a62ccb0c4c2cae4298f899","signature":"954e8bba06c8dc3e287894aeca8ccfb45cb92549a2930b9ffc34432f1d595be1"},{"version":"e684a955cdeaf02f6937106bd606bf44e9ce0cfe69986167319351dd6dd0c3b3","signature":"580fe072324990362dc7d9ca35eae20574207a8c823e3b3c992acf31c6db942a"},{"version":"7151d269ea192dc9031058dd7bc2de10416316f3897c42179d730bd0241a8880","signature":"6bc3d379b193848044dddf5ae9fab89f3f133c78a17ca79ad9724cbcc81c575f"},{"version":"f9598045256d4edc88b292c8eb8b8b318a79cf2cd1270b0aed44a4377fe0ce6f","signature":"3c22969b04f046424f386123813f62ad1b0b74a42816a254a3dc6a94dd42ee67"},{"version":"dcbbb75ead0d0f65c5d1c1f366e0aa8d1131f20e2e444972fa4662038a591a21","signature":"1fbf4f3a7ee1bfc6548e820ec8b4493de3983734dc76a0ca49b62946e572085f"},"60891ee0ae6e5cd4bf8d066d0cef6d3d733e8c8b20da11b8abf1d3ad1fab508f",{"version":"3c18604f0df41708fd95a22e72e4cdf6600ec70ee2654c5d0a6a07646d757f39","signature":"d051f49b2c625a8369a70b3e22221fd07a669b29b9a7273c002a8dae4c1aec7a"},"48af1f75784c2a10db50507b21884630a3e48e85fc4b096c338e3c2e44ea99f2",{"version":"2e0790b4c14c16a019c2cbd4fd98ef6d34a52406d905004fd541ccfb29ec0e49","signature":"e7e94a05459065ca72ba1f90dbc7fa6e91e7a88d1ec5012ccc7dddef6f3cc1b8"},{"version":"78aad34ec7d2cc2c5f6a4d9aac4e735f667ac41035f6e25ac67b9bb8c091c95e","signature":"20cd837c1118b527b377ba86ec6dc7a2450fdcc382fab2bae381260a3d3ce56b"},{"version":"6a19bb648c51b84252c108eb06d9f35de39f83e3bad66ccfe48c64e3cf12bfdb","signature":"c54fac4e1655c57995da732235caf775492283a8486dc7c2506cb603c96710c4"},{"version":"988dd89c60abb3bc917951f0fe49f4299f57aa32289d780d98ad54a480f99716","signature":"df34b4fe610c1a0a274bfede8745c1cf23c1ecb3fd13586f7d5c38d6e3d149d6"},{"version":"bbcfed1cb75b50ba05a67c8afc037d1d6f82d6f43c074970de585ed66320c7ac","signature":"589d6c7d67c4e43174a675135b6af6b3065e0a6441ad7910c33d648c310f3fec"},{"version":"efd65b596f122ee913658d36252874d2e573b62174f1fb38cddbc341ac2fb78d","signature":"1724bc63d938deca40d91f9b7c81258f1346867a3b34782a6c1cae0ed61813ac"},{"version":"61205e18c99767c481977119d54568967048e9ae2d10a90783be788fdcf50d76","signature":"6f7feed995197172290917a947f5f25b8637ed16dd93b08bdda99c9a9676d512"},{"version":"36ae9df404113fa82027832ce1b314a63c698ecdf94a006bb0829f05d544c070","signature":"b5da953a19b0f4c753e430286cd0e16f9c2610387032dc29cb22f4687708b763"},{"version":"1bf079760a070b7d3c0435c181cd951b97c086d68263f03082a558d5fcf3f1c7","signature":"0a64aef02427fb872ddde01c196f84b79c2e207ab2224e7768e028f022721be6"},{"version":"621dff8f2cff079a220c2ba4a4324c1beee41c5e2d343a484f293fbe0c2445a0","signature":"8b7e06e1174c036f8b96871655d5a701977286116909fe004198a1e65c6a7f6e"},"1101f97da522756169c4e6cb9736fa8e6ecb87d752298568e76841b1b31c3f46",{"version":"d863bad0c0ccb7a5fbdbbf9b7fadee84fb8b074ca38d7291d1da71690fc85ad0","signature":"1cb9b1f985b4fb6c7e35adfbb687da427d4cd5b3628c53bae57dca611d22f92f"},{"version":"c8f0ad112bfd701598202def3f181ea89962cffebedc53d8216daf85e1dba0ef","signature":"2fe24dd8d208d19e18e245bc1fa18cf3d09ff94e134a6cb999b04960fe00c3bb"},"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","e74998d5cefc2f29d583c10b99c1478fb810f1e46fbb06535bfb0bbba3c84aa5","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","43d058146b002d075f5d0033a6870321048297f1658eb0db559ba028383803a6","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"dafc58ee47fa25dbc68b27c638bd6153dd7659021c164f64b7760757e9f5a6ab","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","304504c854c47a55ab4a89111a27a2daf8a3614740bd787cc1f2c51e5574239c",{"version":"95f9129a37dcace36e17b061a8484952586ecfe928c9c8ce526de1a2f4aaefa7","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","ed3db4eb7ad0466e19df82d9ee5c057d78df954283004783932d75e8fa4058c5","278fe296432b9840660d6e0d1778b4b4897a591d4b910a5f7ac8db0b476a8af7","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","fd7a7fc2bb1f38ba0cded7bd8088c99033365859e03ba974f7de072e9d989fde","6cf42fc3765241c59339047a45855c506a2f94ee5e734bbded94ddcafc66e4c5","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"cce14dcba2c2cb1059977ad65cf9caef890118cb20e35c4cf420bf1c83f27c1a","affectsGlobalScope":true},"9d604e6f853b64692415a61662d8490cc6057596ce7fb52a3a2ce878e376586c","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","fb862b9a2e78754cf44b770ba6f194987d63c8d4cd103c6c05534faa4120ae98","91479d2a9bc09df0091b5e24af57cb462cd223e56498d16e9efdaebd587fa81d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","c6f77efcc19f51c8759779b6b6ee0d88046c15c15dadac8ffed729a6620daf39",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"e0cc19f50900706e7aae038565e825f2014ac5325b99b3daabf8ecd5d3d09f1a","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"645baafeaed6855c8796fcbae4e813021c65f36eaa3f6178535457a2366f6849","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"5a6fc2089f515b39aaa208339421669f61935cd661e356ebee49240be85091fd","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","3df5b34f3449733bc4831b8d670f958a045e7a3f5d7b0e21991ef95408dbec13","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"1fe4f59d471c69fd533049505081f7e5d6d56486416b12aafb22ba9616034ab7","affectsGlobalScope":true},"3411c785dbe8fd42f7d644d1e05a7e72b624774a08a9356479754999419c3c5a","8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","33f3795a4617f98b1bb8dac36312119d02f31897ae75436a1e109ce042b48ee8","2850c9c5dc28d34ad5f354117d0419f325fc8932d2a62eadc4dc52c018cd569b","c753948f7e0febe7aa1a5b71a714001a127a68861309b2c4127775aa9b6d4f24","3e7a40e023e1d4a9eef1a6f08a3ded8edacb67ae5fce072014205d730f717ba5","a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","382100b010774614310d994bbf16cc9cd291c14f0d417126c7a7cfad1dc1d3f8","91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","4fdf56315340bd1770eb52e1601c3a98e45b1d207202831357e99ce29c35b55c","927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","be6fd74528b32986fbf0cd2cfa9192a5ed7f369060b32a7adcb0c8d055708e61","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","6f5a9b68ce8608014210f5a777f8dd82e6382285f6278c811b7b0214bbcac5bd",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","2f848b4e660b568651a6350565afc8ac5b0644853a2a863862807602cf244a05","e7049308a11ff36ca7eee4ff33df35106eb108018ea4cd4cdb00efe8e9711ce0","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e"],"root":[[245,285],[289,295],[297,323],[382,405]],"options":{"allowJs":false,"declaration":true,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitHelpers":true,"noEmitOnError":true,"noErrorTruncation":true,"outDir":"../esm","skipLibCheck":true,"sourceMap":false,"strict":true,"target":7,"tsBuildInfoFile":"./cjs.tsbuildinfo"},"fileIdsList":[[407],[506],[286,287],[324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380],[326],[326,330],[324,326,328],[324,326],[326,332],[325,326],[337],[326,343,344,345],[326,347],[326,348,349,350,351,352,353,354,355,356,357,358,359,360],[326,329],[326,328],[326,337],[407,408,409,410,411],[407,409],[463,499],[501],[502],[508,511],[462,494,499,525,526,528],[527],[414],[449],[450,455,483],[451,462,463,470,480,491],[451,452,462,470],[453,492],[454,455,463,471],[455,480,488],[456,458,462,470],[449,457],[458,459],[462],[460,462],[449,462],[462,463,464,480,491],[462,463,464,477,480,483],[447,496],[458,462,465,470,480,491],[462,463,465,466,470,480,488,491],[465,467,480,488,491],[414,415,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498],[462,468],[469,491,496],[458,462,470,480],[471],[472],[449,473],[474,490,496],[475],[476],[462,477,478],[477,479,492,494],[450,462,480,481,482,483],[450,480,482],[480,481],[483],[484],[449,480],[462,486,487],[486,487],[455,470,480,488],[489],[470,490],[450,465,476,491],[455,492],[480,493],[469,494],[495],[450,455,462,464,473,480,491,494,496],[480,497],[534,573],[534,558,573],[573],[534],[534,559,573],[534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572],[559,573],[576],[504,510],[508],[505,509],[514],[513,514],[513],[513,514,515,517,518,521,522,523,524],[514,518],[513,514,515,517,518,519,520],[513,518],[518,522],[514,515,516],[515],[513,514,518],[532],[507],[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,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,173,174,175,177,186,188,189,190,191,192,193,195,196,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[99],[57,58],[54,55,56,58],[55,58],[58,99],[54,58,176],[56,57,58],[54,58],[58],[57],[54,57,99],[55,57,58,215],[57,58,215],[57,223],[55,57,58],[67],[90],[111],[57,58,99],[58,106],[57,58,99,117],[57,58,117],[58,158],[54,58,177],[183,185],[54,58,176,183,184],[176,177,185],[183],[54,58,183,184,185],[199],[194],[197],[55,57,177,178,179,180],[99,177,178,179,180],[177,179],[57,178,179,181,182,186],[54,57],[58,201],[59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,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],[187],[48],[424,428,491],[424,480,491],[419],[421,424,488,491],[470,488],[499],[419,499],[421,424,470,491],[416,417,420,423,450,462,480,491],[416,422],[420,424,450,483,491,499],[450,499],[440,450,499],[418,419,499],[424],[418,419,420,421,422,423,424,425,426,428,429,430,431,432,433,434,435,436,437,438,439,441,442,443,444,445,446],[424,431,432],[422,424,432,433],[423],[416,419,424],[424,428,432,433],[428],[422,424,427,491],[416,421,422,424,428,431],[450,480],[419,424,440,450,496,499],[50],[52,53,242],[51,52,243],[49,244],[49,257,259,260,261,267,268,323,381,382,383],[49,261,383,386],[49,383],[49,244,245,255,257,258,259,260,261,264,383,390],[49],[49,383,384,385,387,391],[49,392,396],[49,255,389,392,393,395,399,400],[49,244,394],[49,257,258,259,260,261,320,382],[49,259],[49,245,399],[49,382,386,388,389],[49,255,399],[49,244,245,246,255,257,259,260,261,265,266],[49,255,257,259,260],[49,246],[49,244,246,255,259],[49,244,260,261,264,268],[49,255],[49,262],[49,244,255,258,264,320],[49,244,245,255,257,258,259,260,261,264,267,268,269,321,322,399],[49,257,258,259,260,261,264,267,399],[49,245,246,255,256],[49,244,245,255],[49,244,245,255,258,260,261,264,267,396,398],[49,244,245,246,255,256,257,258,259,260,261,262,263],[49,244,245,255,257],[49,244,245,246,255,257,258,259,260,261,262,264,265,267,396,397,399,471,472],[49,257,258,259,260,261,264,265,266,267,396,399,400],[49,244,259,277,396],[49,242,244,255,259,266,291,297,395],[49,290],[49,296],[49,271,290],[49,271,289],[49,245,257,258,259,260,261,264,267,394,399,401],[49,271,315,395],[49,271,313,315,318,395],[49,242,270,395],[49,242,244,255,271,390,394,396],[49,270,271,316,319,395],[49,404],[49,271,277,278,280,395],[49,288,291],[49,288,289,291,297],[49,271,294,295,299,396],[49,292],[49,270,271,284,300,395,396],[49,270,271,285,300,395,396],[49,270,271,285,293,395,396],[49,242,270,271,282,293,396],[49,270,271,282,293,298,320,396],[49,271],[49,271,281],[49,271,282,395],[49,278,283,305,306,307,311,312,313,314],[49,242,270,271,277,278,279,281],[49,270,271,277,278,279,281],[49,271,277,278,279,281],[49,242,271,277],[49,242,271,281],[49,271,280,281,284,285,310,395],[49,317],[49,271,301,302,303,304,396],[49,271,395],[49,270,271,282,395],[49,271,280,281,284,285,308,309,310,395],[49,272,273,274,275,276],[49,244,248],[49,249],[49,246,247,248,249,250,251,252,253,254],[462,494,499,526,528,578],[244],[257,259,260,261,267,268,323,381,382,383],[261,383,386],[383],[244,245,255,257,258,259,260,261,264,383,390],[48,383,384,385,387,391],[392,396],[255,389,392,393,395,399,400],[244,394],[257,258,259,260,261,320,382],[259],[245,399],[48,382,386,388,389],[255,399],[244,245,255,257,259,260,261,265,266],[255,257,259,260],[246],[244,246,259],[244,260,261,264,268],[255],[262],[244,255,258,264],[244,245,255,257,258,259,260,261,264,267,268,269,321,322,399],[257,258,259,260,261,264,267,399],[245,246,256],[244,245,255],[244,245,255,258,260,261,264,267,396],[244,245,246,255,256,257,258,259,260,261,262,263],[244,245,255,257],[244,399],[257,258,259,260,261,264,265,266,267,396,399,400],[244,396],[242,244,255,259,266,291,297,395],[290],[296],[271,290],[271,289],[245,257,258,259,260,261,264,267,394,399,401],[48,245,399],[271,395],[242,270,395],[242,244,255,271,390,394,396],[270,271,316,319,395],[404],[271,280,395],[291],[289,291,297],[271,396],[271],[255,271,395],[278,283,305,306,307,311,312,313,314],[242,271],[271,281],[242,271,281],[317],[272,273,274,275,276],[244,248],[249],[48,246,247,248,249,250,251,252,253,254]],"referencedMap":[[409,1],[507,2],[288,3],[381,4],[327,5],[371,6],[329,7],[328,8],[330,5],[331,5],[333,9],[332,5],[334,10],[335,10],[336,5],[338,11],[339,5],[340,11],[341,5],[343,5],[344,5],[345,5],[346,12],[342,5],[348,13],[349,13],[350,13],[351,13],[352,13],[361,14],[353,13],[354,13],[355,13],[356,13],[358,13],[357,13],[359,13],[360,13],[362,5],[363,5],[337,5],[365,15],[364,5],[366,5],[367,5],[368,16],[370,5],[369,5],[372,5],[374,5],[375,17],[373,5],[376,5],[377,5],[378,5],[379,5],[380,5],[412,18],[408,1],[410,19],[411,1],[500,20],[502,21],[503,22],[512,23],[527,24],[528,25],[414,26],[415,26],[449,27],[450,28],[451,29],[452,30],[453,31],[454,32],[455,33],[456,34],[457,35],[458,36],[459,36],[461,37],[460,38],[462,39],[463,40],[464,41],[448,42],[465,43],[466,44],[467,45],[499,46],[468,47],[469,48],[470,49],[471,50],[472,51],[473,52],[474,53],[475,54],[476,55],[477,56],[478,56],[479,57],[480,58],[482,59],[481,60],[483,61],[484,62],[485,63],[486,64],[487,65],[488,66],[489,67],[490,68],[491,69],[492,70],[493,71],[494,72],[495,73],[496,74],[497,75],[558,76],[559,77],[534,78],[537,78],[556,76],[557,76],[547,76],[546,79],[544,76],[539,76],[552,76],[550,76],[554,76],[538,76],[551,76],[555,76],[540,76],[541,76],[553,76],[535,76],[542,76],[543,76],[545,76],[549,76],[560,80],[548,76],[536,76],[573,81],[567,80],[569,82],[568,80],[561,80],[562,80],[564,80],[566,80],[570,82],[571,82],[563,82],[565,82],[577,83],[511,84],[509,85],[510,86],[515,87],[524,88],[514,89],[525,90],[520,91],[521,92],[519,93],[523,94],[517,95],[516,96],[522,97],[518,88],[533,98],[508,99],[242,100],[193,101],[191,101],[106,102],[57,103],[56,104],[192,105],[177,106],[99,107],[55,108],[54,109],[241,104],[206,110],[205,110],[117,111],[213,102],[214,102],[216,112],[217,102],[218,109],[219,102],[190,102],[220,102],[221,113],[222,102],[223,110],[224,114],[225,102],[226,102],[227,102],[228,102],[229,110],[230,102],[231,102],[232,102],[233,102],[234,115],[235,102],[236,102],[237,102],[238,102],[239,102],[59,109],[60,109],[61,109],[62,109],[63,109],[64,109],[65,109],[66,102],[68,116],[69,109],[67,109],[70,109],[71,109],[72,109],[73,109],[74,109],[75,109],[76,102],[77,109],[78,109],[79,109],[80,109],[81,109],[82,102],[83,109],[84,109],[85,109],[86,109],[87,109],[88,109],[89,102],[91,117],[90,109],[92,109],[93,109],[94,109],[95,109],[96,115],[97,102],[98,102],[112,118],[100,119],[101,109],[102,109],[103,102],[104,109],[105,109],[107,120],[108,109],[109,109],[110,109],[111,109],[113,109],[114,109],[115,109],[116,109],[118,121],[119,109],[120,109],[121,109],[122,102],[123,109],[124,122],[125,122],[126,122],[127,102],[128,109],[129,109],[130,109],[135,109],[131,109],[132,102],[133,109],[134,102],[136,109],[137,109],[138,109],[139,109],[140,109],[141,109],[142,102],[143,109],[144,109],[145,109],[146,109],[147,109],[148,109],[149,109],[150,109],[151,109],[152,109],[153,109],[154,109],[155,109],[156,109],[157,109],[158,109],[159,123],[160,109],[161,109],[162,109],[163,109],[164,109],[165,109],[166,102],[167,102],[168,102],[169,102],[170,102],[171,109],[172,109],[173,109],[174,109],[240,102],[176,124],[199,125],[194,125],[185,126],[183,127],[197,128],[186,129],[200,130],[195,131],[196,128],[198,132],[181,133],[182,134],[180,135],[178,109],[187,136],[58,137],[204,110],[202,138],[175,139],[188,140],[49,141],[431,142],[438,143],[430,142],[445,144],[422,145],[421,146],[444,147],[439,148],[442,149],[424,150],[423,151],[419,152],[418,153],[441,154],[420,155],[425,156],[429,156],[447,157],[446,156],[433,158],[434,159],[436,160],[432,161],[435,162],[440,147],[427,163],[428,164],[437,165],[417,166],[443,167],[51,168],[243,169],[244,170],[245,171],[384,172],[387,173],[385,174],[391,175],[383,176],[392,177],[393,178],[394,179],[388,180],[386,181],[382,182],[389,183],[390,184],[400,185],[267,186],[261,187],[260,188],[265,189],[322,190],[269,191],[263,192],[321,193],[323,194],[268,195],[257,196],[262,191],[258,197],[399,198],[264,199],[259,200],[398,201],[401,202],[397,203],[396,204],[266,176],[291,205],[297,206],[289,207],[290,208],[402,209],[403,183],[316,210],[319,211],[271,212],[395,213],[404,171],[320,214],[405,215],[281,216],[292,217],[298,218],[300,219],[293,220],[301,221],[304,221],[302,221],[303,222],[294,223],[295,224],[299,225],[270,226],[278,226],[310,227],[283,228],[315,229],[282,230],[284,231],[280,232],[285,231],[309,233],[308,234],[279,176],[317,235],[318,236],[305,237],[307,238],[306,239],[311,240],[313,226],[314,226],[312,226],[273,176],[277,241],[274,226],[272,226],[276,176],[275,176],[246,176],[252,176],[247,176],[253,176],[248,176],[249,242],[254,243],[251,176],[250,176],[255,244],[256,176]],"exportedModulesMap":[[409,1],[507,2],[288,3],[381,4],[327,5],[371,6],[329,7],[328,8],[330,5],[331,5],[333,9],[332,5],[334,10],[335,10],[336,5],[338,11],[339,5],[340,11],[341,5],[343,5],[344,5],[345,5],[346,12],[342,5],[348,13],[349,13],[350,13],[351,13],[352,13],[361,14],[353,13],[354,13],[355,13],[356,13],[358,13],[357,13],[359,13],[360,13],[362,5],[363,5],[337,5],[365,15],[364,5],[366,5],[367,5],[368,16],[370,5],[369,5],[372,5],[374,5],[375,17],[373,5],[376,5],[377,5],[378,5],[379,5],[380,5],[412,18],[408,1],[410,19],[411,1],[500,20],[502,21],[503,22],[512,23],[527,245],[528,25],[414,26],[415,26],[449,27],[450,28],[451,29],[452,30],[453,31],[454,32],[455,33],[456,34],[457,35],[458,36],[459,36],[461,37],[460,38],[462,39],[463,40],[464,41],[448,42],[465,43],[466,44],[467,45],[499,46],[468,47],[469,48],[470,49],[471,50],[472,51],[473,52],[474,53],[475,54],[476,55],[477,56],[478,56],[479,57],[480,58],[482,59],[481,60],[483,61],[484,62],[485,63],[486,64],[487,65],[488,66],[489,67],[490,68],[491,69],[492,70],[493,71],[494,72],[495,73],[496,74],[497,75],[558,76],[559,77],[534,78],[537,78],[556,76],[557,76],[547,76],[546,79],[544,76],[539,76],[552,76],[550,76],[554,76],[538,76],[551,76],[555,76],[540,76],[541,76],[553,76],[535,76],[542,76],[543,76],[545,76],[549,76],[560,80],[548,76],[536,76],[573,81],[567,80],[569,82],[568,80],[561,80],[562,80],[564,80],[566,80],[570,82],[571,82],[563,82],[565,82],[577,83],[511,84],[509,85],[510,86],[515,87],[524,88],[514,89],[525,90],[520,91],[521,92],[519,93],[523,94],[517,95],[516,96],[522,97],[518,88],[533,98],[508,99],[242,100],[193,101],[191,101],[106,102],[57,103],[56,104],[192,105],[177,106],[99,107],[55,108],[54,109],[241,104],[206,110],[205,110],[117,111],[213,102],[214,102],[216,112],[217,102],[218,109],[219,102],[190,102],[220,102],[221,113],[222,102],[223,110],[224,114],[225,102],[226,102],[227,102],[228,102],[229,110],[230,102],[231,102],[232,102],[233,102],[234,115],[235,102],[236,102],[237,102],[238,102],[239,102],[59,109],[60,109],[61,109],[62,109],[63,109],[64,109],[65,109],[66,102],[68,116],[69,109],[67,109],[70,109],[71,109],[72,109],[73,109],[74,109],[75,109],[76,102],[77,109],[78,109],[79,109],[80,109],[81,109],[82,102],[83,109],[84,109],[85,109],[86,109],[87,109],[88,109],[89,102],[91,117],[90,109],[92,109],[93,109],[94,109],[95,109],[96,115],[97,102],[98,102],[112,118],[100,119],[101,109],[102,109],[103,102],[104,109],[105,109],[107,120],[108,109],[109,109],[110,109],[111,109],[113,109],[114,109],[115,109],[116,109],[118,121],[119,109],[120,109],[121,109],[122,102],[123,109],[124,122],[125,122],[126,122],[127,102],[128,109],[129,109],[130,109],[135,109],[131,109],[132,102],[133,109],[134,102],[136,109],[137,109],[138,109],[139,109],[140,109],[141,109],[142,102],[143,109],[144,109],[145,109],[146,109],[147,109],[148,109],[149,109],[150,109],[151,109],[152,109],[153,109],[154,109],[155,109],[156,109],[157,109],[158,109],[159,123],[160,109],[161,109],[162,109],[163,109],[164,109],[165,109],[166,102],[167,102],[168,102],[169,102],[170,102],[171,109],[172,109],[173,109],[174,109],[240,102],[176,124],[199,125],[194,125],[185,126],[183,127],[197,128],[186,129],[200,130],[195,131],[196,128],[198,132],[181,133],[182,134],[180,135],[178,109],[187,136],[58,137],[204,110],[202,138],[175,139],[188,140],[49,141],[431,142],[438,143],[430,142],[445,144],[422,145],[421,146],[444,147],[439,148],[442,149],[424,150],[423,151],[419,152],[418,153],[441,154],[420,155],[425,156],[429,156],[447,157],[446,156],[433,158],[434,159],[436,160],[432,161],[435,162],[440,147],[427,163],[428,164],[437,165],[417,166],[443,167],[51,168],[243,169],[244,170],[245,246],[384,247],[387,248],[385,249],[391,250],[392,251],[393,252],[394,253],[388,254],[386,255],[382,256],[389,257],[390,258],[400,259],[267,260],[261,261],[260,262],[265,263],[322,264],[269,265],[263,266],[321,267],[323,268],[268,269],[257,270],[262,265],[258,271],[399,272],[264,273],[259,274],[398,275],[401,276],[397,277],[396,278],[291,279],[297,280],[289,281],[290,282],[402,283],[403,284],[316,285],[319,285],[271,286],[395,287],[404,246],[320,288],[405,289],[281,290],[292,291],[298,292],[300,293],[293,291],[301,293],[304,293],[302,293],[303,293],[294,293],[295,293],[299,293],[270,294],[278,294],[310,294],[283,295],[315,296],[282,297],[284,298],[280,294],[285,294],[309,297],[308,299],[317,285],[318,300],[305,293],[307,285],[306,285],[311,285],[313,294],[314,294],[312,294],[277,301],[274,294],[272,294],[249,302],[254,303],[255,304]],"semanticDiagnosticsPerFile":[409,407,504,507,506,286,288,287,406,324,325,326,381,327,371,329,328,330,331,333,332,334,335,336,338,339,340,341,343,344,345,346,342,347,348,349,350,351,352,361,353,354,355,356,358,357,359,360,362,363,337,365,364,366,367,368,370,369,372,374,375,373,376,377,378,379,380,412,408,410,411,413,500,501,502,503,512,527,528,296,529,530,414,415,449,450,451,452,453,454,455,456,457,458,459,461,460,462,463,464,448,498,465,466,467,499,468,469,470,471,472,473,474,475,476,477,478,479,480,482,481,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,531,558,559,534,537,556,557,547,546,544,539,552,550,554,538,551,555,540,541,553,535,542,543,545,549,560,548,536,573,572,567,569,568,561,562,564,566,570,571,563,565,574,526,575,576,577,511,509,510,505,515,524,513,514,525,520,521,519,523,517,516,522,518,532,533,508,242,215,193,191,106,57,56,192,177,99,55,54,241,206,205,117,213,214,216,217,218,219,190,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,59,60,61,62,63,64,65,66,68,69,67,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,90,92,93,94,95,96,97,98,112,100,101,102,103,104,105,107,108,109,110,111,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,135,131,132,133,134,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,240,176,199,194,185,183,197,186,200,195,196,198,184,189,181,182,179,180,178,187,58,207,208,209,210,211,212,201,204,203,202,175,188,49,48,46,47,8,9,11,10,2,12,13,14,15,16,17,18,19,3,20,4,21,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,431,438,430,445,422,421,444,439,442,424,423,419,418,441,420,425,426,429,416,447,446,433,434,436,432,435,440,427,428,437,417,443,51,50,243,53,244,52,245,384,387,385,391,383,392,393,394,388,386,382,389,390,400,267,261,260,265,322,269,263,321,323,268,257,262,258,399,264,259,398,401,397,396,266,291,297,289,290,402,403,316,319,271,395,404,320,405,281,292,298,300,293,301,304,302,303,294,295,299,270,278,310,283,315,282,284,280,285,309,308,279,317,318,305,307,306,311,313,314,312,273,277,274,272,276,275,246,252,247,253,248,249,254,251,250,255,256]},"version":"5.4.5"}
|
|
1
|
+
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/tslib/tslib.d.ts","../../../../node_modules/tslib/modules/index.d.ts","../../../data-schema-types/dist/esm/builder/types.d.ts","../../../data-schema-types/dist/esm/builder/index.d.ts","../../../data-schema-types/dist/esm/util.d.ts","../../../data-schema-types/dist/esm/client/symbol.d.ts","../../../../node_modules/rxjs/dist/types/internal/Subscription.d.ts","../../../../node_modules/rxjs/dist/types/internal/Subscriber.d.ts","../../../../node_modules/rxjs/dist/types/internal/Operator.d.ts","../../../../node_modules/rxjs/dist/types/internal/Observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/types.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/audit.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/auditTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/buffer.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferCount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferToggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/bufferWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/catchError.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineLatestAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineLatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/combineLatestWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatMapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/concatWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/connect.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/count.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/debounceTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/defaultIfEmpty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/delayWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/dematerialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinct.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctUntilChanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/distinctUntilKeyChanged.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/elementAt.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/endWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/every.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaust.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/exhaustMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/expand.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/filter.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/finalize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/find.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/findIndex.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/first.d.ts","../../../../node_modules/rxjs/dist/types/internal/Subject.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/groupBy.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/ignoreElements.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/isEmpty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/last.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/map.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/Notification.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/materialize.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/max.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/flatMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeMapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeScan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/mergeWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/min.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/ConnectableObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/multicast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/observeOn.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/onErrorResumeNextWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pairwise.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/pluck.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publish.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishBehavior.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishLast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/publishReplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/raceWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/reduce.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeat.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/repeatWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retry.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/retryWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/refCount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sample.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sampleTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/scan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/sequenceEqual.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/share.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/shareReplay.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/single.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipLast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipUntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/skipWhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/startWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/subscribeOn.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchMap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchMapTo.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/switchScan.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/take.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeLast.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeUntil.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/takeWhile.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/tap.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throttleTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/throwIfEmpty.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeInterval.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeout.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timeoutWith.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/timestamp.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/toArray.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/window.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowCount.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowTime.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowToggle.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/windowWhen.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/withLatestFrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipAll.d.ts","../../../../node_modules/rxjs/dist/types/internal/operators/zipWith.d.ts","../../../../node_modules/rxjs/dist/types/operators/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/Action.d.ts","../../../../node_modules/rxjs/dist/types/internal/Scheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/TestMessage.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/SubscriptionLog.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/SubscriptionLoggable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/ColdObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/HotObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AsyncScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/timerHandle.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AsyncAction.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/VirtualTimeScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/testing/TestScheduler.d.ts","../../../../node_modules/rxjs/dist/types/testing/index.d.ts","../../../../node_modules/rxjs/dist/types/internal/symbol/observable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/dom/animationFrames.d.ts","../../../../node_modules/rxjs/dist/types/internal/BehaviorSubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/ReplaySubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/AsyncSubject.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AsapScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/asap.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/async.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/QueueScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/queue.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/AnimationFrameScheduler.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduler/animationFrame.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/identity.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/pipe.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/noop.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/isObservable.d.ts","../../../../node_modules/rxjs/dist/types/internal/lastValueFrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/firstValueFrom.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/ArgumentOutOfRangeError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/EmptyError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/NotFoundError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/ObjectUnsubscribedError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/SequenceError.d.ts","../../../../node_modules/rxjs/dist/types/internal/util/UnsubscriptionError.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindCallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/bindNodeCallback.d.ts","../../../../node_modules/rxjs/dist/types/internal/AnyCatcher.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/combineLatest.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/concat.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/connectable.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/defer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/empty.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/forkJoin.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/from.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromEvent.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/fromEventPattern.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/generate.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/iif.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/interval.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/merge.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/never.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/of.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/onErrorResumeNext.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/pairs.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/partition.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/race.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/range.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/throwError.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/timer.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/using.d.ts","../../../../node_modules/rxjs/dist/types/internal/observable/zip.d.ts","../../../../node_modules/rxjs/dist/types/internal/scheduled/scheduled.d.ts","../../../../node_modules/rxjs/dist/types/internal/config.d.ts","../../../../node_modules/rxjs/dist/types/index.d.ts","../../../data-schema-types/dist/esm/client/index.d.ts","../../../data-schema-types/dist/esm/index.d.ts","../../src/Authorization.ts","../../src/util/Brand.ts","../../src/util/IndexLimit.ts","../../src/util/KindaPretty.ts","../../src/util/ObjectFromEntries.ts","../../src/util/SpreadTuple.ts","../../src/util/Select.ts","../../src/util/Filters.ts","../../src/util/IndexShapes.ts","../../src/util/Rename.ts","../../src/util/index.ts","../../src/util/usedMethods.ts","../../src/ModelField.ts","../../src/ModelRelationshipField.ts","../../src/RefType.ts","../../src/EnumType.ts","../../src/CustomType.ts","../../src/ModelIndex.ts","../../src/MappedTypes/MapIndexes.ts","../../src/ModelType.ts","../../src/Handler.ts","../../src/ai/ModelType.ts","../../src/CustomOperation.ts","../../src/MappedTypes/ResolveSchema.ts","../../src/MappedTypes/ImplicitFieldInjector.ts","../../src/runtime/internals/ai/getCustomUserAgentDetails.ts","../../src/runtime/bridge-types.ts","../../src/runtime/utils/resolvePKFields.ts","../../src/runtime/utils/findIndexByFields.ts","../../src/runtime/utils/resolveOwnerFields.ts","../../src/runtime/utils/stringTransformation.ts","../../src/runtime/utils/selfAwareAsync.ts","../../src/runtime/utils/index.ts","../../src/runtime/internals/cancellation.ts","../../src/runtime/internals/operations/utils.ts","../../src/runtime/internals/operations/indexQuery.ts","../../src/runtime/internals/APIClient.ts","../../src/runtime/internals/operations/custom.ts","../../src/runtime/internals/generateCustomOperationsProperty.ts","../../src/runtime/internals/operations/get.ts","../../src/runtime/internals/operations/list.ts","../../../../node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts","../../../../node_modules/@smithy/util-base64/dist-types/toBase64.d.ts","../../../../node_modules/@smithy/util-base64/dist-types/index.d.ts","../../src/ai/types/ToolResultContent.ts","../../src/ai/types/contentBlocks.ts","../../src/ai/types/ConversationMessageContent.ts","../../src/runtime/internals/ai/conversationMessageDeserializers.ts","../../src/runtime/internals/ai/convertItemToConversationMessage.ts","../../src/runtime/internals/ai/createListMessagesFunction.ts","../../src/runtime/internals/ai/createOnMessageFunction.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../src/ai/types/ToolConfiguration.ts","../../src/runtime/internals/ai/conversationMessageSerializers.ts","../../src/runtime/internals/ai/createSendMessageFunction.ts","../../src/runtime/internals/ai/convertItemToConversation.ts","../../src/runtime/internals/ai/createCreateConversationFunction.ts","../../src/runtime/internals/ai/createGetConversationFunction.ts","../../src/runtime/internals/ai/createListConversationsFunction.ts","../../src/runtime/internals/ai/createDeleteConversationFunction.ts","../../src/runtime/internals/utils/clientProperties/generateConversationsProperty.ts","../../src/runtime/internals/utils/clientProperties/generateGenerationsProperty.ts","../../src/runtime/internals/utils/clientProperties/generateEnumsProperty.ts","../../src/runtime/internals/operations/subscription.ts","../../src/runtime/internals/operations/observeQuery.ts","../../src/runtime/internals/clientUtils.ts","../../src/runtime/internals/utils/clientProperties/generateModelsProperty.ts","../../src/runtime/internals/utils/runtimeTypeGuards/isGraphQLResponseWithErrors.ts","../../src/runtime/internals/utils/runtimeTypeGuards/isApiGraphQLProviderConfig.ts","../../src/runtime/internals/utils/runtimeTypeGuards/isConfigureEventWithResourceConfig.ts","../../src/runtime/internals/index.ts","../../src/runtime/addSchemaToClient.ts","../../src/runtime/internals/server/generateModelsProperty.ts","../../src/runtime/internals/server/index.ts","../../src/runtime/addSchemaToClientWithInstance.ts","../../src/runtime/index.ts","../../src/MappedTypes/ModelMetadata.ts","../../src/MappedTypes/ExtractNonModelTypes.ts","../../src/MappedTypes/ResolveFieldProperties.ts","../../../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../../../node_modules/@types/aws-lambda/handler.d.ts","../../../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudwatch-alarm.d.ts","../../../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codecommit.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../../../node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts","../../../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../../../node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts","../../../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../../../node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts","../../../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../../../node_modules/@types/aws-lambda/index.d.ts","../../src/ClientSchema/utilities/ResolveRef.ts","../../src/ClientSchema/Core/ClientSchemaProperty.ts","../../src/ClientSchema/Core/ClientCustomOperations.ts","../../src/ClientSchema/Core/ClientEnum.ts","../../src/ClientSchema/utilities/ResolveField.ts","../../src/ClientSchema/Core/ClientCustomType.ts","../../src/ClientSchema/utilities/ExtractNestedTypes.ts","../../src/ClientSchema/utilities/SchemaMetadata.ts","../../src/ClientSchema/utilities/index.ts","../../src/ClientSchema/Core/ClientModel.ts","../../src/ClientSchema/Core/index.ts","../../src/ClientSchema/ai/ClientConversation.ts","../../src/ClientSchema/index.ts","../../src/runtime/client/index.ts","../../src/ai/ConversationType.ts","../../src/ai/ConversationSchemaTypes.ts","../../src/SchemaProcessor.ts","../../src/ModelSchema.ts","../../src/CombineSchema.ts","../../src/a.ts","../../src/index.ts","../../src/internals/index.ts","../../src/runtime/client/index.v3.ts","../../src/runtime/index.v3.ts","../../../../node_modules/@types/argparse/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/graceful-fs/index.d.ts","../../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../../node_modules/@types/istanbul-reports/index.d.ts","../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../../node_modules/@jest/schemas/build/index.d.ts","../../../../node_modules/pretty-format/build/index.d.ts","../../../../node_modules/jest-diff/build/index.d.ts","../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../node_modules/expect/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/parse5/dist/common/html.d.ts","../../../../node_modules/parse5/dist/common/token.d.ts","../../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../../node_modules/parse5/dist/parser/index.d.ts","../../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../../node_modules/parse5/dist/serializer/index.d.ts","../../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../../node_modules/parse5/dist/index.d.ts","../../../../node_modules/@types/tough-cookie/index.d.ts","../../../../node_modules/@types/jsdom/base.d.ts","../../../../node_modules/@types/jsdom/index.d.ts","../../../../node_modules/@types/json5/index.d.ts","../../../../node_modules/@types/minimist/index.d.ts","../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/prettier/doc.d.ts","../../../../node_modules/prettier/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts","../../../../node_modules/@types/stack-utils/index.d.ts","../../../../node_modules/@types/uuid/index.d.ts","../../../../node_modules/@types/yargs-parser/index.d.ts","../../../../node_modules/@types/yargs/index.d.ts","../../../../node_modules/parse5/dist/cjs/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","31973b272be35eab5ecf20a38ea54bec84cdc0317117590cb813c72fe0ef75b3","40493fd4c59dbbf27f09a58affee4de6653ec52e7a5110452d14128d068cad9b","d5c19655468e29f60c871b21e73af8ebc653f736e7123ade916f22c4a5f80ce5","69cf55f548cd651cb445100b09198523fb5147f5b6008843a820db747ec5c9cb","93a2031dc8fbccea8b43fe9b55f62c7dc2a917cf16f0355f747286d13fcade5a","ecf5cb089ea438f2545e04b6c52828c68d0b0f4bfaa661986faf36da273e9892","95444fb6292d5e2f7050d7021383b719c0252bf5f88854973977db9e3e3d8006","241bd4add06f06f0699dcd58f3b334718d85e3045d9e9d4fa556f11f4d1569c1","06540a9f3f2f88375ada0b89712de1c4310f7398d821c4c10ab5c6477dafb4bc",{"version":"de2d3120ed0989dbc776de71e6c0e8a6b4bf1935760cf468ff9d0e9986ef4c09","affectsGlobalScope":true},"b8bff8a60af0173430b18d9c3e5c443eaa3c515617210c0c7b3d2e1743c19ecb","97bdf234f5db52085d99c6842db560bca133f8a0413ff76bf830f5f38f088ce3","a76ebdf2579e68e4cfe618269c47e5a12a4e045c2805ed7f7ab37af8daa6b091","b493ff8a5175cbbb4e6e8bcfa9506c08f5a7318b2278365cfca3b397c9710ebc","e59d36b7b6e8ba2dd36d032a5f5c279d2460968c8b4e691ca384f118fb09b52a","e96885c0684c9042ec72a9a43ef977f6b4b4a2728f4b9e737edcbaa0c74e5bf6","303ee143a869e8f605e7b1d12be6c7269d4cab90d230caba792495be595d4f56","89e061244da3fc21b7330f4bd32f47c1813dd4d7f1dc3d0883d88943f035b993","e46558c2e04d06207b080138678020448e7fc201f3d69c2601b0d1456105f29a","71549375db52b1163411dba383b5f4618bdf35dc57fa327a1c7d135cf9bf67d1","7e6b2d61d6215a4e82ea75bc31a80ebb8ad0c2b37a60c10c70dd671e8d9d6d5d","78bea05df2896083cca28ed75784dde46d4b194984e8fc559123b56873580a23","5dd04ced37b7ea09f29d277db11f160df7fd73ba8b9dba86cb25552e0653a637","f74b81712e06605677ae1f061600201c425430151f95b5ef4d04387ad7617e6a","9a72847fcf4ac937e352d40810f7b7aec7422d9178451148296cf1aa19467620","3ae18f60e0b96fa1e025059b7d25b3247ba4dcb5f4372f6d6e67ce2adac74eac","2b9260f44a2e071450ae82c110f5dc8f330c9e5c3e85567ed97248330f2bf639","4f196e13684186bda6f5115fc4677a87cf84a0c9c4fc17b8f51e0984f3697b6d","61419f2c5822b28c1ea483258437c1faab87d00c6f84481aa22afb3380d8e9a4","64479aee03812264e421c0bf5104a953ca7b02740ba80090aead1330d0effe91","a5eb4835ab561c140ffc4634bb039387d5d0cceebb86918f1696c7ac156d26fd","c5570e504be103e255d80c60b56c367bf45d502ca52ee35c55dec882f6563b5c","4252b852dd791305da39f6e1242694c2e560d5e46f9bb26e2aca77252057c026","0520b5093712c10c6ef23b5fea2f833bf5481771977112500045e5ea7e8e2b69","5c3cf26654cf762ac4d7fd7b83f09acfe08eef88d2d6983b9a5a423cb4004ca3","e60fa19cf7911c1623b891155d7eb6b7e844e9afdf5738e3b46f3b687730a2bd","b1fd72ff2bb0ba91bb588f3e5329f8fc884eb859794f1c4657a2bfa122ae54d0","6cf42a4f3cfec648545925d43afaa8bb364ac10a839ffed88249da109361b275","ba13c7d46a560f3d4df8ffb1110e2bbec5801449af3b1240a718514b5576156e","6df52b70d7f7702202f672541a5f4a424d478ee5be51a9d37b8ccbe1dbf3c0f2","0ca7f997e9a4d8985e842b7c882e521b6f63233c4086e9fe79dd7a9dc4742b5e","91046b5c6b55d3b194c81fd4df52f687736fad3095e9d103ead92bb64dc160ee","db5704fdad56c74dfc5941283c1182ed471bd17598209d3ac4a49faa72e43cfc","758e8e89559b02b81bc0f8fd395b17ad5aff75490c862cbe369bb1a3d1577c40","2ee64342c077b1868f1834c063f575063051edd6e2964257d34aad032d6b657c","6f6b4b3d670b6a5f0e24ea001c1b3d36453c539195e875687950a178f1730fa7","05c4e2a992bb83066a3a648bad1c310cecd4d0628d7e19545bb107ac9596103a","b48b83a86dd9cfe36f8776b3ff52fcd45b0e043c0538dc4a4b149ba45fe367b9","792de5c062444bd2ee0413fb766e57e03cce7cdaebbfc52fc0c7c8e95069c96b","a79e3e81094c7a04a885bad9b049c519aace53300fb8a0fe4f26727cb5a746ce","dd6c3362aaaec60be028b4ba292806da8e7020eef7255c7414ce4a5c3a7138ef","8a4e89564d8ea66ad87ee3762e07540f9f0656a62043c910d819b4746fc429c5","b9011d99942889a0f95e120d06b698c628b0b6fdc3e6b7ecb459b97ed7d5bcc6","4d639cbbcc2f8f9ce6d55d5d503830d6c2556251df332dc5255d75af53c8a0e7","cdb48277f600ab5f429ecf1c5ea046683bc6b9f73f3deab9a100adac4b34969c","75be84956a29040a1afbe864c0a7a369dfdb739380072484eff153905ef867ee","b06b4adc2ae03331a92abd1b19af8eb91ec2bf8541747ee355887a167d53145e","3114b315cd0687aad8b57cff36f9c8c51f5b1bc6254f1b1e8446ae583d8e2474","0d417c15c5c635384d5f1819cc253a540fe786cc3fda32f6a2ae266671506a21","af733cb878419f3012f0d4df36f918a69ba38d73f3232ba1ab46ef9ede6cb29c","cb59317243a11379a101eb2f27b9df1022674c3df1df0727360a0a3f963f523b","0a01b0b5a9e87d04737084731212106add30f63ec640169f1462ba2e44b6b3a8","06b8a7d46195b6b3980e523ef59746702fd210b71681a83a5cf73799623621f9","860e4405959f646c101b8005a191298b2381af8f33716dc5f42097e4620608f8","f7e32adf714b8f25d3c1783473abec3f2e82d5724538d8dcf6f51baaaff1ca7a","e07d62a8a9a3bb65433a62e9bbf400c6bfd2df4de60652af4d738303ee3670a1","bfbf80f9cd4558af2d7b2006065340aaaced15947d590045253ded50aabb9bc5","851e8d57d6dd17c71e9fa0319abd20ab2feb3fb674d0801611a09b7a25fd281c","c3bd2b94e4298f81743d92945b80e9b56c1cdfb2bef43c149b7106a2491b1fc9","a246cce57f558f9ebaffd55c1e5673da44ea603b4da3b2b47eb88915d30a9181","d993eacc103c5a065227153c9aae8acea3a4322fe1a169ee7c70b77015bf0bb2","fc2b03d0c042aa1627406e753a26a1eaad01b3c496510a78016822ef8d456bb6","063c7ebbe756f0155a8b453f410ca6b76ffa1bbc1048735bcaf9c7c81a1ce35f","748e79252a7f476f8f28923612d7696b214e270cc909bc685afefaac8f052af0","9669075ac38ce36b638b290ba468233980d9f38bdc62f0519213b2fd3e2552ec","4d123de012c24e2f373925100be73d50517ac490f9ed3578ac82d0168bfbd303","656c9af789629aa36b39092bee3757034009620439d9a39912f587538033ce28","3ac3f4bdb8c0905d4c3035d6f7fb20118c21e8a17bee46d3735195b0c2a9f39f","1f453e6798ed29c86f703e9b41662640d4f2e61337007f27ac1c616f20093f69","af43b7871ff21c62bf1a54ec5c488e31a8d3408d5b51ff2e9f8581b6c55f2fc7","70550511d25cbb0b6a64dcac7fffc3c1397fd4cbeb6b23ccc7f9b794ab8a6954","af0fbf08386603a62f2a78c42d998c90353b1f1d22e05a384545f7accf881e0a","c3f32a185cd27ac232d3428a8d9b362c3f7b4892a58adaaa022828a7dcd13eed","3139c3e5e09251feec7a87f457084bee383717f3626a7f1459d053db2f34eb76","4888fd2bcfee9a0ce89d0df860d233e0cee8ee9c479b6bd5a5d5f9aae98342fe","3be870c8e17ec14f1c18fc248f5d2c4669e576404744ff5c63e6dafcf05b97ea","56654d2c5923598384e71cb808fac2818ca3f07dd23bb018988a39d5e64f268b","8b6719d3b9e65863da5390cb26994602c10a315aa16e7d70778a63fee6c4c079","6ab380571d87bd1d6f644fb6ab7837239d54b59f07dc84347b1341f866194214","547d3c406a21b30e2b78629ecc0b2ddaf652d9e0bdb2d59ceebce5612906df33","b3a4f9385279443c3a5568ec914a9492b59a723386161fd5ef0619d9f8982f97","3fe66aba4fbe0c3ba196a4f9ed2a776fe99dc4d1567a558fb11693e9fcc4e6ed","140eef237c7db06fc5adcb5df434ee21e81ee3a6fd57e1a75b8b3750aa2df2d8","0944ec553e4744efae790c68807a461720cff9f3977d4911ac0d918a17c9dd99","7c9ed7ffdc6f843ab69e5b2a3e7f667b050dd8d24d0052db81e35480f6d4e15d","7c7d9e116fe51100ff766703e6b5e4424f51ad8977fe474ddd8d0959aa6de257","af70a2567e586be0083df3938b6a6792e6821363d8ef559ad8d721a33a5bcdaf","006cff3a8bcb92d77953f49a94cd7d5272fef4ab488b9052ef82b6a1260d870b","7d44bfdc8ee5e9af70738ff652c622ae3ad81815e63ab49bdc593d34cb3a68e5","339814517abd4dbc7b5f013dfd3b5e37ef0ea914a8bbe65413ecffd668792bc6","34d5bc0a6958967ec237c99f980155b5145b76e6eb927c9ffc57d8680326b5d8","9eae79b70c9d8288032cbe1b21d0941f6bd4f315e14786b2c1d10bccc634e897","18ce015ed308ea469b13b17f99ce53bbb97975855b2a09b86c052eefa4aa013a","5a931bc4106194e474be141e0bc1046629510dc95b9a0e4b02a3783847222965","5e5f371bf23d5ced2212a5ff56675aefbd0c9b3f4d4fdda1b6123ac6e28f058c","907c17ad5a05eecb29b42b36cc8fec6437be27cc4986bb3a218e4f74f606911c","3656f0584d5a7ee0d0f2cc2b9cffbb43af92e80186b2ce160ebd4421d1506655","a726ad2d0a98bfffbe8bc1cd2d90b6d831638c0adc750ce73103a471eb9a891c","f44c0c8ce58d3dacac016607a1a90e5342d830ea84c48d2e571408087ae55894","75a315a098e630e734d9bc932d9841b64b30f7a349a20cf4717bf93044eff113","9131d95e32b3d4611d4046a613e022637348f6cebfe68230d4e81b691e4761a1","b03aa292cfdcd4edc3af00a7dbd71136dd067ec70a7536b655b82f4dd444e857","90f690a1c5fcb4c2d19c80fea05c8ab590d8f6534c4c296d70af6293ede67366","be95e987818530082c43909be722a838315a0fc5deb6043de0a76f5221cbad24","9ed5b799c50467b0c9f81ddf544b6bcda3e34d92076d6cab183c84511e45c39f","b4fa87cc1833839e51c49f20de71230e259c15b2c9c3e89e4814acc1d1ef10de","e90ac9e4ac0326faa1bc39f37af38ace0f9d4a655cd6d147713c653139cf4928","ea27110249d12e072956473a86fd1965df8e1be985f3b686b4e277afefdde584","1f6058d60eaa8825f59d4b76bbf6cc0e6ad9770948be58de68587b0931da00cc","5666075052877fe2fdddd5b16de03168076cf0f03fbca5c1d4a3b8f43cba570c","50100b1a91f61d81ca3329a98e64b7f05cddc5e3cb26b3411adc137c9c631aca","11aceaee5663b4ed597544567d6e6a5a94b66857d7ebd62a9875ea061018cd2c","6e30d0b5a1441d831d19fe02300ab3d83726abd5141cbcc0e2993fa0efd33db4","423f28126b2fc8d8d6fa558035309000a1297ed24473c595b7dec52e5c7ebae5","fb30734f82083d4790775dae393cd004924ebcbfde49849d9430bf0f0229dd16","2c92b04a7a4a1cd9501e1be338bf435738964130fb2ad5bd6c339ee41224ac4c","c5c5f0157b41833180419dacfbd2bcce78fb1a51c136bd4bcba5249864d8b9b5","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","4bb6035e906946163ecfaec982389d0247ceeac6bdee7f1d07c03d9c224db3aa","8a44b424edee7bb17dc35a558cc15f92555f14a0441205613e0e50452ab3a602","24a00d0f98b799e6f628373249ece352b328089c3383b5606214357e9107e7d5","33637e3bc64edd2075d4071c55d60b32bdb0d243652977c66c964021b6fc8066","0f0ad9f14dedfdca37260931fac1edf0f6b951c629e84027255512f06a6ebc4c","16ad86c48bf950f5a480dc812b64225ca4a071827d3d18ffc5ec1ae176399e36","8cbf55a11ff59fd2b8e39a4aa08e25c5ddce46e3af0ed71fb51610607a13c505","d5bc4544938741f5daf8f3a339bfbf0d880da9e89e79f44a6383aaf056fe0159","c82857a876075e665bbcc78213abfe9e9b0206d502379576d7abd481ade3a569","4f71d883ed6f398ba8fe11fcd003b44bb5f220f840b3eac3c395ad91304e4620","5229c3934f58413f34f1b26c01323c93a5a65a2d9f2a565f216590dfbed1fe32","9fd7466b77020847dbc9d2165829796bf7ea00895b2520ff3752ffdcff53564b","fbfc12d54a4488c2eb166ed63bab0fb34413e97069af273210cf39da5280c8d6","85a84240002b7cf577cec637167f0383409d086e3c4443852ca248fc6e16711e","4c754b03f36ff35fc539f9ebb5f024adbb73ec2d3e4bfb35b385a05abb36a50e","59507446213e73654d6979f3b82dadc4efb0ed177425ae052d96a3f5a5be0d35","a914be97ca7a5be670d1545fc0691ac3fbabd023d7d084b338f6934349798a1f","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","62c3621d34fb2567c17a2c4b89914ebefbfbd1b1b875b070391a7d4f722e55dc","c05ac811542e0b59cb9c2e8f60e983461f0b0e39cea93e320fad447ff8e474f3","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","132351cbd8437a463757d3510258d0fa98fd3ebef336f56d6f359cf3e177a3ce","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","33d1888c3c27d3180b7fd20bac84e97ecad94b49830d5dd306f9e770213027d1","ee942c58036a0de88505ffd7c129f86125b783888288c2389330168677d6347f","a3f317d500c30ea56d41501632cdcc376dae6d24770563a5e59c039e1c2a08ec","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","0c1651a159995dfa784c57b4ea9944f16bdf8d924ed2d8b3db5c25d25749a343","aaa13958e03409d72e179b5d7f6ec5c6cc666b7be14773ae7b6b5ee4921e52db","0a86e049843ad02977a94bb9cdfec287a6c5a0a4b6b5391a6648b1a122072c5a","87437ca9dabab3a41d483441696ff9220a19e713f58e0b6a99f1731af10776d7","26c5dfa9aa4e6428f4bb7d14cbf72917ace69f738fa92480b9749eebce933370","8e94328e7ca1a7a517d1aa3c569eac0f6a44f67473f6e22c2c4aff5f9f4a9b38","d604d413aff031f4bfbdae1560e54ebf503d374464d76d50a2c6ded4df525712","299f0af797897d77685d606502be72846b3d1f0dc6a2d8c964e9ea3ccbacf5bc","12bfd290936824373edda13f48a4094adee93239b9a73432db603127881a300d","340ceb3ea308f8e98264988a663640e567c553b8d6dc7d5e43a8f3b64f780374","c5a769564e530fba3ec696d0a5cff1709b9095a0bdf5b0826d940d2fc9786413","7124ef724c3fc833a17896f2d994c368230a8d4b235baed39aa8037db31de54f","5de1c0759a76e7710f76899dcae601386424eab11fb2efaf190f2b0f09c3d3d3","9c5ee8f7e581f045b6be979f062a61bf076d362bf89c7f966b993a23424e8b0d","1a11df987948a86aa1ec4867907c59bdf431f13ed2270444bf47f788a5c7f92d","3c97b5ea66276cf463525a6aa9d5bb086bf5e05beac70a0597cda2575503b57b","b756781cd40d465da57d1fc6a442c34ae61fe8c802d752aace24f6a43fedacee","0fe76167c87289ea094e01616dcbab795c11b56bad23e1ef8aba9aa37e93432a","3a45029dba46b1f091e8dc4d784e7be970e209cd7d4ff02bd15270a98a9ba24b","032c1581f921f8874cf42966f27fd04afcabbb7878fa708a8251cac5415a2a06","69c68ed9652842ce4b8e495d63d2cd425862104c9fb7661f72e7aa8a9ef836f8","a31383256374723b47d8b5497a9558bbbcf95bcecfb586a36caf7bfd3693eb0e","06f62a14599a68bcde148d1efd60c2e52e8fa540cc7dcfa4477af132bb3de271","64aa66c7458cbfd0f48f88070b08c2f66ae94aba099dac981f17c2322d147c06","11f19ce32d21222419cecab448fa335017ebebf4f9e5457c4fa9df42fa2dcca7","2e8ee2cbb5e9159764e2189cf5547aebd0e6b0d9a64d479397bb051cd1991744","1b0471d75f5adb7f545c1a97c02a0f825851b95fe6e069ac6ecaa461b8bb321d","1d157c31a02b1e5cca9bc495b3d8d39f4b42b409da79f863fb953fbe3c7d4884","07baaceaec03d88a4b78cb0651b25f1ae0322ac1aa0b555ae3749a79a41cba86","619a132f634b4ebe5b4b4179ea5870f62f2cb09916a25957bff17b408de8b56d","f60fa446a397eb1aead9c4e568faf2df8068b4d0306ebc075fb4be16ed26b741","f3cb784be4d9e91f966a0b5052a098d9b53b0af0d341f690585b0cc05c6ca412","350f63439f8fe2e06c97368ddc7fb6d6c676d54f59520966f7dbbe6a4586014e","eba613b9b357ac8c50a925fa31dc7e65ff3b95a07efbaa684b624f143d8d34ba","9814545517193cf51127d7fbdc3b7335688206ec04ee3a46bba2ee036bd0dcac","0f6199602df09bdb12b95b5434f5d7474b1490d2cd8cc036364ab3ba6fd24263","c8ca7fd9ec7a3ec82185bfc8213e4a7f63ae748fd6fced931741d23ef4ea3c0f","5c6a8a3c2a8d059f0592d4eab59b062210a1c871117968b10797dee36d991ef7","ad77fd25ece8e09247040826a777dc181f974d28257c9cd5acb4921b51967bd8","62aa16838ecfc60edadea0fa88699db5ae09fd8f7212e73fdaa95295a49f726e","e94f611a734ee17c3bcb85719af71eda0d96f1c4643c258dab264b6588331e0d",{"version":"0b53491bd938b0a987cb883412504fb013a17352e708180ee28ef2dc318180a2","signature":"7dbe229547f104c09c261bfe99ab95b3cd56eec8fbc40ba2f59b8f751482b4dc"},{"version":"c521c7d794c01e15da7dc8b9c35dfe41964baeab58b4b51fda74585e963190df","signature":"77ef8dfcc23520ded7f9e6e56363a145ca1d2b04d75db324245a936ad5771e1b"},{"version":"d8a0cf0f5191371ec6ed9374e708af2144cb78580ee3b11220b58b240796b098","signature":"b114308f5fae20f2692911785261f930bc01c86688a1a53127691ed96f79f5e4"},{"version":"b1d2011a28b5d9ccef790e75772f22b7bfbc0f69eae65e8638586babf13e6257","signature":"9a3dfd675e2e1a44c2506c3a27310b2ae7aa0d92fbd0c1c9d148715921f564eb"},{"version":"9a54496184bf54df3dd5a9fd8ae1f26ead31c964fca8bc8686492106f491c2ed","signature":"16537327e875af561284d17cec381371213b8cdd203b8a845d710db14a246bb1"},{"version":"d86ebf691a8d5f94eef2568a24e0e6ddae92bc83405b8da4bd67e153f0a5ddc9","signature":"edbad069bed79f29340ab8ea6c6acbc78bd6834d20ebd024e858026508193ed9"},{"version":"f30f1a7cf94d7df1e6e73268354643681c2a77029bd2a9904f738077061e8741","signature":"788b1424f25b51d11c3a2b391f149f176eb785c6ac01b9ad20453fceef98d79d"},{"version":"f2e00cb1db30a0a3b2290fc46c0f8b2a516a64bf667a9a157b71e1713f27b430","signature":"2540612ec964ef74af399cc73068b09f3b66917dd083ce066ae46de3fc4bd5df"},{"version":"2d97ab03b6d2fcf6b6354c702574d62b7276520d3fe6bcc8cb8a32d204387292","signature":"af9e2d585e005f37c808df8c4300da611de00d30fc4f0a36b20bcd3002e344d2"},{"version":"e6879ddd3a3ca42201092d66bdfdea59597365a96ee2beae397be9b063bffe47","signature":"2f3668d53d4a13d5007131b82911584b90cc3300861555bf677979c99422d69b"},"d3ab48a80622e0b2016b392d0da4c8ad2871bea39fd428b84434815aa6a7b8e3",{"version":"7603f29b760420ce677778cd849284fd04a9cc24c2d6bd87beaf2656836dd969","signature":"f60e6868b219b46e097701e55f1308a062eea13711460edf972353dfcb7c2398"},{"version":"a6ee943f16067d45e5cc9fca8142ea5f13d82accdae6efd25d7b074d164a6516","signature":"b0fa112cfa82c42ce4e36118afa9c1e81ed4f4678d4f8343ddf9d28265ca38c3"},{"version":"d8a55b60c544a8a7d97323faadd4056a52283a3e6cd1aba4ec749b08a36fafe7","signature":"5c0450e41a3c8eb573ba2dcfda9fee8d40efc7bad2999bcc958e33076d88e356"},{"version":"9af7dc55eb285a0f47d5fa9e685725d67263b4ed71c19d78b9faff0ef1d92754","signature":"c650e4f7b6fac09929ed26b2055f7e60f8aff8aa55d394825436b58efbc7362d"},{"version":"5510c812a153aaf2a53e5b02f748bdbcd73e7f66f8728a9d970f3306ccb08c3e","signature":"8103a7f63782466bda54fdf80af5ebbeb2bd5ba90db7ecb3ff0c623457aaaf4c"},{"version":"17c3cbc4f86f7f7f151ffcd75271197bde4c27558cd33be166ca2996dfede3f4","signature":"c4f6a7b22af4e416d0207d5cd0041b6983d9cec2f9e798aa78dcd8903025f4f1"},{"version":"2cd1eb1921345adc2d35496621f28484d0360c7d85eb930327685af2ee92d51c","signature":"f049a46afbbbeda0e1ac53ab4111419edd19169aa0f37d428aba3740bc36938b"},{"version":"f36e79736bd23aa5d2779cab92cf8c0ffa14b1d672e0d73f68862b18edfbc91e","signature":"da9ab6b040cdb40a318a1146bd5d0411f47218c87ffee7b74050e89fedb5e046"},{"version":"56354c44b26b304c2b4fc23eed3e459a52269de04aa529a736fbc723c5a1f6fc","signature":"c6c8700777473b70dfc5c81186f64d86eb5de9b48a909c206eef16423e9f4889"},{"version":"005b808f783bfc7460c47884a79e317cf6fbab45ea8cac82988efa5d8e924ad4","signature":"e5ffccf82fd6c9f7adccea37040e60268df54f6c0d013d0205c2671373057b10"},{"version":"5a41afa4e0bb490d64ddbf0e63c20d9077f9de894f2e1f64851c893035920b6f","signature":"7d0e8ee5469dd96694323370d6a9f05d421a535dd0c4d87dea649bfb7c0880c0"},{"version":"d3e43d5636be5c0ac9307218fcc3c090c3948caa9c8824e3f35311ab84580b23","signature":"e3eea4deaa2ab31f0788d1243c247e4623e9ec9dba8013b05c84395c4c459369"},{"version":"7e0a7a4d24df652257464320f52cedc67c34fda434304089af209c2b1891e8e3","signature":"a6187b3f8c76c40e06de83dbca2602e0e93af95b4a34528ac9febad9beab8cd3"},{"version":"551878d50d69548a6eed165ab6a4aac7e6eff179d67b441f3d1c172b1e23e71c","signature":"1db69091113e639e148f7a8d93baa8960bdd63f97f56fe4e4f2c0a7f5384eeb2"},{"version":"0e9e82e77526617ea75e056e84da3cd90b36ae340506dba3fbcca50bad3f6ff1","signature":"75a07a7011b50fa72c4729dac1cd8fe5feac27e74bf0b0aae296b00180e0bee5"},{"version":"da574122f80326bed70e4e7c4114ef471caf692d40d5b1630a5854b4cc583975","signature":"c1727287414c429616faa26f44ae6b656da6d689314ee4c5fb0efc894bfd8e1e"},{"version":"ea3841a73747cfe318819b40f8e28726926abc8be52d79060b59940a46302aa9","signature":"12032167891373825044e19a19bc802061be19ed4a08f7bb9b567ce68563d2c4"},{"version":"386d8963e6b3a605efdc64d362580521815916fc2bcfea098a34912043481549","signature":"4c090b42a136757776aa871d9d7a36d3e11909f9e328874afc9bb5aaf983a90a"},{"version":"197a6ef9933ca11ad377c8f62ded7c96593915b31c8fe7608ec4c10ad1e830cd","signature":"c5b321e5db3d846f13a0257e1f1cc9697094729c80c6842aa1b353aade25498f"},{"version":"78deb773c8337e7d4d1fe7897054b4ce387bde8c0ab6dd9fcc1c76eeda3c417d","signature":"a193d5c2e4e6a2d562b0aa23df25f8b918edef0915433518e15df601a974d37b"},{"version":"9d28314aae1cad38cb6b8907361413d809674668404a97037467edb1946a69d5","signature":"9d0a23618d1f94a40721f2413a2a123f8db1ed8e54c0a18f89a2c40b702e5a75"},{"version":"04acfd98f9505f49e8a1f1723a0338332477f6e709ac5fec1dfa9c41483a032d","signature":"ea5fade0a34a91390d456e8e1878132227f9806053c671506aeb5975c0ba488e"},{"version":"e7d292cdc70dc66431848d0be2cb76b7346adc902f8b0990b7023c5bbdf4cc8d","signature":"c865ebe46e005f5646098e5cd8992bd72e83d8f4c5484c4e4be18944a5851f8f"},{"version":"6c74b09c289f932343c3c3d63c8616e81bd9f29a366edac85c9e6fdf80eb5b71","signature":"066cd166a62e76b7e7baf7ee4a5c19ea1cbb9b4e356fe2a76b6adf009ddbbd2f"},{"version":"72e9e0889730a1db3625437912b3aece2fb5bd475508d8106cf545d9e213eefc","signature":"43705009fe25d283024d0f392e29baaea0364f2298241e4b805e54bfcb22b781"},{"version":"425c93fb43ac2da0d429b47bd90e488d2b74378fc9af586117c65c96b4dd461c","signature":"1a8b4694524ead16c54871b6528cd9a4278587ff0b3131159d2d2573c6426ff6"},{"version":"5f4ecbc228d4f9761164fb8ed086873145ac71c543dd3af32eb1c890e87b0c26","signature":"b2e21a6cc121e497ae8bb9fe920e6240bbe00a9b7d68a21ea0bdfd11a4c83b2b"},{"version":"67760fa96e0c7a63fa6fcb4d65b3a258c5c6e7c6ca3a2d723e1e7a4c8a5a727f","signature":"e6a5a0b0f2380fdcb3e3def499eea9f219f09bd9432ce8bfac84ce40e8b9e22d"},{"version":"dac38da87875a9da46b71a9fb65fbf883d5ef9de2553cdee9c6d0c2d4ac4dab9","signature":"a9fbd92e9a4b15394252a764aed959d8a42416ac97b99f8b6f9f027289365fd6"},{"version":"446f19bbac83ecfdf680aacbced2d0fb4550a3f3a6b9f5d59ef27fa22f7d6cfe","signature":"a8daa4f8e47fc38ccf2e6956ee63bd06ee7cd6e35cc791df1dda55d16503dd7e"},"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d",{"version":"873499658a5c6330c4de35054888bb23f6f539b0b677e5aa1ba653246ab59954","signature":"7a495d719202aaaf00563ecb16e134016e744b72dd8a597db9676577bc7ad276"},{"version":"ef32e4fcd4e789e11708c15258f67c2db31a53e27a8dc995c23c197e16741d5b","signature":"7f02bec382e751691fcb43d17d137a7c05e4469bc2bd5265998f5a901262afc2"},{"version":"b48068aac0edf03dbbc3aad30ec1dedaab8c1cc556328c0e5d9b40cffd64c598","signature":"10aeb5320b8e9da64570afb310b60654d7e29e67b1a082da9c3f0ec7a4b802ed"},{"version":"b4ad9020f11ada489b6e22e8270a6925de08be15dc92ae6460f5b7596a42bfa1","signature":"c90fa12f4b8d12ee07ffffbb12db3cebaca3c1c710084254a30eb14144cfd67e"},{"version":"a8aa3e50256aa2729aecd632e64a0ae6935cec6db3ae70d4a314d50b4f7874f2","signature":"e21d236940ccbf6441efb49db767d319861bcb80407d32ccb3b0aae699bb4064"},{"version":"96111405c8c67eccdae7912966902a74678b8c390ce6e5b877858cd6cddee103","signature":"958776deb2a1bf56dc7175d5c4133974de942734fa2f516bf6a9ed472fd76c4a"},{"version":"b848b535bbe4a2d3dd79bb14ceeaccc90d5da105d900600183f70671d3461306","signature":"6deb3a1ac7dcb839228782e9a84ba8921735bc61d7b88eed0dd87baad7c11b33"},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1",{"version":"78e906dc2607bb4b69b7c18f0e7e1e7284a082660ca6a7638a3c4f2cbeea7ae7","signature":"f9a151e1241f20249b780d0ac2d0bfd841a4b04ecb53332eafc8df7f730a0385"},{"version":"3b64c04d6f7484395d39f1f52bee792dd6eb9ce7b7307937b035efcb039c330a","signature":"cc7d0a2b07d32292af3fa524e6a2fdfc138898cfc76103dfc9830524b047091a"},{"version":"82a561fc3c2aea503d7e02b24f04c09f9e4c411b4e1572fa9715b116e2142319","signature":"94b48dfa6ccb1cef1eaad5c920f6908c1d8fc1aa5537d51cff6466be7c0a40ca"},{"version":"4b85b8ebef706e378b7a22967546bbe26c7358fb8201caf9da897fa275174fe4","signature":"0def07826cc47e4df2e56a0f1a780664e0cdfb216cc1d4162f35965a9799cd48"},{"version":"60a2db9db43c7f862a9c3eeb463c639af239b76ad77eaeee241991ac2b07d66f","signature":"16253c96da9a643f89c04e2821d49a9b9c3aa0909e44a2724a58ae88d82b34c2"},{"version":"4ee46cc21f6756d8a223e5c74c68f9ad36ced0f8b9b7dd496beddbe56f332ab7","signature":"eb22a112af43cfd128529de7afdee7cc2fe50ac81027ae0c5714e670d0d6d594"},{"version":"81dd0f659ea4ef6c870e2cb86a8c2280bcf72a584b06abc72e640333fc5cb12f","signature":"8d492ddbaa338fb9ab85df00a7e50a70ca6c249855bf210bab71849c40a7ada8"},{"version":"4b70a94a01f898aa66fb8cc650a895f8fe78a20dd97e19880ff04529da49d82f","signature":"f8167643f786a0d82bfaaabbbfb9897de98b4ac79d979872ed5baef5902dee21"},{"version":"54f563f0939efd80be37eaaef57c3e673746c41f3e2c0403199fc3ad569a6e37","signature":"1da6a2a6a409371673ae0abed41cf39fc5c5b1f3fc91cf6e7f638af2771956f1"},{"version":"5b5e66da936201f4549e36311210e771ca73a31f78d7cd3756515986f6271c84","signature":"e59e6653e1c69629404cd149e8ba0f25ce4595e068e20bf1c66c8b32c7f9290c"},{"version":"f994a63cc461609b7ed072f7e256fce9bbf5e55ae65581adbe1000a3a98c1674","signature":"7d0e19b2b9e1cf5eeae0da11e6ecfc5165d466da9e5e3b6ec450723f56fe6cdb"},{"version":"01a75b3030c190d748f3196261df22ee8763f46b94d17c0ba95d7ab5288ae3d2","signature":"189955b5eae491427e16f84a9a94d7141860c273806a2e366b9dc5240124e4ba"},{"version":"a0e28e3628b04b755a38bfaee1d1bfdb54b5050fa8aa1584dc3c585872e47505","signature":"cbd5f45747b457c76a6ab7f1bd0565626fa2e61800b7d5873e040c8e0663a28c"},{"version":"5ec6a4a4a994ac1f5c64670159c081d9c3e04063deb6079f548ba26e8a2c7211","signature":"36bc53ecebc46f64f59c2460d44af1ad71b92a8332fdd2d00b4f458a9e743be9"},{"version":"dfbc83e7bf4c91cec4b5814ae42ab4a725f97b3e6eaabc3dc1762fe47a39e863","signature":"79325082ebc3a29df9cd28ee124d08b3365c02cd39b18304aa874381eeb5635a"},{"version":"ea7c51db5bf17d891ab0570f0fa2ae80811ab65dd0b64eef8053a8e1716f6b0a","signature":"5b71ee337f5a2615eeb280046d0428662bfa4a6c357b813163bb2ba90eda20a0"},{"version":"a087d92fb6ec29deb5b8983da96a323efe406f5e846d9244be2fc306872194b6","signature":"28878ea906ac366799f88e785de75f3a642a4b4ea0d5ab095f30af414db67197"},{"version":"b79f4011078863da2cc33a8b1aec242fc3c0d6866f2edee21475d9691cb43426","signature":"de0ecd4c040bc4a0f2c1aa7ce991e3b838f58223cc6a84418b23904fb551f58a"},{"version":"5c33d86857a49be6f01e9e7481c1bb43ac3bec75b79edfb324378a797638cf55","signature":"e5d8c9114927e2380e4fba3efd3cad8217345d5c638ca3a08fc8a2ff3806f2c9"},{"version":"b1bbc9029462ba053e2576a4a4e9e9ccd9abdefd7604d07cc2e61dda0d13739b","signature":"a6f1292532942b14e80a4af706943c0a44f573a5381b6958c705676a988c2b08"},{"version":"afefc730a33e0b2295f5dd40d50a93288461d9e86da59424ce32356a64bbf4f5","signature":"396c3a317818feddcb832e10691ad78c88d23fc4fb34b112861b6c6f02d741d7"},{"version":"5c5ca9e3241d6ca770120bd993fad2142fefa1a082fe302f2709116bbb35b19c","signature":"92cc87ec79d7ffe7867b4a662f84985422aeae938a6ef24de719a8495d3e7c14"},{"version":"09ef1d5f5c8a4b816b4385cae976e17dc947e1d14a944eb4dabf4093ce72f24b","signature":"3a6a228e17743f63cd572997a9d4f0c14c9a0ba1f700455381f3a4d94765e1eb"},{"version":"ac76e93f7da4c4b939dc470c41e58c5faa7cc0a285e0059865fe190707c9f260","signature":"7b484d72e61ffd37956f976f21c6d1eb602c54c2388432d0647de246a6c7bdf2"},{"version":"08565e14cba75ac76753fb32c502a842c9d855fbcc0f751e344c31c2222d13f8","signature":"4ef805c7c1969f34cedd231f3137ade8b62b44196dc4aaa2cf87e2807e2a069a"},{"version":"6de3fbda5b0a21fe95945f454caa7e0f7bc9425217f3efd78919b1ad529d1a71","signature":"a8193b385c6b59abb9b95f5c38bb9aa5b842fd5e03b24625e3af9dd20043576c"},{"version":"2dcff61b1b0c23169712ee8bd504f548265b46aa6184cd0289e04e4723f23862","signature":"2c29308799eaf95c363024ca5532f345615f11e354bec61c2aa607ba3bf82079"},"78ef0198c323d0f7b16f993ada3459f0e7e20567e7f56fe0c5ee78f31cb0840c","01dea450d742aa55ce9b8ab8877bbda8eb73bf88609e440cc34f6f59f35080db","5ec614ed82e045de15417a47e2568be5310d43d4764ee43d295ea38caafbfd17","b788ef070e70003842cbd03c3e04f87d46b67a47b71e9e7d8713fd8c58c5f5ec","583d365dc19f813f1e2767771e844c7c4ea9ab1a01e85e0119f2e083488379c2","16ab5b20dbc2b0860c3c59941570e616f8a6fc31a689fdc8c1b984b96dcd11af","0dfbdeb122565d1b0ecf42a04648c7c370a880ea27b74b8c2a87cc9b9f73398d","58c7f7820dc027a539b0437be7e1f8bdf663f91fbc9e861d80bb9368a38d4a94","f8e6a8fa14ad7cfab128f9922505b57fb4fbd82828047c46d7137c066c9bff21","57ab70cf1fcc245d66577501f0846fae49a953c92f004e7927e5ea7bb57c6a68","bbc49fd9dc6ee162ba3d270c834398e0c1d44e657ac4edfa55ac837902b7e0da","6993f360de4984b6743764fad3b88246d5dc6cfa45567783fc23833ad4e50c13","f11eb1fb4e569b293a7cae9e7cdae57e13efc12b0e4510e927868c93ec055e82","715682cddbefe50e27e5e7896acf4af0ffc48f9e18f64b0a0c2f8041e3ea869b","6d2f5a67bfe2034aa77b38f10977a57e762fd64e53c14372bcc5f1d3175ca322","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","33859aa36b264dd91bef77c279a5a0d259c6b63684d0c6ad538e515c69a489ec","33fa69f400b34c83e541dd5f4474f1c6fb2788614a1790c6c7b346b5c7eaa7dd","be213d7cbc3e5982b22df412cf223c2ac9d841c75014eae4c263761cd9d5e4c0","66451f9540fdf68a5fd93898257ccd7428cf7e49029f2e71b8ce70c8d927b87a","8a051690018330af516fd9ea42b460d603f0839f44d3946ebb4b551fe3bc7703","301fb04ef91ae1340bec1ebc3acdd223861c887a4a1127303d8eef7638b2d893","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","fc26991e51514bfc82e0f20c25132268b1d41e8928552dbaed7cc6f3d08fc3ac","5d82bb58dec5014c02aaeb3da465d34f4b7d5c724afea07559e3dfca6d8da5bc","44448f58f4d731dc28a02b5987ab6f20b9f77ad407dcf57b68c853fe52195cd7","b2818e8d05d6e6ad0f1899abf90a70309240a15153ea4b8d5e0c151e117b7338","1c708c15bb96473ce8ec2a946bd024ecded341169a0b84846931f979172244ba","ba1b8e276abe5519e0ba134fd0afba6668ba26d8d5a1fb359d88aff6357457c2","dc187f457333356ddc1ab8ec7833cd836f85e0bbcade61290dc55116244867cb","25525e173de74143042e824eaa786fa18c6b19e9dafb64da71a5faacc5bd2a5c","7a3d649f2de01db4b316cf4a0ce5d96832ee83641f1dc84d3e9981accf29c3a1","26e4260ee185d4af23484d8c11ef422807fb8f51d33aa68d83fab72eb568f228","c4d52d78e3fb4f66735d81663e351cf56037270ed7d00a9b787e35c1fc7183ce","864a5505d0e9db2e1837dce8d8aae8b7eeaa5450754d8a1967bf2843124cc262","2d045f00292ac7a14ead30d1f83269f1f0ad3e75d1f8e5a245ab87159523cf98","54bcb32ab0c7c72b61becd622499a0ae1c309af381801a30878667e21cba85bb","20666518864143f162a9a43249db66ca1d142e445e2d363d5650a524a399b992","28439c9ebd31185ae3353dd8524115eaf595375cd94ca157eefcf1280920436a","84344d56f84577d4ac1d0d59749bb2fde14c0fb460d0bfb04e57c023748c48a6","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","35a0eac48984d20f6da39947cf81cd71e0818feefc03dcb28b4ac7b87a636cfd","f6c226d8222108b3485eb0745e8b0ee48b0b901952660db20e983741e8852654","93c3b758c4dc64ea499c9416b1ed0e69725133644b299b86c5435e375d823c75","4e85f443714cff4858fdaffed31052492fdd03ff7883b22ed938fc0e34b48093","0146912d3cad82e53f779a0b7663f181824bba60e32715adb0e9bd02c560b8c6","b515457bebb2ad795d748d1c30d9d093a1364946379baf1fbb6f83fd17523ed5","220783c7ca903c6ce296b210fae5d7e5c5cc1942c5a469b23d537f0fbd37eb18","0974c67cf3e2d539d0046c84a5e816e235b81c8516b242ece2ed1bdbb5dbd3d6","b4186237e7787a397b6c5ae64e155e70ac2a43fdd13ff24dfb6c1e3d2f930570","2647784fffa95a08af418c179b7b75cf1d20c3d32ed71418f0a13259bf505c54","0480102d1a385b96c05316b10de45c3958512bb9e834dbecbbde9cc9c0b22db3","eea44cfed69c9b38cc6366bd149a5cfa186776ca2a9fb87a3746e33b7e4f5e74","7f375e5ef1deb2c2357cba319b51a8872063d093cab750675ac2eb1cef77bee9","b7f06aec971823244f909996a30ef2bbeae69a31c40b0b208d0dfd86a8c16d4f","0421510c9570dfae34b3911e1691f606811818df00354df7abd028cee454979f","c61d8cc814035424b5d55348b6aede37074151c408de931ac3f63c7b6f761efb","d604d4dffd0b0f734e9d3a8413261d88af13cdddb329f2d708a851b495ab4614",{"version":"4036bf0e419d9615b67c4d9d317e441b51467fcc68f71c015a6da22fc4903fb1","signature":"170f115d24d30c7664516fa1dfa17251261f80bf014bf58bc1c2ee15c464f6ad"},{"version":"d5921ba2d2ed0314c33ec5d9acd91d1877fb625d0617750971ceb6cdf042277c","signature":"b5bfd698b1238027630940c9529a4fbe6a04a9dfc1b38bdef6f794bdc7d72b98"},{"version":"88f32ab74a9b3bff0d97fbd440bd7c39bf3b14a97a1f1488cd96c13e98bb3e8d","signature":"67024006018d74406bd928d8885899632b5405d576086222b8e6a97eb6f5c2ae"},{"version":"a986373783dfcf56e02e140b45ecfb25178b38da26a62ccb0c4c2cae4298f899","signature":"954e8bba06c8dc3e287894aeca8ccfb45cb92549a2930b9ffc34432f1d595be1"},{"version":"e684a955cdeaf02f6937106bd606bf44e9ce0cfe69986167319351dd6dd0c3b3","signature":"580fe072324990362dc7d9ca35eae20574207a8c823e3b3c992acf31c6db942a"},{"version":"7151d269ea192dc9031058dd7bc2de10416316f3897c42179d730bd0241a8880","signature":"6bc3d379b193848044dddf5ae9fab89f3f133c78a17ca79ad9724cbcc81c575f"},{"version":"f9598045256d4edc88b292c8eb8b8b318a79cf2cd1270b0aed44a4377fe0ce6f","signature":"3c22969b04f046424f386123813f62ad1b0b74a42816a254a3dc6a94dd42ee67"},{"version":"dcbbb75ead0d0f65c5d1c1f366e0aa8d1131f20e2e444972fa4662038a591a21","signature":"1fbf4f3a7ee1bfc6548e820ec8b4493de3983734dc76a0ca49b62946e572085f"},"60891ee0ae6e5cd4bf8d066d0cef6d3d733e8c8b20da11b8abf1d3ad1fab508f",{"version":"3c18604f0df41708fd95a22e72e4cdf6600ec70ee2654c5d0a6a07646d757f39","signature":"d051f49b2c625a8369a70b3e22221fd07a669b29b9a7273c002a8dae4c1aec7a"},"48af1f75784c2a10db50507b21884630a3e48e85fc4b096c338e3c2e44ea99f2",{"version":"2e0790b4c14c16a019c2cbd4fd98ef6d34a52406d905004fd541ccfb29ec0e49","signature":"e7e94a05459065ca72ba1f90dbc7fa6e91e7a88d1ec5012ccc7dddef6f3cc1b8"},{"version":"78aad34ec7d2cc2c5f6a4d9aac4e735f667ac41035f6e25ac67b9bb8c091c95e","signature":"20cd837c1118b527b377ba86ec6dc7a2450fdcc382fab2bae381260a3d3ce56b"},{"version":"6a19bb648c51b84252c108eb06d9f35de39f83e3bad66ccfe48c64e3cf12bfdb","signature":"c54fac4e1655c57995da732235caf775492283a8486dc7c2506cb603c96710c4"},{"version":"6721a46a632c14298f23e66a195f5491bd853c8e2786bfea56d26f3a6aaaccaf","signature":"f1f8c6ff8bd3e4bb2a69396a8324c656d4965c52357855bb1484b2d6af2b9ced"},{"version":"314fec209cb8c3e699843ff9983ccff14899d3f2d69ce1de77248e89a16d9f6e","signature":"589d6c7d67c4e43174a675135b6af6b3065e0a6441ad7910c33d648c310f3fec"},{"version":"efd65b596f122ee913658d36252874d2e573b62174f1fb38cddbc341ac2fb78d","signature":"1724bc63d938deca40d91f9b7c81258f1346867a3b34782a6c1cae0ed61813ac"},{"version":"61205e18c99767c481977119d54568967048e9ae2d10a90783be788fdcf50d76","signature":"6f7feed995197172290917a947f5f25b8637ed16dd93b08bdda99c9a9676d512"},{"version":"36ae9df404113fa82027832ce1b314a63c698ecdf94a006bb0829f05d544c070","signature":"b5da953a19b0f4c753e430286cd0e16f9c2610387032dc29cb22f4687708b763"},{"version":"1bf079760a070b7d3c0435c181cd951b97c086d68263f03082a558d5fcf3f1c7","signature":"0a64aef02427fb872ddde01c196f84b79c2e207ab2224e7768e028f022721be6"},{"version":"621dff8f2cff079a220c2ba4a4324c1beee41c5e2d343a484f293fbe0c2445a0","signature":"8b7e06e1174c036f8b96871655d5a701977286116909fe004198a1e65c6a7f6e"},"1101f97da522756169c4e6cb9736fa8e6ecb87d752298568e76841b1b31c3f46",{"version":"d863bad0c0ccb7a5fbdbbf9b7fadee84fb8b074ca38d7291d1da71690fc85ad0","signature":"1cb9b1f985b4fb6c7e35adfbb687da427d4cd5b3628c53bae57dca611d22f92f"},{"version":"c8f0ad112bfd701598202def3f181ea89962cffebedc53d8216daf85e1dba0ef","signature":"2fe24dd8d208d19e18e245bc1fa18cf3d09ff94e134a6cb999b04960fe00c3bb"},"dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646","e74998d5cefc2f29d583c10b99c1478fb810f1e46fbb06535bfb0bbba3c84aa5","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","43d058146b002d075f5d0033a6870321048297f1658eb0db559ba028383803a6","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"dafc58ee47fa25dbc68b27c638bd6153dd7659021c164f64b7760757e9f5a6ab","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","304504c854c47a55ab4a89111a27a2daf8a3614740bd787cc1f2c51e5574239c",{"version":"95f9129a37dcace36e17b061a8484952586ecfe928c9c8ce526de1a2f4aaefa7","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","ed3db4eb7ad0466e19df82d9ee5c057d78df954283004783932d75e8fa4058c5","278fe296432b9840660d6e0d1778b4b4897a591d4b910a5f7ac8db0b476a8af7","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","fd7a7fc2bb1f38ba0cded7bd8088c99033365859e03ba974f7de072e9d989fde","6cf42fc3765241c59339047a45855c506a2f94ee5e734bbded94ddcafc66e4c5","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"cce14dcba2c2cb1059977ad65cf9caef890118cb20e35c4cf420bf1c83f27c1a","affectsGlobalScope":true},"9d604e6f853b64692415a61662d8490cc6057596ce7fb52a3a2ce878e376586c","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","fb862b9a2e78754cf44b770ba6f194987d63c8d4cd103c6c05534faa4120ae98","91479d2a9bc09df0091b5e24af57cb462cd223e56498d16e9efdaebd587fa81d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","c6f77efcc19f51c8759779b6b6ee0d88046c15c15dadac8ffed729a6620daf39",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"e0cc19f50900706e7aae038565e825f2014ac5325b99b3daabf8ecd5d3d09f1a","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"645baafeaed6855c8796fcbae4e813021c65f36eaa3f6178535457a2366f6849","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"5a6fc2089f515b39aaa208339421669f61935cd661e356ebee49240be85091fd","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","3df5b34f3449733bc4831b8d670f958a045e7a3f5d7b0e21991ef95408dbec13","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"1fe4f59d471c69fd533049505081f7e5d6d56486416b12aafb22ba9616034ab7","affectsGlobalScope":true},"3411c785dbe8fd42f7d644d1e05a7e72b624774a08a9356479754999419c3c5a","8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","33f3795a4617f98b1bb8dac36312119d02f31897ae75436a1e109ce042b48ee8","2850c9c5dc28d34ad5f354117d0419f325fc8932d2a62eadc4dc52c018cd569b","c753948f7e0febe7aa1a5b71a714001a127a68861309b2c4127775aa9b6d4f24","3e7a40e023e1d4a9eef1a6f08a3ded8edacb67ae5fce072014205d730f717ba5","a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","382100b010774614310d994bbf16cc9cd291c14f0d417126c7a7cfad1dc1d3f8","91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","4fdf56315340bd1770eb52e1601c3a98e45b1d207202831357e99ce29c35b55c","927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","be6fd74528b32986fbf0cd2cfa9192a5ed7f369060b32a7adcb0c8d055708e61","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","6f5a9b68ce8608014210f5a777f8dd82e6382285f6278c811b7b0214bbcac5bd",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","2f848b4e660b568651a6350565afc8ac5b0644853a2a863862807602cf244a05","e7049308a11ff36ca7eee4ff33df35106eb108018ea4cd4cdb00efe8e9711ce0","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e"],"root":[[245,285],[289,295],[297,323],[382,405]],"options":{"allowJs":false,"declaration":true,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitHelpers":true,"noEmitOnError":true,"noErrorTruncation":true,"outDir":"../esm","skipLibCheck":true,"sourceMap":false,"strict":true,"target":7,"tsBuildInfoFile":"./cjs.tsbuildinfo"},"fileIdsList":[[407],[506],[286,287],[324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380],[326],[326,330],[324,326,328],[324,326],[326,332],[325,326],[337],[326,343,344,345],[326,347],[326,348,349,350,351,352,353,354,355,356,357,358,359,360],[326,329],[326,328],[326,337],[407,408,409,410,411],[407,409],[463,499],[501],[502],[508,511],[462,494,499,525,526,528],[527],[414],[449],[450,455,483],[451,462,463,470,480,491],[451,452,462,470],[453,492],[454,455,463,471],[455,480,488],[456,458,462,470],[449,457],[458,459],[462],[460,462],[449,462],[462,463,464,480,491],[462,463,464,477,480,483],[447,496],[458,462,465,470,480,491],[462,463,465,466,470,480,488,491],[465,467,480,488,491],[414,415,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498],[462,468],[469,491,496],[458,462,470,480],[471],[472],[449,473],[474,490,496],[475],[476],[462,477,478],[477,479,492,494],[450,462,480,481,482,483],[450,480,482],[480,481],[483],[484],[449,480],[462,486,487],[486,487],[455,470,480,488],[489],[470,490],[450,465,476,491],[455,492],[480,493],[469,494],[495],[450,455,462,464,473,480,491,494,496],[480,497],[534,573],[534,558,573],[573],[534],[534,559,573],[534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572],[559,573],[576],[504,510],[508],[505,509],[514],[513,514],[513],[513,514,515,517,518,521,522,523,524],[514,518],[513,514,515,517,518,519,520],[513,518],[518,522],[514,515,516],[515],[513,514,518],[532],[507],[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,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,173,174,175,177,186,188,189,190,191,192,193,195,196,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[99],[57,58],[54,55,56,58],[55,58],[58,99],[54,58,176],[56,57,58],[54,58],[58],[57],[54,57,99],[55,57,58,215],[57,58,215],[57,223],[55,57,58],[67],[90],[111],[57,58,99],[58,106],[57,58,99,117],[57,58,117],[58,158],[54,58,177],[183,185],[54,58,176,183,184],[176,177,185],[183],[54,58,183,184,185],[199],[194],[197],[55,57,177,178,179,180],[99,177,178,179,180],[177,179],[57,178,179,181,182,186],[54,57],[58,201],[59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,107,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,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],[187],[48],[424,428,491],[424,480,491],[419],[421,424,488,491],[470,488],[499],[419,499],[421,424,470,491],[416,417,420,423,450,462,480,491],[416,422],[420,424,450,483,491,499],[450,499],[440,450,499],[418,419,499],[424],[418,419,420,421,422,423,424,425,426,428,429,430,431,432,433,434,435,436,437,438,439,441,442,443,444,445,446],[424,431,432],[422,424,432,433],[423],[416,419,424],[424,428,432,433],[428],[422,424,427,491],[416,421,422,424,428,431],[450,480],[419,424,440,450,496,499],[50],[52,53,242],[51,52,243],[49,244],[49,257,259,260,261,267,268,323,381,382,383],[49,261,383,386],[49,383],[49,244,245,255,257,258,259,260,261,264,383,390],[49],[49,383,384,385,387,391],[49,392,396],[49,255,389,392,393,395,399,400],[49,244,394],[49,257,258,259,260,261,320,382],[49,259],[49,245,399],[49,382,386,388,389],[49,255,399],[49,244,245,246,255,257,259,260,261,265,266],[49,255,257,259,260],[49,246],[49,244,246,255,259],[49,244,260,261,264,268],[49,255],[49,262],[49,244,255,258,264,320],[49,244,245,255,257,258,259,260,261,264,267,268,269,321,322,399],[49,257,258,259,260,261,264,267,399],[49,245,246,255,256],[49,244,245,255],[49,244,245,255,258,260,261,264,267,396,398],[49,244,245,246,255,256,257,258,259,260,261,262,263],[49,244,245,255,257],[49,244,245,246,255,257,258,259,260,261,262,264,265,267,396,397,399,471,472],[49,257,258,259,260,261,264,265,266,267,396,399,400],[49,244,259,277,396],[49,242,244,255,259,266,291,297,395],[49,290],[49,296],[49,271,290],[49,271,289],[49,245,257,258,259,260,261,264,267,394,399,401],[49,271,315,395],[49,271,313,315,318,395],[49,242,270,395],[49,242,244,255,271,390,394,396],[49,270,271,316,319,395],[49,404],[49,271,277,278,280,395],[49,288,291],[49,288,289,291,297],[49,271,294,295,299,396],[49,292],[49,270,271,284,300,395,396],[49,270,271,285,300,395,396],[49,270,271,285,293,395,396],[49,242,270,271,282,293,396],[49,270,271,282,293,298,320,396],[49,271],[49,271,281],[49,271,282,395],[49,278,283,305,306,307,311,312,313,314],[49,242,270,271,277,278,279,281],[49,270,271,277,278,279,281],[49,271,277,278,279,281],[49,242,271,277],[49,242,271,281],[49,271,280,281,284,285,310,395],[49,317],[49,271,301,302,303,304,396],[49,271,395],[49,270,271,282,395],[49,271,280,281,284,285,308,309,310,395],[49,272,273,274,275,276],[49,244,248],[49,249],[49,246,247,248,249,250,251,252,253,254],[462,494,499,526,528,578],[244],[257,259,260,261,267,268,323,381,382,383],[261,383,386],[383],[244,245,255,257,258,259,260,261,264,383,390],[48,383,384,385,387,391],[392,396],[255,389,392,393,395,399,400],[244,394],[257,258,259,260,261,320,382],[259],[245,399],[48,382,386,388,389],[255,399],[244,245,255,257,259,260,261,265,266],[255,257,259,260],[246],[244,246,259],[244,260,261,264,268],[255],[262],[244,255,258,264],[244,245,255,257,258,259,260,261,264,267,268,269,321,322,399],[257,258,259,260,261,264,267,399],[245,246,256],[244,245,255],[244,245,255,258,260,261,264,267,396],[244,245,246,255,256,257,258,259,260,261,262,263],[244,245,255,257],[244,399],[257,258,259,260,261,264,265,266,267,396,399,400],[244,396],[242,244,255,259,266,291,297,395],[290],[296],[271,290],[271,289],[245,257,258,259,260,261,264,267,394,399,401],[48,245,399],[271,395],[242,270,395],[242,244,255,271,390,394,396],[270,271,316,319,395],[404],[271,280,395],[291],[289,291,297],[271,396],[271],[255,271,395],[278,283,305,306,307,311,312,313,314],[242,271],[271,281],[242,271,281],[317],[272,273,274,275,276],[244,248],[249],[48,246,247,248,249,250,251,252,253,254]],"referencedMap":[[409,1],[507,2],[288,3],[381,4],[327,5],[371,6],[329,7],[328,8],[330,5],[331,5],[333,9],[332,5],[334,10],[335,10],[336,5],[338,11],[339,5],[340,11],[341,5],[343,5],[344,5],[345,5],[346,12],[342,5],[348,13],[349,13],[350,13],[351,13],[352,13],[361,14],[353,13],[354,13],[355,13],[356,13],[358,13],[357,13],[359,13],[360,13],[362,5],[363,5],[337,5],[365,15],[364,5],[366,5],[367,5],[368,16],[370,5],[369,5],[372,5],[374,5],[375,17],[373,5],[376,5],[377,5],[378,5],[379,5],[380,5],[412,18],[408,1],[410,19],[411,1],[500,20],[502,21],[503,22],[512,23],[527,24],[528,25],[414,26],[415,26],[449,27],[450,28],[451,29],[452,30],[453,31],[454,32],[455,33],[456,34],[457,35],[458,36],[459,36],[461,37],[460,38],[462,39],[463,40],[464,41],[448,42],[465,43],[466,44],[467,45],[499,46],[468,47],[469,48],[470,49],[471,50],[472,51],[473,52],[474,53],[475,54],[476,55],[477,56],[478,56],[479,57],[480,58],[482,59],[481,60],[483,61],[484,62],[485,63],[486,64],[487,65],[488,66],[489,67],[490,68],[491,69],[492,70],[493,71],[494,72],[495,73],[496,74],[497,75],[558,76],[559,77],[534,78],[537,78],[556,76],[557,76],[547,76],[546,79],[544,76],[539,76],[552,76],[550,76],[554,76],[538,76],[551,76],[555,76],[540,76],[541,76],[553,76],[535,76],[542,76],[543,76],[545,76],[549,76],[560,80],[548,76],[536,76],[573,81],[567,80],[569,82],[568,80],[561,80],[562,80],[564,80],[566,80],[570,82],[571,82],[563,82],[565,82],[577,83],[511,84],[509,85],[510,86],[515,87],[524,88],[514,89],[525,90],[520,91],[521,92],[519,93],[523,94],[517,95],[516,96],[522,97],[518,88],[533,98],[508,99],[242,100],[193,101],[191,101],[106,102],[57,103],[56,104],[192,105],[177,106],[99,107],[55,108],[54,109],[241,104],[206,110],[205,110],[117,111],[213,102],[214,102],[216,112],[217,102],[218,109],[219,102],[190,102],[220,102],[221,113],[222,102],[223,110],[224,114],[225,102],[226,102],[227,102],[228,102],[229,110],[230,102],[231,102],[232,102],[233,102],[234,115],[235,102],[236,102],[237,102],[238,102],[239,102],[59,109],[60,109],[61,109],[62,109],[63,109],[64,109],[65,109],[66,102],[68,116],[69,109],[67,109],[70,109],[71,109],[72,109],[73,109],[74,109],[75,109],[76,102],[77,109],[78,109],[79,109],[80,109],[81,109],[82,102],[83,109],[84,109],[85,109],[86,109],[87,109],[88,109],[89,102],[91,117],[90,109],[92,109],[93,109],[94,109],[95,109],[96,115],[97,102],[98,102],[112,118],[100,119],[101,109],[102,109],[103,102],[104,109],[105,109],[107,120],[108,109],[109,109],[110,109],[111,109],[113,109],[114,109],[115,109],[116,109],[118,121],[119,109],[120,109],[121,109],[122,102],[123,109],[124,122],[125,122],[126,122],[127,102],[128,109],[129,109],[130,109],[135,109],[131,109],[132,102],[133,109],[134,102],[136,109],[137,109],[138,109],[139,109],[140,109],[141,109],[142,102],[143,109],[144,109],[145,109],[146,109],[147,109],[148,109],[149,109],[150,109],[151,109],[152,109],[153,109],[154,109],[155,109],[156,109],[157,109],[158,109],[159,123],[160,109],[161,109],[162,109],[163,109],[164,109],[165,109],[166,102],[167,102],[168,102],[169,102],[170,102],[171,109],[172,109],[173,109],[174,109],[240,102],[176,124],[199,125],[194,125],[185,126],[183,127],[197,128],[186,129],[200,130],[195,131],[196,128],[198,132],[181,133],[182,134],[180,135],[178,109],[187,136],[58,137],[204,110],[202,138],[175,139],[188,140],[49,141],[431,142],[438,143],[430,142],[445,144],[422,145],[421,146],[444,147],[439,148],[442,149],[424,150],[423,151],[419,152],[418,153],[441,154],[420,155],[425,156],[429,156],[447,157],[446,156],[433,158],[434,159],[436,160],[432,161],[435,162],[440,147],[427,163],[428,164],[437,165],[417,166],[443,167],[51,168],[243,169],[244,170],[245,171],[384,172],[387,173],[385,174],[391,175],[383,176],[392,177],[393,178],[394,179],[388,180],[386,181],[382,182],[389,183],[390,184],[400,185],[267,186],[261,187],[260,188],[265,189],[322,190],[269,191],[263,192],[321,193],[323,194],[268,195],[257,196],[262,191],[258,197],[399,198],[264,199],[259,200],[398,201],[401,202],[397,203],[396,204],[266,171],[291,205],[297,206],[289,207],[290,208],[402,209],[403,183],[316,210],[319,211],[271,212],[395,213],[404,171],[320,214],[405,215],[281,216],[292,217],[298,218],[300,219],[293,220],[301,221],[304,221],[302,221],[303,222],[294,223],[295,224],[299,225],[270,226],[278,226],[310,227],[283,228],[315,229],[282,230],[284,231],[280,232],[285,231],[309,233],[308,234],[279,176],[317,235],[318,236],[305,237],[307,238],[306,239],[311,240],[313,226],[314,226],[312,226],[273,176],[277,241],[274,226],[272,226],[276,176],[275,176],[246,176],[252,176],[247,176],[253,176],[248,176],[249,242],[254,243],[251,176],[250,176],[255,244],[256,176]],"exportedModulesMap":[[409,1],[507,2],[288,3],[381,4],[327,5],[371,6],[329,7],[328,8],[330,5],[331,5],[333,9],[332,5],[334,10],[335,10],[336,5],[338,11],[339,5],[340,11],[341,5],[343,5],[344,5],[345,5],[346,12],[342,5],[348,13],[349,13],[350,13],[351,13],[352,13],[361,14],[353,13],[354,13],[355,13],[356,13],[358,13],[357,13],[359,13],[360,13],[362,5],[363,5],[337,5],[365,15],[364,5],[366,5],[367,5],[368,16],[370,5],[369,5],[372,5],[374,5],[375,17],[373,5],[376,5],[377,5],[378,5],[379,5],[380,5],[412,18],[408,1],[410,19],[411,1],[500,20],[502,21],[503,22],[512,23],[527,245],[528,25],[414,26],[415,26],[449,27],[450,28],[451,29],[452,30],[453,31],[454,32],[455,33],[456,34],[457,35],[458,36],[459,36],[461,37],[460,38],[462,39],[463,40],[464,41],[448,42],[465,43],[466,44],[467,45],[499,46],[468,47],[469,48],[470,49],[471,50],[472,51],[473,52],[474,53],[475,54],[476,55],[477,56],[478,56],[479,57],[480,58],[482,59],[481,60],[483,61],[484,62],[485,63],[486,64],[487,65],[488,66],[489,67],[490,68],[491,69],[492,70],[493,71],[494,72],[495,73],[496,74],[497,75],[558,76],[559,77],[534,78],[537,78],[556,76],[557,76],[547,76],[546,79],[544,76],[539,76],[552,76],[550,76],[554,76],[538,76],[551,76],[555,76],[540,76],[541,76],[553,76],[535,76],[542,76],[543,76],[545,76],[549,76],[560,80],[548,76],[536,76],[573,81],[567,80],[569,82],[568,80],[561,80],[562,80],[564,80],[566,80],[570,82],[571,82],[563,82],[565,82],[577,83],[511,84],[509,85],[510,86],[515,87],[524,88],[514,89],[525,90],[520,91],[521,92],[519,93],[523,94],[517,95],[516,96],[522,97],[518,88],[533,98],[508,99],[242,100],[193,101],[191,101],[106,102],[57,103],[56,104],[192,105],[177,106],[99,107],[55,108],[54,109],[241,104],[206,110],[205,110],[117,111],[213,102],[214,102],[216,112],[217,102],[218,109],[219,102],[190,102],[220,102],[221,113],[222,102],[223,110],[224,114],[225,102],[226,102],[227,102],[228,102],[229,110],[230,102],[231,102],[232,102],[233,102],[234,115],[235,102],[236,102],[237,102],[238,102],[239,102],[59,109],[60,109],[61,109],[62,109],[63,109],[64,109],[65,109],[66,102],[68,116],[69,109],[67,109],[70,109],[71,109],[72,109],[73,109],[74,109],[75,109],[76,102],[77,109],[78,109],[79,109],[80,109],[81,109],[82,102],[83,109],[84,109],[85,109],[86,109],[87,109],[88,109],[89,102],[91,117],[90,109],[92,109],[93,109],[94,109],[95,109],[96,115],[97,102],[98,102],[112,118],[100,119],[101,109],[102,109],[103,102],[104,109],[105,109],[107,120],[108,109],[109,109],[110,109],[111,109],[113,109],[114,109],[115,109],[116,109],[118,121],[119,109],[120,109],[121,109],[122,102],[123,109],[124,122],[125,122],[126,122],[127,102],[128,109],[129,109],[130,109],[135,109],[131,109],[132,102],[133,109],[134,102],[136,109],[137,109],[138,109],[139,109],[140,109],[141,109],[142,102],[143,109],[144,109],[145,109],[146,109],[147,109],[148,109],[149,109],[150,109],[151,109],[152,109],[153,109],[154,109],[155,109],[156,109],[157,109],[158,109],[159,123],[160,109],[161,109],[162,109],[163,109],[164,109],[165,109],[166,102],[167,102],[168,102],[169,102],[170,102],[171,109],[172,109],[173,109],[174,109],[240,102],[176,124],[199,125],[194,125],[185,126],[183,127],[197,128],[186,129],[200,130],[195,131],[196,128],[198,132],[181,133],[182,134],[180,135],[178,109],[187,136],[58,137],[204,110],[202,138],[175,139],[188,140],[49,141],[431,142],[438,143],[430,142],[445,144],[422,145],[421,146],[444,147],[439,148],[442,149],[424,150],[423,151],[419,152],[418,153],[441,154],[420,155],[425,156],[429,156],[447,157],[446,156],[433,158],[434,159],[436,160],[432,161],[435,162],[440,147],[427,163],[428,164],[437,165],[417,166],[443,167],[51,168],[243,169],[244,170],[245,246],[384,247],[387,248],[385,249],[391,250],[392,251],[393,252],[394,253],[388,254],[386,255],[382,256],[389,257],[390,258],[400,259],[267,260],[261,261],[260,262],[265,263],[322,264],[269,265],[263,266],[321,267],[323,268],[268,269],[257,270],[262,265],[258,271],[399,272],[264,273],[259,274],[398,275],[401,276],[397,277],[396,278],[266,246],[291,279],[297,280],[289,281],[290,282],[402,283],[403,284],[316,285],[319,285],[271,286],[395,287],[404,246],[320,288],[405,289],[281,290],[292,291],[298,292],[300,293],[293,291],[301,293],[304,293],[302,293],[303,293],[294,293],[295,293],[299,293],[270,294],[278,294],[310,294],[283,295],[315,296],[282,297],[284,298],[280,294],[285,294],[309,297],[308,299],[317,285],[318,300],[305,293],[307,285],[306,285],[311,285],[313,294],[314,294],[312,294],[277,301],[274,294],[272,294],[249,302],[254,303],[255,304]],"semanticDiagnosticsPerFile":[409,407,504,507,506,286,288,287,406,324,325,326,381,327,371,329,328,330,331,333,332,334,335,336,338,339,340,341,343,344,345,346,342,347,348,349,350,351,352,361,353,354,355,356,358,357,359,360,362,363,337,365,364,366,367,368,370,369,372,374,375,373,376,377,378,379,380,412,408,410,411,413,500,501,502,503,512,527,528,296,529,530,414,415,449,450,451,452,453,454,455,456,457,458,459,461,460,462,463,464,448,498,465,466,467,499,468,469,470,471,472,473,474,475,476,477,478,479,480,482,481,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,531,558,559,534,537,556,557,547,546,544,539,552,550,554,538,551,555,540,541,553,535,542,543,545,549,560,548,536,573,572,567,569,568,561,562,564,566,570,571,563,565,574,526,575,576,577,511,509,510,505,515,524,513,514,525,520,521,519,523,517,516,522,518,532,533,508,242,215,193,191,106,57,56,192,177,99,55,54,241,206,205,117,213,214,216,217,218,219,190,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,59,60,61,62,63,64,65,66,68,69,67,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,90,92,93,94,95,96,97,98,112,100,101,102,103,104,105,107,108,109,110,111,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,135,131,132,133,134,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,240,176,199,194,185,183,197,186,200,195,196,198,184,189,181,182,179,180,178,187,58,207,208,209,210,211,212,201,204,203,202,175,188,49,48,46,47,8,9,11,10,2,12,13,14,15,16,17,18,19,3,20,4,21,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,431,438,430,445,422,421,444,439,442,424,423,419,418,441,420,425,426,429,416,447,446,433,434,436,432,435,440,427,428,437,417,443,51,50,243,53,244,52,245,384,387,385,391,383,392,393,394,388,386,382,389,390,400,267,261,260,265,322,269,263,321,323,268,257,262,258,399,264,259,398,401,397,396,266,291,297,289,290,402,403,316,319,271,395,404,320,405,281,292,298,300,293,301,304,302,303,294,295,299,270,278,310,283,315,282,284,280,285,309,308,279,317,318,305,307,306,311,313,314,312,273,277,274,272,276,275,246,252,247,253,248,249,254,251,250,255,256]},"version":"5.4.5"}
|
package/package.json
CHANGED
package/src/CustomOperation.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SetTypeSubArg } from '@aws-amplify/data-schema-types';
|
|
1
|
+
import { AiModel, SetTypeSubArg } from '@aws-amplify/data-schema-types';
|
|
2
2
|
import { Brand, brand } from './util';
|
|
3
3
|
import { InternalField, ModelField, type BaseModelField } from './ModelField';
|
|
4
4
|
import {
|
|
@@ -16,7 +16,7 @@ import type {
|
|
|
16
16
|
HandlerType as Handler,
|
|
17
17
|
} from './Handler';
|
|
18
18
|
import { brandSymbol } from './util/Brand';
|
|
19
|
-
import {
|
|
19
|
+
import { InferenceConfiguration } from './ai/ModelType';
|
|
20
20
|
|
|
21
21
|
const queryBrand = 'queryCustomOperation';
|
|
22
22
|
const mutationBrand = 'mutationCustomOperation';
|
package/src/Handler.ts
CHANGED
|
@@ -178,7 +178,7 @@ export type FunctionHandler = {
|
|
|
178
178
|
* // 3. set the function has the handler
|
|
179
179
|
* .handler(a.handler.function(echoHandler).async())
|
|
180
180
|
*
|
|
181
|
-
* @see {@link https://docs.amplify.aws/react/build-a-backend/data/
|
|
181
|
+
* @see {@link https://docs.amplify.aws/react/build-a-backend/data/custom-business-logic/#async-function-handlers}
|
|
182
182
|
* @returns A function handler for query / mutation that is asynchronously invoked.
|
|
183
183
|
*/
|
|
184
184
|
async(): AsyncFunctionHandler;
|
|
@@ -26,22 +26,24 @@ export const createConversationField = (
|
|
|
26
26
|
systemPrompt: systemPrompt.replace(/\r?\n/g, '\\n'),
|
|
27
27
|
};
|
|
28
28
|
|
|
29
|
+
const argsString = Object.entries(args)
|
|
30
|
+
.map(([key, value]) => `${key}: "${value}"`)
|
|
31
|
+
.join(', ');
|
|
32
|
+
|
|
29
33
|
const functionHandler: LambdaFunctionDefinition = {};
|
|
34
|
+
let handlerString = '';
|
|
30
35
|
if (handler) {
|
|
31
36
|
const functionName = `Fn${capitalize(typeName)}`;
|
|
32
|
-
|
|
37
|
+
const eventVersion = handler.eventVersion;
|
|
38
|
+
handlerString = `, handler: { functionName: "${functionName}", eventVersion: "${eventVersion}" }`;
|
|
33
39
|
functionHandler[functionName] = handler;
|
|
34
40
|
}
|
|
35
41
|
|
|
36
|
-
const argsString = Object.entries(args)
|
|
37
|
-
.map(([key, value]) => `${key}: "${value}"`)
|
|
38
|
-
.join(', ');
|
|
39
|
-
|
|
40
42
|
const toolsString = tools?.length
|
|
41
43
|
? `, tools: [${getConversationToolsString(tools)}]`
|
|
42
44
|
: '';
|
|
43
45
|
|
|
44
|
-
const conversationDirective = `@conversation(${argsString}${toolsString})`;
|
|
46
|
+
const conversationDirective = `@conversation(${argsString}${handlerString}${toolsString})`;
|
|
45
47
|
|
|
46
48
|
const field = `${typeName}(conversationId: ID!, content: [ContentBlockInput], aiContext: AWSJSON, toolConfiguration: ToolConfigurationInput): ConversationMessage ${conversationDirective} @aws_cognito_user_pools`;
|
|
47
49
|
return { field, functionHandler };
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
|
|
4
4
|
import type { Subscription } from 'rxjs';
|
|
5
|
-
import type { DefineFunction } from '@aws-amplify/data-schema-types';
|
|
6
5
|
import type { ListReturnValue, SingularReturnValue } from '../runtime/client';
|
|
7
6
|
import { type Brand, brand } from '../util';
|
|
8
7
|
import type { RefType } from '../RefType';
|
|
9
|
-
import {
|
|
8
|
+
import { InferenceConfiguration } from './ModelType';
|
|
10
9
|
import {
|
|
11
10
|
ConversationMessageContent,
|
|
12
11
|
ConversationSendMessageInputContent,
|
|
13
12
|
} from './types/ConversationMessageContent';
|
|
14
13
|
import { ToolConfiguration } from './types/ToolConfiguration';
|
|
14
|
+
import { AiModel } from '@aws-amplify/data-schema-types';
|
|
15
15
|
|
|
16
16
|
export const brandName = 'conversationCustomOperation';
|
|
17
17
|
|
|
@@ -120,12 +120,22 @@ export interface ToolDefinition {
|
|
|
120
120
|
description: string;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
+
// Type that is compatible with ConversationHandlerFunctionFactory
|
|
124
|
+
// defined in https://github.com/aws-amplify/amplify-backend/blob/main/packages/backend-ai/API.md
|
|
125
|
+
export type DefineConversationHandlerFunction = {
|
|
126
|
+
// Explicitly enumerate major versions of event to assure
|
|
127
|
+
// that customer is passing compatible version of conversation handler.
|
|
128
|
+
readonly eventVersion: `1.${number}`;
|
|
129
|
+
readonly provides?: string | undefined;
|
|
130
|
+
getInstance: (props: any) => any;
|
|
131
|
+
};
|
|
132
|
+
|
|
123
133
|
export interface ConversationInput {
|
|
124
134
|
aiModel: AiModel;
|
|
125
135
|
systemPrompt: string;
|
|
126
136
|
inferenceConfiguration?: InferenceConfiguration;
|
|
127
137
|
tools?: ToolDefinition[];
|
|
128
|
-
handler?:
|
|
138
|
+
handler?: DefineConversationHandlerFunction;
|
|
129
139
|
}
|
|
130
140
|
|
|
131
141
|
export interface InternalConversationType
|
package/src/ai/ModelType.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
|
|
4
|
+
import { AiModel } from '@aws-amplify/data-schema-types';
|
|
5
|
+
|
|
4
6
|
const supportedModelsLookup = {
|
|
5
7
|
// Anthropic models
|
|
6
8
|
'Claude 3 Haiku': 'anthropic.claude-3-haiku-20240307-v1:0',
|
|
@@ -20,10 +22,6 @@ const supportedModelsLookup = {
|
|
|
20
22
|
'Mistral Small': 'mistral.mistral-small-2402-v1:0',
|
|
21
23
|
} as const;
|
|
22
24
|
|
|
23
|
-
export interface AiModel {
|
|
24
|
-
resourcePath: string;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
25
|
export interface InferenceConfiguration {
|
|
28
26
|
topP?: number;
|
|
29
27
|
temperature?: number;
|