tsondb 0.1.3 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/lib/Schema.js +1 -3
  2. package/lib/client/components/typeInputs/ArrayTypeInput.js +2 -2
  3. package/lib/client/components/typeInputs/StringTypeInput.js +8 -5
  4. package/lib/client/components/typeInputs/utils/EnumDeclField.js +5 -5
  5. package/lib/client/components/typeInputs/utils/Markdown.d.ts +6 -0
  6. package/lib/client/components/typeInputs/utils/Markdown.js +57 -0
  7. package/lib/client/utils/typeSkeleton.js +2 -2
  8. package/lib/renderers/jsonschema/render.js +10 -2
  9. package/lib/renderers/ts/render.js +10 -7
  10. package/lib/schema/Node.d.ts +1 -0
  11. package/lib/schema/Node.js +2 -1
  12. package/lib/schema/declarations/Declaration.d.ts +4 -4
  13. package/lib/schema/declarations/Declaration.js +10 -10
  14. package/lib/schema/declarations/EntityDecl.d.ts +3 -0
  15. package/lib/schema/declarations/EnumDecl.d.ts +25 -5
  16. package/lib/schema/declarations/EnumDecl.js +23 -12
  17. package/lib/schema/declarations/TypeAliasDecl.d.ts +4 -0
  18. package/lib/schema/declarations/TypeAliasDecl.js +1 -1
  19. package/lib/schema/types/generic/ArrayType.js +1 -1
  20. package/lib/schema/types/generic/ObjectType.d.ts +4 -0
  21. package/lib/schema/types/generic/ObjectType.js +5 -4
  22. package/lib/schema/types/references/IncludeIdentifierType.d.ts +2 -2
  23. package/lib/schema/types/references/IncludeIdentifierType.js +3 -1
  24. package/lib/schema/types/references/NestedEntityMapType.js +2 -13
  25. package/lib/schema/types/references/ReferenceIdentifierType.d.ts +4 -6
  26. package/lib/schema/types/references/ReferenceIdentifierType.js +3 -1
  27. package/lib/tsconfig.tsbuildinfo +1 -1
  28. package/package.json +1 -2
  29. package/public/css/styles.css +39 -1
package/lib/Schema.js CHANGED
@@ -53,9 +53,7 @@ const checkEntityDisplayNamePaths = (decls, localeEntity) => {
53
53
  const addDeclarations = (existingDecls, declsToAdd, nested) => declsToAdd.reduce((accDecls, decl) => {
54
54
  if (!accDecls.includes(decl)) {
55
55
  checkDuplicateIdentifier(accDecls, decl);
56
- const nestedDecls = nested
57
- ? getNestedDeclarations(declToAdd => accDecls.includes(declToAdd), decl)
58
- : [];
56
+ const nestedDecls = nested ? getNestedDeclarations(accDecls, decl) : [];
59
57
  return addDeclarations([...accDecls, decl], nestedDecls, false);
60
58
  }
61
59
  return accDecls;
@@ -1,4 +1,4 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "preact/jsx-runtime";
1
+ import { jsxs as _jsxs, jsx as _jsx } from "preact/jsx-runtime";
2
2
  import { validateArrayConstraints } from "../../../shared/validation/array.js";
3
3
  import { createTypeSkeleton } from "../../utils/typeSkeleton.js";
4
4
  import { TypeInput } from "./TypeInput.js";
@@ -6,5 +6,5 @@ import { ValidationErrors } from "./utils/ValidationErrors.js";
6
6
  export const ArrayTypeInput = ({ type, value, instanceNamesByEntity, getDeclFromDeclName, onChange, }) => {
7
7
  const errors = validateArrayConstraints(type, value);
8
8
  const isTuple = typeof type.minItems === "number" && type.minItems === type.maxItems;
9
- return (_jsxs("div", { class: "field field--container field--array", children: [value.length > 0 && (_jsx("ol", { children: value.map((item, i) => (_jsxs("li", { class: "container-item array-item", children: [_jsx(TypeInput, { type: type.items, value: item, instanceNamesByEntity: instanceNamesByEntity, getDeclFromDeclName: getDeclFromDeclName, onChange: newItem => onChange([...value.slice(0, i), newItem, ...value.slice(i + 1)]) }), isTuple ? null : (_jsx("button", { class: "destructive", onClick: () => onChange([...value, createTypeSkeleton(getDeclFromDeclName, type.items)]), disabled: type.minItems !== undefined && value.length <= type.minItems, children: "Delete Item" }))] }, i))) })), isTuple ? null : (_jsx("div", { class: "add-item-container", children: _jsx("button", { onClick: () => onChange([...value, createTypeSkeleton(getDeclFromDeclName, type.items)]), disabled: type.maxItems !== undefined && value.length >= type.maxItems, children: "Add Item" }) })), _jsx(ValidationErrors, { errors: errors })] }));
9
+ return (_jsxs("div", { class: "field field--container field--array", children: [value.length > 0 && (_jsx("ol", { children: value.map((item, i) => (_jsxs("li", { class: "container-item array-item", children: [isTuple ? null : (_jsxs("div", { className: "container-item-header", children: [_jsxs("div", { className: "container-item-title", children: [i + 1, "."] }), _jsx("button", { class: "destructive", onClick: () => onChange([...value.slice(0, i), ...value.slice(i + 1)]), disabled: type.minItems !== undefined && value.length <= type.minItems, children: "Delete Item" })] })), _jsx(TypeInput, { type: type.items, value: item, instanceNamesByEntity: instanceNamesByEntity, getDeclFromDeclName: getDeclFromDeclName, onChange: newItem => onChange([...value.slice(0, i), newItem, ...value.slice(i + 1)]) })] }, i))) })), isTuple ? null : (_jsx("div", { class: "add-item-container", children: _jsx("button", { onClick: () => onChange([...value, createTypeSkeleton(getDeclFromDeclName, type.items)]), disabled: type.maxItems !== undefined && value.length >= type.maxItems, children: "Add Item" }) })), _jsx(ValidationErrors, { errors: errors })] }));
10
10
  };
@@ -1,10 +1,13 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "preact/jsx-runtime";
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "preact/jsx-runtime";
2
2
  import { validateStringConstraints } from "../../../shared/validation/string.js";
3
+ import { Markdown } from "./utils/Markdown.js";
3
4
  import { ValidationErrors } from "./utils/ValidationErrors.js";
4
5
  export const StringTypeInput = ({ type, value, onChange }) => {
5
- const { minLength, maxLength, pattern } = type;
6
+ const { minLength, maxLength, pattern, isMarkdown } = type;
6
7
  const errors = validateStringConstraints(type, value);
7
- return (_jsxs("div", { class: "field", children: [_jsx("input", { type: "text", value: value, minLength: minLength, maxLength: maxLength, pattern: pattern, onInput: event => {
8
- onChange(event.currentTarget.value);
9
- }, "aria-invalid": errors.length > 0 }), _jsx(ValidationErrors, { errors: errors })] }));
8
+ return (_jsx("div", { class: "field field--string", children: isMarkdown ? (_jsxs(_Fragment, { children: [_jsxs("div", { className: "editor", children: [_jsx("textarea", { value: value, minLength: minLength, maxLength: maxLength, onInput: event => {
9
+ onChange(event.currentTarget.value);
10
+ }, "aria-invalid": errors.length > 0 }), _jsx(ValidationErrors, { errors: errors })] }), _jsx("div", { className: "preview", children: _jsx(Markdown, { string: value }) })] })) : (_jsxs("div", { className: "editor", children: [_jsx("input", { type: "text", value: value, minLength: minLength, maxLength: maxLength, pattern: pattern, onInput: event => {
11
+ onChange(event.currentTarget.value);
12
+ }, "aria-invalid": errors.length > 0 }), _jsx(ValidationErrors, { errors: errors })] })) }));
10
13
  };
@@ -15,10 +15,10 @@ export const EnumDeclField = ({ decl, value, instanceNamesByEntity, getDeclFromD
15
15
  }
16
16
  const enumValues = Object.keys(decl.values);
17
17
  const activeEnumCase = value[discriminatorKey];
18
- const associatedType = decl.values[activeEnumCase];
18
+ const caseMember = decl.values[activeEnumCase];
19
19
  return (_jsxs("div", { class: "field field--enum", children: [_jsx(Select, { value: activeEnumCase, onInput: event => {
20
- const associatedType = decl.values[event.currentTarget.value];
21
- if (associatedType == null) {
20
+ const caseMember = decl.values[event.currentTarget.value];
21
+ if (caseMember?.type == null) {
22
22
  onChange({
23
23
  [discriminatorKey]: event.currentTarget.value,
24
24
  });
@@ -26,10 +26,10 @@ export const EnumDeclField = ({ decl, value, instanceNamesByEntity, getDeclFromD
26
26
  else {
27
27
  onChange({
28
28
  [discriminatorKey]: event.currentTarget.value,
29
- [event.currentTarget.value]: createTypeSkeleton(getDeclFromDeclName, associatedType),
29
+ [event.currentTarget.value]: createTypeSkeleton(getDeclFromDeclName, caseMember.type),
30
30
  });
31
31
  }
32
- }, children: enumValues.map(enumValue => (_jsx("option", { value: enumValue, selected: enumValue === activeEnumCase, children: toTitleCase(enumValue) }))) }), associatedType == null ? null : (_jsx("div", { className: "associated-type", children: _jsx(TypeInput, { type: associatedType, value: value[activeEnumCase], instanceNamesByEntity: instanceNamesByEntity, getDeclFromDeclName: getDeclFromDeclName, onChange: newValue => {
32
+ }, children: enumValues.map(enumValue => (_jsx("option", { value: enumValue, selected: enumValue === activeEnumCase, children: toTitleCase(enumValue) }))) }), caseMember?.type == null ? null : (_jsx("div", { className: "associated-type", children: _jsx(TypeInput, { type: caseMember.type, value: value[activeEnumCase], instanceNamesByEntity: instanceNamesByEntity, getDeclFromDeclName: getDeclFromDeclName, onChange: newValue => {
33
33
  onChange({
34
34
  [discriminatorKey]: activeEnumCase,
35
35
  [activeEnumCase]: newValue,
@@ -0,0 +1,6 @@
1
+ import { FunctionalComponent } from "preact";
2
+ type Props = {
3
+ string: string;
4
+ };
5
+ export declare const Markdown: FunctionalComponent<Props>;
6
+ export {};
@@ -0,0 +1,57 @@
1
+ import { jsx as _jsx } from "preact/jsx-runtime";
2
+ const bold = /\*\*(.+?)\*\*/;
3
+ const italic = /\*(.+?)\*/;
4
+ const boldItalic = /\*\*\*(.+?)\*\*\*/;
5
+ const parseBlockMarkdown = (text) => text.split(/\n{2,}/).map(par => ({ kind: "paragraph", content: parseInlineMarkdown(par) }));
6
+ const parseForPattern = (pattern, kind, text, nextPatterns = []) => {
7
+ const res = pattern.exec(text);
8
+ if (res) {
9
+ const { index } = res;
10
+ const before = text.slice(0, index);
11
+ const after = text.slice(index + res[0].length);
12
+ const inner = res[1];
13
+ const innerNode = nextPatterns.length > 0
14
+ ? parseForPattern(nextPatterns[0][1], nextPatterns[0][0], inner, nextPatterns.slice(1))
15
+ : [{ kind, content: [{ kind: "text", content: inner }] }];
16
+ return [
17
+ ...(before.length > 0 ? [{ kind: "text", content: before }] : []),
18
+ { kind, content: innerNode },
19
+ ...(after.length > 0 ? parseForPattern(pattern, kind, after) : []),
20
+ ];
21
+ }
22
+ else {
23
+ return nextPatterns.length > 0
24
+ ? parseForPattern(nextPatterns[0][1], nextPatterns[0][0], text, nextPatterns.slice(1))
25
+ : [{ kind: "text", content: text }];
26
+ }
27
+ };
28
+ const parseInlineMarkdown = (text) => parseForPattern(boldItalic, "boldItalic", text, [
29
+ ["bold", bold],
30
+ ["italic", italic],
31
+ ]);
32
+ export const Markdown = ({ string }) => {
33
+ const blocks = parseBlockMarkdown(string);
34
+ return blocks.map((block, i) => _jsx(BlockMarkdown, { node: block }, `md-block-${i}`));
35
+ };
36
+ const BlockMarkdown = ({ node }) => {
37
+ switch (node.kind) {
38
+ case "paragraph":
39
+ return (_jsx("p", { children: node.content.map((inline, ii) => (_jsx(InlineMarkdown, { node: inline }, ii))) }));
40
+ case "text":
41
+ return node.content;
42
+ default:
43
+ return null;
44
+ }
45
+ };
46
+ const InlineMarkdown = ({ node }) => {
47
+ switch (node.kind) {
48
+ case "bold":
49
+ return (_jsx("strong", { children: node.content.map((inline, i) => (_jsx(InlineMarkdown, { node: inline }, i))) }));
50
+ case "italic":
51
+ return (_jsx("em", { children: node.content.map((inline, i) => (_jsx(InlineMarkdown, { node: inline }, i))) }));
52
+ case "boldItalic":
53
+ return (_jsx("strong", { children: _jsx("em", { children: node.content.map((inline, i) => (_jsx(InlineMarkdown, { node: inline }, i))) }) }));
54
+ case "text":
55
+ return node.content;
56
+ }
57
+ };
@@ -31,12 +31,12 @@ export const createTypeSkeleton = (getDeclFromDeclName, type) => {
31
31
  return createTypeSkeleton(getDeclFromDeclName, referencedDecl.type);
32
32
  case "EnumDecl": {
33
33
  const firstCase = Object.entries(referencedDecl.values)[0];
34
- if (firstCase[1] === null) {
34
+ if (firstCase[1].type === null) {
35
35
  return { kind: firstCase[0] };
36
36
  }
37
37
  return {
38
38
  kind: firstCase[0],
39
- [firstCase[0]]: createTypeSkeleton(getDeclFromDeclName, firstCase[1]),
39
+ [firstCase[0]]: createTypeSkeleton(getDeclFromDeclName, firstCase[1].type),
40
40
  };
41
41
  }
42
42
  default:
@@ -19,7 +19,11 @@ const renderObjectType = (options, type) => ({
19
19
  type: "object",
20
20
  properties: Object.fromEntries(Object.entries(type.properties).map(([name, config]) => [
21
21
  name,
22
- { description: config.comment, ...renderType(options, config.type) },
22
+ {
23
+ description: config.comment,
24
+ deprecated: config.isDeprecated,
25
+ ...renderType(options, config.type),
26
+ },
23
27
  ])),
24
28
  required: Object.entries(type.properties)
25
29
  .filter(([, config]) => config.isRequired)
@@ -104,23 +108,27 @@ const renderType = (options, type) => {
104
108
  };
105
109
  const renderEntityDecl = (options, decl) => ({
106
110
  description: decl.comment,
111
+ deprecated: decl.isDeprecated,
107
112
  ...renderType(options, addEphemeralUUIDToType(decl)),
108
113
  });
109
114
  const renderEnumDecl = (options, decl) => ({
110
115
  description: decl.comment,
116
+ deprecated: decl.isDeprecated,
111
117
  oneOf: Object.entries(decl.values.value).map(([caseName, caseDef]) => ({
112
118
  type: "object",
119
+ deprecated: caseDef.isDeprecated,
113
120
  properties: {
114
121
  [discriminatorKey]: {
115
122
  const: caseName,
116
123
  },
117
- ...(caseDef === null ? {} : { [caseName]: renderType(options, caseDef) }),
124
+ ...(caseDef.type === null ? {} : { [caseName]: renderType(options, caseDef.type) }),
118
125
  },
119
126
  required: [discriminatorKey, ...(caseDef === null ? [] : [caseName])],
120
127
  })),
121
128
  });
122
129
  const renderTypeAliasDecl = (options, decl) => ({
123
130
  description: decl.comment,
131
+ deprecated: decl.isDeprecated,
124
132
  ...renderType(options, decl.type.value),
125
133
  });
126
134
  const renderDecl = (options, decl) => {
@@ -12,10 +12,13 @@ import { applyIndentation, joinSyntax, prefixLines, syntax } from "../../utils/r
12
12
  const defaultOptions = {
13
13
  indentation: 2,
14
14
  };
15
- const renderDocumentation = (comment) => comment === undefined
15
+ const renderDocumentation = (comment, isDeprecated) => comment === undefined
16
16
  ? ""
17
17
  : syntax `/**
18
- ${prefixLines(" * ", comment, true)}
18
+ ${prefixLines(" * ", comment, true)}${isDeprecated
19
+ ? syntax `
20
+ * @deprecated`
21
+ : ""}
19
22
  */
20
23
  `;
21
24
  const renderTypeParameters = (options, params) => params.length === 0
@@ -29,7 +32,7 @@ const renderArrayType = (options, type) => `${renderType(options, type.items)}[]
29
32
  const wrapAsObject = (options, syntax) => joinSyntax("{", EOL, applyIndentation(1, syntax, options.indentation), EOL, "}");
30
33
  const renderObjectType = (options, type) => {
31
34
  return wrapAsObject(options, Object.entries(type.properties)
32
- .map(([name, config]) => joinSyntax(renderDocumentation(config.comment), name, config.isRequired ? "" : "?", ": ", renderType(options, config.type)))
35
+ .map(([name, config]) => joinSyntax(renderDocumentation(config.comment, config.isDeprecated), name, config.isRequired ? "" : "?", ": ", renderType(options, config.type)))
33
36
  .join(Object.values(type.properties).some(prop => prop.comment !== undefined) ? EOL + EOL : EOL));
34
37
  };
35
38
  const renderBooleanType = (_options, _type) => "boolean";
@@ -68,14 +71,14 @@ const renderType = (options, type) => {
68
71
  return assertExhaustive(type, "Unknown type");
69
72
  }
70
73
  };
71
- const renderEntityDecl = (options, decl) => joinSyntax(renderDocumentation(decl.comment), "export interface ", decl.name, " ", renderType(options, addEphemeralUUIDToType(decl)));
72
- const renderEnumDecl = (options, decl) => joinSyntax(renderDocumentation(decl.comment), "export type ", decl.name, renderTypeParameters(options, decl.parameters), " =", ...Object.entries(decl.values.value).map(([caseName, caseDef]) => applyIndentation(1, joinSyntax(EOL, "| {", EOL, applyIndentation(1, joinSyntax(`${discriminatorKey}: "${caseName}"`, caseDef === null
74
+ const renderEntityDecl = (options, decl) => joinSyntax(renderDocumentation(decl.comment, decl.isDeprecated), "export interface ", decl.name, " ", renderType(options, addEphemeralUUIDToType(decl)));
75
+ const renderEnumDecl = (options, decl) => joinSyntax(renderDocumentation(decl.comment, decl.isDeprecated), "export type ", decl.name, renderTypeParameters(options, decl.parameters), " =", ...Object.entries(decl.values.value).map(([caseName, caseDef]) => applyIndentation(1, joinSyntax(EOL, "| {", EOL, applyIndentation(1, joinSyntax(`${discriminatorKey}: "${caseName}"`, caseDef.type === null
73
76
  ? ""
74
- : joinSyntax(EOL, caseName + ": ", renderType(options, caseDef))), options.indentation), EOL, "}"), options.indentation)));
77
+ : joinSyntax(EOL, caseName + ": ", renderType(options, caseDef.type))), options.indentation), EOL, "}"), options.indentation)));
75
78
  const renderTypeAliasDecl = (options, decl) => {
76
79
  const type = decl.type.value;
77
80
  return isObjectType(type)
78
- ? joinSyntax(renderDocumentation(decl.comment), "export interface ", decl.name, renderTypeParameters(options, decl.parameters), " ", renderType(options, type))
81
+ ? joinSyntax(renderDocumentation(decl.comment, decl.isDeprecated), "export interface ", decl.name, renderTypeParameters(options, decl.parameters), " ", renderType(options, type))
79
82
  : joinSyntax(renderDocumentation(decl.comment), "export type ", decl.name, renderTypeParameters(options, decl.parameters), " = ", renderType(options, type));
80
83
  };
81
84
  const renderDecl = (options, decl) => {
@@ -4,6 +4,7 @@ import { Type } from "./types/Type.js";
4
4
  export interface NodeKind {
5
5
  EntityDecl: "EntityDecl";
6
6
  EnumDecl: "EnumDecl";
7
+ EnumCaseDecl: "EnumCaseDecl";
7
8
  TypeAliasDecl: "TypeAliasDecl";
8
9
  MemberDecl: "MemberDecl";
9
10
  ArrayType: "ArrayType";
@@ -3,6 +3,7 @@ import { enumOfObject } from "../utils/enum.js";
3
3
  export const NodeKind = enumOfObject({
4
4
  EntityDecl: null,
5
5
  EnumDecl: null,
6
+ EnumCaseDecl: null,
6
7
  TypeAliasDecl: null,
7
8
  MemberDecl: null,
8
9
  ArrayType: null,
@@ -27,7 +28,7 @@ export const flatMapAuxiliaryDecls = (callbackFn, declarations) => {
27
28
  }
28
29
  case NodeKind.EnumDecl: {
29
30
  const newDecls = callbackFn(node, decls);
30
- return Object.values(node.values.value).reduce((newDeclsAcc, caseDef) => caseDef === null ? newDecls : mapNodeTree(callbackFn, caseDef, newDeclsAcc), newDecls);
31
+ return Object.values(node.values.value).reduce((newDeclsAcc, caseDef) => caseDef.type === null ? newDecls : mapNodeTree(callbackFn, caseDef.type, newDeclsAcc), newDecls);
31
32
  }
32
33
  case NodeKind.TypeAliasDecl: {
33
34
  const newDecls = callbackFn(node, decls);
@@ -4,7 +4,7 @@ import { ObjectType, SerializedObjectType } from "../types/generic/ObjectType.js
4
4
  import { SerializedType, Type } from "../types/Type.js";
5
5
  import { ValidatorHelpers } from "../validation/type.js";
6
6
  import { EntityDecl, SerializedEntityDecl } from "./EntityDecl.js";
7
- import { EnumDecl, SerializedEnumDecl } from "./EnumDecl.js";
7
+ import { EnumCaseDecl, EnumDecl, SerializedEnumCaseDecl, SerializedEnumDecl } from "./EnumDecl.js";
8
8
  import { SerializedTypeAliasDecl, TypeAliasDecl } from "./TypeAliasDecl.js";
9
9
  export type TypeArguments<Params extends TypeParameter[]> = {
10
10
  [K in keyof Params]: Params[K] extends TypeParameter<string, infer T> ? T : Type;
@@ -16,12 +16,12 @@ export declare const getParameterNames: (decl: Decl) => string[];
16
16
  export declare const getTypeArgumentsRecord: <Params extends TypeParameter[]>(decl: DeclP<Params>, args: TypeArguments<Params>) => Record<string, Type>;
17
17
  export type Decl = EntityDecl | EnumDecl | TypeAliasDecl;
18
18
  export type SerializedDecl = SerializedEntityDecl | SerializedEnumDecl | SerializedTypeAliasDecl;
19
- export type DeclP<Params extends TypeParameter[] = TypeParameter[]> = EntityDecl<string, ObjectType> | EnumDecl<string, Record<string, Type | null>, Params> | TypeAliasDecl<string, Type, Params>;
20
- export type SerializedDeclP<Params extends SerializedTypeParameter[] = SerializedTypeParameter[]> = SerializedEntityDecl<string, SerializedObjectType> | SerializedEnumDecl<string, Record<string, SerializedType | null>, Params> | SerializedTypeAliasDecl<string, SerializedType, Params>;
19
+ export type DeclP<Params extends TypeParameter[] = TypeParameter[]> = EntityDecl<string, ObjectType> | EnumDecl<string, Record<string, EnumCaseDecl>, Params> | TypeAliasDecl<string, Type, Params>;
20
+ export type SerializedDeclP<Params extends SerializedTypeParameter[] = SerializedTypeParameter[]> = SerializedEntityDecl<string, SerializedObjectType> | SerializedEnumDecl<string, Record<string, SerializedEnumCaseDecl>, Params> | SerializedTypeAliasDecl<string, SerializedType, Params>;
21
21
  export type SecondaryDecl = EnumDecl | TypeAliasDecl;
22
22
  export type SerializedSecondaryDecl = SerializedEnumDecl | SerializedTypeAliasDecl;
23
23
  export declare const getNestedDeclarations: GetNestedDeclarations;
24
- export type GetNestedDeclarations<T extends Node = Node> = (isDeclarationAdded: (decl: Decl) => boolean, node: T) => Decl[];
24
+ export type GetNestedDeclarations<T extends Node = Node> = (addedDecls: Decl[], node: T) => Decl[];
25
25
  export declare const isDecl: (node: Node) => node is Decl;
26
26
  export interface BaseDecl<Name extends string = string, Params extends TypeParameter[] = TypeParameter[]> extends BaseNode {
27
27
  sourceUrl: string;
@@ -10,31 +10,31 @@ import { getNestedDeclarationsInEnumDecl, getReferencesForEnumDecl, isEnumDecl,
10
10
  import { getNestedDeclarationsInTypeAliasDecl, getReferencesForTypeAliasDecl, isTypeAliasDecl, resolveTypeArgumentsInTypeAliasDecl, serializeTypeAliasDecl, validateTypeAliasDecl, } from "./TypeAliasDecl.js";
11
11
  export const getParameterNames = (decl) => decl.parameters.map(param => param.name);
12
12
  export const getTypeArgumentsRecord = (decl, args) => Object.fromEntries(args.map((arg, i) => [decl.parameters[i].name, arg]));
13
- export const getNestedDeclarations = (isDeclAdded, node) => {
13
+ export const getNestedDeclarations = (addedDecls, node) => {
14
14
  switch (node.kind) {
15
15
  case NodeKind.EntityDecl:
16
- return isDeclAdded(node) ? [] : getNestedDeclarationsInEntityDecl(isDeclAdded, node);
16
+ return getNestedDeclarationsInEntityDecl(addedDecls, node);
17
17
  case NodeKind.EnumDecl:
18
- return isDeclAdded(node) ? [] : getNestedDeclarationsInEnumDecl(isDeclAdded, node);
18
+ return getNestedDeclarationsInEnumDecl(addedDecls, node);
19
19
  case NodeKind.TypeAliasDecl:
20
- return isDeclAdded(node) ? [] : getNestedDeclarationsInTypeAliasDecl(isDeclAdded, node);
20
+ return getNestedDeclarationsInTypeAliasDecl(addedDecls, node);
21
21
  case NodeKind.ArrayType:
22
- return getNestedDeclarationsInArrayType(isDeclAdded, node);
22
+ return getNestedDeclarationsInArrayType(addedDecls, node);
23
23
  case NodeKind.ObjectType:
24
- return getNestedDeclarationsInObjectType(isDeclAdded, node);
24
+ return getNestedDeclarationsInObjectType(addedDecls, node);
25
25
  case NodeKind.BooleanType:
26
26
  case NodeKind.DateType:
27
27
  case NodeKind.FloatType:
28
28
  case NodeKind.IntegerType:
29
29
  case NodeKind.StringType:
30
30
  case NodeKind.GenericArgumentIdentifierType:
31
- return [];
31
+ return addedDecls;
32
32
  case NodeKind.ReferenceIdentifierType:
33
- return getNestedDeclarationsInReferenceIdentifierType(isDeclAdded, node);
33
+ return getNestedDeclarationsInReferenceIdentifierType(addedDecls, node);
34
34
  case NodeKind.IncludeIdentifierType:
35
- return getNestedDeclarationsInIncludeIdentifierType(isDeclAdded, node);
35
+ return getNestedDeclarationsInIncludeIdentifierType(addedDecls, node);
36
36
  case NodeKind.NestedEntityMapType:
37
- return getNestedDeclarationsInNestedEntityMapType(isDeclAdded, node);
37
+ return getNestedDeclarationsInNestedEntityMapType(addedDecls, node);
38
38
  default:
39
39
  return assertExhaustive(node);
40
40
  }
@@ -23,6 +23,7 @@ export interface EntityDecl<Name extends string = string, T extends ObjectType =
23
23
  */
24
24
  pathInLocaleMap?: string;
25
25
  };
26
+ isDeprecated?: boolean;
26
27
  }
27
28
  export interface SerializedEntityDecl<Name extends string = string, T extends SerializedObjectType = SerializedObjectType> extends SerializedBaseDecl<Name, []> {
28
29
  kind: NodeKind["EntityDecl"];
@@ -40,6 +41,7 @@ export interface SerializedEntityDecl<Name extends string = string, T extends Se
40
41
  */
41
42
  pathInLocaleMap?: string;
42
43
  };
44
+ isDeprecated?: boolean;
43
45
  }
44
46
  export declare const EntityDecl: <Name extends string, T extends ObjectType>(sourceUrl: string, options: {
45
47
  name: Name;
@@ -58,6 +60,7 @@ export declare const EntityDecl: <Name extends string, T extends ObjectType>(sou
58
60
  */
59
61
  pathInLocaleMap?: string;
60
62
  };
63
+ isDeprecated?: boolean;
61
64
  }) => EntityDecl<Name, T>;
62
65
  export { EntityDecl as Entity };
63
66
  export declare const isEntityDecl: (node: Node) => node is EntityDecl;
@@ -4,22 +4,24 @@ import { SerializedTypeParameter, TypeParameter } from "../parameters/TypeParame
4
4
  import { SerializedType, Type } from "../types/Type.js";
5
5
  import { ValidatorHelpers } from "../validation/type.js";
6
6
  import { BaseDecl, GetNestedDeclarations, SerializedBaseDecl, TypeArguments } from "./Declaration.js";
7
- export interface EnumDecl<Name extends string = string, T extends Record<string, Type | null> = Record<string, Type | null>, Params extends TypeParameter[] = TypeParameter[]> extends BaseDecl<Name, Params> {
7
+ export interface EnumDecl<Name extends string = string, T extends Record<string, EnumCaseDecl> = Record<string, EnumCaseDecl>, Params extends TypeParameter[] = TypeParameter[]> extends BaseDecl<Name, Params> {
8
8
  kind: NodeKind["EnumDecl"];
9
9
  values: Lazy<T>;
10
+ isDeprecated?: boolean;
10
11
  }
11
- export interface SerializedEnumDecl<Name extends string = string, T extends Record<string, SerializedType | null> = Record<string, SerializedType | null>, Params extends SerializedTypeParameter[] = SerializedTypeParameter[]> extends SerializedBaseDecl<Name, Params> {
12
+ export interface SerializedEnumDecl<Name extends string = string, T extends Record<string, SerializedEnumCaseDecl> = Record<string, SerializedEnumCaseDecl>, Params extends SerializedTypeParameter[] = SerializedTypeParameter[]> extends SerializedBaseDecl<Name, Params> {
12
13
  kind: NodeKind["EnumDecl"];
13
14
  values: T;
15
+ isDeprecated?: boolean;
14
16
  }
15
- export declare const GenEnumDecl: <Name extends string, T extends Record<string, Type | null>, Params extends TypeParameter[]>(sourceUrl: string, options: {
17
+ export declare const GenEnumDecl: <Name extends string, T extends Record<string, EnumCaseDecl>, Params extends TypeParameter[]>(sourceUrl: string, options: {
16
18
  name: Name;
17
19
  comment?: string;
18
20
  parameters: Params;
19
21
  values: (...args: Params) => T;
20
22
  }) => EnumDecl<Name, T, Params>;
21
23
  export { GenEnumDecl as GenEnum };
22
- export declare const EnumDecl: <Name extends string, T extends Record<string, Type | null>>(sourceUrl: string, options: {
24
+ export declare const EnumDecl: <Name extends string, T extends Record<string, EnumCaseDecl>>(sourceUrl: string, options: {
23
25
  name: Name;
24
26
  comment?: string;
25
27
  values: () => T;
@@ -28,6 +30,24 @@ export { EnumDecl as Enum };
28
30
  export declare const isEnumDecl: (node: Node) => node is EnumDecl;
29
31
  export declare const getNestedDeclarationsInEnumDecl: GetNestedDeclarations<EnumDecl>;
30
32
  export declare const validateEnumDecl: (helpers: ValidatorHelpers, decl: EnumDecl, args: Type[], value: unknown) => Error[];
31
- export declare const resolveTypeArgumentsInEnumDecl: <Params extends TypeParameter[]>(decl: EnumDecl<string, Record<string, Type | null>, Params>, args: TypeArguments<Params>) => EnumDecl<string, Record<string, Type | null>, []>;
33
+ export declare const resolveTypeArgumentsInEnumDecl: <Params extends TypeParameter[]>(decl: EnumDecl<string, Record<string, EnumCaseDecl>, Params>, args: TypeArguments<Params>) => EnumDecl<string, Record<string, EnumCaseDecl>, []>;
34
+ export interface EnumCaseDecl<T extends Type | null = Type | null> {
35
+ kind: NodeKind["EnumCaseDecl"];
36
+ type: T;
37
+ comment?: string;
38
+ isDeprecated?: boolean;
39
+ }
40
+ export interface SerializedEnumCaseDecl<T extends SerializedType | null = SerializedType | null> {
41
+ kind: NodeKind["EnumCaseDecl"];
42
+ type: T;
43
+ comment?: string;
44
+ isDeprecated?: boolean;
45
+ }
46
+ export declare const EnumCaseDecl: <T extends Type | null>(options: {
47
+ type: T;
48
+ comment?: string;
49
+ isDeprecated?: boolean;
50
+ }) => EnumCaseDecl<T>;
51
+ export { EnumCaseDecl as EnumCase };
32
52
  export declare const serializeEnumDecl: Serializer<EnumDecl, SerializedEnumDecl>;
33
53
  export declare const getReferencesForEnumDecl: GetReferences<EnumDecl>;
@@ -13,8 +13,8 @@ export const GenEnumDecl = (sourceUrl, options) => {
13
13
  values: Lazy.of(() => {
14
14
  const type = options.values(...options.parameters);
15
15
  Object.values(type).forEach(type => {
16
- if (type) {
17
- type.parent = decl;
16
+ if (type.type) {
17
+ type.type.parent = decl;
18
18
  }
19
19
  });
20
20
  return type;
@@ -33,8 +33,8 @@ export const EnumDecl = (sourceUrl, options) => {
33
33
  values: Lazy.of(() => {
34
34
  const type = options.values();
35
35
  Object.values(type).forEach(type => {
36
- if (type) {
37
- type.parent = decl;
36
+ if (type.type) {
37
+ type.type.parent = decl;
38
38
  }
39
39
  });
40
40
  return type;
@@ -44,7 +44,7 @@ export const EnumDecl = (sourceUrl, options) => {
44
44
  };
45
45
  export { EnumDecl as Enum };
46
46
  export const isEnumDecl = (node) => node.kind === NodeKind.EnumDecl;
47
- export const getNestedDeclarationsInEnumDecl = (isDeclAdded, decl) => Object.values(decl.values.value).flatMap(caseDef => caseDef === null ? [] : getNestedDeclarations(isDeclAdded, caseDef));
47
+ export const getNestedDeclarationsInEnumDecl = (addedDecls, decl) => Object.values(decl.values.value).reduce((acc, caseMember) => caseMember.type === null ? acc : getNestedDeclarations(acc, caseMember.type), addedDecls);
48
48
  export const validateEnumDecl = (helpers, decl, args, value) => {
49
49
  if (typeof value !== "object" || value === null || Array.isArray(value)) {
50
50
  return [TypeError(`expected an object, but got ${JSON.stringify(value)}`)];
@@ -65,7 +65,7 @@ export const validateEnumDecl = (helpers, decl, args, value) => {
65
65
  if (unknownKeyErrors.length > 0) {
66
66
  return unknownKeyErrors;
67
67
  }
68
- const associatedType = decl.values.value[caseName];
68
+ const associatedType = decl.values.value[caseName]?.type;
69
69
  if (associatedType != null) {
70
70
  if (!(caseName in value)) {
71
71
  return [TypeError(`missing required associated value for case "${caseName}"`)];
@@ -78,17 +78,28 @@ export const resolveTypeArgumentsInEnumDecl = (decl, args) => {
78
78
  const resolvedArgs = getTypeArgumentsRecord(decl, args);
79
79
  return EnumDecl(decl.sourceUrl, {
80
80
  ...decl,
81
- values: () => Object.fromEntries(Object.entries(decl.values.value).map(([key, value]) => [
81
+ values: () => Object.fromEntries(Object.entries(decl.values.value).map(([key, { type, ...caseMember }]) => [
82
82
  key,
83
- value === null ? null : resolveTypeArgumentsInType(resolvedArgs, value),
83
+ {
84
+ ...caseMember,
85
+ type: type === null ? null : resolveTypeArgumentsInType(resolvedArgs, type),
86
+ },
84
87
  ])),
85
88
  });
86
89
  };
90
+ export const EnumCaseDecl = (options) => ({
91
+ ...options,
92
+ kind: NodeKind.EnumCaseDecl,
93
+ });
94
+ export { EnumCaseDecl as EnumCase };
87
95
  export const serializeEnumDecl = type => ({
88
96
  ...type,
89
- values: Object.fromEntries(Object.entries(type.values.value).map(([key, value]) => [
97
+ values: Object.fromEntries(Object.entries(type.values.value).map(([key, caseMember]) => [
90
98
  key,
91
- value === null ? null : serializeType(value),
99
+ {
100
+ ...caseMember,
101
+ type: caseMember.type === null ? null : serializeType(caseMember.type),
102
+ },
92
103
  ])),
93
104
  parameters: type.parameters.map(param => serializeTypeParameter(param)),
94
105
  });
@@ -98,7 +109,7 @@ export const getReferencesForEnumDecl = (decl, value) => typeof value === "objec
98
109
  discriminatorKey in value &&
99
110
  typeof value[discriminatorKey] === "string" &&
100
111
  value[discriminatorKey] in decl.values.value &&
101
- decl.values.value[value[discriminatorKey]] !== null &&
112
+ decl.values.value[value[discriminatorKey]]?.type == null &&
102
113
  value[discriminatorKey] in value
103
- ? getReferencesForType(decl.values.value[value[discriminatorKey]], value[value[discriminatorKey]])
114
+ ? getReferencesForType(decl.values.value[value[discriminatorKey]].type, value[value[discriminatorKey]])
104
115
  : [];
@@ -7,14 +7,17 @@ import { BaseDecl, GetNestedDeclarations, SerializedBaseDecl, TypeArguments } fr
7
7
  export interface TypeAliasDecl<Name extends string = string, T extends Type = Type, Params extends TypeParameter[] = TypeParameter[]> extends BaseDecl<Name, Params> {
8
8
  kind: NodeKind["TypeAliasDecl"];
9
9
  type: Lazy<T>;
10
+ isDeprecated?: boolean;
10
11
  }
11
12
  export interface SerializedTypeAliasDecl<Name extends string = string, T extends SerializedType = SerializedType, Params extends SerializedTypeParameter[] = SerializedTypeParameter[]> extends SerializedBaseDecl<Name, Params> {
12
13
  kind: NodeKind["TypeAliasDecl"];
13
14
  type: T;
15
+ isDeprecated?: boolean;
14
16
  }
15
17
  export declare const GenTypeAliasDecl: <Name extends string, T extends Type, Params extends TypeParameter[]>(sourceUrl: string, options: {
16
18
  name: Name;
17
19
  comment?: string;
20
+ isDeprecated?: boolean;
18
21
  parameters: Params;
19
22
  type: (...args: Params) => T;
20
23
  }) => TypeAliasDecl<Name, T, Params>;
@@ -22,6 +25,7 @@ export { GenTypeAliasDecl as GenTypeAlias };
22
25
  export declare const TypeAliasDecl: <Name extends string, T extends Type>(sourceUrl: string, options: {
23
26
  name: Name;
24
27
  comment?: string;
28
+ isDeprecated?: boolean;
25
29
  type: () => T;
26
30
  }) => TypeAliasDecl<Name, T, []>;
27
31
  export { TypeAliasDecl as TypeAlias };
@@ -35,7 +35,7 @@ export const TypeAliasDecl = (sourceUrl, options) => {
35
35
  };
36
36
  export { TypeAliasDecl as TypeAlias };
37
37
  export const isTypeAliasDecl = (node) => node.kind === NodeKind.TypeAliasDecl;
38
- export const getNestedDeclarationsInTypeAliasDecl = (isDeclAdded, decl) => getNestedDeclarations(isDeclAdded, decl.type.value);
38
+ export const getNestedDeclarationsInTypeAliasDecl = (addedDecls, decl) => getNestedDeclarations(addedDecls, decl.type.value);
39
39
  export const validateTypeAliasDecl = (helpers, decl, args, value) => validate(helpers, resolveTypeArgumentsInType(getTypeArgumentsRecord(decl, args), decl.type.value), value);
40
40
  export const resolveTypeArgumentsInTypeAliasDecl = (decl, args) => TypeAliasDecl(decl.sourceUrl, {
41
41
  ...decl,
@@ -18,7 +18,7 @@ export const ArrayType = (items, options = {}) => {
18
18
  };
19
19
  export { ArrayType as Array };
20
20
  export const isArrayType = (node) => node.kind === NodeKind.ArrayType;
21
- export const getNestedDeclarationsInArrayType = (isDeclAdded, type) => getNestedDeclarations(isDeclAdded, type.items);
21
+ export const getNestedDeclarationsInArrayType = (addedDecls, type) => getNestedDeclarations(addedDecls, type.items);
22
22
  export const validateArrayType = (helpers, type, value) => {
23
23
  if (!Array.isArray(value)) {
24
24
  return [TypeError(`expected an array, but got ${JSON.stringify(value)}`)];
@@ -28,19 +28,23 @@ export interface MemberDecl<T extends Type = Type, R extends boolean = boolean>
28
28
  isRequired: R;
29
29
  type: T;
30
30
  comment?: string;
31
+ isDeprecated?: boolean;
31
32
  }
32
33
  export interface SerializedMemberDecl<T extends SerializedType = SerializedType, R extends boolean = boolean> {
33
34
  kind: NodeKind["MemberDecl"];
34
35
  isRequired: R;
35
36
  type: T;
36
37
  comment?: string;
38
+ isDeprecated?: boolean;
37
39
  }
38
40
  export declare const Required: <T extends Type>(options: {
39
41
  comment?: string;
42
+ isDeprecated?: boolean;
40
43
  type: T;
41
44
  }) => MemberDecl<T, true>;
42
45
  export declare const Optional: <T extends Type>(options: {
43
46
  comment?: string;
47
+ isDeprecated?: boolean;
44
48
  type: T;
45
49
  }) => MemberDecl<T, false>;
46
50
  export declare const serializeObjectType: Serializer<ObjectType, SerializedObjectType>;
@@ -24,7 +24,7 @@ export const ObjectType = (properties, options = {}) => {
24
24
  };
25
25
  export { ObjectType as Object };
26
26
  export const isObjectType = (node) => node.kind === NodeKind.ObjectType;
27
- export const getNestedDeclarationsInObjectType = (isDeclAdded, type) => Object.values(type.properties).flatMap(prop => getNestedDeclarations(isDeclAdded, prop.type));
27
+ export const getNestedDeclarationsInObjectType = (addedDecls, type) => Object.values(type.properties).reduce((acc, prop) => getNestedDeclarations(acc, prop.type), addedDecls);
28
28
  export const validateObjectType = (helpers, type, value) => {
29
29
  if (typeof value !== "object" || value === null || Array.isArray(value)) {
30
30
  return [TypeError(`expected an object, but got ${JSON.stringify(value)}`)];
@@ -47,14 +47,15 @@ export const validateObjectType = (helpers, type, value) => {
47
47
  export const resolveTypeArgumentsInObjectType = (args, type) => ObjectType(Object.fromEntries(Object.entries(type.properties).map(([key, config]) => [key, { ...config, type: resolveTypeArgumentsInType(args, config.type) }])), {
48
48
  ...type,
49
49
  });
50
- const MemberDecl = (isRequired, type, comment) => ({
50
+ const MemberDecl = (isRequired, type, comment, isDeprecated) => ({
51
51
  kind: NodeKind.MemberDecl,
52
52
  isRequired,
53
53
  type,
54
54
  comment,
55
+ isDeprecated,
55
56
  });
56
- export const Required = (options) => MemberDecl(true, options.type, options.comment);
57
- export const Optional = (options) => MemberDecl(false, options.type, options.comment);
57
+ export const Required = (options) => MemberDecl(true, options.type, options.comment, options.isDeprecated);
58
+ export const Optional = (options) => MemberDecl(false, options.type, options.comment, options.isDeprecated);
58
59
  export const serializeObjectType = type => ({
59
60
  ...removeParentKey(type),
60
61
  properties: Object.fromEntries(Object.entries(type.properties).map(([key, prop]) => [
@@ -1,11 +1,11 @@
1
1
  import { GetNestedDeclarations, SerializedTypeArguments, TypeArguments } from "../../declarations/Declaration.js";
2
- import { EnumDecl } from "../../declarations/EnumDecl.js";
2
+ import { EnumCaseDecl, EnumDecl } from "../../declarations/EnumDecl.js";
3
3
  import { TypeAliasDecl } from "../../declarations/TypeAliasDecl.js";
4
4
  import { GetReferences, Node, NodeKind, Serializer } from "../../Node.js";
5
5
  import { SerializedTypeParameter, TypeParameter } from "../../parameters/TypeParameter.js";
6
6
  import { Validator } from "../../validation/type.js";
7
7
  import { BaseType, SerializedBaseType, Type } from "../Type.js";
8
- type TConstraint<Params extends TypeParameter[]> = TypeAliasDecl<string, Type, Params> | EnumDecl<string, Record<string, Type | null>, Params>;
8
+ type TConstraint<Params extends TypeParameter[]> = TypeAliasDecl<string, Type, Params> | EnumDecl<string, Record<string, EnumCaseDecl>, Params>;
9
9
  export interface IncludeIdentifierType<Params extends TypeParameter[] = TypeParameter[], T extends TConstraint<Params> = TConstraint<Params>> extends BaseType {
10
10
  kind: NodeKind["IncludeIdentifierType"];
11
11
  reference: T;
@@ -14,7 +14,9 @@ export const IncludeIdentifierType = (reference) => ({
14
14
  });
15
15
  export { IncludeIdentifierType as IncludeIdentifier };
16
16
  export const isIncludeIdentifierType = (node) => node.kind === NodeKind.IncludeIdentifierType;
17
- export const getNestedDeclarationsInIncludeIdentifierType = (isDeclAdded, type) => [type.reference, ...getNestedDeclarations(isDeclAdded, type.reference)];
17
+ export const getNestedDeclarationsInIncludeIdentifierType = (addedDecls, type) => addedDecls.includes(type.reference)
18
+ ? addedDecls
19
+ : getNestedDeclarations([type.reference, ...addedDecls], type.reference);
18
20
  export const validateIncludeIdentifierType = (helpers, type, value) => validateDecl(helpers, type.reference, type.args, value);
19
21
  export const resolveTypeArgumentsInIncludeIdentifierType = (args, type) => GenIncludeIdentifierType(type.reference, type.args.map(arg => resolveTypeArgumentsInType(args, arg)));
20
22
  export const serializeIncludeIdentifierType = type => ({
@@ -1,22 +1,14 @@
1
1
  import { parallelizeErrors } from "../../../shared/utils/validation.js";
2
2
  import { wrapErrorsIfAny } from "../../../utils/error.js";
3
3
  import { Lazy } from "../../../utils/lazy.js";
4
- import { isEntityDecl } from "../../declarations/EntityDecl.js";
5
4
  import { NodeKind } from "../../Node.js";
6
5
  import { getNestedDeclarationsInObjectType, getReferencesForObjectType, resolveTypeArgumentsInObjectType, serializeObjectType, validateObjectType, } from "../generic/ObjectType.js";
7
- import { getParentDecl, removeParentKey, } from "../Type.js";
6
+ import { removeParentKey } from "../Type.js";
8
7
  export const NestedEntityMapType = (options) => {
9
8
  const nestedEntityMapType = {
10
9
  ...options,
11
10
  kind: NodeKind.NestedEntityMapType,
12
11
  type: Lazy.of(() => {
13
- const parentDecl = getParentDecl(nestedEntityMapType);
14
- if (!parentDecl) {
15
- throw new Error("Parent declaration not found");
16
- }
17
- if (!isEntityDecl(parentDecl)) {
18
- throw new Error(`Parent declaration "${parentDecl.name}" is not an entity declaration`);
19
- }
20
12
  const type = options.type;
21
13
  type.parent = nestedEntityMapType;
22
14
  return type;
@@ -38,10 +30,7 @@ const _NestedEntityMapType = (options) => {
38
30
  return nestedEntityMapType;
39
31
  };
40
32
  export const isNestedEntityMapType = (node) => node.kind === NodeKind.NestedEntityMapType;
41
- export const getNestedDeclarationsInNestedEntityMapType = (isDeclAdded, type) => [
42
- type.secondaryEntity,
43
- ...getNestedDeclarationsInObjectType(isDeclAdded, type.type.value),
44
- ];
33
+ export const getNestedDeclarationsInNestedEntityMapType = (addedDecls, type) => getNestedDeclarationsInObjectType(addedDecls.includes(type.secondaryEntity) ? addedDecls : [type.secondaryEntity, ...addedDecls], type.type.value);
45
34
  export const validateNestedEntityMapType = (helpers, type, value) => {
46
35
  if (typeof value !== "object" || value === null || Array.isArray(value)) {
47
36
  return [TypeError(`expected an object, but got ${JSON.stringify(value)}`)];
@@ -2,22 +2,20 @@ import { GetNestedDeclarations } from "../../declarations/Declaration.js";
2
2
  import { EntityDecl } from "../../declarations/EntityDecl.js";
3
3
  import { GetReferences, Node, NodeKind, Serializer } from "../../Node.js";
4
4
  import { Validator } from "../../validation/type.js";
5
- import { MemberDecl, ObjectType } from "../generic/ObjectType.js";
6
5
  import { BaseType, SerializedBaseType, Type } from "../Type.js";
7
- type TConstraint = Record<string, MemberDecl<Type, boolean>>;
8
- export interface ReferenceIdentifierType<Name extends string = string, T extends TConstraint = TConstraint> extends BaseType {
6
+ export interface ReferenceIdentifierType extends BaseType {
9
7
  kind: NodeKind["ReferenceIdentifierType"];
10
- entity: EntityDecl<Name, ObjectType<T>>;
8
+ entity: EntityDecl;
11
9
  }
12
10
  export interface SerializedReferenceIdentifierType extends SerializedBaseType {
13
11
  kind: NodeKind["ReferenceIdentifierType"];
14
12
  entity: string;
15
13
  }
16
- export declare const ReferenceIdentifierType: <Name extends string, T extends TConstraint>(entity: EntityDecl<Name, ObjectType<T>>) => ReferenceIdentifierType<Name, T>;
14
+ export declare const ReferenceIdentifierType: (entity: EntityDecl) => ReferenceIdentifierType;
17
15
  export { ReferenceIdentifierType as ReferenceIdentifier };
18
16
  export declare const isReferenceIdentifierType: (node: Node) => node is ReferenceIdentifierType;
19
17
  export declare const getNestedDeclarationsInReferenceIdentifierType: GetNestedDeclarations<ReferenceIdentifierType>;
20
18
  export declare const validateReferenceIdentifierType: Validator<ReferenceIdentifierType>;
21
- export declare const resolveTypeArgumentsInReferenceIdentifierType: <Name extends string, T extends TConstraint, Args extends Record<string, Type>>(_args: Args, type: ReferenceIdentifierType<Name, T>) => ReferenceIdentifierType<Name, T>;
19
+ export declare const resolveTypeArgumentsInReferenceIdentifierType: <Args extends Record<string, Type>>(_args: Args, type: ReferenceIdentifierType) => ReferenceIdentifierType;
22
20
  export declare const serializeReferenceIdentifierType: Serializer<ReferenceIdentifierType, SerializedReferenceIdentifierType>;
23
21
  export declare const getReferencesForReferenceIdentifierType: GetReferences<ReferenceIdentifierType>;
@@ -8,7 +8,9 @@ export const ReferenceIdentifierType = (entity) => ({
8
8
  });
9
9
  export { ReferenceIdentifierType as ReferenceIdentifier };
10
10
  export const isReferenceIdentifierType = (node) => node.kind === NodeKind.ReferenceIdentifierType;
11
- export const getNestedDeclarationsInReferenceIdentifierType = (isDeclAdded, type) => [type.entity, ...getNestedDeclarations(isDeclAdded, type.entity)];
11
+ export const getNestedDeclarationsInReferenceIdentifierType = (addedDecls, type) => addedDecls.includes(type.entity)
12
+ ? addedDecls
13
+ : getNestedDeclarations([...addedDecls, type.entity], type.entity);
12
14
  export const validateReferenceIdentifierType = (helpers, type, value) => validate(helpers, createEntityIdentifierType(), value).concat(helpers.checkReferentialIntegrity({
13
15
  name: type.entity.name,
14
16
  value: value,
@@ -1 +1 @@
1
- {"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.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.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.arraybuffer.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.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/preact/src/jsx.d.ts","../node_modules/preact/src/index.d.ts","../node_modules/preact/jsx-runtime/src/index.d.ts","../src/shared/utils/typeSafety.ts","../src/shared/utils/instances.ts","../src/utils/enum.ts","../src/schema/validation/type.ts","../src/shared/utils/compare.ts","../src/shared/utils/validation.ts","../src/shared/validation/array.ts","../src/utils/render.ts","../src/utils/error.ts","../src/schema/validation/options.ts","../src/schema/types/generic/ArrayType.ts","../src/shared/validation/object.ts","../src/schema/types/generic/ObjectType.ts","../src/schema/types/primitives/BooleanType.ts","../src/shared/validation/date.ts","../src/schema/types/primitives/DateType.ts","../src/shared/validation/number.ts","../src/schema/types/primitives/FloatType.ts","../src/schema/types/primitives/IntegerType.ts","../src/schema/types/primitives/NumericType.ts","../src/shared/validation/string.ts","../src/schema/types/primitives/StringType.ts","../src/schema/types/primitives/PrimitiveType.ts","../src/schema/parameters/TypeParameter.ts","../src/schema/types/references/GenericArgumentIdentifierType.ts","../src/shared/enum.ts","../src/utils/lazy.ts","../src/schema/declarations/EnumDecl.ts","../src/schema/declarations/TypeAliasDecl.ts","../src/schema/types/references/IncludeIdentifierType.ts","../src/utils/object.ts","../src/schema/declarations/EntityDecl.ts","../src/schema/types/references/NestedEntityMapType.ts","../src/schema/types/references/ReferenceIdentifierType.ts","../src/schema/types/Type.ts","../src/schema/Node.ts","../src/schema/declarations/Declaration.ts","../src/Schema.ts","../src/renderers/Output.ts","../src/schema/index.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.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/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/sea.d.ts","../node_modules/@types/node/sqlite.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/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../src/shared/api.ts","../src/shared/utils/displayName.ts","../src/utils/result.ts","../node_modules/uuid/dist/esm/types.d.ts","../node_modules/uuid/dist/esm/max.d.ts","../node_modules/uuid/dist/esm/nil.d.ts","../node_modules/uuid/dist/esm/parse.d.ts","../node_modules/uuid/dist/esm/stringify.d.ts","../node_modules/uuid/dist/esm/v1.d.ts","../node_modules/uuid/dist/esm/v1ToV6.d.ts","../node_modules/uuid/dist/esm/v35.d.ts","../node_modules/uuid/dist/esm/v3.d.ts","../node_modules/uuid/dist/esm/v4.d.ts","../node_modules/uuid/dist/esm/v5.d.ts","../node_modules/uuid/dist/esm/v6.d.ts","../node_modules/uuid/dist/esm/v6ToV1.d.ts","../node_modules/uuid/dist/esm/v7.d.ts","../node_modules/uuid/dist/esm/validate.d.ts","../node_modules/uuid/dist/esm/version.d.ts","../node_modules/uuid/dist/esm/index.d.ts","../src/server/instanceOperations.ts","../src/server/index.ts","../src/utils/instances.ts","../src/ModelContainer.ts","../src/index.ts","../src/client/api.ts","../node_modules/preact-iso/src/prerender.d.ts","../node_modules/preact-iso/src/router.d.ts","../node_modules/preact-iso/src/lazy.d.ts","../node_modules/preact-iso/src/hydrate.d.ts","../node_modules/preact-iso/src/index.d.ts","../node_modules/preact/hooks/src/index.d.ts","../src/shared/utils/string.ts","../src/shared/validation/identifier.ts","../src/client/components/Layout.tsx","../src/client/hooks/useInstanceNamesByEntity.ts","../src/client/hooks/useSecondaryDeclarations.ts","../src/client/utils/typeSkeleton.ts","../src/client/components/typeInputs/utils/ValidationErrors.tsx","../src/client/components/typeInputs/ArrayTypeInput.tsx","../src/client/components/typeInputs/BooleanTypeInput.tsx","../src/client/components/typeInputs/DateTypeInput.tsx","../src/client/components/typeInputs/FloatTypeInput.tsx","../src/client/components/typeInputs/GenericTypeArgumentIdentifierTypeInput.tsx","../node_modules/preact/compat/src/suspense.d.ts","../node_modules/preact/compat/src/suspense-list.d.ts","../node_modules/preact/compat/src/index.d.ts","../src/client/components/Select.tsx","../src/client/components/typeInputs/utils/MismatchingTypeError.tsx","../src/client/components/typeInputs/utils/EnumDeclField.tsx","../src/client/components/typeInputs/IncludeIdentifierTypeInput.tsx","../src/client/components/typeInputs/IntegerTypeInput.tsx","../src/shared/utils/object.ts","../src/client/components/typeInputs/NestedEntityMapTypeInput.tsx","../src/client/components/typeInputs/ObjectTypeInput.tsx","../src/client/components/typeInputs/ReferenceIdentifierTypeInput.tsx","../src/client/components/typeInputs/StringTypeInput.tsx","../src/client/components/typeInputs/TypeInput.tsx","../src/client/hooks/useEntityFromRoute.ts","../src/client/routes/NotFound.tsx","../src/client/routes/CreateInstance.tsx","../src/client/routes/Entity.tsx","../src/client/routes/Home.tsx","../src/client/routes/Instance.tsx","../src/client/index.tsx","../src/renderers/jsonschema/render.ts","../src/renderers/jsonschema/index.ts","../src/renderers/ts/render.ts","../src/renderers/ts/index.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts"],"fileIdsList":[[128,170,185,220,228],[128,170,185,220],[128,170,182,185,220,222,223,224],[128,170,225,227,229],[128,170],[128,167,170],[128,169,170],[170],[128,170,175,205],[128,170,171,176,182,183,190,202,213],[128,170,171,172,182,190],[123,124,125,128,170],[128,170,173,214],[128,170,174,175,183,191],[128,170,175,202,210],[128,170,176,178,182,190],[128,169,170,177],[128,170,178,179],[128,170,182],[128,170,180,182],[128,169,170,182],[128,170,182,183,184,202,213],[128,170,182,183,184,197,202,205],[128,165,170,218],[128,165,170,178,182,185,190,202,213],[128,170,182,183,185,186,190,202,210,213],[128,170,185,187,202,210,213],[126,127,128,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219],[128,170,182,188],[128,170,189,213],[128,170,178,182,190,202],[128,170,191],[128,170,192],[128,169,170,193],[128,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219],[128,170,195],[128,170,196],[128,170,182,197,198],[128,170,197,199,214,216],[128,170,182,202,203,205],[128,170,204,205],[128,170,202,203],[128,170,205],[128,170,206],[128,167,170,202],[128,170,182,208,209],[128,170,208,209],[128,170,175,190,202,210],[128,170,211],[128,170,190,212],[128,170,185,196,213],[128,170,175,214],[128,170,202,215],[128,170,189,216],[128,170,217],[128,170,175,182,184,193,202,213,216,218],[128,170,202,219],[128,170,183,202,220,221],[128,170,185,220,222,226],[81,128,170,258],[128,170,257,258,259,260],[80,81,128,170,258,262,275,276],[80,81,128,170,258],[80,128,170],[128,137,141,170,213],[128,137,170,202,213],[128,132,170],[128,134,137,170,210,213],[128,170,190,210],[128,170,220],[128,132,170,220],[128,134,137,170,190,213],[128,129,130,133,136,170,182,202,213],[128,137,144,170],[128,129,135,170],[128,137,158,159,170],[128,133,137,170,205,213,220],[128,158,170,220],[128,131,132,170,220],[128,137,170],[128,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,170],[128,137,152,170],[128,137,144,145,170],[128,135,137,145,146,170],[128,136,170],[128,129,132,137,170],[128,137,141,145,146,170],[128,141,170],[128,135,137,140,170,213],[128,129,134,137,144,170],[128,170,202],[128,132,137,158,170,218,220],[128,170,234,235,236,237,238,239,240,242,243,244,245,246,247,248,249],[128,170,234],[128,170,234,241],[82,84,88,91,120,121,122,128,170,184,192,252,253],[82,104,114,115,117,119,128,170],[82,114,128,170,231],[81,82,128,170,258],[81,82,128,170,258,277],[81,82,89,93,128,170,258,266,267,268,269,288],[81,82,96,128,170,258],[81,82,97,98,128,170,258,269],[81,82,99,100,128,170,258,262,269],[81,82,107,128,170,258],[81,82,83,122,128,170,258,266,267,280,288],[81,82,99,101,128,170,258,262,269],[81,82,115,128,170,258,262,266,267,268,278,283,288],[81,82,94,95,128,170,258,263,266,267,268,269,283,288],[81,82,116,128,170,258,266,269,278],[81,82,103,104,128,170,258,269],[81,82,83,117,128,170,258,266,267,270,271,272,273,274,279,281,282,284,285,286,287],[81,82,108,110,128,170,258,263,266,267,268,278,279,288],[82,114,128,170,256,261,262],[82,128,170,231,256,262],[82,110,111,119,128,170,256,262],[81,82,128,170,258,261,290,291,292,293,294],[81,82,128,170,232,256,258,261,262,263,264,265,266,267,268,269,288,289,290],[81,82,84,114,128,170,232,256,258,261,262,265,290],[81,82,122,128,170,256,258,262,263,265],[81,82,84,87,128,170,232,256,258,261,262,265,266,267,288,289,290],[81,82,128,170,258,265],[82,83,117,128,170,267],[82,128,170],[82,120,128,170],[82,120,121,122,128,170,184,192,296],[82,83,93,95,96,98,99,102,104,106,107,108,110,111,112,114,115,116,117,118,119,128,170],[82,120,121,128,170,184,192,298],[82,83,90,93,95,96,98,102,104,106,107,108,110,111,112,114,115,116,117,118,119,128,170,191,263],[82,83,84,85,117,119,128,170],[82,83,86,93,95,106,110,111,112,114,115,116,117,118,128,170],[82,86,95,104,109,111,113,117,118,119,128,170],[82,86,106,108,109,117,118,119,128,170],[82,86,106,109,117,118,119,128,170],[82,93,95,96,98,100,101,102,104,105,106,107,110,111,112,114,115,116,117,118,119,128,170],[82,117,118,128,170],[82,83,86,93,95,96,98,100,101,104,105,107,112,115,116,118,119,128,170],[82,86,88,89,91,92,117,118,119,128,170],[82,86,88,91,92,94,117,118,119,128,170],[82,86,117,118,128,170],[82,86,97,117,118,128,170],[82,86,99,117,118,128,170],[82,86,92,99,117,118,128,170],[82,100,101,128,170],[82,96,98,102,104,128,170],[82,86,103,117,118,128,170],[82,86,106,117,118,128,170],[82,86,106,110,111,117,118,119,128,170],[82,86,88,91,95,109,114,117,118,119,128,170],[82,86,95,114,117,118,119,128,170],[82,84,110,111,114,119,128,170,192,230,231,232,233,251,254],[82,84,91,114,118,128,170,184,192,233,250,254],[82,84,119,128,170],[82,122,128,170],[82,87,128,170],[82,88,128,170],[82,87,88,128,170],[82,90,128,170],[82,84,114,128,170,184,192,254],[82,83,128,170],[82,128,170,191]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7001c133698dabb4f646201d46fef931c767b966b578578da7bae72921f69504","impliedFormat":1},{"version":"faa00300c6be9189c1c04f5d0cfceaed0aa6eac5b4f70fcd877ceb169b8e9865","impliedFormat":1},{"version":"000776b76210c3b5afe490fbc24891a6b60a2b4fa64b0b36e214bdc05395a0c4","impliedFormat":1},{"version":"9d91c3cda0d0c27b7158ae82b970254964ed238ce0927f8d8bf1e8dbbe35b2ab","signature":"d9d1d403bfb4af1b67253e8c31bb84fd3b595b85a4ae554cf6884fd14c85629f","impliedFormat":99},{"version":"23b7e0647f313af89363b4206c49072874ba6da5ff93cf5e96b3fafee06f285b","signature":"9badf69c0adfe3a003e7753f226a8095d41a414c3ad7e7b32b166ff5203d6931","impliedFormat":99},{"version":"6849d7e21355a55e737952f4f7c319d72151ca3efeb096c1529f66f31a9cdff6","signature":"5df308c2a38b7e7d128b233736b36c81ac7d32ae574e01797cdf811742414af9","impliedFormat":99},{"version":"22b7b808ee63932aaee8c06bba68bda5c96b9c4088661b7ac496b2ab76690810","signature":"9c8d63202e3bcbae2d2e1b5d9afb9073d14a88b8ae3992af763a488fcfd4bc35","impliedFormat":99},{"version":"73f395c032c6fa8f168766866eb998f83a1c0f6f6892fec2a662755c183954d4","signature":"cee60b56545409f5495b470512f31b15e4e07b7b43eafefb89fa1060d3e6f147","impliedFormat":99},{"version":"b12fc64843823572006834dd913b338472864d45ed00383713872283298fdb3d","signature":"4420b5e07781e988c8f6a8374d74c11570101bdbadb188b54592b471661dba43","impliedFormat":99},{"version":"6d55bcc2b57e0db2f1628e7fdfab0c50f8a020fe19f342b58269f9821601d2de","signature":"1c1650d779604f48ba36aa90a0a65c1d8f20808209750f9034025631e12759a5","impliedFormat":99},{"version":"a6c7748e0a5984ac9d84642960023a1d374fa2ce4f6d481f134c5551c2932335","signature":"8d85889bd4043b714969515d8cb67cd65e851817b01e3d78966099175d8a6423","impliedFormat":99},{"version":"5f58f37c2b43508b2bda72b1a7b3217c93d73131f27f30efb56b7f3d05b924fa","signature":"285b7aa77ad049680f6cbb8901d31ea0985758f2037a8d29827caea5d7849a7c","impliedFormat":99},{"version":"cb3d6cbf54208f4a766e71449e1c8ac7a3c4c3afaaf2330d6f36123fd4d8a961","signature":"20fd4c22d4218f3a7860d4277b487ffd3fed2a7b9b1f1f7050561f4873d565c9","impliedFormat":99},{"version":"d57bcd01640ffb3253fe820889411957883616da0aaf4d080c7359a74721bf37","signature":"504213adf36a77ac469b659ac071e2793b133786c55ddcaee7faa54f1a320f9e","impliedFormat":99},{"version":"7e3c91c7ec0c7805e4cca815765d8d82d6603aca5901478706c771aaf5a8042b","signature":"c535f0b5433b936e35dcdab6358b5f27e1321f1c095cb504225314e93eb68119","impliedFormat":99},{"version":"224800053d5f95dbd4d4d23a8660dabc850fffef307689afd0b0d0fb3c2a8504","signature":"35101137c2c2fe380978d244ad68c6f6037e90a9e7b76643853677b7a3a9b156","impliedFormat":99},{"version":"0683b0f31e490e976de4035da21fc5ac271c6d7eb5473cfe52baecba87e930f1","signature":"3d7f00cff06f78896dc24da9d62b91de38a8475203677b50f56c279320f683bc","impliedFormat":99},{"version":"4588f7c1208e225f42a61d93ab5921a75978e8a3a2920f6f31d91e9d74da28c8","signature":"7a64f0005782063c6c670fa0e265ac8596483f23bf5899dd5b7493f30ef32d94","impliedFormat":99},{"version":"56c0d511a5799c8eba989929e7ee9e0af18114462ad0cfdac13a1dc67df8766e","signature":"540fc6abc268574b14b0333a0942d4b28cd9f13dda388b6c02f55cf1bed23aef","impliedFormat":99},{"version":"67f923b4ba030f9762eddab729bee2d560ad46e4d6be6ac40c7b7687d3410f59","signature":"e44ecfc01eb21ff4621cfd618168c9f57dba2a1ae2158e5bdea6fe618f6f1652","impliedFormat":99},{"version":"3b1601119a412fb386c3ca2acb8263de8795d250c7544d2dc4134f57ef6c2a51","signature":"500bd28893860d2eed859c814e003dda0eda064f61855acd99d2443018c798fb","impliedFormat":99},{"version":"3a5b3a53edc7f55fb2ec5249c32bbace8199bf327f862ef28e6ea14c1c259485","signature":"4c08ace3c43552237358084c139decef03b66e9e579168668bd28c0a94a3732d","impliedFormat":99},{"version":"39407bc7c4302fceec20a30aa4690a0b27e122bd5f7140b867de936d6095a2c2","signature":"0282c32b08575026b4d36c805a9fd60433ce7f5a858e80aa1374fa08b9c1fb0c","impliedFormat":99},{"version":"001d3e365257e2e5c4be28de5063c7f809cfc4b40da7c522f69d4d4bd4fce05f","signature":"a4cd144471061f2b6ca6e0a5ffd560768aa5b556ad5ba1faa43fab62d41226f3","impliedFormat":99},{"version":"26ee1fbc9aaa4f076e4aa77c5bfa46c4d42be27536ea9b2700fbbf95a4a08730","signature":"445a25854de2a1c7e2119ac1567e8cf8d7f13b5669bdd647c081b62e57023c08","impliedFormat":99},{"version":"9ae810d7e0dea48693d07d2758b820e0f40066a97083d47ff8692bbe29d5b26b","signature":"895f67f37e6bada6cfbdffe13b76c10a49876d52a15b463b2350e8ccf2aa36a9","impliedFormat":99},{"version":"e639d43c992d0e01f8cce834275ba37663ec8c13e6385fbfd8044faef4d7eed5","signature":"574b381a9431deb1a7460288dfb0aeda55b1b660df4a5e03683c79a27b18d60a","impliedFormat":99},{"version":"154c5acaf7679280e3cfee053351e8af2d9abb28721091067f658a834a410597","signature":"b994aa2e15150b431d0f085c09791dcf3c99b9e6b21e358967fe6248848a311c","impliedFormat":99},{"version":"3332245d1e5fd9d337402bc4d42bd3b99edc490603bd3c53891b2a431c8328ef","signature":"754eb668d9ba82fd27eafb7cb4f45b58af07bbc0878cb73471392a39b16c6526","impliedFormat":99},{"version":"ace097e580c5dd6815a8006677f72d4e71e976572e17fbfd5c9ca97c25bd40f1","signature":"dad33c9a930dfd3997a4442f99b03f83a39486e8769ccd2c5ddfe445a0fd1f2b","impliedFormat":99},{"version":"62474d8ec16a95f1b13df56fe30695725c6d046ff3fcdb2c68d4cfe84a0eb975","signature":"7591365a5de8f168d1cbab1abeec3d604baa3f83836989a3882cb1c136e9cef0","impliedFormat":99},{"version":"d2c1612f685daade22a7cc800cb3dc2e87381fe0936a402613d48e912159ff8a","signature":"4a9646ee2f3370190f9d0d5e0ab524950891f502d79571b2c453be821ea061fd","impliedFormat":99},{"version":"077ed026304e27df7023af6abeb7a1094b95d49fd57afcb567dba70cbc6baef8","signature":"731533faa5afc7bfce7fc12ae568f1c380860f31778810d1d9ff45ea8b8f006d","impliedFormat":99},{"version":"a0b1e06d7fc35f4959642fb2811096cfcbc3a4bbb8a329f39111ae8438dd4a8a","signature":"06a912ac3519de476dce243d8c96647618e174b1a011cb1e6efa6326963a755c","impliedFormat":99},{"version":"da95b3c2a673ee5e32017f46f498ca8f6a14caa1779beaa7d9353d929c76a602","signature":"5d5276e16f6555723441b989103a4f2feba79cb441aedb5ab84596be021d256c","impliedFormat":99},{"version":"f8c9cf089fb33696e19c1687652f0c1bf6ebcebb9c7004d24a5fa25f9acf504c","signature":"aa8e3acac6a8666633376b7e36fafd1910f3e9d89d386ba8297c933fd290d5cb","impliedFormat":99},{"version":"ac860c2d3717f53ad498819c49db2fb755133355673dd6958b60e073efe189d8","signature":"1efb5b044d6728bd6964704ece62f1823687c73d0eed82d0a6f2bd22c6d32880","impliedFormat":99},{"version":"234511256ac3ba9ad7d859049feef243fed18e5c1777a84990f656a855947170","signature":"2dfbcdbb9ce0e6c230ae0d5dc81b261bb1cc228dd0d060e6b1c00a1995e727e5","impliedFormat":99},{"version":"4b80e4a3906720e6d5e9da61f44f97d7e8d21ec304431bb00e1c362f0b134c24","signature":"482b13680e2b347651710382f47d5edacf126babf72982257bdfbf05adb5621b","impliedFormat":99},{"version":"c4cccc44c655ba134f3e84b88a6a9ceb0c6e20905c27891c56f96eba7b8c8ddf","signature":"01459b5c44c5ebaa1aa5ae840c9ff7bf5372b1e1d26dbf7628f8146ecba1f811","impliedFormat":99},{"version":"0b56ed20323c751165306d5aa3a7bdcc650b1eebe0da33eeaa362e4258e4d8f7","signature":"4ecce435abe39526bb458cc6b515c8ffe25eb32c68945cb197fe975aaebd373a","impliedFormat":99},{"version":"8c18c9e638157dc117c4f2cc64063bc7f0c531c5039aab9e4c4635e282e53305","signature":"2cfe6d120ecf8f730e7a8842c4fad45c26e105b5869eedff1675838937ee4378","impliedFormat":99},{"version":"5be4d42c795f8fd6d452c5bcfb938ffdde280df8c280b056aba2c55b8d8254bb","signature":"0fa8a62d6b05b4350fdbbe0ee455f215ee03541ba5c31249c94ddf8ae82a0064","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fa51737611c21ba3a5ac02c4e1535741d58bec67c9bdf94b1837a31c97a2263","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0539c58717cbc8b73acb29f9e992ab5ff20adba5f9b57130691c7f9b186a4d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"9057f224b79846e3a95baf6dad2c8103278de2b0c5eebda23fc8188171ad2398","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fb11e675f5cc648bc6c344e1311e36b8dfffea8bffe575bedc0e41af77eca99","impliedFormat":1},{"version":"1e289f30a48126935a5d408a91129a13a59c9b0f8c007a816f9f16ef821e144e","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"f579f267a2f4c2278cca2ec84613e95059368b503ce96586972d304e5e40125b","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f6f1d54779d0b9ed152b0516b0958cd34889764c1190434bbf18e7a8bb884cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"f7b1df115dbd1b8522cba4f404a9f4fdcd5169e2137129187ffeee9d287e4fd1","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"993985beef40c7d113f6dd8f0ba26eed63028b691fbfeb6a5b63f26408dd2c6d","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb094bb347d7df3380299eb69836c2c8758626ecf45917577707c03cf816b6f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"936eb43a381712a8ec1249f2afc819f6fc7ca68f10dfec71762b428dfdc53bf1","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"86ea91bfa7fef1eeb958056f30f1db4e0680bc9b5132e5e9d6e9cfd773c0c4fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},{"version":"f1c5de969297334c1416cc3111d79715495784a85afd0067f6b5dc964b1e025d","signature":"c702def93d658ca5415bee416f94af58269ec0f802329e77893040449d531eda","impliedFormat":99},{"version":"72b514bfa14e7663f8a0dfc90f2e92e1007d47769d16e2d032ef54a146a0f91f","signature":"6717b1f0e4c2e99e0cee9026bafdfe8a97b2e152bf3ad9a9dc68ff1ebab30d39","impliedFormat":99},{"version":"79e49c1f56e4d77b9777ee31243018203aa99d308ae8f40358d1ec05b8ddab2c","signature":"14312b91775c4c6db498f56f4695023a6f097262bc738478abcd0d7ab024be5d","impliedFormat":99},{"version":"cff399d99c68e4fafdd5835d443a980622267a39ac6f3f59b9e3d60d60c4f133","impliedFormat":99},{"version":"6ada175c0c585e89569e8feb8ff6fc9fc443d7f9ca6340b456e0f94cbef559bf","impliedFormat":99},{"version":"e56e4d95fad615c97eb0ae39c329a4cda9c0af178273a9173676cc9b14b58520","impliedFormat":99},{"version":"73e8dfd5e7d2abc18bdb5c5873e64dbdd1082408dd1921cad6ff7130d8339334","impliedFormat":99},{"version":"fc820b2f0c21501f51f79b58a21d3fa7ae5659fc1812784dbfbb72af147659ee","impliedFormat":99},{"version":"4f041ef66167b5f9c73101e5fd8468774b09429932067926f9b2960cc3e4f99d","impliedFormat":99},{"version":"31501b8fc4279e78f6a05ca35e365e73c0b0c57d06dbe8faecb10c7254ce7714","impliedFormat":99},{"version":"7bc76e7d4bbe3764abaf054aed3a622c5cdbac694e474050d71ce9d4ab93ea4b","impliedFormat":99},{"version":"ff4e9db3eb1e95d7ba4b5765e4dc7f512b90fb3b588adfd5ca9b0d9d7a56a1ae","impliedFormat":99},{"version":"f205fd03cd15ea054f7006b7ef8378ef29c315149da0726f4928d291e7dce7b9","impliedFormat":99},{"version":"d683908557d53abeb1b94747e764b3bd6b6226273514b96a942340e9ce4b7be7","impliedFormat":99},{"version":"7c6d5704e2f236fddaf8dbe9131d998a4f5132609ef795b78c3b63f46317f88a","impliedFormat":99},{"version":"d05bd4d28c12545827349b0ac3a79c50658d68147dad38d13e97e22353544496","impliedFormat":99},{"version":"b6436d90a5487d9b3c3916b939f68e43f7eaca4b0bb305d897d5124180a122b9","impliedFormat":99},{"version":"04ace6bedd6f59c30ea6df1f0f8d432c728c8bc5c5fd0c5c1c80242d3ab51977","impliedFormat":99},{"version":"57a8a7772769c35ba7b4b1ba125f0812deec5c7102a0d04d9e15b1d22880c9e8","impliedFormat":99},{"version":"badcc9d59770b91987e962f8e3ddfa1e06671b0e4c5e2738bbd002255cad3f38","impliedFormat":99},{"version":"f3748ea1d1f682205ba85313341c419367607df80dca5815595c7742d017e6d4","signature":"aa610fa53335751d4c61b7ff4810019f8dc2e7bef5b94882530679ef5c1b770f","impliedFormat":99},{"version":"1aae2a2e31a988a61fa7ac8aebee845872fb355959cc437c791d6325e7cf6b26","signature":"e853ccb08b06c9898a739d6bab07e8440e8a2e28c8e54c399554e840700d7d71","impliedFormat":99},{"version":"23e38bbe0a026cb7c6db1696447116b17bf989a2507cf95a359fb1ea84d4849b","signature":"43960736821d0cf2621ca21daee2fde2cd262d75a3f5142f1ae6031ae2d8186e","impliedFormat":99},{"version":"022256727465c338a3bf0249dd90366b9fd8a86a3992d29369523fe86402b1d3","signature":"2e90d9324d752c8aa8d6d6605a8fefff5c4c30f17b055c93645e4c49228078ea","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"e35b0485d7a30b49dad6cb6e644d9079a79423302cf2eadfb6541ca4ae2daecd","signature":"bc1f49049242c1c20df18e36c76a8ccb54337a3d524803e1efcc1e7272df559b","impliedFormat":99},{"version":"03adf9196e7a24109f4892535b2e978c236e9ce17b7997ef64aff0106b603f86","impliedFormat":99},{"version":"0057f771fb2d60307e4be4ae946c693a485bc8d8603f8029f301f91bde999bf0","impliedFormat":99},{"version":"14f04b15cd0b118ec53ada152c47635bb251c74ec2e4669d7a8158fe17c78cbb","impliedFormat":99},{"version":"799230b849f5ad97fc91315a0712526ac51f8357d6be7b61fe93c8256a12a54d","impliedFormat":99},{"version":"6d2a92cff7bbe8cba741b366cdeeb45fa8dd4d03b5d8db23fcbf9d57119fc5ca","impliedFormat":99},{"version":"7687e1c892178a4674e162427319e47fb881ac1ae5fa4c50dcc3423870dba636","impliedFormat":1},{"version":"45d9ef7f61e0aed9c1b3af6c337dc9def3f578c296bf0bf4a7927c18d06d59f1","signature":"d56b6ad4a461de4bdc6b90efdee0457fd03137917b01bb1e9730b7046de1e04c","impliedFormat":99},{"version":"1a46af10bb94faf80690d8005e83553ccb0c35147551dc625a13c2a2fd6dacc6","signature":"90e7cea022fe535af9c7b69daf58eb04c629b6da939f87c1152ff7e802325cfc","impliedFormat":99},{"version":"58a4a9987bfb9ee532149962d8bb60c2a53d2ee3f15324dfaa8da2a238d9dbda","signature":"542db7993e0eebe59203c3f228aa26d92a1b55bd127c05fa0ba2e045ffd56aec","impliedFormat":99},{"version":"22a264f5fe6b57220d349c9b4d84fa3059447de3e50be59e07014508a6aee1ac","signature":"ab443c0fb2394e01c11d2371fe6fe3daa96d22de47a324e7c60774586d470d15","impliedFormat":99},{"version":"0402c6df9d1630e3455b46964466bd96647b63ba1f3c3d48eaf3080512d1876d","signature":"d41e19f927706404832b4d3912b9786aec7a251b15795724a88fb8f9a7ab31f0","impliedFormat":99},{"version":"4167ec964b10b52d0f59de250fc6f361f6d69c8d7249816b69f36eb844a84fd9","signature":"fcd5baecd86d2f3981bb1f0cf87c21ebac91bd2591d4fb6292b10ac07ebb9a36","impliedFormat":99},{"version":"cdc5e6e871a3a09064ae10ac271f7e5437cc48366b42bdf4558b667b8ff6f6df","signature":"f119d03055172a114a42e7e655c86e8f69daf89ac4040189afb8d78b4ac6c47b","impliedFormat":99},{"version":"c0bff0b640929dd7642196743ee422719288b4a7c6ba079c2a9d546e9302f11a","signature":"abc4d7e2f35c927f2a7703c74a7314317b32f01180f557d7da1ad8bfffa42d5a","impliedFormat":99},{"version":"12c15243c19f244a89ed4b8fe74f7562013ae6867eae571b7bd9c6ee7d6fe9e0","signature":"38e88523753bf4ee31162d1cd49c90717538e111d65c310571459348dce83a31","impliedFormat":99},{"version":"f70dde460592d7179dbde47147340668e395f5a6194fc8c6eef5f15472c3f090","signature":"0e0be178b1bfaa1cae8c40c4da43c161317d378b07483cf9defecc8fd78329e3","impliedFormat":99},{"version":"337af0f12d57d93b77aed72e938463c470c01e65973dc5ca61e49d2b638c8472","signature":"29934f5f5edf2d17a53c9e2fa0189811fc065f49d552d20c1b9cc1a70b1a2eff","impliedFormat":99},{"version":"874b39dff42b86941a566edcfaa36164c85fbf08658b4c39768a6b0e33d76429","signature":"dcda1230dd760a0a1e94fb218b54f8e89843d72982ad5ce83b03e5f7843f3f0b","impliedFormat":99},{"version":"f75efd5983e3da39521471473ba226e3b3240b402f9c8fbc0221a965839d19a6","impliedFormat":1},{"version":"8d44d1057bca7ac91f5ba3f10fc9b4263dc8bdfa29856836f6635df62fc1e77f","impliedFormat":1},{"version":"3839ac269f4160d21d852a4107f3a2f7eaf8dff08c02fb7ef0d19db50c03234d","impliedFormat":1},{"version":"7de9946cceba4f17d01495b6337099ffce7d47035022167743007fac53ee2c70","signature":"08d2847e9806d2a11e92500970f38cc4fa3d2f51169e4cda49e142c620696cec","impliedFormat":99},{"version":"f71175b53466c89712d794df49cbdd10ffc0574e6ba1c8ff114bcbff01d8a8f3","signature":"5f1701cc1efdc4d2773bcdf1ab4380e89b25bd8342b3a0d8a35f7931c08a5bc6","impliedFormat":99},{"version":"13a8caa93ce82ac4314c57551d1a767615f7505b1e1c525776d0b9ee08bb745d","signature":"e7896cbdd7d759240c5daa7684b84ed0676ae33793c2f8c603cc843da2c61e6f","impliedFormat":99},{"version":"41ade00e5dd1928efd28fd58f90b30160579a51891710923ca0f6cc92e393e3a","signature":"2219f318d578196ad3a6848fdfc371b0aeba33f620e89c9c6b48510b1b334197","impliedFormat":99},{"version":"eec4542e9c368554880c616202f0233620173a6737dd178db6fca5835b138eb6","signature":"ac3dd215b935303837aed88c62c68f70e3aaf6426f57c1673534ca61e5b92231","impliedFormat":99},{"version":"36d0b95a38f843b7158640a33bf2ffc84e9b67b2056f9ffecffda402d7e7a0b2","signature":"e04e75be5800bdb03efc56db5d1f0e8d7420f08c72ccee79157e1cd4a8ceae08","impliedFormat":99},{"version":"ba3f27e300e1313316b56372aa4fd3bf0d0b16baa3d689ad7c463b56e855eba9","signature":"2180619f3b46ef9c8892a7a60488ad582b6a1df812191ad997bdad70eb76bb7f","impliedFormat":99},{"version":"4e54fc1ee654facc7b14a2d625de44404b2160552cfd07726f571c7f572c40a8","signature":"8a6e4cabfdb52b7e4cc1a9ade05b0e2b45d0315d181db1f0721381dfa5dcbd7b","impliedFormat":99},{"version":"b6c4473a604c18819f62830bfa1a165d6a99b4de1d512fb8354f0dd09acb9539","signature":"6fee2a84be958eee030e90eb8098bb4b024f87fdb5c58b4bad3dddeae451958b","impliedFormat":99},{"version":"542c013d75f051ace298fd0b3107f36da719cafa91ede6ee689a6ce41ab30530","signature":"d068b0c61dc959ba1987a2525b1205f56589b2758d4f5a589cfa26384a092dae","impliedFormat":99},{"version":"3c7bdf3b8bc19c3ba690761e0e33ddbdbc637e4629f220cebcc0ffeec5b2cbd4","signature":"24f829224fe21d61714692ad8f90fbd44df0e50fdca438e3f006066b423bbbab","impliedFormat":99},{"version":"ef55363d3bcbaceca90c61f611c13a1f44173060fe91e4ec597328ae4d638b0f","signature":"b883cad4bda9a54d6b021f00edf9b757f6c9a633eda98e190fc0d147ab284ac4","impliedFormat":99},{"version":"471f84fd6041f64479e82c479fd6069ab746d3de4ce5380409130da82eb8e75c","signature":"00465d60ed1c092b5b8f24a440256e52e16d360599aab0bbf4ecf13b3d332e5d","impliedFormat":99},{"version":"abf64649f054252134c2fde92baefa107bb924ee1848d7575006aa5cad914568","signature":"24520bf9599564929be8561cb0d970cc0d9aed3570c1d5e86030fe3417c855ba","impliedFormat":99},{"version":"a57de58b40666ac4534df8e4be3d6d5217fdc10724b80c2c486d07015f4e85f2","signature":"c3c11c2b5431a06b051629abda888b114eec99870bb78d835c37d2bd51cb0e83","impliedFormat":99},{"version":"bedc4d3b21f6a678a87bbd2295c80c5f331b0a4d3898483585c4d2c637077e13","signature":"5e41b9c78f0702baea6ca4ec124d8dc9d6d2f626deb370ecb38f0b1a494a9ea8","impliedFormat":99},{"version":"8e5007e05ccd137d7647e1501453825cdb77507d5faa333168140b07416c69a7","signature":"8b4144fdedde4930187b02bf2779e76bf732db580bd7ab032928a63329910666","impliedFormat":99},{"version":"cf3f119823082ddaf69f607bb511f6decce54f0627bb535388cc0d2855f112bf","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"8ab55c01082105d708b7fe3a2a5baff9494c60e7861de1ec1b045a28f4c28e6d","signature":"465a93bed6748d7afc49f5e48c7b74eb12daf334894c59b46c4f5c2c47c76a70","impliedFormat":99},{"version":"7c44d4818dbf38624f65cddb7df1864ebdf2a06b80d851d076db6a99247fa452","signature":"fa13a7b93ebc35e78aa6ef4509ab3a98aa125da077793cf6a33591af1d67b757","impliedFormat":99},{"version":"f6ece611406c26c3c2e306f83e3c77b544ea3a5671a34c1368c67f75afa4b7b5","signature":"6bf7af128ec984fb3a8df127507cddff2361bd455837e21b5ffd89e381128e51","impliedFormat":99},{"version":"2b926cced7ba015c3c9efda47b854ca38388fa5d28cc9a8d43f36a3d02d83d82","signature":"faa2168a0967af6718f2cf78806761711116dbbb79eaf31a2bcdaeb123384e44","impliedFormat":99},{"version":"fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","impliedFormat":1},{"version":"22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","impliedFormat":1}],"root":[[83,122],[231,233],[251,256],[263,274],[278,299]],"options":{"composite":true,"declaration":true,"erasableSyntaxOnly":true,"jsx":4,"jsxImportSource":"preact","module":199,"noErrorTruncation":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUncheckedSideEffectImports":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":99,"useUnknownInCatchVariables":true},"referencedMap":[[229,1],[228,2],[225,3],[230,4],[226,5],[221,5],[300,5],[167,6],[168,6],[169,7],[128,8],[170,9],[171,10],[172,11],[123,5],[126,12],[124,5],[125,5],[173,13],[174,14],[175,15],[176,16],[177,17],[178,18],[179,18],[181,19],[180,20],[182,21],[183,22],[184,23],[166,24],[127,5],[185,25],[186,26],[187,27],[220,28],[188,29],[189,30],[190,31],[191,32],[192,33],[193,34],[194,35],[195,36],[196,37],[197,38],[198,38],[199,39],[200,5],[201,5],[202,40],[204,41],[203,42],[205,43],[206,44],[207,45],[208,46],[209,47],[210,48],[211,49],[212,50],[213,51],[214,52],[215,53],[216,54],[217,55],[218,56],[219,57],[301,5],[223,5],[224,5],[222,58],[227,59],[260,60],[261,61],[259,60],[257,60],[258,60],[277,62],[276,60],[275,60],[262,60],[82,63],[81,64],[80,60],[78,5],[79,5],[13,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[24,5],[25,5],[4,5],[26,5],[30,5],[27,5],[28,5],[29,5],[31,5],[32,5],[33,5],[5,5],[34,5],[35,5],[36,5],[37,5],[6,5],[41,5],[38,5],[39,5],[40,5],[42,5],[7,5],[43,5],[48,5],[49,5],[44,5],[45,5],[46,5],[47,5],[8,5],[53,5],[50,5],[51,5],[52,5],[54,5],[9,5],[55,5],[56,5],[57,5],[59,5],[58,5],[60,5],[61,5],[10,5],[62,5],[63,5],[64,5],[11,5],[65,5],[66,5],[67,5],[68,5],[69,5],[1,5],[70,5],[71,5],[12,5],[75,5],[73,5],[77,5],[72,5],[76,5],[74,5],[144,65],[154,66],[143,65],[164,67],[135,68],[134,69],[163,70],[157,71],[162,72],[137,73],[151,74],[136,75],[160,76],[132,77],[131,70],[161,78],[133,79],[138,80],[139,5],[142,80],[129,5],[165,81],[155,82],[146,83],[147,84],[149,85],[145,86],[148,87],[158,70],[140,88],[141,89],[150,90],[130,91],[153,82],[152,80],[156,5],[159,92],[250,93],[235,5],[236,5],[237,5],[238,5],[234,5],[239,94],[240,5],[242,95],[241,94],[243,94],[244,95],[245,94],[246,5],[247,94],[248,5],[249,5],[254,96],[120,97],[256,98],[265,99],[278,100],[270,101],[271,102],[272,103],[273,104],[274,105],[281,106],[282,107],[284,108],[285,109],[286,110],[287,111],[288,112],[280,113],[279,99],[269,99],[289,114],[266,115],[267,116],[295,117],[291,118],[292,119],[293,120],[294,121],[290,122],[268,123],[255,124],[121,125],[297,126],[296,127],[299,128],[298,129],[118,130],[119,131],[114,132],[110,133],[111,134],[122,135],[106,136],[117,137],[93,138],[95,139],[96,140],[98,141],[100,142],[101,143],[102,144],[105,145],[104,146],[107,147],[112,148],[115,149],[116,150],[92,124],[86,136],[252,151],[251,152],[231,153],[108,124],[87,124],[232,154],[84,124],[283,124],[263,124],[83,124],[88,155],[89,156],[97,156],[264,124],[99,157],[94,156],[103,156],[85,124],[91,158],[253,159],[109,160],[113,124],[90,161],[233,124]],"latestChangedDtsFile":"./renderers/ts/index.d.ts","version":"5.8.2"}
1
+ {"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.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.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.arraybuffer.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.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/preact/src/jsx.d.ts","../node_modules/preact/src/index.d.ts","../node_modules/preact/jsx-runtime/src/index.d.ts","../src/shared/utils/typeSafety.ts","../src/shared/utils/instances.ts","../src/utils/enum.ts","../src/schema/validation/type.ts","../src/shared/utils/compare.ts","../src/shared/utils/validation.ts","../src/shared/validation/array.ts","../src/utils/render.ts","../src/utils/error.ts","../src/schema/validation/options.ts","../src/schema/types/generic/ArrayType.ts","../src/shared/validation/object.ts","../src/schema/types/generic/ObjectType.ts","../src/schema/types/primitives/BooleanType.ts","../src/shared/validation/date.ts","../src/schema/types/primitives/DateType.ts","../src/shared/validation/number.ts","../src/schema/types/primitives/FloatType.ts","../src/schema/types/primitives/IntegerType.ts","../src/schema/types/primitives/NumericType.ts","../src/shared/validation/string.ts","../src/schema/types/primitives/StringType.ts","../src/schema/types/primitives/PrimitiveType.ts","../src/schema/parameters/TypeParameter.ts","../src/schema/types/references/GenericArgumentIdentifierType.ts","../src/shared/enum.ts","../src/utils/lazy.ts","../src/schema/declarations/EnumDecl.ts","../src/schema/declarations/TypeAliasDecl.ts","../src/schema/types/references/IncludeIdentifierType.ts","../src/utils/object.ts","../src/schema/declarations/EntityDecl.ts","../src/schema/types/references/NestedEntityMapType.ts","../src/schema/types/references/ReferenceIdentifierType.ts","../src/schema/types/Type.ts","../src/schema/Node.ts","../src/schema/declarations/Declaration.ts","../src/Schema.ts","../src/renderers/Output.ts","../src/schema/index.ts","../node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/compatibility/index.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.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/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.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/sea.d.ts","../node_modules/@types/node/sqlite.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/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../src/shared/api.ts","../src/shared/utils/displayName.ts","../src/utils/result.ts","../node_modules/uuid/dist/esm/types.d.ts","../node_modules/uuid/dist/esm/max.d.ts","../node_modules/uuid/dist/esm/nil.d.ts","../node_modules/uuid/dist/esm/parse.d.ts","../node_modules/uuid/dist/esm/stringify.d.ts","../node_modules/uuid/dist/esm/v1.d.ts","../node_modules/uuid/dist/esm/v1ToV6.d.ts","../node_modules/uuid/dist/esm/v35.d.ts","../node_modules/uuid/dist/esm/v3.d.ts","../node_modules/uuid/dist/esm/v4.d.ts","../node_modules/uuid/dist/esm/v5.d.ts","../node_modules/uuid/dist/esm/v6.d.ts","../node_modules/uuid/dist/esm/v6ToV1.d.ts","../node_modules/uuid/dist/esm/v7.d.ts","../node_modules/uuid/dist/esm/validate.d.ts","../node_modules/uuid/dist/esm/version.d.ts","../node_modules/uuid/dist/esm/index.d.ts","../src/server/instanceOperations.ts","../src/server/index.ts","../src/utils/instances.ts","../src/ModelContainer.ts","../src/index.ts","../src/client/api.ts","../node_modules/preact-iso/src/prerender.d.ts","../node_modules/preact-iso/src/router.d.ts","../node_modules/preact-iso/src/lazy.d.ts","../node_modules/preact-iso/src/hydrate.d.ts","../node_modules/preact-iso/src/index.d.ts","../node_modules/preact/hooks/src/index.d.ts","../src/shared/utils/string.ts","../src/shared/validation/identifier.ts","../src/client/components/Layout.tsx","../src/client/hooks/useInstanceNamesByEntity.ts","../src/client/hooks/useSecondaryDeclarations.ts","../src/client/utils/typeSkeleton.ts","../src/client/components/typeInputs/utils/ValidationErrors.tsx","../src/client/components/typeInputs/ArrayTypeInput.tsx","../src/client/components/typeInputs/BooleanTypeInput.tsx","../src/client/components/typeInputs/DateTypeInput.tsx","../src/client/components/typeInputs/FloatTypeInput.tsx","../src/client/components/typeInputs/GenericTypeArgumentIdentifierTypeInput.tsx","../node_modules/preact/compat/src/suspense.d.ts","../node_modules/preact/compat/src/suspense-list.d.ts","../node_modules/preact/compat/src/index.d.ts","../src/client/components/Select.tsx","../src/client/components/typeInputs/utils/MismatchingTypeError.tsx","../src/client/components/typeInputs/utils/EnumDeclField.tsx","../src/client/components/typeInputs/IncludeIdentifierTypeInput.tsx","../src/client/components/typeInputs/IntegerTypeInput.tsx","../src/shared/utils/object.ts","../src/client/components/typeInputs/NestedEntityMapTypeInput.tsx","../src/client/components/typeInputs/ObjectTypeInput.tsx","../src/client/components/typeInputs/ReferenceIdentifierTypeInput.tsx","../src/client/components/typeInputs/utils/Markdown.tsx","../src/client/components/typeInputs/StringTypeInput.tsx","../src/client/components/typeInputs/TypeInput.tsx","../src/client/hooks/useEntityFromRoute.ts","../src/client/routes/NotFound.tsx","../src/client/routes/CreateInstance.tsx","../src/client/routes/Entity.tsx","../src/client/routes/Home.tsx","../src/client/routes/Instance.tsx","../src/client/index.tsx","../src/renderers/jsonschema/render.ts","../src/renderers/jsonschema/index.ts","../src/renderers/ts/render.ts","../src/renderers/ts/index.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts"],"fileIdsList":[[128,170,185,220,228],[128,170,185,220],[128,170,182,185,220,222,223,224],[128,170,225,227,229],[128,170],[128,167,170],[128,169,170],[170],[128,170,175,205],[128,170,171,176,182,183,190,202,213],[128,170,171,172,182,190],[123,124,125,128,170],[128,170,173,214],[128,170,174,175,183,191],[128,170,175,202,210],[128,170,176,178,182,190],[128,169,170,177],[128,170,178,179],[128,170,182],[128,170,180,182],[128,169,170,182],[128,170,182,183,184,202,213],[128,170,182,183,184,197,202,205],[128,165,170,218],[128,165,170,178,182,185,190,202,213],[128,170,182,183,185,186,190,202,210,213],[128,170,185,187,202,210,213],[126,127,128,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219],[128,170,182,188],[128,170,189,213],[128,170,178,182,190,202],[128,170,191],[128,170,192],[128,169,170,193],[128,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219],[128,170,195],[128,170,196],[128,170,182,197,198],[128,170,197,199,214,216],[128,170,182,202,203,205],[128,170,204,205],[128,170,202,203],[128,170,205],[128,170,206],[128,167,170,202],[128,170,182,208,209],[128,170,208,209],[128,170,175,190,202,210],[128,170,211],[128,170,190,212],[128,170,185,196,213],[128,170,175,214],[128,170,202,215],[128,170,189,216],[128,170,217],[128,170,175,182,184,193,202,213,216,218],[128,170,202,219],[128,170,183,202,220,221],[128,170,185,220,222,226],[81,128,170,258],[128,170,257,258,259,260],[80,81,128,170,258,262,275,276],[80,81,128,170,258],[80,128,170],[128,137,141,170,213],[128,137,170,202,213],[128,132,170],[128,134,137,170,210,213],[128,170,190,210],[128,170,220],[128,132,170,220],[128,134,137,170,190,213],[128,129,130,133,136,170,182,202,213],[128,137,144,170],[128,129,135,170],[128,137,158,159,170],[128,133,137,170,205,213,220],[128,158,170,220],[128,131,132,170,220],[128,137,170],[128,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,170],[128,137,152,170],[128,137,144,145,170],[128,135,137,145,146,170],[128,136,170],[128,129,132,137,170],[128,137,141,145,146,170],[128,141,170],[128,135,137,140,170,213],[128,129,134,137,144,170],[128,170,202],[128,132,137,158,170,218,220],[128,170,234,235,236,237,238,239,240,242,243,244,245,246,247,248,249],[128,170,234],[128,170,234,241],[82,84,88,91,120,121,122,128,170,184,192,252,253],[82,104,114,115,117,119,128,170],[82,114,128,170,231],[81,82,128,170,258],[81,82,128,170,258,277],[81,82,89,93,128,170,258,266,267,268,269,289],[81,82,96,128,170,258],[81,82,97,98,128,170,258,269],[81,82,99,100,128,170,258,262,269],[81,82,107,128,170,258],[81,82,83,122,128,170,258,266,267,280,289],[81,82,99,101,128,170,258,262,269],[81,82,115,128,170,258,262,266,267,268,278,283,289],[81,82,94,95,128,170,258,263,266,267,268,269,283,289],[81,82,116,128,170,258,266,269,278],[81,82,103,104,128,170,258,269,287],[81,82,83,117,128,170,258,266,267,270,271,272,273,274,279,281,282,284,285,286,288],[81,82,108,110,128,170,258,263,266,267,268,278,279,289],[82,114,128,170,256,261,262],[82,128,170,231,256,262],[82,110,111,119,128,170,256,262],[81,82,128,170,258,261,291,292,293,294,295],[81,82,128,170,232,256,258,261,262,263,264,265,266,267,268,269,289,290,291],[81,82,84,114,128,170,232,256,258,261,262,265,291],[81,82,122,128,170,256,258,262,263,265],[81,82,84,87,128,170,232,256,258,261,262,265,266,267,289,290,291],[81,82,128,170,258,265],[82,83,117,128,170,267],[82,128,170],[82,120,128,170],[82,120,121,122,128,170,184,192,297],[82,83,93,95,96,98,99,102,104,106,107,108,110,111,112,114,115,116,117,118,119,128,170],[82,120,121,128,170,184,192,299],[82,83,90,93,95,96,98,102,104,106,107,108,110,111,112,114,115,116,117,118,119,128,170,191,263],[82,83,84,85,117,119,128,170],[82,83,86,93,95,106,110,111,112,114,115,116,117,118,128,170],[82,86,95,104,109,111,113,117,118,119,128,170],[82,86,106,108,109,117,118,119,128,170],[82,86,106,109,117,118,119,128,170],[82,93,95,96,98,100,101,102,104,105,106,107,110,111,112,114,115,116,117,118,119,128,170],[82,117,118,128,170],[82,83,86,93,95,96,98,100,101,104,105,107,112,115,116,118,119,128,170],[82,86,88,89,91,92,117,118,119,128,170],[82,86,88,91,92,94,117,118,119,128,170],[82,86,117,118,128,170],[82,86,97,117,118,128,170],[82,86,99,117,118,128,170],[82,86,92,99,117,118,128,170],[82,100,101,128,170],[82,96,98,102,104,128,170],[82,86,103,117,118,128,170],[82,86,106,117,118,128,170],[82,86,106,110,111,117,118,119,128,170],[82,86,88,91,95,109,114,117,118,119,128,170],[82,86,114,117,118,119,128,170],[82,84,110,111,114,119,128,170,192,230,231,232,233,251,254],[82,84,91,114,118,128,170,184,192,233,250,254],[82,84,119,128,170],[82,122,128,170],[82,87,128,170],[82,88,128,170],[82,87,88,128,170],[82,90,128,170],[82,84,114,128,170,184,192,254],[82,83,128,170],[82,128,170,191]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7001c133698dabb4f646201d46fef931c767b966b578578da7bae72921f69504","impliedFormat":1},{"version":"faa00300c6be9189c1c04f5d0cfceaed0aa6eac5b4f70fcd877ceb169b8e9865","impliedFormat":1},{"version":"000776b76210c3b5afe490fbc24891a6b60a2b4fa64b0b36e214bdc05395a0c4","impliedFormat":1},{"version":"9d91c3cda0d0c27b7158ae82b970254964ed238ce0927f8d8bf1e8dbbe35b2ab","signature":"d9d1d403bfb4af1b67253e8c31bb84fd3b595b85a4ae554cf6884fd14c85629f","impliedFormat":99},{"version":"23b7e0647f313af89363b4206c49072874ba6da5ff93cf5e96b3fafee06f285b","signature":"9badf69c0adfe3a003e7753f226a8095d41a414c3ad7e7b32b166ff5203d6931","impliedFormat":99},{"version":"6849d7e21355a55e737952f4f7c319d72151ca3efeb096c1529f66f31a9cdff6","signature":"5df308c2a38b7e7d128b233736b36c81ac7d32ae574e01797cdf811742414af9","impliedFormat":99},{"version":"22b7b808ee63932aaee8c06bba68bda5c96b9c4088661b7ac496b2ab76690810","signature":"9c8d63202e3bcbae2d2e1b5d9afb9073d14a88b8ae3992af763a488fcfd4bc35","impliedFormat":99},{"version":"73f395c032c6fa8f168766866eb998f83a1c0f6f6892fec2a662755c183954d4","signature":"cee60b56545409f5495b470512f31b15e4e07b7b43eafefb89fa1060d3e6f147","impliedFormat":99},{"version":"b12fc64843823572006834dd913b338472864d45ed00383713872283298fdb3d","signature":"4420b5e07781e988c8f6a8374d74c11570101bdbadb188b54592b471661dba43","impliedFormat":99},{"version":"6d55bcc2b57e0db2f1628e7fdfab0c50f8a020fe19f342b58269f9821601d2de","signature":"1c1650d779604f48ba36aa90a0a65c1d8f20808209750f9034025631e12759a5","impliedFormat":99},{"version":"a6c7748e0a5984ac9d84642960023a1d374fa2ce4f6d481f134c5551c2932335","signature":"8d85889bd4043b714969515d8cb67cd65e851817b01e3d78966099175d8a6423","impliedFormat":99},{"version":"5f58f37c2b43508b2bda72b1a7b3217c93d73131f27f30efb56b7f3d05b924fa","signature":"285b7aa77ad049680f6cbb8901d31ea0985758f2037a8d29827caea5d7849a7c","impliedFormat":99},{"version":"cb3d6cbf54208f4a766e71449e1c8ac7a3c4c3afaaf2330d6f36123fd4d8a961","signature":"20fd4c22d4218f3a7860d4277b487ffd3fed2a7b9b1f1f7050561f4873d565c9","impliedFormat":99},{"version":"d27293b338ae2e06dd7592fbd838788ad82c9f12180e2815a1fedf08bce08da7","signature":"504213adf36a77ac469b659ac071e2793b133786c55ddcaee7faa54f1a320f9e","impliedFormat":99},{"version":"7e3c91c7ec0c7805e4cca815765d8d82d6603aca5901478706c771aaf5a8042b","signature":"c535f0b5433b936e35dcdab6358b5f27e1321f1c095cb504225314e93eb68119","impliedFormat":99},{"version":"4131aa5bd194ff2df031c685b22f3e2f578848314c194e30c9214e00d97f9e72","signature":"333bda3b1ac0ab4e560a51774ed60fad57a010c66bffe9cf119518b1392cc4c3","impliedFormat":99},{"version":"0683b0f31e490e976de4035da21fc5ac271c6d7eb5473cfe52baecba87e930f1","signature":"3d7f00cff06f78896dc24da9d62b91de38a8475203677b50f56c279320f683bc","impliedFormat":99},{"version":"4588f7c1208e225f42a61d93ab5921a75978e8a3a2920f6f31d91e9d74da28c8","signature":"7a64f0005782063c6c670fa0e265ac8596483f23bf5899dd5b7493f30ef32d94","impliedFormat":99},{"version":"56c0d511a5799c8eba989929e7ee9e0af18114462ad0cfdac13a1dc67df8766e","signature":"540fc6abc268574b14b0333a0942d4b28cd9f13dda388b6c02f55cf1bed23aef","impliedFormat":99},{"version":"67f923b4ba030f9762eddab729bee2d560ad46e4d6be6ac40c7b7687d3410f59","signature":"e44ecfc01eb21ff4621cfd618168c9f57dba2a1ae2158e5bdea6fe618f6f1652","impliedFormat":99},{"version":"3b1601119a412fb386c3ca2acb8263de8795d250c7544d2dc4134f57ef6c2a51","signature":"500bd28893860d2eed859c814e003dda0eda064f61855acd99d2443018c798fb","impliedFormat":99},{"version":"3a5b3a53edc7f55fb2ec5249c32bbace8199bf327f862ef28e6ea14c1c259485","signature":"4c08ace3c43552237358084c139decef03b66e9e579168668bd28c0a94a3732d","impliedFormat":99},{"version":"39407bc7c4302fceec20a30aa4690a0b27e122bd5f7140b867de936d6095a2c2","signature":"0282c32b08575026b4d36c805a9fd60433ce7f5a858e80aa1374fa08b9c1fb0c","impliedFormat":99},{"version":"001d3e365257e2e5c4be28de5063c7f809cfc4b40da7c522f69d4d4bd4fce05f","signature":"a4cd144471061f2b6ca6e0a5ffd560768aa5b556ad5ba1faa43fab62d41226f3","impliedFormat":99},{"version":"26ee1fbc9aaa4f076e4aa77c5bfa46c4d42be27536ea9b2700fbbf95a4a08730","signature":"445a25854de2a1c7e2119ac1567e8cf8d7f13b5669bdd647c081b62e57023c08","impliedFormat":99},{"version":"9ae810d7e0dea48693d07d2758b820e0f40066a97083d47ff8692bbe29d5b26b","signature":"895f67f37e6bada6cfbdffe13b76c10a49876d52a15b463b2350e8ccf2aa36a9","impliedFormat":99},{"version":"e639d43c992d0e01f8cce834275ba37663ec8c13e6385fbfd8044faef4d7eed5","signature":"574b381a9431deb1a7460288dfb0aeda55b1b660df4a5e03683c79a27b18d60a","impliedFormat":99},{"version":"154c5acaf7679280e3cfee053351e8af2d9abb28721091067f658a834a410597","signature":"b994aa2e15150b431d0f085c09791dcf3c99b9e6b21e358967fe6248848a311c","impliedFormat":99},{"version":"3332245d1e5fd9d337402bc4d42bd3b99edc490603bd3c53891b2a431c8328ef","signature":"754eb668d9ba82fd27eafb7cb4f45b58af07bbc0878cb73471392a39b16c6526","impliedFormat":99},{"version":"ace097e580c5dd6815a8006677f72d4e71e976572e17fbfd5c9ca97c25bd40f1","signature":"dad33c9a930dfd3997a4442f99b03f83a39486e8769ccd2c5ddfe445a0fd1f2b","impliedFormat":99},{"version":"12f6634c76b2bb893d11e4319fd8541ad9e701cf10c7b82ce1c9ed17632713f3","signature":"31fda2a17093d836f01f4a99fcfe9988b251ffc40f49f989a40d762cdf33b1f3","impliedFormat":99},{"version":"ad43f041661157b24a148d3de186bacd58dd454c9a34153a1b21a576cfbc716c","signature":"f387f493336c0dbfebaa4724e8a67fd511d7c3f10dc1778f37b959c1c97984a6","impliedFormat":99},{"version":"4967d26a4dc3b963f3ec2160723eb7d58082fe03c3bced26456e47f153e3828e","signature":"13d1f56ce9600f621c50547d1d2c076f798c9de13a1a951c297644af9dff68c2","impliedFormat":99},{"version":"a0b1e06d7fc35f4959642fb2811096cfcbc3a4bbb8a329f39111ae8438dd4a8a","signature":"06a912ac3519de476dce243d8c96647618e174b1a011cb1e6efa6326963a755c","impliedFormat":99},{"version":"36c92616c9130ccd911fd3542ac8ffdfb489e8e59448e878adee4223be2a9b3f","signature":"3f4250e7ea9a8961966580fcc69697ba36791476ea61f38fed43e375c116d4ba","impliedFormat":99},{"version":"03fe2b58198edb6b4d6e8a59dfe9085499b2cf47249bad8a50c09e71b3db8446","signature":"aa8e3acac6a8666633376b7e36fafd1910f3e9d89d386ba8297c933fd290d5cb","impliedFormat":99},{"version":"33f2d988e6e3a91a605fc07880177266a324007d02bf24aad1a56b36eef6d329","signature":"185bcc17d9df0191fe2e2e9da50cbb8bc6f5519caad5ae42d38a4cea087cdf81","impliedFormat":99},{"version":"234511256ac3ba9ad7d859049feef243fed18e5c1777a84990f656a855947170","signature":"2dfbcdbb9ce0e6c230ae0d5dc81b261bb1cc228dd0d060e6b1c00a1995e727e5","impliedFormat":99},{"version":"2be9f76c248368b965eeeaf51557aa8dcf04627715c3f9239a908bccb608eaae","signature":"7a9431d5ceb4063a3d73a12a0072e202828e9abe14ce5dc9455a16282ab05cf9","impliedFormat":99},{"version":"43d59addc0553fe7ada2f9700fccc1ff29d8ec5e0d1e7ec6262ee186ea682dfe","signature":"90380fdc1465e7f3570db448ecb436603c3439b9cc3c0c78a0a3e739fca43f0e","impliedFormat":99},{"version":"6b8cba6509ac91ceaeadf3caa48f4f10a1bdce4f7549f38ed14344418040e5c7","signature":"4ecce435abe39526bb458cc6b515c8ffe25eb32c68945cb197fe975aaebd373a","impliedFormat":99},{"version":"8c18c9e638157dc117c4f2cc64063bc7f0c531c5039aab9e4c4635e282e53305","signature":"2cfe6d120ecf8f730e7a8842c4fad45c26e105b5869eedff1675838937ee4378","impliedFormat":99},{"version":"5be4d42c795f8fd6d452c5bcfb938ffdde280df8c280b056aba2c55b8d8254bb","signature":"0fa8a62d6b05b4350fdbbe0ee455f215ee03541ba5c31249c94ddf8ae82a0064","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fa51737611c21ba3a5ac02c4e1535741d58bec67c9bdf94b1837a31c97a2263","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0539c58717cbc8b73acb29f9e992ab5ff20adba5f9b57130691c7f9b186a4d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"9057f224b79846e3a95baf6dad2c8103278de2b0c5eebda23fc8188171ad2398","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fb11e675f5cc648bc6c344e1311e36b8dfffea8bffe575bedc0e41af77eca99","impliedFormat":1},{"version":"1e289f30a48126935a5d408a91129a13a59c9b0f8c007a816f9f16ef821e144e","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"f579f267a2f4c2278cca2ec84613e95059368b503ce96586972d304e5e40125b","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f6f1d54779d0b9ed152b0516b0958cd34889764c1190434bbf18e7a8bb884cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"f7b1df115dbd1b8522cba4f404a9f4fdcd5169e2137129187ffeee9d287e4fd1","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"993985beef40c7d113f6dd8f0ba26eed63028b691fbfeb6a5b63f26408dd2c6d","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb094bb347d7df3380299eb69836c2c8758626ecf45917577707c03cf816b6f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"936eb43a381712a8ec1249f2afc819f6fc7ca68f10dfec71762b428dfdc53bf1","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"86ea91bfa7fef1eeb958056f30f1db4e0680bc9b5132e5e9d6e9cfd773c0c4fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","impliedFormat":1},{"version":"f1c5de969297334c1416cc3111d79715495784a85afd0067f6b5dc964b1e025d","signature":"c702def93d658ca5415bee416f94af58269ec0f802329e77893040449d531eda","impliedFormat":99},{"version":"72b514bfa14e7663f8a0dfc90f2e92e1007d47769d16e2d032ef54a146a0f91f","signature":"6717b1f0e4c2e99e0cee9026bafdfe8a97b2e152bf3ad9a9dc68ff1ebab30d39","impliedFormat":99},{"version":"79e49c1f56e4d77b9777ee31243018203aa99d308ae8f40358d1ec05b8ddab2c","signature":"14312b91775c4c6db498f56f4695023a6f097262bc738478abcd0d7ab024be5d","impliedFormat":99},{"version":"cff399d99c68e4fafdd5835d443a980622267a39ac6f3f59b9e3d60d60c4f133","impliedFormat":99},{"version":"6ada175c0c585e89569e8feb8ff6fc9fc443d7f9ca6340b456e0f94cbef559bf","impliedFormat":99},{"version":"e56e4d95fad615c97eb0ae39c329a4cda9c0af178273a9173676cc9b14b58520","impliedFormat":99},{"version":"73e8dfd5e7d2abc18bdb5c5873e64dbdd1082408dd1921cad6ff7130d8339334","impliedFormat":99},{"version":"fc820b2f0c21501f51f79b58a21d3fa7ae5659fc1812784dbfbb72af147659ee","impliedFormat":99},{"version":"4f041ef66167b5f9c73101e5fd8468774b09429932067926f9b2960cc3e4f99d","impliedFormat":99},{"version":"31501b8fc4279e78f6a05ca35e365e73c0b0c57d06dbe8faecb10c7254ce7714","impliedFormat":99},{"version":"7bc76e7d4bbe3764abaf054aed3a622c5cdbac694e474050d71ce9d4ab93ea4b","impliedFormat":99},{"version":"ff4e9db3eb1e95d7ba4b5765e4dc7f512b90fb3b588adfd5ca9b0d9d7a56a1ae","impliedFormat":99},{"version":"f205fd03cd15ea054f7006b7ef8378ef29c315149da0726f4928d291e7dce7b9","impliedFormat":99},{"version":"d683908557d53abeb1b94747e764b3bd6b6226273514b96a942340e9ce4b7be7","impliedFormat":99},{"version":"7c6d5704e2f236fddaf8dbe9131d998a4f5132609ef795b78c3b63f46317f88a","impliedFormat":99},{"version":"d05bd4d28c12545827349b0ac3a79c50658d68147dad38d13e97e22353544496","impliedFormat":99},{"version":"b6436d90a5487d9b3c3916b939f68e43f7eaca4b0bb305d897d5124180a122b9","impliedFormat":99},{"version":"04ace6bedd6f59c30ea6df1f0f8d432c728c8bc5c5fd0c5c1c80242d3ab51977","impliedFormat":99},{"version":"57a8a7772769c35ba7b4b1ba125f0812deec5c7102a0d04d9e15b1d22880c9e8","impliedFormat":99},{"version":"badcc9d59770b91987e962f8e3ddfa1e06671b0e4c5e2738bbd002255cad3f38","impliedFormat":99},{"version":"f3748ea1d1f682205ba85313341c419367607df80dca5815595c7742d017e6d4","signature":"aa610fa53335751d4c61b7ff4810019f8dc2e7bef5b94882530679ef5c1b770f","impliedFormat":99},{"version":"1aae2a2e31a988a61fa7ac8aebee845872fb355959cc437c791d6325e7cf6b26","signature":"e853ccb08b06c9898a739d6bab07e8440e8a2e28c8e54c399554e840700d7d71","impliedFormat":99},{"version":"23e38bbe0a026cb7c6db1696447116b17bf989a2507cf95a359fb1ea84d4849b","signature":"43960736821d0cf2621ca21daee2fde2cd262d75a3f5142f1ae6031ae2d8186e","impliedFormat":99},{"version":"022256727465c338a3bf0249dd90366b9fd8a86a3992d29369523fe86402b1d3","signature":"2e90d9324d752c8aa8d6d6605a8fefff5c4c30f17b055c93645e4c49228078ea","impliedFormat":99},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"e35b0485d7a30b49dad6cb6e644d9079a79423302cf2eadfb6541ca4ae2daecd","signature":"bc1f49049242c1c20df18e36c76a8ccb54337a3d524803e1efcc1e7272df559b","impliedFormat":99},{"version":"03adf9196e7a24109f4892535b2e978c236e9ce17b7997ef64aff0106b603f86","impliedFormat":99},{"version":"0057f771fb2d60307e4be4ae946c693a485bc8d8603f8029f301f91bde999bf0","impliedFormat":99},{"version":"14f04b15cd0b118ec53ada152c47635bb251c74ec2e4669d7a8158fe17c78cbb","impliedFormat":99},{"version":"799230b849f5ad97fc91315a0712526ac51f8357d6be7b61fe93c8256a12a54d","impliedFormat":99},{"version":"6d2a92cff7bbe8cba741b366cdeeb45fa8dd4d03b5d8db23fcbf9d57119fc5ca","impliedFormat":99},{"version":"7687e1c892178a4674e162427319e47fb881ac1ae5fa4c50dcc3423870dba636","impliedFormat":1},{"version":"45d9ef7f61e0aed9c1b3af6c337dc9def3f578c296bf0bf4a7927c18d06d59f1","signature":"d56b6ad4a461de4bdc6b90efdee0457fd03137917b01bb1e9730b7046de1e04c","impliedFormat":99},{"version":"1a46af10bb94faf80690d8005e83553ccb0c35147551dc625a13c2a2fd6dacc6","signature":"90e7cea022fe535af9c7b69daf58eb04c629b6da939f87c1152ff7e802325cfc","impliedFormat":99},{"version":"58a4a9987bfb9ee532149962d8bb60c2a53d2ee3f15324dfaa8da2a238d9dbda","signature":"542db7993e0eebe59203c3f228aa26d92a1b55bd127c05fa0ba2e045ffd56aec","impliedFormat":99},{"version":"22a264f5fe6b57220d349c9b4d84fa3059447de3e50be59e07014508a6aee1ac","signature":"ab443c0fb2394e01c11d2371fe6fe3daa96d22de47a324e7c60774586d470d15","impliedFormat":99},{"version":"0402c6df9d1630e3455b46964466bd96647b63ba1f3c3d48eaf3080512d1876d","signature":"d41e19f927706404832b4d3912b9786aec7a251b15795724a88fb8f9a7ab31f0","impliedFormat":99},{"version":"b62d4b847abb959bc38143b3955d25adc888c8e412ca4a3824116cace8038599","signature":"fcd5baecd86d2f3981bb1f0cf87c21ebac91bd2591d4fb6292b10ac07ebb9a36","impliedFormat":99},{"version":"cdc5e6e871a3a09064ae10ac271f7e5437cc48366b42bdf4558b667b8ff6f6df","signature":"f119d03055172a114a42e7e655c86e8f69daf89ac4040189afb8d78b4ac6c47b","impliedFormat":99},{"version":"81df60156e58740c8dc803fd94e2ad97ca36055225b06b864aabb6589b7e6cce","signature":"abc4d7e2f35c927f2a7703c74a7314317b32f01180f557d7da1ad8bfffa42d5a","impliedFormat":99},{"version":"12c15243c19f244a89ed4b8fe74f7562013ae6867eae571b7bd9c6ee7d6fe9e0","signature":"38e88523753bf4ee31162d1cd49c90717538e111d65c310571459348dce83a31","impliedFormat":99},{"version":"f70dde460592d7179dbde47147340668e395f5a6194fc8c6eef5f15472c3f090","signature":"0e0be178b1bfaa1cae8c40c4da43c161317d378b07483cf9defecc8fd78329e3","impliedFormat":99},{"version":"337af0f12d57d93b77aed72e938463c470c01e65973dc5ca61e49d2b638c8472","signature":"29934f5f5edf2d17a53c9e2fa0189811fc065f49d552d20c1b9cc1a70b1a2eff","impliedFormat":99},{"version":"874b39dff42b86941a566edcfaa36164c85fbf08658b4c39768a6b0e33d76429","signature":"dcda1230dd760a0a1e94fb218b54f8e89843d72982ad5ce83b03e5f7843f3f0b","impliedFormat":99},{"version":"f75efd5983e3da39521471473ba226e3b3240b402f9c8fbc0221a965839d19a6","impliedFormat":1},{"version":"8d44d1057bca7ac91f5ba3f10fc9b4263dc8bdfa29856836f6635df62fc1e77f","impliedFormat":1},{"version":"3839ac269f4160d21d852a4107f3a2f7eaf8dff08c02fb7ef0d19db50c03234d","impliedFormat":1},{"version":"7de9946cceba4f17d01495b6337099ffce7d47035022167743007fac53ee2c70","signature":"08d2847e9806d2a11e92500970f38cc4fa3d2f51169e4cda49e142c620696cec","impliedFormat":99},{"version":"f71175b53466c89712d794df49cbdd10ffc0574e6ba1c8ff114bcbff01d8a8f3","signature":"5f1701cc1efdc4d2773bcdf1ab4380e89b25bd8342b3a0d8a35f7931c08a5bc6","impliedFormat":99},{"version":"f3dbdb34775f4a092123d4ee679377982d84ab3a37fe50a773ac7db1c8651bc6","signature":"e7896cbdd7d759240c5daa7684b84ed0676ae33793c2f8c603cc843da2c61e6f","impliedFormat":99},{"version":"41ade00e5dd1928efd28fd58f90b30160579a51891710923ca0f6cc92e393e3a","signature":"2219f318d578196ad3a6848fdfc371b0aeba33f620e89c9c6b48510b1b334197","impliedFormat":99},{"version":"eec4542e9c368554880c616202f0233620173a6737dd178db6fca5835b138eb6","signature":"ac3dd215b935303837aed88c62c68f70e3aaf6426f57c1673534ca61e5b92231","impliedFormat":99},{"version":"36d0b95a38f843b7158640a33bf2ffc84e9b67b2056f9ffecffda402d7e7a0b2","signature":"e04e75be5800bdb03efc56db5d1f0e8d7420f08c72ccee79157e1cd4a8ceae08","impliedFormat":99},{"version":"ba3f27e300e1313316b56372aa4fd3bf0d0b16baa3d689ad7c463b56e855eba9","signature":"2180619f3b46ef9c8892a7a60488ad582b6a1df812191ad997bdad70eb76bb7f","impliedFormat":99},{"version":"4e54fc1ee654facc7b14a2d625de44404b2160552cfd07726f571c7f572c40a8","signature":"8a6e4cabfdb52b7e4cc1a9ade05b0e2b45d0315d181db1f0721381dfa5dcbd7b","impliedFormat":99},{"version":"b6c4473a604c18819f62830bfa1a165d6a99b4de1d512fb8354f0dd09acb9539","signature":"6fee2a84be958eee030e90eb8098bb4b024f87fdb5c58b4bad3dddeae451958b","impliedFormat":99},{"version":"e5171ac68a26e3085c32e7b90770deba842147a2bfbae2d466d47341217395a1","signature":"2a410fe94aa78b1bca0a029dd78f68fac8ce0d9dbdc6514477e2b2dec31cca46","impliedFormat":99},{"version":"ddb6947b4a4c848589af4c32e1e7ac4870f5115153a2929d07fd2f711f4a2b69","signature":"d068b0c61dc959ba1987a2525b1205f56589b2758d4f5a589cfa26384a092dae","impliedFormat":99},{"version":"3c7bdf3b8bc19c3ba690761e0e33ddbdbc637e4629f220cebcc0ffeec5b2cbd4","signature":"24f829224fe21d61714692ad8f90fbd44df0e50fdca438e3f006066b423bbbab","impliedFormat":99},{"version":"ef55363d3bcbaceca90c61f611c13a1f44173060fe91e4ec597328ae4d638b0f","signature":"b883cad4bda9a54d6b021f00edf9b757f6c9a633eda98e190fc0d147ab284ac4","impliedFormat":99},{"version":"471f84fd6041f64479e82c479fd6069ab746d3de4ce5380409130da82eb8e75c","signature":"00465d60ed1c092b5b8f24a440256e52e16d360599aab0bbf4ecf13b3d332e5d","impliedFormat":99},{"version":"abf64649f054252134c2fde92baefa107bb924ee1848d7575006aa5cad914568","signature":"24520bf9599564929be8561cb0d970cc0d9aed3570c1d5e86030fe3417c855ba","impliedFormat":99},{"version":"a57de58b40666ac4534df8e4be3d6d5217fdc10724b80c2c486d07015f4e85f2","signature":"c3c11c2b5431a06b051629abda888b114eec99870bb78d835c37d2bd51cb0e83","impliedFormat":99},{"version":"bedc4d3b21f6a678a87bbd2295c80c5f331b0a4d3898483585c4d2c637077e13","signature":"5e41b9c78f0702baea6ca4ec124d8dc9d6d2f626deb370ecb38f0b1a494a9ea8","impliedFormat":99},{"version":"8e5007e05ccd137d7647e1501453825cdb77507d5faa333168140b07416c69a7","signature":"8b4144fdedde4930187b02bf2779e76bf732db580bd7ab032928a63329910666","impliedFormat":99},{"version":"cf3f119823082ddaf69f607bb511f6decce54f0627bb535388cc0d2855f112bf","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"5822420001b40646f678c8a11979d7c8d78e74a32f163bc11e90ee20d4f11fd3","signature":"465a93bed6748d7afc49f5e48c7b74eb12daf334894c59b46c4f5c2c47c76a70","impliedFormat":99},{"version":"7c44d4818dbf38624f65cddb7df1864ebdf2a06b80d851d076db6a99247fa452","signature":"fa13a7b93ebc35e78aa6ef4509ab3a98aa125da077793cf6a33591af1d67b757","impliedFormat":99},{"version":"37e50362dd21bd7625a5d06edfcfa18c542ae0cb67177166c266f1b19058a34d","signature":"6bf7af128ec984fb3a8df127507cddff2361bd455837e21b5ffd89e381128e51","impliedFormat":99},{"version":"2b926cced7ba015c3c9efda47b854ca38388fa5d28cc9a8d43f36a3d02d83d82","signature":"faa2168a0967af6718f2cf78806761711116dbbb79eaf31a2bcdaeb123384e44","impliedFormat":99},{"version":"fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","impliedFormat":1},{"version":"22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","impliedFormat":1}],"root":[[83,122],[231,233],[251,256],[263,274],[278,300]],"options":{"composite":true,"declaration":true,"erasableSyntaxOnly":true,"jsx":4,"jsxImportSource":"preact","module":199,"noErrorTruncation":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUncheckedSideEffectImports":false,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":99,"useUnknownInCatchVariables":true},"referencedMap":[[229,1],[228,2],[225,3],[230,4],[226,5],[221,5],[301,5],[167,6],[168,6],[169,7],[128,8],[170,9],[171,10],[172,11],[123,5],[126,12],[124,5],[125,5],[173,13],[174,14],[175,15],[176,16],[177,17],[178,18],[179,18],[181,19],[180,20],[182,21],[183,22],[184,23],[166,24],[127,5],[185,25],[186,26],[187,27],[220,28],[188,29],[189,30],[190,31],[191,32],[192,33],[193,34],[194,35],[195,36],[196,37],[197,38],[198,38],[199,39],[200,5],[201,5],[202,40],[204,41],[203,42],[205,43],[206,44],[207,45],[208,46],[209,47],[210,48],[211,49],[212,50],[213,51],[214,52],[215,53],[216,54],[217,55],[218,56],[219,57],[302,5],[223,5],[224,5],[222,58],[227,59],[260,60],[261,61],[259,60],[257,60],[258,60],[277,62],[276,60],[275,60],[262,60],[82,63],[81,64],[80,60],[78,5],[79,5],[13,5],[15,5],[14,5],[2,5],[16,5],[17,5],[18,5],[19,5],[20,5],[21,5],[22,5],[23,5],[3,5],[24,5],[25,5],[4,5],[26,5],[30,5],[27,5],[28,5],[29,5],[31,5],[32,5],[33,5],[5,5],[34,5],[35,5],[36,5],[37,5],[6,5],[41,5],[38,5],[39,5],[40,5],[42,5],[7,5],[43,5],[48,5],[49,5],[44,5],[45,5],[46,5],[47,5],[8,5],[53,5],[50,5],[51,5],[52,5],[54,5],[9,5],[55,5],[56,5],[57,5],[59,5],[58,5],[60,5],[61,5],[10,5],[62,5],[63,5],[64,5],[11,5],[65,5],[66,5],[67,5],[68,5],[69,5],[1,5],[70,5],[71,5],[12,5],[75,5],[73,5],[77,5],[72,5],[76,5],[74,5],[144,65],[154,66],[143,65],[164,67],[135,68],[134,69],[163,70],[157,71],[162,72],[137,73],[151,74],[136,75],[160,76],[132,77],[131,70],[161,78],[133,79],[138,80],[139,5],[142,80],[129,5],[165,81],[155,82],[146,83],[147,84],[149,85],[145,86],[148,87],[158,70],[140,88],[141,89],[150,90],[130,91],[153,82],[152,80],[156,5],[159,92],[250,93],[235,5],[236,5],[237,5],[238,5],[234,5],[239,94],[240,5],[242,95],[241,94],[243,94],[244,95],[245,94],[246,5],[247,94],[248,5],[249,5],[254,96],[120,97],[256,98],[265,99],[278,100],[270,101],[271,102],[272,103],[273,104],[274,105],[281,106],[282,107],[284,108],[285,109],[286,110],[288,111],[289,112],[280,113],[287,99],[279,99],[269,99],[290,114],[266,115],[267,116],[296,117],[292,118],[293,119],[294,120],[295,121],[291,122],[268,123],[255,124],[121,125],[298,126],[297,127],[300,128],[299,129],[118,130],[119,131],[114,132],[110,133],[111,134],[122,135],[106,136],[117,137],[93,138],[95,139],[96,140],[98,141],[100,142],[101,143],[102,144],[105,145],[104,146],[107,147],[112,148],[115,149],[116,150],[92,124],[86,136],[252,151],[251,152],[231,153],[108,124],[87,124],[232,154],[84,124],[283,124],[263,124],[83,124],[88,155],[89,156],[97,156],[264,124],[99,157],[94,156],[103,156],[85,124],[91,158],[253,159],[109,160],[113,124],[90,161],[233,124]],"latestChangedDtsFile":"./renderers/ts/index.d.ts","version":"5.8.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsondb",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Lukas Obermann",
@@ -13,7 +13,6 @@
13
13
  "exports": {
14
14
  ".": "./lib/index.js",
15
15
  "./renderer/jsonschema": "./lib/renderers/jsonschema/index.js",
16
- "./renderer/md": "./lib/renderers/md/index.js",
17
16
  "./renderer/ts": "./lib/renderers/ts/index.js",
18
17
  "./modelcontainer": "./lib/ModelContainer.js",
19
18
  "./schema": "./lib/Schema.js",
@@ -9,6 +9,7 @@
9
9
  "Courier New", monospace;
10
10
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
11
11
  --background: white;
12
+ --markdown-background: #e1e3e7;
12
13
  --color: black;
13
14
  --error-color: #9d1212;
14
15
  --separator-color: #e9e5eb;
@@ -137,7 +138,9 @@ button.destructive:disabled {
137
138
  cursor: not-allowed;
138
139
  }
139
140
 
140
- input, select {
141
+ input,
142
+ textarea,
143
+ select {
141
144
  font-family: var(--font-sans);
142
145
  border: 1px solid var(--color);
143
146
  padding: 0.5rem;
@@ -149,6 +152,7 @@ input, select {
149
152
  }
150
153
 
151
154
  input[aria-invalid="true"],
155
+ textarea[aria-invalid="true"],
152
156
  select[aria-invalid="true"] {
153
157
  border-color: var(--error-color);
154
158
  color: var(--error-color);
@@ -181,6 +185,11 @@ input[type="checkbox"]:checked::before {
181
185
  margin: calc(-0.2rem - 1px) 0 0 calc(-0.275rem - 1px);
182
186
  }
183
187
 
188
+ textarea {
189
+ min-height: 5rem;
190
+ resize: vertical;
191
+ }
192
+
184
193
  .select-wrapper {
185
194
  position: relative;
186
195
  }
@@ -364,6 +373,35 @@ form > .field--container {
364
373
  padding-bottom: 0;
365
374
  }
366
375
 
376
+ .field--string {
377
+ display: flex;
378
+ gap: 1rem;
379
+ align-items: start;
380
+ }
381
+
382
+ .field--string .editor {
383
+ flex: 1 1 0;
384
+ }
385
+
386
+ .field--string .preview {
387
+ padding: 1rem;
388
+ background: var(--markdown-background);
389
+ flex: 1 1 0;
390
+ }
391
+
392
+
393
+ .field--string .preview p {
394
+ margin: 0.5rem 0 0;
395
+ }
396
+
397
+ .field--string .preview > :first-child {
398
+ margin-top: 0;
399
+ }
400
+
401
+ .field--string .preview > :last-child {
402
+ margin-bottom: 0;
403
+ }
404
+
367
405
  .container-item-header {
368
406
  display: flex;
369
407
  align-items: center;