aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/apis/google_docs/GoogleApiClientUtils.ts189
-rw-r--r--src/client/util/DictationManager.ts60
-rw-r--r--src/client/views/DocumentDecorations.tsx7
-rw-r--r--src/client/views/MainView.tsx1
-rw-r--r--src/client/views/nodes/FormattedTextBox.tsx116
-rw-r--r--src/client/views/nodes/VideoBox.tsx6
-rw-r--r--src/server/RouteStore.ts2
-rw-r--r--src/server/apis/google/GoogleApiServerUtils.ts65
-rw-r--r--src/server/index.ts19
-rw-r--r--src/server/slides.json10820
10 files changed, 11125 insertions, 160 deletions
diff --git a/src/client/apis/google_docs/GoogleApiClientUtils.ts b/src/client/apis/google_docs/GoogleApiClientUtils.ts
index 821c52270..798886def 100644
--- a/src/client/apis/google_docs/GoogleApiClientUtils.ts
+++ b/src/client/apis/google_docs/GoogleApiClientUtils.ts
@@ -1,4 +1,4 @@
-import { docs_v1 } from "googleapis";
+import { docs_v1, slides_v1 } from "googleapis";
import { PostToServer } from "../../../Utils";
import { RouteStore } from "../../../server/RouteStore";
import { Opt } from "../../../new_fields/Doc";
@@ -9,50 +9,84 @@ export const Pushes = "googleDocsPushCount";
export namespace GoogleApiClientUtils {
- export namespace Docs {
+ export enum Service {
+ Documents = "Documents",
+ Slides = "Slides"
+ }
- export enum Actions {
- Create = "create",
- Retrieve = "retrieve",
- Update = "update"
- }
+ export enum Actions {
+ Create = "create",
+ Retrieve = "retrieve",
+ Update = "update"
+ }
- export enum WriteMode {
- Insert,
- Replace
- }
+ export enum WriteMode {
+ Insert,
+ Replace
+ }
- export type DocumentId = string;
- export type Reference = DocumentId | CreateOptions;
- export type TextContent = string | string[];
- export type IdHandler = (id: DocumentId) => any;
+ export type Identifier = string;
+ export type Reference = Identifier | CreateOptions;
+ export type TextContent = string | string[];
+ export type IdHandler = (id: Identifier) => any;
+ export type CreationResult = Opt<Identifier>;
+ export type ReadLinesResult = Opt<{ title?: string, bodyLines?: string[] }>;
+ export type ReadResult = { title?: string, body?: string };
- export type CreationResult = Opt<DocumentId>;
- export type RetrievalResult = Opt<docs_v1.Schema$Document>;
- export type UpdateResult = Opt<docs_v1.Schema$BatchUpdateDocumentResponse>;
- export type ReadLinesResult = Opt<{ title?: string, bodyLines?: string[] }>;
- export type ReadResult = { title?: string, body?: string };
+ export interface CreateOptions {
+ service: Service;
+ title?: string; // if excluded, will use a default title annotated with the current date
+ }
- export interface CreateOptions {
- handler: IdHandler; // callback to process the documentId of the newly created Google Doc
- title?: string; // if excluded, will use a default title annotated with the current date
- }
+ export interface RetrieveOptions {
+ service: Service;
+ identifier: Identifier;
+ }
- export interface RetrieveOptions {
- documentId: DocumentId;
- }
+ export interface ReadOptions {
+ identifier: Identifier;
+ removeNewlines?: boolean;
+ }
- export type ReadOptions = RetrieveOptions & { removeNewlines?: boolean };
+ export interface WriteOptions {
+ mode: WriteMode;
+ content: TextContent;
+ reference: Reference;
+ index?: number; // if excluded, will compute the last index of the document and append the content there
+ }
- export interface WriteOptions {
- mode: WriteMode;
- content: TextContent;
- reference: Reference;
- index?: number; // if excluded, will compute the last index of the document and append the content there
+ /**
+ * After following the authentication routine, which connects this API call to the current signed in account
+ * and grants the appropriate permissions, this function programmatically creates an arbitrary Google Doc which
+ * should appear in the user's Google Doc library instantaneously.
+ *
+ * @param options the title to assign to the new document, and the information necessary
+ * to store the new documentId returned from the creation process
+ * @returns the documentId of the newly generated document, or undefined if the creation process fails.
+ */
+ export const create = async (options: CreateOptions): Promise<CreationResult> => {
+ const path = `${RouteStore.googleDocs}/${options.service}/${Actions.Create}`;
+ const parameters = {
+ requestBody: {
+ title: options.title || `Dash Export (${new Date().toDateString()})`
+ }
+ };
+ try {
+ const schema: any = await PostToServer(path, parameters);
+ let key = ["document", "presentation"].find(prefix => `${prefix}Id` in schema) + "Id";
+ return schema[key];
+ } catch {
+ return undefined;
}
+ };
+
+ export namespace Docs {
+
+ export type RetrievalResult = Opt<docs_v1.Schema$Document | slides_v1.Schema$Presentation>;
+ export type UpdateResult = Opt<docs_v1.Schema$BatchUpdateDocumentResponse>;
export interface UpdateOptions {
- documentId: DocumentId;
+ documentId: Identifier;
requests: docs_v1.Schema$Request[];
}
@@ -96,46 +130,27 @@ export namespace GoogleApiClientUtils {
}
- /**
- * After following the authentication routine, which connects this API call to the current signed in account
- * and grants the appropriate permissions, this function programmatically creates an arbitrary Google Doc which
- * should appear in the user's Google Doc library instantaneously.
- *
- * @param options the title to assign to the new document, and the information necessary
- * to store the new documentId returned from the creation process
- * @returns the documentId of the newly generated document, or undefined if the creation process fails.
- */
- export const create = async (options: CreateOptions): Promise<CreationResult> => {
- const path = RouteStore.googleDocs + Actions.Create;
- const parameters = {
- requestBody: {
- title: options.title || `Dash Export (${new Date().toDateString()})`
- }
- };
- try {
- const schema: docs_v1.Schema$Document = await PostToServer(path, parameters);
- const generatedId = schema.documentId;
- if (generatedId) {
- options.handler(generatedId);
- return generatedId;
- }
- } catch {
- return undefined;
- }
- };
+ const KeyMapping = new Map<Service, string>([
+ [Service.Documents, "documentId"],
+ [Service.Slides, "presentationId"]
+ ]);
export const retrieve = async (options: RetrieveOptions): Promise<RetrievalResult> => {
- const path = RouteStore.googleDocs + Actions.Retrieve;
+ const path = `${RouteStore.googleDocs}/${options.service}/${Actions.Retrieve}`;
try {
- const schema: RetrievalResult = await PostToServer(path, options);
- return schema;
+ let parameters: any = {}, key: string | undefined;
+ if ((key = KeyMapping.get(options.service))) {
+ parameters[key] = options.identifier;
+ const schema: RetrievalResult = await PostToServer(path, parameters);
+ return schema;
+ }
} catch {
return undefined;
}
};
export const update = async (options: UpdateOptions): Promise<UpdateResult> => {
- const path = RouteStore.googleDocs + Actions.Update;
+ const path = `${RouteStore.googleDocs}/${Service.Documents}/${Actions.Update}`;
const parameters = {
documentId: options.documentId,
requestBody: {
@@ -151,7 +166,7 @@ export namespace GoogleApiClientUtils {
};
export const read = async (options: ReadOptions): Promise<ReadResult> => {
- return retrieve(options).then(document => {
+ return retrieve({ ...options, service: Service.Documents }).then(document => {
let result: ReadResult = {};
if (document) {
let title = document.title;
@@ -163,7 +178,7 @@ export namespace GoogleApiClientUtils {
};
export const readLines = async (options: ReadOptions): Promise<ReadLinesResult> => {
- return retrieve(options).then(document => {
+ return retrieve({ ...options, service: Service.Documents }).then(document => {
let result: ReadLinesResult = {};
if (document) {
let title = document.title;
@@ -177,14 +192,14 @@ export namespace GoogleApiClientUtils {
export const write = async (options: WriteOptions): Promise<UpdateResult> => {
const requests: docs_v1.Schema$Request[] = [];
- const documentId = await Utils.initialize(options.reference);
- if (!documentId) {
+ const identifier = await Utils.initialize(options.reference);
+ if (!identifier) {
return undefined;
}
let index = options.index;
const mode = options.mode;
if (!(index && mode === WriteMode.Insert)) {
- let schema = await retrieve({ documentId });
+ let schema = await retrieve({ identifier, service: Service.Documents });
if (!schema || !(index = Utils.endOf(schema))) {
return undefined;
}
@@ -210,7 +225,7 @@ export namespace GoogleApiClientUtils {
if (!requests.length) {
return undefined;
}
- let replies: any = await update({ documentId, requests });
+ let replies: any = await update({ documentId: identifier, requests });
let errors = "errors";
if (errors in replies) {
console.log("Write operation failed:");
@@ -221,4 +236,36 @@ export namespace GoogleApiClientUtils {
}
+ export namespace Slides {
+
+ export namespace Utils {
+
+ export const extractTextBoxes = (slides: slides_v1.Schema$Page[]) => {
+ slides.map(slide => {
+ let elements = slide.pageElements;
+ if (elements) {
+ let textboxes: slides_v1.Schema$TextContent[] = [];
+ for (let element of elements) {
+ if (element && element.shape && element.shape.shapeType === "TEXT_BOX" && element.shape.text) {
+ textboxes.push(element.shape.text);
+ }
+ }
+ textboxes.map(text => {
+ if (text.textElements) {
+ text.textElements.map(element => {
+
+ });
+ }
+ if (text.lists) {
+
+ }
+ });
+ }
+ });
+ };
+
+ }
+
+ }
+
} \ No newline at end of file
diff --git a/src/client/util/DictationManager.ts b/src/client/util/DictationManager.ts
index 488a146bf..781e5e465 100644
--- a/src/client/util/DictationManager.ts
+++ b/src/client/util/DictationManager.ts
@@ -45,7 +45,7 @@ export namespace DictationManager {
export namespace Controls {
- const infringe = "unable to process: dictation manager still involved in previous session";
+ export const Infringed = "unable to process: dictation manager still involved in previous session";
const intraSession = ". ";
const interSession = " ... ";
@@ -69,30 +69,32 @@ export namespace DictationManager {
delimiters: DelimiterArgs;
interimHandler: InterimResultHandler;
tryExecute: boolean;
+ terminators: string[];
}
export const listen = async (options?: Partial<ListeningOptions>) => {
let results: string | undefined;
- let main = MainView.Instance;
+ // let main = MainView.Instance;
- main.dictationOverlayVisible = true;
- main.isListening = { interim: false };
+ // main.dictationOverlayVisible = true;
+ // main.isListening = { interim: false };
try {
results = await listenImpl(options);
if (results) {
Utils.CopyText(results);
- main.isListening = false;
- let execute = options && options.tryExecute;
- main.dictatedPhrase = execute ? results.toLowerCase() : results;
- main.dictationSuccess = execute ? await DictationManager.Commands.execute(results) : true;
+ // main.isListening = false;
+ // let execute = options && options.tryExecute;
+ // main.dictatedPhrase = execute ? results.toLowerCase() : results;
+ // main.dictationSuccess = execute ? await DictationManager.Commands.execute(results) : true;
+ options && options.tryExecute && await DictationManager.Commands.execute(results);
}
} catch (e) {
- main.isListening = false;
- main.dictatedPhrase = results = `dictation error: ${"error" in e ? e.error : "unknown error"}`;
- main.dictationSuccess = false;
+ // main.isListening = false;
+ // main.dictatedPhrase = results = `dictation error: ${"error" in e ? e.error : "unknown error"}`;
+ // main.dictationSuccess = false;
} finally {
- main.initiateDictationFade();
+ // main.initiateDictationFade();
}
return results;
@@ -100,7 +102,7 @@ export namespace DictationManager {
const listenImpl = (options?: Partial<ListeningOptions>) => {
if (isListening) {
- return infringe;
+ return Infringed;
}
isListening = true;
@@ -128,6 +130,12 @@ export namespace DictationManager {
recognizer.onresult = (e: SpeechRecognitionEvent) => {
current = synthesize(e, intra);
+ let matchedTerminator: string | undefined;
+ if (options && options.terminators && (matchedTerminator = options.terminators.find(end => current ? current.trim().toLowerCase().endsWith(end.toLowerCase()) : false))) {
+ current = matchedTerminator;
+ recognizer.abort();
+ return complete();
+ }
handler && handler(current);
isManuallyStopped && complete();
};
@@ -163,13 +171,13 @@ export namespace DictationManager {
}
isManuallyStopped = true;
salvageSession ? recognizer.stop() : recognizer.abort();
- let main = MainView.Instance;
- if (main.dictationOverlayVisible) {
- main.cancelDictationFade();
- main.dictationOverlayVisible = false;
- main.dictationSuccess = undefined;
- setTimeout(() => main.dictatedPhrase = placeholder, 500);
- }
+ // let main = MainView.Instance;
+ // if (main.dictationOverlayVisible) {
+ // main.cancelDictationFade();
+ // main.dictationOverlayVisible = false;
+ // main.dictationSuccess = undefined;
+ // setTimeout(() => main.dictatedPhrase = placeholder, 500);
+ // }
};
const synthesize = (e: SpeechRecognitionEvent, delimiter?: string) => {
@@ -301,11 +309,16 @@ export namespace DictationManager {
}
}],
- ["create bulleted note", {
+ ["new outline", {
action: (target: DocumentView) => {
let newBox = Docs.Create.TextDocument({ width: 400, height: 200, title: "My Outline" });
+ newBox.autoHeight = true;
let proto = newBox.proto!;
- let proseMirrorState = '"{"doc":{"type":"doc","content":[{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"type":"text","text":""}]}]}]}]},"selection":{"type":"text","anchor":1,"head":1}}"';
+ proto.page = -1;
+ let prompt = "Press alt + r to start dictating here...";
+ let head = 3;
+ let anchor = head + prompt.length;
+ let proseMirrorState = `{"doc":{"type":"doc","content":[{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"type":"text","text":"${prompt}"}]}]}]}]},"selection":{"type":"text","anchor":${anchor},"head":${head}}}`;
proto.data = new RichTextField(proseMirrorState);
proto.backgroundColor = "#eeffff";
target.props.addDocTab(newBox, proto, "onRight");
@@ -323,6 +336,9 @@ export namespace DictationManager {
let what = matches[2];
let dataDoc = Doc.GetProto(target.props.Document);
let fieldKey = "data";
+ if (isNaN(count)) {
+ return;
+ }
for (let i = 0; i < count; i++) {
let created: Doc | undefined;
switch (what) {
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx
index 891fd7847..a28088032 100644
--- a/src/client/views/DocumentDecorations.tsx
+++ b/src/client/views/DocumentDecorations.tsx
@@ -714,7 +714,7 @@ export class DocumentDecorations extends React.Component<{}, { value: string }>
let canPull = this.targetDoc.data && this.targetDoc.data instanceof RichTextField;
let dataDoc = Doc.GetProto(this.targetDoc);
if (!canPull || !dataDoc[GoogleRef]) return (null);
- let icon = !dataDoc.unchanged ? (this.pullIcon as any) : fetch;
+ let icon = dataDoc.unchanged === false ? (this.pullIcon as any) : fetch;
icon = this.openHover ? "share" : icon;
let animation = this.isAnimatingFetch ? "spin 0.5s linear infinite" : "none";
let title = `${!dataDoc.unchanged ? "Pull from" : "Fetch"} Google Docs`;
@@ -727,10 +727,11 @@ export class DocumentDecorations extends React.Component<{}, { value: string }>
backgroundColor: this.pullColor,
transition: "0.2s ease all"
}}
- onPointerEnter={e => e.ctrlKey && runInAction(() => this.openHover = true)}
+ onPointerEnter={e => e.altKey && runInAction(() => this.openHover = true)}
onPointerLeave={() => runInAction(() => this.openHover = false)}
onClick={e => {
- if (e.ctrlKey) {
+ if (e.altKey) {
+ e.preventDefault();
window.open(`https://docs.google.com/document/d/${dataDoc[GoogleRef]}/edit`);
} else {
this.clearPullColor();
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx
index f28844009..0286a201b 100644
--- a/src/client/views/MainView.tsx
+++ b/src/client/views/MainView.tsx
@@ -40,6 +40,7 @@ import { PreviewCursor } from './PreviewCursor';
import { FilterBox } from './search/FilterBox';
import PresModeMenu from './presentationview/PresentationModeMenu';
import { PresBox } from './nodes/PresBox';
+import { GoogleApiClientUtils } from '../apis/google_docs/GoogleApiClientUtils';
@observer
export class MainView extends React.Component {
diff --git a/src/client/views/nodes/FormattedTextBox.tsx b/src/client/views/nodes/FormattedTextBox.tsx
index 44a481953..d9043c739 100644
--- a/src/client/views/nodes/FormattedTextBox.tsx
+++ b/src/client/views/nodes/FormattedTextBox.tsx
@@ -1,12 +1,12 @@
import { library } from '@fortawesome/fontawesome-svg-core';
import { faEdit, faSmile, faTextHeight, faUpload } from '@fortawesome/free-solid-svg-icons';
-import { action, computed, IReactionDisposer, Lambda, observable, reaction, runInAction } from "mobx";
+import { action, computed, IReactionDisposer, Lambda, observable, reaction, runInAction, autorun } from "mobx";
import { observer } from "mobx-react";
import { baseKeymap } from "prosemirror-commands";
import { history } from "prosemirror-history";
import { keymap } from "prosemirror-keymap";
import { Fragment, Node, Node as ProsNode, NodeType, Slice } from "prosemirror-model";
-import { EditorState, Plugin, Transaction } from "prosemirror-state";
+import { EditorState, Plugin, Transaction, TextSelection } from "prosemirror-state";
import { EditorView } from "prosemirror-view";
import { DateField } from '../../../new_fields/DateField';
import { Doc, DocListCast, Opt, WidthSym } from "../../../new_fields/Doc";
@@ -35,6 +35,8 @@ import React = require("react");
import { GoogleApiClientUtils, Pulls, Pushes } from '../../apis/google_docs/GoogleApiClientUtils';
import { DocumentDecorations } from '../DocumentDecorations';
import { MainOverlayTextBox } from '../MainOverlayTextBox';
+import { DictationManager } from '../../util/DictationManager';
+import { ReplaceStep } from 'prosemirror-transform';
library.add(faEdit);
library.add(faSmile, faTextHeight, faUpload);
@@ -62,7 +64,7 @@ export const GoogleRef = "googleDocId";
type RichTextDocument = makeInterface<[typeof richTextSchema]>;
const RichTextDocument = makeInterface(richTextSchema);
-type PullHandler = (exportState: GoogleApiClientUtils.Docs.ReadResult, dataDoc: Doc) => void;
+type PullHandler = (exportState: GoogleApiClientUtils.ReadResult, dataDoc: Doc) => void;
@observer
export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTextBoxProps), RichTextDocument>(RichTextDocument) {
@@ -85,7 +87,6 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
private pushReactionDisposer: Opt<IReactionDisposer>;
private dropDisposer?: DragManager.DragDropDisposer;
public get CurrentDiv(): HTMLDivElement { return this._ref.current!; }
- private isGoogleDocsUpdate = false;
@observable _entered = false;
@observable public static InputBoxOverlay?: FormattedTextBox = undefined;
@@ -180,6 +181,7 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
const marks = tx.storedMarks;
if (marks) { FormattedTextBox._toolTipTextMenu.mark_key_pressed(marks); }
}
+
this._applyingChange = true;
const fieldkey = "preview";
if (this.extensionDoc) this.extensionDoc.text = state.doc.textBetween(0, state.doc.content.size, "\n\n");
@@ -265,6 +267,64 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
}
}
+ recordKeyHandler = (e: KeyboardEvent) => {
+ if (this.props.Document !== SelectionManager.SelectedDocuments()[0].props.Document) {
+ return;
+ }
+ if (e.key === "R" && e.altKey) {
+ e.stopPropagation();
+ e.preventDefault();
+ this.recordBullet();
+ }
+ }
+
+ recordBullet = async () => {
+ let completedCue = "end session";
+ let results = await DictationManager.Controls.listen({
+ interimHandler: this.setCurrentBulletContent,
+ continuous: { indefinite: false },
+ terminators: [completedCue, "bullet", "next"]
+ });
+ if (results && [DictationManager.Controls.Infringed, completedCue].includes(results)) {
+ DictationManager.Controls.stop();
+ return;
+ }
+ this.nextBullet(this._editorView!.state.selection.to);
+ setTimeout(this.recordBullet, 2000);
+ }
+
+ setCurrentBulletContent = (value: string) => {
+ if (this._editorView) {
+ let state = this._editorView.state;
+ let from = state.selection.from;
+ let to = state.selection.to;
+ this._editorView.dispatch(state.tr.insertText(value, from, to));
+ state = this._editorView.state;
+ let updated = TextSelection.create(state.doc, from, from + value.length);
+ this._editorView.dispatch(state.tr.setSelection(updated));
+ }
+ }
+
+ nextBullet = (pos: number) => {
+ if (this._editorView) {
+ let frag = Fragment.fromArray(this.newListItems(2));
+ let slice = new Slice(frag, 2, 2);
+ let state = this._editorView.state;
+ this._editorView.dispatch(state.tr.step(new ReplaceStep(pos, pos, slice)));
+ pos += 4;
+ state = this._editorView.state;
+ this._editorView.dispatch(state.tr.setSelection(TextSelection.create(this._editorView.state.doc, pos, pos)));
+ }
+ }
+
+ private newListItems = (count: number) => {
+ let listItems: any[] = [];
+ for (let i = 0; i < count; i++) {
+ listItems.push(schema.nodes.list_item.create(undefined, schema.nodes.paragraph.create()));
+ }
+ return listItems;
+ }
+
componentDidMount() {
const config = {
schema,
@@ -298,7 +358,7 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
}
this.pullFromGoogleDoc(this.checkState);
- runInAction(() => DocumentDecorations.Instance.isAnimatingFetch = true);
+ this.dataDoc[GoogleRef] && this.dataDoc.unchanged && runInAction(() => DocumentDecorations.Instance.isAnimatingFetch = true);
this._reactionDisposer = reaction(
() => {
@@ -309,13 +369,6 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
if (this._editorView && !this._applyingChange) {
let updatedState = JSON.parse(incomingValue);
this._editorView.updateState(EditorState.fromJSON(config, updatedState));
- // manually sets cursor selection at the end of the text on focus
- if (this.isGoogleDocsUpdate) {
- this.isGoogleDocsUpdate = false;
- let end = this._editorView.state.doc.content.size - 1;
- updatedState.selection = { type: "text", anchor: end, head: end };
- this._editorView.updateState(EditorState.fromJSON(config, updatedState));
- }
this.tryUpdateHeight();
}
}
@@ -378,22 +431,20 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
}
pushToGoogleDoc = async () => {
- this.pullFromGoogleDoc(async (exportState: GoogleApiClientUtils.Docs.ReadResult, dataDoc: Doc) => {
- let modes = GoogleApiClientUtils.Docs.WriteMode;
+ this.pullFromGoogleDoc(async (exportState: GoogleApiClientUtils.ReadResult, dataDoc: Doc) => {
+ let modes = GoogleApiClientUtils.WriteMode;
let mode = modes.Replace;
- let reference: Opt<GoogleApiClientUtils.Docs.Reference> = Cast(this.dataDoc[GoogleRef], "string");
+ let reference: Opt<GoogleApiClientUtils.Reference> = Cast(this.dataDoc[GoogleRef], "string");
if (!reference) {
mode = modes.Insert;
- reference = {
- title: StrCast(this.dataDoc.title),
- handler: id => this.dataDoc[GoogleRef] = id
- };
+ reference = { service: GoogleApiClientUtils.Service.Documents, title: StrCast(this.dataDoc.title) };
}
let redo = async () => {
let data = Cast(this.dataDoc.data, RichTextField);
if (this._editorView && reference && data) {
let content = data[ToPlainText]();
let response = await GoogleApiClientUtils.Docs.write({ reference, content, mode });
+ response && (this.dataDoc[GoogleRef] = response.documentId);
let pushSuccess = response !== undefined && !("errors" in response);
dataDoc.unchanged = pushSuccess;
DocumentDecorations.Instance.startPushOutcome(pushSuccess);
@@ -413,32 +464,38 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
pullFromGoogleDoc = async (handler: PullHandler) => {
let dataDoc = this.dataDoc;
let documentId = StrCast(dataDoc[GoogleRef]);
- let exportState: GoogleApiClientUtils.Docs.ReadResult = {};
+ let exportState: GoogleApiClientUtils.ReadResult = {};
if (documentId) {
- exportState = await GoogleApiClientUtils.Docs.read({ documentId });
+ exportState = await GoogleApiClientUtils.Docs.read({ identifier: documentId });
}
UndoManager.RunInBatch(() => handler(exportState, dataDoc), Pulls);
}
- updateState = (exportState: GoogleApiClientUtils.Docs.ReadResult, dataDoc: Doc) => {
+ updateState = (exportState: GoogleApiClientUtils.ReadResult, dataDoc: Doc) => {
let pullSuccess = false;
if (exportState !== undefined && exportState.body !== undefined && exportState.title !== undefined) {
- let data = Cast(dataDoc.data, RichTextField);
- if (data) {
+ const data = Cast(dataDoc.data, RichTextField);
+ if (data instanceof RichTextField) {
pullSuccess = true;
- this.isGoogleDocsUpdate = true;
dataDoc.data = new RichTextField(data[FromPlainText](exportState.body));
+ setTimeout(() => {
+ if (this._editorView) {
+ let state = this._editorView.state;
+ let end = state.doc.content.size - 1;
+ this._editorView.dispatch(state.tr.setSelection(TextSelection.create(state.doc, end, end)));
+ }
+ }, 0);
dataDoc.title = exportState.title;
+ this.Document.customTitle = true;
dataDoc.unchanged = true;
}
} else {
delete dataDoc[GoogleRef];
}
DocumentDecorations.Instance.startPullOutcome(pullSuccess);
- this.tryUpdateHeight();
}
- checkState = (exportState: GoogleApiClientUtils.Docs.ReadResult, dataDoc: Doc) => {
+ checkState = (exportState: GoogleApiClientUtils.ReadResult, dataDoc: Doc) => {
if (exportState !== undefined && exportState.body !== undefined && exportState.title !== undefined) {
let data = Cast(dataDoc.data, RichTextField);
if (data) {
@@ -573,7 +630,6 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
if (!this.props.isOverlay) this.props.select(false);
else this._editorView!.focus();
}
- this.tryUpdateHeight();
}
componentWillUnmount() {
@@ -659,6 +715,9 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
@action
onFocused = (e: React.FocusEvent): void => {
+ document.removeEventListener("keypress", this.recordKeyHandler);
+ document.addEventListener("keypress", this.recordKeyHandler);
+ this.tryUpdateHeight();
if (!this.props.isOverlay) {
FormattedTextBox.InputBoxOverlay = this;
} else {
@@ -708,6 +767,7 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe
});
}
onBlur = (e: any) => {
+ document.removeEventListener("keypress", this.recordKeyHandler);
if (this._undoTyping) {
this._undoTyping.end();
this._undoTyping = undefined;
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx
index 704030d85..3f4ee8960 100644
--- a/src/client/views/nodes/VideoBox.tsx
+++ b/src/client/views/nodes/VideoBox.tsx
@@ -34,7 +34,7 @@ library.add(faVideo);
export class VideoBox extends DocComponent<FieldViewProps, VideoDocument>(VideoDocument) {
private _reactionDisposer?: IReactionDisposer;
private _youtubeReactionDisposer?: IReactionDisposer;
- private _youtubePlayer: any = undefined;
+ private _youtubePlayer: YT.Player | undefined = undefined;
private _videoRef: HTMLVideoElement | null = null;
private _youtubeIframeId: number = -1;
private _youtubeContentCreated = false;
@@ -78,7 +78,7 @@ export class VideoBox extends DocComponent<FieldViewProps, VideoDocument>(VideoD
@action public Pause = (update: boolean = true) => {
this.Playing = false;
update && this.player && this.player.pause();
- update && this._youtubePlayer && this._youtubePlayer.pauseVideo();
+ update && this._youtubePlayer && this._youtubePlayer.pauseVideo && this._youtubePlayer.pauseVideo();
this._youtubePlayer && this._playTimer && clearInterval(this._playTimer);
this._playTimer = undefined;
this.updateTimecode();
@@ -244,7 +244,7 @@ export class VideoBox extends DocComponent<FieldViewProps, VideoDocument>(VideoD
let onYoutubePlayerStateChange = (event: any) => runInAction(() => {
if (started && event.data === YT.PlayerState.PLAYING) {
started = false;
- this._youtubePlayer.unMute();
+ this._youtubePlayer && this._youtubePlayer.unMute();
this.Pause();
return;
}
diff --git a/src/server/RouteStore.ts b/src/server/RouteStore.ts
index 5d977006a..014906054 100644
--- a/src/server/RouteStore.ts
+++ b/src/server/RouteStore.ts
@@ -31,6 +31,6 @@ export enum RouteStore {
// APIS
cognitiveServices = "/cognitiveservices",
- googleDocs = "/googleDocs/"
+ googleDocs = "/googleDocs"
} \ No newline at end of file
diff --git a/src/server/apis/google/GoogleApiServerUtils.ts b/src/server/apis/google/GoogleApiServerUtils.ts
index 817b2b696..8785cd974 100644
--- a/src/server/apis/google/GoogleApiServerUtils.ts
+++ b/src/server/apis/google/GoogleApiServerUtils.ts
@@ -1,7 +1,10 @@
-import { google, docs_v1 } from "googleapis";
+import { google, docs_v1, slides_v1 } from "googleapis";
import { createInterface } from "readline";
import { readFile, writeFile } from "fs";
import { OAuth2Client } from "google-auth-library";
+import { Opt } from "../../../new_fields/Doc";
+import { GlobalOptions } from "googleapis-common";
+import { GaxiosResponse } from "gaxios";
/**
* Server side authentication for Google Api queries.
@@ -13,38 +16,57 @@ export namespace GoogleApiServerUtils {
const SCOPES = [
'documents.readonly',
'documents',
+ 'presentations',
+ 'presentations.readonly',
'drive',
'drive.file',
];
- // The file token.json stores the user's access and refresh tokens, and is
- // created automatically when the authorization flow completes for the first
- // time.
+
export const parseBuffer = (data: Buffer) => JSON.parse(data.toString());
- export namespace Docs {
+ export enum Service {
+ Documents = "Documents",
+ Slides = "Slides"
+ }
+
- export interface CredentialPaths {
- credentials: string;
- token: string;
- }
+ export interface CredentialPaths {
+ credentials: string;
+ token: string;
+ }
- export type Endpoint = docs_v1.Docs;
+ export type ApiResponse = Promise<GaxiosResponse>;
+ export type ApiRouter = (endpoint: Endpoint, paramters: any) => ApiResponse;
+ export type ApiHandler = (parameters: any) => ApiResponse;
+ export type Action = "create" | "retrieve" | "update";
- export const GetEndpoint = async (paths: CredentialPaths) => {
- return new Promise<Endpoint>((resolve, reject) => {
- readFile(paths.credentials, (err, credentials) => {
- if (err) {
- reject(err);
- return console.log('Error loading client secret file:', err);
+ export type Endpoint = { get: ApiHandler, create: ApiHandler, batchUpdate: ApiHandler };
+ export type EndpointParameters = GlobalOptions & { version: "v1" };
+
+ export const GetEndpoint = async (sector: string, paths: CredentialPaths) => {
+ return new Promise<Opt<Endpoint>>((resolve, reject) => {
+ readFile(paths.credentials, (err, credentials) => {
+ if (err) {
+ reject(err);
+ return console.log('Error loading client secret file:', err);
+ }
+ return authorize(parseBuffer(credentials), paths.token).then(auth => {
+ let routed: Opt<Endpoint>;
+ let parameters: EndpointParameters = { auth, version: "v1" };
+ switch (sector) {
+ case Service.Documents:
+ routed = google.docs(parameters).documents;
+ break;
+ case Service.Slides:
+ routed = google.slides(parameters).presentations;
+ break;
}
- return authorize(parseBuffer(credentials), paths.token).then(auth => {
- resolve(google.docs({ version: "v1", auth }));
- });
+ resolve(routed);
});
});
- };
+ });
+ };
- }
/**
* Create an OAuth2 client with the given credentials, and returns the promise resolving to the authenticated client
@@ -105,5 +127,4 @@ export namespace GoogleApiServerUtils {
});
});
}
-
} \ No newline at end of file
diff --git a/src/server/index.ts b/src/server/index.ts
index 51c7d8a38..34a0a19f1 100644
--- a/src/server/index.ts
+++ b/src/server/index.ts
@@ -45,6 +45,7 @@ import { GoogleApiServerUtils } from "./apis/google/GoogleApiServerUtils";
import { GaxiosResponse } from 'gaxios';
import { Opt } from '../new_fields/Doc';
import { docs_v1 } from 'googleapis';
+import { Endpoint } from 'googleapis-common';
const MongoStore = require('connect-mongo')(session);
const mongoose = require('mongoose');
const probe = require("probe-image-size");
@@ -803,21 +804,19 @@ function HandleYoutubeQuery([query, callback]: [YoutubeQueryInput, (result?: any
const credentials = path.join(__dirname, "./credentials/google_docs_credentials.json");
const token = path.join(__dirname, "./credentials/google_docs_token.json");
-type ApiResponse = Promise<GaxiosResponse>;
-type ApiHandler = (endpoint: docs_v1.Resource$Documents, parameters: any) => ApiResponse;
-type Action = "create" | "retrieve" | "update";
-
-const EndpointHandlerMap = new Map<Action, ApiHandler>([
+const EndpointHandlerMap = new Map<GoogleApiServerUtils.Action, GoogleApiServerUtils.ApiRouter>([
["create", (api, params) => api.create(params)],
["retrieve", (api, params) => api.get(params)],
["update", (api, params) => api.batchUpdate(params)],
]);
-app.post(RouteStore.googleDocs + ":action", (req, res) => {
- GoogleApiServerUtils.Docs.GetEndpoint({ credentials, token }).then(endpoint => {
- let handler = EndpointHandlerMap.get(req.params.action);
- if (handler) {
- let execute = handler(endpoint.documents, req.body).then(
+app.post(RouteStore.googleDocs + "/:sector/:action", (req, res) => {
+ let sector = req.params.sector;
+ let action = req.params.action;
+ GoogleApiServerUtils.GetEndpoint(GoogleApiServerUtils.Service[sector], { credentials, token }).then(endpoint => {
+ let handler = EndpointHandlerMap.get(action);
+ if (endpoint && handler) {
+ let execute = handler(endpoint, req.body).then(
response => res.send(response.data),
rejection => res.send(rejection)
);
diff --git a/src/server/slides.json b/src/server/slides.json
new file mode 100644
index 000000000..323cac3a6
--- /dev/null
+++ b/src/server/slides.json
@@ -0,0 +1,10820 @@
+{
+ "presentationId": "1gHxyT6bBhsPVeuWNnWDzI33yEviMVo8n60JtZiVy3tY",
+ "pageSize": {
+ "width": {
+ "magnitude": 9144000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 5143500,
+ "unit": "EMU"
+ }
+ },
+ "slides": [
+ {
+ "objectId": "p",
+ "pageElements": [
+ {
+ "objectId": "i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.6842,
+ "translateX": 311708.35000000003,
+ "translateY": 744575,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 20,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 20,
+ "textRun": {
+ "content": "Importing into Dash\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "CENTERED_TITLE",
+ "parentObjectId": "p2_i0"
+ }
+ }
+ },
+ {
+ "objectId": "i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.2642,
+ "translateX": 311700,
+ "translateY": 2834125,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 15,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 15,
+ "textRun": {
+ "content": "By Sam Wilkins\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SUBTITLE",
+ "parentObjectId": "p2_i1"
+ }
+ }
+ }
+ ],
+ "slideProperties": {
+ "layoutObjectId": "p2",
+ "masterObjectId": "simple-light-2",
+ "notesPage": {
+ "objectId": "p:notes",
+ "pageType": "NOTES",
+ "pageElements": [
+ {
+ "objectId": "i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.032025,
+ "scaleY": 1.143,
+ "translateX": 381300,
+ "translateY": 685800,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeProperties": {
+ "outline": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_IMAGE",
+ "parentObjectId": "n:slide"
+ }
+ }
+ },
+ {
+ "objectId": "i3",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.8288,
+ "scaleY": 1.3716,
+ "translateX": 685800,
+ "translateY": 4343400,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "index": 1,
+ "parentObjectId": "n:text"
+ }
+ }
+ }
+ ],
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "notesProperties": {
+ "speakerNotesObjectId": "i3"
+ }
+ }
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "g5f40953d50_0_0",
+ "pageElements": [
+ {
+ "objectId": "g5f40953d50_0_1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.1909,
+ "translateX": 311700,
+ "translateY": 445025,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 10,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 10,
+ "textRun": {
+ "content": "Dr. Seuss\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p4_i0"
+ }
+ }
+ },
+ {
+ "objectId": "g5f40953d50_0_2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 1.1388,
+ "translateX": 311700,
+ "translateY": 1152475,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 25,
+ "paragraphMarker": {
+ "style": {
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 25,
+ "textRun": {
+ "content": "Here is a bulleted list!\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 25,
+ "endIndex": 34,
+ "paragraphMarker": {
+ "style": {
+ "indentStart": {
+ "magnitude": 36,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "magnitude": 18,
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "kix.wifbmqnyqu4p",
+ "glyph": "●",
+ "bulletStyle": {
+ "underline": false
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 25,
+ "endIndex": 34,
+ "textRun": {
+ "content": "One fish\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 34,
+ "endIndex": 43,
+ "paragraphMarker": {
+ "style": {
+ "indentStart": {
+ "magnitude": 36,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "magnitude": 18,
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "kix.wifbmqnyqu4p",
+ "glyph": "●",
+ "bulletStyle": {
+ "underline": false
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 34,
+ "endIndex": 43,
+ "textRun": {
+ "content": "Two fish\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 43,
+ "endIndex": 52,
+ "paragraphMarker": {
+ "style": {
+ "indentStart": {
+ "magnitude": 36,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "magnitude": 18,
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "kix.wifbmqnyqu4p",
+ "glyph": "●",
+ "bulletStyle": {
+ "underline": false
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 43,
+ "endIndex": 52,
+ "textRun": {
+ "content": "Red fish\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 52,
+ "endIndex": 62,
+ "paragraphMarker": {
+ "style": {
+ "indentStart": {
+ "magnitude": 36,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "magnitude": 18,
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "kix.wifbmqnyqu4p",
+ "glyph": "●",
+ "bulletStyle": {
+ "underline": false
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 52,
+ "endIndex": 62,
+ "textRun": {
+ "content": "Blue fish\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "kix.wifbmqnyqu4p": {
+ "listId": "kix.wifbmqnyqu4p",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "underline": false
+ }
+ }
+ }
+ },
+ "kix.yuy8atv38lqp": {
+ "listId": "kix.yuy8atv38lqp",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "underline": false
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "underline": false
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "parentObjectId": "p4_i1"
+ }
+ }
+ }
+ ],
+ "slideProperties": {
+ "layoutObjectId": "p4",
+ "masterObjectId": "simple-light-2",
+ "notesPage": {
+ "objectId": "g5f40953d50_0_0:notes",
+ "pageType": "NOTES",
+ "pageElements": [
+ {
+ "objectId": "g5f40953d50_0_3",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.032,
+ "scaleY": 1.143,
+ "translateX": 381300,
+ "translateY": 685800,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeProperties": {
+ "outline": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_IMAGE",
+ "parentObjectId": "n:slide"
+ }
+ }
+ },
+ {
+ "objectId": "g5f40953d50_0_4",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.8288,
+ "scaleY": 1.3716,
+ "translateX": 685800,
+ "translateY": 4343400,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "index": 1,
+ "parentObjectId": "n:text"
+ }
+ }
+ }
+ ],
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "notesProperties": {
+ "speakerNotesObjectId": "g5f40953d50_0_4"
+ }
+ }
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ }
+ ],
+ "title": "THIS IS MY FIRST DASH PRESENTATION",
+ "masters": [
+ {
+ "objectId": "simple-light-2",
+ "pageType": "MASTER",
+ "pageElements": [
+ {
+ "objectId": "p1_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.1909,
+ "translateX": 311700,
+ "translateY": 445025,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK1"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "NOT_RENDERED",
+ "solidFill": {
+ "color": {
+ "rgbColor": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ "alpha": 1
+ }
+ },
+ "outline": {
+ "outlineFill": {
+ "solidFill": {
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1
+ }
+ },
+ "weight": {
+ "magnitude": 9525,
+ "unit": "EMU"
+ },
+ "dashStyle": "SOLID",
+ "propertyState": "NOT_RENDERED"
+ },
+ "shadow": {
+ "type": "OUTER",
+ "transform": {
+ "scaleX": 1,
+ "scaleY": 1,
+ "unit": "EMU"
+ },
+ "alignment": "BOTTOM_LEFT",
+ "blurRadius": {
+ "unit": "EMU"
+ },
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1,
+ "rotateWithShape": false,
+ "propertyState": "NOT_RENDERED"
+ },
+ "contentAlignment": "TOP"
+ },
+ "placeholder": {
+ "type": "TITLE"
+ }
+ }
+ },
+ {
+ "objectId": "p1_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 1.1388,
+ "translateX": 311700,
+ "translateY": 1152475,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 115,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "magnitude": 16,
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "NOT_RENDERED",
+ "solidFill": {
+ "color": {
+ "rgbColor": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ "alpha": 1
+ }
+ },
+ "outline": {
+ "outlineFill": {
+ "solidFill": {
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1
+ }
+ },
+ "weight": {
+ "magnitude": 9525,
+ "unit": "EMU"
+ },
+ "dashStyle": "SOLID",
+ "propertyState": "NOT_RENDERED"
+ },
+ "shadow": {
+ "type": "OUTER",
+ "transform": {
+ "scaleX": 1,
+ "scaleY": 1,
+ "unit": "EMU"
+ },
+ "alignment": "BOTTOM_LEFT",
+ "blurRadius": {
+ "unit": "EMU"
+ },
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1,
+ "rotateWithShape": false,
+ "propertyState": "NOT_RENDERED"
+ },
+ "contentAlignment": "TOP"
+ },
+ "placeholder": {
+ "type": "BODY"
+ }
+ }
+ },
+ {
+ "objectId": "p1_i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "END",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "NEVER_COLLAPSE"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 10,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "themeColor": "DARK2"
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 10,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "NOT_RENDERED",
+ "solidFill": {
+ "color": {
+ "rgbColor": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ "alpha": 1
+ }
+ },
+ "outline": {
+ "outlineFill": {
+ "solidFill": {
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1
+ }
+ },
+ "weight": {
+ "magnitude": 9525,
+ "unit": "EMU"
+ },
+ "dashStyle": "SOLID",
+ "propertyState": "NOT_RENDERED"
+ },
+ "shadow": {
+ "type": "OUTER",
+ "transform": {
+ "scaleX": 1,
+ "scaleY": 1,
+ "unit": "EMU"
+ },
+ "alignment": "BOTTOM_LEFT",
+ "blurRadius": {
+ "unit": "EMU"
+ },
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1,
+ "rotateWithShape": false,
+ "propertyState": "NOT_RENDERED"
+ },
+ "contentAlignment": "MIDDLE"
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER"
+ }
+ }
+ }
+ ],
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "solidFill": {
+ "color": {
+ "themeColor": "LIGHT1"
+ },
+ "alpha": 1
+ }
+ },
+ "colorScheme": {
+ "colors": [
+ {
+ "type": "DARK1",
+ "color": {}
+ },
+ {
+ "type": "LIGHT1",
+ "color": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ {
+ "type": "DARK2",
+ "color": {
+ "red": 0.34901962,
+ "green": 0.34901962,
+ "blue": 0.34901962
+ }
+ },
+ {
+ "type": "LIGHT2",
+ "color": {
+ "red": 0.93333334,
+ "green": 0.93333334,
+ "blue": 0.93333334
+ }
+ },
+ {
+ "type": "ACCENT1",
+ "color": {
+ "red": 1,
+ "green": 0.67058825,
+ "blue": 0.2509804
+ }
+ },
+ {
+ "type": "ACCENT2",
+ "color": {
+ "red": 0.12941177,
+ "green": 0.12941177,
+ "blue": 0.12941177
+ }
+ },
+ {
+ "type": "ACCENT3",
+ "color": {
+ "red": 0.47058824,
+ "green": 0.5647059,
+ "blue": 0.6117647
+ }
+ },
+ {
+ "type": "ACCENT4",
+ "color": {
+ "red": 1,
+ "green": 0.67058825,
+ "blue": 0.2509804
+ }
+ },
+ {
+ "type": "ACCENT5",
+ "color": {
+ "green": 0.5921569,
+ "blue": 0.654902
+ }
+ },
+ {
+ "type": "ACCENT6",
+ "color": {
+ "red": 0.93333334,
+ "green": 1,
+ "blue": 0.25490198
+ }
+ },
+ {
+ "type": "HYPERLINK",
+ "color": {
+ "green": 0.5921569,
+ "blue": 0.654902
+ }
+ },
+ {
+ "type": "FOLLOWED_HYPERLINK",
+ "color": {
+ "green": 0.5921569,
+ "blue": 0.654902
+ }
+ },
+ {
+ "type": "TEXT1",
+ "color": {}
+ },
+ {
+ "type": "BACKGROUND1",
+ "color": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ {
+ "type": "TEXT2",
+ "color": {
+ "red": 0.93333334,
+ "green": 0.93333334,
+ "blue": 0.93333334
+ }
+ },
+ {
+ "type": "BACKGROUND2",
+ "color": {
+ "red": 0.34901962,
+ "green": 0.34901962,
+ "blue": 0.34901962
+ }
+ }
+ ]
+ }
+ },
+ "masterProperties": {
+ "displayName": "Simple Light"
+ }
+ }
+ ],
+ "layouts": [
+ {
+ "objectId": "p2",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p2_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.6842,
+ "translateX": 311708.35000000003,
+ "translateY": 744575,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 52,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "BOTTOM"
+ },
+ "placeholder": {
+ "type": "CENTERED_TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p2_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.2642,
+ "translateX": 311700,
+ "translateY": 2834125,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 28,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SUBTITLE",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p2_i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "TITLE",
+ "displayName": "Title slide"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p3",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p3_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.2806,
+ "translateX": 311700,
+ "translateY": 2150850,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 36,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "MIDDLE"
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p3_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "SECTION_HEADER",
+ "displayName": "Section header"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p4",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p4_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.1909,
+ "translateX": 311700,
+ "translateY": 445025,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {}
+ },
+ "1": {
+ "bulletStyle": {}
+ },
+ "2": {
+ "bulletStyle": {}
+ },
+ "3": {
+ "bulletStyle": {}
+ },
+ "4": {
+ "bulletStyle": {}
+ },
+ "5": {
+ "bulletStyle": {}
+ },
+ "6": {
+ "bulletStyle": {}
+ },
+ "7": {
+ "bulletStyle": {}
+ },
+ "8": {
+ "bulletStyle": {}
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p4_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 1.1388,
+ "translateX": 311700,
+ "translateY": 1152475,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {}
+ },
+ "1": {
+ "bulletStyle": {}
+ },
+ "2": {
+ "bulletStyle": {}
+ },
+ "3": {
+ "bulletStyle": {}
+ },
+ "4": {
+ "bulletStyle": {}
+ },
+ "5": {
+ "bulletStyle": {}
+ },
+ "6": {
+ "bulletStyle": {}
+ },
+ "7": {
+ "bulletStyle": {}
+ },
+ "8": {
+ "bulletStyle": {}
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p4_i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "TITLE_AND_BODY",
+ "displayName": "Title and body"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p5",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p5_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.1909,
+ "translateX": 311700,
+ "translateY": 445025,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {}
+ },
+ "1": {
+ "bulletStyle": {}
+ },
+ "2": {
+ "bulletStyle": {}
+ },
+ "3": {
+ "bulletStyle": {}
+ },
+ "4": {
+ "bulletStyle": {}
+ },
+ "5": {
+ "bulletStyle": {}
+ },
+ "6": {
+ "bulletStyle": {}
+ },
+ "7": {
+ "bulletStyle": {}
+ },
+ "8": {
+ "bulletStyle": {}
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p5_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.3333,
+ "scaleY": 1.1388,
+ "translateX": 311700,
+ "translateY": 1152475,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p5_i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.3333,
+ "scaleY": 1.1388,
+ "translateX": 4832400,
+ "translateY": 1152475,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 14,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "index": 1,
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p5_i3",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "TITLE_AND_TWO_COLUMNS",
+ "displayName": "Title and two columns"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p6",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p6_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.1909,
+ "translateX": 311700,
+ "translateY": 445025,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {}
+ },
+ "1": {
+ "bulletStyle": {}
+ },
+ "2": {
+ "bulletStyle": {}
+ },
+ "3": {
+ "bulletStyle": {}
+ },
+ "4": {
+ "bulletStyle": {}
+ },
+ "5": {
+ "bulletStyle": {}
+ },
+ "6": {
+ "bulletStyle": {}
+ },
+ "7": {
+ "bulletStyle": {}
+ },
+ "8": {
+ "bulletStyle": {}
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p6_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "TITLE_ONLY",
+ "displayName": "Title only"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p7",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p7_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.936,
+ "scaleY": 0.2519,
+ "translateX": 311700,
+ "translateY": 555600,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 24,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "BOTTOM"
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p7_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.936,
+ "scaleY": 1.0598,
+ "translateX": 311700,
+ "translateY": 1389600,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 12,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p7_i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "ONE_COLUMN_TEXT",
+ "displayName": "One column text"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p8",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p8_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.1226,
+ "scaleY": 1.3636,
+ "translateX": 490250,
+ "translateY": 450150,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 48,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "MIDDLE"
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p8_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "MAIN_POINT",
+ "displayName": "Main point"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p9",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p9_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.524,
+ "scaleY": 1.7145,
+ "translateX": 4572000,
+ "translateY": -125,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "RECTANGLE",
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "solidFill": {
+ "color": {
+ "themeColor": "LIGHT2"
+ },
+ "alpha": 1
+ }
+ },
+ "outline": {
+ "outlineFill": {
+ "solidFill": {
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1
+ }
+ },
+ "weight": {
+ "magnitude": 9525,
+ "unit": "EMU"
+ },
+ "dashStyle": "SOLID",
+ "propertyState": "NOT_RENDERED"
+ },
+ "shadow": {
+ "type": "OUTER",
+ "transform": {
+ "scaleX": 1,
+ "scaleY": 1,
+ "unit": "EMU"
+ },
+ "alignment": "BOTTOM_LEFT",
+ "blurRadius": {
+ "unit": "EMU"
+ },
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1,
+ "rotateWithShape": false,
+ "propertyState": "NOT_RENDERED"
+ },
+ "contentAlignment": "MIDDLE"
+ }
+ }
+ },
+ {
+ "objectId": "p9_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.3484,
+ "scaleY": 0.4941,
+ "translateX": 265500,
+ "translateY": 1233175,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 42,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "BOTTOM"
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p9_i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.3484,
+ "scaleY": 0.4117,
+ "translateX": 265500,
+ "translateY": 2803075,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "CENTER",
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 21,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SUBTITLE",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p9_i3",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.279,
+ "scaleY": 1.2317,
+ "translateX": 4939500,
+ "translateY": 724075,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {}
+ },
+ "1": {
+ "bulletStyle": {}
+ },
+ "2": {
+ "bulletStyle": {}
+ },
+ "3": {
+ "bulletStyle": {}
+ },
+ "4": {
+ "bulletStyle": {}
+ },
+ "5": {
+ "bulletStyle": {}
+ },
+ "6": {
+ "bulletStyle": {}
+ },
+ "7": {
+ "bulletStyle": {}
+ },
+ "8": {
+ "bulletStyle": {}
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "MIDDLE"
+ },
+ "placeholder": {
+ "type": "BODY",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p9_i4",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "SECTION_TITLE_AND_DESCRIPTION",
+ "displayName": "Section title and description"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p10",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p10_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.9996,
+ "scaleY": 0.2017,
+ "translateX": 311700,
+ "translateY": 4230575,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {}
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 18,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "MIDDLE"
+ },
+ "placeholder": {
+ "type": "BODY",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p10_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "CAPTION_ONLY",
+ "displayName": "Caption"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p11",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p11_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.6545,
+ "translateX": 311700,
+ "translateY": 1106125,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": " ",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "fontSize": {
+ "magnitude": 120,
+ "unit": "PT"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ },
+ "contentAlignment": "BOTTOM"
+ },
+ "placeholder": {
+ "type": "TITLE",
+ "parentObjectId": "p1_i0"
+ }
+ }
+ },
+ {
+ "objectId": "p11_i1",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.8402,
+ "scaleY": 0.4336,
+ "translateX": 311700,
+ "translateY": 3152225,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "alignment": "CENTER",
+ "direction": "LEFT_TO_RIGHT"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {}
+ },
+ "1": {
+ "bulletStyle": {}
+ },
+ "2": {
+ "bulletStyle": {}
+ },
+ "3": {
+ "bulletStyle": {}
+ },
+ "4": {
+ "bulletStyle": {}
+ },
+ "5": {
+ "bulletStyle": {}
+ },
+ "6": {
+ "bulletStyle": {}
+ },
+ "7": {
+ "bulletStyle": {}
+ },
+ "8": {
+ "bulletStyle": {}
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "BODY",
+ "parentObjectId": "p1_i1"
+ }
+ }
+ },
+ {
+ "objectId": "p11_i2",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "BIG_NUMBER",
+ "displayName": "Big number"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ },
+ {
+ "objectId": "p12",
+ "pageType": "LAYOUT",
+ "pageElements": [
+ {
+ "objectId": "p12_i0",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 0.1829,
+ "scaleY": 0.1312,
+ "translateX": 8472457.8125,
+ "translateY": 4663216.797499999,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "direction": "LEFT_TO_RIGHT"
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "autoText": {
+ "type": "SLIDE_NUMBER",
+ "content": "#",
+ "style": {}
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {}
+ }
+ }
+ ]
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "INHERIT"
+ },
+ "outline": {
+ "propertyState": "INHERIT"
+ },
+ "shadow": {
+ "propertyState": "INHERIT"
+ }
+ },
+ "placeholder": {
+ "type": "SLIDE_NUMBER",
+ "parentObjectId": "p1_i2"
+ }
+ }
+ }
+ ],
+ "layoutProperties": {
+ "masterObjectId": "simple-light-2",
+ "name": "BLANK",
+ "displayName": "Blank"
+ },
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "INHERIT"
+ }
+ }
+ }
+ ],
+ "locale": "en",
+ "revisionId": "kaHql7SEgvqFcw",
+ "notesMaster": {
+ "objectId": "n",
+ "pageType": "NOTES_MASTER",
+ "pageElements": [
+ {
+ "objectId": "n:slide",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 2.032025,
+ "scaleY": 1.143,
+ "translateX": 381300,
+ "translateY": 685800,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeProperties": {
+ "outline": {
+ "outlineFill": {
+ "solidFill": {
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1
+ }
+ },
+ "weight": {
+ "magnitude": 9525,
+ "unit": "EMU"
+ },
+ "dashStyle": "SOLID"
+ },
+ "contentAlignment": "MIDDLE"
+ },
+ "placeholder": {
+ "type": "SLIDE_IMAGE"
+ }
+ }
+ },
+ {
+ "objectId": "n:text",
+ "size": {
+ "width": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ },
+ "height": {
+ "magnitude": 3000000,
+ "unit": "EMU"
+ }
+ },
+ "transform": {
+ "scaleX": 1.8288,
+ "scaleY": 1.3716,
+ "translateX": 685800,
+ "translateY": 4343400,
+ "unit": "EMU"
+ },
+ "shape": {
+ "shapeType": "TEXT_BOX",
+ "text": {
+ "textElements": [
+ {
+ "endIndex": 1,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "endIndex": 1,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 1,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 1,
+ "endIndex": 2,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 2,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 2,
+ "endIndex": 3,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 3,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 3,
+ "endIndex": 4,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 4,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 4,
+ "endIndex": 5,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 5,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 5,
+ "endIndex": 6,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 6,
+ "glyph": "●",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 6,
+ "endIndex": 7,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 7,
+ "glyph": "○",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 7,
+ "endIndex": 8,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "paragraphMarker": {
+ "style": {
+ "lineSpacing": 100,
+ "alignment": "START",
+ "indentStart": {
+ "unit": "PT"
+ },
+ "indentEnd": {
+ "unit": "PT"
+ },
+ "spaceAbove": {
+ "unit": "PT"
+ },
+ "spaceBelow": {
+ "unit": "PT"
+ },
+ "indentFirstLine": {
+ "unit": "PT"
+ },
+ "direction": "LEFT_TO_RIGHT",
+ "spacingMode": "COLLAPSE_LISTS"
+ },
+ "bullet": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": 8,
+ "glyph": "■",
+ "bulletStyle": {}
+ }
+ }
+ },
+ {
+ "startIndex": 8,
+ "endIndex": 9,
+ "textRun": {
+ "content": "\n",
+ "style": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ }
+ ],
+ "lists": {
+ "bodyPlaceholderListEntity": {
+ "listId": "bodyPlaceholderListEntity",
+ "nestingLevel": {
+ "0": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "1": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "2": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "3": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "4": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "5": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "6": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "7": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ },
+ "8": {
+ "bulletStyle": {
+ "backgroundColor": {},
+ "foregroundColor": {
+ "opaqueColor": {
+ "rgbColor": {}
+ }
+ },
+ "bold": false,
+ "italic": false,
+ "fontFamily": "Arial",
+ "fontSize": {
+ "magnitude": 11,
+ "unit": "PT"
+ },
+ "baselineOffset": "NONE",
+ "smallCaps": false,
+ "strikethrough": false,
+ "underline": false,
+ "weightedFontFamily": {
+ "fontFamily": "Arial",
+ "weight": 400
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shapeProperties": {
+ "shapeBackgroundFill": {
+ "propertyState": "NOT_RENDERED",
+ "solidFill": {
+ "color": {
+ "rgbColor": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ "alpha": 1
+ }
+ },
+ "outline": {
+ "outlineFill": {
+ "solidFill": {
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1
+ }
+ },
+ "weight": {
+ "magnitude": 9525,
+ "unit": "EMU"
+ },
+ "dashStyle": "SOLID",
+ "propertyState": "NOT_RENDERED"
+ },
+ "shadow": {
+ "type": "OUTER",
+ "transform": {
+ "scaleX": 1,
+ "scaleY": 1,
+ "unit": "EMU"
+ },
+ "alignment": "BOTTOM_LEFT",
+ "blurRadius": {
+ "unit": "EMU"
+ },
+ "color": {
+ "rgbColor": {}
+ },
+ "alpha": 1,
+ "rotateWithShape": false,
+ "propertyState": "NOT_RENDERED"
+ },
+ "contentAlignment": "TOP"
+ },
+ "placeholder": {
+ "type": "BODY",
+ "index": 1
+ }
+ }
+ }
+ ],
+ "pageProperties": {
+ "pageBackgroundFill": {
+ "propertyState": "NOT_RENDERED",
+ "solidFill": {
+ "color": {
+ "rgbColor": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ "alpha": 1
+ }
+ },
+ "colorScheme": {
+ "colors": [
+ {
+ "type": "DARK1",
+ "color": {}
+ },
+ {
+ "type": "LIGHT1",
+ "color": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ {
+ "type": "DARK2",
+ "color": {
+ "red": 0.08235294,
+ "green": 0.5058824,
+ "blue": 0.34509805
+ }
+ },
+ {
+ "type": "LIGHT2",
+ "color": {
+ "red": 0.9529412,
+ "green": 0.9529412,
+ "blue": 0.9529412
+ }
+ },
+ {
+ "type": "ACCENT1",
+ "color": {
+ "red": 0.019607844,
+ "green": 0.5529412,
+ "blue": 0.78039217
+ }
+ },
+ {
+ "type": "ACCENT2",
+ "color": {
+ "red": 0.3137255,
+ "green": 0.7058824,
+ "blue": 0.19607843
+ }
+ },
+ {
+ "type": "ACCENT3",
+ "color": {
+ "red": 0.92941177,
+ "green": 0.3372549,
+ "blue": 0.105882354
+ }
+ },
+ {
+ "type": "ACCENT4",
+ "color": {
+ "red": 0.92941177,
+ "green": 0.9372549
+ }
+ },
+ {
+ "type": "ACCENT5",
+ "color": {
+ "red": 0.14117648,
+ "green": 0.79607844,
+ "blue": 0.8980392
+ }
+ },
+ {
+ "type": "ACCENT6",
+ "color": {
+ "red": 0.39215687,
+ "green": 0.8980392,
+ "blue": 0.44705883
+ }
+ },
+ {
+ "type": "HYPERLINK",
+ "color": {
+ "red": 0.13333334,
+ "blue": 0.8
+ }
+ },
+ {
+ "type": "FOLLOWED_HYPERLINK",
+ "color": {
+ "red": 0.33333334,
+ "green": 0.101960786,
+ "blue": 0.54509807
+ }
+ },
+ {
+ "type": "TEXT1",
+ "color": {}
+ },
+ {
+ "type": "BACKGROUND1",
+ "color": {
+ "red": 1,
+ "green": 1,
+ "blue": 1
+ }
+ },
+ {
+ "type": "TEXT2",
+ "color": {
+ "red": 0.9529412,
+ "green": 0.9529412,
+ "blue": 0.9529412
+ }
+ },
+ {
+ "type": "BACKGROUND2",
+ "color": {
+ "red": 0.08235294,
+ "green": 0.5058824,
+ "blue": 0.34509805
+ }
+ }
+ ]
+ }
+ }
+ }
+} \ No newline at end of file