@jvs-milkdown/plugin-clipboard 1.2.16 → 1.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +3 -9
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/src/index.ts +38 -13
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AA0JA,eAAO,MAAM,SAAS,sCA2YpB,CAAA"}
|
package/lib/index.js
CHANGED
|
@@ -39,7 +39,7 @@ function dispatchPasteSlice(view, slice) {
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
function sanitizeTableHTML(html) {
|
|
42
|
-
if (typeof window === "undefined" ||
|
|
42
|
+
if (typeof window === "undefined" || window.DOMParser === void 0) return html;
|
|
43
43
|
if (!html.includes("<table") && !html.includes("<td") && !html.includes("<th")) return html;
|
|
44
44
|
try {
|
|
45
45
|
const doc = new window.DOMParser().parseFromString(html, "text/html");
|
|
@@ -68,10 +68,7 @@ function sanitizeTableHTML(html) {
|
|
|
68
68
|
]);
|
|
69
69
|
const renameToSpan = (el) => {
|
|
70
70
|
const span = doc.createElement("span");
|
|
71
|
-
for (
|
|
72
|
-
const attr = el.attributes[i];
|
|
73
|
-
span.setAttribute(attr.name, attr.value);
|
|
74
|
-
}
|
|
71
|
+
for (const attr of Array.from(el.attributes)) span.setAttribute(attr.name, attr.value);
|
|
75
72
|
while (el.firstChild) span.appendChild(el.firstChild);
|
|
76
73
|
el.replaceWith(span);
|
|
77
74
|
};
|
|
@@ -103,10 +100,7 @@ function sanitizeTableHTML(html) {
|
|
|
103
100
|
}
|
|
104
101
|
}
|
|
105
102
|
});
|
|
106
|
-
for (
|
|
107
|
-
const block = blocks[i];
|
|
108
|
-
if (block.parentNode) renameToSpan(block);
|
|
109
|
-
}
|
|
103
|
+
for (const block of [...blocks].reverse()) if (block.parentNode) renameToSpan(block);
|
|
110
104
|
});
|
|
111
105
|
const hasHtml = /<html/i.test(html);
|
|
112
106
|
const hasHead = /<head/i.test(html);
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../src/__internal__/is-pure-text.ts","../src/__internal__/with-meta.ts","../src/index.ts"],"sourcesContent":["type UnknownRecord = Record<string, unknown>\nexport function isPureText(\n content: UnknownRecord | UnknownRecord[] | undefined | null\n): boolean {\n if (!content) return false\n if (Array.isArray(content)) {\n if (content.length > 1) return false\n return isPureText(content[0])\n }\n\n const child = content.content\n if (child) return isPureText(child as UnknownRecord[])\n\n return content.type === 'text'\n}\n","import type { Meta, MilkdownPlugin } from '@jvs-milkdown/ctx'\n\nexport function withMeta<T extends MilkdownPlugin>(\n plugin: T,\n meta: Partial<Meta> & Pick<Meta, 'displayName'>\n): T {\n Object.assign(plugin, {\n meta: {\n package: '@jvs-milkdown/plugin-clipboard',\n ...meta,\n },\n })\n\n return plugin\n}\n","import type { EditorView } from '@jvs-milkdown/prose/view'\n\nimport {\n editorViewOptionsCtx,\n parserCtx,\n schemaCtx,\n serializerCtx,\n} from '@jvs-milkdown/core'\nimport { getNodeFromSchema, isTextOnlySlice } from '@jvs-milkdown/prose'\nimport {\n DOMParser,\n DOMSerializer,\n Fragment,\n type Node as ProsemirrorNode,\n Slice,\n} from '@jvs-milkdown/prose/model'\nimport { Plugin, PluginKey } from '@jvs-milkdown/prose/state'\nimport { $prose } from '@jvs-milkdown/utils'\n\nimport { isPureText } from './__internal__/is-pure-text'\nimport { withMeta } from './__internal__/with-meta'\n\nfunction dispatchPasteSlice(view: EditorView, slice: Slice): boolean {\n const node = isTextOnlySlice(slice)\n if (node) {\n view.dispatch(view.state.tr.replaceSelectionWith(node, true))\n return true\n }\n\n try {\n view.dispatch(view.state.tr.replaceSelection(slice))\n return true\n } catch {\n return false\n }\n}\n\nfunction sanitizeTableHTML(html: string): string {\n if (typeof window === 'undefined' || typeof window.DOMParser === 'undefined') {\n return html\n }\n if (!html.includes('<table') && !html.includes('<td') && !html.includes('<th')) {\n return html\n }\n\n try {\n const parser = new window.DOMParser()\n const doc = parser.parseFromString(html, 'text/html')\n const cells = doc.querySelectorAll('td, th')\n if (cells.length === 0) {\n return html\n }\n\n const BLOCK_TAGS = new Set([\n 'P', 'DIV', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6', \n 'LI', 'UL', 'OL', 'BLOCKQUOTE', 'PRE', \n 'SECTION', 'ARTICLE', 'ASIDE', 'HEADER', 'FOOTER', 'NAV'\n ])\n\n const renameToSpan = (el: Element) => {\n const span = doc.createElement('span')\n for (let i = 0; i < el.attributes.length; i++) {\n const attr = el.attributes[i]!\n span.setAttribute(attr.name, attr.value)\n }\n while (el.firstChild) {\n span.appendChild(el.firstChild)\n }\n el.replaceWith(span)\n }\n\n cells.forEach((cell) => {\n const blocks: Element[] = []\n const collectBlocks = (node: Node) => {\n if (node.nodeType === 1) { // Node.ELEMENT_NODE\n const el = node as Element\n if (BLOCK_TAGS.has(el.tagName.toUpperCase())) {\n blocks.push(el)\n }\n el.childNodes.forEach(collectBlocks)\n }\n }\n collectBlocks(cell)\n\n blocks.forEach((block) => {\n const prev = block.previousSibling\n if (prev) {\n const isAlreadyBR = prev.nodeType === 1 && (prev as Element).tagName.toUpperCase() === 'BR'\n if (!isAlreadyBR) {\n const br = doc.createElement('br')\n block.parentNode?.insertBefore(br, block)\n }\n }\n\n const next = block.nextSibling\n if (next) {\n const isNextBlock = next.nodeType === 1 && BLOCK_TAGS.has((next as Element).tagName.toUpperCase())\n const isNextBR = next.nodeType === 1 && (next as Element).tagName.toUpperCase() === 'BR'\n if (!isNextBlock && !isNextBR) {\n const br = doc.createElement('br')\n block.parentNode?.insertBefore(br, next)\n }\n }\n })\n\n for (let i = blocks.length - 1; i >= 0; i--) {\n const block = blocks[i]!\n if (block.parentNode) {\n renameToSpan(block)\n }\n }\n })\n\n const hasHtml = /<html/i.test(html)\n const hasHead = /<head/i.test(html)\n const hasBody = /<body/i.test(html)\n\n if (hasHtml || hasHead || hasBody) {\n return doc.documentElement.outerHTML\n } else {\n return doc.body.innerHTML\n }\n } catch (e) {\n console.error('Failed to parse and sanitize pasted table HTML:', e)\n return html\n }\n}\n\n/// The prosemirror plugin for clipboard.\nexport const clipboard = $prose((ctx) => {\n const schema = ctx.get(schemaCtx)\n\n function isLineNumberParagraph(node: ProsemirrorNode): boolean {\n if (node.type.name !== 'paragraph') return false\n const text = node.textContent.trim()\n return /^\\d+[.)\\]:]?\\s*$/.test(text)\n }\n\n function createCodeBlock(\n language: string,\n texts: string[]\n ): ProsemirrorNode | null {\n const content = texts.join('\\n').replace(/\\r\\n?/g, '\\n').replace(/\\n+$/, '')\n if (!content) return null\n return schema.nodes['code_block']!.create(\n { language },\n schema.text(content)\n )\n }\n\n function mergeAdjacentCodeBlocks(originalSlice: Slice): Slice {\n if (!originalSlice || !originalSlice.content) return originalSlice\n\n const newNodes: ProsemirrorNode[] = []\n let currentLanguage = ''\n let currentTexts: string[] = []\n\n const flushCodeBlock = () => {\n const node = createCodeBlock(currentLanguage, currentTexts)\n if (node) newNodes.push(node)\n currentTexts = []\n currentLanguage = ''\n }\n\n originalSlice.content.forEach((child) => {\n if (child.type.name === 'code_block') {\n if (!currentLanguage && child.attrs.language) {\n currentLanguage = child.attrs.language\n }\n currentTexts.push(child.textContent)\n } else if (\n (child.type.name === 'paragraph' && child.textContent.trim() === '') ||\n isLineNumberParagraph(child)\n ) {\n // Empty paragraphs and line-number paragraphs between code blocks are ignored\n if (currentTexts.length > 0) {\n currentTexts.push('')\n } else {\n newNodes.push(child)\n }\n } else {\n if (currentTexts.length > 0) {\n flushCodeBlock()\n }\n newNodes.push(child)\n }\n })\n\n if (currentTexts.length > 0) {\n flushCodeBlock()\n }\n\n return new Slice(\n Fragment.fromArray(newNodes),\n originalSlice.openStart,\n originalSlice.openEnd\n )\n }\n\n function convertInlineImagesToBlocks(slice: Slice): Slice {\n const imageType = schema.nodes['image']\n const imageBlockType = schema.nodes['image-block']\n const paragraphType = schema.nodes['paragraph']\n if (!imageType || !imageBlockType || !paragraphType) return slice\n\n let hasChanges = false\n const newNodes: ProsemirrorNode[] = []\n slice.content.forEach((node) => {\n if (node.type !== paragraphType) {\n newNodes.push(node)\n return\n }\n\n let hasImage = false\n for (let i = 0; i < node.childCount; i++) {\n if (node.child(i).type === imageType) {\n hasImage = true\n break\n }\n }\n\n if (!hasImage) {\n newNodes.push(node)\n return\n }\n\n hasChanges = true\n let currentInlines: ProsemirrorNode[] = []\n for (let i = 0; i < node.childCount; i++) {\n const child = node.child(i)\n if (child.type === imageType) {\n if (currentInlines.length > 0) {\n newNodes.push(paragraphType.create(node.attrs, currentInlines))\n currentInlines = []\n }\n newNodes.push(\n imageBlockType.create({\n src: child.attrs.src,\n caption: child.attrs.alt || child.attrs.title || '',\n ratio: 1,\n })\n )\n } else {\n currentInlines.push(child)\n }\n }\n if (currentInlines.length > 0) {\n newNodes.push(paragraphType.create(node.attrs, currentInlines))\n }\n })\n\n if (!hasChanges) return slice\n return new Slice(\n Fragment.fromArray(newNodes),\n slice.openStart,\n slice.openEnd\n )\n }\n\n // Set editable props for https://github.com/Milkdown/milkdown/issues/190\n ctx.update(editorViewOptionsCtx, (prev) => ({\n ...prev,\n editable: prev.editable ?? (() => true),\n transformPastedHTML: (html: string, view: EditorView) => {\n const prevTransform = prev.transformPastedHTML\n if (prevTransform) html = prevTransform(html, view)\n\n // Google Docs wraps pasted content in <b style=\"font-weight:normal;\" id=\"docs-internal-guid-...\">\n // This wrapper causes ProseMirror's parser to fail when parsing multiple tables.\n // Strip it so block content is at the top level.\n if (html.includes('docs-internal-guid')) {\n html = html.replace(\n /<b[^>]*id=\"docs-internal-guid[^\"]*\"[^>]*>([\\s\\S]*)<\\/b>/,\n '$1'\n )\n // Also unwrap <div> elements that wrap tables.\n // Google Docs wraps each table in <div dir=\"ltr\" ...><table>...</table></div>\n // These wrappers interfere with ProseMirror's parseSlice for multiple tables.\n html = html.replace(/<div[^>]*>(<table[\\s\\S]*?<\\/table>)<\\/div>/g, '$1')\n }\n\n html = sanitizeTableHTML(html)\n\n return html\n },\n }))\n\n const key = new PluginKey('MILKDOWN_CLIPBOARD')\n const plugin = new Plugin({\n key,\n props: {\n handlePaste: (view, event, preProcessedSlice) => {\n const parser = ctx.get(parserCtx)\n const editable = view.props.editable?.(view.state)\n const { clipboardData } = event\n if (!editable || !clipboardData) return false\n\n let html = clipboardData.getData('text/html')\n const text = clipboardData.getData('text/plain')\n if (html.length === 0 && text.length === 0) return false\n\n html = sanitizeTableHTML(html)\n\n const currentNode = view.state.selection.$from.node()\n if (currentNode.type.spec.code) {\n if (text) {\n view.dispatch(\n view.state.tr.insertText(text.replace(/\\r\\n?/g, '\\n'))\n )\n return true\n } else if (preProcessedSlice) {\n let mergedText = ''\n preProcessedSlice.content.nodesBetween(\n 0,\n preProcessedSlice.content.size,\n (node) => {\n if (node.isText) {\n mergedText += node.text\n } else if (\n node.isBlock &&\n mergedText.length > 0 &&\n !mergedText.endsWith('\\n')\n ) {\n mergedText += '\\n'\n }\n }\n )\n if (mergedText) {\n view.dispatch(view.state.tr.insertText(mergedText.trim()))\n return true\n }\n }\n return false\n }\n\n // if is copied from vscode, try to create a code block\n const vscodeData = clipboardData.getData('vscode-editor-data')\n if (vscodeData) {\n const data = JSON.parse(vscodeData)\n const language = data?.mode\n if (text && language) {\n const codeBlock = getNodeFromSchema('code_block', schema)\n const node = codeBlock.create(\n { language },\n schema.text(text.replace(/\\r\\n?/g, '\\n'))\n )\n view.dispatch(view.state.tr.replaceSelectionWith(node))\n return true\n }\n }\n\n // html is already fetched and sanitized at the beginning of handlePaste\n\n // When HTML is present, use the pre-processed Slice from ProseMirror.\n // ProseMirror's parseFromClipboard already ran transformPastedHTML\n // (e.g. Google Docs wrapper stripping) and transformPasted (paste rules\n // like table header fix), producing a better Slice than re-parsing here.\n if (html.length > 0 && preProcessedSlice) {\n let isAllCodeBlock = false\n let language = ''\n let mergedText = ''\n if (preProcessedSlice.content.childCount > 1) {\n isAllCodeBlock = true\n for (let i = 0; i < preProcessedSlice.content.childCount; i++) {\n const child = preProcessedSlice.content.child(i)\n if (child.type.name === 'code_block') {\n if (!language && child.attrs.language) {\n language = child.attrs.language\n }\n mergedText += child.textContent + '\\n'\n } else if (\n child.type.name === 'paragraph' &&\n child.textContent.trim() === ''\n ) {\n // ignore empty paragraphs\n mergedText += '\\n'\n } else {\n isAllCodeBlock = false\n break\n }\n }\n }\n\n if (isAllCodeBlock) {\n const codeText = text || mergedText.replace(/\\n$/, '')\n if (codeText) {\n const codeBlock = getNodeFromSchema('code_block', schema)\n const node = codeBlock.create(\n { language },\n schema.text(codeText.replace(/\\r\\n?/g, '\\n'))\n )\n view.dispatch(view.state.tr.replaceSelectionWith(node))\n return true\n }\n }\n\n const mergedSlice = mergeAdjacentCodeBlocks(preProcessedSlice)\n const convertedSlice = convertInlineImagesToBlocks(mergedSlice)\n return dispatchPasteSlice(view, convertedSlice)\n }\n\n const domParser = DOMParser.fromSchema(schema)\n let dom: Node\n if (html.length === 0) {\n const slice = parser(text)\n if (!slice || typeof slice === 'string') return false\n\n dom = DOMSerializer.fromSchema(schema).serializeFragment(\n slice.content\n )\n } else {\n const template = document.createElement('template')\n template.innerHTML = html\n dom = template.content.cloneNode(true)\n template.remove()\n }\n\n let slice = domParser.parseSlice(dom)\n const transformPasted = view.someProp('transformPasted')\n if (transformPasted) {\n slice = transformPasted(slice, view, false)\n }\n\n const mergedSlice = mergeAdjacentCodeBlocks(slice)\n const convertedSlice = convertInlineImagesToBlocks(mergedSlice)\n return dispatchPasteSlice(view, convertedSlice)\n },\n clipboardTextSerializer: (slice) => {\n const serializer = ctx.get(serializerCtx)\n const isText = isPureText(slice.content.toJSON())\n if (isText)\n return (slice.content as unknown as ProsemirrorNode).textBetween(\n 0,\n slice.content.size,\n '\\n\\n'\n )\n\n const doc = schema.topNodeType.createAndFill(undefined, slice.content)\n if (!doc) return ''\n const value = serializer(doc)\n return value\n },\n },\n appendTransaction(transactions, _oldState, newState) {\n if (!transactions.some((tr) => tr.docChanged)) return null\n\n const imageType = schema.nodes['image']\n const imageBlockType = schema.nodes['image-block']\n const paragraphType = schema.nodes['paragraph']\n if (!imageType || !imageBlockType || !paragraphType) return null\n\n const replacements: {\n from: number\n to: number\n blocks: ProsemirrorNode[]\n }[] = []\n\n const isInlineNodesEmpty = (nodes: ProsemirrorNode[]) => {\n return nodes.every(\n (n) =>\n n.type.name === 'hardbreak' || (n.isText && n.text?.trim() === '')\n )\n }\n\n newState.doc.descendants((node, pos) => {\n if (node.type !== paragraphType) return true\n\n let hasImage = false\n for (let i = 0; i < node.childCount; i++) {\n if (node.child(i).type === imageType) {\n hasImage = true\n break\n }\n }\n\n if (!hasImage) return false\n\n const blocks: ProsemirrorNode[] = []\n let currentInlines: ProsemirrorNode[] = []\n\n for (let i = 0; i < node.childCount; i++) {\n const child = node.child(i)\n if (child.type === imageType) {\n if (!isInlineNodesEmpty(currentInlines)) {\n blocks.push(paragraphType.create(node.attrs, currentInlines))\n }\n currentInlines = []\n\n blocks.push(\n imageBlockType.create({\n src: child.attrs.src,\n caption: child.attrs.alt || child.attrs.title || '',\n ratio: 1,\n })\n )\n } else {\n currentInlines.push(child)\n }\n }\n\n if (!isInlineNodesEmpty(currentInlines)) {\n blocks.push(paragraphType.create(node.attrs, currentInlines))\n }\n\n if (blocks.length > 0) {\n replacements.push({ from: pos, to: pos + node.nodeSize, blocks })\n }\n\n return false\n })\n\n if (replacements.length === 0) return null\n\n const { tr } = newState\n for (let i = replacements.length - 1; i >= 0; i--) {\n const r = replacements[i]!\n tr.replaceWith(r.from, r.to, r.blocks)\n }\n\n return tr.setMeta('addToHistory', false)\n },\n })\n\n return plugin\n})\n\nwithMeta(clipboard, { displayName: 'Prose<clipboard>' })\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/__internal__/is-pure-text.ts","../src/__internal__/with-meta.ts","../src/index.ts"],"sourcesContent":["type UnknownRecord = Record<string, unknown>\nexport function isPureText(\n content: UnknownRecord | UnknownRecord[] | undefined | null\n): boolean {\n if (!content) return false\n if (Array.isArray(content)) {\n if (content.length > 1) return false\n return isPureText(content[0])\n }\n\n const child = content.content\n if (child) return isPureText(child as UnknownRecord[])\n\n return content.type === 'text'\n}\n","import type { Meta, MilkdownPlugin } from '@jvs-milkdown/ctx'\n\nexport function withMeta<T extends MilkdownPlugin>(\n plugin: T,\n meta: Partial<Meta> & Pick<Meta, 'displayName'>\n): T {\n Object.assign(plugin, {\n meta: {\n package: '@jvs-milkdown/plugin-clipboard',\n ...meta,\n },\n })\n\n return plugin\n}\n","import type { EditorView } from '@jvs-milkdown/prose/view'\n\nimport {\n editorViewOptionsCtx,\n parserCtx,\n schemaCtx,\n serializerCtx,\n} from '@jvs-milkdown/core'\nimport { getNodeFromSchema, isTextOnlySlice } from '@jvs-milkdown/prose'\nimport {\n DOMParser,\n DOMSerializer,\n Fragment,\n type Node as ProsemirrorNode,\n Slice,\n} from '@jvs-milkdown/prose/model'\nimport { Plugin, PluginKey } from '@jvs-milkdown/prose/state'\nimport { $prose } from '@jvs-milkdown/utils'\n\nimport { isPureText } from './__internal__/is-pure-text'\nimport { withMeta } from './__internal__/with-meta'\n\nfunction dispatchPasteSlice(view: EditorView, slice: Slice): boolean {\n const node = isTextOnlySlice(slice)\n if (node) {\n view.dispatch(view.state.tr.replaceSelectionWith(node, true))\n return true\n }\n\n try {\n view.dispatch(view.state.tr.replaceSelection(slice))\n return true\n } catch {\n return false\n }\n}\n\nfunction sanitizeTableHTML(html: string): string {\n if (typeof window === 'undefined' || window.DOMParser === undefined) {\n return html\n }\n if (\n !html.includes('<table') &&\n !html.includes('<td') &&\n !html.includes('<th')\n ) {\n return html\n }\n\n try {\n const parser = new window.DOMParser()\n const doc = parser.parseFromString(html, 'text/html')\n const cells = doc.querySelectorAll('td, th')\n if (cells.length === 0) {\n return html\n }\n\n const BLOCK_TAGS = new Set([\n 'P',\n 'DIV',\n 'H1',\n 'H2',\n 'H3',\n 'H4',\n 'H5',\n 'H6',\n 'LI',\n 'UL',\n 'OL',\n 'BLOCKQUOTE',\n 'PRE',\n 'SECTION',\n 'ARTICLE',\n 'ASIDE',\n 'HEADER',\n 'FOOTER',\n 'NAV',\n ])\n\n const renameToSpan = (el: Element) => {\n const span = doc.createElement('span')\n for (const attr of Array.from(el.attributes)) {\n span.setAttribute(attr.name, attr.value)\n }\n while (el.firstChild) {\n span.appendChild(el.firstChild)\n }\n el.replaceWith(span)\n }\n\n cells.forEach((cell) => {\n const blocks: Element[] = []\n const collectBlocks = (node: Node) => {\n if (node.nodeType === 1) {\n // Node.ELEMENT_NODE\n const el = node as Element\n if (BLOCK_TAGS.has(el.tagName.toUpperCase())) {\n blocks.push(el)\n }\n el.childNodes.forEach(collectBlocks)\n }\n }\n collectBlocks(cell)\n\n blocks.forEach((block) => {\n const prev = block.previousSibling\n if (prev) {\n const isAlreadyBR =\n prev.nodeType === 1 &&\n (prev as Element).tagName.toUpperCase() === 'BR'\n if (!isAlreadyBR) {\n const br = doc.createElement('br')\n block.parentNode?.insertBefore(br, block)\n }\n }\n\n const next = block.nextSibling\n if (next) {\n const isNextBlock =\n next.nodeType === 1 &&\n BLOCK_TAGS.has((next as Element).tagName.toUpperCase())\n const isNextBR =\n next.nodeType === 1 &&\n (next as Element).tagName.toUpperCase() === 'BR'\n if (!isNextBlock && !isNextBR) {\n const br = doc.createElement('br')\n block.parentNode?.insertBefore(br, next)\n }\n }\n })\n\n for (const block of [...blocks].reverse()) {\n if (block.parentNode) {\n renameToSpan(block)\n }\n }\n })\n\n const hasHtml = /<html/i.test(html)\n const hasHead = /<head/i.test(html)\n const hasBody = /<body/i.test(html)\n\n if (hasHtml || hasHead || hasBody) {\n return doc.documentElement.outerHTML\n } else {\n return doc.body.innerHTML\n }\n } catch (e) {\n console.error('Failed to parse and sanitize pasted table HTML:', e)\n return html\n }\n}\n\n/// The prosemirror plugin for clipboard.\nexport const clipboard = $prose((ctx) => {\n const schema = ctx.get(schemaCtx)\n\n function isLineNumberParagraph(node: ProsemirrorNode): boolean {\n if (node.type.name !== 'paragraph') return false\n const text = node.textContent.trim()\n return /^\\d+[.)\\]:]?\\s*$/.test(text)\n }\n\n function createCodeBlock(\n language: string,\n texts: string[]\n ): ProsemirrorNode | null {\n const content = texts.join('\\n').replace(/\\r\\n?/g, '\\n').replace(/\\n+$/, '')\n if (!content) return null\n return schema.nodes['code_block']!.create(\n { language },\n schema.text(content)\n )\n }\n\n function mergeAdjacentCodeBlocks(originalSlice: Slice): Slice {\n if (!originalSlice || !originalSlice.content) return originalSlice\n\n const newNodes: ProsemirrorNode[] = []\n let currentLanguage = ''\n let currentTexts: string[] = []\n\n const flushCodeBlock = () => {\n const node = createCodeBlock(currentLanguage, currentTexts)\n if (node) newNodes.push(node)\n currentTexts = []\n currentLanguage = ''\n }\n\n originalSlice.content.forEach((child) => {\n if (child.type.name === 'code_block') {\n if (!currentLanguage && child.attrs.language) {\n currentLanguage = child.attrs.language\n }\n currentTexts.push(child.textContent)\n } else if (\n (child.type.name === 'paragraph' && child.textContent.trim() === '') ||\n isLineNumberParagraph(child)\n ) {\n // Empty paragraphs and line-number paragraphs between code blocks are ignored\n if (currentTexts.length > 0) {\n currentTexts.push('')\n } else {\n newNodes.push(child)\n }\n } else {\n if (currentTexts.length > 0) {\n flushCodeBlock()\n }\n newNodes.push(child)\n }\n })\n\n if (currentTexts.length > 0) {\n flushCodeBlock()\n }\n\n return new Slice(\n Fragment.fromArray(newNodes),\n originalSlice.openStart,\n originalSlice.openEnd\n )\n }\n\n function convertInlineImagesToBlocks(slice: Slice): Slice {\n const imageType = schema.nodes['image']\n const imageBlockType = schema.nodes['image-block']\n const paragraphType = schema.nodes['paragraph']\n if (!imageType || !imageBlockType || !paragraphType) return slice\n\n let hasChanges = false\n const newNodes: ProsemirrorNode[] = []\n slice.content.forEach((node) => {\n if (node.type !== paragraphType) {\n newNodes.push(node)\n return\n }\n\n let hasImage = false\n for (let i = 0; i < node.childCount; i++) {\n if (node.child(i).type === imageType) {\n hasImage = true\n break\n }\n }\n\n if (!hasImage) {\n newNodes.push(node)\n return\n }\n\n hasChanges = true\n let currentInlines: ProsemirrorNode[] = []\n for (let i = 0; i < node.childCount; i++) {\n const child = node.child(i)\n if (child.type === imageType) {\n if (currentInlines.length > 0) {\n newNodes.push(paragraphType.create(node.attrs, currentInlines))\n currentInlines = []\n }\n newNodes.push(\n imageBlockType.create({\n src: child.attrs.src,\n caption: child.attrs.alt || child.attrs.title || '',\n ratio: 1,\n })\n )\n } else {\n currentInlines.push(child)\n }\n }\n if (currentInlines.length > 0) {\n newNodes.push(paragraphType.create(node.attrs, currentInlines))\n }\n })\n\n if (!hasChanges) return slice\n return new Slice(\n Fragment.fromArray(newNodes),\n slice.openStart,\n slice.openEnd\n )\n }\n\n // Set editable props for https://github.com/Milkdown/milkdown/issues/190\n ctx.update(editorViewOptionsCtx, (prev) => ({\n ...prev,\n editable: prev.editable ?? (() => true),\n transformPastedHTML: (html: string, view: EditorView) => {\n const prevTransform = prev.transformPastedHTML\n if (prevTransform) html = prevTransform(html, view)\n\n // Google Docs wraps pasted content in <b style=\"font-weight:normal;\" id=\"docs-internal-guid-...\">\n // This wrapper causes ProseMirror's parser to fail when parsing multiple tables.\n // Strip it so block content is at the top level.\n if (html.includes('docs-internal-guid')) {\n html = html.replace(\n /<b[^>]*id=\"docs-internal-guid[^\"]*\"[^>]*>([\\s\\S]*)<\\/b>/,\n '$1'\n )\n // Also unwrap <div> elements that wrap tables.\n // Google Docs wraps each table in <div dir=\"ltr\" ...><table>...</table></div>\n // These wrappers interfere with ProseMirror's parseSlice for multiple tables.\n html = html.replace(/<div[^>]*>(<table[\\s\\S]*?<\\/table>)<\\/div>/g, '$1')\n }\n\n html = sanitizeTableHTML(html)\n\n return html\n },\n }))\n\n const key = new PluginKey('MILKDOWN_CLIPBOARD')\n const plugin = new Plugin({\n key,\n props: {\n handlePaste: (view, event, preProcessedSlice) => {\n const parser = ctx.get(parserCtx)\n const editable = view.props.editable?.(view.state)\n const { clipboardData } = event\n if (!editable || !clipboardData) return false\n\n let html = clipboardData.getData('text/html')\n const text = clipboardData.getData('text/plain')\n if (html.length === 0 && text.length === 0) return false\n\n html = sanitizeTableHTML(html)\n\n const currentNode = view.state.selection.$from.node()\n if (currentNode.type.spec.code) {\n if (text) {\n view.dispatch(\n view.state.tr.insertText(text.replace(/\\r\\n?/g, '\\n'))\n )\n return true\n } else if (preProcessedSlice) {\n let mergedText = ''\n preProcessedSlice.content.nodesBetween(\n 0,\n preProcessedSlice.content.size,\n (node) => {\n if (node.isText) {\n mergedText += node.text\n } else if (\n node.isBlock &&\n mergedText.length > 0 &&\n !mergedText.endsWith('\\n')\n ) {\n mergedText += '\\n'\n }\n }\n )\n if (mergedText) {\n view.dispatch(view.state.tr.insertText(mergedText.trim()))\n return true\n }\n }\n return false\n }\n\n // if is copied from vscode, try to create a code block\n const vscodeData = clipboardData.getData('vscode-editor-data')\n if (vscodeData) {\n const data = JSON.parse(vscodeData)\n const language = data?.mode\n if (text && language) {\n const codeBlock = getNodeFromSchema('code_block', schema)\n const node = codeBlock.create(\n { language },\n schema.text(text.replace(/\\r\\n?/g, '\\n'))\n )\n view.dispatch(view.state.tr.replaceSelectionWith(node))\n return true\n }\n }\n\n // html is already fetched and sanitized at the beginning of handlePaste\n\n // When HTML is present, use the pre-processed Slice from ProseMirror.\n // ProseMirror's parseFromClipboard already ran transformPastedHTML\n // (e.g. Google Docs wrapper stripping) and transformPasted (paste rules\n // like table header fix), producing a better Slice than re-parsing here.\n if (html.length > 0 && preProcessedSlice) {\n let isAllCodeBlock = false\n let language = ''\n let mergedText = ''\n if (preProcessedSlice.content.childCount > 1) {\n isAllCodeBlock = true\n for (let i = 0; i < preProcessedSlice.content.childCount; i++) {\n const child = preProcessedSlice.content.child(i)\n if (child.type.name === 'code_block') {\n if (!language && child.attrs.language) {\n language = child.attrs.language\n }\n mergedText += child.textContent + '\\n'\n } else if (\n child.type.name === 'paragraph' &&\n child.textContent.trim() === ''\n ) {\n // ignore empty paragraphs\n mergedText += '\\n'\n } else {\n isAllCodeBlock = false\n break\n }\n }\n }\n\n if (isAllCodeBlock) {\n const codeText = text || mergedText.replace(/\\n$/, '')\n if (codeText) {\n const codeBlock = getNodeFromSchema('code_block', schema)\n const node = codeBlock.create(\n { language },\n schema.text(codeText.replace(/\\r\\n?/g, '\\n'))\n )\n view.dispatch(view.state.tr.replaceSelectionWith(node))\n return true\n }\n }\n\n const mergedSlice = mergeAdjacentCodeBlocks(preProcessedSlice)\n const convertedSlice = convertInlineImagesToBlocks(mergedSlice)\n return dispatchPasteSlice(view, convertedSlice)\n }\n\n const domParser = DOMParser.fromSchema(schema)\n let dom: Node\n if (html.length === 0) {\n const slice = parser(text)\n if (!slice || typeof slice === 'string') return false\n\n dom = DOMSerializer.fromSchema(schema).serializeFragment(\n slice.content\n )\n } else {\n const template = document.createElement('template')\n template.innerHTML = html\n dom = template.content.cloneNode(true)\n template.remove()\n }\n\n let slice = domParser.parseSlice(dom)\n const transformPasted = view.someProp('transformPasted')\n if (transformPasted) {\n slice = transformPasted(slice, view, false)\n }\n\n const mergedSlice = mergeAdjacentCodeBlocks(slice)\n const convertedSlice = convertInlineImagesToBlocks(mergedSlice)\n return dispatchPasteSlice(view, convertedSlice)\n },\n clipboardTextSerializer: (slice) => {\n const serializer = ctx.get(serializerCtx)\n const isText = isPureText(slice.content.toJSON())\n if (isText)\n return (slice.content as unknown as ProsemirrorNode).textBetween(\n 0,\n slice.content.size,\n '\\n\\n'\n )\n\n const doc = schema.topNodeType.createAndFill(undefined, slice.content)\n if (!doc) return ''\n const value = serializer(doc)\n return value\n },\n },\n appendTransaction(transactions, _oldState, newState) {\n if (!transactions.some((tr) => tr.docChanged)) return null\n\n const imageType = schema.nodes['image']\n const imageBlockType = schema.nodes['image-block']\n const paragraphType = schema.nodes['paragraph']\n if (!imageType || !imageBlockType || !paragraphType) return null\n\n const replacements: {\n from: number\n to: number\n blocks: ProsemirrorNode[]\n }[] = []\n\n const isInlineNodesEmpty = (nodes: ProsemirrorNode[]) => {\n return nodes.every(\n (n) =>\n n.type.name === 'hardbreak' || (n.isText && n.text?.trim() === '')\n )\n }\n\n newState.doc.descendants((node, pos) => {\n if (node.type !== paragraphType) return true\n\n let hasImage = false\n for (let i = 0; i < node.childCount; i++) {\n if (node.child(i).type === imageType) {\n hasImage = true\n break\n }\n }\n\n if (!hasImage) return false\n\n const blocks: ProsemirrorNode[] = []\n let currentInlines: ProsemirrorNode[] = []\n\n for (let i = 0; i < node.childCount; i++) {\n const child = node.child(i)\n if (child.type === imageType) {\n if (!isInlineNodesEmpty(currentInlines)) {\n blocks.push(paragraphType.create(node.attrs, currentInlines))\n }\n currentInlines = []\n\n blocks.push(\n imageBlockType.create({\n src: child.attrs.src,\n caption: child.attrs.alt || child.attrs.title || '',\n ratio: 1,\n })\n )\n } else {\n currentInlines.push(child)\n }\n }\n\n if (!isInlineNodesEmpty(currentInlines)) {\n blocks.push(paragraphType.create(node.attrs, currentInlines))\n }\n\n if (blocks.length > 0) {\n replacements.push({ from: pos, to: pos + node.nodeSize, blocks })\n }\n\n return false\n })\n\n if (replacements.length === 0) return null\n\n const { tr } = newState\n for (let i = replacements.length - 1; i >= 0; i--) {\n const r = replacements[i]!\n tr.replaceWith(r.from, r.to, r.blocks)\n }\n\n return tr.setMeta('addToHistory', false)\n },\n })\n\n return plugin\n})\n\nwithMeta(clipboard, { displayName: 'Prose<clipboard>' })\n"],"mappings":"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"}
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/orderedmap@2.1.1/node_modules/orderedmap/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-model@1.25.4/node_modules/prosemirror-model/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-transform@1.12.0/node_modules/prosemirror-transform/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-state@1.4.4/node_modules/prosemirror-state/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-view@1.41.8/node_modules/prosemirror-view/dist/index.d.ts","../../../prose/lib/view.d.ts","../../../ctx/lib/context/slice.d.ts","../../../ctx/lib/context/container.d.ts","../../../ctx/lib/context/index.d.ts","../../../ctx/lib/inspector/meta.d.ts","../../../ctx/lib/timer/timer.d.ts","../../../ctx/lib/timer/clock.d.ts","../../../ctx/lib/timer/index.d.ts","../../../ctx/lib/inspector/inspector.d.ts","../../../ctx/lib/inspector/index.d.ts","../../../ctx/lib/plugin/ctx.d.ts","../../../ctx/lib/plugin/types.d.ts","../../../ctx/lib/plugin/index.d.ts","../../../ctx/lib/index.d.ts","../../../../node_modules/.pnpm/prosemirror-inputrules@1.5.1/node_modules/prosemirror-inputrules/dist/index.d.ts","../../../prose/lib/inputrules.d.ts","../../../prose/lib/state.d.ts","../../../prose/lib/model.d.ts","../../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/index.d.ts","../../../../node_modules/.pnpm/remark@15.0.1/node_modules/remark/index.d.ts","../../../transformer/lib/utility/stack.d.ts","../../../transformer/lib/utility/index.d.ts","../../../transformer/lib/serializer/stack-element.d.ts","../../../transformer/lib/serializer/state.d.ts","../../../transformer/lib/serializer/types.d.ts","../../../transformer/lib/utility/types.d.ts","../../../transformer/lib/parser/stack-element.d.ts","../../../transformer/lib/parser/state.d.ts","../../../transformer/lib/parser/types.d.ts","../../../transformer/lib/parser/index.d.ts","../../../transformer/lib/serializer/index.d.ts","../../../transformer/lib/index.d.ts","../../../core/lib/internal-plugin/atoms.d.ts","../../../core/lib/internal-plugin/commands.d.ts","../../../core/lib/internal-plugin/config.d.ts","../../../core/lib/internal-plugin/editor-state.d.ts","../../../core/lib/internal-plugin/editor-view.d.ts","../../../core/lib/internal-plugin/init.d.ts","../../../core/lib/internal-plugin/parser.d.ts","../../../core/lib/internal-plugin/schema.d.ts","../../../core/lib/internal-plugin/serializer.d.ts","../../../core/lib/internal-plugin/keymap.d.ts","../../../core/lib/internal-plugin/paste-rule.d.ts","../../../core/lib/internal-plugin/index.d.ts","../../../core/lib/editor/editor.d.ts","../../../core/lib/editor/index.d.ts","../../../core/lib/index.d.ts","../../../prose/lib/toolkit/browser.d.ts","../../../prose/lib/toolkit/input-rules/custom-input-rules.d.ts","../../../prose/lib/toolkit/input-rules/common.d.ts","../../../prose/lib/toolkit/input-rules/mark-rule.d.ts","../../../prose/lib/toolkit/input-rules/node-rule.d.ts","../../../prose/lib/toolkit/input-rules/index.d.ts","../../../prose/lib/toolkit/position/index.d.ts","../../../prose/lib/toolkit/prose/helper.d.ts","../../../prose/lib/toolkit/prose/types.d.ts","../../../prose/lib/toolkit/prose/node.d.ts","../../../prose/lib/toolkit/prose/schema.d.ts","../../../prose/lib/toolkit/prose/selection.d.ts","../../../prose/lib/toolkit/prose/index.d.ts","../../../prose/lib/toolkit/index.d.ts","../../../prose/lib/index.d.ts","../../../utils/lib/composable/utils.d.ts","../../../utils/lib/composable/$command.d.ts","../../../utils/lib/composable/$input-rule.d.ts","../../../utils/lib/composable/$paste-rule.d.ts","../../../utils/lib/composable/$mark.d.ts","../../../utils/lib/composable/$node.d.ts","../../../utils/lib/composable/$prose.d.ts","../../../utils/lib/composable/$shortcut.d.ts","../../../utils/lib/composable/$view.d.ts","../../../utils/lib/composable/$ctx.d.ts","../../../utils/lib/composable/composed/$node-schema.d.ts","../../../utils/lib/composable/composed/$mark-schema.d.ts","../../../utils/lib/composable/composed/$use-keymap.d.ts","../../../utils/lib/composable/composed/$attr.d.ts","../../../utils/lib/composable/composed/$remark.d.ts","../../../utils/lib/composable/composed/index.d.ts","../../../utils/lib/composable/index.d.ts","../../../utils/lib/macro/call-command.d.ts","../../../utils/lib/macro/force-update.d.ts","../../../utils/lib/macro/get-html.d.ts","../../../utils/lib/macro/get-markdown.d.ts","../../../utils/lib/macro/insert.d.ts","../../../utils/lib/macro/outline.d.ts","../../../utils/lib/macro/replace-all.d.ts","../../../utils/lib/macro/set-attr.d.ts","../../../utils/lib/macro/insert-pos.d.ts","../../../utils/lib/macro/replace-range.d.ts","../../../utils/lib/macro/markdown-to-slice.d.ts","../../../utils/lib/macro/index.d.ts","../../../utils/lib/pipe.d.ts","../../../utils/lib/index.d.ts","../src/__internal__/is-pure-text.ts","../src/__internal__/with-meta.ts","../src/index.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/utility.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/sqlite.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/index.d.ts"],"fileIdsList":[[84,205,259,276,277],[205,256,257,259,276,277],[205,258,259,276,277],[259,276,277],[205,259,264,276,277,294],[205,259,260,265,270,276,277,279,291,302],[205,259,260,261,270,276,277,279],[205,259,276,277],[205,259,262,276,277,303],[205,259,263,264,271,276,277,280],[205,259,264,276,277,291,299],[205,259,265,267,270,276,277,279],[205,258,259,266,276,277],[205,259,267,268,276,277],[205,259,269,270,276,277],[205,258,259,270,276,277],[205,259,270,271,272,276,277,291,302],[205,259,270,271,272,276,277,286,291,294],[205,251,259,267,270,273,276,277,279,291,302],[205,259,270,271,273,274,276,277,279,291,299,302],[205,259,273,275,276,277,291,299,302],[203,204,205,206,207,208,209,210,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[205,259,270,276,277],[205,259,276,277,278,302],[205,259,267,270,276,277,279,291],[205,259,276,277,280],[205,259,276,277,281],[205,258,259,276,277,282],[205,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[205,259,276,277,284],[205,259,276,277,285],[205,259,270,276,277,286,287],[205,259,276,277,286,288,303,305],[205,259,271,276,277],[205,259,270,276,277,291,292,294],[205,259,276,277,293,294],[205,259,276,277,291,292],[205,259,276,277,294],[205,259,276,277,295],[205,256,259,276,277,291,296,302],[205,259,270,276,277,297,298],[205,259,276,277,297,298],[205,259,264,276,277,279,291,299],[205,259,276,277,300],[205,259,276,277,279,301],[205,259,273,276,277,285,302],[205,259,264,276,277,303],[205,259,276,277,291,304],[205,259,276,277,278,305],[205,259,276,277,306],[205,259,264,276,277],[205,251,259,276,277],[205,259,276,277,307],[205,251,259,270,272,276,277,282,291,294,302,304,305,307],[205,259,276,277,291,308],[86,87,88,89,205,259,276,277],[85,86,87,89,205,259,276,277],[85,86,89,205,259,276,277],[101,102,122,205,259,276,277],[85,123,205,259,276,277],[85,205,259,276,277],[103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,205,259,276,277],[84,85,205,259,276,277],[62,64,205,259,276,277],[61,205,259,276,277],[62,63,65,205,259,276,277],[62,205,259,276,277],[62,63,64,205,259,276,277],[85,86,89,98,99,100,125,205,259,276,277],[85,89,93,98,100,125,205,259,276,277],[85,98,100,123,124,125,205,259,276,277],[85,93,98,100,123,125,205,259,276,277],[85,98,100,125,205,259,276,277],[95,205,259,276,277],[205,217,220,223,224,259,276,277,302],[205,220,259,276,277,291,302],[205,220,224,259,276,277,302],[205,259,276,277,291],[205,214,259,276,277],[205,218,259,276,277],[205,216,217,220,259,276,277,302],[205,259,276,277,279,299],[205,259,276,277,309],[205,214,259,276,277,309],[205,216,220,259,276,277,279,302],[205,211,212,213,215,219,259,270,276,277,291,302],[205,220,228,236,259,276,277],[205,212,218,259,276,277],[205,220,245,246,259,276,277],[205,212,215,220,259,276,277,294,302,309],[205,220,259,276,277],[205,216,220,259,276,277,302],[205,211,259,276,277],[205,214,215,216,218,219,220,221,222,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246,247,248,249,250,259,276,277],[205,220,238,241,259,267,276,277],[205,220,228,229,230,259,276,277],[205,218,220,229,231,259,276,277],[205,219,259,276,277],[205,212,214,220,259,276,277],[205,220,224,229,231,259,276,277],[205,224,259,276,277],[205,218,220,223,259,276,277,302],[205,212,216,220,228,259,276,277],[205,220,238,259,276,277],[205,231,259,276,277],[205,214,220,245,259,276,277,294,307,309],[93,97,205,259,276,277],[84,93,94,96,98,100,125,205,259,276,277],[90,205,259,276,277],[91,92,205,259,276,277],[84,91,93,205,259,276,277],[79,150,205,259,276,277],[151,205,259,276,277],[150,152,205,259,276,277],[66,79,81,82,125,138,152,205,259,276,277],[79,82,205,259,276,277],[79,205,259,276,277],[79,82,83,138,205,259,276,277],[66,79,205,259,276,277],[139,140,141,142,143,144,145,146,147,148,149,205,259,276,277],[79,152,205,259,276,277],[79,138,205,259,276,277],[66,79,83,205,259,276,277],[79,83,138,205,259,276,277],[67,205,259,276,277],[67,68,205,259,276,277],[68,205,259,276,277],[69,73,75,78,205,259,276,277],[70,74,205,259,276,277],[69,70,73,205,259,276,277],[69,73,75,79,205,259,276,277],[76,77,205,259,276,277],[75,76,205,259,276,277],[71,205,259,276,277],[71,72,205,259,276,277],[72,205,259,276,277],[66,82,83,153,168,199,200,201,205,259,276,277],[167,205,259,276,277],[80,205,259,276,277],[64,205,259,276,277],[154,159,160,166,205,259,276,277],[82,83,205,259,276,277],[81,82,205,259,276,277],[155,156,157,158,205,259,276,277],[81,83,156,205,259,276,277],[66,205,259,276,277],[161,163,164,165,205,259,276,277],[83,162,205,259,276,277],[83,205,259,276,277],[82,83,162,205,259,276,277],[65,205,259,276,277],[128,136,137,205,259,276,277],[134,135,205,259,276,277],[83,128,205,259,276,277],[83,128,133,135,205,259,276,277],[83,132,134,205,259,276,277],[130,131,205,259,276,277],[128,138,205,259,276,277],[83,128,129,131,205,259,276,277],[83,130,205,259,276,277],[127,132,205,259,276,277],[83,98,100,125,126,131,135,205,259,276,277],[79,153,169,205,259,276,277],[79,81,169,205,259,276,277],[79,83,138,169,205,259,276,277],[79,82,169,205,259,276,277],[79,82,153,169,205,259,276,277],[66,79,169,185,205,259,276,277],[83,178,205,259,276,277],[79,138,173,178,205,259,276,277],[79,138,174,178,205,259,276,277],[79,138,178,205,259,276,277],[79,82,176,178,205,259,276,277],[179,180,181,182,183,205,259,276,277],[169,170,171,172,173,174,175,176,177,178,184,205,259,276,277],[185,197,198,205,259,276,277],[79,153,205,259,276,277],[186,187,188,189,190,191,192,193,194,195,196,205,259,276,277],[79,83,205,259,276,277]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","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":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","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":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","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":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"f6f171b23ae6db93454343f1b788960f799c8f37043904874a752c0990c6fca6","impliedFormat":99},{"version":"304e41926d3299c9b30bfd418c35fffd2bd9e5ac726d6f758fb4e0f40a738d51","impliedFormat":99},{"version":"02ab5dbcaa58da1d58c46c7cdfa7f94792c5ccf0fc7c0622ef33755fe415366c","impliedFormat":99},{"version":"7d3b1ddfce35445b76298090a9dcadee8acf20f4c281eb1f2ce14fc7232c9470","affectsGlobalScope":true,"impliedFormat":99},"1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"2a04530c2579ddcf996e1cf017caaba573e0ebf8a5b9e45d3bc25ba4489fb5a3","impliedFormat":99},"f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"a5dbd4c9941b614526619bad31047ddd5f504ec4cdad88d6117b549faef34dd3","impliedFormat":99},{"version":"d36518bd617ff673c7d9f372706f241932a43f27673187f2a8472e93c40041c6","impliedFormat":99},{"version":"f8eb2909590ec619643841ead2fc4b4b183fbd859848ef051295d35fef9d8469","impliedFormat":99},{"version":"fe784567dd721417e2c4c7c1d7306f4b8611a4f232f5b7ce734382cf34b417d2","impliedFormat":99},{"version":"2b37ba54ec067598bf912d56fcb81f6d8ad86a045c757e79440bdef97b52fe1b","impliedFormat":99},{"version":"1bc9dd465634109668661f998485a32da369755d9f32b5a55ed64a525566c94b","impliedFormat":99},{"version":"5702b3c2f5d248290ed99419d77ca1cc3e6c29db5847172377659c50e6303768","impliedFormat":99},{"version":"9764b2eb5b4fc0b8951468fb3dbd6cd922d7752343ef5fbf1a7cd3dfcd54a75e","impliedFormat":99},{"version":"1fc2d3fe8f31c52c802c4dee6c0157c5a1d1f6be44ece83c49174e316cf931ad","impliedFormat":99},{"version":"dc4aae103a0c812121d9db1f7a5ea98231801ed405bf577d1c9c46a893177e36","impliedFormat":99},{"version":"106d3f40907ba68d2ad8ce143a68358bad476e1cc4a5c710c11c7dbaac878308","impliedFormat":99},{"version":"42ad582d92b058b88570d5be95393cf0a6c09a29ba9aa44609465b41d39d2534","impliedFormat":99},{"version":"36e051a1e0d2f2a808dbb164d846be09b5d98e8b782b37922a3b75f57ee66698","impliedFormat":99},{"version":"4f7e6730a707b0d4971d96de3b562819ce304af770723707a58a578dd55a5e52","impliedFormat":99},{"version":"d1c1213e9176398b4d1d9aa543691181fd5ae23ae5415e80ede41f1ec1ccf72a","impliedFormat":99},{"version":"45d1e8fb4fd3e265b15f5a77866a8e21870eae4c69c473c33289a4b971e93704","impliedFormat":99},{"version":"cd40919f70c875ca07ecc5431cc740e366c008bcbe08ba14b8c78353fb4680df","impliedFormat":99},{"version":"ddfd9196f1f83997873bbe958ce99123f11b062f8309fc09d9c9667b2c284391","impliedFormat":99},{"version":"2999ba314a310f6a333199848166d008d088c6e36d090cbdcc69db67d8ae3154","impliedFormat":99},{"version":"62c1e573cd595d3204dfc02b96eba623020b181d2aa3ce6a33e030bc83bebb41","impliedFormat":99},{"version":"ca1616999d6ded0160fea978088a57df492b6c3f8c457a5879837a7e68d69033","impliedFormat":99},{"version":"835e3d95251bbc48918bb874768c13b8986b87ea60471ad8eceb6e38ddd8845e","impliedFormat":99},{"version":"de54e18f04dbcc892a4b4241b9e4c233cfce9be02ac5f43a631bbc25f479cd84","impliedFormat":99},{"version":"453fb9934e71eb8b52347e581b36c01d7751121a75a5cd1a96e3237e3fd9fc7e","impliedFormat":99},{"version":"bc1a1d0eba489e3eb5c2a4aa8cd986c700692b07a76a60b73a3c31e52c7ef983","impliedFormat":99},{"version":"4098e612efd242b5e203c5c0b9afbf7473209905ab2830598be5c7b3942643d0","impliedFormat":99},{"version":"28410cfb9a798bd7d0327fbf0afd4c4038799b1d6a3f86116dc972e31156b6d2","impliedFormat":99},{"version":"514ae9be6724e2164eb38f2a903ef56cf1d0e6ddb62d0d40f155f32d1317c116","impliedFormat":99},{"version":"970e5e94a9071fd5b5c41e2710c0ef7d73e7f7732911681592669e3f7bd06308","impliedFormat":99},{"version":"491fb8b0e0aef777cec1339cb8f5a1a599ed4973ee22a2f02812dd0f48bd78c1","impliedFormat":99},{"version":"6acf0b3018881977d2cfe4382ac3e3db7e103904c4b634be908f1ade06eb302d","impliedFormat":99},{"version":"2dbb2e03b4b7f6524ad5683e7b5aa2e6aef9c83cab1678afd8467fde6d5a3a92","impliedFormat":99},{"version":"135b12824cd5e495ea0a8f7e29aba52e1adb4581bb1e279fb179304ba60c0a44","impliedFormat":99},{"version":"e4c784392051f4bbb80304d3a909da18c98bc58b093456a09b3e3a1b7b10937f","impliedFormat":99},{"version":"2e87c3480512f057f2e7f44f6498b7e3677196e84e0884618fc9e8b6d6228bed","impliedFormat":99},{"version":"66984309d771b6b085e3369227077da237b40e798570f0a2ddbfea383db39812","impliedFormat":99},{"version":"e41be8943835ad083a4f8a558bd2a89b7fe39619ed99f1880187c75e231d033e","impliedFormat":99},{"version":"260558fff7344e4985cfc78472ae58cbc2487e406d23c1ddaf4d484618ce4cfd","impliedFormat":99},{"version":"e6274d956641c1cbd5a01a221a85a6671fd85104ed6b530f8d34ad3086804133","impliedFormat":99},{"version":"77516308358982bb05209e8c0ed6f321860e03393587d89f61055941e5bbcdd2","impliedFormat":99},{"version":"dc8652855a95ef9b9c12be8d2f5e6fc37b96aa2144f6c6f195cd1d2e07f721ee","impliedFormat":99},"e2cb25ca55e10ba874410188a53331a6b0b2bc13c0ee4d538bde50460a4e1b77","041afde4e1ac27e6fabdc2ca87882a3a766443fcfe1a1cfc3ed78bcc1c25b28a","c2049793874bbeafd60402bab915f3d285f4057e718dfdefe8a54ccc80c991dd","8a2b6f999a708119f4fa55fc58c5803ca9563340d0a54b9fe2a4fa14838f148c","2db5b1bbf946e20cef3c889cb7be46e3da384bdd1b4b53964253d97635718774","79e620484ae1a7011482631159563e4729f7f4d4c316b914125cb95f678ffbb9","6434c2976daf446cfd95935af4e0a0b6b369ce81af183579dab3ac6567dbbfd0","f50c1778b48a9275078ad81abaa5b4cb13a295b3889986f8e72fe61dd9cd8b86","6e935a5aec1b1f86cfa97fb93ec13c8759479712014d7dc4c13f140f7d409357","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","8c24aeb14985e8089f29e1fea075e95a7c8825077277079d5dc4130ceb6339de","ff041f34cc1936cb45f94de1924d396abd69b3d6e0cc887dfaa0b6ec176e27e1","6abd2f68e6651205f5d7763dcf7a5b5e5dc28b6194b097b467913d2cf19c1dd2","c04c352fc277c57e16519814a13e1b84e6c54c461b89ee63c8bff94ddf615555","e406a8398f12e8bb0d7661b9974a9ce78043a916cd2c652f7b82b7889e57f9e8","441c8ea68ff583cefd0f77d2a1699f6328d714ebfb9435ffedad5470392de2e7","cc60d13b9e2058908f082cca058357d2ebd83143b3dc4e3a01731e8a4b7ae2fe","5ca4d7a999b9fa8c7e2ef9746968eaeabb8e69a904cc62a3c18ac23b9664c8a8","bff722032fb479d76cdd167e0aa05e2e3ca9b728cff777e893aa694bad01e3a9","3fc92b50147ec179c1db1355901683a7f48646c6203ae982f2bc31dc8959f4ff","ad43cfeea2ffc4f26107e49ae92bed3fe01b0c2aa3e328e293d7b0dceb01300f","50e52950b1b92455f40c3fba61ee9a43e74bf9bdf6a25e01ad2e3a2226bbb2ec","cd2e2d6ffad8a1de80249fd4aa35f6c6f9160c18f69fbaf6507072eba208abda","3b8dd8f967501f6193f2d31f8a124e05186264f37f1b73d073cf39c6e123fe50","bc699cb86e1528d370a29ae99fe8f89e3a838bb620ad4071a4c9999a390c8361","d9fc24b35b002a548f4414e49fe3793d9a5b35ee52005272caf4318f2e4f8365","38815495490dbe68097e68af671c9f38d7b7becdc86046701caf27b3aefc1238","4f5fa1f41df5934999037079798a183a672f6a51bf00fecd8a58a40bf8a6ab4b","9228f51f27ecf7b4ea783d9a8ad6fa0b04aedd65f15765ef2e2b4fa993230c71","a4a6eecc3b94a291ecd8001af8bc77860553c1cd0539b7df753db546b90957f1","531aa8b58051f4a06c342c0e058080be43e46ec8caeb686e988f01506dd86e8b","830ef6b30732865e6c28f3a1a5ab6b2d912705dde825638ac06b125ec43d21d0","36a26b110dcea31cd8bab601c2b73930f04e8b5417f9749d9f5fb1eab2a763b6","4c5e77be4579c26825232a95edbf67c1fe38ef7af273b3829831e95cbeb86bb1","fe92ca191d247c305b79d52f46a30ba4d7c93dd1c3e92d7c6c613d330b3da187","89854e488820d88a1b94cf1fd4f156c48859af845d09130f81d516c1aa5db130","0b91eff2dfe722ddce2e4541b66db7b80b83c9912ddd338906bff6e0d1b992c9","7c746be7d0a5cd1a23a4b9f9290669f7c49ca4b315e19c103b1c8ede5037b984","40bcee342fdfb92c1e899d6eb5dfe6e4b1d7c22ec66ddefaec6e287a182e2d9b","717d62319839b9544128ebd5d5d414a2ef6aca2068d40045336d838e2872bdc9","487ae9dd80a97c7c7fa8cb272b81033c4252b064047f8b10b2d421e3a909dacf","0e0f762a06bd12f01872c86e03fd88a6830c3991ea17734ea2859a43a96b6ac5","88738bfae85b658c5728b5d84e7e9b78788281edc397bc6a75da4d1b554d2041","af1e3e5216a3a605be2384495ea43d50684dc0b674b0fc795cdaaaa51f979db6","d531e9345fbc0cb9e1fa9428752f675b40f2c32c8bda0c1547fc64522e3295d5","33be8125f7170aedbf456f05059014f0fbbfbf4842eb76d3c43a86bb82045df6","2246cd9c0a20fdf3df7fa37ee25c4e8d3989d38eb6274203fb0e9d43020a5cfc","f6d2f543d91edabb84f53c26e611514f0ecec59b72f6e5321145c00c70d0f1e7","6e12e26efaaeb591c891d49658152d874a1fc869c1231176172a4e90a78320c4","8e0872445888b4eac9c8915022cc2b58291db248fc33b0994c7e3296d7af306a","7064efe511093c8ab839f6c8bbe2ffc2911bc299ec8880f2129b541e2e32cc4c","41259a2d0eac0369e1581e08e5aef6ffef48f9ffc3d06d874524c9da6f1e4f29","9722d152fcdb95a635c8132764b7ded085073b4734daf2b19798be965fb10160","db3f677fdf3de11b7a334e5c8e677df05686b3d6e172d46ad3a1674790e5d03c","3a5ebec0a04030822776a5dcc7f9b053a38d79aa4b15e7c4df009ee5ac813dbf","77b54b2bf7d6e4a05b79d286903ad9f71141f91409729c5deb8bfa417d7f0960","573f356148118ea54c7b9a2eff374329022b1e38d5a1070cae53c97d7b0ef355","ef5ae01c8b2b11403554c319af51db9c3dc26051cb077b75c8885b5d02821557","1da18878fb9f757426713faa0c4b289ff717f1bb26bcefc358c2b03aae5f11be","5d7c0080e6e16f13e23ec822364b951a8135242ec61db38d230725c4cc8bba00","9fe63d563259a1a7e32332cd5cc24bccd9f0a34d0d9f2e80df7370d4205e91cb","947c6ccd6a0b2805b4e3479b51112d8affc4b64ecb209ee15a480a10c44a48a1","c4f0b3fb0d90e865c3ab69b9fff9c8eb13ff8fd49bcfce1f10f696bf5db9cdc9","e39e74456caf2be7616c1327e6447e6559e64d5ffb161d43bb44f50b3461ee59","8c3dde564136c2b88384fa63c823c9b4282b5b813ad8287a1c8f3734efb801a0","defdff60f915e05c089175d08b85199747f561dc318ac8dceacc844753060e6d","1a3dbaf2ef5ba30576b22fe1a26c868d9c76646670afb0c90ce7b6e1233211b2","d6faa230dcddc146229e72291ed444476e5c3fcf75b102fb0c78a46510e82424","bfa14541c2b697d5a73041bfa7a318b47db2301e2045856c7ab9db7bb3f4d21b","caee8e88a02710517f1d1849b48fa8793878f4ab0c51cde5c025ba6f21b946df","bbf57449e9341dc4b6f56e7ce74d0edee6cd7c4ca55b52664469de0c7d384445",{"version":"25cf80dff244f1e35c68def8835835dbfe7e1d54ed578aab757717aeddb4c147","signature":"121eb1fa5e2aec5ce93a71c78791045a95f9f5879e1b67c32226ed1bf281f0a7"},{"version":"3b2ae4e42f90ee29bb54f6911d061f4fb7103d7a8d93da0a55402f2136e2efa6","signature":"6d17ed9b7135b0b3db99ead1c9a36ed2c4891df097fff6c3e2a9ef3df9a5740f"},{"version":"c216f172aa811b2053792904627b1c5880a44df2ad11ef37acb258cb8002ec2f","signature":"843d3846122a4373ccc7fd509cc4d3e8cf012225590f11260fe340eec05ef9c2"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"c06b2652ffeb89afd0f1c52c165ced77032f9cd09bc481153fbd6b5504c69494","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"0904660ae854e6d41f6ff25356db1d654436c6305b0f0aa89d1532df0253486e","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"2c2591488d4a4cd765d0410f7e1e36b026828bd915330850e8464f47965123b9","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"0e5974dfff7a97181c7c376545f126b20acf2f1341db7d3fccea4977bf3ce19c","impliedFormat":1},{"version":"c7f977ea78a1b060a30554c1c4ec0e2269c6e305a349ca2ada14931ac27ecc0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3806cdd6b48ba01a9198134e62a384ec217a98f316d4baef74dd46d62c947a63","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bf3fe89ec8baa335f6370b9fa36308e1bc7a72e2eb2dad1e94f31e27fa28b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"35390d6fa94bdb432c5d0bcb6547bdd11406c2692a6b90b9e47be2105ea19bd6","impliedFormat":1},{"version":"3910dab597c40e173bf0e0d419d3ce9682c54ebf6ae84849f9b829b1451a17ec","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"486c074a5c0f2254345c0d1c9540380f5463999e42d7e1a159305ea823d3c4b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"8e7c3bed5f19ade8f911677ddc83052e2283e25b0a8654cd89db9079d4b323c7","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ccf3afaeebbeee4ca9092101e99fd6abd681116b6e5ec23e381bbb1e1f32262c","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"ab7818a9d57a9297b90e456fc68b77f84d74395a9210a3cfa9d87db33aff8b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb08062718a5470cd864c1fae0eb5b3a3adc5bcd05dcf87608d6f60b65eca3f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3a815b7d1aebc0646b91548eab2fc19dada09ff255d04c71ced00bbd3058c8eb","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"836b36913830645ac3b28fe33731aac3fdb3524ee8adbb4cdab9a5c189f41943","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[200,202]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[85,1],[256,2],[257,2],[258,3],[205,4],[259,5],[260,6],[261,7],[203,8],[262,9],[263,10],[264,11],[265,12],[266,13],[267,14],[268,14],[269,15],[270,16],[271,17],[272,18],[206,8],[204,8],[273,19],[274,20],[275,21],[309,22],[276,23],[277,8],[278,24],[279,25],[280,26],[281,27],[282,28],[283,29],[284,30],[285,31],[286,32],[287,32],[288,33],[289,8],[290,34],[291,35],[293,36],[292,37],[294,38],[295,39],[296,40],[297,41],[298,42],[299,43],[300,44],[301,45],[302,46],[303,47],[304,48],[305,49],[306,50],[207,8],[208,51],[209,8],[210,8],[252,52],[253,53],[254,8],[255,38],[307,54],[308,55],[84,8],[89,56],[88,57],[87,58],[123,59],[103,60],[104,60],[105,60],[106,60],[107,60],[108,60],[109,61],[111,60],[110,60],[122,62],[112,60],[114,60],[113,60],[116,60],[115,60],[117,60],[118,60],[119,60],[120,60],[121,60],[102,60],[101,63],[86,8],[61,8],[80,64],[62,65],[64,66],[63,67],[65,68],[100,69],[99,70],[125,71],[124,72],[126,73],[96,74],[95,8],[59,8],[60,8],[10,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[57,8],[58,8],[228,75],[240,76],[226,77],[241,78],[250,79],[217,80],[218,81],[216,82],[249,83],[244,84],[248,85],[220,86],[237,87],[219,88],[247,89],[214,90],[215,84],[221,91],[222,8],[227,92],[225,91],[212,93],[251,94],[242,95],[231,96],[230,91],[232,97],[235,98],[229,99],[233,100],[245,83],[223,101],[224,102],[236,103],[213,78],[239,104],[238,91],[234,105],[243,8],[211,8],[246,106],[98,107],[94,8],[97,108],[91,109],[90,1],[93,110],[92,111],[151,112],[152,113],[153,114],[139,115],[140,116],[141,117],[142,118],[143,119],[150,120],[144,121],[148,116],[145,122],[149,123],[146,124],[147,122],[68,125],[69,126],[67,127],[79,128],[75,129],[74,130],[70,8],[76,131],[78,132],[77,133],[72,134],[73,135],[71,136],[200,8],[201,117],[202,137],[168,138],[81,139],[83,67],[82,140],[154,8],[167,141],[156,142],[155,143],[159,144],[157,145],[158,145],[160,146],[161,142],[166,147],[163,148],[164,149],[165,150],[162,149],[66,151],[138,152],[136,153],[133,154],[134,155],[135,156],[137,157],[129,158],[130,159],[131,160],[128,161],[127,8],[132,162],[170,163],[178,117],[171,164],[173,165],[174,165],[172,163],[175,166],[176,167],[177,168],[182,169],[180,170],[179,171],[183,172],[181,173],[184,174],[185,175],[169,117],[199,176],[186,177],[187,117],[188,117],[189,117],[197,178],[194,117],[190,117],[196,117],[191,117],[192,117],[195,117],[193,179],[198,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/.pnpm/orderedmap@2.1.1/node_modules/orderedmap/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-model@1.25.4/node_modules/prosemirror-model/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-transform@1.12.0/node_modules/prosemirror-transform/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-state@1.4.4/node_modules/prosemirror-state/dist/index.d.ts","../../../../node_modules/.pnpm/prosemirror-view@1.41.8/node_modules/prosemirror-view/dist/index.d.ts","../../../prose/lib/view.d.ts","../../../ctx/lib/context/slice.d.ts","../../../ctx/lib/context/container.d.ts","../../../ctx/lib/context/index.d.ts","../../../ctx/lib/inspector/meta.d.ts","../../../ctx/lib/timer/timer.d.ts","../../../ctx/lib/timer/clock.d.ts","../../../ctx/lib/timer/index.d.ts","../../../ctx/lib/inspector/inspector.d.ts","../../../ctx/lib/inspector/index.d.ts","../../../ctx/lib/plugin/ctx.d.ts","../../../ctx/lib/plugin/types.d.ts","../../../ctx/lib/plugin/index.d.ts","../../../ctx/lib/index.d.ts","../../../../node_modules/.pnpm/prosemirror-inputrules@1.5.1/node_modules/prosemirror-inputrules/dist/index.d.ts","../../../prose/lib/inputrules.d.ts","../../../prose/lib/state.d.ts","../../../prose/lib/model.d.ts","../../../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../../../../node_modules/.pnpm/@types+mdast@4.0.4/node_modules/@types/mdast/index.d.ts","../../../../node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-from-markdown@2.0.3/node_modules/mdast-util-from-markdown/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.d.ts","../../../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.d.ts","../../../../node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.d.ts","../../../../node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.d.ts","../../../../node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.d.ts","../../../../node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/types.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.d.ts","../../../../node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/lib/index.d.ts","../../../../node_modules/.pnpm/remark-stringify@11.0.0/node_modules/remark-stringify/index.d.ts","../../../../node_modules/.pnpm/remark@15.0.1/node_modules/remark/index.d.ts","../../../transformer/lib/utility/stack.d.ts","../../../transformer/lib/utility/index.d.ts","../../../transformer/lib/serializer/stack-element.d.ts","../../../transformer/lib/serializer/state.d.ts","../../../transformer/lib/serializer/types.d.ts","../../../transformer/lib/utility/types.d.ts","../../../transformer/lib/parser/stack-element.d.ts","../../../transformer/lib/parser/state.d.ts","../../../transformer/lib/parser/types.d.ts","../../../transformer/lib/parser/index.d.ts","../../../transformer/lib/serializer/index.d.ts","../../../transformer/lib/index.d.ts","../../../core/lib/internal-plugin/atoms.d.ts","../../../core/lib/internal-plugin/commands.d.ts","../../../core/lib/internal-plugin/config.d.ts","../../../core/lib/internal-plugin/editor-state.d.ts","../../../core/lib/internal-plugin/editor-view.d.ts","../../../core/lib/internal-plugin/init.d.ts","../../../core/lib/internal-plugin/parser.d.ts","../../../core/lib/internal-plugin/schema.d.ts","../../../core/lib/internal-plugin/serializer.d.ts","../../../core/lib/internal-plugin/keymap.d.ts","../../../core/lib/internal-plugin/paste-rule.d.ts","../../../core/lib/internal-plugin/index.d.ts","../../../core/lib/editor/editor.d.ts","../../../core/lib/editor/index.d.ts","../../../core/lib/index.d.ts","../../../prose/lib/toolkit/browser.d.ts","../../../prose/lib/toolkit/input-rules/custom-input-rules.d.ts","../../../prose/lib/toolkit/input-rules/common.d.ts","../../../prose/lib/toolkit/input-rules/mark-rule.d.ts","../../../prose/lib/toolkit/input-rules/node-rule.d.ts","../../../prose/lib/toolkit/input-rules/index.d.ts","../../../prose/lib/toolkit/position/index.d.ts","../../../prose/lib/toolkit/prose/helper.d.ts","../../../prose/lib/toolkit/prose/types.d.ts","../../../prose/lib/toolkit/prose/node.d.ts","../../../prose/lib/toolkit/prose/schema.d.ts","../../../prose/lib/toolkit/prose/selection.d.ts","../../../prose/lib/toolkit/prose/index.d.ts","../../../prose/lib/toolkit/index.d.ts","../../../prose/lib/index.d.ts","../../../utils/lib/composable/utils.d.ts","../../../utils/lib/composable/$command.d.ts","../../../utils/lib/composable/$input-rule.d.ts","../../../utils/lib/composable/$paste-rule.d.ts","../../../utils/lib/composable/$mark.d.ts","../../../utils/lib/composable/$node.d.ts","../../../utils/lib/composable/$prose.d.ts","../../../utils/lib/composable/$shortcut.d.ts","../../../utils/lib/composable/$view.d.ts","../../../utils/lib/composable/$ctx.d.ts","../../../utils/lib/composable/composed/$node-schema.d.ts","../../../utils/lib/composable/composed/$mark-schema.d.ts","../../../utils/lib/composable/composed/$use-keymap.d.ts","../../../utils/lib/composable/composed/$attr.d.ts","../../../utils/lib/composable/composed/$remark.d.ts","../../../utils/lib/composable/composed/index.d.ts","../../../utils/lib/composable/index.d.ts","../../../utils/lib/macro/call-command.d.ts","../../../utils/lib/macro/force-update.d.ts","../../../utils/lib/macro/get-html.d.ts","../../../utils/lib/macro/get-markdown.d.ts","../../../utils/lib/macro/insert.d.ts","../../../utils/lib/macro/outline.d.ts","../../../utils/lib/macro/replace-all.d.ts","../../../utils/lib/macro/set-attr.d.ts","../../../utils/lib/macro/insert-pos.d.ts","../../../utils/lib/macro/replace-range.d.ts","../../../utils/lib/macro/markdown-to-slice.d.ts","../../../utils/lib/macro/index.d.ts","../../../utils/lib/pipe.d.ts","../../../utils/lib/index.d.ts","../src/__internal__/is-pure-text.ts","../src/__internal__/with-meta.ts","../src/index.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/globals.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/utility.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/assert.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/buffer.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/child_process.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/cluster.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/console.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/constants.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/crypto.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/dgram.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/dns.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/domain.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/events.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/fs.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/http.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/http2.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/https.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/inspector.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/module.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/net.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/os.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/path.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/process.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/punycode.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/querystring.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/readline.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/repl.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/sea.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/sqlite.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/stream/web.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/test.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/timers.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/tls.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/trace_events.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/tty.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/url.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/util.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/v8.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/vm.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/wasi.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/zlib.d.ts","../../../../node_modules/.pnpm/@types+node@24.12.3/node_modules/@types/node/index.d.ts"],"fileIdsList":[[84,205,259,276,277],[205,256,257,259,276,277],[205,258,259,276,277],[259,276,277],[205,259,264,276,277,294],[205,259,260,265,270,276,277,279,291,302],[205,259,260,261,270,276,277,279],[205,259,276,277],[205,259,262,276,277,303],[205,259,263,264,271,276,277,280],[205,259,264,276,277,291,299],[205,259,265,267,270,276,277,279],[205,258,259,266,276,277],[205,259,267,268,276,277],[205,259,269,270,276,277],[205,258,259,270,276,277],[205,259,270,271,272,276,277,291,302],[205,259,270,271,272,276,277,286,291,294],[205,251,259,267,270,273,276,277,279,291,302],[205,259,270,271,273,274,276,277,279,291,299,302],[205,259,273,275,276,277,291,299,302],[203,204,205,206,207,208,209,210,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[205,259,270,276,277],[205,259,276,277,278,302],[205,259,267,270,276,277,279,291],[205,259,276,277,280],[205,259,276,277,281],[205,258,259,276,277,282],[205,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[205,259,276,277,284],[205,259,276,277,285],[205,259,270,276,277,286,287],[205,259,276,277,286,288,303,305],[205,259,271,276,277],[205,259,270,276,277,291,292,294],[205,259,276,277,293,294],[205,259,276,277,291,292],[205,259,276,277,294],[205,259,276,277,295],[205,256,259,276,277,291,296,302],[205,259,270,276,277,297,298],[205,259,276,277,297,298],[205,259,264,276,277,279,291,299],[205,259,276,277,300],[205,259,276,277,279,301],[205,259,273,276,277,285,302],[205,259,264,276,277,303],[205,259,276,277,291,304],[205,259,276,277,278,305],[205,259,276,277,306],[205,259,264,276,277],[205,251,259,276,277],[205,259,276,277,307],[205,251,259,270,272,276,277,282,291,294,302,304,305,307],[205,259,276,277,291,308],[86,87,88,89,205,259,276,277],[85,86,87,89,205,259,276,277],[85,86,89,205,259,276,277],[101,102,122,205,259,276,277],[85,123,205,259,276,277],[85,205,259,276,277],[103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,205,259,276,277],[84,85,205,259,276,277],[62,64,205,259,276,277],[61,205,259,276,277],[62,63,65,205,259,276,277],[62,205,259,276,277],[62,63,64,205,259,276,277],[85,86,89,98,99,100,125,205,259,276,277],[85,89,93,98,100,125,205,259,276,277],[85,98,100,123,124,125,205,259,276,277],[85,93,98,100,123,125,205,259,276,277],[85,98,100,125,205,259,276,277],[95,205,259,276,277],[205,217,220,223,224,259,276,277,302],[205,220,259,276,277,291,302],[205,220,224,259,276,277,302],[205,259,276,277,291],[205,214,259,276,277],[205,218,259,276,277],[205,216,217,220,259,276,277,302],[205,259,276,277,279,299],[205,259,276,277,309],[205,214,259,276,277,309],[205,216,220,259,276,277,279,302],[205,211,212,213,215,219,259,270,276,277,291,302],[205,220,228,236,259,276,277],[205,212,218,259,276,277],[205,220,245,246,259,276,277],[205,212,215,220,259,276,277,294,302,309],[205,220,259,276,277],[205,216,220,259,276,277,302],[205,211,259,276,277],[205,214,215,216,218,219,220,221,222,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,246,247,248,249,250,259,276,277],[205,220,238,241,259,267,276,277],[205,220,228,229,230,259,276,277],[205,218,220,229,231,259,276,277],[205,219,259,276,277],[205,212,214,220,259,276,277],[205,220,224,229,231,259,276,277],[205,224,259,276,277],[205,218,220,223,259,276,277,302],[205,212,216,220,228,259,276,277],[205,220,238,259,276,277],[205,231,259,276,277],[205,214,220,245,259,276,277,294,307,309],[93,97,205,259,276,277],[84,93,94,96,98,100,125,205,259,276,277],[90,205,259,276,277],[91,92,205,259,276,277],[84,91,93,205,259,276,277],[79,150,205,259,276,277],[151,205,259,276,277],[150,152,205,259,276,277],[66,79,81,82,125,138,152,205,259,276,277],[79,82,205,259,276,277],[79,205,259,276,277],[79,82,83,138,205,259,276,277],[66,79,205,259,276,277],[139,140,141,142,143,144,145,146,147,148,149,205,259,276,277],[79,152,205,259,276,277],[79,138,205,259,276,277],[66,79,83,205,259,276,277],[79,83,138,205,259,276,277],[67,205,259,276,277],[67,68,205,259,276,277],[68,205,259,276,277],[69,73,75,78,205,259,276,277],[70,74,205,259,276,277],[69,70,73,205,259,276,277],[69,73,75,79,205,259,276,277],[76,77,205,259,276,277],[75,76,205,259,276,277],[71,205,259,276,277],[71,72,205,259,276,277],[72,205,259,276,277],[66,82,83,153,168,199,200,201,205,259,276,277],[167,205,259,276,277],[80,205,259,276,277],[64,205,259,276,277],[154,159,160,166,205,259,276,277],[82,83,205,259,276,277],[81,82,205,259,276,277],[155,156,157,158,205,259,276,277],[81,83,156,205,259,276,277],[66,205,259,276,277],[161,163,164,165,205,259,276,277],[83,162,205,259,276,277],[83,205,259,276,277],[82,83,162,205,259,276,277],[65,205,259,276,277],[128,136,137,205,259,276,277],[134,135,205,259,276,277],[83,128,205,259,276,277],[83,128,133,135,205,259,276,277],[83,132,134,205,259,276,277],[130,131,205,259,276,277],[128,138,205,259,276,277],[83,128,129,131,205,259,276,277],[83,130,205,259,276,277],[127,132,205,259,276,277],[83,98,100,125,126,131,135,205,259,276,277],[79,153,169,205,259,276,277],[79,81,169,205,259,276,277],[79,83,138,169,205,259,276,277],[79,82,169,205,259,276,277],[79,82,153,169,205,259,276,277],[66,79,169,185,205,259,276,277],[83,178,205,259,276,277],[79,138,173,178,205,259,276,277],[79,138,174,178,205,259,276,277],[79,138,178,205,259,276,277],[79,82,176,178,205,259,276,277],[179,180,181,182,183,205,259,276,277],[169,170,171,172,173,174,175,176,177,178,184,205,259,276,277],[185,197,198,205,259,276,277],[79,153,205,259,276,277],[186,187,188,189,190,191,192,193,194,195,196,205,259,276,277],[79,83,205,259,276,277]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","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":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","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":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","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":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","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":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"264f935450101e4b000eb351cf75c9d799ca20a278b260a9e5770303b5f2b6a3","impliedFormat":99},{"version":"f6f171b23ae6db93454343f1b788960f799c8f37043904874a752c0990c6fca6","impliedFormat":99},{"version":"304e41926d3299c9b30bfd418c35fffd2bd9e5ac726d6f758fb4e0f40a738d51","impliedFormat":99},{"version":"02ab5dbcaa58da1d58c46c7cdfa7f94792c5ccf0fc7c0622ef33755fe415366c","impliedFormat":99},{"version":"7d3b1ddfce35445b76298090a9dcadee8acf20f4c281eb1f2ce14fc7232c9470","affectsGlobalScope":true,"impliedFormat":99},"1b4ed9deaba72d4bc8495bf46db690dbf91040da0cb2401db10bad162732c0e2","73cc073d7a102374d6b9bcdbde8072f3aa3c8f86767f562086b6a7a7df5f22c0","e66deb230968faf1a8f37ea6f217f319dd0dad7a39ead1bf5d4f54e2eb5ce4bd","13ee17bbdd42459d6450899cea1999aab64c723328e773c0be5e8a13b51b6259","f79062b892847b4e33d0b730bf9dcf66ac24fc3fe9df7bba4d0997c6bdf6cbde","20f3a5481b2c009533e9e6b864cbd4ae3c09ccfca0577918b3587cda295e7071","2797c77cc0da0836a37c8c1fe64942a999c73f811f5481d827ac7d8cb9ddedd3","5a40849c3a5d5a8c2aa754fc964830ea344c94bfeddd4b442bdeae899e2f5339","848836f528d4ac80a5b3212c719225a3ba09406d44fea755cb642299a68d7056","fae981646738728f2b882c14625b99c23c430400a21c081dc6888d9703bd6c68","45c8a077eb724bae4e1fc0d15f76618650e32e55c4582dc1f27153ecdeb66ca6","302c082712d8fe41be387cd34af45b163b5314c04ddeefe53b1cb57fe46d3221","0c1a84d7b974db1961c6e9ab71d5257dfa38d99fb6300f22de55750526c9daef","69bc40bb169ea922cab72dc2142f37e75b44095cf1e79ca1b2809164c284de57",{"version":"2a04530c2579ddcf996e1cf017caaba573e0ebf8a5b9e45d3bc25ba4489fb5a3","impliedFormat":99},"f41d91b2db1112fcc673a6862fe68cadcbdd0a66ed16b47ac74a0a6da8932bb4","e689cc8cd8a102d31c9d3a7b0db0028594202093c4aca25982b425e8ae744556","478e59ac0830a0f6360236632d0d589fb0211183aa1ab82292fbca529c0cce35",{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"a5dbd4c9941b614526619bad31047ddd5f504ec4cdad88d6117b549faef34dd3","impliedFormat":99},{"version":"d36518bd617ff673c7d9f372706f241932a43f27673187f2a8472e93c40041c6","impliedFormat":99},{"version":"f8eb2909590ec619643841ead2fc4b4b183fbd859848ef051295d35fef9d8469","impliedFormat":99},{"version":"fe784567dd721417e2c4c7c1d7306f4b8611a4f232f5b7ce734382cf34b417d2","impliedFormat":99},{"version":"2b37ba54ec067598bf912d56fcb81f6d8ad86a045c757e79440bdef97b52fe1b","impliedFormat":99},{"version":"1bc9dd465634109668661f998485a32da369755d9f32b5a55ed64a525566c94b","impliedFormat":99},{"version":"5702b3c2f5d248290ed99419d77ca1cc3e6c29db5847172377659c50e6303768","impliedFormat":99},{"version":"9764b2eb5b4fc0b8951468fb3dbd6cd922d7752343ef5fbf1a7cd3dfcd54a75e","impliedFormat":99},{"version":"1fc2d3fe8f31c52c802c4dee6c0157c5a1d1f6be44ece83c49174e316cf931ad","impliedFormat":99},{"version":"dc4aae103a0c812121d9db1f7a5ea98231801ed405bf577d1c9c46a893177e36","impliedFormat":99},{"version":"106d3f40907ba68d2ad8ce143a68358bad476e1cc4a5c710c11c7dbaac878308","impliedFormat":99},{"version":"42ad582d92b058b88570d5be95393cf0a6c09a29ba9aa44609465b41d39d2534","impliedFormat":99},{"version":"36e051a1e0d2f2a808dbb164d846be09b5d98e8b782b37922a3b75f57ee66698","impliedFormat":99},{"version":"4f7e6730a707b0d4971d96de3b562819ce304af770723707a58a578dd55a5e52","impliedFormat":99},{"version":"d1c1213e9176398b4d1d9aa543691181fd5ae23ae5415e80ede41f1ec1ccf72a","impliedFormat":99},{"version":"45d1e8fb4fd3e265b15f5a77866a8e21870eae4c69c473c33289a4b971e93704","impliedFormat":99},{"version":"cd40919f70c875ca07ecc5431cc740e366c008bcbe08ba14b8c78353fb4680df","impliedFormat":99},{"version":"ddfd9196f1f83997873bbe958ce99123f11b062f8309fc09d9c9667b2c284391","impliedFormat":99},{"version":"2999ba314a310f6a333199848166d008d088c6e36d090cbdcc69db67d8ae3154","impliedFormat":99},{"version":"62c1e573cd595d3204dfc02b96eba623020b181d2aa3ce6a33e030bc83bebb41","impliedFormat":99},{"version":"ca1616999d6ded0160fea978088a57df492b6c3f8c457a5879837a7e68d69033","impliedFormat":99},{"version":"835e3d95251bbc48918bb874768c13b8986b87ea60471ad8eceb6e38ddd8845e","impliedFormat":99},{"version":"de54e18f04dbcc892a4b4241b9e4c233cfce9be02ac5f43a631bbc25f479cd84","impliedFormat":99},{"version":"453fb9934e71eb8b52347e581b36c01d7751121a75a5cd1a96e3237e3fd9fc7e","impliedFormat":99},{"version":"bc1a1d0eba489e3eb5c2a4aa8cd986c700692b07a76a60b73a3c31e52c7ef983","impliedFormat":99},{"version":"4098e612efd242b5e203c5c0b9afbf7473209905ab2830598be5c7b3942643d0","impliedFormat":99},{"version":"28410cfb9a798bd7d0327fbf0afd4c4038799b1d6a3f86116dc972e31156b6d2","impliedFormat":99},{"version":"514ae9be6724e2164eb38f2a903ef56cf1d0e6ddb62d0d40f155f32d1317c116","impliedFormat":99},{"version":"970e5e94a9071fd5b5c41e2710c0ef7d73e7f7732911681592669e3f7bd06308","impliedFormat":99},{"version":"491fb8b0e0aef777cec1339cb8f5a1a599ed4973ee22a2f02812dd0f48bd78c1","impliedFormat":99},{"version":"6acf0b3018881977d2cfe4382ac3e3db7e103904c4b634be908f1ade06eb302d","impliedFormat":99},{"version":"2dbb2e03b4b7f6524ad5683e7b5aa2e6aef9c83cab1678afd8467fde6d5a3a92","impliedFormat":99},{"version":"135b12824cd5e495ea0a8f7e29aba52e1adb4581bb1e279fb179304ba60c0a44","impliedFormat":99},{"version":"e4c784392051f4bbb80304d3a909da18c98bc58b093456a09b3e3a1b7b10937f","impliedFormat":99},{"version":"2e87c3480512f057f2e7f44f6498b7e3677196e84e0884618fc9e8b6d6228bed","impliedFormat":99},{"version":"66984309d771b6b085e3369227077da237b40e798570f0a2ddbfea383db39812","impliedFormat":99},{"version":"e41be8943835ad083a4f8a558bd2a89b7fe39619ed99f1880187c75e231d033e","impliedFormat":99},{"version":"260558fff7344e4985cfc78472ae58cbc2487e406d23c1ddaf4d484618ce4cfd","impliedFormat":99},{"version":"e6274d956641c1cbd5a01a221a85a6671fd85104ed6b530f8d34ad3086804133","impliedFormat":99},{"version":"77516308358982bb05209e8c0ed6f321860e03393587d89f61055941e5bbcdd2","impliedFormat":99},{"version":"dc8652855a95ef9b9c12be8d2f5e6fc37b96aa2144f6c6f195cd1d2e07f721ee","impliedFormat":99},"e2cb25ca55e10ba874410188a53331a6b0b2bc13c0ee4d538bde50460a4e1b77","041afde4e1ac27e6fabdc2ca87882a3a766443fcfe1a1cfc3ed78bcc1c25b28a","c2049793874bbeafd60402bab915f3d285f4057e718dfdefe8a54ccc80c991dd","8a2b6f999a708119f4fa55fc58c5803ca9563340d0a54b9fe2a4fa14838f148c","2db5b1bbf946e20cef3c889cb7be46e3da384bdd1b4b53964253d97635718774","79e620484ae1a7011482631159563e4729f7f4d4c316b914125cb95f678ffbb9","6434c2976daf446cfd95935af4e0a0b6b369ce81af183579dab3ac6567dbbfd0","f50c1778b48a9275078ad81abaa5b4cb13a295b3889986f8e72fe61dd9cd8b86","6e935a5aec1b1f86cfa97fb93ec13c8759479712014d7dc4c13f140f7d409357","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","8cd4c86b90f9a96ba804585a4b6a998f484a860af3dfd12641ecb9eca109274b","1b92de1f5b74cf4bda283aa7688c80781e9c7273f44a4ef2db084747a94be933","8c24aeb14985e8089f29e1fea075e95a7c8825077277079d5dc4130ceb6339de","ff041f34cc1936cb45f94de1924d396abd69b3d6e0cc887dfaa0b6ec176e27e1","6abd2f68e6651205f5d7763dcf7a5b5e5dc28b6194b097b467913d2cf19c1dd2","c04c352fc277c57e16519814a13e1b84e6c54c461b89ee63c8bff94ddf615555","e406a8398f12e8bb0d7661b9974a9ce78043a916cd2c652f7b82b7889e57f9e8","441c8ea68ff583cefd0f77d2a1699f6328d714ebfb9435ffedad5470392de2e7","cc60d13b9e2058908f082cca058357d2ebd83143b3dc4e3a01731e8a4b7ae2fe","5ca4d7a999b9fa8c7e2ef9746968eaeabb8e69a904cc62a3c18ac23b9664c8a8","bff722032fb479d76cdd167e0aa05e2e3ca9b728cff777e893aa694bad01e3a9","3fc92b50147ec179c1db1355901683a7f48646c6203ae982f2bc31dc8959f4ff","ad43cfeea2ffc4f26107e49ae92bed3fe01b0c2aa3e328e293d7b0dceb01300f","50e52950b1b92455f40c3fba61ee9a43e74bf9bdf6a25e01ad2e3a2226bbb2ec","cd2e2d6ffad8a1de80249fd4aa35f6c6f9160c18f69fbaf6507072eba208abda","3b8dd8f967501f6193f2d31f8a124e05186264f37f1b73d073cf39c6e123fe50","bc699cb86e1528d370a29ae99fe8f89e3a838bb620ad4071a4c9999a390c8361","d9fc24b35b002a548f4414e49fe3793d9a5b35ee52005272caf4318f2e4f8365","38815495490dbe68097e68af671c9f38d7b7becdc86046701caf27b3aefc1238","4f5fa1f41df5934999037079798a183a672f6a51bf00fecd8a58a40bf8a6ab4b","9228f51f27ecf7b4ea783d9a8ad6fa0b04aedd65f15765ef2e2b4fa993230c71","a4a6eecc3b94a291ecd8001af8bc77860553c1cd0539b7df753db546b90957f1","531aa8b58051f4a06c342c0e058080be43e46ec8caeb686e988f01506dd86e8b","830ef6b30732865e6c28f3a1a5ab6b2d912705dde825638ac06b125ec43d21d0","36a26b110dcea31cd8bab601c2b73930f04e8b5417f9749d9f5fb1eab2a763b6","4c5e77be4579c26825232a95edbf67c1fe38ef7af273b3829831e95cbeb86bb1","fe92ca191d247c305b79d52f46a30ba4d7c93dd1c3e92d7c6c613d330b3da187","89854e488820d88a1b94cf1fd4f156c48859af845d09130f81d516c1aa5db130","0b91eff2dfe722ddce2e4541b66db7b80b83c9912ddd338906bff6e0d1b992c9","7c746be7d0a5cd1a23a4b9f9290669f7c49ca4b315e19c103b1c8ede5037b984","40bcee342fdfb92c1e899d6eb5dfe6e4b1d7c22ec66ddefaec6e287a182e2d9b","717d62319839b9544128ebd5d5d414a2ef6aca2068d40045336d838e2872bdc9","487ae9dd80a97c7c7fa8cb272b81033c4252b064047f8b10b2d421e3a909dacf","0e0f762a06bd12f01872c86e03fd88a6830c3991ea17734ea2859a43a96b6ac5","88738bfae85b658c5728b5d84e7e9b78788281edc397bc6a75da4d1b554d2041","af1e3e5216a3a605be2384495ea43d50684dc0b674b0fc795cdaaaa51f979db6","d531e9345fbc0cb9e1fa9428752f675b40f2c32c8bda0c1547fc64522e3295d5","33be8125f7170aedbf456f05059014f0fbbfbf4842eb76d3c43a86bb82045df6","2246cd9c0a20fdf3df7fa37ee25c4e8d3989d38eb6274203fb0e9d43020a5cfc","f6d2f543d91edabb84f53c26e611514f0ecec59b72f6e5321145c00c70d0f1e7","6e12e26efaaeb591c891d49658152d874a1fc869c1231176172a4e90a78320c4","8e0872445888b4eac9c8915022cc2b58291db248fc33b0994c7e3296d7af306a","7064efe511093c8ab839f6c8bbe2ffc2911bc299ec8880f2129b541e2e32cc4c","41259a2d0eac0369e1581e08e5aef6ffef48f9ffc3d06d874524c9da6f1e4f29","9722d152fcdb95a635c8132764b7ded085073b4734daf2b19798be965fb10160","db3f677fdf3de11b7a334e5c8e677df05686b3d6e172d46ad3a1674790e5d03c","3a5ebec0a04030822776a5dcc7f9b053a38d79aa4b15e7c4df009ee5ac813dbf","77b54b2bf7d6e4a05b79d286903ad9f71141f91409729c5deb8bfa417d7f0960","573f356148118ea54c7b9a2eff374329022b1e38d5a1070cae53c97d7b0ef355","ef5ae01c8b2b11403554c319af51db9c3dc26051cb077b75c8885b5d02821557","1da18878fb9f757426713faa0c4b289ff717f1bb26bcefc358c2b03aae5f11be","5d7c0080e6e16f13e23ec822364b951a8135242ec61db38d230725c4cc8bba00","9fe63d563259a1a7e32332cd5cc24bccd9f0a34d0d9f2e80df7370d4205e91cb","947c6ccd6a0b2805b4e3479b51112d8affc4b64ecb209ee15a480a10c44a48a1","c4f0b3fb0d90e865c3ab69b9fff9c8eb13ff8fd49bcfce1f10f696bf5db9cdc9","e39e74456caf2be7616c1327e6447e6559e64d5ffb161d43bb44f50b3461ee59","8c3dde564136c2b88384fa63c823c9b4282b5b813ad8287a1c8f3734efb801a0","defdff60f915e05c089175d08b85199747f561dc318ac8dceacc844753060e6d","1a3dbaf2ef5ba30576b22fe1a26c868d9c76646670afb0c90ce7b6e1233211b2","d6faa230dcddc146229e72291ed444476e5c3fcf75b102fb0c78a46510e82424","bfa14541c2b697d5a73041bfa7a318b47db2301e2045856c7ab9db7bb3f4d21b","caee8e88a02710517f1d1849b48fa8793878f4ab0c51cde5c025ba6f21b946df","bbf57449e9341dc4b6f56e7ce74d0edee6cd7c4ca55b52664469de0c7d384445",{"version":"25cf80dff244f1e35c68def8835835dbfe7e1d54ed578aab757717aeddb4c147","signature":"121eb1fa5e2aec5ce93a71c78791045a95f9f5879e1b67c32226ed1bf281f0a7"},{"version":"3b2ae4e42f90ee29bb54f6911d061f4fb7103d7a8d93da0a55402f2136e2efa6","signature":"6d17ed9b7135b0b3db99ead1c9a36ed2c4891df097fff6c3e2a9ef3df9a5740f"},{"version":"b21aab0ff70738e9cf4c38b51f17bc3c4b41256514e7d53c23418ed58b8594e4","signature":"843d3846122a4373ccc7fd509cc4d3e8cf012225590f11260fe340eec05ef9c2"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"f724236417941ea77ec8d38c6b7021f5fb7f8521c7f8c1538e87661f2c6a0774","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"c06b2652ffeb89afd0f1c52c165ced77032f9cd09bc481153fbd6b5504c69494","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"612422d5ba6b4a5c4537f423e9199645468ad80a689801da63ab7edb43f7b835","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc8c6f5322961b56d9906601b20798725df60baeab45ec014fba9f795d5596fd","impliedFormat":1},{"version":"0904660ae854e6d41f6ff25356db1d654436c6305b0f0aa89d1532df0253486e","impliedFormat":1},{"version":"060d305fe4494d8cb2b99d620928d369d1ee55c1645f5e729a2aca07d0f108cb","impliedFormat":1},{"version":"2c2591488d4a4cd765d0410f7e1e36b026828bd915330850e8464f47965123b9","impliedFormat":1},{"version":"0c50296ee73dae94efc3f0da4936b1146ca6ce2217acfabb44c19c9a33fa30e5","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"0e5974dfff7a97181c7c376545f126b20acf2f1341db7d3fccea4977bf3ce19c","impliedFormat":1},{"version":"c7f977ea78a1b060a30554c1c4ec0e2269c6e305a349ca2ada14931ac27ecc0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3806cdd6b48ba01a9198134e62a384ec217a98f316d4baef74dd46d62c947a63","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"04bf1aa481d1adfb16d93d76e44ce71c51c8ef68039d849926551199489637f6","impliedFormat":1},{"version":"2c9adcc85574b002c9a6311ff2141055769e0071856ec979d92ff989042b1f1b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8bf3fe89ec8baa335f6370b9fa36308e1bc7a72e2eb2dad1e94f31e27fa28b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"35390d6fa94bdb432c5d0bcb6547bdd11406c2692a6b90b9e47be2105ea19bd6","impliedFormat":1},{"version":"3910dab597c40e173bf0e0d419d3ce9682c54ebf6ae84849f9b829b1451a17ec","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"486c074a5c0f2254345c0d1c9540380f5463999e42d7e1a159305ea823d3c4b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"8e7c3bed5f19ade8f911677ddc83052e2283e25b0a8654cd89db9079d4b323c7","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"ccf3afaeebbeee4ca9092101e99fd6abd681116b6e5ec23e381bbb1e1f32262c","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"ab7818a9d57a9297b90e456fc68b77f84d74395a9210a3cfa9d87db33aff8b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb08062718a5470cd864c1fae0eb5b3a3adc5bcd05dcf87608d6f60b65eca3f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3a815b7d1aebc0646b91548eab2fc19dada09ff255d04c71ced00bbd3058c8eb","impliedFormat":1},{"version":"255d948f87f24ffd57bcb2fdf95792fd418a2e1f712a98cf2cce88744d75085c","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"836b36913830645ac3b28fe33731aac3fdb3524ee8adbb4cdab9a5c189f41943","affectsGlobalScope":true,"impliedFormat":1},{"version":"bfd3b3c21a56104693183942e221c1896ee23bcb8f8d91ab0b941f7b32985411","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1}],"root":[[200,202]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./tsconfig.tsbuildinfo","useUnknownInCatchVariables":true,"verbatimModuleSyntax":true},"referencedMap":[[85,1],[256,2],[257,2],[258,3],[205,4],[259,5],[260,6],[261,7],[203,8],[262,9],[263,10],[264,11],[265,12],[266,13],[267,14],[268,14],[269,15],[270,16],[271,17],[272,18],[206,8],[204,8],[273,19],[274,20],[275,21],[309,22],[276,23],[277,8],[278,24],[279,25],[280,26],[281,27],[282,28],[283,29],[284,30],[285,31],[286,32],[287,32],[288,33],[289,8],[290,34],[291,35],[293,36],[292,37],[294,38],[295,39],[296,40],[297,41],[298,42],[299,43],[300,44],[301,45],[302,46],[303,47],[304,48],[305,49],[306,50],[207,8],[208,51],[209,8],[210,8],[252,52],[253,53],[254,8],[255,38],[307,54],[308,55],[84,8],[89,56],[88,57],[87,58],[123,59],[103,60],[104,60],[105,60],[106,60],[107,60],[108,60],[109,61],[111,60],[110,60],[122,62],[112,60],[114,60],[113,60],[116,60],[115,60],[117,60],[118,60],[119,60],[120,60],[121,60],[102,60],[101,63],[86,8],[61,8],[80,64],[62,65],[64,66],[63,67],[65,68],[100,69],[99,70],[125,71],[124,72],[126,73],[96,74],[95,8],[59,8],[60,8],[10,8],[12,8],[11,8],[2,8],[13,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[3,8],[21,8],[22,8],[4,8],[23,8],[27,8],[24,8],[25,8],[26,8],[28,8],[29,8],[30,8],[5,8],[31,8],[32,8],[33,8],[34,8],[6,8],[38,8],[35,8],[36,8],[37,8],[39,8],[7,8],[40,8],[45,8],[46,8],[41,8],[42,8],[43,8],[44,8],[8,8],[50,8],[47,8],[48,8],[49,8],[51,8],[9,8],[52,8],[53,8],[54,8],[56,8],[55,8],[1,8],[57,8],[58,8],[228,75],[240,76],[226,77],[241,78],[250,79],[217,80],[218,81],[216,82],[249,83],[244,84],[248,85],[220,86],[237,87],[219,88],[247,89],[214,90],[215,84],[221,91],[222,8],[227,92],[225,91],[212,93],[251,94],[242,95],[231,96],[230,91],[232,97],[235,98],[229,99],[233,100],[245,83],[223,101],[224,102],[236,103],[213,78],[239,104],[238,91],[234,105],[243,8],[211,8],[246,106],[98,107],[94,8],[97,108],[91,109],[90,1],[93,110],[92,111],[151,112],[152,113],[153,114],[139,115],[140,116],[141,117],[142,118],[143,119],[150,120],[144,121],[148,116],[145,122],[149,123],[146,124],[147,122],[68,125],[69,126],[67,127],[79,128],[75,129],[74,130],[70,8],[76,131],[78,132],[77,133],[72,134],[73,135],[71,136],[200,8],[201,117],[202,137],[168,138],[81,139],[83,67],[82,140],[154,8],[167,141],[156,142],[155,143],[159,144],[157,145],[158,145],[160,146],[161,142],[166,147],[163,148],[164,149],[165,150],[162,149],[66,151],[138,152],[136,153],[133,154],[134,155],[135,156],[137,157],[129,158],[130,159],[131,160],[128,161],[127,8],[132,162],[170,163],[178,117],[171,164],[173,165],[174,165],[172,163],[175,166],[176,167],[177,168],[182,169],[180,170],[179,171],[183,172],[181,173],[184,174],[185,175],[169,117],[199,176],[186,177],[187,117],[188,117],[189,117],[197,178],[194,117],[190,117],[196,117],[191,117],[192,117],[195,117],[193,179],[198,8]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jvs-milkdown/plugin-clipboard",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.17",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"milkdown",
|
|
6
6
|
"milkdown plugin"
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@jvs-milkdown/core": "^1.2.
|
|
29
|
-
"@jvs-milkdown/ctx": "^1.2.
|
|
30
|
-
"@jvs-milkdown/prose": "^1.2.
|
|
31
|
-
"@jvs-milkdown/utils": "^1.2.
|
|
28
|
+
"@jvs-milkdown/core": "^1.2.17",
|
|
29
|
+
"@jvs-milkdown/ctx": "^1.2.17",
|
|
30
|
+
"@jvs-milkdown/prose": "^1.2.17",
|
|
31
|
+
"@jvs-milkdown/utils": "^1.2.17"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"build": "vite build"
|
package/src/index.ts
CHANGED
|
@@ -36,10 +36,14 @@ function dispatchPasteSlice(view: EditorView, slice: Slice): boolean {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
function sanitizeTableHTML(html: string): string {
|
|
39
|
-
if (typeof window === 'undefined' ||
|
|
39
|
+
if (typeof window === 'undefined' || window.DOMParser === undefined) {
|
|
40
40
|
return html
|
|
41
41
|
}
|
|
42
|
-
if (
|
|
42
|
+
if (
|
|
43
|
+
!html.includes('<table') &&
|
|
44
|
+
!html.includes('<td') &&
|
|
45
|
+
!html.includes('<th')
|
|
46
|
+
) {
|
|
43
47
|
return html
|
|
44
48
|
}
|
|
45
49
|
|
|
@@ -52,15 +56,30 @@ function sanitizeTableHTML(html: string): string {
|
|
|
52
56
|
}
|
|
53
57
|
|
|
54
58
|
const BLOCK_TAGS = new Set([
|
|
55
|
-
'P',
|
|
56
|
-
'
|
|
57
|
-
'
|
|
59
|
+
'P',
|
|
60
|
+
'DIV',
|
|
61
|
+
'H1',
|
|
62
|
+
'H2',
|
|
63
|
+
'H3',
|
|
64
|
+
'H4',
|
|
65
|
+
'H5',
|
|
66
|
+
'H6',
|
|
67
|
+
'LI',
|
|
68
|
+
'UL',
|
|
69
|
+
'OL',
|
|
70
|
+
'BLOCKQUOTE',
|
|
71
|
+
'PRE',
|
|
72
|
+
'SECTION',
|
|
73
|
+
'ARTICLE',
|
|
74
|
+
'ASIDE',
|
|
75
|
+
'HEADER',
|
|
76
|
+
'FOOTER',
|
|
77
|
+
'NAV',
|
|
58
78
|
])
|
|
59
79
|
|
|
60
80
|
const renameToSpan = (el: Element) => {
|
|
61
81
|
const span = doc.createElement('span')
|
|
62
|
-
for (
|
|
63
|
-
const attr = el.attributes[i]!
|
|
82
|
+
for (const attr of Array.from(el.attributes)) {
|
|
64
83
|
span.setAttribute(attr.name, attr.value)
|
|
65
84
|
}
|
|
66
85
|
while (el.firstChild) {
|
|
@@ -72,7 +91,8 @@ function sanitizeTableHTML(html: string): string {
|
|
|
72
91
|
cells.forEach((cell) => {
|
|
73
92
|
const blocks: Element[] = []
|
|
74
93
|
const collectBlocks = (node: Node) => {
|
|
75
|
-
if (node.nodeType === 1) {
|
|
94
|
+
if (node.nodeType === 1) {
|
|
95
|
+
// Node.ELEMENT_NODE
|
|
76
96
|
const el = node as Element
|
|
77
97
|
if (BLOCK_TAGS.has(el.tagName.toUpperCase())) {
|
|
78
98
|
blocks.push(el)
|
|
@@ -85,7 +105,9 @@ function sanitizeTableHTML(html: string): string {
|
|
|
85
105
|
blocks.forEach((block) => {
|
|
86
106
|
const prev = block.previousSibling
|
|
87
107
|
if (prev) {
|
|
88
|
-
const isAlreadyBR =
|
|
108
|
+
const isAlreadyBR =
|
|
109
|
+
prev.nodeType === 1 &&
|
|
110
|
+
(prev as Element).tagName.toUpperCase() === 'BR'
|
|
89
111
|
if (!isAlreadyBR) {
|
|
90
112
|
const br = doc.createElement('br')
|
|
91
113
|
block.parentNode?.insertBefore(br, block)
|
|
@@ -94,8 +116,12 @@ function sanitizeTableHTML(html: string): string {
|
|
|
94
116
|
|
|
95
117
|
const next = block.nextSibling
|
|
96
118
|
if (next) {
|
|
97
|
-
const isNextBlock =
|
|
98
|
-
|
|
119
|
+
const isNextBlock =
|
|
120
|
+
next.nodeType === 1 &&
|
|
121
|
+
BLOCK_TAGS.has((next as Element).tagName.toUpperCase())
|
|
122
|
+
const isNextBR =
|
|
123
|
+
next.nodeType === 1 &&
|
|
124
|
+
(next as Element).tagName.toUpperCase() === 'BR'
|
|
99
125
|
if (!isNextBlock && !isNextBR) {
|
|
100
126
|
const br = doc.createElement('br')
|
|
101
127
|
block.parentNode?.insertBefore(br, next)
|
|
@@ -103,8 +129,7 @@ function sanitizeTableHTML(html: string): string {
|
|
|
103
129
|
}
|
|
104
130
|
})
|
|
105
131
|
|
|
106
|
-
for (
|
|
107
|
-
const block = blocks[i]!
|
|
132
|
+
for (const block of [...blocks].reverse()) {
|
|
108
133
|
if (block.parentNode) {
|
|
109
134
|
renameToSpan(block)
|
|
110
135
|
}
|