diff --git a/.gitignore b/.gitignore index bc0541fef..ce6d13ba4 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,5 @@ release /test-results/ /playwright-report/ /playwright/.cache/ +.env +*.pem diff --git a/.todo.txt b/.todo.txt new file mode 100644 index 000000000..446b47ddc --- /dev/null +++ b/.todo.txt @@ -0,0 +1,7 @@ + +review toolbar code +fix design of menus (smaller items, border?) + +see if addToHistory: false is needed +track last affected position to update toolbar +enable / disable show selection plugin \ No newline at end of file diff --git a/docs/pages/examples/_meta.json b/docs/pages/examples/_meta.json index aa81bb87a..ea06b6952 100644 --- a/docs/pages/examples/_meta.json +++ b/docs/pages/examples/_meta.json @@ -7,5 +7,6 @@ "interoperability": "Interoperability", "custom-schema": "Custom Schemas", "collaboration": "Collaboration", - "extensions": "Extensions" + "extensions": "Extensions", + "ai": "AI" } diff --git a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx index 48400a273..359b9b95c 100644 --- a/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx +++ b/examples/03-ui-components/02-formatting-toolbar-buttons/BlueButton.tsx @@ -1,9 +1,9 @@ +import "@blocknote/mantine/style.css"; import { useBlockNoteEditor, useComponentsContext, useEditorContentOrSelectionChange, } from "@blocknote/react"; -import "@blocknote/mantine/style.css"; import { useState } from "react"; // Custom Formatting Toolbar Button to toggle blue text & background color. diff --git a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx index 984cf3d4e..95c348144 100644 --- a/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx +++ b/examples/03-ui-components/06-suggestion-menus-slash-menu-items/App.tsx @@ -4,18 +4,19 @@ import { PartialBlock, } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { DefaultReactSuggestionItem, getDefaultReactSlashMenuItems, SuggestionMenuController, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; import { HiOutlineGlobeAlt } from "react-icons/hi"; // Custom Slash Menu item to insert a block after the current one. const insertHelloWorldItem = (editor: BlockNoteEditor) => ({ + key: "hello_world", title: "Insert Hello World", onItemClick: () => { // Block that the text cursor is currently in. diff --git a/examples/06-custom-schema/01-alert-block/App.tsx b/examples/06-custom-schema/01-alert-block/App.tsx index 6d58d740e..044486440 100644 --- a/examples/06-custom-schema/01-alert-block/App.tsx +++ b/examples/06-custom-schema/01-alert-block/App.tsx @@ -29,6 +29,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert an Alert block const insertAlert = (editor: typeof schema.BlockNoteEditor) => ({ + key: "alert", title: "Alert", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx index c1fec94a4..f4116fbec 100644 --- a/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx +++ b/examples/06-custom-schema/02-suggestion-menus-mentions/App.tsx @@ -12,7 +12,7 @@ import { useCreateBlockNote, } from "@blocknote/react"; -import { Mention } from "./Mention"; +import { Mention } from "./Mention.js"; // Our schema with inline content specs, which contain the configs and // implementations for inline content that we want our editor to use. @@ -32,6 +32,7 @@ const getMentionMenuItems = ( const users = ["Steve", "Bob", "Joe", "Mike"]; return users.map((user) => ({ + key: user.toLowerCase(), title: user, onItemClick: () => { editor.insertInlineContent([ diff --git a/examples/06-custom-schema/04-pdf-file-block/App.tsx b/examples/06-custom-schema/04-pdf-file-block/App.tsx index 1c3129e3b..42edf9068 100644 --- a/examples/06-custom-schema/04-pdf-file-block/App.tsx +++ b/examples/06-custom-schema/04-pdf-file-block/App.tsx @@ -30,6 +30,7 @@ const schema = BlockNoteSchema.create({ // Slash menu item to insert a PDF block const insertPDF = (editor: typeof schema.BlockNoteEditor) => ({ + key: "pdf", title: "PDF", onItemClick: () => { insertOrUpdateBlock(editor, { diff --git a/examples/06-custom-schema/react-custom-styles/App.tsx b/examples/06-custom-schema/react-custom-styles/App.tsx index f19533c79..a3bfbbd8a 100644 --- a/examples/06-custom-schema/react-custom-styles/App.tsx +++ b/examples/06-custom-schema/react-custom-styles/App.tsx @@ -1,17 +1,17 @@ import { BlockNoteSchema, defaultStyleSpecs } from "@blocknote/core"; import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; import { - createReactStyleSpec, FormattingToolbar, FormattingToolbarController, FormattingToolbarProps, + createReactStyleSpec, useActiveStyles, useBlockNoteEditor, useComponentsContext, useCreateBlockNote, } from "@blocknote/react"; -import { BlockNoteView } from "@blocknote/mantine"; -import "@blocknote/mantine/style.css"; const small = createReactStyleSpec( { diff --git a/examples/09-ai/01-minimal/.bnexample.json b/examples/09-ai/01-minimal/.bnexample.json new file mode 100644 index 000000000..74c5fdccf --- /dev/null +++ b/examples/09-ai/01-minimal/.bnexample.json @@ -0,0 +1,13 @@ +{ + "playground": true, + "docs": true, + "author": "yousefed", + "tags": ["AI", "llm"], + "dependencies": { + "@blocknote/xl-ai": "latest", + "@mantine/core": "^7.10.1", + "ai": "^4.1.0", + "@ai-sdk/openai": "^1.1.0", + "@ai-sdk/groq": "^1.1.0" + } +} diff --git a/examples/09-ai/01-minimal/App.tsx b/examples/09-ai/01-minimal/App.tsx new file mode 100644 index 000000000..c4862c8d7 --- /dev/null +++ b/examples/09-ai/01-minimal/App.tsx @@ -0,0 +1,184 @@ +import { + AIShowSelectionPlugin, + AIToolbarButton, + BlockNoteAIContextProvider, + BlockNoteAIUI, + locales as aiLocales, + createBlockNoteAIClient, + getAISlashMenuItems, + useBlockNoteAIContext, +} from "@blocknote/xl-ai"; + +import { createGroq } from "@ai-sdk/groq"; +import { createOpenAI } from "@ai-sdk/openai"; +import { + BlockNoteEditor, + BlockNoteSchema, + defaultBlockSpecs, + filterSuggestionItems, + locales, +} from "@blocknote/core"; +import "@blocknote/core/fonts/inter.css"; +import { BlockNoteView } from "@blocknote/mantine"; +import "@blocknote/mantine/style.css"; +import { + FormattingToolbar, + FormattingToolbarController, + SuggestionMenuController, + blockTypeSelectItems, + getDefaultReactSlashMenuItems, + getFormattingToolbarItems, + useCreateBlockNote, +} from "@blocknote/react"; +import "@blocknote/xl-ai/style.css"; +import { Fieldset, Switch } from "@mantine/core"; +import { useMemo, useState } from "react"; +import { BasicAutocomplete } from "./AutoComplete.js"; +import RadioGroupComponent from "./components/RadioGroupComponent.js"; + +const schema = BlockNoteSchema.create({ + blockSpecs: { + ...defaultBlockSpecs, + // ai: AIBlock, + }, +}); + +const client = createBlockNoteAIClient({ + apiKey: import.meta.env.VITE_BLOCKNOTE_AI_SERVER_API_KEY || "PLACEHOLDER", + baseURL: + import.meta.env.VITE_BLOCKNOTE_AI_SERVER_BASE_URL || + "https://localhost:3000/ai", +}); + +export default function App() { + const [aiModelString, setAiModelString] = useState( + "openai/gpt-4o-2024-08-06" + ); + // Creates a new editor instance. + const editor = useCreateBlockNote({ + schema, + dictionary: { + ...locales.en, + ai: aiLocales.en, + } as any, + _extensions: { + // TODO: things will break when user provides different keys. Define name on plugins instead? + // aiBlockToolbar: new AIBlockToolbarProsemirrorPlugin(), + aiSelection: new AIShowSelectionPlugin(), + }, + }); + + const model = useMemo(() => { + const [provider, ...modelNameParts] = aiModelString.split("/"); + const modelName = modelNameParts.join("/"); + if (provider === "openai") { + return createOpenAI({ + ...client.getProviderSettings("openai"), + })(modelName, {}); + } else if (provider === "groq") { + return createGroq({ + ...client.getProviderSettings("groq"), + })(modelName); + } else if (provider === "albert-etalab") { + return createOpenAI({ + // albert-etalab/neuralmagic/Meta-Llama-3.1-70B-Instruct-FP8 + baseURL: "https://albert.api.staging.etalab.gouv.fr/v1", + ...client.getProviderSettings("albert-etalab"), + compatibility: "compatible", + })(modelName); + } + throw new Error(`Unknown model: ${aiModelString}`); + }, [aiModelString]); + + const [dataFormat, setDataFormat] = useState<"json" | "markdown">("json"); + + const [streamStateValue, setStream] = useState(true); + + const stream = dataFormat === "markdown" ? false : streamStateValue; + + // Renders the editor instance using a React component. + return ( +
<\/p>/g, + "
[EMPTY-LINE]
" + ); + } const markdownString = deps.unified .unified() .use(deps.rehypeParse.default, { fragment: true }) @@ -37,7 +50,12 @@ export function cleanHTMLToMarkdown(cleanHTMLString: string) { }) .processSync(cleanHTMLString); - return markdownString.value as string; + let ret = markdownString.value as string; + if (options?.keepEmptyParagraphs) { + // remove [EMPTY-LINE] hacks we added earlier + ret = ret.replace(/\n\[EMPTY-LINE\]\n/g, "\n\n"); + } + return ret; } export async function blocksToMarkdown< @@ -54,5 +72,9 @@ export async function blocksToMarkdown< const exporter = createExternalHTMLExporter(schema, editor); const externalHTML = exporter.exportBlocks(blocks, options); - return cleanHTMLToMarkdown(externalHTML); + const ret = cleanHTMLToMarkdown(externalHTML, { + keepEmptyParagraphs: true, + }); + + return ret; } diff --git a/packages/core/src/api/getBlockInfoFromPos.ts b/packages/core/src/api/getBlockInfoFromPos.ts index 525773a33..8e812a64d 100644 --- a/packages/core/src/api/getBlockInfoFromPos.ts +++ b/packages/core/src/api/getBlockInfoFromPos.ts @@ -126,7 +126,7 @@ export function getBlockInfoWithManualOffset( ): BlockInfo { if (!node.type.isInGroup("bnBlock")) { throw new Error( - `Attempted to get bnBlock node at position but found node of different type ${node.type}` + `Attempted to get bnBlock node at position but found node of different type ${node.type.name}` ); } diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json new file mode 100644 index 000000000..213c4c088 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json new file mode 100644 index 000000000..97c49ed9e --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParent.json @@ -0,0 +1,89 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0a50a9285 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/childrenToNextParentsChildren.json @@ -0,0 +1,153 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json new file mode 100644 index 000000000..29fa8a873 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/image.json @@ -0,0 +1,22 @@ +{ + "blocks": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt new file mode 100644 index 000000000..7f79fb6b6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_end.txt @@ -0,0 +1,276 @@ +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested ","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table ","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":true}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt new file mode 100644 index 000000000..f7cccbaf9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/move_start.txt @@ -0,0 +1,276 @@ +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"1","styles":{}}],"children":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"eading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ading 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ding 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ing 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ng 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"g 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":" 2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"2","styles":{}}],"children":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"1","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"2","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" 3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"3","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Regular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"egular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"gular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ular","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"lar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"ar","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"r","styles":{}}],"children":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ested Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"sted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ted Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ed Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"d Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":" Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Paragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ragraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"agraph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"graph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"raph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"aph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"ph","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"h","styles":{}}],"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false},{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":false,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"able Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ble Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"le Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"e Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":" Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"Cell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ell","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"ll","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[{"block":{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null],"rows":[{"cells":[[{"type":"text","text":"l","styles":{}}]]}]},"children":[]},"contentCutAtStart":true,"contentCutAtEnd":false}]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} +{"blocks":[]} diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json new file mode 100644 index 000000000..f94d3f294 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleChildren.json @@ -0,0 +1,67 @@ +{ + "blocks": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + }, + { + "block": { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json new file mode 100644 index 000000000..0bfa9e865 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/multipleStyledText.json @@ -0,0 +1,40 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json new file mode 100644 index 000000000..a1cc58dc2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/nestedImage.json @@ -0,0 +1,81 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "block": { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] + }, + "contentCutAtStart": false, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json new file mode 100644 index 000000000..b0510276a --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/partialChildToParent.json @@ -0,0 +1,48 @@ +{ + "blocks": [ + { + "block": { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "ding 1", + "styles": {} + } + ], + "children": [ + { + "block": { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested ", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json new file mode 100644 index 000000000..6c21f8936 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/styledText.json @@ -0,0 +1,28 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json new file mode 100644 index 000000000..d4b6a6d9f --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableAllCells.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json new file mode 100644 index 000000000..ecb769a6b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCell.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json new file mode 100644 index 000000000..ecb769a6b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableCellText.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": false, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json new file mode 100644 index 000000000..1369a335a --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/tableRow.json @@ -0,0 +1,35 @@ +{ + "blocks": [ + { + "block": { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": true + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json new file mode 100644 index 000000000..f8f6265c9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_json__/unstyledText.json @@ -0,0 +1,26 @@ +{ + "blocks": [ + { + "block": { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [] + }, + "contentCutAtStart": true, + "contentCutAtEnd": false + } + ] +} \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json new file mode 100644 index 000000000..5386baa8b --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Heading 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json new file mode 100644 index 000000000..439c3f373 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParent.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2!$]", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json new file mode 100644 index 000000000..0b3f6b2b2 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/childrenToNextParentsChildren.json @@ -0,0 +1,123 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3", + "styles": {} + } + ], + "children": [] + }, + { + "id": "4", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Heading 2", + "styles": {} + } + ], + "children": [ + { + "id": "5", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "6", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "7", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json new file mode 100644 index 000000000..3d321c032 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/image.json @@ -0,0 +1,80 @@ +[ + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + "children": [] + }, + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + "children": [] + } + ] + }, + { + "id": "9", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [], + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt new file mode 100644 index 000000000..9a16f7c7d --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_end.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!H!$]eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!He!$]ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Hea!$]ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Head!$]ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headi!$]ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Headin!$]g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading!$] 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading !$]1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H!$]eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He!$]ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea!$]ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head!$]ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi!$]ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin!$]g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading!$] 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading !$]2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2!$]","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]1","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]2","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$] 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph !$]3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3!$]","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"!$]Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B!$]old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo!$]ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol!$]d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold!$]","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I!$]talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It!$]alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita!$]lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital!$]ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali!$]c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic!$]","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R!$]egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re!$]gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg!$]ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu!$]lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul!$]ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula!$]r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular!$]","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"!$]Nested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N!$]ested Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne!$]sted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes!$]ted Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest!$]ed Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste!$]d Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested!$] Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested !$]Paragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P!$]aragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa!$]ragraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par!$]agraph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para!$]graph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag!$]raph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr!$]aph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra!$]ph","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap!$]h","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph!$]","styles":{}}],"children":[]}]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T!$]able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta!$]ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab!$]le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl!$]e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table!$] Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table !$]Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C!$]ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce!$]ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel!$]l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell!$]","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1!$]","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T!$]able Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta!$]ble Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab!$]le Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl!$]e Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table!$] Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table !$]Cell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C!$]ell","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce!$]ll","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel!$]l","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt new file mode 100644 index 000000000..4bcabfbf6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/move_start.txt @@ -0,0 +1,212 @@ +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!1","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"0","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 1[$!","styles":{}}],"children":[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"1","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"2","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"3","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Heading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"H[$!eading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"He[$!ading 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Hea[$!ding 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Head[$!ing 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headi[$!ng 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Headin[$!g 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading[$! 2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading [$!2","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"4","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Heading 2[$!","styles":{}}],"children":[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]}]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!1","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"5","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 1[$!","styles":{}}],"children":[]},{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!2","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"6","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 2[$!","styles":{}}],"children":[]},{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$! 3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph [$!3","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"7","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph 3[$!","styles":{}}],"children":[]},{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"[$!Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"B[$!old","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bo[$!ld","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bol[$!d","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold[$!","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"I[$!talic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"It[$!alic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ita[$!lic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Ital[$!ic","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Itali[$!c","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic[$!","styles":{"italic":true}},{"type":"text","text":"Regular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"R[$!egular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Re[$!gular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Reg[$!ular","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regu[$!lar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regul[$!ar","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regula[$!r","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"8","type":"heading","props":{"textColor":"red","backgroundColor":"default","textAlignment":"left","level":2},"content":[{"type":"text","text":"Bold","styles":{"bold":true}},{"type":"text","text":"Italic","styles":{"italic":true}},{"type":"text","text":"Regular[$!","styles":{}}],"children":[{"id":"9","type":"image","props":{"backgroundColor":"default","textAlignment":"left","name":"","url":"https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg","caption":"","showPreview":true,"previewWidth":512},"children":[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph","styles":{}}],"children":[]}]}]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"[$!Nested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"N[$!ested Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Ne[$!sted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nes[$!ted Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nest[$!ed Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Neste[$!d Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested[$! Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested [$!Paragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested P[$!aragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Pa[$!ragraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Par[$!agraph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Para[$!graph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Parag[$!raph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragr[$!aph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragra[$!ph","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragrap[$!h","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"10","type":"paragraph","props":{"textColor":"default","backgroundColor":"default","textAlignment":"left"},"content":[{"type":"text","text":"Nested Paragraph[$!","styles":{}}],"children":[]},{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell[$!","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"[$!Table Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"T[$!able Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Ta[$!ble Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tab[$!le Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Tabl[$!e Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table[$! Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table [$!Cell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table C[$!ell","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Ce[$!ll","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cel[$!l","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell[$!","styles":{}}],[{"type":"text","text":"Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"[$!Table Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"T[$!able Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Ta[$!ble Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tab[$!le Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Tabl[$!e Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table[$! Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table [$!Cell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table C[$!ell!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Ce[$!ll!$]","styles":{}}]]}]},"children":[]}] +[{"id":"11","type":"table","props":{"textColor":"default"},"content":{"type":"tableContent","columnWidths":[null,null],"rows":[{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cell","styles":{}}]]},{"cells":[[{"type":"text","text":"Table Cell","styles":{}}],[{"type":"text","text":"Table Cel[$!l!$]","styles":{}}]]}]},"children":[]}] diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json new file mode 100644 index 000000000..0474de6ac --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleChildren.json @@ -0,0 +1,53 @@ +[ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "[$!Nested Paragraph 1", + "styles": {} + } + ], + "children": [] + }, + { + "id": "2", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 2", + "styles": {} + } + ], + "children": [] + }, + { + "id": "3", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph 3!$]", + "styles": {} + } + ], + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json new file mode 100644 index 000000000..79fade4aa --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/multipleStyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json new file mode 100644 index 000000000..7caba1239 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/nestedImage.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "[$!Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph!$]", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json new file mode 100644 index 000000000..96184b9f0 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/partialChildToParent.json @@ -0,0 +1,38 @@ +[ + { + "id": "0", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Hea[$!ding 1", + "styles": {} + } + ], + "children": [ + { + "id": "1", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested !$]Paragraph 1", + "styles": {} + } + ], + "children": [] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json new file mode 100644 index 000000000..d87036d63 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/styledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold[$!", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic!$]", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json new file mode 100644 index 000000000..c45b946b8 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableAllCells.json @@ -0,0 +1,69 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json new file mode 100644 index 000000000..697a1f7d9 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCell.json @@ -0,0 +1,71 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null, + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json new file mode 100644 index 000000000..326ad8302 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableCellText.json @@ -0,0 +1,55 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "[$!Table Cell!$]", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json new file mode 100644 index 000000000..4c7ea0de6 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/tableRow.json @@ -0,0 +1,71 @@ +[ + { + "id": "11", + "type": "table", + "props": { + "textColor": "default" + }, + "content": { + "type": "tableContent", + "columnWidths": [ + null, + null, + null, + null + ], + "rows": [ + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "[$!", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "!$]", + "styles": {} + } + ] + ] + }, + { + "cells": [ + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ], + [ + { + "type": "text", + "text": "Table Cell", + "styles": {} + } + ] + ] + } + ] + }, + "children": [] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json new file mode 100644 index 000000000..dc9eb6593 --- /dev/null +++ b/packages/core/src/api/nodeConversions/__snapshots_selection_markers_json__/unstyledText.json @@ -0,0 +1,67 @@ +[ + { + "id": "8", + "type": "heading", + "props": { + "textColor": "red", + "backgroundColor": "default", + "textAlignment": "left", + "level": 2 + }, + "content": [ + { + "type": "text", + "text": "Bold", + "styles": { + "bold": true + } + }, + { + "type": "text", + "text": "Italic[$!", + "styles": { + "italic": true + } + }, + { + "type": "text", + "text": "Regular!$]", + "styles": {} + } + ], + "children": [ + { + "id": "9", + "type": "image", + "props": { + "backgroundColor": "default", + "textAlignment": "left", + "name": "", + "url": "https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg", + "caption": "", + "showPreview": true, + "previewWidth": 512 + }, + "children": [ + { + "id": "10", + "type": "paragraph", + "props": { + "textColor": "default", + "backgroundColor": "default", + "textAlignment": "left" + }, + "content": [ + { + "type": "text", + "text": "Nested Paragraph", + "styles": {} + } + ], + "children": [] + } + ] + } + ] + } +] \ No newline at end of file diff --git a/packages/core/src/api/nodeConversions/blockToNode.ts b/packages/core/src/api/nodeConversions/blockToNode.ts index 58fad5eeb..267a97e8f 100644 --- a/packages/core/src/api/nodeConversions/blockToNode.ts +++ b/packages/core/src/api/nodeConversions/blockToNode.ts @@ -30,7 +30,7 @@ function styledTextToNodes
+ *
+ *
+ *
|) move it backwards so we drop empty start tags (
|) + // while (end.parentOffset === 0 && end.depth > 0) { + // end = this._tiptapEditor.state.doc.resolve(end.pos - 1); + // } + + // // if the start is at the start of a node (|) move it backwards so we include all open tags (| )
+ // while (start.parentOffset === 0 && start.depth > 0) {
+ // start = this._tiptapEditor.state.doc.resolve(start.pos - 1);
+ // }
+
+ // // if the start is at the end of a node (| ) move it forwards so we drop all closing tags (| )
+ // while (start.parentOffset >= start.parent.nodeSize - 2 && start.depth > 0) {
+ // start = this._tiptapEditor.state.doc.resolve(start.pos + 1);
+ // }
+
+ return getSelectedBlocksWithSelectionMarkers(
+ this._tiptapEditor.state,
+ start.pos,
+ end.pos,
+ this.schema.blockSchema,
+ this.schema.inlineContentSchema,
+ this.schema.styleSchema
+ );
+ }
+
+ // TODO: fix image node selection
+ public getSelection2() {
+ let start = this._tiptapEditor.state.selection.$from;
+ let end = this._tiptapEditor.state.selection.$to;
+
+ // if the end is at the end of a node (|
|) move it backwards so we drop empty start tags (
|) + while (end.parentOffset === 0 && end.depth > 0) { + end = this._tiptapEditor.state.doc.resolve(end.pos - 1); + } + + // if the start is at the start of a node (|) move it backwards so we include all open tags (| )
+ while (start.parentOffset === 0 && start.depth > 0) {
+ start = this._tiptapEditor.state.doc.resolve(start.pos - 1);
+ }
+
+ // if the start is at the end of a node (| |) move it forwards so we drop all closing tags (| )
+ while (start.parentOffset >= start.parent.nodeSize - 2 && start.depth > 0) {
+ start = this._tiptapEditor.state.doc.resolve(start.pos + 1);
+ }
+
+ // console.log(start.pos, end.pos);
+ return prosemirrorSliceToSlicedBlocks(
+ this._tiptapEditor.state.doc.slice(start.pos, end.pos, true),
+ this.schema.blockSchema,
+ this.schema.inlineContentSchema,
+ this.schema.styleSchema,
+ this.blockCache
+ );
+ }
+
/**
* Gets a snapshot of the current selection.
*/
diff --git a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts
index 6789b7661..25a4b746f 100644
--- a/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts
+++ b/packages/core/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts
@@ -1,7 +1,5 @@
-import type { Dictionary } from "../../i18n/dictionary.js";
-
export type DefaultSuggestionItem = {
- key: keyof Omit>[];
+ }>;
+};
diff --git a/packages/xl-ai/tsconfig.json b/packages/xl-ai/tsconfig.json
new file mode 100644
index 000000000..607ad93cf
--- /dev/null
+++ b/packages/xl-ai/tsconfig.json
@@ -0,0 +1,32 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ESNext", "DOM"],
+ "moduleResolution": "Node",
+ "jsx": "react-jsx",
+ "strict": true,
+ "sourceMap": true,
+ "resolveJsonModule": true,
+ "esModuleInterop": true,
+ "noEmit": false,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noImplicitReturns": true,
+ "outDir": "dist",
+ "declaration": true,
+ "declarationDir": "types",
+ "composite": true,
+ "skipLibCheck": true,
+ },
+ "include": ["src"],
+ "references": [
+ {
+ "path": "../core"
+ },
+ {
+ "path": "../react"
+ }
+ ]
+}
diff --git a/packages/xl-ai/vite.config.ts b/packages/xl-ai/vite.config.ts
new file mode 100644
index 000000000..b3996d26f
--- /dev/null
+++ b/packages/xl-ai/vite.config.ts
@@ -0,0 +1,53 @@
+import react from "@vitejs/plugin-react";
+import * as path from "path";
+import { webpackStats } from "rollup-plugin-webpack-stats";
+import { defineConfig } from "vite";
+import pkg from "./package.json";
+// import eslintPlugin from "vite-plugin-eslint";
+
+// https://vitejs.dev/config/
+export default defineConfig((conf) => ({
+ test: {
+ environment: "jsdom",
+ setupFiles: ["./vitestSetup.ts"],
+ },
+ plugins: [react(), webpackStats()],
+ // used so that vitest resolves the core package from the sources instead of the built version
+ resolve: {
+ alias:
+ conf.command === "build"
+ ? ({} as Record